Upgrade to Pro
— share decks privately, control downloads, hide ads and more …
Speaker Deck
Speaker Deck
PRO
Sign in
Sign up for free
Works on all machines
Andrea Magnorsky
October 20, 2012
Programming
0
58
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
550
Like a rabbit in headlights: Removing the OO googles with F#
roundcrisis
0
270
Coding play, crafting code
roundcrisis
0
1.1k
Hidden Gems of Everyday Game Development with C#
roundcrisis
1
340
Monogame 3
roundcrisis
0
150
StateOfPlayPresentation.pdf
roundcrisis
0
35
Other Decks in Programming
See All in Programming
Licences open source : entre guerre de clochers et radicalité
pylapp
2
510
Let's keep Commodore 64 alive for the next 40 years
mehowte
1
110
engineer
spacemarket
0
2.3k
【Scrum Fest Osaka 2022】スクラムチームに放り込まれた若手エンジニアの皆さん、どのように技術のキャッチアップをしていくかイメージはついていますか?
miiiki
0
120
Angular‘s Future without NgModules: Architectures with Standalone Components @enterJS
manfredsteyer
PRO
0
240
Cross Deviceチームにおけるスマートテレビアプリ開発ってどんな感じ?
cokaholic
0
120
Reactive Java Microservices on Kubernetes with Spring and JHipster
deepu105
1
170
UI Testing of Jetpack Compose Apps, AppDevCon
alexzhukovich
0
170
無限スクロールビューライブラリ 二つの設計思想比較
harumak
0
250
Node.jsデザインパターンを読んで
mmmommm
0
2.8k
GoogleI/O2022 LT報告会資料
shinsukefujita1126
0
360
BASE BANKチームの技術選定と歴史 / how to decide technology selection for startup
budougumi0617
0
1.2k
Featured
See All Featured
Scaling GitHub
holman
451
140k
Raft: Consensus for Rubyists
vanstee
126
5.4k
Teambox: Starting and Learning
jrom
123
7.7k
How GitHub (no longer) Works
holman
296
140k
Optimizing for Happiness
mojombo
365
63k
How GitHub Uses GitHub to Build GitHub
holman
465
280k
Done Done
chrislema
174
14k
Let's Do A Bunch of Simple Stuff to Make Websites Faster
chriscoyier
498
130k
The Invisible Side of Design
smashingmag
290
48k
Typedesign – Prime Four
hannesfritz
34
1.4k
Six Lessons from altMBA
skipperchong
14
1.4k
The Pragmatic Product Professional
lauravandoore
19
3k
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