git config --global user.name hoge
git config --global user.email hoge@hoge.com
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
modelFile: JAXONmain.wrl | |
standardPose: [ | |
0, 0, -20, 40, -20, 0, | |
0, 0, -20, 40, -20, 0, | |
0, 0, 0, | |
0, 0, | |
0, 40, -20, -5, -80, 0, 0, -20, | |
0, 40, 20, 5, -80, 0, 0, -20 ] |
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
package main | |
import "fmt" | |
import "sort" | |
import "io/ioutil" | |
import "net/http" | |
import "encoding/json" | |
import "strconv" | |
import "flag" | |
import "strings" |
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 | |
echo '$ cd /data0' | |
cd /data0 | |
#show status | |
echo '$ svn status' | |
svn status | |
#add new files in a tree | |
echo '$ svn add * --force' | |
svn add * --force |
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 | |
echo '$ cd /data0' | |
cd /data0 | |
#show status | |
echo '$ git status' | |
git status | |
#add new files in a tree | |
echo '$ git add -A' | |
git add -A |
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
(load "sample-arm-model.l") | |
(load "hanoi.l") | |
(defmethod cascaded-link | |
(:pick | |
(obj &rest args) | |
(send self :open-hand) | |
(prog1 | |
(send* self :solve-ik obj args) | |
(send self :close-hand obj)) |
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
default $d $w | |
d -g | |
w -W -Wall | |
a -ansi -pedantic | |
o -O -DNDUBUG | |
p -pg | |
SDL `sdl-config --cflags --libs` | |
SDL_mixer -lSDL_mixer | |
X11 -L/usr/X11R6/lib -lX11 | |
cv `pkg-config opencv --libs --cflags` |
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
(load "robot-server-simulator.l") | |
(load "../client/eus-client/robot-client2.l") | |
(defclass robot-server-wrapper) | |
(defmethod robot-server-wrapper | |
(:init | |
() | |
self) | |
(:nomethod (&rest args) | |
(let (ret) |
他クライアントからのtweetが全てのチャンネルに表示されて困っている人向け。 ドロップされるべきtweetもチャンネル#Twitterには表示するようにした。 UserStream使ってる人で、topicをtweetにしている場合、topicの更新が二度になってしまうかも。
- Twitter に UserStream 機能が搭載されたことにより TwitterIRCGateway にも UserStream AddIn が作られました. 2. しかし,現状では BroadcastUpdate を false にしてもすべてのチャンネルにエコーされてしまいます.