Professional game and software developer from Finland.

Lemmy: @Vipsu@lemmy.world

Mastodon: @Vipsu@mastodon.gamedev.place

  • 0 Posts
  • 10 Comments
Joined 1 year ago
cake
Cake day: June 28th, 2023

help-circle
  • With hundreds of games, updates, dlc, mods, merchandice, videos and streams appearing each passing day gaming communities would get flooded by spam if no such rules would be in place. If you want to advertise on a commercial platform then you should do so through official channels.

    Generally lemmy and reddit communities favor more organic content like for example solo game developer could ask for a feedback on piece of art of game mechanic they’ve implemented to their game in gamedev related communities. They could also participate to community events like screenshots saturday, share your progress friday or anything similar.

    Now /r/gaming and /r/pcgaming are probably huge communities that are mostly about discussing gaming news, articles and just general topics around gaming. These communities are probably hard to moderate as is and allowing people to self promote there could lead to flood of indie or mobile game ads, streamers and youtubers trying to get more views for their vods or streams, etc which could really annoy the community.


  • Hoarder would be a more fitting term but yeah one can amass quite a collection of games fairly cheap with Humble Bundles and sorts. Back in the day Humble bundle even had “competitor” or two providing different sets of games.

    Haven’t bothered with Epic Games launcher myself though got more than enough games on steam and gog that haven’t even tried yet.


  • It’s sort of minimalistic / lightweight alternative for IntellJ. Red Hat is working on the extension(s) which have worked fine for me at least for the past few years and it gets updates regularly.

    I use VSCode for C++, C#, Java, Python and for things like docker-files, html etc. IntelJ is fine but a bit bloated in comparison with its menus, sub-menus, sub-sub-menus and built in unnecessary extra features for those just looking for code editor.

    VSCode workflow with Java is mainly using it to write code, run tests, configure maven/gradle/docker/etc rest is more or less using CLI and Command palette.







  • Yeah, this quote pretty much sums it up

    C# made the opposite choice – to update their VM, and invalidate their existing libraries and all the user code that dependend on it. They could do this at the time because there was comparatively little C# code in the world; Java didn’t have this option at the time.

    Which tells me that it was mostly about maintaing backwards compatibility with legacy code. Having used C# and Java for years the effect of type erasure seems to be bunch of silly @SuppressWarnings("unchecked") annotations in code and classes that mostly just exist to encapsulate a list of objects. With C# I create my own generics all the time but with Java I tend to avoid doing that like a plague.

    I do however have to admit that I skimmed through most of the article because it’s just too difficult to read with its complex vocabulary (full of words like pragmatic, ubiquitous, fictions, heterogeneous, etc) combined with a lot of technical jargon about lower level languages. Guess reading and actually really understanding the article would be easier and less time consuming if I was native english speaker but at its current form the article is far from being accessible or succesful explaining why one should love type-erasure.