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
440
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
Go Code Generation at newmo / 2024-08-27 #newmo_layerx_go
genkey6
0
530
開発を加速する共有Swift Package実践
elmetal
PRO
0
340
iOSの隠されたAPIを解明し、開発効率を向上させる方法/iOSDC24
noppefoxwolf
2
120
どうしてこうなった?から理解するActive Recordの関連の裏側
willnet
5
530
New Order in Cascade Sorting Order
mugi_uno
3
2.5k
GoのIteratorに詳しくなってしまう
inatonix
1
180
Rechartsで楽にゴリゴリにカスタマイズする!
10tera
1
130
Mastering AsyncSequence - 使う・作る・他のデザインパターン(クロージャ、Delegate など)から移行する
treastrain
4
1.5k
Method Swizzlingを行うライブラリにおけるマルチモジュール設計
yoshikma
0
110
Prompt Cachingは本当に効果的なのか検証してみた.pdf
ttnyt8701
0
480
フロントエンドカンファレンス北海道2024 『小規模サイトでも使えるVite 〜HTMLコーディングをよりスマートに〜』長谷川広武(ハム)
h2ham
1
2.5k
仮想ファイルシステムを導入して開発環境のストレージ課題を解消する
segadevtech
2
430
Featured
See All Featured
Intergalactic Javascript Robots from Outer Space
tanoku
268
26k
Stop Working from a Prison Cell
hatefulcrawdad
267
20k
Facilitating Awesome Meetings
lara
49
5.9k
The Invisible Side of Design
smashingmag
295
50k
How To Stay Up To Date on Web Technology
chriscoyier
785
250k
Reflections from 52 weeks, 52 projects
jeffersonlam
346
20k
For a Future-Friendly Web
brad_frost
174
9.3k
Build your cross-platform service in a week with App Engine
jlugia
228
18k
Music & Morning Musume
bryan
46
6k
Designing with Data
zakiwarfel
98
5k
The Mythical Team-Month
searls
218
43k
GraphQLの誤解/rethinking-graphql
sonatard
65
9.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/