Live data from Hacker News

Viewing profile — mattikus

mattikus

HN member
Joined
Sat, Nov 15, 2008, 2:26 PM UTC
HN karma
264
Public activity
20 items

About mattikus

[ my public key: https://keybase.io/mattikus; my proof: https://keybase.io/mattikus/sigs/w9fvm7y3dDvAkn8MpHrurYXZV1ZAxMzIZCyvqvd04uc ]

Recent public activity

  1. comment
    Comment #34643885

    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. story
  3. comment
    Comment #31371750

    Also of note is https://github.com/tailscale/sqlite , also written by David Crawshaw. It _does_ provide a database/sql driver.

  4. comment
    Comment #12326871

    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 st…

  5. comment
    Comment #12323351

    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…

  6. comment
    Comment #11708869

    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 mov…

  7. comment
    Comment #10942687

    "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 s…

  8. comment
    Comment #10000831

    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 envi…

  9. comment
    Comment #10000810

    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. comment
    Comment #9940026

    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. comment
    Comment #9662911

    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/wa…

  12. comment
    Comment #9606743

    Looks like a Lenovo Thinkpad X1 Carbon, 2nd Generation based on the modifier keys.

  13. comment
    Comment #9397891

    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. comment
    Comment #9291555

    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. comment
    Comment #9012572

    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 some…

  16. comment
    Comment #8489386

    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 bundl…

  17. comment
    Comment #8142672

    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. comment
    Comment #8022884

    Sure it does: https://gist.github.com/brettcannon/82c4fe68bac30f4ed653#fil...

  19. comment
    Comment #8022876

    It can actually be even simpler: sort -u file1.txt file2.txt | tr A-Z a-z > whitelist.txt

  20. comment
    Comment #1712107

    "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…