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
| (defun auth-headers (sig-str) | |
| (let* ((sig-len (length sig-str)) | |
| (sig-segs (1- (fceiling (/ sig-len 60.0) ) ))) | |
| (loop for x from 0 to sig-segs | |
| for start = (* 60 x) | |
| for stop = (+ (min 60 (- sig-len start) ) start) | |
| collect (concat "X-Ops-Authorization-" (number-to-string (1+ x) ) ": " ( substring sig-str start stop )) ))) |
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
| 196200_A Programming Language.pdf | |
| 1996-The Log-Structured Merge-Tree (LSM-Tree).pdf | |
| 6.05.HowToBeCreative.pdf | |
| A tour of Scheme in Gambit.pdf | |
| ABCDs of Paxos.pdf | |
| AMQP Spec 0.8.pdf | |
| Abstract Computing Machines.pdf | |
| Adam's Advice and Reading List for High Tech Startup Entrepeneurs.pdf | |
| Advanced Programming in the Unix Environment.pdf | |
| Advanced encryption standard.PDF |
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
| {"gem_bin":"\/System\/Library\/Frameworks\/Ruby.framework\/Versions\/1.8\/usr\/bin\/gem","platform":"universal-darwin11.0","version":"1.8.7","release_date":"2010-01-10","target":"i686-apple-darwin11.0","target_cpu":"i686","target_vendor":"apple","target_os":"darwin11.0","host":"i686-apple-darwin11.0","host_cpu":"i686","host_os":"darwin11.0","host_vendor":"apple","bin_dir":"\/System\/Library\/Frameworks\/Ruby.framework\/Versions\/1.8\/usr\/bin","ruby_bin":"\/System\/Library\/Frameworks\/Ruby.framework\/Versions\/1.8\/usr\/bin\/ruby"} |
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 'json) | |
| (defun file->filename (file) | |
| (cdr (assoc 'filename (cdr file)))) | |
| (defun file->content (file) | |
| (cdr (assoc 'content (cdr file)))) | |
| (defun gist-to-buffers (gist-buffer) | |
| (interactive "bGist Buffer: ") |
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
| ;;; http-twiddle.el -- send & twiddle & resend HTTP requests | |
| ;; This program belongs to the public domain. | |
| ;; Author: Luke Gorrie <luke@synap.se> | |
| ;; Maintainer: Hasan Veldstra <h@vidiowiki.com> | |
| ;; Created: 1 Feb 2006 | |
| ;; Adapted-By: Hasan Veldstra | |
| ;; Adapted-By: Christopher Brown <cb@opscode.com> | |
| ;; Version: 1.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
| log_level :info | |
| log_location STDOUT | |
| node_name 'skeptomaijun21' | |
| client_key '/Users/cb/.chef/cb-user.pem' | |
| chef_server_url 'https://api.opscode.com/organizations/skeptomaijun21org/' | |
| cache_type 'BasicFile' | |
| cache_options( :path => '/Users/cb/.chef/checksums' ) | |
| validation_client_name "skeptomaijun21org-validator" | |
| validation_key "/Users/cb/.chef/skeptomaijun21org-validator.pem" |
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
| # Another take on passwords with OpenSSL, from http://www.tech-recipes.com/rx/1264/generate-passwords-with-openssl/ | |
| require 'openssl' | |
| require 'base64' | |
| Base64.encode64(OpenSSL::Random::random_bytes(18))[0..19] |
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
| /System/Library/Frameworks/Ruby.framework/Versions/1.8/usr/lib/ruby/1.8/yaml.rb:133:in `load': syntax error on line 2, col 11: ` revision: 5ade3a82545fd290cbd7a94b60f325d96b9f05b3' (ArgumentError) | |
| from /System/Library/Frameworks/Ruby.framework/Versions/1.8/usr/lib/ruby/1.8/yaml.rb:133:in `load' | |
| from /System/Library/Frameworks/Ruby.framework/Versions/1.8/usr/lib/ruby/1.8/yaml.rb:144:in `load_file' | |
| from /System/Library/Frameworks/Ruby.framework/Versions/1.8/usr/lib/ruby/1.8/yaml.rb:143:in `open' | |
| from /System/Library/Frameworks/Ruby.framework/Versions/1.8/usr/lib/ruby/1.8/yaml.rb:143:in `load_file' | |
| from /Library/Ruby/Gems/1.8/gems/bundler-0.9.25/lib/bundler/definition.rb:16:in `from_lock' | |
| from /Library/Ruby/Gems/1.8/gems/bundler-0.9.25/lib/bundler.rb:112:in `definition' | |
| from /Library/Ruby/Gems/1.8/gems/bundler-0.9.25/lib/bundler.rb:105:in `runtime' | |
| from /Library/Ruby/Gems/1.8/gems/bundler-0.9.25/lib/bundler.rb:99:in `load' | |
| from /Library/Ruby/Gems/1.8/gems/bundler-0.9.25/lib/bundler.rb:76:in `setup' |
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
| {sub_dirs, ["apps/mochiweb", | |
| "apps/ibrowse", | |
| "apps/org_app", | |
| "rel"]}. |