Upgrade to Pro
— share decks privately, control downloads, hide ads and more …
Speaker Deck
Speaker Deck
PRO
Sign in
Sign up for free
Break Things
Zoe Nolan
December 05, 2015
Programming
0
1k
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
49
Knowing enough to be dangerous
zoenolan
0
970
Where Do You See Yourself in Five Years?
zoenolan
0
780
Always Be Learning
zoenolan
2
1k
Other Decks in Programming
See All in Programming
Hapticをカスタマイズしてみよう / ZOZO Tech Talk #6 Customize Haptic
endoumari
0
310
読みやすいコードを書こう
yutorin
0
410
Micro Frontends with Module Federation: Beyond the Basics @jax2022
manfredsteyer
PRO
1
290
The future of trust stores in Python
sethmlarson
0
180
職場にPythonistaを増やす方法
soogie
0
310
Is Rust a great language for building Kubernetes ecosystem
deepu105
0
140
あなたの会社の古いシステム、なんとかしませんか?~システム刷新から考えるDX化への道筋とバリエーション~/webinar20220420-systems
grapecity_dev
0
130
Airflow1=>Airflow2へのupgrade 事例紹介
reizist
0
110
WindowsコンテナDojo : 第1回 Visual StudioでWindowsコンテナアプリ作成
oniak3ibm
PRO
0
330
Micro Frontends with Module Federation: Beyond the Basics @codecrafts2022
manfredsteyer
PRO
0
100
A technique to implement DSL in Ruby
okuramasafumi
0
750
Yumemi.apk #6 ~ゆめみのAndroidエンジニア 日頃の成果大発表会!~ Session 2
blendthink
1
210
Featured
See All Featured
Ruby is Unlike a Banana
tanoku
91
9.2k
In The Pink: A Labor of Love
frogandcode
130
21k
Stop Working from a Prison Cell
hatefulcrawdad
261
17k
実際に使うSQLの書き方 徹底解説 / pgcon21j-tutorial
soudai
38
12k
Facilitating Awesome Meetings
lara
29
3.9k
How New CSS Is Changing Everything About Graphic Design on the Web
jensimmons
212
11k
YesSQL, Process and Tooling at Scale
rocio
157
12k
4 Signs Your Business is Dying
shpigford
169
20k
Debugging Ruby Performance
tmm1
65
10k
Keith and Marios Guide to Fast Websites
keithpitt
404
21k
Refactoring Trust on Your Teams (GOTO; Chicago 2020)
rmw
19
1.4k
How GitHub (no longer) Works
holman
296
140k
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 ada.lovelace@byron.net
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/