Live data from Hacker News

Viewing profile — DisownedWheat

DisownedWheat

HN member
Joined
Wed, Aug 09, 2017, 11:17 PM UTC
HN karma
32
Public activity
22 items

About DisownedWheat

No profile information was provided.

Recent public activity

  1. comment
    Comment #35532395

    Godot does have a low CPU mode that limits screen refreshes until something is interacted with on screen or animated, it's what the actual editor uses. I'm not sure whether it work…

  2. comment
    Comment #26899409

    Ahh I see what you're saying now. Yes, you can: https://docs.godotengine.org/en/stable/tutorials/plugins/gdn... The tutorial starts with C but there is a C++ one as well. Again tho…

  3. comment
    Comment #26898979

    I'm still not following sorry? All builds (except for server/headless build which is Linux only) are available for Linux, macos and Windows as binaries. This includes the standard …

  4. comment
    Comment #26898547

    I'm not sure what you mean. The engine is written in C++. There is the standard build which comes with GDScript and the Mono build which also has C# support. Both support dynamic l…

  5. comment
    Comment #22808320

    So something like LÖVE2D with wrapped Win32 APIs? That would be super cool, I wonder if anyone has done something like that.

  6. comment
    Comment #22187943

    If having to click on the logo to go to the home page sends you into such an apoplectic rage then I don't know what to tell you. If you look at, for instance, the .NET Core 3.0 rel…

  7. comment
    Comment #22187065

    It's not coded in C#, it's written in C++. Release notes for a new version are not the place to list all the features of the engine. You can literally click on the home page and se…

  8. comment
    Comment #18860165

    I made one that consumed the HN API a little while ago (maybe a year?) using the fphttpclient library bundled with Lazarus. It was pretty simple to use and all the documentation is…

  9. comment
    Comment #17730745

    Clojure For The Brave And True is where I learnt Clojure and I can personally recommend it as a good read. It does start out slowly but the FP concepts can be a little tricky to gr…

  10. comment
    Comment #17487673

    Aren't Erlang variables immutable by default? I find that makes a huge difference to the reliability of a program.

  11. comment
    Comment #16964871

    Honestly the Tour of Go on their site is pretty good for just diving into it. You can probably just skim the first few chapters just to get familiar with the syntax. https://tour.g…

  12. comment
    Comment #16790945

    > It's not facebook's fault people are uninterested and uneducated. Every company has one responsibility and one responsibility only - to make money for investors. I 100% disagree …

  13. comment
    Comment #16752547

    Well it sort of depends on what exactly you mean. Ease of use? Godot is probably the best in class for that in my opinion, but if you prefer text interfaces over GUIs then Love2D i…

  14. comment
    Comment #16417944

    I'm always impressed by your ability to keep cool when someone seems to be making a personal attack (though I'd like to assume they aren't). I think Elm/Evan is lucky to have you a…

  15. comment
    Comment #16269286

    > Is the iOS support good? Well it's officially supported so I'd imagine so.

  16. comment
    Comment #16269264

    From what I recall they decided against full Python support in favour of a C "API" that people can bind their favourite languages to. There's already Python, Nim, and D as well as …

  17. comment
    Comment #15812349

    Have you run the chicken compiler with the -deploy flag? It doesn't create a statically linked binary but does dynamically link all the libraries with the binary in a single folder…

  18. comment
    Comment #15804445

    Then just use JQuery? Nobody is stopping you. Those modern frameworks are excellent if you're making anything bigger than a blog.

  19. comment
    Comment #15308755

    Well if my experience with py2exe is anything to go by raco distribute actually works 100% of the time so that's a pretty enormous improvement. Though I must admit my experience wi…

  20. comment
    Comment #15307953

    Well you can deploy the executable file to a server if it has the Racket runtime just like Python, Ruby etc. But there is a tool called `raco distribute` that will bundle the execu…

  21. comment
    Comment #14975899

    Depends on what you define as small but if you remove the GDB debugging information you can trim down your binaries by a huge amount. My last project was 3.4MB.

  22. comment
    Comment #14974725

    I'm no expert by any means, but I just opened Lazarus to look at the DB drivers and they seem pretty respectable. The MySQL driver only goes up to 5.6 but works well in my experien…