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
530
Training Better Models Using Automated Machine Learning
vladiliescu
0
52
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
2k
Mind Reading - Understanding Recommender Systems
vladiliescu
0
65
Predicting the future in 10 minutes or less - an introduction to Azure Machine Learning
vladiliescu
0
64
Privacy-First Development
vladiliescu
0
94
TypeScript vs CoffeeScript
vladiliescu
0
2k
Other Decks in Programming
See All in Programming
Jakarta EE meets AI
ivargrimstad
0
810
ML.NETで始める機械学習
ymd65536
0
250
Jasprが凄い話
hyshu
0
190
【AI 自走型】Figma からデザインコーディングを行うプロンプト
tetsuro_b
0
100
DRFを少しずつ オニオンアーキテクチャに寄せていく DjangoCongress JP 2025
nealle
2
300
TCAを用いたAmebaのリアーキテクチャ
dazy
0
240
Drawing Heighway’s Dragon- Recursive Function Rewrite- From Imperative Style in Pascal 64 To Functional Style in Scala 3
philipschwarz
PRO
0
170
Google Cloudとo11yで実現するアプリケーション開発者主体のDB改善
nnaka2992
1
150
変化の激しい時代における、こだわりのないエンジニアの強さ
satoshi256kbyte
1
770
DevNexus - Create AI Infused Java Apps with LangChain4j
kdubois
0
150
Ça bouge du côté des animations CSS !
goetter
2
170
PEPCは何を変えようとしていたのか
ken7253
3
320
Featured
See All Featured
Build your cross-platform service in a week with App Engine
jlugia
229
18k
GraphQLとの向き合い方2022年版
quramy
44
14k
Scaling GitHub
holman
459
140k
Making Projects Easy
brettharned
116
6k
Testing 201, or: Great Expectations
jmmastey
42
7.2k
For a Future-Friendly Web
brad_frost
176
9.6k
Keith and Marios Guide to Fast Websites
keithpitt
411
22k
Writing Fast Ruby
sferik
628
61k
The MySQL Ecosystem @ GitHub 2015
samlambert
251
12k
Chrome DevTools: State of the Union 2024 - Debugging React & Beyond
addyosmani
4
390
Designing Dashboards & Data Visualisations in Web Apps
destraynor
231
53k
ピンチをチャンスに:未来をつくるプロダクトロードマップ #pmconf2020
aki_iinuma
115
51k
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