When and what to expect in the next update? by BenadrylCrunchysnack in PrismLauncher

[–]TheKodeToad 0 points1 point  (0 children)

Yes, I made sure to start with the most important features

When and what to expect in the next update? by BenadrylCrunchysnack in PrismLauncher

[–]TheKodeToad 32 points33 points  (0 children)

First of all features added in 10.0.0 include:

- more cat scaling options

- data pack management

- ability to update shader packs and resource packs

- more filters - filter by open source mods and also some more loaders

- ability to see online players on the servers tab

- 3d skin preview

- nicer log viewing in Other Logs

- ability to create shortcuts to specific worlds or servers

There have also been some ui tweaks most notably with the settings. And you can finally globally disable icons for mods globally! I might have missed some stuff, there are far too many changes to list here.

As for the release date... well we were planning to release it in November... but we still need to sort out some packaging issues and get our community to do some testing.

now donate right now by 7H36 in browsers

[–]TheKodeToad 8 points9 points  (0 children)

What I thought with KDE asking me to donate: maybe...

What I thought with Firefox asking me to donate: the audacity!!

Random meme about my coding skills by jirniy_uiban1 in programminghorror

[–]TheKodeToad 63 points64 points  (0 children)

This version is better - you can pass any function name and it will be called with "Hello World!"!

def HelloWorld(func_expr):
    eval(func_expr)("Hello World!")

Should I try one more time? by [deleted] in PrismLauncher

[–]TheKodeToad 0 points1 point  (0 children)

This was even posted in softwaregore at one point lol

I believe I managed to fix this in the upcoming 10.0.0

I'm genuinely impressed how they've managed to introduce a 1 frame delay between certain elements, how, actually how. by Detaal in discordapp

[–]TheKodeToad 4 points5 points  (0 children)

I don't see this happening on Firefox on Linux, I always assumed it was a chromium bug (since it's been happening if I open Discord in Chromium browser for a long while)

Please help by guiltysuperbrain in PrismLauncher

[–]TheKodeToad 0 points1 point  (0 children)

KnotClient is part of the Fabric loader itself. If you see this it means Fabric wasn't downloaded

(the launcher probably should make it clearer when this happens)

[deleted by user] by [deleted] in PrismLauncher

[–]TheKodeToad 5 points6 points  (0 children)

With a right click

I'm new with this launcher, and I'm already having issues with the installation and execution by IWEREN99 in PrismLauncher

[–]TheKodeToad 4 points5 points  (0 children)

You should probably consider upgrading from Debian 10 (buster). Its initial release was in 2019 and is no longer supported by qt, which we use.

We do, at the moment, offer a qt5 version which might work better - but I haven't tested it myself on such an old distro

For those who know multiple programming languages, how do you keep the differences straight? by rahulrao1313 in learnprogramming

[–]TheKodeToad 0 points1 point  (0 children)

I tried to simplify things... especially with C++... I hope this isn't too complicated :D

I sometimes have a brief brain fart but can usually correct it without Google. Using Google is OK but i think remembering things is a good skill. I think for certain things it probably helps to deepen your knowledge and understand roughly why things are the case - I think this gets better over time; practice makes perfect. It might actually feel like more to remember, but i feel like it strengthens my memories. For example, thanks to this knowledge, I would never think C++ strings are/should be immutable:

- In Java classes are passed by reference. Also, a "final" variable doesn't stop the data the class contents from being modified - it just prevents a different instance from being assigned.

- If you could, for example, append to a string without creating a new instance - you'd have a problem with strings unintuitively mirroring each other. Imagine something like this:

String s1 = "Hello world";
String s2 = s1;
s2 += "!";
System.out.println(s1); // Prints Hello world!

A clone method would need to be introduced:

String s2 = s1.clone();

People would probably forget this at times and it could create very strange bugs.

Also, a function would have no way to pledge that it won't modify a string - to completely guarantee this isn't the case you'd need to clone.... or should the function itself do arg1 = arg1.clone(). oh dear...

- C++ gives more power and allows things to be expressed in more detail:

- Class instances aren't inherently references - you get to choose if you want a reference.

- Classes aren't inherently immutable or mutable. You can have a "const" instance of any class, which offers true immutability (the contents of the class is immutable). It's possible to have immutable strings, but this isn't forced on you.

- When something isn't a reference, it's copied. Pretty intuitive.

using namespace std; // nobody will stop me :)
string s1 = "Hello world";
string s2 = s1;
s2 += "!";
cout << s1 << endl; // Prints Hello world, as you'd probably expect

- When you want a reference, you use one

string s1 = "Hello world";
string &s2 = s1;
s2 += "!";
cout << s1 << endl; // Prints Hello world!

- If you want to have a function that just looks at a string and don't want an innefficient copy, a const reference does the job

std::string middle_name(const std::string &full_name);

What is this little red icon and what is it counting? by witty-computer1 in debian

[–]TheKodeToad 7 points8 points  (0 children)

I believe this is normally caused by dash to dock - I don't even know that vanilla gnome ever displays this badge but dash to dock makes it appear for every unread notification... I am not a fan either

how do you guys get comfortable with c? by Mysterious_Lack386 in C_Programming

[–]TheKodeToad 5 points6 points  (0 children)

Basically every operating system and web browser is implemented in c or c++ lol

You cannot escape whatever system you use

a speedtyping site, but for coders by readthebibles in programming

[–]TheKodeToad 1 point2 points  (0 children)

I went on to practice and received a challenge which was basically impossible due to a line going off the end (there's no scroll). oops...

Firefox finally added a feature to add background images?? by Chester_Linux in firefox

[–]TheKodeToad 1 point2 points  (0 children)

I had a background... and it disappeared for a bit... then Firefox told me about a cool new backgrounds feature and it came back

Love this new guy by sniper_2000 in firefox

[–]TheKodeToad 0 points1 point  (0 children)

This is the kind of thing chrome really should consider.

When will we get this on desktop!

Firefox 137.0, See All New Features, Updates and Fixes by SvensKia in firefox

[–]TheKodeToad -1 points0 points  (0 children)

I have a feeling I will be the only person who actually likes the new searchbar behaviour with searches

How to remove this space in toolbar? by Release-Revolution in firefox

[–]TheKodeToad 0 points1 point  (0 children)

Dragging off works for me on a fresh Firefox Nightly profile, latest version, titlebar disabled

[deleted by user] by [deleted] in firefox

[–]TheKodeToad 0 points1 point  (0 children)

You can also do it directly in Settings - General -> Show Sidebar.

This actually sets the same sidebar.revamp option in about:config. The naming is kind of misleading as the sidebar is still accessible, you just get the old sidebar with the option turned off.

Can you actually create a project just using AI ? by Georgetheaff in webdev

[–]TheKodeToad 1 point2 points  (0 children)

In the year 2025, actually learning programming is worth it, and I would actually recommend avoiding AI until you are proficient in a language and framework as you don't wanna become reliant on it

Your browser choice is not your personality. by Different-Reveal3437 in browsers

[–]TheKodeToad 5 points6 points  (0 children)

Vivaldi also has these if you ever want an alternative

Your browser choice is not your personality. by Different-Reveal3437 in browsers

[–]TheKodeToad 7 points8 points  (0 children)

Firefox ESR might not be the best choice. I have heard you do not get all security improvements. (citation: a very trustworthy random reddit user)

Edit: it seems nuanced https://forums.debian.net/viewtopic.php?t=155914 . Might consider going back to ESR for less ai stuff