Professional game and software developer from Finland.

Lemmy: @Vipsu@lemmy.world

Mastodon: @Vipsu@mastodon.gamedev.place

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

help-circle
  • Vipsu@lemmy.worldtoTechnology@lemmy.world*Permanently Deleted*
    link
    fedilink
    English
    arrow-up
    2
    arrow-down
    1
    ·
    2 months ago

    Well since they were/are hosting Mastodon instance they do seem to have some interest in the fediverse. They do also have official plugins.

    Personally I feel something like this could be the next step for social link aggregation and discussion platforms. Being able to share and discuss on about videos and articles without having to register to dozens or more pages while also having some control over the people you interract with through instances, subscribed communities etc.

    Source media would also be unable to control what can or cannot be discussed. Many youtube videos and news articles for example may block all comments. It would be up to community on how to moderate discussion.


  • Vipsu@lemmy.worldtoTechnology@lemmy.world*Permanently Deleted*
    link
    fedilink
    English
    arrow-up
    96
    arrow-down
    4
    ·
    2 months ago

    Lemmy support would be much more fitting for Mozilla. They could add plugin or lemmy integration to their browser that could show discussions from subscribed communities matching the current url.

    Effectively acting as a “comment section” but for any page. One would only need lemmy account to comment on youtube videos, news articles, blogs etc.





  • The thing is that generative A.I is not really a new thing, secondly the question is not whether the technology will be transformative rather than if the investors can be patient enough to see that.

    When it comes to AGI generative A.I is probably part of it but I would guess we need breakthrough or two from other areas as well which could happen in next 5 years or take a decade or two.


  • Well Reddit should just sue these companies and see if these companies are actually breaking any laws. Holding sizeable chunk of the internet hostage also sounds like something the EU and US might want to look in to as it very much sounds like anti-competitive conduct or market manipulation.

    Also if these companies want to have greater ownership over the content generated by their users they should also be much more liable for the content posted to their sites. I mean when something like the Section 230 was written they probably did not take this in to account. If these companies want to start selling user generated content then they should simply lose the immunity from liability.


  • 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.




  • 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.





  • C# works fine with Godot and with the changes in Godot 4.x its better than ever with Godot.

    Here’s a pretty good blog post comparing the two:

    Personally I dislike using scripting languages as the primary language for any bigger project. The lack of proper static typing commonly causes issues with linting, code-completion, error highlighting and refactoring tools. Lack of namespaces can lead to name clashes with type names and such especially ones you start adding bunch of 3rd party plugins.

    Also using having to include/preload any script files using string references like this: const Rifle = preload("res://player/weapons/rifle.gd") is not just plain bad in my books. Its just plain dirty compared to Namespaces in C# or Packages in Java.

    I do like Python and I use it quite a bit at work to automate things as you can install and import bunch of ready made libraries for almost anything and just write script that is like sub 500 lines and does whatever. But the moment I need to make anything that contains multiple files and some object oriented practices things will get increasingly more annoying very fast.

    Having interfaces is quite nice as well as it allows me to keep my code more loosely coupled. I try to keep my code as portable as possible by keeping much of my code in a separate project that has no dependencies to Godot. This way I can use nUnit in another separate project to do unit tests for the code and just write wrappers and whatever in Godot project. If Godot API changes I generally only need to fix the code in the wrapper classes.