Live data from Hacker News

Viewing profile — evangow

evangow

HN member
Joined
Fri, Oct 02, 2015, 2:00 PM UTC
HN karma
107
Public activity
41 items

About evangow

Indie Developer @ https://storyoriginapp.com/

Recent public activity

  1. comment
    Comment #38087615

    This is a great question. I would love to see more documentation on what this means for transactional emails. Adding systems in place to handle unsubscribing from transactional ema…

  2. comment
    Comment #38076842

    They defined bulk senders in the 3rd paragraph: "bulk senders — those who send more than 5,000 messages to Gmail addresses in one day"

  3. comment
    Comment #38045920

    Many people know javascript, so when they want to build something, they use the language they already know.

  4. comment
    Comment #37744990

    If you know you are at risk for specific cancers, then you would likely get tested more regularly and could potentially catch them at an earlier stage when they're usually more tre…

  5. comment
    Comment #36383268

    You can make a REST endpoint match a client's needs, but if you have multiple clients (for example, 1 for mobile and 1 for desktop) that all need different amounts of data (for exa…

  6. comment
    Comment #36218553

    I would love it if the would remove the key from the array.

  7. comment
    Comment #36218537

    2 tables that reference each other and the foreign key columns both have a NOT NULL constraint.

  8. comment
    Comment #36166447

    Since we're here talking about Postgres and SQL standards. Here's my wishlist: - Support for arrays of foreign keys. This one has been worked on a couple of times but hasn't made i…

  9. comment
    Comment #35344015

    I haven't used PrivateLink before, but from my brief look, it looks like it would work.

  10. comment
  11. comment
    Comment #35343431

    Any plans to introduce a way to connect to a Neon database without making it publicly accessible via the internet?

  12. comment
    Comment #33759774

    I build marketing software for authors (called StoryOrigin if you want to look it up for credibility purposes), so I'm quite familiar with the space. Exactly what you've described …

  13. comment
    Comment #29087314

    Gotcha. That makes sense since each site is deployed separately and not a subdomain of a single deploy. Thanks for sharing!

  14. comment
    Comment #29086451

    I'm curious as to how you all are providing SSL for custom domains

  15. comment
    Comment #28132323

    1) https://github.com/react-page/react-page (comes with a Slate plugin actually) 2) https://grapesjs.com/

  16. comment
    Comment #27462805

    I'm not seeing anything here about generating VAT-compliant invoices here or in the documentation. Different countries have different requirements for what must be included on the …

  17. comment
    Comment #27360584

    Related. I can't wait for [Temporal]( https://github.com/tc39/proposal-temporal ) - which hit Stage 3 a few months ago - to bring sanity to time in the browser. Combined with Intl,…

  18. comment
    Comment #25445306

    You can do IP to location if you deploy a Lamda@Edge and get the cloudfront headers https://aws.amazon.com/about-aws/whats-new/2020/07/cloudfron...

  19. comment
    Comment #25282662

    Awesome! I've always thought it would be interesting to port Nand2Tetris to the web to make it more easily accessible. Glad someone finally ported the virtual computer building par…

  20. comment
    Comment #21715300

    This is a very cool project, but I'm not sure exactly what I would use it for. I could see it being useful if didn't start your project out using a tool for schema migrations and n…

  21. comment
    Comment #21509380

    I was surprised that it didn't mention graph databases either, which is pertinent to the conversation around the evolution of SQL in the article, because querying graph databases r…

  22. comment
    Comment #21459184

    I use await-to-js[1] to clean this stuff up. You can pair it with destructuring arrays like so: const [err, result] = await to(funcThatReturnSomeType()); if(err) doSomethingWithErr…

  23. comment
    Comment #20630141

    I haven't used it, but I believe JIMP might work for you if you're looking for a JS solution to image manipulation https://github.com/oliver-moran/jimp

  24. comment
    Comment #19720382

    Thanks for sharing! Looks like Jacob has open-sourced a svelte-based rich text editor based on Quill. Link below for anyone who is curious. https://github.com/typewriter-editor/typ…

  25. comment
    Comment #19720240

    One area where the virtual DOM seems to be important is for rich text editors, where the VDOM can basically take the input, diff it using an immutable structure, then render it to …