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.5k
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
550
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.4k
Other Decks in Programming
See All in Programming
go directiveを最新にしすぎないで欲しい話──あるいは、Go 1.26からgo mod initで作られるgo directiveの値が変わる話 / Go 1.26 リリースパーティ
arthur1
2
470
ご飯食べながらエージェントが開発できる。そう、Agentic Engineeringならね。
yokomachi
1
280
new(1.26) ← これすき / kamakura.go #8
utgwkk
0
1.6k
Claude Code の Skill で複雑な既存仕様をすっきり整理しよう
yuichirokato
1
290
エラーログのマスキングの仕組みづくりに役立ったASTの話
kumoichi
0
110
atmaCup #23でAIコーディングを活用した話
ml_bear
4
740
AIコーディングの理想と現実 2026 | AI Coding: Expectations vs. Reality 2026
tomohisa
0
1k
JPUG勉強会 OSSデータベースの内部構造を理解しよう
oga5
2
230
nuget-server - あなたが必要だったNuGetサーバー
kekyo
PRO
0
170
コーディングルールの鮮度を保ちたい / keep-fresh-go-internal-conventions
handlename
0
150
grapheme_strrev関数が採択されました(あと雑感)
youkidearitai
PRO
1
210
CopilotKit + AG-UIを学ぶ
nearme_tech
PRO
1
130
Featured
See All Featured
Mobile First: as difficult as doing things right
swwweet
225
10k
Making the Leap to Tech Lead
cromwellryan
135
9.8k
Optimising Largest Contentful Paint
csswizardry
37
3.6k
Jess Joyce - The Pitfalls of Following Frameworks
techseoconnect
PRO
1
94
Getting science done with accelerated Python computing platforms
jacobtomlinson
2
130
Bioeconomy Workshop: Dr. Julius Ecuru, Opportunities for a Bioeconomy in West Africa
akademiya2063
PRO
1
68
HDC tutorial
michielstock
1
490
BBQ
matthewcrist
89
10k
Sam Torres - BigQuery for SEOs
techseoconnect
PRO
0
210
A brief & incomplete history of UX Design for the World Wide Web: 1989–2019
jct
1
310
Intergalactic Javascript Robots from Outer Space
tanoku
273
27k
Prompt Engineering for Job Search
mfonobong
0
180
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/