- Open Terminal (
cmd
+spacebar
; search for Terminal). - Move to the directory where you keep these files:
cd ~/Desktop/[folder name]
- Check to make sure all of the file you're changing show up:
git status
- If they are, you want to add them to staging:
This file contains hidden or 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
seanloiselle:...b.com/cockroachdb/cockroach]$ make (more-metric-metadata✱) | |
GOPATH set to /Users/seanloiselle/go | |
Running make with -j8 | |
rm -rf /Users/seanloiselle/go/native/x86_64-apple-darwin16.7.0/jemalloc | |
rm -rf /Users/seanloiselle/go/native/x86_64-apple-darwin16.7.0/protobuf | |
mkdir -p /Users/seanloiselle/go/native/x86_64-apple-darwin16.7.0/jemalloc | |
rm -rf /Users/seanloiselle/go/native/x86_64-apple-darwin16.7.0/snappy | |
mkdir -p /Users/seanloiselle/go/native/x86_64-apple-darwin16.7.0/protobuf | |
rm -rf /Users/seanloiselle/go/native/x86_64-apple-darwin16.7.0/cryptopp | |
mkdir -p /Users/seanloiselle/go/native/x86_64-apple-darwin16.7.0/cryptopp |
This file contains hidden or 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
-- Invariants: | |
-- * Each run is only ever used on one cloud | |
-- * Each run only ever uses one version of Cockroach | |
CREATE TABLE runs ( | |
id INT8 PRIMARY KEY, | |
crdb_version STRING DEFAULT 'master', | |
INDEX (cloud) COVERING id, -- Get all runs by cloud | |
INDEX (crdb_version) COVERING id -- Get all runs by version; e.g. roachperf wants master but SE tools want specific version | |
); |
Seattle Shit
- Orcas Island –– Take a ferry out to a tiny, cute island. Kind of a tourist trap, but nice.
- Discovery Park – It's a big ass park
- SAM (Seattle Museum of Art) –– Not The MET or MoMA, but maybe that's a feature
This file contains hidden or 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
for c in s.chars() { | |
if c == '.' { | |
if seen_decimal { | |
bail!("multiple decimal points in numeric literal: {}", s) | |
} | |
seen_decimal = true; | |
continue; | |
} | |
if c == '-' { | |
if seen_e_notation { |
You can start the materialized
binary with:
./materialized_(linux|mac) --dev --w=1
And then launch into the SQL interface (e.g. psql -h 0.0.0.0 -p 6875 -d materialize
)
OlderNewer