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
Works on all machines
Search
Andrea Magnorsky
October 20, 2012
Programming
0
69
Works on all machines
A gentle introduction to XP (eXtreme Programming)
Andrea Magnorsky
October 20, 2012
Tweet
Share
More Decks by Andrea Magnorsky
See All by Andrea Magnorsky
F#, this ain't a game
roundcrisis
0
780
Like a rabbit in headlights: Removing the OO googles with F#
roundcrisis
0
390
Coding play, crafting code
roundcrisis
0
1.5k
Hidden Gems of Everyday Game Development with C#
roundcrisis
1
450
Monogame 3
roundcrisis
0
220
StateOfPlayPresentation.pdf
roundcrisis
0
63
Other Decks in Programming
See All in Programming
明示と暗黙 ー PHPとGoの インターフェイスの違いを知る
shimabox
2
510
Agentic Coding: The Future of Software Development with Agents
mitsuhiko
0
100
システム成長を止めない!本番無停止テーブル移行の全貌
sakawe_ee
1
200
Goで作る、開発・CI環境
sin392
0
230
ソフトウェア品質を数字で捉える技術。事業成長を支えるシステム品質の マネジメント
takuya542
1
13k
AIプログラマーDevinは PHPerの夢を見るか?
shinyasaita
1
220
Porting a visionOS App to Android XR
akkeylab
0
460
PostgreSQLのRow Level SecurityをPHPのORMで扱う Eloquent vs Doctrine #phpcon #track2
77web
2
530
#kanrk08 / 公開版 PicoRubyとマイコンでの自作トレーニング計測装置を用いたワークアウトの理想と現実
bash0c7
1
770
AIエージェントはこう育てる - GitHub Copilot Agentとチームの共進化サイクル
koboriakira
0
590
プロダクト志向なエンジニアがもう一歩先の価値を目指すために意識したこと
nealle
0
130
The Modern View Layer Rails Deserves: A Vision For 2025 And Beyond @ RailsConf 2025, Philadelphia, PA
marcoroth
1
150
Featured
See All Featured
Become a Pro
speakerdeck
PRO
29
5.4k
Six Lessons from altMBA
skipperchong
28
3.9k
Navigating Team Friction
lara
187
15k
How GitHub (no longer) Works
holman
314
140k
Intergalactic Javascript Robots from Outer Space
tanoku
271
27k
A Modern Web Designer's Workflow
chriscoyier
695
190k
[RailsConf 2023 Opening Keynote] The Magic of Rails
eileencodes
29
9.6k
What’s in a name? Adding method to the madness
productmarketing
PRO
23
3.5k
Templates, Plugins, & Blocks: Oh My! Creating the theme that thinks of everything
marktimemedia
31
2.4k
The Art of Delivering Value - GDevCon NA Keynote
reverentgeek
15
1.5k
The Straight Up "How To Draw Better" Workshop
denniskardys
234
140k
The Illustrated Children's Guide to Kubernetes
chrisshort
48
50k
Transcript
Works on my all machines Andrea Magnorsky
Things I have done (that have logos) @roundcrisis www.batcatgames.com
Wonderful things I heard over time "You need to have
regional setting en-ie for that to work" "Did you forget to install the database? oh and run the scripts too" "Failed with a NullException? ahh.. maybe it wont work without the update to LolCat-4.03 "
None
Isolate to replicate
Source Control
Source Control - pick your poison Image source http://livingdead01.deviantart.com/art/Pick-your-Poison-144058880 Git
Bazar
"I'm an egotistical bastard, and I name all my projects
after myself. First 'Linux', now 'git'." Linus Torvalds
Doesn't need to happen
Continuous Integration - Discipline, - Environmental differences in developers machines
Every commit builds
• Checks and download required dependencies • Builds your project
• Run tests • Package your build (think multiple configurations: Demo, Stable, etc) • Notify of result Automate your build
Consume the code you wrote with more code. Unit test,
tests a unit, generally a class, in isolation. Integration, tests at a system level using many units. Unit and integration testing
Example
These practises have been in place since early 1996, however
not everyone uses them, this is really sad. There is no point in waiting This is not new
• Do all this at the start of a project,
easier to grow. • Read on ...Martin Fowler - http://bit.ly/ciFowler Start at the begining
Thanks