I cannot guarantee the accuracy of the information and nor being held accountable to any issue if somehow this guide ends up on the internet.
From time to time, Musk will send out an e-mail to the entire company to enforce a new policy or let them know about something that's bothering him. One of the more famous e-mails arrived in May 2010 with the subject line: Acronyms Seriously Suck:
There is a creeping tendency to use made up acronyms at SpaceX. Excessive use of made up acronyms is a significant impediment to communication and keeping communication good as we grow is incredibly important. Individually, a few acronyms here and there may not seem so bad, but if a thousand people are making these up, over time the result will be a huge glossary that we have to issue to new employees. No one can actually remember all these acronyms and people don't want to seem dumb in a meeting, so they just sit there in ignorance. This is particularly tough on new employees.
That needs to stop immediately or I will take drastic action - I have given enough warning over the years. Unless an acronym is approved by me, it should not enter the SpaceX glossary.
#!/bin/bash | |
set -ex | |
wget -O /etc/apt/sources.list https://gist.github.com/benders/8426266/raw/b4969acb524ba727b64cf8eaee7a6a31be8ae6fb/precise-sources.list | |
apt-get update | |
wget -O /tmp/pe3-install.sh https://gist.github.com/benders/8426266/raw/b1d4c9b6ea41839b74842f05f2ae9efba7a10394/ubuntu-pe-3-install.sh |
SELECT | |
count(*) as count, priority, object, method from ( | |
SELECT | |
@load_start := LOCATE('object: LOAD;', handler), | |
@method_start := LOCATE('method: ', handler) + 9, | |
@method_end := LOCATE('args:', handler) - 1, | |
IF(@load_start, | |
@object_start := @load_start + 13, | |
@object_start := LOCATE('object: !ruby/object:', handler) + 21 | |
), |
group :development do | |
gem 'debugger' | |
gem 'spring' | |
end | |
group :test do | |
gem 'minitest', '4.3.0' | |
gem 'tconsole', '1.2.8' | |
end |
-- Adapted from these sources: | |
-- http://peterdowns.com/posts/open-iterm-finder-service.html | |
-- https://gist.github.com/cowboy/905546 | |
-- | |
-- Modified to work with files as well, cd-ing to their container folder | |
on run {input, parameters} | |
tell application "Finder" | |
set my_file to first item of input | |
set filetype to (kind of (info for my_file)) | |
-- Treats OS X applications as files. To treat them as folders, integrate this SO answer: |
# Fact: racadm | |
# | |
# Purpose: Return the racadm information from Dell hardware | |
# | |
# Resolution: | |
# On Linux, queries racadm getconfig -g for each group in the query hash | |
# | |
# Author: Mikael Fridh <[email protected]> | |
# | |
# TODO Instead of sweeping output once per key, sweep once and |
require 'rubygems' | |
require 'rbvmomi' | |
require 'pp' | |
require 'alchemist' | |
hyper = 'thunder03' | |
vim = RbVmomi::VIM.connect :host => hyper, :user => 'root', :password => 'secret', :insecure => true | |
# | |
# get current time |
--type-set=log=.log | |
--type-add=ruby=.haml | |
--type-add=objc=.pch | |
--type-set=xcode=.pbxproj,.pbxuser,.perspectivev3 | |
--type-set=ragel=.rl | |
--type-set=nib=.xib | |
--type-set=plist=.plist | |
--type-set=tmstuff=.tmproj,.tm_build_errors | |
--nolog | |
--nonib |