Skip to content

Instantly share code, notes, and snippets.

View rummelonp's full-sized avatar
🐈‍⬛
ニャーン

Kazuya Takeshima rummelonp

🐈‍⬛
ニャーン
View GitHub Profile
@dnpp73
dnpp73 / after_jailbreak.md
Last active October 28, 2015 13:54
俺の iPhone の JB 環境まとめ。

俺の iPhone 5 (iOS 6.1.2) の JB 環境まとめ。

iOS 6 に上げたついでに、一時期入れまくってたのと比べると随分ミニマムになった。
iPhone 4 とか iPad mini とか iPad 4 th も大体こんな感じで、 Retina Pad とか FullForce が入る程度かな。たぶん。


Sources

BigBoss
@bleis-tift
bleis-tift / git-start
Created February 13, 2012 09:15
空コミットを最初のコミットとして作るコマンド(git initの代わり)
#!/bin/sh
msg=${1:-"first commit"}
git init
tree_hash=$(git write-tree)
commit_hash=$(echo -n "$msg" | git commit-tree $tree_hash)
echo $commit_hash > .git/refs/heads/master
@tomykaira
tomykaira / camelize.el
Created February 13, 2012 04:40
camelize.el --- Make a string from snake_case to CamelCase
;;; camelize.el --- Make a string from snake_case to CamelCase
;; Copyright (C) 2012 tomykaira
;; Author: tomykaira <[email protected]>
;; Keywords: emacs
;; This file is free software; you can redistribute it and/or modify
;; it under the terms of the GNU General Public License as published by
;; the Free Software Foundation; either version 2, or (at your option)
@novi
novi / gist:1805373
Created February 12, 2012 00:43
Node.js 開発環境 基礎

Node.js 開発環境 基礎

Node.jsのインストール

OS X ならHomebrewまたはMacportsで。

[~] $ brew install node
[~] # port install node

nodeコマンドでnodeのインタプリタを起動。

@taizooo
taizooo / reblogmachine wide and sukesuke.user.css
Created February 3, 2012 16:02
reblogmachine wide and sukesuke style
/* move to http://userstyles.org/styles/60950/reblog-machine-get-up-i-feel-like-being-like-a */
@DmitrySkiba
DmitrySkiba / gist:1634076
Created January 18, 2012 17:04
Example of app that Itoa supports
#import <Foundation/Foundation.h>
#import <CoreFoundation/CoreFoundation.h>
#import <CoreGraphics/CoreGraphics.h>
#import <QuartzCore/QuartzCore.h>
#import <UIKit/UIKit.h>
#import <objc/runtime.h>
/////////////////////////////////////////////////////////////////////
@interface ApplicationDelegate: NSObject<UIApplicationDelegate> {
@josevalim
josevalim / 0_README.markdown
Created January 9, 2012 13:07
Hello world of Sinatra-like libraries on Elixir, Ruby and Node.js
#!/bin/sh
sudo apt-get install build-essential libncurses5-dev libreadline-dev libssl-dev libyaml-dev libmysqlclient-dev libsqlite3-dev libxml2-dev libxslt-dev libmagick-dev libmagickwand-dev libsasl2-dev libsasl2-2 libv8-dev -y
wget ftp://ftp.ruby-lang.org/pub/ruby/1.9/ruby-1.9.3-p0.tar.bz2
tar xvf ruby-1.9.3-p0.tar.bz2
cd ruby-1.9.3-p0
./configure
make -j 4
sudo make install
cd ..
sudo rm -rf ruby-1.9.3*
require 'sinatra'
require 'haml'
require 'mongo'
get '/' do
@db = Mongo::Connection.new.db('creepy')
deleted = []
@status = []
@db['delete'].find({},{:sort=>['id', 'ascending']}).each do |s|
@novi
novi / gist:1486278
Created December 16, 2011 14:37
オレオレUIViewControllerコーディングガイドライン