Live data from Hacker News

Viewing profile — osdev

osdev

HN member
Joined
Mon, Jun 16, 2014, 7:20 PM UTC
HN karma
54
Public activity
26 items

About osdev

No profile information was provided.

Recent public activity

  1. comment
    Comment #46093455

    Martin Odersky did a fantastic job with Scala then, and also with Scala 3 IMO from a language design perspective. When I first got into Scala, I was blown away by the language feat…

  2. comment
    Comment #46093403

    Scala is a great language, and functional programming (not pure functional) made me a much better programmer. And functional error handling is a fantastic way to model success and …

  3. comment
    Comment #45020422

    Also agree with some of the comments here that majority of articles about OAuth are incredibly verbose, but really hard to actually implement without concrete examples. I personall…

  4. comment
    Comment #41096160

    Nice idea and the site looks well done! Congrats on launching this. I played around the site a bit and with the different panels.. a few thoughts/questions... THOUGHTS 1. Target: I…

  5. comment
    Comment #37647294

    Hi, I’m curious, can you elaborate on the language features that you think Kotlin ignores?

  6. comment
    Comment #32730949

    Nice work on this! I’ve looked into task queue libraries for Node and Java in the past. Yours looks straight-forward. A few questions: 1. What’s the error handling strategy for whe…

  7. comment
    Comment #30584197

    Some suggestions based on my own experience working on various projects/services/startups over the years… 1. “Avoid 100%”: By this I mean avoid 100% in that balance can be as littl…

  8. comment
    Comment #28356286

    I think the main differences Scala being much more of a functional programming language where as Kotlin is a bit of a balance between Java/OOP and FP and affects the complexity/lea…

  9. comment
  10. comment
    Comment #27083843

    This is some impressive stuff! Congrats on a sizable achievement. I just went through your website, have a few questions... Questions: 1. SCALA: is the generated code ONLY scala? a…

  11. comment
    Comment #25998565

    I’m working on a Kotlin Framework to build Apps, APIs, CLIs, Jobs and Mobile apps, it’s available at https://github.com/slatekit/slatekit with docs at https://www.slatekit.com Been…

  12. comment
    Comment #25854952

    I think it’s pretty simple why you’d want to use Kotlin on the server; full stack Kotlin development: 1 language for both Android and Server(lowers time, costs, and you can share c…

  13. comment
    Comment #25853676

    Agree completely with everything you said and your observations regarding job market. I’ve been doing Scala for several years and I also would not recommend it to anyone unless the…

  14. comment
    Comment #25836190

    What’s your stance on Dual licensing? I honestly have had mixed Opinions on this, but I finally settled on Dual licensing and/or BSL 1.1 as a nice compromise. I think open source d…

  15. comment
    Comment #25784690

    I’m working on a Kotlin Framework, more like a collection of small, modular libraries that can be used for both server side and android. https://www.slatekit.com My goal is a simpl…

  16. story
    Ask HN: Using BSL (Business Source) License as a Dual License?

    Hey everyone, what do think of open-source projects adopting the BSL ( Business Source License) with "Additional Use Grants" to allow production use for educational, non-profit, pe…

  17. comment
    Comment #25542263

    I’m not too familiar with ruby but I’m curious why they didn’t just add optional types after the variable names. Such as in Kotlin, Scala, Swift like “var x:Int”? I thought this is…

  18. comment
    Comment #24988436

    The Scala language is great but the ecosystem sacrifices simplicity for pure FP. Scala has always suffered from complexity problems due to libraries. For example, using Http/JSON/D…

  19. comment
    Comment #24609479

    Focus on no-code, low-code approaches and tools to building a product to validate a problem and your solution to it. For example, use a “no code” approach first and simply use tool…

  20. comment
    Comment #22337148

    Accounts (I believe ) are similar to email addresses. So it's like having an account userX@gmail.com and trying to migrate that to userX@yahoo.com. Essentially the account is tied …

  21. comment
    Comment #22193753

    Modular Monoliths would be a healthy middle-ground between monoliths and micro-services. My comment on the same topic of modular monoliths is here: https://news.ycombinator.com/ite…

  22. story
  23. comment
    Comment #21853902

    Like many things in life, there are no absolutes. So rather than going to opposite ends of the spectrum, check out modular monoliths. This approach is a nice balance (IMHO), since …

  24. comment
    Comment #21852347

    I agree with almost everything you're saying. I'll just add that while Scala missed it's opportunity with Android, the big problem has always been a borderline dogmatic approach to…

  25. comment
    Comment #20973378

    What are the pros/cons of using a custom built language/parser such as this(or others like googles gRPC IDL, etc), versus simply creating a DSL(Domain Specific Language) using an e…