Skip to content

Instantly share code, notes, and snippets.

View jensechu's full-sized avatar

Jensen Kuras jensechu

View GitHub Profile
@machikoyasuda
machikoyasuda / vocabulary.md
Created September 20, 2016 17:13
Japanese/English programming/tech vocabulary

----- Tech -----

拡張現実【かくちょうげんじつ】 augmented reality, AR

投資家【とうしか】 investor

静的【せいてき】 static

@jpadilla
jpadilla / components.my-component.js
Last active April 21, 2023 17:14
Component Lifecycle Hooks
import Ember from 'ember';
export default Ember.Component.extend({
didInitAttrs(options) {
console.log('didInitAttrs', options);
},
didUpdateAttrs(options) {
console.log('didUpdateAttrs', options);
},
@jadeqwang
jadeqwang / keybase.md
Created April 20, 2014 23:06
proving I'm me for keybase

Keybase proof

I hereby claim:

  • I am jadeqwang on github.
  • I am jadewang (https://keybase.io/jadewang) on keybase.
  • I have a public key whose fingerprint is 5954 3971 CC37 2FCE 7B49 5335 8A98 4150 62DA BEBF

To claim this, I am signing this object:

@beatak
beatak / git-recent.sh
Created February 5, 2013 08:04
via http://d.hatena.ne.jp/kazuhooku/20130205/1360039870 put this file (without suffix) in /usr/local/bin and chmod a+x. in git repository, type `git recent`
#!/bin/sh
(for i in `git branch | colrm 1 2` ; do echo `git log --date=iso8601 -n 1 --pretty="format:[%ai] %h" $i` $i ; done) | sort -r