Upgrade to Pro
— share decks privately, control downloads, hide ads and more …
Speaker Deck
Features
Speaker Deck
PRO
Sign in
Sign up for free
Search
Search
Micro Web Frameworks in .NET
Search
Vlad Iliescu
March 11, 2012
Programming
2
320
Micro Web Frameworks in .NET
The demo source code is available at
https://bitbucket.org/vladiliescu/the-little-blog-that-could
.
Vlad Iliescu
March 11, 2012
Tweet
Share
More Decks by Vlad Iliescu
See All by Vlad Iliescu
Poor Man’s BingChat – Building an Internet-connected Search Assistant from scratch*
vladiliescu
0
420
Training Better Models Using Automated Machine Learning
vladiliescu
0
49
Machine Learning in Azure: Service versus Studio
vladiliescu
1
1.9k
Getting Started with Machine Learning Using Azure Machine Learning Studio and Kaggle Competitions
vladiliescu
1
1.7k
Boy meets Girl: A Machine Learning Deployment Story
vladiliescu
0
1.9k
Mind Reading - Understanding Recommender Systems
vladiliescu
0
59
Predicting the future in 10 minutes or less - an introduction to Azure Machine Learning
vladiliescu
0
61
Privacy-First Development
vladiliescu
0
91
TypeScript vs CoffeeScript
vladiliescu
0
2k
Other Decks in Programming
See All in Programming
rbs-inlineを導入してYARDからRBSに移行する
euglena1215
1
230
Prompt Cachingは本当に効果的なのか検証してみた.pdf
ttnyt8701
0
490
Amazon Neptuneで始める初めてのグラフDB ー グラフDBを使う意味を考える ー
satoshi256kbyte
2
220
rails_girls_is_my_gate_to_join_the_ruby_commuinty
maimux2x
0
170
dRuby 入門者によるあなたの身近にあるdRuby 入門
makicamel
4
340
Amebaチョイス立ち上げの裏側 ~依存システムとの闘い~
daichi_igarashi
0
220
Swiftで高速フーリエ変換してオーディオビジュアライザーを作る / iOSDC Japan 2024 Day1 Track D
kyome22
2
490
What we keep in mind when migrating from Serverless Framework to AWS CDK and AWS SAM
kasacchiful
1
130
2024 컴포즈 정원사
jisungbin
0
150
Appleの新しいプライバシー要件対応: ノーコードアプリ プラットフォームの実践事例
nao_randd
1
470
初めてのiOS関連GitHub ActionsをMarketplaceに公開するまでの実録
konifar
3
200
dotfiles について話したい #湘なんか
stefafafan
2
290
Featured
See All Featured
Making Projects Easy
brettharned
113
5.8k
Facilitating Awesome Meetings
lara
49
5.9k
Testing 201, or: Great Expectations
jmmastey
35
6.9k
A better future with KSS
kneath
235
17k
Faster Mobile Websites
deanohume
304
30k
ピンチをチャンスに:未来をつくるプロダクトロードマップ #pmconf2020
aki_iinuma
103
47k
RailsConf 2023
tenderlove
27
800
Practical Orchestrator
shlominoach
185
10k
Art, The Web, and Tiny UX
lynnandtonic
294
20k
Ruby is Unlike a Banana
tanoku
96
10k
The Cult of Friendly URLs
andyhume
76
5.9k
Large-scale JavaScript Application Architecture
addyosmani
508
110k
Transcript
None
None
require 'sinatra' get 'hi' do "Hello World!" end
None
None
None
None
using Nancy; public class HelloModule : NancyModule { public HelloModule()
{ Get["/"] = r => "Hello CodeCamp!"; } }
None
PM> Install-Package Nancy.Hosting.Aspnet using Nancy; public class HelloModule : NancyModule
{ public HelloModule() { Get["/"] = r => "Hello CodeCamp!"; } }
None
None
None