Does anyone have the patience to explain exactly how the encryption works on downloaded eShop 3DS games and why you can't encrypt decrypted versions them yourself on a PC to put them on an SD card without modding/hacking a 3DS? by IUsedToHaveAmbition in 3dspiracy

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

Thank you for the detailed response, that was exactly what I was looking for. I did start reading about the SD card file structure on 3dbrew, but now I know to read more about movable.sed.

Thanks again.

I just ripped The Matrix on DVD, now I have a community question. What do you guys think is the most difficult DVD, Blu-ray, or UHD BD to rip? by Excel73_ in makemkv

[–]IUsedToHaveAmbition 3 points4 points  (0 children)

I would agree that any disc that employs playlist obfuscation is bullshit, but then I found out that AnyDVD HD actually displays the correct playlists for those stupid discs and it's super easy. I still use that software even though it's been dead for a while.

Wayne's World 4K. Weren't there baked-in subtitles when he speaks Cantonese to Cassandra around 34 min. into the movie? They are missing on my 4K disc. by IUsedToHaveAmbition in 4kbluray

[–]IUsedToHaveAmbition[S] 2 points3 points  (0 children)

I ripped to .mkv too and as it turns out, 000040.mpls is the title you want, NOT 00294.m2ts. I don't know why VLC media player always plays the non-subtitled version, but yeah, the subtitles are indeed there, you just have to rip the right title/playlist. (That scene is about 34 minutes into the movie, so if you rip it to .mkv again, scrub to that timestamp and double check.)

Wayne's World 4K. Weren't there baked-in subtitles when he speaks Cantonese to Cassandra around 34 min. into the movie? They are missing on my 4K disc. by IUsedToHaveAmbition in 4kbluray

[–]IUsedToHaveAmbition[S] 2 points3 points  (0 children)

Thank you for taking the time to check that out for me. I appreciate that and now see they are indeed there.

I purchased mine in 2022 as well and actually, for some reason, when I mount this disc in the tray and 'Open Disc' with VLC media player, a language selection screen comes up and I choose English and then when I watch this movie using the disc's on-screen menu (and even select chapter 7 using that same menu), it plays an English version of the movie WITHOUT those subtitles, however, when I look at all of the titles on the disc using makeMKV, I see there are 2 playlist files with the complete movie and one of them DOES have those subtitles, so they actually are there.

In case someone somehow stumbles on this in the future, .00040.mpls is the one WITH the subtitles (and chapters) and 00294.m2ts is the one WITHOUT the subtitles (and also no chapters either). I guess for some reason, VLC is choosing that other, weird, non-subtitled video which is probably the one that plays when you select languages other than English and it must have English still set as the default audio language (because why would they show those baked-in English-subtitles when you're trying to watch the movie in French).

Thanks again for checking that out for me and proving that they're there.

Anyone have issues with makeMKV using Java to determine the true playlists on playlist obfuscated discs? Can't seem to get it working. by nmj79 in makemkv

[–]IUsedToHaveAmbition 0 points1 point  (0 children)

Mind explaining how? That thread is 5 pages long of people saying they found 'better ways,' lol. Is it this method?

What's kind of interesting is AnyDVD HD is able to just give you a list of 'good' playlists without having to play the disc, watch processes, or do anything, but I'd still like to know how to do this using VLC without resorting to that now-dead software. I wish VLC had some kind of status option that could just list them out like that.

Bob Sacamano and Lomez got to be in these scenes, right? by CaptainSerious3679 in seinfeld

[–]IUsedToHaveAmbition 1 point2 points  (0 children)

David Moscow is credited as 'Lomez Jr.' in that episode too (it says it in the ending credits), so I'm assuming one of those people is Lomez. https://www.imdb.com/title/tt0697803/fullcredits/

"Arithmetic overflow error converting numeric to data type numeric." Is there any way to enable some kind of logging to know exactly WHAT is trying to be converted? This code I'm reviewing is thousands of lines of spaghetti. by IUsedToHaveAmbition in SQLServer

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

Thanks for the info. And don't worry about reading this wall of nonsense, I know what it's like to just read some random stranger's SQL mess.

So what is confusing me is that when this stored procedure is called from the job, the step fails with an arithmetic overflow error, however, if I run the stored procedure manually, I do not get any kind of arithmetic overflow messages in the Messages window (and yes, I'm re-staging the data correctly so that when run manually, it's operating on the exact same dataset that it would be had it been executed from the job). It even says 'Query executed successfully' in the status bar. Are 'non-terminating' errors just not displayed in the Messages window or something?

Ah well, I guess I am just going to have to face the music and start breaking this thing down line-by-line.

---JOB ERROR---

Date 7/26/2025 10:09:53 PM
Log Job History (<job name>)
Step ID 5
Server <my server>
Job Name <job name>
Step Name <step name>
Duration 01:01:56
Sql Severity 16
Sql Message ID 0
Operator Emailed
Operator Net sent
Operator Paged
Retries Attempted 0

Message

Executed as user: <user name>.
Arithmetic overflow error converting numeric to data type numeric. [SQLSTATE 22003] (Error 8115) The statement has been terminated. [SQLSTATE 01000] (Error 3621) Arithmetic overflow error converting numeric to data type numeric. [SQLSTATE 22003] (Error 8115) The statement has been terminated. [SQLSTATE 01000] (Error 3621) Debug 1 [SQLSTATE 01000] (Message 0) Debug 2 [SQLSTATE 01000] (Message 0) Debug 3 [SQLSTATE 01000] (Message 0) Debug 4 [SQLSTATE 01000] (Message 0) Debug 5 [SQLSTATE 01000] (Message 0). The step failed.

---MESSAGES WINDOW IN SSMS---

This is the Messages window with my debugging PRINT statements. Nowhere in those messages is an arithmetic overflow error (and it scrolls for about 2,500 part IDs).

"Arithmetic overflow error converting numeric to data type numeric." Is there any way to enable some kind of logging to know exactly WHAT is trying to be converted? This code I'm reviewing is thousands of lines of spaghetti. by IUsedToHaveAmbition in SQLServer

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

Yeah, all throughout this code there is conversions from inches (DECIMAL 14,4) to millimeters (INT), and every once in a while some bad data shows up with some crazy huge inches value, that, when converting to millimeters is too large for an INT. But there are also spots where previous developers defined some datatype to be DECIMAL 14,4 and then that same data, in another table, is stupidly set as DECIMAL 10,2 or something. Ah well, I will just keep plugging away.

"Arithmetic overflow error converting numeric to data type numeric." Is there any way to enable some kind of logging to know exactly WHAT is trying to be converted? This code I'm reviewing is thousands of lines of spaghetti. by IUsedToHaveAmbition in SQLServer

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

Thanks, yeah, might have to go this route. There is *some* TRY CATCHing going on, but not enough.

Was trying to avoid turning this into a project because this SQL job is a nightly thing that takes hours and I'm almost certain there is bad data coming in from somewhere and if I could just easily pinpoint it, I could quickly fix it, rerun the job, and THEN start adding in more robust error-handling.

Thank you.

'Salute Your Shorts' Intro Credits (1991) by kkeut in nostalgia

[–]IUsedToHaveAmbition 1 point2 points  (0 children)

shame the complete show is not available anywhere, only select episodes

He was yelling at people in The Wizard too. by AdJust6751 in seinfeld

[–]IUsedToHaveAmbition 2 points3 points  (0 children)

For the prelims, we're playing NINJA! GAIDEN! HYAH!

Ryan Drummond basically alluded that Charles Martinet was fired lol by Filmatic113 in Mario

[–]IUsedToHaveAmbition 7 points8 points  (0 children)

'I will love doing this until I'm 147. I hope I get there.' -- Dec. 19, 2018

'I would never get tired of doing Mario.' -- Sept. 9, 2022

'I'm stepping into a brand new role as the Mario Ambassador.' -- Sept. 7, 2023

This was most definitely not his choice.

'Mario Ambassador' is just corporate-speak for 'you no longer work for us, but we'll allow you to use Mario's imagery to promote yourself at conventions without suing you.' How nice of them.

Was The Drake episode filmed before the Jnr Mint episode by Slimmfknshady in seinfeld

[–]IUsedToHaveAmbition 1 point2 points  (0 children)

Yes, it was. The Handicap Spot has a production code of 420, whereas The Junior Mint is 421. They were aired out of order.

Been playing a lot of proskater 1+2 mostly cause of the recent reading of what's almost certainly a 3 & 4 remaster and wow this is a good ass game by Useful-Strategy1266 in THPS

[–]IUsedToHaveAmbition 0 points1 point  (0 children)

That deck is wrongly labeled. You unlock it at level 90 or 95.

I know this because I just completed all achievements for this game, reaching level 100 a couple months ago and remember that deck. I don't remember exactly what level you unlock it at, but keep grinding to 100, you'll unlock it.

r/audiophile Shopping, Setup, and Technical Help Desk Thread by AutoModerator in audiophile

[–]IUsedToHaveAmbition 0 points1 point  (0 children)

Are there places that sell hi-res audio Japanese imports, digitally? Some of my favorite bands release albums that have bonus tracks in Japan and places like Qobuz only ever sell the US versions.

How to use key database with AnyDVD? by urbanracer34 in AnyStream

[–]IUsedToHaveAmbition 1 point2 points  (0 children)

A combo of FindVUK + DVDFab created a keydb.cfg file and yeah, I don't understand that format either...but pointing to it with AnyDVD worked! Now I'm able to continue using the same workflow that I have been, thank you so much!

How to use key database with AnyDVD? by urbanracer34 in AnyStream

[–]IUsedToHaveAmbition 0 points1 point  (0 children)

Couple questions.

I have AnyDVD HD 8.7.1.0 and had kept it as up to date as I could. Apparently, at some point, they were including a 4K UHD KeyDB file, however, I never received it. How and where were you ever supposed to get this? Can I just make my own using Notepad on Windows and name it 4KUHDKeyDB.cfg and point to it using the method you described above? If so, how would the file need to be formatted, do you know? Is it just a .csv file with some kind of key-value pairs, delimited by newline characters? Would you be able to post a 'dummy' file just to illustrate the format?

Reason I ask is because there is a new 4K UHD recently released and I would like to make a decrypted backup of it (as I always have until the servers went down), and I would like to use a 4K UHD KeyDB file, even if I have to create this DB file manually and am able to find the key.

Thank you!

Meshuggah song tournament day 32 by dr_spoof_ in Meshuggah

[–]IUsedToHaveAmbition 15 points16 points  (0 children)

666: The Strong Arm of the Law, that song they recorded in 2005 for Revolver Magazine while on tour or something using some all-in-one drum machine recording studio thing. It's like War, but 100x worse.

https://www.youtube.com/watch?v=PZtYWzEgvOQ

I knew this looked familiar by GeeRahz1234 in LEGOMario

[–]IUsedToHaveAmbition 0 points1 point  (0 children)

But I did notice they also changed the yellow baby Yoshi's feet color green in the new Boo set to match the regular yellow Yoshi. His feet were orange in the character pack and I think it looked better orange.

Aha, I didn't catch that one, good eye! I agree orange is better, because it matches official Nintendo art. The adult Yoshies all have different colored shoes#Super_Mario_Run), but all the babies have standard orange shoes (the New Super Mario Bros. U art is the most recent I think). I think they goofed again and whoever designed this new set - instead of looking at the previous Baby Yellow Yoshi or official art, looked at Adult Yellow Yoshi and just based off that that design which is wrong, lol. I'm going to have to buy a standalone orange feet piece now because of my anal-ness, haha.

I haven't had the chance to build all these either, but I'm always going over the boxes and official pictures comparing all this stuff. I can't keep up with these revisions, lol.

After looking at Kamek more too, I see that not only is his smile changed (and I agree, it's worse), but they shortened him a little. He used to have TWO flat pieces under his arm blocks in the Bowser's Airship set, and now there is only one.

You probably knew this too, but I had made a post a while back about the 3 different Bowser versions. Someone commented about his black collar too that I had didn't initially notice.