Skip to content

Instantly share code, notes, and snippets.

View do9iigane's full-sized avatar

Hiroyuki Yokoshima(毒眼鏡) do9iigane

  • bilcom
View GitHub Profile
@do9iigane
do9iigane / jquery_handling_click_event.js
Last active March 4, 2016 14:18
jqueryのtapイベントハンドラについて
jQuery( ".selector" ).click(function( event ) { ... } )
//でも駄目なら
jQuery( ".selector" ).on( "tap", function( event ) { ... } )
//まだ駄目なら
jQuery( ".selector" ).live( "tap", function( event ) { ... } )
@do9iigane
do9iigane / .bash_profile
Last active February 3, 2016 09:06
mac show/hide icon aliases
export CLICOLOR=1
export LSCOLORS=DxGxcxdxCxegedabagacad
alias ll='ls -lat'
#隠しファイルを表示するAlias
alias secreton='defaults write com.apple.finder AppleShowAllFiles TRUE && killall Finder'
#隠しファイルを表示しないAlias
alias secretoff='defaults write com.apple.finder AppleShowAllFiles FALSE && killall Finder'
#.DS_Storeファイルを作らないようにする
defaults write com.apple.desktopservices DSDontWriteNetworkStores -bool true
defaults write com.apple.desktopservices DSDontWriteUSBStores -bool true
@do9iigane
do9iigane / .bashrc
Created August 14, 2012 12:54
custom bashrc on coreserver
#set language
export LANG="ja_JP.UTF-8"
@do9iigane
do9iigane / .vimrc
Last active October 8, 2015 14:58
custom .vimrc
"set line number
set number
"set linebreak format
set fileformat=unix
"enable syntax highlighting
syntax on
"set scriptencoding