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
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
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
; 잡스런 설정 | |
(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
#-*- 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
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
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
Traceback (most recent call last): | |
File "runserver.py", line 4, in <module> | |
app = create_app() | |
File "/Users/kkung/private/jothief/jothief/jothief/__init__.py", line 28, in create_app | |
admin_blueprint = admin.create_admin_blueprint(datastore) | |
File "/Users/kkung/private/jothief/env/lib/python2.7/site-packages/flask_admin/__init__.py", line 87, in create_admin_blueprint | |
return create_admin_blueprint_new(*args, **kwargs) | |
File "/Users/kkung/private/jothief/env/lib/python2.7/site-packages/flask_admin/__init__.py", line 116, in create_admin_blueprint_new | |
**kwargs) | |
File "/Users/kkung/private/jothief/env/lib/python2.7/site-packages/flask/blueprints.py", line 95, in __init__ |
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
Downloading https://github.com/downloads/dahlia/libsass-python/libsass-0.1.0preview.tar.gz | |
Processing libsass-0.1.0preview.tar.gz | |
Running libsass-0.1.0preview/setup.py -q bdist_egg --dist-dir /var/folders/jf/vqynd_t5705211nzjlfllvnw0000gn/T/easy_install-xxymQM/libsass-0.1.0preview/egg-dist-tmp-57FSXq | |
clang: warning: argument unused during compilation: '-mno-fused-madd' | |
sass.c:54:24: warning: '&&' within '||' [-Wlogical-op-parentheses] | |
if (string != NULL && !(filename == NULL && dirname == NULL) || | |
~~~~~~~~~~~~~~~^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ ~~ | |
sass.c:54:24: note: place parentheses around the '&&' expression to silence this warning | |
if (string != NULL && !(filename == NULL && dirname == NULL) || | |
^ |
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 wand.api import * | |
from wand.color import Color | |
import ctypes | |
res = libmagick.NewMagickWand() | |
libmagick.MagickReadImage( | |
res, | |
'test/img/387062_352291954856564_1975342188_n.jpeg') | |
draw = libmagick.NewDrawingWand() | |
libmagick.DrawSetFont( |