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
Index: libfetch/common.c | |
=================================================================== | |
--- libfetch/common.c (revision 244684) | |
+++ libfetch/common.c (working copy) | |
@@ -327,6 +327,8 @@ | |
#ifdef WITH_SSL | |
int ret, ssl_err; | |
+ SSL_METHOD*meth; | |
+ |
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
Mikutter, the moest twitter client wasn't launched with such error after I updated my Arch repositories. | |
11:32% ruby mikutter.rb | |
/usr/lib/ruby/2.0.0/rubygems/core_ext/kernel_require.rb:45:in `require': /usr/lib/ruby/vendor_ruby/2.0.0/x86_64-linux/pango.so: undefined symbol: rb_cCairo_Context - /usr/lib/ruby/vendor_ruby/2.0.0/x86_64-linux/pango.so (LoadError) | |
from /usr/lib/ruby/2.0.0/rubygems/core_ext/kernel_require.rb:45:in `require' | |
from /usr/lib/ruby/vendor_ruby/2.0.0/pango.rb:28:in `rescue in <top (required)>' | |
from /usr/lib/ruby/vendor_ruby/2.0.0/pango.rb:24:in `<top (required)>' | |
: | |
: | |
: | |
: |
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
LATEX = platex --interaction=nonstopmode --kanji=utf8 | |
DVIPDFM = dvipdfmx | |
DVIPSFLAGS = -t jisb5 -P pdf | |
DVIPDFMFLAGS = -p jisb5 | |
TEXDEPS = word.cls word.clo default-style.sty | |
word.cls : ../../texfiles/word.cls | |
cp $< $@ |
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
動作確認: Thu Apr 18 13:09:35 JST 2013 | |
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
bind r source-file ~/.tmux.conf | |
set-option -g prefix C-c | |
unbind-key C-b | |
bind-key C-c send-prefix | |
set-window-option -g mode-keys vi | |
#set-option -g default-terminal screen-256color | |
set-option -g default-terminal rxvt | |
#set-option -g status-fg colour4 |
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
amixer sset Master unmute 100%;sleep $((` date -d $wake +%s `-`date +%s`));while 1;do; mplayer $MUSIC; sleep 300;done |
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
#include <avr/sleep.h> | |
void setup() | |
{ | |
pinMode(6, INPUT); | |
pinMode(13, OUTPUT); | |
Serial.begin(9600); | |
digitalWrite(13, HIGH); | |
} |
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
910a911,933 | |
> | |
> module dffr (din, clk, rst, q, se, si, so); | |
> //synopsys template | |
> parameter SIZE = 1;input [SIZE-1:0] din ; // data in | |
> input clk ; // clk or scan clk | |
> input rst ; // reset | |
> output [SIZE-1:0] q ; // output | |
> input se ; // scan-enable | |
> input [SIZE-1:0] si ; // scan-input |
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
nohup yes >/dev/null 2>&- <&- & |
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
export PREFIX=/usr/local/$TARGET | |
export TARGET=arm-none-eabi-newlib | |
# build binutils | |
wget http://ftp.gnu.org/gnu/binutils/binutils-2.24.tar.bz2 | |
tar xf binutils-2.24.tar.bz2 | |
mkdir b-binutils | |
cd b-binutils | |
../binutils-2.24/configure --prefix=$PREFIX --program-prefix=arm-none-eabi- --target=arm-eabi --enable-lto --enable-interwork --enable-multilib | |
make -j5 |