Live data from Hacker News

Viewing profile — nynrathod

nynrathod

HN member
Joined
Mon, Jan 03, 2022, 10:22 AM UTC
HN karma
6
Public activity
30 items

About nynrathod

Doolang creator, Building DooCloud

Recent public activity

  1. story
  2. comment
    Comment #48655838

    interesting one. Is it only available in mac? as rust can build cross platfrom binary? any plan for other os?

  3. comment
    Comment #48655788

    So does it calling api for all platfrom and you show all feed on you app? so user can customize what to see?

  4. comment
    Comment #48655707

    Great product visualization with code

  5. comment
    Comment #48566096

    Just one suggestion, instead of adding manual won't track the correct mood. What if it tracks auto as per our activity via work, my code, or agent work prompts all? That may result…

  6. comment
    Comment #48552778

    I tried, but honestly, all end with lack of tool or configuration or hardware config. None of them work for me. At end paid apis only providing productivity else free local end wit…

  7. story
  8. story
  9. story
  10. comment
    Comment #46514049

    Author here. Happy to answer questions! What I'd love feedback on: 1. Is the @decorator syntax clear or confusing? 2. Would you use this for a real project? 3. What's the #1 missin…

  11. story
    Show HN: Doo – Generate auth and CRUD APIs from struct definitions

    Built Doo because I was tired of writing 200 lines of auth boilerplate for every API. Example (complete API): import std::Http::Server; import std::Database; struct User { id: Int …

  12. comment
    Comment #46179551

    Doo is a statically-typed, compiled programming language built in Rust + LLVM, designed for building production ready APIs quickly. 0.2.0 Alpha is the biggest update so far. It add…

  13. story
  14. comment
    Comment #45884310

    THanks for sharing, will take a look surely, as memroy mgmt will be crucial for doolang. And I can see you are valgrind developer?

  15. comment
    Comment #45872757

    Interesting will take a look in this point, thanks for sharing

  16. comment
    Comment #45872754

    Good point, will remove that word, btw will added unsigned float in upcoming release. Thanks for that comment.

  17. comment
    Comment #45863158

    Hi everyone, I launched doo: Simple Fast and Secure compiled programming language written in rust+LLVM. My Idea is to have simplicity to write server apis with minimalist and clean…

  18. story
  19. comment
    Comment #45863018

    True, it takes years. And as a solo dev its really hard. Turning into product really makes sense, i understood now i need something unique or specific feature. but as of now only w…

  20. comment
    Comment #45863007

    Hi, thanks for pointing this out. Yeah struct and enum are alredy in pipeline. memroy mgmt and codegen work pending for those 2. Planning to release in 0.3.0 but let me see if poss…

  21. comment
    Comment #45862986

    Doolang i started for writing server and apis easily and simply, but you points make sense for Wasm components. Not planned as of now as this is just starting point, but surely wou…

  22. comment
    Comment #45862965

    Thanks for valuable feedback. Yeah definitely will add more examples projects. And really make sense your point to have usp or any unique or good feature doolang should have. As th…

  23. comment
    Comment #45809929

    Thanks for pointing that out. I didn’t actually know all the details about how Valgrind works under the hood just that it does memory checking. I'll definitely read up more on it. …

  24. comment
    Comment #45808405

    Doolang currently does not allow you to mutate a primitive variable from another function. Only support this as of now fn Foo(x: Int) { x = 123; // Only modifies Foo's local copy p…

  25. comment
    Comment #45807984

    But your points make sense, i should learn those UB works and will check how its behaving