- Drops the f-bomb (or says "shit")
- Makes fun of Java (or Struts, Hibernate, etc)
- Mentions "frameworks should be extractions, not inventions"
- Mentions "constraints are liberating"
- Defends TurboLinks or the asset pipeline
- Mentions Basecamp
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
-- PostgreSQL 9.2 beta (for the new JSON datatype) | |
-- You can actually use an earlier version and a TEXT type too | |
-- PL/V8 http://code.google.com/p/plv8js/wiki/PLV8 | |
-- Inspired by | |
-- http://people.planetpostgresql.org/andrew/index.php?/archives/249-Using-PLV8-to-index-JSON.html | |
-- http://ssql-pgaustin.herokuapp.com/#1 | |
-- JSON Types need to be mapped into corresponding PG types | |
-- |
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
MBA-FBA:bin francois$ ./virt-manager | |
RuntimeWarning: tp_compare didn't return -1 or -2 for exception | |
RuntimeWarning: tp_compare didn't return -1 or -2 for exception | |
Traceback (most recent call last): | |
File "/Users/francois/bin/mybuild/share/virt-manager/virt-manager.py", line 393, in <module> | |
_show_startup_error(str(run_e), "".join(traceback.format_exc())) | |
File "/Users/francois/bin/mybuild/share/virt-manager/virt-manager.py", line 63, in _show_startup_error | |
from virtManager.error import vmmErrorDialog | |
File "/Users/francois/bin/mybuild/share/virt-manager/virtManager/error.py", line 173, in <module> | |
class _errorDialog (gtk.MessageDialog): |
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
require 'socket';s=TCPSocket.new(ARGV[0], Integer(ARGV[1]));begin loop {s.puts($stdin.gets)}; rescue Exception => e; end |
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
source :rubygems | |
gem "eventmachine" |
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
require 'sinatra/base' | |
module Sinatra | |
module Slice | |
def self.prefix_routes(middleware) | |
prefix = prefix_from(middleware) | |
middleware.instance_eval { | |
@routes.each do |http_method, _| | |
@routes[http_method].each_with_index do |route, index| |
After finding a lot of other posts on the topic that didn't work out for me this one did the trick so I'm reposting for my own sense of self preservation.
Copy the Virtualbox autostart plist template file to your system's LaunchDaemons folder.
sudo cp \
/Applications/VirtualBox.app/Contents/MacOS/org.virtualbox.vboxautostart.plist \
Moved to git repository: https://github.com/denji/golang-tls
# Key considerations for algorithm "RSA" ≥ 2048-bit
openssl genrsa -out server.key 2048
# Key considerations for algorithm "ECDSA" ≥ secp384r1
# List ECDSA the supported curves (openssl ecparam -list_curves)