Skip to content

Instantly share code, notes, and snippets.

View harapeko's full-sized avatar
🍊
毎日が大晦日

harapeko harapeko

🍊
毎日が大晦日
View GitHub Profile
@harapeko
harapeko / Settings-User
Created December 21, 2013 08:42
ヾ(o゚ω゚o)ノ゙自分用 SublimeText2のSettings -Userの中身 ref: http://qiita.com/harapeko_wktk/items/68e31fda6287c3f7f51f
{
/* Theme */
"color_scheme": "Packages/Theme - Nexus/Nexus.tmTheme",
"theme": "Flatland Dark.sublime-theme",
/* 書式設定 */
"font_size": 9.0, // フォントサイズ
"line_padding_top": 5, // 行間の高さ
"highlight_line": true, // 現在行の強調
"draw_white_space": "all", // スペースを表示
@harapeko
harapeko / file0.txt
Created January 10, 2014 15:47
ヾ(o゚ω゚o)ノ゙zshが「command not found」と云う ref: http://qiita.com/harapeko_wktk/items/285d5c2a409346e3d55e
% brew -v
zsh: command not found: brew
% rbenv -v
zsh: command not found: rbenv
% coffee -v
zsh: command not found: coffee
@harapeko
harapeko / Vagrantfile
Created January 14, 2014 23:35
ヾ(o゚ω゚o)ノ゙Vagrantの共有ディレクトリ設定でものすっごい躓いた! ref: http://qiita.com/harapeko_wktk/items/72985bfccaae60c69384
Vagrant.configure("2") do |config|
config.vbguest.auto_update = false
end
@harapeko
harapeko / Vagrantfile
Created January 14, 2014 23:35
ヾ(o゚ω゚o)ノ゙Vagrantの共有ディレクトリ設定でものすっごい躓いた! ref: http://qiita.com/harapeko_wktk/items/72985bfccaae60c69384
Vagrant.configure("2") do |config|
config.vbguest.auto_update = false
end
@harapeko
harapeko / CSS
Created April 30, 2014 20:22
ヾ(o゚ω゚o)ノ゙Android4.1.2デフォルトブラウザのみ発生するdisabledバグ対応 ref: http://qiita.com/harapeko_wktk/items/b26d6f571d4cf88c04a6
#click_disabled_box{
display: inline-block;
position: relative;
}
#click_disabled_area{
position: absolute;
top: 0;
left: 0;
width: 100%;
height: 100%;
@harapeko
harapeko / file0.txt
Created May 19, 2014 14:43
ヾ(o゚ω゚o)ノ゙Sublime TextでTypeScriptを始める準備! ref: http://qiita.com/harapeko_wktk/items/542d56b947a2f9ff0004
cd /Users/harapeko/Dropbox/Sublime Text 2/Packages
git clone git@github.com:Railk/T3S.git
cd T3S
git checkout ST2
@harapeko
harapeko / file0.txt
Created May 23, 2014 21:23
ヾ(o゚ω゚o)ノ゙INSERT...SELECT内でCASE文使ったら1回でイケた! ref: http://qiita.com/harapeko_wktk/items/ccbc8a5a31b08fc5f88e
INSERT INTO `movie_daily_play_count`
(`movie_daily_play_count`.`date`,
`movie_daily_play_count`.`free_movie_id`,
`movie_daily_play_count`.`android`,
`movie_daily_play_count`.`ios`,
`movie_daily_play_count`.`pc_start`,
`movie_daily_play_count`.`pc_end`,
`movie_daily_play_count`.`created`
)
@harapeko
harapeko / Dimの宣言例
Created June 4, 2014 17:03
ヾ(o゚ω゚o)ノ゙INSERT文をExcelデータから出力するマン! ref: http://qiita.com/harapeko_wktk/items/47781423d6836234a43b
Dim hogehoge As String
@harapeko
harapeko / file0.txt
Last active August 29, 2015 14:04
ヾ(o゚ω゚o)ノ゙Macでお手軽にppkをpemに変換する方法 ref: http://qiita.com/harapeko_wktk/items/ffdecc7578fd8b203587
brew info putty
@harapeko
harapeko / cssへ出力後
Created August 25, 2014 15:36
ヾ(o゚ω゚o)ノ゙css3でテキストに境界線をつけよう! ref: http://qiita.com/harapeko_wktk/items/48972185efda8ba62280
text-shadow:#333 2px 2px 0px,
#333 -2px 2px 0px,
#333 2px -2px 0px,
#333 -2px -2px 0px;
filter:dropshadow(color=$color,offX= 0,offY=-2)
dropshadow(color=$color,offX= 2,offY= 0)
dropshadow(color=$color,offX= 0,offY= 2)
dropshadow(color=$color,offX=-2,offY= 0);