Live data from Hacker News

Viewing profile — zentrus

zentrus

HN member
Joined
Tue, Aug 16, 2011, 5:01 AM UTC
HN karma
31
Public activity
37 items

About zentrus

No profile information was provided.

Recent public activity

  1. comment
    Comment #32610934

    Because they are "Red Hot"?

  2. comment
    Comment #32323831

    Airflow helped my team out a lot a couple years ago mainly for the simplicity of the topdown UI-based view of a complicated ETL AND the ability to retry parts of the ETL. We had lo…

  3. comment
    Comment #28569573

    Totally agree on hoping there is at least some movement forward on async--particularly async ORM. I love Django and DRF. It is my go-to for a lot of things, but the lack of async s…

  4. comment
    Comment #24975986

    Rapid7 | Senior Software Engineer | REMOTE or Arlington, VA | Full time The Rapid7 Labs team uses our experience, expertise, and passion for cyber security to establish a leading u…

  5. comment
    Comment #21218486

    I've messaged you guys a couple times, but never heard anything! I'm a seasoned Django developer, led some teams, and have a bit of experience in public health (mainly disease surv…

  6. comment
    Comment #19705041

    Just fyi, depreciating the property isn't a choice in the US. When you sell, the government assumes you did depreciate on your previous tax returns. If you didn't, you missed out o…

  7. comment
    Comment #12112741

    This is true, and I love DRF but I find it unfortunate then that the concept of Serializer exists. Tom Christie essentially says that Serializers can and should be used outside of …

  8. comment
    Comment #9162007

    Very disappointing. In various parts of the world, data is not always available and SMS is. :(

  9. comment
    Comment #8832951

    Yes, you could. My only point is that PostgREST limits you in what you can do in terms of handling load.

  10. comment
    Comment #8832858

    I'm not sure if this is exactly where al2o3cr was going, but a Ruby (or whatever) application would normally include such things as caching and queueing. Despite the slowness of Ru…

  11. comment
    Comment #8499797

    And Docker bought Fig, so it is likely it will continue to be supported and eventually even do multi-host container orchestration.

  12. comment
    Comment #8263806

    That's a good set of pitfalls to watch out for. Mainly, I just find it odd that in Django 1.7, they are using frozen models to mitigate some of these problems, but don't remove or …

  13. comment
    Comment #8261564

    Awesome that migrations are now in Django core. I do see some pitfalls regarding Historical Models though. The problem is that application code usually changes over time. Consider …

  14. comment
    Comment #8261506

    Thank you. This is closer to a much better upgrade path. The official documentation is really not a good way to have non-technical customers move from South to Django 1.7. With the…

  15. comment
    Comment #7921758

    Also http://blitz.io

  16. comment
    Comment #7913725

    Yes. I think saying "you can't sacrifice correctness because of an inability to scale your database" is perhaps conveying the wrong message though. I mean, your very first point is…

  17. comment
    Comment #7911774

    Passing objects to Celery and not querying for fresh objects is not always a bad practice. If you have millions of rows in your database, querying for them is going to slow you way…

  18. comment
    Comment #7714050

    What happens if more traffic is coming in than Packetbeat can process? Either you are dropping that traffic or you are (perhaps unintentionally) blocking it, right?

  19. comment
    Comment #7363212

    Maybe I'm not following your response. What I'm saying is that there are reasons to use /dev/random at least after boot (to block for seed entropy). Saurik gives a real world examp…

  20. comment
    Comment #7361738

    As people have pointed out in this thread and other articles, clearly there can be issues with using /dev/urandom on boot where there is a lack of entropy. What I would love to kno…

  21. comment
    Comment #6972710

    Be aware that this version of DDT is likely broken if you are using require.js or other AMD loaders. It may even fail in non-AMD environments if you are using jQuery. This appears …

  22. comment
    Comment #6889286

    Thank you for clarifying. Does the AeroFS Team Server also have upgrades that behave the same way?

  23. comment
    Comment #6886448

    Overall I think their approach for easy installation and configuration is a good one. I struggle with these same issues at my job--we sell products with a complex application stack…

  24. comment
    Comment #6642214

    I for one agree with you. There are a few specific cases where client-side crypto has benefits regardless of the fact that you need to (at some point) trust the server. I think the…

  25. comment
    Comment #6639443

    Having the crypto code delivered by the server to provide real-time "end-to-end" security is surely a problem. But, I believe there is a specific use case where even not-so-perfect…