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
100% JS @ LXJS 2012
Search
Lucas Hrabovsky
September 29, 2012
Technology
2
200
100% JS @ LXJS 2012
From Applied.js group at LXJS 2012
Lucas Hrabovsky
September 29, 2012
Tweet
Share
More Decks by Lucas Hrabovsky
See All by Lucas Hrabovsky
Compass Plugins - Philly MUG, May 24th 2018
__lucas
0
44
Electron at MongoDB: LibertyJS 2016
__lucas
0
270
standalone executables for node.js apps
__lucas
1
30
Boatyard @ EmpireJS 2012
__lucas
0
99
Cloudsearch @ ex.fm
__lucas
0
97
mongodb + ex.fm @ MongoPGH 2012
__lucas
2
1k
AWS Customer Presentation: exfm - How exfm uses AWS and Amazon CloudSearch- AWS Summit 2012 - NYC
__lucas
2
260
Other Decks in Technology
See All in Technology
ガチな登山用デバイスからこんにちは
halka
1
240
La gouvernance territoriale des données grâce à la plateforme Terreze
bluehats
0
160
生成AI時代のデータ基盤設計〜ペースレイヤリングで実現する高速開発と持続性〜 / Levtech Meetup_Session_2
sansan_randd
1
150
DDD集約とサービスコンテキスト境界との関係性
pandayumi
3
280
ブロックテーマ時代における、テーマの CSS について考える Toro_Unit / 2025.09.13 @ Shinshu WordPress Meetup
torounit
0
120
BPaaSにおける人と協働する前提のAIエージェント-AWS登壇資料
kentarofujii
0
130
Rustから学ぶ 非同期処理の仕組み
skanehira
1
130
KotlinConf 2025_イベントレポート
sony
1
120
スマートファクトリーの第一歩 〜AWSマネージドサービスで 実現する予知保全と生成AI活用まで
ganota
2
210
Platform開発が先行する Platform Engineeringの違和感
kintotechdev
4
550
ChatGPTとPlantUML/Mermaidによるソフトウェア設計
gowhich501
1
130
サラリーマンの小遣いで作るtoCサービス - Cloudflare Workersでスケールする開発戦略
shinaps
2
420
Featured
See All Featured
The Language of Interfaces
destraynor
161
25k
Keith and Marios Guide to Fast Websites
keithpitt
411
22k
Building Flexible Design Systems
yeseniaperezcruz
328
39k
Evolution of real-time – Irina Nazarova, EuRuKo, 2024
irinanazarova
8
920
Designing for Performance
lara
610
69k
Documentation Writing (for coders)
carmenintech
74
5k
Connecting the Dots Between Site Speed, User Experience & Your Business [WebExpo 2025]
tammyeverts
8
520
Why Our Code Smells
bkeepers
PRO
339
57k
Designing Experiences People Love
moore
142
24k
Making the Leap to Tech Lead
cromwellryan
135
9.5k
XXLCSS - How to scale CSS and keep your sanity
sugarenia
248
1.3M
Bootstrapping a Software Product
garrettdimon
PRO
307
110k
Transcript
100% JS Saturday, September 29, 12
Hello. __lucas Saturday, September 29, 12
CTO http://ex.fm/iphone http://ex.fm/ Saturday, September 29, 12
What kind of company do we want to be? Saturday,
September 29, 12
Who do we hire? Saturday, September 29, 12
What we need Design UX JavaScript Python Java Objective-C Product
Saturday, September 29, 12
What we need take 2 Design UX JavaScript Python Java
Objective-C Product Saturday, September 29, 12
How do we get there? Client (some other time) Mobile
Server Saturday, September 29, 12
SERVER. Saturday, September 29, 12
Current Stack Flask App uWSGI Nginx Saturday, September 29, 12
Too many things that can go wrong. Saturday, September 29,
12
Pythons Gone Wild Saturday, September 29, 12
PubSub of all user events. Saturday, September 29, 12
Across processes and machines. Saturday, September 29, 12
Don’t try this in Python. Saturday, September 29, 12
<3 Socket.io Saturday, September 29, 12
YNGWIE Saturday, September 29, 12
Hmm... Saturday, September 29, 12
Something going on here. Saturday, September 29, 12
User Service API Site Service Song Service Lots of express
Saturday, September 29, 12
Services are cheap. Saturday, September 29, 12
Spread load and ownership. Saturday, September 29, 12
Easier to test. Saturday, September 29, 12
Happier developers. Saturday, September 29, 12
MOBILE. Saturday, September 29, 12
Our Mobile Web App is better than our native apps.
Saturday, September 29, 12
Q = Σ (P - D) Product Quality = Passion
- Cognitive Distance Saturday, September 29, 12
NO “Why not just hire more android and iOS developers?”
Saturday, September 29, 12
Don’t have time or money for specialists. Saturday, September 29,
12
Just because it’s native does not make it better. Saturday,
September 29, 12
Try optimizing android list views... Saturday, September 29, 12
<3 PhoneGap Saturday, September 29, 12
Deploy to S3 Saturday, September 29, 12
Plugins = Native Polyfills Saturday, September 29, 12
Fix HTML5 Audio with IEXAudio Plugin. https://github.com/exfm/iex-audio Saturday, September 29,
12
Side-note: FireBreath - Prototype new browser API’s http://www.firebreath.org Saturday, September
29, 12
LEARNED. Saturday, September 29, 12
YES “Do you really want front-end people working on the
server?” Saturday, September 29, 12
90/10 Get some data from an API Render a template
Saturday, September 29, 12
Know How The Sausages Get Made. Saturday, September 29, 12
Implement it yourself. Saturday, September 29, 12
Context Switching Saturday, September 29, 12
But.................... Saturday, September 29, 12
2 Problems so far. Saturday, September 29, 12
1. Front-end people have an inherent fear of databases. Saturday,
September 29, 12
Like Spiders... Saturday, September 29, 12
Covered in Spiders... Saturday, September 29, 12
That are electronic. Saturday, September 29, 12
$.post(“/user/”, {‘username’: ‘lucas’}) db.get(‘users’).put({‘username’: ‘lucas’}) Saturday, September 29, 12
Tarantulas aren’t poisonous. Saturday, September 29, 12
2. Async for the procedural folk. Saturday, September 29, 12
Mind-melting, complex, racey, callback nesting. Saturday, September 29, 12
Use flow-control. Saturday, September 29, 12
Anything in futures is great. https://github.com/coolaj86/futures Saturday, September 29, 12
And promises. Saturday, September 29, 12
when is nice and works with jQuery deferreds https://github.com/cujojs/when Saturday,
September 29, 12
Not instant. Saturday, September 29, 12
Sometimes a month, Saturday, September 29, 12
Sometimes an hour, Saturday, September 29, 12
Totally worth it. Saturday, September 29, 12
Obrigado. @__lucas https://github.com/exfm http://ex.fm Saturday, September 29, 12