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
[SRE NEXT] 複雑なシステムにおけるUser Journey SLOの導入
yakenji
0
150
Claude Code派?Gemini CLI派? みんなで比較LT会!_20250716
junholee
1
530
SQLアンチパターン第2版 データベースプログラミングで陥りがちな失敗とその対策 / Intro to SQL Antipatterns 2nd
twada
PRO
15
2k
バイブコーディング超えてバイブデプロイ〜CloudflareMCPで実現する、未来のアプリケーションデリバリー〜
azukiazusa1
0
350
Agentic Coding: The Future of Software Development with Agents
mitsuhiko
0
130
A full stack side project webapp all in Kotlin (KotlinConf 2025)
dankim
0
150
dbt民主化とLLMによる開発ブースト ~ AI Readyな分析サイクルを目指して ~
yoshyum
3
1.1k
PHP 8.4の新機能「プロパティフック」から学ぶオブジェクト指向設計とリスコフの置換原則
kentaroutakeda
2
1k
可変変数との向き合い方 $$変数名が踊り出す$$ / php conference Variable variables
gunji
0
180
PicoRuby on Rails
makicamel
3
140
Modern Angular with Signals and Signal Store:New Rules for Your Architecture @enterJS Advanced Angular Day 2025
manfredsteyer
PRO
0
270
ISUCON研修おかわり会 講義スライド
arfes0e2b3c
1
470
Featured
See All Featured
Optimising Largest Contentful Paint
csswizardry
37
3.3k
Adopting Sorbet at Scale
ufuk
77
9.5k
Making Projects Easy
brettharned
116
6.3k
jQuery: Nuts, Bolts and Bling
dougneiner
63
7.8k
Fireside Chat
paigeccino
37
3.5k
Fight the Zombie Pattern Library - RWD Summit 2016
marcelosomers
233
17k
The Art of Programming - Codeland 2020
erikaheidi
54
13k
CSS Pre-Processors: Stylus, Less & Sass
bermonpainter
357
30k
Navigating Team Friction
lara
187
15k
A better future with KSS
kneath
238
17k
Bootstrapping a Software Product
garrettdimon
PRO
307
110k
Creating an realtime collaboration tool: Agile Flush - .NET Oxford
marcduiker
30
2.2k
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