- 名前
- 安宅 正之 (Masayuki Ataka)
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/sh | |
path=$1 | |
other=/home/project/olddir | |
diff -bu -x "*.rej" $other/$path $path |
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
# Queue sample program | |
# Author: Masayuki Ataka <[email protected]> | |
PROGRAM = queue | |
CC = gcc | |
CFLAGS = -W -Wall -g -O2 -std=c99 | |
CPPFLAGS = -DDEBUG | |
all: $(PROGRAM) | |
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
# Corporate Work program | |
# Author: Masayuki Ataka <[email protected]> | |
PROGRAM = cwork | |
CC = gcc | |
CFLAGS = -W -Wall -g -O2 -std=c99 | |
CPPFLAGS = -DDEBUG | |
GNUPLOT = gnuplot |
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/sh | |
# | |
# Copied from http://pulpdust.org/item/688 | |
# | |
# Kill pulseaudio and GNOME volume control applet before reload snd module. | |
# You can kill puleaudio as followed: | |
# $ pulseaudio -k | |
# | |
pm=pm-suspend |
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
all: blogger-history.png | |
blogger-history.png: blogger-history.dot | |
dot -Tpng -o $@ $< |
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
CSS counter sample script |
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
# Binary Tree sample program | |
# Author: Masayuki Ataka <[email protected]> | |
PROGRAM = btree | |
CC = gcc | |
CFLAGS = -W -Wall -g -O2 -std=c99 | |
CPPFLAGS = -DDEBUG | |
all: $(PROGRAM) |
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
GDD2011 DevQuiz Web Game | |
ルール | |
シンプルな神経衰弱ゲームです。カードはクリックすることでめくることができます。全 64 セットを解くことで問題クリアとなります。 |
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
(defun mark-blog-entry () | |
(interactive) | |
(search-forward "<title>") | |
(forward-line -1) | |
(skip-chars-backward " \n") | |
(forward-line) | |
(push-mark nil t t) | |
(search-backward "<title>") | |
(forward-line) | |
(point)) |
OlderNewer