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
For Loop Asaba
Search
fela
November 10, 2017
Business
0
56
For Loop Asaba
fela
November 10, 2017
Tweet
Share
More Decks by fela
See All by fela
For Loop Asaba 2
olufela
0
68
Pitch deck
olufela
0
41
Other Decks in Business
See All in Business
VISASQ: ABOUT US
eikohashiba
15
560k
ラクスル会社紹介資料 / RAKSUL Introduction
raksulrecruiting
16
200k
受託開発からtoCプロダクトへ 〜変わったこと・変わらないこと〜 #事業を動かすエンジニア
layerx
PRO
2
300
クリヤマホールディングス㈱採用資料
uemura2024
0
6.7k
株式会社カウシェ Company Deck
kauche
2
220k
気がついたら自分がボトルネックになってた -1人でプロダクトをみることになった編-
koinunopochi
0
190
2025年度ICT職専門研修(海外派遣研修)報告書 No.3
tokyo_metropolitan_gov_digital_hr
0
140
社内政治と交渉
muture
PRO
0
150
Purviewで権限のカタログ化をしてみたかった~データ製品アクセスポリシーとは?~
ryuseiiida
0
180
Sol Naciente_Try Out_質問項目
solnaciente
0
1.4k
「きっかけ作り」から始めるKiro定着の軌跡
iamme
0
170
メドピアのValues2025 -もう一度スタートアップへ-
medpeer_recruit
0
820
Featured
See All Featured
Learning to Love Humans: Emotional Interface Design
aarron
275
41k
So, you think you're a good person
axbom
PRO
2
2k
HU Berlin: Industrial-Strength Natural Language Processing with spaCy and Prodigy
inesmontani
PRO
0
260
Designing Experiences People Love
moore
143
24k
Hiding What from Whom? A Critical Review of the History of Programming languages for Music
tomoyanonymous
2
550
WCS-LA-2024
lcolladotor
0
480
How Software Deployment tools have changed in the past 20 years
geshan
0
33k
SEO Brein meetup: CTRL+C is not how to scale international SEO
lindahogenes
1
2.4k
Scaling GitHub
holman
464
140k
Into the Great Unknown - MozCon
thekraken
40
2.3k
Discover your Explorer Soul
emna__ayadi
2
1.1k
Writing Fast Ruby
sferik
630
63k
Transcript
SMART TOOLS FOR SMART DEVELOPERS
1. Prime your mind 2. Its okay to be scrappy
3. Be your own PR 4. Learn wri=ng and story telling 5. Differen=ate your offering 6. U=lize your network
Reasons to be Excited About Go Fela Olagunju, Founder, Meter.ng
Golang is the server language of the Future
— Tobias Lütke
O HAI! I CAN HAS A GO?
What is Go • New-ish programming language developed at Google
(and used there) • Targeted for high performance servers • Focuses on easing the life of the developer • Addresses real pains - mainly from C++ • Object-Oriented-ish • Statically Compiled • Garbage Collected • Strictly Typed • Concurrency Oriented
Reason 1: The syntax Simple, Quick learning curve, little code
to write.
Reason 2: Compiler Speed The whole SDK and compiler compiled
in 19 seconds. Why? The language is very small.
Reason 3: Execution Speed • Go is FAST • Slower
usually than C++ More or less on par with Java • about x10 to x100 faster than Python/Ruby
Reason 4: The Ecosystem Compliant with Github / Google Code,
Bitbucket Friendly, useful community
Reason 5: Concurrency • Goroutines and Channels are the heart
of Go • Goroutines are microthreads with an internal scheduler • You can run 10Ks of goroutines easily
Reason 6: The standard library • Excellent, rich standard library
• More like Python's than C++'s • Very well documented
Before we get too excited • Lack of complete, real
IDE
A Few Good Resources • The official website: http://golang.org/ •
Excellent introductory book: http://www.golang-book.com/ • GoDoc: Package search http://godoc.org/