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 Kirsch | |
require 'RMagick' | |
include Magick | |
@@kernel = [ | |
5, 5, -3, 5, 0, -3, -3, -3, -3, | |
5, 5, 5, -3, 0, -3, -3, -3, -3, | |
-3, 5, 5, -3, 0, 5, -3, -3, -3, | |
-3, -3, 5, -3, 0, 5, -3, -3, 5, | |
0, 0, 0, 0, 0, 0, 0, 0, 0, |
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 python | |
#-*- encoding: utf8 | |
# sudo easy_install PIL | |
import Image | |
import ImageFont | |
import ImageDraw | |
image = Image.open("image.png") |
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 | |
# encoding: utf-8 | |
require 'RMagick' | |
include Magick | |
image = Image.read("image.png").first | |
text = Draw.new | |
text.annotate(image, 0, 0, 0, 60, "測試!Test!") { |
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
# for C(3, 1) it should returns %w(100 010 001) | |
def get_combinations (n, m) | |
(n.downto 1).to_a.combination(m).map do |c| | |
c.inject(0){ |s, k| s |= (1 << k-1) }.to_s(2).rjust(n, '0') | |
end | |
end | |
puts get_combinations(10, 5) |
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
" toggle between working mode and presentation mode | |
function! PresentationModeOn() | |
set background=light | |
colorscheme github | |
set guifont=Monaco\ for\ Powerline:h28.00 | |
endfunction | |
function! PresentationModeOff() | |
set background=dark |
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 | |
require 'RMagick' | |
include Magick | |
def tpow (t, pow_a, pow_b) | |
(t ** pow_a) * ((1 - t) ** pow_b) | |
end | |
# Bezier curve parameters |
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
.item | |
width: 190px | |
position: absolute | |
.item:before | |
content: '' | |
width: 15px | |
height: 15px | |
@include border-radius(15px) | |
background: darken(white, 10%) | |
position: absolute |
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
/* www-proxy.c Copyright Imperial Business Systems 1995 | |
Proxy http server. | |
Written by Steve Shipway ([email protected],[email protected]) | |
in the space of 2 hours. It took a further 1 hour to remove the last | |
bug. And 2 hours to persuade myself to stop playing with Netscape after it | |
was working. | |
Command line args: | |
-d : debug mode. Use port 8000 instead, dont background, status msgs | |
-l logfile : logfile to use |
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
function sprintf() { | |
var i = 0, a, f = arguments[i++], o = [], m, p, c, x, s = ''; | |
while (f) { | |
if (m = /^[^\x25]+/.exec(f)) { | |
o.push(m[0]); | |
} | |
else if (m = /^\x25{2}/.exec(f)) { | |
o.push('%'); | |
} | |
else if (m = /^\x25(?:(\d+)\$)?(\+)?(0|'[^$])?(-)?(\d+)?(?:\.(\d+))?([b-fosuxX])/.exec(f)) { |
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
# customized sendfile() implementation utilizing Nginx's X-Accel-* header options | |
# needed ecause Rails' built-in sendfile() generates chunked response without Content-Length, | |
# and Safari rufuses to player videos coming in chunks...... | |
def nginx_sendfile (file_path, options={}) | |
response.headers["Cache-Control"] = options[:cache_control] || "max-age=86400, public" | |
response.headers["Content-Disposition"] = options[:disposition] || "inline" | |
response.headers["X-Accel-Limit-Rate"] = options[:limit_rate] || "307200" # byte | |
response.headers["X-Accel-Buffering"] = options[:buffering] || "yes" | |
response.headers["X-Accel-Redirect"] = file_path | |
render :nothing => true |