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
From 9edc0bd92e7e6075b269b05ba3b6ef8a485e4f53 Mon Sep 17 00:00:00 2001 | |
From: kkung <[email protected]> | |
Date: Sat, 10 Mar 2012 13:23:20 +0900 | |
Subject: [PATCH] fix invalid test(spec changes?) | |
--- | |
build.xml | 2 +- | |
test/veeju/tests/forms/SymbolTest.java | 10 ++++++---- | |
test/veeju/tests/runtime/StringTest.java | 10 ++++++---- | |
3 files changed, 13 insertions(+), 9 deletions(-) |
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
From 5716934cfb7af110c80c3f685c01aba8a0d4767d Mon Sep 17 00:00:00 2001 | |
From: kkung <[email protected]> | |
Date: Sat, 10 Mar 2012 13:08:11 +0900 | |
Subject: [PATCH] fix path issue | |
--- | |
build.xml | 2 +- | |
1 files changed, 1 insertions(+), 1 deletions(-) | |
diff --git a/build.xml b/build.xml |
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
#-*- encoding: utf-8 -*- | |
FROM_ADDR = '' | |
TO_ADDR = '' | |
GMAIL_ID = '' | |
GMAIL_PW = '' | |
DEBUG = False |
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
; 잡스런 설정 | |
(font-lock-mode 'font) | |
(global-font-lock-mode t) | |
(global-hl-line-mode t) | |
(transient-mark-mode t) | |
(set-face-font 'default "NanumGothicCoding-15") | |
(set-fontset-font "fontset-default" 'hangul '("NanumGothicCoding" . "unicode-bmp")) | |
;; Windows moving by Meta-Arrow Key |
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
diff --git a/kombu/transport/__init__.py b/kombu/transport/__init__.py | |
index 0acdce3..66c17d7 100644 | |
--- a/kombu/transport/__init__.py | |
+++ b/kombu/transport/__init__.py | |
@@ -46,6 +46,8 @@ def _sqlalchemy_transport(): | |
_requires("SQLAlchemy transport", "sqlakombu", "kombu-sqlalchemy") | |
return "sqlakombu.transport.Transport" | |
+def _sqs_transport(): | |
+ return "kombu.transport.SQS.Transport" |
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 TERM="xterm-color" | |
export CLICOLOR=1 | |
export LSCOLORS=ExFxCxDxBxegedabagacad | |
export LANG=ko_KR.UTF-8 | |
set meta-flag on | |
set input-meta on | |
set output-meta on | |
set convert-meta off |
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
class fib { | |
public static int fibonacci(int n) { | |
if (n < 2) { | |
return 1; | |
} else { | |
return fibonacci(n - 2) + fibonacci(n - 1); | |
} | |
} | |
public static void main(String[] args) { | |
fibonacci(40); |
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
diff -urN pHash-0.9.4.orig/src/pHash.h pHash-0.9.4/src/pHash.h | |
--- pHash-0.9.4.orig/src/pHash.h 2011-01-31 00:46:06.000000000 +0900 | |
+++ pHash-0.9.4/src/pHash.h 2011-09-07 16:57:11.000000000 +0900 | |
@@ -47,7 +47,9 @@ | |
#if defined(HAVE_IMAGE_HASH) || defined(HAVE_VIDEO_HASH) | |
#define cimg_debug 0 | |
#define cimg_display 0 | |
+#define cimg_use_png 1 | |
#include "CImg.h" | |
+#include "png.h" |
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 TERM="xterm-color" | |
export CLICOLOR=1 | |
export LSCOLORS=ExFxCxDxBxegedabagacad | |
export LANG=ko_KR.UTF-8 | |
set meta-flag on | |
set input-meta on | |
set output-meta on | |
set convert-meta off |
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
#!/usr/bin/env ruby | |
commit_msg = File.read(ARGV[0]) | |
task_id_regex = /(?:story|card|task) #?(\d+)/i | |
if commit_msg !~ task_id_regex | |
puts "AgileZen issue id was missing! You must specified least one issue id." | |
puts "ex) blahblah task #1234" | |
exit 1 | |
end |