Dell HQ: Round Rock, Texas Products: Computers, monitors, printers.
AT&T HQ: Dallas, TX Products: Home Internet, Cable TV, Cell Services, Streaming Services, Sports Television
American AIrlines HQ: Fort Worth, TX
Dell HQ: Round Rock, Texas Products: Computers, monitors, printers.
AT&T HQ: Dallas, TX Products: Home Internet, Cable TV, Cell Services, Streaming Services, Sports Television
American AIrlines HQ: Fort Worth, TX
{ | |
"files.eol": "\n", | |
"terminal.integrated.shell.windows": "C:\\Windows\\sysnative\\bash.exe", | |
"editor.fontSize": 14, | |
"editor.fontFamily": "Hack", | |
"editor.tabSize": 2, | |
"editor.fontLigatures": true, | |
"editor.cursorStyle": "line", | |
"editor.cursorBlinking": "solid", |
We had a small public API change at work that caused some of our clients to break. This was entirely unintentional and the fact that our tests didn't catch this is somewhat embarassing. We noticed that the problem was due to format changes as a result of moving some code from JSON.generate
to MultiJson.dump
. This lead me down a bit of a rabbit hole and I discovered how different marshalling can between libraries.
Our MultiJson setup uses Oj with the following dump options.
{
:mode => :compat,
:time_format => :ruby,
I hereby claim:
To claim this, I am signing this object:
I hereby claim:
To claim this, I am signing this object:
OpenSSL Security Advisory [9 Jul 2015] | |
======================================= | |
Alternative chains certificate forgery (CVE-2015-1793) | |
====================================================== | |
Severity: High | |
During certificate verification, OpenSSL (starting from version 1.0.1n and | |
1.0.2b) will attempt to find an alternative certificate chain if the first |
git branch -r --merged | grep jdaniel | grep -v master | awk -F \/ '{print($2)}' | xargs git push jdaniel --delete |
apt-get update apt-get upgrade
apt-get install git zsh
mkdir src cd src
git clone [email protected]:opentechinstitute/commotion-router.git
sudo ./socketfilterfw --add ~/.rubies/jruby-1.7.12/bin/ruby |
class ClassThatDoesStuff | |
def some_method | |
"You're winner!" | |
end | |
end | |
require 'benchmark' |