Skip to content

Instantly share code, notes, and snippets.

View rtu's full-sized avatar
🎯
Focusing

Tony Tu rtu

🎯
Focusing
  • Canada
View GitHub Profile
@rtu
rtu / bret_victor-reading_list.md
Created July 27, 2016 15:14 — forked from nickloewen/bret_victor-reading_list.md
Bret Victor’s Reading List

This is a plain-text version of Bret Victor’s reading list. It was requested by hf on Hacker News.


Highly recommended things!

This is my five-star list. These are my favorite things in all the world.

A few of these works have had an extraordinary effect on my life or way of thinking. They get a sixth star. ★

@rtu
rtu / GAME_MASTER_v0_1.protobuf
Created July 18, 2016 21:01 — forked from anonymous/GAME_MASTER_v0_1.protobuf
Pokemon Go decoded GAME_MASTER protobuf file v0.1
Result: 1
Items {
TemplateId: "BADGE_BATTLE_ATTACK_WON"
Badge {
BadgeType: BADGE_BATTLE_ATTACK_WON
BadgeRanks: 4
Targets: "\nd\350\007"
}
}
Items {
@rtu
rtu / mac-apps.md
Created April 25, 2016 05:08 — forked from erikreagan/mac-apps.md
Mac developer must-haves

Mac web developer apps

This gist's comment stream is a collection of webdev apps for OS X. Feel free to add links to apps you like, just make sure you add some context to what it does — either from the creator's website or your own thoughts.

— Erik

@rtu
rtu / iterm2-solarized.md
Created March 3, 2016 00:34 — forked from kevin-smets/iterm2-solarized.md
iTerm2 + oh my zsh + solarized + Meslo powerline font (OSX)

Solarized

@rtu
rtu / .gitignore
Created February 2, 2016 15:56 — forked from octocat/.gitignore
Some common .gitignore configurations
# Compiled source #
###################
*.com
*.class
*.dll
*.exe
*.o
*.so
# Packages #
@rtu
rtu / gist:1b5fed3461263ec926cb
Created November 17, 2015 10:33
Ruby factorial
def factorial(number)
number.downto(1).reduce(:*)
end