The Nats have won 2 games in a row 55 times already this season. After this series, it'll be 56.
Source: http://www.espn.com/mlb/team/schedule/_/name/wsh/seasontype/2/half/1
2004 Lexus IS300 for sale. Car is in perfect working order. It's stock except for a K&N Air Filter and front Strut Bar. Comes with TWO full-size spares. This is the first car I ever owned. I'm the 2nd owner, purchased 9 years ago and babied with only 91 gas and greater (ever). | |
Recent work done: | |
– New Battery | |
– Replaced Timing Belt and Water Pump ($1.8k of work, have parts list /receipt) | |
– Tires all have 70% tread or more on them (17" Wheels, not the smaller 16") | |
– Replaced brakes and rotors | |
– Just detailed, changed oil, wiper fluid, cleaned air filter, etc. |
# If you come from bash you might have to change your $PATH. | |
export PATH=./node_modules/.bin:$HOME/bin:$HOME/.composer/vendor/bin:/usr/local/bin:/Users/tmarshall/repos/multitasking/bin:$PATH | |
# Path to your oh-my-zsh installation. | |
export ZSH=/Users/tmarshall/.oh-my-zsh | |
# Set name of the theme to load. Optionally, if you set this to "random" | |
# it'll load a random theme each time that oh-my-zsh is loaded. | |
# See https://github.com/robbyrussell/oh-my-zsh/wiki/Themes | |
# ZSH_THEME="af-magic" |
// Place your key bindings in this file to overwrite the defaults | |
[ | |
{ | |
"key": "alt+down", | |
"command": "incrementor.decByOne" | |
}, | |
{ | |
"key": "ctrl+down", | |
"command": "-incrementor.decByOne" | |
}, |
{ | |
"workbench.colorTheme": "One Monokai", | |
"editor.lineHeight": 24, | |
"editor.fontSize": 14, | |
"files.autoSave": "onFocusChange", | |
"workbench.editor.labelFormat": "default", | |
"sublimeTextKeymap.promptV3Features": true, | |
"editor.multiCursorModifier": "ctrlCmd", | |
"editor.snippetSuggestions": "top", | |
"editor.fontFamily": "Fira Code", |
pr () { | |
local repo=`git remote -v | grep -m 1 "origin" | sed -e "s/.*github.com[:/]\(.*\)\.git.*/\1/"` | |
local branch=`git name-rev --name-only HEAD` | |
echo "... creating pull request for branch \"$branch\" in \"$repo\"" | |
open https://github.com/$repo/pull/new/$branch | |
} |
{ | |
"keys": ["tab"], "command": "expand_abbreviation_by_tab", "context": [ | |
{ | |
"operand": "source.js", | |
"operator": "equal", | |
"match_all": true, | |
"key": "selector" | |
}, | |
{ | |
"key": "selection_empty", |
Source: http://www.espn.com/mlb/team/schedule/_/name/wsh/seasontype/2/half/1
import React from 'react'; | |
import { TextBlock } from '../../text'; | |
import { Modal } from '../'; | |
class Demo extends React.Component { | |
state = { | |
open: false | |
}; | |
handleOpenModel = () => this.setState({ open: !this.state.open }); |
<?php | |
class ContentfulBuilder { | |
protected $query; | |
public function __construct() { | |
$this->query = new Query; | |
} |
--- | |
company: XXX | |
provider: rackspace | |
server_os: trusty | |
server_size: 8G | |
stack: lamp | |
httpd_package: apache | |
database_package: mysql | |
ssl_test_mode: yes |