lazyneet

joined 9 months ago
[–] lazyneet@programming.dev 2 points 3 months ago

University of Oklahoma has an organization and there are probably more at other colleges in the state. I can attest to the difficulties of online dating. There may also be LGBTQ resources in your town or nearby, like a social gathering at a community center or something.

[–] lazyneet@programming.dev 2 points 3 months ago (2 children)

Replace him with a suitable substitute on some dating platform. If you're in a major city, that shouldn't be difficult. If you're out in the sticks like I am, alcohol may be your only friend. Maybe get a job or attend a college in a place where gays can be gay.

[–] lazyneet@programming.dev 40 points 3 months ago (2 children)

To be the webcam on that netbook <3

[–] lazyneet@programming.dev 24 points 4 months ago (5 children)

Cute cute cute, and classy.

Tap for spoilerFor some reason I didn't realize you were trans. This femboy pipeline goes deep.

[–] lazyneet@programming.dev 15 points 4 months ago

I pulled them off to make Unix jewelry

 
[–] lazyneet@programming.dev 51 points 5 months ago

The sad reality is that when you look at the files being requested, it's usually scrapers looking for exploits.

[–] lazyneet@programming.dev 1 points 5 months ago

When you bring threads into it, these exotic features make more sense. I have been doing single-threaded stuff for the most part.

[–] lazyneet@programming.dev 2 points 5 months ago (1 children)

I just never learned smart pointers and write C++ code like it's C for aesthetic reasons.

[–] lazyneet@programming.dev 16 points 5 months ago (15 children)

I've been using C++ almost daily for the past 7 years and I haven't found a use for shared_ptr, unique_ptr, etc. At what point does one stop being a noob?

 

It's been a long day and I'm probably not in the best state of mind to be asking this question, but have you guys solved packaging yet?

I want to ship an executable with supporting files in a compressed archive, much like the Windows exe-in-a-zip pattern. I can cross-compile a Win32 C program using MinGW that will always use baseline Win32 functionality, but if I try to build for Linux I run into the whole dependency versioning situation, specifically glibc fixing its symbol version to whichever Linux I happen to be building from at the time. But if I try to static link with musl, the expectation is that everything is static linked, including system libraries that really shouldn't be.

AppImage is in the ballpark of what I'm looking for, and I've heard that Zig works as a compatibility-enhancing frontend if you're compiling C. I'd just like something simple that runs 99% of the time for non-technical end users and isn't bloated with dependencies I can't keep track of. (No containers.) Is this easily achievable?

view more: next ›