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
490
Knowing enough to be dangerous
zoenolan
0
1.4k
Where Do You See Yourself in Five Years?
zoenolan
0
1.2k
Always Be Learning
zoenolan
2
1.3k
Other Decks in Programming
See All in Programming
Rubyの!メソッドをちゃんと理解する
alstrocrack
1
130
複雑なフォームの jotai 設計 / Designing jotai(state) for Complex Forms #layerx_frontend
izumin5210
6
1.5k
Contribute to Comunities | React Tokyo Meetup #4 LT
sasagar
0
600
Amazon CloudWatchの地味だけど強力な機能紹介!
itotsum
0
240
Thank you <💅>, What's the Next?
ahoxa
1
590
Laravel × Clean Architecture
bumptakayuki
PRO
0
140
サービスレベルを管理してアジャイルを加速しよう!! / slm-accelerate-agility
tomoyakitaura
1
200
By the way Google Cloud Next 2025に行ってみてどうだった
ymd65536
0
120
GitHub Copilot for Azureを使い倒したい
ymd65536
1
330
VitestのIn-Source Testingが便利
taro28
8
2.4k
AIコーディングエージェントを 「使いこなす」ための実践知と現在地 in ログラス / How to Use AI Coding Agent in Loglass
rkaga
4
1.2k
プロフェッショナルとしての成長「問題の深掘り」が導く真のスキルアップ / issue-analysis-and-skill-up
minodriven
8
1.9k
Featured
See All Featured
How to Think Like a Performance Engineer
csswizardry
23
1.6k
Docker and Python
trallard
44
3.4k
Build your cross-platform service in a week with App Engine
jlugia
230
18k
Build The Right Thing And Hit Your Dates
maggiecrowley
35
2.7k
The Psychology of Web Performance [Beyond Tellerrand 2023]
tammyeverts
47
2.7k
For a Future-Friendly Web
brad_frost
177
9.7k
Art, The Web, and Tiny UX
lynnandtonic
298
20k
The MySQL Ecosystem @ GitHub 2015
samlambert
251
12k
Scaling GitHub
holman
459
140k
The Web Performance Landscape in 2024 [PerfNow 2024]
tammyeverts
5
560
Stop Working from a Prison Cell
hatefulcrawdad
268
20k
The Cost Of JavaScript in 2023
addyosmani
49
7.8k
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/