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
#QiitaBash MCPのセキュリティ
ryosukedtomita
1
1.3k
テストから始めるAgentic Coding 〜Claude Codeと共に行うTDD〜 / Agentic Coding starts with testing
rkaga
12
4.5k
AI コーディングエージェントの時代へ:JetBrains が描く開発の未来
masaruhr
1
150
おやつのお供はお決まりですか?@WWDC25 Recap -Japan-\(region).swift
shingangan
0
140
イベントストーミング図からコードへの変換手順 / Procedure for Converting Event Storming Diagrams to Code
nrslib
2
820
PHPでWebSocketサーバーを実装しよう2025
kubotak
0
290
High-Level Programming Languages in AI Era -Human Thought and Mind-
hayat01sh1da
PRO
0
780
ソフトウェア品質を数字で捉える技術。事業成長を支えるシステム品質の マネジメント
takuya542
1
13k
Hypervel - A Coroutine Framework for Laravel Artisans
albertcht
1
130
0626 Findy Product Manager LT Night_高田スライド_speaker deck用
mana_takada
0
170
GitHub Copilot and GitHub Codespaces Hands-on
ymd65536
2
150
Composerが「依存解決」のためにどんな工夫をしているか #phpcon
o0h
PRO
1
260
Featured
See All Featured
Statistics for Hackers
jakevdp
799
220k
How to train your dragon (web standard)
notwaldorf
95
6.1k
The Web Performance Landscape in 2024 [PerfNow 2024]
tammyeverts
8
690
Stop Working from a Prison Cell
hatefulcrawdad
271
21k
Being A Developer After 40
akosma
90
590k
GitHub's CSS Performance
jonrohan
1031
460k
Making Projects Easy
brettharned
116
6.3k
Fight the Zombie Pattern Library - RWD Summit 2016
marcelosomers
233
17k
Practical Tips for Bootstrapping Information Extraction Pipelines
honnibal
PRO
20
1.3k
Save Time (by Creating Custom Rails Generators)
garrettdimon
PRO
31
1.3k
I Don’t Have Time: Getting Over the Fear to Launch Your Podcast
jcasabona
32
2.4k
How to Ace a Technical Interview
jacobian
278
23k
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