Live data from Hacker News

Viewing profile — StrykerKKD

StrykerKKD

HN member
Joined
Thu, Aug 14, 2014, 7:39 PM UTC
HN karma
19
Public activity
20 items

About StrykerKKD

No profile information was provided.

Recent public activity

  1. comment
    Comment #18475367

    I tried out the english->hungarian and it's pretty hilarious, because hungarian version sound so german that even I can't understand what it says without the text. :D

  2. comment
    Comment #14373854

    It's interesting how many language wants to be part of the ML family or at least look like an ML language. Kotlin has a really nice and simple syntax compared to Scala, which has w…

  3. comment
    Comment #14123306

    I agree that Ocaml is just extremely well suited for making new programig languages. If you are interested in Ocaml+programming languages check out the plzoo: http://plzoo.andrej.c…

  4. comment
    Comment #12979808

    If you want better type information for Python, you could use the new typing hints and the typing module( https://docs.python.org/3/library/typing.html ). You could also use mypy( …

  5. comment
    Comment #12211383

    I was laughing out loud, when I saw that it was based on node. They want to build a secure and fast browser and they use JS to accomplish it.

  6. comment
    Comment #12004785

    You are right, I didn't think the example through. You are right, you can use tests to prove a function if - the function has very limited arguments and - the function is pure or d…

  7. comment
    Comment #12004455

    Well it's possible, but how many developer would rather make a new type for using the first ten integer instead of just using int? I think random testing is a good way to get almos…

  8. comment
    Comment #12004080

    I don't despair, because I know that to prove correctness of a program you need to use math. For example proof assistants(like Coq, Agda, Idris, hol) are capable of proving correct…

  9. comment
    Comment #12003847

    No, I literally mean that you can't prove correctness with tests, because you would need a lot of test cases to prove the simplest function. For example: int addOne(int input) func…

  10. comment
    Comment #12003586

    I have to nitpick. 2) You can't prove correctness with tests. You can only state that it ran correctly for that test case(s).

  11. comment
    Comment #9281634

    I used Jerry at work and it's really one fine HTML parser. I like it better than JSoup, although it works a little bit weirder. :D

  12. comment
    Comment #8987710

    But waiting is non-blocking right? It means that we can just make one isolate's role to wait for all other isolates to complete. For me the bad part of "red" functions is that test…

  13. comment
    Comment #8986181

    What about isolates in Dart? I mean isolates are isolated processes, which also can be a thread and they also can communicate with each other.

  14. comment
    Comment #8823469

    Nice article, although I couldn't really understand some of the examples which had template in it.

  15. story
    Ask HN: Do you consider reflection harmful?

    For me reflection is kind of like a magic trick, because it can hide how the program flows. Kind of like the hat-trick, where the input is the empty hat and the output is the bunny…

  16. comment
    Comment #8659202

    Your post. :D Actually Eloquent Javascript and sometimes Programming -- Principles and Practice Using C++. I found the C++ book a little bit boring and maybe i wont read it trough.…

  17. comment
    Comment #8604227

    I mostly use Brackets in my work and it's really good for editing JS files and has a lot of stuff like themes and plugins.

  18. comment
    Comment #8439271

    Which language did you use to make it?

  19. comment
    Comment #8308336

    Great article to make people mad. I liked the metaphors. :D

  20. comment
    Comment #8307114

    https://github.com/StrykerKKD/dartrocket is an open source 2D HTML5 game engine in Dart. I started doing this, because I always liked Dart better than any other programming languag…