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
670
Training Better Models Using Automated Machine Learning
vladiliescu
0
65
Machine Learning in Azure: Service versus Studio
vladiliescu
1
2k
Getting Started with Machine Learning Using Azure Machine Learning Studio and Kaggle Competitions
vladiliescu
1
1.8k
Boy meets Girl: A Machine Learning Deployment Story
vladiliescu
0
2.1k
Mind Reading - Understanding Recommender Systems
vladiliescu
0
79
Predicting the future in 10 minutes or less - an introduction to Azure Machine Learning
vladiliescu
0
70
Privacy-First Development
vladiliescu
0
97
TypeScript vs CoffeeScript
vladiliescu
0
2k
Other Decks in Programming
See All in Programming
概念モデル→論理モデルで気をつけていること
sunnyone
2
170
「待たせ上手」なスケルトンスクリーン、 そのUXの裏側
teamlab
PRO
0
520
HTMLの品質ってなんだっけ? “HTMLクライテリア”の設計と実践
unachang113
4
2.8k
Tool Catalog Agent for Bedrock AgentCore Gateway
licux
6
2.5k
AI時代のUIはどこへ行く?
yusukebe
18
8.9k
Ruby Parser progress report 2025
yui_knk
1
440
Swift Updates - Learn Languages 2025
koher
2
470
1から理解するWeb Push
dora1998
7
1.9k
Kiroで始めるAI-DLC
kaonash
2
590
AIを活用し、今後に備えるための技術知識 / Basic Knowledge to Utilize AI
kishida
22
5.8k
Putting The Genie in the Bottle - A Crash Course on running LLMs on Android
iurysza
0
140
Updates on MLS on Ruby (and maybe more)
sylph01
1
180
Featured
See All Featured
XXLCSS - How to scale CSS and keep your sanity
sugarenia
248
1.3M
BBQ
matthewcrist
89
9.8k
Producing Creativity
orderedlist
PRO
347
40k
YesSQL, Process and Tooling at Scale
rocio
173
14k
Gamification - CAS2011
davidbonilla
81
5.4k
Building Applications with DynamoDB
mza
96
6.6k
A Modern Web Designer's Workflow
chriscoyier
696
190k
Performance Is Good for Brains [We Love Speed 2024]
tammyeverts
12
1.1k
Fireside Chat
paigeccino
39
3.6k
How to Create Impact in a Changing Tech Landscape [PerfNow 2023]
tammyeverts
53
2.9k
[RailsConf 2023] Rails as a piece of cake
palkan
57
5.8k
Building an army of robots
kneath
306
46k
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