This file contains hidden or 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
--- TCP.pm.orig 2009-07-13 10:16:02.609375000 +0900 | |
+++ TCP.pm 2009-07-13 10:16:17.515625000 +0900 | |
@@ -45,6 +45,7 @@ | |
$args{client}->($port); | |
kill TERM => $pid; | |
+ kill KILL => $pid if $^O eq 'MSWin32'; | |
waitpid( $pid, 0 ); | |
} | |
elsif ( $pid == 0 ) { |
This file contains hidden or 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
javascript:(function(){var s=prompt("keyword");if(s){$('#new-channel-url').val('http://www.youtube.com/results?search_query='+encodeURIComponent(s));$('#new-channel-form').submit()}})() |
This file contains hidden or 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
link -out:blib\arch\auto\Devel\BeginLift\BeginLift.dll -dll -nologo -nodefaultlib -debug -opt:ref,icf -libpath:"C:\Perl\lib\CORE" -machine:x86 BeginLift.obj C:\Perl\lib\CORE\perl510.lib C:\Perl\site\lib\auto\B\Hooks\OP\Check\Check.lib C:\Perl\site\lib\auto\B\Hooks\OP\Check\EntersubForCV\EntersubForCV.lib "C:\Program Files\Microsoft Visual Studio 8\VC\LIB\oldnames.lib" "C:\Program Files\Microsoft Visual Studio 8\VC\LIB\kernel32.lib" "C:\Program Files\Microsoft Visual Studio 8\VC\PlatformSDK\lib\user32.lib" "C:\Program Files\Microsoft Visual Studio 8\VC\PlatformSDK\lib\gdi32.lib" "C:\Program Files\Microsoft Visual Studio 8\VC\PlatformSDK\lib\winspool.lib" "C:\Program Files\Microsoft Visual Studio 8\VC\PlatformSDK\lib\comdlg32.lib" "C:\Program Files\Microsoft Visual Studio 8\VC\PlatformSDK\lib\advapi32.lib" "C:\Program Files\Microsoft Visual Studio 8\VC\PlatformSDK\lib\shell32.lib" "C:\Program Files\Microsoft Visual Studio 8\VC\PlatformSDK\lib\ole32.lib" "C:\Program Files\Microsoft Visual Studio 8\VC\Platfo |
This file contains hidden or 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
From a8d651723bbe530bd4438cc75d8db07f88581676 Mon Sep 17 00:00:00 2001 | |
From: mattn <[email protected]> | |
Date: Wed, 22 Jul 2009 13:48:28 +0900 | |
Subject: [PATCH] fixed typo. | |
--- | |
juno.py | 2 +- | |
1 files changed, 1 insertions(+), 1 deletions(-) | |
diff --git a/juno.py b/juno.py |
This file contains hidden or 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
;;; 作りかけ | |
(use gtk) | |
(use gauche.net) | |
(define memcached-socket | |
(make-client-socket 'inet "127.0.0.1" 11211)) | |
(define memcached-socket-output-port | |
(socket-output-port memcached-socket :buffering :line)) |
This file contains hidden or 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
#!/usr/bin/gosh | |
;;; まだまだ作りかけ | |
(use gtk) | |
(use gauche.net) | |
(use gauche.sequence) | |
(use srfi-13) | |
(define memcached-socket | |
(make-client-socket 'inet "127.0.0.1" 11211)) |
This file contains hidden or 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
#!/usr/bin/gosh | |
;;; まだまだまだ作りかけ | |
(use gtk) | |
(use gauche.net) | |
(use gauche.sequence) | |
(use srfi-13) | |
(define memcached-socket | |
(make-client-socket 'inet "127.0.0.1" 11211)) |
This file contains hidden or 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
diff --git a/cloudy/core.c b/cloudy/core.c | |
index 620bae3..e5108d3 100644 | |
--- a/cloudy/core.c | |
+++ b/cloudy/core.c | |
@@ -21,9 +21,25 @@ | |
#include "cloudy/cbtable.h" | |
#include <fcntl.h> | |
+#ifndef _WIN32 | |
#include <sys/socket.h> |
This file contains hidden or 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
" quickrun - run a command and show its result quickly | |
" Author: ujihisa <http://ujihisa.nowa.jp/> | |
" ModifiedBy: kana <http://whileimautomaton.net/> | |
" ModifiedBy: Sixeight <http://d.hatena.ne.jp/Sixeight/> | |
if exists('g:loaded_quickrun') | |
finish | |
endif | |
This file contains hidden or 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
"============================================================================= | |
" Title: VIMua (VIm Mail User Agent) | |
" File: vimua.vim | |
" Author: Yasuhiro Matsumoto <[email protected]> | |
" Version: 0.7 | |
"============================================================================= | |
"----------------------------------------------------------------------------- | |
" Setting Environments | |
"----------------------------------------------------------------------------- |