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
660
Training Better Models Using Automated Machine Learning
vladiliescu
0
61
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
77
Predicting the future in 10 minutes or less - an introduction to Azure Machine Learning
vladiliescu
0
68
Privacy-First Development
vladiliescu
0
97
TypeScript vs CoffeeScript
vladiliescu
0
2k
Other Decks in Programming
See All in Programming
Claude Code と OpenAI o3 で メタデータ情報を作る
laket
0
130
Understanding Ruby Grammar Through Conflicts
yui_knk
1
120
Go製CLIツールをnpmで配布するには
syumai
2
1.2k
オホーツクでコミュニティを立ち上げた理由―地方出身プログラマの挑戦 / TechRAMEN 2025 Conference
lemonade_37
2
480
Portapad紹介プレゼンテーション
gotoumakakeru
1
130
CEDEC2025 長期運営ゲームをあと10年続けるための0から始める自動テスト ~4000項目を50%自動化し、月1→毎日実行にした3年間~
akatsukigames_tech
0
140
サイトを作ったらNFCタグキーホルダーを爆速で作れ!
yuukis
0
400
State of CSS 2025
benjaminkott
1
110
物語を動かす行動"量" #エンジニアニメ
konifar
14
5.3k
『リコリス・リコイル』に学ぶ!! 〜キャリア戦略における計画的偶発性理論と変わる勇気の重要性〜
wanko_it
1
570
令和最新版手のひらコンピュータ
koba789
14
7.9k
kiroでゲームを作ってみた
iriikeita
0
180
Featured
See All Featured
Rails Girls Zürich Keynote
gr2m
95
14k
Rebuilding a faster, lazier Slack
samanthasiow
83
9.1k
Speed Design
sergeychernyshev
32
1.1k
Intergalactic Javascript Robots from Outer Space
tanoku
272
27k
Improving Core Web Vitals using Speculation Rules API
sergeychernyshev
18
1.1k
Dealing with People You Can't Stand - Big Design 2015
cassininazir
367
26k
Building Flexible Design Systems
yeseniaperezcruz
328
39k
Mobile First: as difficult as doing things right
swwweet
223
9.9k
Responsive Adventures: Dirty Tricks From The Dark Corners of Front-End
smashingmag
251
21k
Scaling GitHub
holman
462
140k
Fantastic passwords and where to find them - at NoRuKo
philnash
51
3.4k
[Rails World 2023 - Day 1 Closing Keynote] - The Magic of Rails
eileencodes
36
2.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