http://ln.hixie.ch/?start=1037910467&count=1
http://ln.hixie.ch/?start=1137740632&count=1
/**********************************************/ | |
/* | |
/* Tomorrow Skin by Ben Truyman - 2012 | |
/* | |
/* Based on Chris Kempson's Tomorrow Theme: | |
/* https://github.com/ChrisKempson/Tomorrow-Theme | |
/* | |
/* Inspired by Darcy Clarke's blog post: | |
/* http://darcyclarke.me/design/skin-your-chrome-inspector/ | |
/* |
1. General commands | |
2. System calls | |
3. C library functions | |
4. Special files (usually devices, those found in /dev) and drivers | |
5. File formats and conventions | |
7. Miscellaneous |
import java.io.IOException; | |
import java.security.KeyFactory; | |
import java.security.NoSuchAlgorithmException; | |
import java.security.PublicKey; | |
import java.security.spec.InvalidKeySpecException; | |
import java.security.spec.RSAPublicKeySpec; | |
import org.spongycastle.asn1.ASN1InputStream; | |
import org.spongycastle.asn1.DERObject; | |
import org.spongycastle.asn1.x509.RSAPublicKeyStructure; |
Building a Successful Furniture Business from the Ground Up: Hellman-Chang, Part 1
Building a Successful Furniture Business: Hellman-Chang, Part 3 - To ICFF, or Not to ICFF?
Building a Successful Furniture Business: Hellman-Chang, Part 4 - The ICFF Brings a New Challenge
[Building a Successful Furniture Business, Part 5: Hellman-Chang Wonders "How
require 'openssl' | |
require 'base64' | |
rsa = OpenSSL::PKey::RSA.new(2048) | |
modulus = rsa.n | |
exponent = rsa.e | |
oid = OpenSSL::ASN1::ObjectId.new("rsaEncryption") | |
alg_id = OpenSSL::ASN1::Sequence.new([oid, OpenSSL::ASN1::Null.new(nil)]) | |
ary = [OpenSSL::ASN1::Integer.new(modulus), OpenSSL::ASN1::Integer.new(exponent)] |
RubyConf 2011 | 2011-09-29 | Gregory Moeck (@gregmoeck)
It appears that there are enormous differences of opinion as to the probability of a failure with loss of vehicle and of human life. The estimates range from roughly 1 in 100 to 1 in 100,000. The higher figures come from the working engineers, and the very low figures from management. What are the causes and consequences of this lack of agreement? Since 1 part in 100,000 would imply that one could put a
This gist is part of a blog post. Check it out at:
http://jasonrudolph.com/blog/2011/08/09/programming-achievements-how-to-level-up-as-a-developer
autocmd FocusGained * call s:CmdTFlush() | |
function s:CmdTFlush(...) | |
if exists(":CommandTFlush") == 2 | |
CommandTFlush | |
endif | |
endfunction |