Upgrade to PRO for Only $50/Year—Limited-Time Offer! 🔥
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
760
Training Better Models Using Automated Machine Learning
vladiliescu
0
70
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.8k
Boy meets Girl: A Machine Learning Deployment Story
vladiliescu
0
2.1k
Mind Reading - Understanding Recommender Systems
vladiliescu
0
80
Predicting the future in 10 minutes or less - an introduction to Azure Machine Learning
vladiliescu
0
73
Privacy-First Development
vladiliescu
0
98
TypeScript vs CoffeeScript
vladiliescu
0
2k
Other Decks in Programming
See All in Programming
LLM Çağında Backend Olmak: 10 Milyon Prompt'u Milisaniyede Sorgulamak
selcukusta
0
120
開発に寄りそう自動テストの実現
goyoki
2
1k
AIエンジニアリングのご紹介 / Introduction to AI Engineering
rkaga
8
2.9k
Navigation 3: 적응형 UI를 위한 앱 탐색
fornewid
1
350
認証・認可の基本を学ぼう前編
kouyuume
0
250
C-Shared Buildで突破するAI Agent バックテストの壁
po3rin
0
390
Context is King? 〜Verifiability時代とコンテキスト設計 / Beyond "Context is King"
rkaga
10
1.3k
S3 VectorsとStrands Agentsを利用したAgentic RAGシステムの構築
tosuri13
6
310
俺流レスポンシブコーディング 2025
tak_dcxi
14
8.9k
20251127_ぼっちのための懇親会対策会議
kokamoto01_metaps
2
440
Tinkerbellから学ぶ、Podで DHCPをリッスンする手法
tomokon
0
130
AIコーディングエージェント(skywork)
kondai24
0
180
Featured
See All Featured
Distributed Sagas: A Protocol for Coordinating Microservices
caitiem20
333
22k
We Have a Design System, Now What?
morganepeng
54
7.9k
YesSQL, Process and Tooling at Scale
rocio
174
15k
The Cult of Friendly URLs
andyhume
79
6.7k
The Art of Programming - Codeland 2020
erikaheidi
56
14k
How GitHub (no longer) Works
holman
316
140k
Performance Is Good for Brains [We Love Speed 2024]
tammyeverts
12
1.3k
What’s in a name? Adding method to the madness
productmarketing
PRO
24
3.8k
Mobile First: as difficult as doing things right
swwweet
225
10k
Fight the Zombie Pattern Library - RWD Summit 2016
marcelosomers
234
17k
The Cost Of JavaScript in 2023
addyosmani
55
9.4k
Optimising Largest Contentful Paint
csswizardry
37
3.5k
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