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
330
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
780
Training Better Models Using Automated Machine Learning
vladiliescu
0
71
Machine Learning in Azure: Service versus Studio
vladiliescu
1
2.1k
Getting Started with Machine Learning Using Azure Machine Learning Studio and Kaggle Competitions
vladiliescu
1
1.9k
Boy meets Girl: A Machine Learning Deployment Story
vladiliescu
0
2.2k
Mind Reading - Understanding Recommender Systems
vladiliescu
0
91
Predicting the future in 10 minutes or less - an introduction to Azure Machine Learning
vladiliescu
0
77
Privacy-First Development
vladiliescu
0
100
TypeScript vs CoffeeScript
vladiliescu
0
2.1k
Other Decks in Programming
See All in Programming
インターン生でもAuth0で認証基盤刷新が出来るのか
taku271
0
200
AI巻き込み型コードレビューのススメ
nealle
2
1.9k
2026/02/04 AIキャラクター人格の実装論 口 調の模倣から、コンテキスト制御による 『思想』と『行動』の創発へ
sr2mg4
0
460
生成AIを活用したソフトウェア開発ライフサイクル変革の現在値
hiroyukimori
PRO
0
120
Rust 製のコードエディタ “Zed” を使ってみた
nearme_tech
PRO
0
250
Metaprogramming isn't real, it can't hurt you
okuramasafumi
0
110
浮動小数の比較について
kishikawakatsumi
0
180
2025年の活動の振り返り
hideg
0
100
Event Storming
hschwentner
3
1.3k
SourceGeneratorのススメ
htkym
0
350
IFSによる形状設計/デモシーンの魅力 @ 慶應大学SFC
gam0022
1
330
朝日新聞のデジタル版を支えるGoバックエンド ー価値ある情報をいち早く確実にお届けするために
junkiishida
1
110
Featured
See All Featured
Designing Powerful Visuals for Engaging Learning
tmiket
0
240
Everyday Curiosity
cassininazir
0
140
How to Talk to Developers About Accessibility
jct
2
140
The Power of CSS Pseudo Elements
geoffreycrofte
80
6.2k
From π to Pie charts
rasagy
0
130
ラッコキーワード サービス紹介資料
rakko
1
2.3M
The Anti-SEO Checklist Checklist. Pubcon Cyber Week
ryanjones
0
75
The Hidden Cost of Media on the Web [PixelPalooza 2025]
tammyeverts
2
210
Primal Persuasion: How to Engage the Brain for Learning That Lasts
tmiket
0
260
New Earth Scene 8
popppiees
1
1.6k
Writing Fast Ruby
sferik
630
62k
Leadership Guide Workshop - DevTernity 2021
reverentgeek
1
210
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