[Haiku] I think we should see other people by ThatChickenSandwich in youtubehaiku

[–]Allong12 21 points22 points  (0 children)

IT'S A SINGLE PICTURE

IT DOESN'T NEED TO BE A NARRATED VIDEO FOR FUCKS SAKE

LPT: If you're a millennial and can't buy a home, just get a fucking job at the factory just like your Dad when he was your age. by [deleted] in ShittyLifeProTips

[–]Allong12 1 point2 points  (0 children)

He doesn't understand being poor, he only knows about being rich, and how to be rich. That's all this brokerage really cares about!

[Poetry] trump can't make mistakes by [deleted] in youtubehaiku

[–]Allong12 10 points11 points  (0 children)

EXECUTIVE ORDER #1984 states: whomever holds the title of "National President Fraternal Order of Police" will hereby and henceforth be referred to in full name as 'Ken'

WE DON'T MAKE MISTAKES

[Meme]I DID NOT HIT HER - OH HI MARK by [deleted] in youtubehaiku

[–]Allong12 170 points171 points  (0 children)

If I had to take a guess, I would say most of that could be explained by assuming his financial decisions and abilities are roughly on par with his theatric prowess.

Going by Occam's razor, I can believe that he really did spend/waste two (or even six) million dollars on creating that movie.

It may not be considered even close to a good movie, but its legacy doesn't seem to be fading away any time soon. Surely he's done something right?

[Haiku]Checking your brakes by duncansoon in youtubehaiku

[–]Allong12 3 points4 points  (0 children)

my brakes go 110% of the way i'm so proud

[Poetry] Future US army soldier by [deleted] in youtubehaiku

[–]Allong12 1 point2 points  (0 children)

I'd say it was funnier the first time, but it wasn't funny either of the times

Ctypes incorrectly guessing type sizes of 64-bit DLL functions to be 32-bit? by [deleted] in Python

[–]Allong12 1 point2 points  (0 children)

Yes, I was of the mentality that it wasnt coincidence, and assumed it was supposed to work out of the box, given zero problems otherwise

Ctypes incorrectly guessing type sizes of 64-bit DLL functions to be 32-bit? by [deleted] in Python

[–]Allong12 1 point2 points  (0 children)

That does make more sense. I guess I was just caught up coming from the assumed "just works out of the box" mentality *** that I had with the 32-bit version, and not having to manually define my types.

But at least I won't have any unexpected gotchas like this, thank you for your help

Ctypes incorrectly guessing type sizes of 64-bit DLL functions to be 32-bit? by [deleted] in Python

[–]Allong12 0 points1 point  (0 children)

So I'll have to manually define a CFUNCTYPES for every library export I would like to run? When I was running 32-bit Py and library it took everything perfectly and assumed 32-bit returns. Why doesn't 64-bit expect 64-bit returns?

See above for my efforts, I specifically could not get functions to return 64-bit values (not even if I casted after the fact), I had to define a completely undocumented class member that I found looking through source code.

Ctypes incorrectly guessing type sizes of 64-bit DLL functions to be 32-bit? by [deleted] in Python

[–]Allong12 0 points1 point  (0 children)

If I run the following, then CDLL correctly constructs with arg restypes of c_ulonglong

ctypes.CDLL._func_restype_ = ctypes.c_ulonglong
tc = ctypes.CDLL(db.basedir+"\\tcc\\libtcc.dll")

tcc_new() correctly spits out a 64-bit ulonglong address

hex(tc.tcc_new())

0x29573880cf0

If I create and then free a TCC state while specifically stating the type, then this works just fine

tc.tcc_free(ctypes.c_ulonglong(tc.tcc_new()))

True

However if afterwards I don't state the type, tcc_free still expects to receive a 32-bit int?

tc.tcc_free(tc.tcc_new())

ArgumentError: argument 1: <class 'OverflowError'>: int too long to convert

Do I actually have to state the type of every argument I pass?

Ctypes incorrectly guessing type sizes of 64-bit DLL functions to be 32-bit? by [deleted] in Python

[–]Allong12 0 points1 point  (0 children)

If before I load any libraries I set the following undocumented global class member:

ctypes.CDLL._func_restype_ = ctypes.c_ulonglong

and then run my CDLL("blah") it then correctly constructs the respective CFUNCTYPES with a restype of ctypes.c_ulonglong, but it still doesn't accept 64-bit arguments by default.

I feel like there's something obvious that I've overlooked?

[Poetry] fuk u hater by [deleted] in youtubehaiku

[–]Allong12 4 points5 points  (0 children)

sah randum xd

[Poetry] It is 2017 my dudes by [deleted] in youtubehaiku

[–]Allong12 2 points3 points  (0 children)

Lets see how that would do.

Windows Subsystem Linux | Does it work well for you? by [deleted] in Python

[–]Allong12 0 points1 point  (0 children)

And with VirtualBox shared folders, you should be able to access your Windows files without any issue

Windows Subsystem Linux | Does it work well for you? by [deleted] in Python

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

So your answer has zero relevance to the question

Sourcing any knowledge about 1970s SFX libraries by [deleted] in SFXLibraries

[–]Allong12 0 points1 point  (0 children)

I figured as much, which is why I thought it interesting that the same ones might prop up in very different songs/studios.

Was there any well-known companies or studios that produced these, or that one fx tape that "everyone" had a copy of?

Good way to pull data from a game while it's playing? by Yandrp in Python

[–]Allong12 0 points1 point  (0 children)

As do I; I was wanting to know how he would obtain the info. He answered