|
Members in Shoutbox
None.
Shoutbox Search
Shoutbox Commands
/w [name] > Whisper
/r > Reply to last whisper /me > Marks as action Shoutbox Information
Moderators may delete any and all shouts at will.
|
Global Shoutbox
Please log in to shout.
[2015-12-31. : 8:17 am] Vrael -- it makes a big difference whether you're using a list or an array though[2015-12-31. : 8:16 am] Vrael -- maybe lists support concatenation with tuples since they're both basic python types[2015-12-31. : 8:15 am] Vrael -- I wager that B[i] is something simple like a single integer or float[2015-12-31. : 8:14 am] Vrael -- so if X = [1,2,3] and Y = [4,5,6] you can do X + Y and get [1,2,3,4,5,6][2015-12-31. : 8:10 am] O)FaRTy1billion[MM] -- like A = [1,2,3], A + (B[i],), then it seems to only ever use A[0], A[1], and A[2].[2015-12-31. : 8:09 am] O)FaRTy1billion[MM] -- The code I'm reading doesn't seem to ever actually access that ... and I'm not sure if that is a mistake on the programmers part or what. ;o[2015-12-31. : 8:08 am] O)FaRTy1billion[MM] -- VraelVrael shouted: A + (B[i],) is a redundant expression, (val,) would be a 1-item tuple With A being a list/whatever, I'm figuring it just adds whatever B[i] is to the end of that list.. It's the only thing I'm still sort of questioning[2015-12-31. : 8:07 am] O)FaRTy1billion[MM] -- cool, thanks. So I guess I am reading it correctly, there's just a bunch of stuff I've never seen before (tuples, :s, etc.)[2015-12-31. : 8:06 am] Vrael -- Python is super easy to read btw, unless of course the person who programmed it is a complete doofus[2015-12-31. : 8:05 am] Vrael -- so if A is a list of stuff, say A = [3,4,5] then you do A.append((B,C,D)) you get A = [3,4,5,(B,C,D)][2015-12-31. : 8:04 am] Vrael -- as for A.append((B,C,D)) you're appending a tuple (B,C,D) to whatever A is[2015-12-31. : 8:04 am] Vrael -- A + (B[i],) is a redundant expression, (val,) would be a 1-item tuple[2015-12-31. : 8:03 am] Vrael -- A = B[2:4] binds the name "A" to the memory located at B[2:4], you're not copying the memory located there[2015-12-31. : 8:02 am] Vrael -- (val,) is tuple notation, so curved braces denote a tuple, which is an immutable set of items[2015-12-31. : 8:01 am] Vrael -- unless B has a shape of like (10,10,10) in which case you'd get an array of shape (2,10,10) back[2015-12-31. : 7:40 am] O)FaRTy1billion[MM] -- Cool, it's all lists, arrays, and tuples. ;o For my needs I guess I'm interpreting it correctly, I'm not trying to learn python just read it. Now I'm done flooding the spambox.[2015-12-31. : 7:29 am] O)FaRTy1billion[MM] -- (A and B are both arrays in FaRTy1billionFaRTy1billion shouted: or A + (B[i],) )[2015-12-31. : 7:28 am] O)FaRTy1billion[MM] -- FaRTy1billionFaRTy1billion shouted: in python if I do A = B[2:4], how big is A? Googling tells me 2; [4] is not included. Still don't know about FaRTy1billionFaRTy1billion shouted: or A + (B[i],) ;o Pretty sure FaRTy1billionFaRTy1billion shouted: also if I have A.append((B,C,D)), does that mean A[whatever] = an array containing B,C,D ? I assume that's the case .. is correct.[2015-12-31. : 6:56 am] O)FaRTy1billion[MM] -- also if I have A.append((B,C,D)), does that mean A[whatever] = an array containing B,C,D ? I assume that's the case ..[2015-12-31. : 6:47 am] O)FaRTy1billion[MM] -- I was doing fine until I got to whatever this shit is in arrays[2015-12-31. : 5:39 am] O)FaRTy1billion[MM] -- All I'm finding online is how to extract models, but it doesn't explain the file format ;o[2015-12-31. : 5:30 am] O)FaRTy1billion[MM] -- cool, there are ELF files. I think these are the game's actual code[2015-12-31. : 5:22 am] O)FaRTy1billion[MM] -- put disc in CD drive, run from disc. PS games are so cool[2015-12-31. : 5:22 am] Moogle -- I thought using PS2 disc in cd-rom would work with eumlator no issues[2015-12-31. : 5:22 am] O)FaRTy1billion[MM] -- You can just play it on an emulator, I've done it before[2015-12-31. : 5:21 am] Dem0n -- Some how the antagonist's sound clips are no where online, even though they're fucking badass[2015-12-31. : 5:20 am] O)FaRTy1billion[MM] -- also Dem0nDem0n shouted: I'm trying to extract shit from a PS2 game, and the iso has a bunch of XFF files and then there's a 2.5 gb DAT file which I assume has all the main shit, but I have no idea how to access that what game?[2015-12-31. : 5:17 am] Moogle -- CorboCorbo shouted: I thought you were two years younger than me. who 2 years younger? farty? or I?[2015-12-31. : 5:17 am] O)FaRTy1billion[MM] -- CorboCorbo shouted: I thought you were two years younger than me. I don't know/remember how old you are. ;o[2015-12-31. : 5:17 am] Moogle -- Starcraft was only game I play serious and non-stop for so many year. not found another game like it.[2015-12-31. : 5:15 am] O)FaRTy1billion[MM] -- MoogleMoogle shouted: wait your only in your mid 20s farty? I'm 24[2015-12-31. : 5:15 am] O)FaRTy1billion[MM] -- hex editor is your best bet. Fortunately PS2 isos aren't retarded like cartridge ROMs.[2015-12-31. : 5:14 am] Dem0n -- I'm trying to extract shit from a PS2 game, and the iso has a bunch of XFF files and then there's a 2.5 gb DAT file which I assume has all the main shit, but I have no idea how to access that |