- Emacs
- Teraterm http://sourceforge.jp/projects/ttssh2/
- Lhaz http://chitora.com/lhaz.html
- Winmerge
AutoHotkey- ぴたすちお
- Git for Windows http://msysgit.github.io/
- ~~TortoiseGit https://code.google.com/p/tortoisegit/~~~~
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
/** | |
* 任意のシートにkey-valueを保存する | |
*/ | |
class Variables{ | |
constructor (sheet_name="variables") { | |
let app = SpreadsheetApp.getActiveSpreadsheet(); | |
this.sheet = app.getSheetByName(sheet_name); | |
if (!this.sheet) { | |
//シートが存在しない場合は末尾に追加 | |
app.insertSheet(sheet_name, app.getSheets().length); |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
jupyter==1.0.0 | |
pandas==0.21.1 | |
seaborn==0.8.1 | |
lxml==4.1.1 | |
html5lib==1.0.1 | |
beautifulsoup4==4.6.0 | |
requests==2.18.4 |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
$ cat /etc/debian_version | |
7.6 | |
$ sudo apt-get update | |
$ sudo apt-get upgrade | |
# install dependencies | |
$ sudo apt-get install libssl-dev libavahi-client-dev libasound2-dev | |
# clone source |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# osx - https://github.com/github/gitignore/blob/master/Global/OSX.gitignore | |
.DS_Store | |
.AppleDouble | |
.LSOverride | |
# Icon must end with two \r | |
Icon | |
# Thumbnails |
#Platforms
- 2.3.x Gingerbread
- 4.0.x Ice Cream Sandwich
- 4.1.x/4.2.x/4.3.x Jelly Bean
- 4.4.x Kitkat
- 4.5.x "L"
#Screen Sizes
- "xlarge" screens are at least 960dp x 720dp
- "large" screens are at least 640dp x 480dp
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<?php | |
// CakePHP 2.x database.php file to switch between database configuration settings based on file existence under app/Config directory | |
/** | |
* This is core configuration file. | |
* | |
* Use it to configure core behaviour of Cake. | |
* | |
* PHP 5 | |
* |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/bin/bash | |
# searches launchd.plist files from launchd directories | |
grep `launchctl list | grep $1 | cut -f 3` ~/Library/LaunchAgents/* /Library/LaunchAgents/* /Library/LaunchDaemons/* /System/Library/LaunchAgents/* /System/Library/LaunchDaemons/* | cut -d ':' -f 1 | uniq |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
autoload -U compinit | |
autoload colors | |
compinit | |
colors | |
PS1="%{${fg[green]}%}${USER}@${HOST%%.*}:%~ [%D{%y-%m-%d %H:%m:%S}]%{${reset_color}%} | |
[%!]%(!.#.$) " | |
PATH=$PATH:/usr/local/bin/ | |
alias ls="ls -G" |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
ADB_PATH=PATH_TO_ADB | |
for f in "$@" | |
do | |
$ADB_PATH install -r "$f" | |
done |
NewerOlder