ZILtoid1991

joined 1 year ago
[–] ZILtoid1991@kbin.social 3 points 7 months ago (6 children)

Food at home: something way worse in every possible way.

[–] ZILtoid1991@kbin.social 8 points 7 months ago (1 children)

Reminder that Misato could be considered a groomer. Not as bad as Makima from Chainsaw Man, but still...

[–] ZILtoid1991@kbin.social 4 points 7 months ago (1 children)

OTBS is the only way!

[–] ZILtoid1991@kbin.social 7 points 7 months ago

Depends on the ancap. Some are actually progressive capitalists, like the Democrats but on steroids. Others are just nazis that like to jerk off to loli hentai and playing video games, but don't want the negative association with the authoritarian right, be it your grandpa conservatives or some caricature of nazis (read: a lot of people think nazi equals with people wanting to do evil things for the sake of evil).

[–] ZILtoid1991@kbin.social 35 points 7 months ago

Thank Republicans and their "Biological sex protection act". Now they forced trans men to go to women's dressing rooms, but they keep instigating that those trans men are actually "perverts"...

[–] ZILtoid1991@kbin.social 6 points 7 months ago

I have seen them claiming the same about Chaya Raichik/LoTT.

[–] ZILtoid1991@kbin.social 10 points 7 months ago (1 children)

I heard some poisonous mushrooms are very tasty...

[–] ZILtoid1991@kbin.social 2 points 7 months ago (1 children)

As the fediverse becomes more and more of a feasible alternative to corporate social media, it will be inevitable that trolls and spammers will use our platform for malicious things. All we can do is to get better at moderation, maybe somehow bust these farms.

[–] ZILtoid1991@kbin.social 7 points 7 months ago

Yay, a "good" guy with a company will stop a bad guy with a company!

All hail Jack!

[–] ZILtoid1991@kbin.social 1 points 7 months ago

I loved my Vivera ink printer!😭

If I ever get a new printer, I'll buy some old laser printer, and refill the toners myself. I did it a few times in one of my father's former workplace, one just needs to wear clothing they don't need anymore, maybe some protective equipment for the dust.

[–] ZILtoid1991@kbin.social 3 points 7 months ago

That announcement is pretty DARVO...

[–] ZILtoid1991@kbin.social 3 points 7 months ago

In this case, the law could potentially give green light to CP as long as it's between married couples, as

  1. it has an exception for married couples,
  2. it does not differentiate between porn of consenting adults and of children who cannot consent.

After seeing many laws that are written in a way they have other effects that are "totally unintended", I refuse to believe this guy isn't aware the pedo part of his law. I usually oppose pedojacketing, but in this case it's not unwarranted.

 

I'm developing my own library for I/O purposes in D, and so far I managed to make my window to open up, but when I close it, I get an error like this:

X connection to :0 broken (explicit kill or server shutdown).

I cannot find anything related to this, and most guides instead recommend me to use some preexisting library for the same purposes, except they often come with very serious caveats (SDL2's audio didn't work for me at all, SFML and a lot of other libraries use the older DirectInput library instead of something newer, etc).

 

No real issue with comments, but my posts only show up on this server, and not on the remote one. This is so bad that I was thinking on getting a Lemmy account for posting there.

 
 

It's really annoying, and stops the music I'm listening to.

My phone is a Samsung Galaxy S23 Ultra, and it doesn't have a built in DAC (or at least it's disabled in the SoC firmware).

Addendum: it's not that it unplugs completely, but rather the USB DAC loses power and/or data connection.

 

kbin sounds a lot like kabin, or かびん/花瓶, which means vase in Japanese.

 

After a software update, VS2022 stopped working correctly. When I hit a break point, I don't get any local variables and their values, instead I get a "wait..." label that looks like a button, and also VS is growing in memory size until it crashes my Windows, or I either stop the debugging or VS itself.

So far I get the best results by using x64dbg, but it has it's own issues, namely that almost all guides only discuss its reverse engineering capabilities, and I need a development tool, so I don't have to rely on printing to the console as debugging, which has a lot of issues (leaving in the print commands, etc). I'm programming in D, but it should work with any other debugger made for C, and up until recently I used VS for that purpose.

 

I use a bit weird development setup. Since VisualD, the official plugin for VS adding D language support, does not have dub support (which D's official package manager, and without it a lot of things get very hard to do, like dependency management), I have to use VSCode as my main code editor, build my code in command line, then load it in an empty VS project set up for C++ development.

However, since the latest update, VS2022 broke completely. I previously had issues with the option to break on every D exceptions disappearing, now I don't even have that. When it hits a breakpoint or an exception, the debugger does not show the local variables, instead it has a "wait..." sign that looks like a button (but is unclickable), and the executable of VS grows until either crashes my Windows, or I stop either the debugging or VS. Probably would still work if I used it normally, but then I have to stop using dub as a build tool, and manage dependencies manually, which is a nightmare with bigger projects and dependencies having their own dependencies.

Currently I have some luck with x64dbg, but so far it's not the most ideal solution. Almost all tutorials for it is about reverse engineering software without any available source code, and I need it as a development tool instead. It seems to load my symbol file and show call stack, but not local variables or source code. D should be able to work with most debuggers developed for C.

 
 

I want to get into writing (primarily political), and while I've written some to those, I want to get as far away from centralized social media as I can.

 
42
XRule (media.kbin.social)
 
 

https://github.com/ZILtoid1991/iota/blob/7299074d7013ab5664415ed9c9b9fc02bd29cfc9/source/iota/controls/polling.d#L80
https://github.com/ZILtoid1991/iota/blob/7299074d7013ab5664415ed9c9b9fc02bd29cfc9/source/iota/window/oswindow.d#L323

I have this very non-standard event loop for an input-output library. It has issues with processing and receiving certain messages. I'm only getting input language change messages by doing certain tricks (usually by changing the input method on the taskbar, then moving the window), but even then it often makes my app hanging. I also don't get any device handles from raw input messages (always null, even with devices that supposed to have all time). It's like if some other function calls, that would make things work as should, aren't mentioned in the MS documentation, and is just assumed it's common knowledge. Similar thing happened to me with SDL, when I was pulling my hair for not being able to get audio working, I even wrote my alternative library, then someone told me it's common knowledge that you should call yet another function before starting the audio stream, except none of the few existing tutorials mentioned it (most just recommended you to use existing sound playback libraries instead of doing your own thing), and the documentation wasn't clear on it (by not clear, it did not mention explicitly, other than being named prepareAudioStream or something).

view more: ‹ prev next ›