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
73
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
810
Like a rabbit in headlights: Removing the OO googles with F#
roundcrisis
0
410
Coding play, crafting code
roundcrisis
0
1.6k
Hidden Gems of Everyday Game Development with C#
roundcrisis
1
470
Monogame 3
roundcrisis
0
240
StateOfPlayPresentation.pdf
roundcrisis
0
65
Other Decks in Programming
See All in Programming
今年もTECHSCOREブログを書き続けます!
hiraoku101
0
180
S3ストレージクラスの「見える」「ある」「使える」は全部違う ─ 体験から見た、仕様の深淵を覗く
ya_ma23
0
1.2k
存在論的プログラミング: 時間と存在を記述する
koriym
5
540
20260320登壇資料
pharct
0
130
コードレビューをしない選択 #でぃーぷらすトウキョウ
kajitack
3
1.2k
Everything Claude Code OSS詳細 — 5層構造の中身と導入方法
targe
0
150
AWS×クラウドネイティブソフトウェア設計 / AWS x Cloud-Native Software Design
nrslib
16
3.4k
2026-03-27 #terminalnight 変数展開とコマンド展開でターミナル作業をスマートにする方法
masasuzu
0
210
「効かない!」依存性注入(DI)を活用したAPI Platformのエラーハンドリング奮闘記
mkmk884
0
260
Fundamentals of Software Engineering In the Age of AI
therealdanvega
2
300
Geminiをパートナーに神社DXシステムを個人開発した話(いなめぐDX 開発振り返り)
fujiba
0
120
仕様漏れ実装漏れをなくすトレーサビリティAI基盤のご紹介
orgachem
PRO
7
3.2k
Featured
See All Featured
Learning to Love Humans: Emotional Interface Design
aarron
275
41k
Exploring the relationship between traditional SERPs and Gen AI search
raygrieselhuber
PRO
2
3.7k
Design in an AI World
tapps
0
180
Paper Plane (Part 1)
katiecoart
PRO
0
6k
How to Think Like a Performance Engineer
csswizardry
28
2.5k
Refactoring Trust on Your Teams (GOTO; Chicago 2020)
rmw
35
3.4k
Code Reviewing Like a Champion
maltzj
528
40k
Raft: Consensus for Rubyists
vanstee
141
7.4k
Lessons Learnt from Crawling 1000+ Websites
charlesmeaden
PRO
1
1.2k
YesSQL, Process and Tooling at Scale
rocio
174
15k
Designing for humans not robots
tammielis
254
26k
A Soul's Torment
seathinner
5
2.5k
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