Live data from Hacker News

Viewing profile — jpittis

jpittis

HN member
Joined
Thu, Oct 01, 2015, 5:47 AM UTC
HN karma
132
Public activity
38 items

About jpittis

No profile information was provided.

Recent public activity

  1. comment
    Comment #38669714

    Keep in mind that "one zone" has durability implications: > In the unlikely case of the loss or damage to all or part of an AWS Availability Zone, data in a One Zone storage class …

  2. comment
    Comment #31662550

    Not to mention large parts of the community using a pointfree, single character variable naming style that's hard to read. If Haskell could consistently be written in a more predic…

  3. comment
    Comment #29651924

    This idea of missing something simple really speaks to me. I remember “factorization” not clicking for me for the longest time in public school. My grades slowly got worse, until t…

  4. comment
    Comment #28152479

    Quality isn't only sacrificed due to mismanaged loss in the pipeline. It's also at odds with delivery speed, feature breadth, cost, and itself. Quality is at odds with quality, bec…

  5. comment
    Comment #26844733

    I once plugged my Linux thinkpad into a projector via HDMI during a programming interview, and my laptop started smelling like it was burning. Never again!

  6. comment
    Comment #24452560

    Is Elixir really the general purpose productivity tool that comments here (and on other HN posts) make it out to be? I've loved playing with Erlang and Elixir. The concurrency mode…

  7. comment
    Comment #23696370

    Hey antirez, Your work that’s had the most impact on me isn’t Redis but kilo! It taught me how to have fun hacking on C back in university. Me and a couple friends cloned the repo …

  8. comment
    Comment #21072519

    Which means “bag” in French

  9. comment
    Comment #20524539

    I interpreted it more as a story about aging. I guess both!

  10. comment
    Comment #20517926

    It completely changed the way I write Go. This is editor specific though. I use Vim for programming Go and have a few custom scripts built on top of https://github.com/fatih/vim-go…

  11. comment
    Comment #20517205

    To add to this, editor commands to quickly switch to your test file, auto generate test boilerplate and run the currently highlighted test are super helpful to speed up this loop.

  12. comment
    Comment #20517181

    I’ve often had similar feelings to you. Something that blew my mind recently was using a Lisp repl which was integrated with my text editor. I just wrote out the code I wanted to t…

  13. comment
    Comment #20456723

    Yup. I misspoke. We’re both right.

  14. comment
    Comment #20456011

    Having unwrap() in your Rust code is like littering your code base with panic(). It’s not appropriate to use in most production code, but is convenient in prototypes, examples and …

  15. comment
    Comment #20386888

    > I typically find it very difficult to understand complex functions It seems to me like "complex" and "ability to understand" mean the same thing, so this phrase doesn't have much…

  16. comment
    Comment #20373218

    Good point. The article didn’t point out that Docker does have a valuable use case that as you say, can be solved in other ways.

  17. comment
    Comment #20372647

    > What is Docker for? You can take your old Python and Ruby and Perl apps and wrap them up in Docker, and thus those old apps can make the transition to the modern world of cloud c…

  18. comment
    Comment #20367368

    It's interesting that there's so much resistance to Clojure given it's modern / being used in production a fair bit. I've had a number of great experiences working on toy projects …

  19. comment
    Comment #20336716

    And then you get the lovely benefit of not knowing whether someone explicitly passed in zero or didn't specify an option at all. There are a lot of ways around this: Use pointers, …

  20. comment
    Comment #20192815

    > I think the smaller differences are also large enough to rule out extraordinary claims, like the ones I’ve read that say writing a compiler in Haskell takes less than half the co…

  21. comment
    Comment #20186096

    Does anyone have any links to examples or docs for how the “binding operators” work?

  22. story
  23. story
    Ask HN: Project management resources for an even better 2019?

    What are your favorite project management related books and resources that will make an individual contributor successful in the new year? I'm starting the year with an overwhelmin…

  24. comment
    Comment #18575217

    Conj always makes me so envious. So many good talks. This one, the Rich Hickey one on Maybe, the Stuart Halloway one on REBL. Any other must watches? Hickey: https://youtu.be/YR5Wd…

  25. comment
    Comment #18371344

    The Haskell style comma before the next element is soooo nice for adding and removing elements over time. I wish more languages used that style.