- Original: 708MB
- xz -3: 70MB, 5:41.02 (2.07 mb/sec - 10:1 ratio)
- bzip2 -3: 74MB, 4:39.11 (2.53 mb/sec - 9.5:1 ratio)
- gzip -3: 103MB: 0:15.15 (46.73 mb/sec - 6.87:1 ratio)
- lzop -3: 146MB, 0:06.53 (108.42 mb/sec - 4.85:1 ratio)
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
2011-cufp-scribe-preprint.pdf | |
A Manual for Hyperref.pdf | |
A Users' Manual for MetaPost.pdf | |
Asymptote中的常见问题.pdf | |
Beamer Guide.pdf | |
Blender从入门到精通.pdf | |
Computability and Complexity.pdf | |
Concatenative Programming - ICSOFT.2009.pdf | |
Conky中文文档.pdf | |
C教程测试版第二章.pdf |
This is a summary of the "Learn You A Haskell" online book under http://learnyouahaskell.com/chapters.
- Haskell is a functional programming language.
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
var FormData = require('form-data'); | |
var fs = require('fs'); | |
var form = new FormData(); | |
form.append('my_field', 'my value'); | |
form.append('my_buffer', new Buffer(10)); | |
form.append('my_file', fs.createReadStream('/foo/bar.jpg')); | |
var http = require('http'); |
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
### | |
# Scheme code is translated to YARV byte code, then evaluated in the | |
# Ruby Virtual Machine | |
require 'rbconfig' | |
require 'dl' | |
require 'fiddle' | |
require 'strscan' | |
class RubyVM |
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
(defpackage :com.liutos.del0-interp | |
(:use :cl) | |
(:nicknames :del0-interp | |
:interp)) | |
(in-package :interp) | |
(defvar *env0* '()) | |
(defun ext-env (x v env) |
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
solve = (s, c = 0) -> if c is 81 then s else if s[x = c/9|0][y = c%9] isnt 0 then solve s, c+1 else (([1..9].filter (g) -> ![0...9].some (i) -> g in [s[x][i], s[i][y], s[3*(x/3|0) + i/3|0][3*(y/3|0) + i%3]]).some (g) -> s[x][y] = g; solve s, c+1) or s[x][y] = 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
require 'sinatra' | |
get "/" do | |
erb :form | |
end | |
post '/save_image' do | |
@filename = params[:file][:filename] | |
file = params[:file][:tempfile] |
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
% xargs -i sh -c 'echo -n "{} @ "; pdftotext "{}" - 2>/dev/null | ruby -e "require \"lingua\"; p Lingua::EN::Readability.new(STDIN.read).flesch"' < /tmp/books | sort -t@ -k2n | |
scheme/sicp.pdf @ 42.013863374063305 | |
smalltalk/Joy of Smalltalk.pdf @ 47.861949781603954 | |
falcon/Falcon Survival Guide.pdf @ 52.899363840845155 | |
ruby/The Rails 3 Way.pdf @ 55.05629641057524 | |
c/The C Programming Language.pdf @ 55.17174939358114 | |
python/Learning Python.pdf @ 56.67476157760058 | |
c++/C++ Primer.pdf @ 57.237840064930595 | |
ruby/The Ruby Programming Language.pdf @ 57.75836947304364 | |
haskell/Real World Haskell.pdf @ 58.23158652909788 |
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
server { | |
index index.php; | |
set $basepath "/var/www"; | |
set $domain $host; | |
# check one name domain for simple application | |
if ($domain ~ "^(.[^.]*)\.dev$") { | |
set $domain $1; | |
set $rootpath "${domain}"; |