Live data from Hacker News

Viewing profile — Plugawy

Plugawy

HN member
Joined
Thu, Aug 20, 2009, 12:55 PM UTC
HN karma
229
Public activity
82 items

About Plugawy

http://lukasz.korecki.me

Thing of the Internet

Recent public activity

  1. comment
    Comment #31315056

    In my experience (7+ years of using Clojure) this is caused by the misunderstanding of what Clojure actually is: it's a LISP designed for the JVM, you cannot escape the host and pr…

  2. comment
    Comment #27185701

    Same! Never bothered with the so-called HA setup after running a cluster for few months. Making all messages durable + backups of underlying storage are sufficient, while the do no…

  3. comment
    Comment #26448665

    I recommend reading this 3-part series on Mongo's marketing - it goes into a lot of detail why Mongo "won". https://www.nemil.com/mongo/1.html As a former RethinkDB user (we have m…

  4. comment
    Comment #26394816

    https://www.coffeesounds.com

  5. comment
    Comment #25245461

    ECS can be simpler if you stick to the default and use something like copilot - it effectively turns your compose file into a cluster with all of the networking etc

  6. comment
    Comment #24993768

    We've came around full circle - I made this few years ago https://github.com/lukaszkorecki/workflowish

  7. comment
    Comment #24772932

    TIL, will check it out - thanks!

  8. comment
    Comment #24720752

    EnvKey user here - it looks exactly like EnvKey. Not sure what the underlying crypto primitives are - EnvKey relies on PGP/GPG style stuff and have a lot of documentation about it.…

  9. comment
    Comment #24709474

    AFAIK there's no RabbitMQ-compatible broker, unless you use AMQP 1.0 in RabbitMQ right now. Their AMQP 0.9 implementation has a lot of RMQ-specific stuff and there's no equivalent.…

  10. comment
    Comment #24178361

    One is fantastic but you have to be aware of it’s limitations - particularly around network connectivity, something that even OG MPC Live is better at. Of course if it’s not a fact…

  11. comment
    Comment #23928560

    Not quite: they acquired the consulting part of Plataformatec, the core Elixir folks are running a new venture: https://changelog.com/podcast/402

  12. comment
    Comment #23796140

    The closest thing you can get in irb, is to use Rails' `reload!` after making changes to your files. I don't remember if irb supports this kind of stuff out of the box, perhaps goo…

  13. comment
    Comment #23356539

    I'd disagree - my team migrated from running containers on VMs (managed via Ansible) to ECS + Fargate (managed by Terraform and a simple bash script). It wasn't a simple transition…

  14. comment
    Comment #23261954

    An application usually has one connection, and many channels. Our pattern is to dedicate one channel for all publishing and then N channels mapped to consumer threads. You don't ha…

  15. comment
    Comment #23119136

    C-r for interactive history search

  16. comment
    Comment #22410611

    > Sometimes it requires a lot of thinking to come up with simple solutions. Author here - I should have tweeted that instead of writing a blog post

  17. comment
    Comment #22141727

    Almost nobody uses refs in production code ;-)

  18. comment
    Comment #22141722

    I'm not sure to be honest, I've been working with Clojure for 5 years now, and the only "help" I get from the editor I get is "highlight matching pair". I never got used to automat…

  19. comment
    Comment #20598457

    Sounds like a bad idea, no? Last ting you want is whole cluster going down because Kafka is misbehaving

  20. comment
    Comment #20595889

    The document mentions using Raft for consensus and coordination - it's the same approach used by Etcd, Consul, Serf, RethinkDB and other systems. AFAIK it's easier to implement and…

  21. comment
    Comment #20259886

    It's a very fast Scheme implementation, compiles to C and has a pretty decent [library ecosystem]( http://eggs.call-cc.org/5/ ). I've used it to build service monitoring daemons an…

  22. story
  23. comment
    Comment #19934642

    That's correct - being able to "rewind" a history of a topic (queue) is a powerful concept. But, Kafka is a bit harder to operate than RabbitMQ in my experience. (Somewhat related,…

  24. story
  25. comment
    Comment #17715711

    Compojure - https://github.com/weavejester/compojure#usage is a very close equivalent of Sinatra. Ring (which most, if not all web libraries build on top of) is directly inspired b…