Y
HN Search
Hacker News Search
new
|
comments
|
top
|
jobs
mattikus
searching Neon…
1.
▲
2.
▲
3.
▲
4.
▲
5.
▲
6.
▲
6 ms
·
1.
▲
by
mattikus
4y ago
I think you're being a bit uncharitable and jaded here. For many, events like these are actually the catalyst that causes one to "grow up", which is what the author is conveying.
2.
▲
Layoffs Are Cruel and Don't Work
(matduggan.com)
212 points
by
mattikus
4y ago
|
263 comments
3.
▲
by
mattikus
4y ago
Also of note is https://github.com/tailscale/sqlite , also written by David Crawshaw. It _does_ provide a database/sql driver.
4.
▲
by
mattikus
10y ago
I feel similarly to Kelsey. I also plan on setting up a test cluster to learn the ins and outs and seeing if it's something that might fit in at work for our needs. For personal stuff GKE looks really nice.
5.
▲
by
mattikus
10y ago
Just saw Kelsey give a talk at Abstractions about more advanced patterns in Kubernetes and he mentioned this repo. Looks like a fantastic tutorial and his talk was very informative. Highly recommend watching the video when it's release
6.
▲
by
mattikus
10y ago
This doesn't seem to work with Google Apps for Domains accounts. Another interesting service I can't use. At this point I wish they'd release a tool or some mechanism for me to move my account to a normal GMail account.
7.
▲
by
mattikus
11y ago
"Just because a device has USB Type-C connectors does not mean it supports power or any other alternate mode, such as support for video standards DisplayPort or MHL (used on some smartphones to drive larger >In fact, technically, it
8.
▲
by
mattikus
11y ago
How are you hosting the wheels internally? Are you still using an internal pypi instance but with wheels instead of sdists? I've been looking at doing something similar in our environment but there's so many options I haven't
9.
▲
by
mattikus
11y ago
It looks like they're querying the rpc interface for pypi and sorting by downloads: https://github.com/meshy/pythonwheels/blob/master/utils.py#L...
10.
▲
by
mattikus
11y ago
Apropos of nothing relevant to the actual content of the page, the sand effect easter egg on the logo was really cool. One of the more lifelike effects I've seen.
11.
▲
by
mattikus
11y ago
Also worth mentioning is the excellent talk[0] given by Tobias Schottdorf at FOSDEM 2015 about the high-level design and impetus behind CockroachDB. [0]: https://www.youtube.com/watch?v=ndKj77VW2eM
12.
▲
by
mattikus
11y ago
Looks like a Lenovo Thinkpad X1 Carbon, 2nd Generation based on the modifier keys.
13.
▲
by
mattikus
11y ago
I've had this in my vimrc for years: " Let :w!! gain sudo privileges without closing and reopening vim cmap w!! w !sudo tee % >/dev/null
14.
▲
by
mattikus
11y ago
While you may not be able to do transforms on the output via `sed` or `awk`, you can get a grep-like filtering by using the `&` character with `less` open.
15.
▲
by
mattikus
12y ago
There are a couple of scenarios I can think of to help it make more sense: 1) You're pushing to a remote server which has a checkout of the working copy as the live version of something, e.g. a webapp. 2) You're pushing to a co-wo
16.
▲
by
mattikus
12y ago
That assumes you're using submodules or subtree as your versioning mechanism. If you're using vundle/neobundle, does it do the magic of running the bootstrap to download your bundles from the internet?
17.
▲
by
mattikus
12y ago
I can't speak for most, but there's 3 in my infrastructure. And many private businesses have large clusters with job scheduling very similar to HPC. HFT Finance firms come to mind.
18.
▲
by
mattikus
12y ago
Sure it does: https://gist.github.com/brettcannon/82c4fe68bac30f4ed653#fil...
19.
▲
by
mattikus
12y ago
It can actually be even simpler: sort -u file1.txt file2.txt | tr A-Z a-z > whitelist.txt
20.
▲
by
mattikus
16y ago
"Say I have plugin called foo.vim, inside the bundles folder do I directly drop it or do I create a folder called foo and then drop foo.vim within it? You need to create the folder foo with a folder called plugin and then foo.vim inside it