Members in Shoutbox
None.

Shoutbox Search
Search for:


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.
Pages: < 1 « 2023 2024 2025 2026 20273572 >

[2015-12-31. : 8:17 am]
O)FaRTy1billion[MM] -- B is a list of integers, yes. So B[i] is an integer
[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 -- I've never used that feature 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:15 am]
Vrael -- err not entirely sure there
[2015-12-31. : 8:15 am]
Vrael -- I'd need to double check on a list + a tuple though
[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:14 am]
O)FaRTy1billion[MM] -- So it's just adding B[i] to the end of A, right?
[2015-12-31. : 8:13 am]
Vrael -- lists support concatenation
[2015-12-31. : 8:10 am]
O)FaRTy1billion[MM] -- Unless the + is doing something else
[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] -- Vrael
Vrael 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. : 8:00 am]
Vrael -- but not four**
[2015-12-31. : 8:00 am]
Vrael -- 2:4 = indices 2,3 but not for so length of 2
[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. :P Now I'm done flooding the spambox.
[2015-12-31. : 7:29 am]
O)FaRTy1billion[MM] -- (A and B are both arrays in FaRTy1billion
FaRTy1billion shouted: or A + (B[i],)
)
[2015-12-31. : 7:28 am]
O)FaRTy1billion[MM] -- FaRTy1billion
FaRTy1billion 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 FaRTy1billion
FaRTy1billion shouted: or A + (B[i],)
;o Pretty sure FaRTy1billion
FaRTy1billion 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. : 6:45 am]
O)FaRTy1billion[MM] -- Python is hard to read :\
[2015-12-31. : 6:44 am]
O)FaRTy1billion[MM] -- or A + (B[i],)
[2015-12-31. : 6:43 am]
O)FaRTy1billion[MM] -- also wtf is (A[i],)
[2015-12-31. : 6:42 am]
O)FaRTy1billion[MM] -- in python if I do A = B[2:4], how big is A?
[2015-12-31. : 6:27 am]
Oh_Man -- ayy
[2015-12-31. : 5:41 am]
Moogle -- too large it telling you
[2015-12-31. : 5:40 am]
O)FaRTy1billion[MM] -- My hexeditor seems to not like to open >2gb files :P
[2015-12-31. : 5:40 am]
Moogle -- So no way to edit it around?
[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:37 am]
Moogle -- are you magical elf?
[2015-12-31. : 5:37 am]
Moogle -- ELF files you can read eh
[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:26 am]
Moogle -- building up dust
[2015-12-31. : 5:26 am]
Moogle -- I got ps2 somewhere
[2015-12-31. : 5:24 am]
O)FaRTy1billion[MM] -- I have an emulator that is just called psx
[2015-12-31. : 5:23 am]
Moogle -- how I play my old PSX games now days
[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]
Moogle -- Trying to port it to play on emulation?
[2015-12-31. : 5:21 am]
O)FaRTy1billion[MM] -- let me go get my friend's disc so I can look at it
[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]
Dem0n -- Shadow of the Colossus
[2015-12-31. : 5:20 am]
O)FaRTy1billion[MM] -- also Dem0n
Dem0n 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:18 am]
Moogle -- I'm 33 in july =)
[2015-12-31. : 5:18 am]
O)FaRTy1billion[MM] -- I'm 25 in June
[2015-12-31. : 5:17 am]
Moogle -- Corbo
Corbo 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] -- Corbo
Corbo 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:17 am]
Corbo -- I thought you were two years younger than me.
[2015-12-31. : 5:16 am]
Dem0n -- damnnn nigga old as a dinosaur lmao
[2015-12-31. : 5:16 am]
O)FaRTy1billion[MM] -- You're younger than my sister, barely. :P
[2015-12-31. : 5:16 am]
Moogle -- make me feel old at 32.
[2015-12-31. : 5:15 am]
O)FaRTy1billion[MM] -- Moogle
Moogle 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:15 am]
Moogle -- wait your only in your mid 20s farty?
[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
[2015-12-31. : 5:14 am]
O)FaRTy1billion[MM] -- But otherwise, not really
[2015-12-31. : 5:14 am]
O)FaRTy1billion[MM] -- I extracted some data from SC64 the other day
[2015-12-31. : 5:14 am]
Dem0n -- have you ever extracted files from a console game's rom before
[2015-12-31. : 5:13 am]
Dem0n -- o farty

Pages: < 1 « 2023 2024 2025 2026 20273572 >


Members Online: Moose, MobMob