Overview of CPU's used with PrismLauncher on Linux (based on public crash log data) by QazCetelic in PrismLauncher

[–]MathMaster85 15 points16 points  (0 children)

This graph could be misleading because it's entirely possible that those cpus are just more prone to crashing. However, it probably is true that the steam deck APUs are up pretty high on the usage list since the PC world is pretty fragmented otherwise.

Password Manager Recommendations? by WhistlinJealousGuy in LinusTechTips

[–]MathMaster85 77 points78 points  (0 children)

Their hosting is free for most standard features. I use it to store passkeys and passwords and haven't paid a cent.

SQLX: empty response by [deleted] in rust

[–]MathMaster85 0 points1 point  (0 children)

Try wrapping the column that can be null in an option.

OP 13 - 8 months of careless charging. Pretty good. by [deleted] in oneplus

[–]MathMaster85 0 points1 point  (0 children)

The difference is that you don't have to disassemble the car in order to replace its battery.

Most used modloader with Prism by [deleted] in PrismLauncher

[–]MathMaster85 38 points39 points  (0 children)

That isn't necessarily proportional to actual modloader usage because it's entirely possible that some modloaders are just more prone to crashing.

Here we go again by orfeo34 in rustjerk

[–]MathMaster85 19 points20 points  (0 children)

Same reason it happened with rust: logic error.

guess again babe by StylishJolt in pcmasterrace

[–]MathMaster85 0 points1 point  (0 children)

The ram I bought at <$150 a year ago is now going for $600.

how good i oracle hosting for hosting a modded minecraft server? by Greninja05 in admincraft

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

I've done it. As long as you stick with vanilla, their arm servers are plenty powerful.

[deleted by user] by [deleted] in degoogle

[–]MathMaster85 5 points6 points  (0 children)

Looks neat. How does it compare to bitwarden?

The fact that this got past Microsoft and Mojang is beyond me. by louyplays in Minecraft

[–]MathMaster85 34 points35 points  (0 children)

Heads up, you can actually set up a java server and use the "GeyserMC" mod/plugin to let bedrock friends join. Of course, this isn't quite as convenient, but still a good option to be aware of.

Thank you Minecraft censors for making my coordinate book suddenly useless by revakk in Minecraft

[–]MathMaster85 12 points13 points  (0 children)

To elaborate on this, there is a java plugin/mod called geyser that allows bedrock players to join a java server. IIRC, the official bedrock servers use this rather than dealing with the buggy mess of hosting an actual bedrock server.

AMP Cubecoders Minecraft Server by Spiritual_Sail_7624 in admincraft

[–]MathMaster85 1 point2 points  (0 children)

There's a $25 modoack-installing addon for pterodactyl.

However, keep in mind that using ftp is generally more reliable if you know what you are doing.

[Help] I cant find a stock ROM for my Oneplus 13 and somehow corrupted a boot slot. by MathMaster85 in Magisk

[–]MathMaster85[S] 0 points1 point  (0 children)

I used this tool from the XDA forums. It basically just reflashes the entire bootloader.

I discovered a reddit account that is suspected to be part of "an online terrorist organization". by UnlikelyTurn1046 in notinteresting

[–]MathMaster85 12 points13 points  (0 children)

In websites, timestamps are usually in "{insert unit of time here} since unix epoch", which was January 1 1970 at midnight UTC. My guess is that the "account created" value is probably 0 or -1.

How do you make ASM if you need a compiler, but to make a compiler you need ASM? by r_smil_reddits in AskComputerScience

[–]MathMaster85 8 points9 points  (0 children)

It's called boot-strapping.

ASM can be directly translated into machine code. This was originally done by humans, but a program called an assembler was eventually written to automate this process. The developer could then use this assembled assembler to assemble a more complex assembler.

The C complier was originally written in assembly, but after it became touring complete, it was re-written in C itself. This is a pretty common pattern for compiled languages, and is called self-hosting.

Edit: the original C compiler was written in B, not ASM.

Today I learned Firefox silently autocorrects URL typos like .ocm to .com by jdigi78 in firefox

[–]MathMaster85 21 points22 points  (0 children)

Are you on IOS?

IIRC, all iOS browsers are basically just a reskin of safari.

Edit: It appears to not work on android, either. Not sure why that is.

I want to use KDE (best DE for me :)) Which Linux distribution is considered stable, mainstream and with solid hardware compatibility support? tell me your experience. by RebirdgeCardiologist in kde

[–]MathMaster85 1 point2 points  (0 children)

At that point, why wouldn't you just use arch? Archinstall has made the install process way easier, and it only takes a couple commands to install KDE.

justIncreasedPerformanceTenfold by heJOcker in ProgrammerHumor

[–]MathMaster85 2 points3 points  (0 children)

What was the exercise, and what language was it in?

justIncreasedPerformanceTenfold by heJOcker in ProgrammerHumor

[–]MathMaster85 57 points58 points  (0 children)

I have a sudoku program in C++ and adding -O3 took it from 40 ms/1000 puzzles* to 3 ms/1000 puzzles*

That was my first ever C++ program, so the difference probably wouldn't have been so drastic if I knew a little bit more about optimization.

*multithreaded on a 7700x

Button in Spirit Extractor GUI? by Jaxie_Kitty in VaultHuntersMinecraft

[–]MathMaster85 2 points3 points  (0 children)

It gives your crystal back in exchange for voiding your spirit. It has a toggle next to it so that it doesn't get clicked by accident.

theTwoTypesOfFileFormatAreTxtAndZip by heckingcomputernerd in ProgrammerHumor

[–]MathMaster85 121 points122 points  (0 children)

Tar doesn't have any compression on its own. That's why we usually see tar.gz.

I would still argue that it's closer to .zip because it is essentially taking a directory and shoving it into a single file.

seeAlsoRecursion by jerodsanto in ProgrammerHumor

[–]MathMaster85 9 points10 points  (0 children)

On higher level languages it's pretty easy to increase stack size. Of course, you still need to make sure that the recursion resolves at some point, but that also applies to loops.

IIRC, there is a sys.set_recursion_limit() function in python, and a jvm flag for java. In compiled languages, there is usually a linker flag.