Skip to content

Instantly share code, notes, and snippets.

View tdkn's full-sized avatar
😎
Power 💪

Shun Tedokon tdkn

😎
Power 💪
View GitHub Profile
@tdkn
tdkn / Cygwin.bat
Created March 6, 2012 05:34
USBメモリにCygwinを入れて使うときのCygwin.bat
:: 当バッチファイルが置かれているドライブのF:\home\userにホームディレクトリを固定
:: どのパソコンに刺しても対応できるようにドライブレターが ~d0 のあたりで展開される
::
:: 参考文献
:: dotcloudとfluxflexの開発環境を、USBメモリで持ち運ぶ(Windows限定)
:: http://blog.alglab.net/archives/24
:: 「%~dp0」でカレントディレクトリが取得できる訳
:: http://d.hatena.ne.jp/GARAPON/20100615/1276612386
:: 環境
:: $uname -a
@tdkn
tdkn / gist:2292630
Created April 3, 2012 14:51
.emacs (自分用)
;; load-path の設定
(setq load-path (append '("~/.emacs.d/elisp/"
"/usr/share/emacs23/site-lisp/ibus/"
"~/.emacs.d/elisp/twittering-mode/")
load-path))
;; ============================================
;; 見た目の設定
;; ============================================
;; ツールバーを表示しない
@tdkn
tdkn / .vimrc
Created April 16, 2012 07:58
.vimrc (自分用)
set nocompatible
"--------
" vundle
"--------
filetype off "required!
set rtp+=~/.vim/bundle/vundle/
call vundle#rc()
@tdkn
tdkn / .zshrc
Created April 16, 2012 15:16
.zshrc (自分用)
# ============================================================
## 文字列 "^[" は実際にはエスケープなので置換しないと動かないよ。
#
## Emacs の場合:
# M-x replace-string RET C-q ESC RET ^[ RET とすれば置換。
#
## Vim の場合:
# :%s/\^\[/Ctrl+v ESC/gc とすれば置換。
# ============================================================
@tdkn
tdkn / .screenrc
Created April 17, 2012 16:49
.screenrc (自分用)
# GNU Screen settings
# prefix key: C-z
# literal: z
escape ^Zz
# General
startup_message off
vbell off
autodetach on
#!/bin/bash
# あるディレクトリに保存されている、拡張子.jpgのファイルの拡張子を
# 全て.jpegに変えるスクリプトを作成しなさい。
if (($# == 1)); then
cd $1 || exit 1
rename .jpg .jpeg *.jpg
else
echo 'フォルダを1つ指だけ定してください'
@tdkn
tdkn / k1.c
Created June 7, 2012 06:05
kadai 20120606
#include <stdio.h>
int main(int argc, char *argv[]) {
int i,j;
int param;
param = atoi(argv[1]);
for(i=0; i<param; i++) {
for(j=0; j<i+1; j++) {
@tdkn
tdkn / bingo.c
Created June 14, 2012 08:32
kadai 20120614
#include <stdio.h>
#include <stdlib.h>
#include <time.h>
int main(void) {
int i=0,j=0,k=0;
int tmp=0;
int map[5][5]={0},buf[5][15]={0};
srand((unsigned int) time(NULL));
@tdkn
tdkn / 10004.c
Created June 16, 2012 13:34
aoj 10004
#include <stdio.h>
// define macro
#define swap(type, x, y) do {type t = x; x = y; y = t;} while(0)
// define prototype
void bubble_sort(int a[], int n);
// main program
int main(void)
@tdkn
tdkn / datafile
Created June 23, 2012 16:10
kadai 20120621
11月25日
バス回数券; 2300; 交通費
昼飯; 600; 食費
珈琲豆; 1000; 嗜好品
11月26日
ガソリン代; 3210; 交通費
夕飯; 800; 食費
傘; 1050;