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
Untitled No. 12
Search
Stevan Little
January 16, 2010
Programming
1
200
Untitled No. 12
I gave this talk at the Orlando Perl Workshop in 2010
Stevan Little
January 16, 2010
Tweet
Share
More Decks by Stevan Little
See All by Stevan Little
Perl's not dead, .. it got better!
stevan_little
1
710
Perl's Syntactic Legacy
stevan_little
0
1.1k
Installation & Configuration of Modern Perl
stevan_little
2
670
Moe Status Update
stevan_little
1
1.3k
Perl - The Detroit of Scripting Languages
stevan_little
14
13k
Perl is not Dead, it is a Dead End
stevan_little
38
45k
Perl 5 MOP
stevan_little
9
2k
REST from the trenches
stevan_little
6
1.5k
DC-Baltimore Perl Workshop - Keynote
stevan_little
4
830
Other Decks in Programming
See All in Programming
地方に住むエンジニアの残酷な現実とキャリア論
ichimichi
5
1.6k
AIプログラマーDevinは PHPerの夢を見るか?
shinyasaita
1
230
なぜ「共通化」を考え、失敗を繰り返すのか
rinchoku
1
650
状態遷移図を書こう / Sequence Chart vs State Diagram
orgachem
PRO
1
120
#kanrk08 / 公開版 PicoRubyとマイコンでの自作トレーニング計測装置を用いたワークアウトの理想と現実
bash0c7
1
780
生成AI時代のコンポーネントライブラリの作り方
touyou
1
230
AI時代の『改訂新版 良いコード/悪いコードで学ぶ設計入門』 / ai-good-code-bad-code
minodriven
19
7.5k
Node-RED を(HTTP で)つなげる MCP サーバーを作ってみた
highu
0
120
Startups on Rails in Past, Present and Future–Irina Nazarova, RailsConf 2025
irinanazarova
0
130
PicoRuby on Rails
makicamel
2
130
チームのテスト力を総合的に鍛えて品質、スピード、レジリエンスを共立させる/Testing approach that improves quality, speed, and resilience
goyoki
5
920
型で語るカタ
irof
0
130
Featured
See All Featured
[RailsConf 2023 Opening Keynote] The Magic of Rails
eileencodes
29
9.6k
Building Better People: How to give real-time feedback that sticks.
wjessup
367
19k
A better future with KSS
kneath
238
17k
BBQ
matthewcrist
89
9.7k
The Straight Up "How To Draw Better" Workshop
denniskardys
235
140k
Designing Dashboards & Data Visualisations in Web Apps
destraynor
231
53k
Faster Mobile Websites
deanohume
307
31k
Fight the Zombie Pattern Library - RWD Summit 2016
marcelosomers
233
17k
Sharpening the Axe: The Primacy of Toolmaking
bcantrill
44
2.4k
A Tale of Four Properties
chriscoyier
160
23k
ReactJS: Keep Simple. Everything can be a component!
pedronauck
667
120k
Building Applications with DynamoDB
mza
95
6.5k
Transcript
hello
Welcome to my talk, here are some of the modules
I will be talking about
Bread::Board is a Dependency Injection framework, available on CPAN
Plack is Web Infastructure-ware written by miyagawa
Plack::Middleware is the killer app of Plack
Path::Router is a module available on CPAN
... and of course Moose
But first let me toast Open Source, for all the
collaboration and sharing of ideas that make it so much fun to participate in.
There is vast knowledge and great ideas to be found
out there, both in the ivory towers of CompSci departments and in other Open Source communities, it is time to rediscover some ...
This is a great book with a lot of Lambda
Calculus in it and the Y-Combinator is awesome, this kind of elegance and simplicity is not useful, but should be inspiring
Smalltalk is a great system from which too steal from,
Steve Jobs did it in the 80s, Ruby did it in the 90s and Moose did it in the 00s
Haskell is mind-bendingly insane and strikingly beautiful at the same
time
LISP is a wonderful language used by many really smart
people, we can learn from them too
Moose borrows shamelessly from all these technologies and more and
brings them to Perl
Miyagawa has been mining the knowledge of other Open Source
communities to bring us Plack and the next generation of Perl web tools
Now I would like to show you my latest experiment,
bringing together the modules I mentioned earlier.
The goal is simplicity and avoiding needless framework boilerplate or
useless subclassing
Here is an example of a simple counting program, over-engineered
to illustrate how the pieces of an OX::Application fit together
This is the core of the Bread::Board config, notice the
circular dependency between View/Nib and Controller/Root, Bread::Board takes care of this.
This is the routing spec, it defines the available URLs
for the application and will automatically wire them to the controller dependencies
Here is the model, very simple plain old Moose class
Here is the controller, also a simple plain old Moose
class
This is an experiment in making TT work in a
way that is conceptually similar to Cocoa (the Mac OS X framework)
This is our .psgi file, it is so simple and
clean :)
This is our .psgi file evolved to take advantage of
some Plack::Middleware
Web apps should be easily testable too, here we fetch
Bread::Board services to test.
Here we use the Test::Path::Router to check the URLs our
web application will respond too
Here we use Plack::Test to test our web application
Holy crap, look at all the plugs in that outlet!