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
Break Things
Search
Zoe Nolan
December 05, 2015
Programming
0
1.4k
Break Things
Don’t be afraid of experimenting for Rails Girls London 6
Zoe Nolan
December 05, 2015
Tweet
Share
More Decks by Zoe Nolan
See All by Zoe Nolan
Mistakes I've made in my career (so far)
zoenolan
0
460
Knowing enough to be dangerous
zoenolan
0
1.3k
Where Do You See Yourself in Five Years?
zoenolan
0
1.1k
Always Be Learning
zoenolan
2
1.3k
Other Decks in Programming
See All in Programming
Recoilを剥がしている話
kirik
5
7.2k
PHPで学ぶプログラミングの教訓 / Lessons in Programming Learned through PHP
nrslib
4
400
Spatial Rendering for Apple Vision Pro
warrenm
0
150
range over funcの使い道と非同期N+1リゾルバーの夢 / about a range over func
mackee
0
110
歴史と現在から考えるスケーラブルなソフトウェア開発のプラクティス
i10416
0
140
htmxって知っていますか?次世代のHTML
hiro_ghap1
0
350
ChatGPT とつくる PHP で OS 実装
memory1994
PRO
2
130
毎日13時間もかかるバッチ処理をたった3日で60%短縮するためにやったこと
sho_ssk_
1
360
良いユニットテストを書こう
mototakatsu
8
3.1k
競技プログラミングへのお誘い@阪大BOOSTセミナー
kotamanegi
0
360
KMP와 kotlinx.rpc로 서버와 클라이언트 동기화
kwakeuijin
0
190
創造的活動から切り拓く新たなキャリア 好きから始めてみる夜勤オペレーターからSREへの転身
yjszk
1
140
Featured
See All Featured
4 Signs Your Business is Dying
shpigford
182
21k
The Psychology of Web Performance [Beyond Tellerrand 2023]
tammyeverts
45
2.2k
JavaScript: Past, Present, and Future - NDC Porto 2020
reverentgeek
47
5.1k
How to Think Like a Performance Engineer
csswizardry
22
1.2k
Improving Core Web Vitals using Speculation Rules API
sergeychernyshev
1
110
Writing Fast Ruby
sferik
628
61k
A Modern Web Designer's Workflow
chriscoyier
693
190k
How to Ace a Technical Interview
jacobian
276
23k
Understanding Cognitive Biases in Performance Measurement
bluesmoon
26
1.5k
It's Worth the Effort
3n
183
28k
RailsConf & Balkan Ruby 2019: The Past, Present, and Future of Rails at GitHub
eileencodes
132
33k
Principles of Awesome APIs and How to Build Them.
keavy
126
17k
Transcript
Break Things Don’t be afraid of experimenting Zoë Nolan Rails
Girls London December 2015
Hello my name is Zoë Find me online at http://zoenolan.org
Don't worry about taking notes http://zoenolan.org/blog/2015/12/break-things/
Try things Following guides is a good start But only
the start of your journey
Not all Experiments work Things will go wrong
Version Control Word’s track changes for source code
Git Created by Linus Torvalds Been around since 2005 Widely
used
Who am I? git config --global user.name “Ada Lovelace“ git
config --global user.email
[email protected]
Somewhere to store the changes git init RailsGirlsLondonSix
Adding changes git add TheNextFacebook.rb git commit
Branching Create a Branch git branch CoolNewThing Switch to a
branch git checkout CoolNewThing Delete a Branch git branch –D CoolNewThing
See your changes git status git log
Tutorials Try Git http://try.github.com/ How to Use Git and GitHub
https://www.udacity.com/course/how-to-use-git-and-github--ud775 Pro Git http://git-scm.com/book
Resources Git cheat sheet https://git.wiki.kernel.org/index.php/GitCheatSheet A successful Git branching model
http://nvie.com/posts/a-successful-git-branching-model/
http://zoenolan.org/blog/2015/12/break-things/