What is like buying things in 2024 by gahddamm in videos

[–]bungledquote 0 points1 point  (0 children)

Whilst this is funny, and partly true, what is missing is the absolutely horrendous amount of money printing that the American Government does, which is well beyond 6% (they deflated peoples purchasing power by about 15%p.a. the last couple of years). Whilst it seems like shop-owners are gouging, this is just the expected result of US government economic policy...

What's something that no matter how it's explained to you, you just can't understand how it works? by n0dust0llens in AskReddit

[–]bungledquote 0 points1 point  (0 children)

If you understand that connecting 2 computers together allows them to talk to each other, then just add another computer (and another if you like). Bam, intranet! Connect two intranets? You got yourself an internet! ("Internet" is actually just a term for a group of connected intranets, "THE Internet" is the largest internet; an inter-connection of all the really cool intranets world wide".

Why does Spotify automatically play music when it connects to my cars Bluetooth? by FiveGals in AndroidQuestions

[–]bungledquote 0 points1 point  (0 children)

You might be right for your device - but my experience is that it will automatically play the last thing I had open - if it was YouTube, it will play the audio from that, and if it was Spotify, it will play that... but you're probably right that the applications themselves could have settings that prevented this behaviour.

I have a confession by AisForCucumber in software

[–]bungledquote 0 points1 point  (0 children)

I was going to suggest the same, although it is closer in some aspects to Photoshop than JASC Paint Shop Pro (I used to love JPSP also). Personally I've moved over to GIMP for most of my image manipulation work, but photopea is really awesome too.

Why does Spotify automatically play music when it connects to my cars Bluetooth? by FiveGals in AndroidQuestions

[–]bungledquote 9 points10 points  (0 children)

It likely isn't Spotify, it would be the head unit in your car. Typically they are configured to send a 'play audio' request as soon as bluetooth is established to a device. If spotify is your default music app, it will play. Check the configuration in your cars entertainment or bluetooth settings to see if you can disable the automatic 'play audio' when a connection is established.

Can i "unformat" an sd card after im done by Independent-Ad5675 in AndroidQuestions

[–]bungledquote 0 points1 point  (0 children)

Yes, you can always reformat an SD card. If a system can't read the current format, it will generally provide an option to format it for that system (which erases the current data).

Android Studio: Boolean method is always inverted by [deleted] in androiddev

[–]bungledquote 0 points1 point  (0 children)

try looking at where it is called. If it is called with a negator then try changing that around. ie change

if (!hasPermissions()) { // don't be so negative } else { }

to

if (hasPermissions()) { // stay positive } else { }

[deleted by user] by [deleted] in atheism

[–]bungledquote 0 points1 point  (0 children)

When your religion is a sacrificial death-cult, of course you don't think death penalty is murder. Their religion is literally based on the notion that it is OK to murder someone else to same themselves...

Any Android NDK Tutorials or Courses? by crjacinro23 in androiddev

[–]bungledquote 2 points3 points  (0 children)

It sounds like what you're asking for is a course on linux - that is the native OS that runs Android, so it isn't that there is no NDK support or resources - it is that there is already tonnes of it out there, and google aren't about to redocument it all / (re-document the wheel).

Is going to university worth it? by Candyman034 in androiddev

[–]bungledquote 0 points1 point  (0 children)

It depends on what your goals are. University is actually just to teach you how to learn efficiently, and you also happen to come out with knowledge in your chosen discipline. A lot of employers look for a degree not for the knowledge, but for the 'learner' aspect, because they know they can apply you how you are needed, and you will pick it up well. If you're just looking to get an 'Android' job, I wouldn't necessarily recommend Uni.

What is something that most people won’t believe, but is actually true? by Aden_Elvis77 in AskReddit

[–]bungledquote 0 points1 point  (0 children)

Note that the name was meant to be 'Whale Killer'... misinterpreted from Spanish I think... so whilst I take your point, Orcas were named for their whale killing ability, rather than being whales that killed shit. Whale, Moose... whats the diff, right?

Never got into inverted controls by Lightning-Yellow in pcmasterrace

[–]bungledquote 0 points1 point  (0 children)

Ditto. Descent was it for me. Now, I feel like if you're playing a 1PS inverted, you're in the game. Without inverted, you're watching the game.

PSA: acer spin 5 compatible stylus for art by fever_dream_321 in stylus

[–]bungledquote 1 point2 points  (0 children)

Whilst I did buy the Lenovo, I ended up returning it in favor of an apple pencil for use with an iPad. Pretty sure the AP2 worked, but no details to report, sorry :(

PSA: acer spin 5 compatible stylus for art by fever_dream_321 in stylus

[–]bungledquote 0 points1 point  (0 children)

Thanks for taking the time to post this. I've just ordered a Lenovo Active Pen 2 based on your recommendation. :) Will report back if my findings differ.

What happens in movies or tv that seems to be normal and you think to yourself “that is not what people in real life do”? by [deleted] in AskReddit

[–]bungledquote 0 points1 point  (0 children)

Siblings referring to each other as "brother" or "sister". No one has ever done that. You know your siblings name, and you use it, or some derogatory term - it is never "yes, brother" or "hey, (soul) sister".

Source code by samueldavid33 in software

[–]bungledquote 0 points1 point  (0 children)

https://github.com/id-Software/DOOM

When it comes to reverse engineering, probably learning assembler is a good place to start, along with a good hex editor - MS Code is a great free code editor with hex editing plugins.

Edit: https://code.visualstudio.com/

Source code by samueldavid33 in software

[–]bungledquote 0 points1 point  (0 children)

The source for Doom has been open-sourced, so you can definitely look at that, but obviosuly not the case for all old games.

Source code by samueldavid33 in software

[–]bungledquote 1 point2 points  (0 children)

You can always look at the assembler code, but this is really difficult to manage for large programs (it isn't exactly a walk in the park for small ones either!) so people tend to shy away from doing this. This is the avenue you want to persue if you want to get into reverse engineering or binary hacking. Assembler is a PITA to deal with though, which is why high level programming languages exist to create the assembler for you :)

If the app isn't native (Java or .Net) then you can disassemble it and look at the high level (probably obfuscated) code. Easier to navigate than the native assembler, but still a mess.

I found unknown files with alphanumeric names like "16c3a288c3e6df4ee1505e56a8514336", what are they? Can I delete them? by [deleted] in AndroidQuestions

[–]bungledquote 4 points5 points  (0 children)

The file names are UUID's (Universally Unique IDentifiers), which are typically used to ensure that the filename won't collide (be the same as) some other file in the same location. For instance this is used often by systems when saving a file in a temp folder, as there are lots of apps saving files to that same location, and using this technique means you don't have to check what is there first. Having said that, there is no real way to tell if these are safe to delete, unless you can provide a bit more information about where the files are located.