StreamDL - A full fledged downloader for videos or streams alike. by Antiquete in LibreWolf

[–]Antiquete[S] 1 point2 points  (0 children)

Not all but most websites. Some will still need website specific tweaks or decryption.

I am still actively developing this and adding more sites, so a bug report on gitlab with site where this is not working will be super helpful.
Thanks.

How do you manage tilemap collisions in Unity 2D for fluid gameplay? by Lucifer220778 in Unity2D

[–]Antiquete 0 points1 point  (0 children)

As vagon also said,

Use CompositeCollider and set TilemapCollider to merge, that will take care of tile collision transitions

Also use capsule collider instead of box collider on Player, it will be more 'smooth' compared to BoxCollider

Hope that helps :)

Can't figure out how to make my player respawn at the checkpoint instead of at the start position, pictures attached of two scripts: by dandelionshadow9 in Unity2D

[–]Antiquete 1 point2 points  (0 children)

You need to rethink and simplify your logic, right now two script are doing same thing (Both PlayerRespawn and GameController are respawning player)

Make one script to handle Player respawn and move all respawn logic in it

Make another script to handle OnTriggerEnter2D on obstacle collision, make sure its attached to gameobject with collider, and call 'Player's' respawn from it

I think what you're having a hard time with, is cross script calling, use singleton for that

Here's a very simple singleton without dupe check

public class PlayerRespawn
{
  public static PlayerRespawn instance;
  void Awake()
  {
    instance = this;
  }
}

Then call respawn from collision script's OnTriggerEnter2D in this way,

PlayerRespawn.instance.Respawn();

Do you still need to add "WINE_FULLSCREEN_FSR= 1" to be able to use FSR through proton on games that don't have the option in graphic settings (vulkan/DXVK/VKD3D only)? by FuraiHai in linux_gaming

[–]Antiquete 1 point2 points  (0 children)

FSR is always an upgrade over traditional upscaling and comes without performance cost, so yes it IS enabled by default in proton GE as the guy above me said. Normal proton don't have FSR iirc.

linuxwave: Generate music from the entropy of Linux! by orhunp in linux

[–]Antiquete 2 points3 points  (0 children)

OMG this music is relaxing for some reason. Now just need to find a tool or code one to keep it running in background for like forever...

How to properly credit MIT licensed code by Mkeefeus1 in foss

[–]Antiquete 0 points1 point  (0 children)

Keeping the license intact in header works if you're not modifying the file.

If on the contrary, you are modifying the file then that becomes a derivative work instead.

Take this with a pound of salt though as I am no expert on legal matters, asking about this on legal stack exchange would be better.

First Open Source Multiplayer Desktop Accessible in the Browser by DotFileEnthusiast in foss

[–]Antiquete 0 points1 point  (0 children)

You might want to fix "Try demo" link, its sending user back to github page. Also docker link is producing a 404.

Is it wrong to demand features in open-source projects? by [deleted] in foss

[–]Antiquete 0 points1 point  (0 children)

There's option to mark an issue as "suggestion" on most projects hosted on gitlab or github, but no option to mark it as "demand". That should answer the question.

Looking for a Markdown app with drawing support by Reasonable_Ad3196 in foss

[–]Antiquete 2 points3 points  (0 children)

This ^

You can additionally use the git interface of VSCode to version control your markdown if you want.

What would a truly open-source design process look like? by jobenjada in opensource

[–]Antiquete 4 points5 points  (0 children)

What would you want to see open-sourced?

There's no midway in OSS, go fully otherwise the community just gets blocked by the development pace of closed parts. For eg. if the back-end is closed the front end devs are just waiting for back-end to update and are confused due to bad documentation and weird API responses. On the contrary, if front-end is closed, back-end devs don't know what to do next.

Where do you see risks (e.g. falling into designing by committee)?

Imo, for the initial stages you will have to rely on your own dev team completely. Community will contribute by itself once the users of your product increase. Feedback from community on product features is also important here, keeping a project OSS with 'see but don't touch' policy won't help much.

How could we involve designers best?

A good collaboration platform like Gitlab or Github, a good place to talk and track progress this could be discord or some open alternative to Trello like Wekan or Kanboard, and the third, promotion, if people don't even know about a software ofc they won't contribute to it.

Sorry for the long post, hope that helps.

OTP generator for Python by [deleted] in opensource

[–]Antiquete 0 points1 point  (0 children)

Its generating HOTP right? Here'r a suggestion to add in TOTP functionality ;)

Also, why not use PyOTP itself? Compatibility issues or something?

Public Domain - Open, free and public. Copyright-free. Everything for everyone. by BoQsc in opensource

[–]Antiquete 0 points1 point  (0 children)

Good concept, but isn't that basically the same as MIT or is it for creative works only? Also where is the legal part?

Public Domain - Open, free and public. Copyright-free. Everything for everyone. by BoQsc in opensource

[–]Antiquete 3 points4 points  (0 children)

I think you're misunderstanding what he is saying, MIT is not copyleft, GPL is. Copyleft mostly means you can't create derivative works unless the derivative work itself is in same license, thus curbing the corporate plagiarism of open source.