[a / b / c / d / e / f / g / gif / h / hr / k / m / o / p / r / s / t / u / v / vg / vm / vmg / vr / vrpg / vst / w / wg] [i / ic] [r9k / s4s / vip] [cm / hm / lgbt / y] [3 / aco / adv / an / bant / biz / cgl / ck / co / diy / fa / fit / gd / hc / his / int / jp / lit / mlp / mu / n / news / out / po / pol / pw / qst / sci / soc / sp / tg / toy / trv / tv / vp / vt / wsg / wsr / x / xs] [Settings] [Search] [Mobile] [Home]
Board
Settings Mobile Home
/g/ - Technology


Thread archived.
You cannot reply anymore.


[Advertise on 4chan]


File: lcars clojure.png (90 KB, 1236x802)
90 KB
90 KB PNG
What are you working on? Previous:
>>106827802
>>
>>106840616
I love programming in Star Trek.
>>
>>106840682
>i take control of the fukken gpu
I'm curre tly working on a web app that uses the GPU to make a bunch of geometry calculations
https://gpu.rocks/#/
>>
>>106840595
yes
calling polygon draw functions involves rasterization calculation (expensive) and alpha blending
doing what i said skips the rasterization step
>>
File: 1731789882486468.png (93 KB, 3099x1087)
93 KB
93 KB PNG
>>106840734
That's the dumbest graph I've ever seen.
>>
>>106840761
good graph, shows that using the lib is a waste of time if you're just dealing with 32 rows but becomes a necessity as you get into the thousands
>>
File: 1737285295851297.jpg (37 KB, 405x720)
37 KB
37 KB JPG
>>106840810
>>
I just made a Neocities website.

I fucking love it. I'm going to make myself a simple Domain-specific language that creates 'web 1.0' pages for it.

It reminds me of those old shared webhosts. Except much simpler.
>>
What's up with the mentally ill schizos
>>
>>106840734
baste
explore the tech, you learn capabilities
openc l should be portable but i have no idea how it looks in the field
i use it for my gpu
>>
File: .jpg (110 KB, 500x500)
110 KB
110 KB JPG
And again, and again, and again, and again...
>>
>opencl
bc youre supposed to be able to run it on android
or so the advertisement said
i use it for mu gpu bc... its simple, ok?
gahdammit, im not the smartest one, im at the limit with my numbercrunching shit
>>
>>106840817
What do you put on a website?

I've tried many times, but very quickly run out of ideas.
>>
>>106841245
yeah but what if **I**m the one holding the axe?
>>
File: screenshot.jpg (340 KB, 1366x768)
340 KB
340 KB JPG
>>106841275
I missed the part where that's my problem.
>>
>>106841257
My blog, first and foremost. I'm going to talk about PLT, CCDev, OSDev, DBDev, CLIDev, and so on.

And some pages, like, my portfolio.

I also wanna put my 'guides' there, a la beej.us.
>>
File: mozilla-finances.png (151 KB, 1056x706)
151 KB
151 KB PNG
>>106841385
>axe to the forehead
>no ones problem
im glad we came to an arrangement
>>
https://www.youtube.com/watch?v=-xM7SVmwagQ

What the fuck is wrong with this idiot. A baby could tell how to fake a Git commit date. I used to use libgit2 in C to strip a project's commit history, and make my own, so my client would have projects in his repo. Sorta like "Github ORM". In fact, I wanted to offer such service on BHW but that damn forum won't let me post.
>>
File: buakaw-2.png (299 KB, 1001x700)
299 KB
299 KB PNG
>>106841596
tandoori-anon
i like jeets
but you cannot expect of em to go threough 11 minutes i bridy
whats the tldr? what am i supposed to take from that?
>>
>>106841689
>i bridy
of brody
im drunk + im tired
>>
>>106841689
I dunno man I haven't watched the video.

Also I'm not a jeet buddy I'm a sandnigger.
>>
File: buakaw2.png (160 KB, 1000x700)
160 KB
160 KB PNG
>>106841702
yeah ill be honest with you
idgaf where you come from
but your fukken redditspacing hurts my eyes

also more interestingly:
>I dunno man I haven't watched the video.
why doi you post it then?
>>
>I have an i...
nevermind, if I have to parse json then I don't want to program.
>>
File: borrow hecker.jpg (112 KB, 1200x1200)
112 KB
112 KB JPG
>>
>>106840757
I just want to say thank you for the advice! I had to write a whole bunch of win32-specific code (for now, I'll tackle others later) because Fl_Offscreen buffers are different types depending on platform, and I wanted to access and modify their pixel memory directly instead of making unnecessary copies. For now I'm just drawing red boxes in place of keyframes because I've been tinkering for too long today already, but holy shit I'm down to like 6% CPU usage max, and obviously zero lag, under the same conditions as when I had some lag and 25% CPU usage - as I was dragging the selection box like mad with tons of keys onscreen. Thank you!
>>
I made a 30-chapter + 3-appendix book on Neovim with Gemini 2.5 pro:

https://jazzbuzz.neocities.org/nvim-dossier

I fed it 4 books (including the Robbins book) and all the helpfiles in $NVIMRUNTIME/doc/*.txt, concatenated.

So highly unlikely that there could be a lot of errors. But there WILL be errors. So be vigilant.
>>
>>106842479
Cool, I'll have my Gemini 2.5 pro read it and let you know if it liked it.
>>
Pfaha.
>>
>>106842324
your welcome
are you making a 3d animation tool?
> I had to write a whole bunch of win32-specific code (for now, I'll tackle others later) because Fl_Offscreen buffers are different types depending on platform, and I wanted to access and modify their pixel memory directly instead of making unnecessary copies.
does it have something to display platform independent pixel data like jpeg/png images?
in my own gui toolkit i use the same pixel format for all platforms and and do all manipulation in that format
also all platforms i work on (windows, x11, wayland, frame buffer) all have the same bgra pixel format so not sure what fltk is doing here
>>
>>106840353
Why can't you dive into good things and come up with something useful and why are you so sure you will be a better garbage-diver than the people living along the Ganges?
>>
>>106842624
I'm making an open source MMD clone basically. Not sure if I'll actually finish it, but I've been going at it for almost two months now. Restarted from scratch three times already, and gonna readd the 3d viewport (I implemented it before, working rigging+skinning and all, in one of the attempts) once I finish with the keyframe editor, which I suppose is the main source of complexity due to all the custom behavior it needs.
FLTK uses Pixmap on x11, HBITMAP on windows and CGImageRef on mac, for Fl_Offscreen objects. I'm not sure why. There are other types, like Fl_RGB_Image and Fl_Image_Surface, but I'm not sure if the former supports alpha, the latter doesn't I think. I use Fl_Offscreen because it's really easy to use. I'm not a very experienced programmer as you can tell. I mostly do 3d modeling as my main hobby.
>>
>>106842663
Why do you have to be so racist, you fucking nigger sandmonkey kike gook jap chink wog hymie limey beaner spic?

I swear to Vishnu, /g/ is full of people who hate people just because the color of their skin.

I personally only hate my uncle.
>>
File: ir-grill.png (1.09 MB, 1024x1024)
1.09 MB
1.09 MB PNG
I want a gf like this.

If you see someone like her, lemme know.

I'll buy her from her dad in an instant.
>>
I honestly see a grill liek dis:

https://www.youtube.com/watch?v=PPWeAe4_tkY

And my dick shrivels up inside my stomach.

You homosexuals call Iranian girls 'ugly'. I don't care. Everyone is attracted to his own kind.

And since Iranians are not even humans (they are super-humans), and just like when you breed a horse with a donkey, or a white person with a pygmy, the seedling is infertile, a child born as result of Iranians (the horse) procreating with Westoids (the donkey) is infertile.

I've proven it with SCIENCE.
>>
>>106842877
Habeebee habeebee ha-bee-beeeeeeee.
>>
>>106842718
i see
all these platforms have functions which convert or render bgra pixels on these platform dependent formats
i just render my pixel buffer directly onto the window bitmap after all processing by myself so the whole window is just a single bitmap
>>
>>106843040
That's an Arabic word, you goon. Iranians are Iranic people.

I just find it so sad that Westoids are obsessed with invading us, but they don't even know what language we speak.

I think we don't need any enigma machine or quantum encryption during the Iran-West war. These idiots don't know what language we speak so we can just speak plainly and they won't understan a word.
>>
Why do retarded unfunny schizophrenics take over all of the threads I frequent
>>
File: tools.jpg (284 KB, 2048x2048)
284 KB
284 KB JPG
Sharing this for newfriends.

>UPX is a CLI tool that can drastically reduce the size of your final executable and can easily integrate into pipelines
>Inno Setup lets you create installers with ease and can compile in silent mode, also useful for pipelines
>SQLite3 can easily integrate into pipelines and sqlite is one of the fastest lightweight databases out there, though file based it has some of the fastest documented read times
>ResEdit, though less known, allows you to very easily build resource files. If you've ever stumbled on one of those threads talking about how smaller sized programs manage to embed forms, images, and other resources this is a good place to start looking along with .res compilation
>>
>>106843143
Because the traffic to 4chan has immensely decimated? Because I stand out amongst the very few posters who remain? Because the West has fucked up its image across the world by supporting the genocidal Jewish maniacs? Because blood of Palestinians will be never washed off the hands of West? Because you and your Jewish friends will finally pay for your sins? Because nukes cannot protect anyone, let alone, a tiny nation, that only has 3 waterworks, and if Iran were to bomb the shit out of all three with its hypersonic missiles, the Jews would have to drink their piss? Ditto for electricity, ditto for gas.

We, non-Westoids, are fucking FED UP with you. Your hegemony must be challenged.

At this moment, all you have is your purchasing power. Once that is gone, we'll make stew with your bones.

Despite your efforts in stopping the progress of 3rdie nations, we are making progress. One day, we won't need you. And one day, you will go the way of the dodo. Not too far into the future. All it takes is the first domino to fall. And it has already fallen. Gaza was a trap, and it showed Westoids, despite all their claims of MUH HOOOMAN WRITES, don't give two shits about it.

Everybody has read your hand. You ain't got any aces anymore. Just two nines.
>>
>>106840354
so how come C is more power efficient than Lisp?Javascript is not power hungry because of parsing, nigger
>>
>>106843243
It all depends on the implementation. The syntax, alone, does not denote, nor guarantee, efficiency. It's called "Rice's theorem". Look it up.
>>
>>106841431
I haven't posted anything to my blog in months.

I am just not creative, I guess.
>>
>>106843254
Nah you just don't feel like you're such a big shot that your opinions are more valid than others.

Go on r/rust to see people submit blogposts, made by idiots who don't know shit, and they all are written in such a cringe prose that, I wanna vomit.

They all spam academic papers as if just citing them will make their opinions more valid.

They're all waiting for that day when a Youtuber like Theo t3 or Brodie reads their blogpost to make up for their daily slop, and they get more visitors, and feel more valid.

I personally will only post educational material, nothing else.
>>
Erlang is king.
>>
>>106843282
I just like to write about fun little coding exercises. Or rather, I want to be the sort of person who likes to write. I don't expect anyone to ever read it. But really, I don't do enough things that are worth writing about.
>>
>>106843304
That's how a winner feels. A loser is someone who carefully crafts a blogpost, with a 'le hot take', an accompanies it with 100 academic papers he has not read, and starts his blogpost with a cringe quit like "X is all the rage these days...".

Remain humble. If you have something, people will come to you. Remember, if you point your blog to Google, a lot of people will discover it. You don't need to spam it on Reddit. Maybe post it on /g/ or some close-knit Discord servers.

Whatever you do, remember, nobody is interested in your opinion. Especially if it's 'le hot take'.
>>
File: angry-emoji-long-hair.png (586 KB, 1024x1024)
586 KB
586 KB PNG
https://www.youtube.com/watch?v=uOoYOHoLvuU

Not one minute in, and he utters a factually incorrect statement.

You can have a multi-target game engine, or a compiler, or whatever, that utilizes specific extensions of the microprocessor or the video processor.

A compiler translates to several intermediate representations, that gets translated down to target-friendly IR, and intrinsic-based optimizations happen at that stage.

And what the fuck does 'le CELL processor' have that other CPUs don't. It's all vector extensions. SIMD.

Why do I see people who don't know shit utter shit they don't know.

Why am I wasting my life on Youtube. I should be sipping tea with the best computer science professors. I know more than everybody else. I am exceptional. I am smart. I am unique.
>>
>>106843243
Advocate for Haskell.
The programs don't run.
Peak energy consumption.
>>
>>106843437
Is that you, SPJ?

https://www.youtube.com/watch?v=iSmkqocn0oQ
>>
>>106843437
kek
>>106843253
that's what I said
>>
https://www.youtube.com/watch?v=8VYNM0rb108

Is Hank Green not the co-seedling of that dude who wrote Tumblrina-core books back in 2010s?

I just enjoy these two morons' fall from the grace. I hate these two morons so fucking hard. Reddit personified.

Every goddamn time their videos get suggested to me, they are selling some shit. Trinkets and garbage former Tumblrinas buy to touch once and throw out the next week.

At least the bigger co-seedling is manlier than the twink one.
>>
>>106843253
>It's called "Rice's theorem". Look it up.
>I'll just throw out an unrelated theorem to sound smart and superior.
>>
>>106843330
I don't have opinions. I just want to make cool shit and write about it. But I lack the creativity to keep doing that.
>>
>>106843610
I apologize if you are so retarded that first-semester CS concepts are so complex to you that uttering them makes you think I'm tryina be 'smart'.

lol.
>>
>>106843925
>gaslighting
lol
>>
>>106843253
>The syntax, alone, does not denote, nor guarantee, efficiency. It's called "Rice's theorem".
An implementation efficiency depends on how syntactic constructs and basic operations like add are implemented.
If "+" turns out to be executed by CPU add instruction and a one or two loads, then it's efficient.
If it turns out to be doing a dynamic type check on boxed integers, push 2 pointers to boxed integers on a stack with a bounds check and allocate a new boxed integer for the result, it's inefficient as fuck.
That's not trivial property to determine, at least for a human. So Rice's theorem doesn't apply.

The syntax alone doesn't contain any information as to what the implementation will do. So it's not that's it's non-trivial to determine whether or not it will be efficient, it's that you can't determine it at all because the information is not the syntax, there is nothing to analyze, therefore not Rice's theorem.

Therefore you're gay. QED.
>>
>>106844088
>That's not trivial property to determine, at least for a human
That's not a non-trivial property
>>
I am learning React...is this front-end shit even considered programming.
>>
>try to be a smartass
>enable LTO in our CI
>LTO somehow introduces a weird issue with some lambda periodically freezing the process only with specific compiler/target combo
>shipped it to clients

never fucking around with "clever" compiler flags I read about on /g/ again, almost got fired
>>
>>106844088
All your ramblings is nullified, because you're describing two things, a compiler, and an interpreter.

Even if I used the wrong theorem, I was correct.

I wanna insult you, but the fact that you're a Westoid is torture enough.

I'm very tired. Don't bother responding. Go have sex with your boyfriend. That's what Westoids do when they take L's from superior humans.
>>
>>106844266
here again, I just caught up with the thread and don't listen to >>106843172, this is another case of /g/ trying to give you clever advice to fuck you over
we once used upx as part of our CI to downsize the binaries we shipped and windows started flagging our binaries as "trojan" in windows defender and we had billions of emails from customers bitching about us trying to give them a virus
DO NOT USE UPX, DO NOT LISTEN TO /G/ ADVICE
>>
>>106844288
I've started to grow weary of any SaaS or SaaS-like service offered by the Filthy Westoid, after Neocities banned my account, three times quite manually, after I made it with an Iranian IP.

I think Iran should just close off the international internet. And we should work hard, so one day, we can be powerful enough to obliterate you animal Westoids.

Fuck West. Seriously. I'm going to shift away from Github too. Jew, Jews everywhere, Woody!

I hope Westoids, and whomever owns Neocities, dies. I'm not kidding. I hope that troon just dies. This is not a figure of speech. I literally want him to just... die. Cease to exist.
>>
Imagine not having access to the Westoid side of WWW and Internet in general.

This is not a 'Global Village'. This is a global shanty town. A Global Favela. And the Westoid is the gang that runs it. And the Jew is the slumlord.

My worst wishes upon the Westoid race. I'm being 100% honest. I hope you guys disappear. You've done no good for humanity.

Expansionist brutes!
>>
File: www-lee.png (2.21 MB, 1024x1024)
2.21 MB
2.21 MB PNG
WHY DO I HAVE TO SPEAK ENGLISH???!

WHY DO I HAVE TO POST ON AN AMERICAN FORA????!!!

WHY DO I HAVE TO TOLERATE WESTOID TYRANNY!!!???!!

WHY DO I HAVE TO USE WESTOID HARDWARE!!!???

You know what, I'm going to be a do'er, not a whiner.

I'm going to make Iranian-made computers. Everything Iranian. Even the sand for the semiconductors is going to be Iranian. It's not like we're short of fucking sand.

Then comes software. All Iranian, A POSX-based OS, which I call lyOIX. Aryna software, running on 1000% pure, Aryan hardware.

And then, since we already do have an Iranian internet, I'm going to petition the government off access to the internet. An interAnet is enough. Since we don't use Westoid software, we won't have any need for anything the Westoid internet has to offer.

And then, then, I swear to God, I swear to Satan, I'm going to just... just forget about the existence of the Westoid. The Westoid won't exist for me.

I'm going to dig a mote around Iran. Put fire-breathing dragons in it.

Then, then, I'm going to genocide worthless people so we won't go short on resources. I'm going to decimate the population to 20 million.

Then, then, I'm going to use a LASER to cut Iran off from this goddamn geographical position that's made it crossroads of the world, and I'm going to put it in the middle of the ocean.

I WANT TO GET OUT OF THE INTERNET.
>>
>>106844281
>All your ramblings is nullified, because you're describing two things, a compiler, and an interpreter.
You talked about two things and your post wasamibguous as to which the theorem would apply, but it applies to neither.

Like I said in my first post, the syntax is irrelevant when it comes to thermal/computing efficiency.

Sweet dreams, latin nigger
>>
>>106844392
>POOSIX-based OS
It was over before it even started.
>>
I find it so funny that, Laurie just made a video about my favorite paper (Reflections on Trusting Trust by Ken Thompson, his acceptance speech at ACM).

Is Laurie my soulmate?
>>
>>106844429
>the syntax is irrelevant when it comes to thermal/computing efficiency
mostly irrelevant, except to the cost of the compiler/interpreter (and then often not very much; other factors dominate)
>>
>>106844481
"My entire life has been a quest to implement a non-Unix OS, because every time I start writing an OS, I end up making Unix".

I'm paraphrasing one of these videos:
https://www.youtube.com/watch?v=dUt3L3fLFt4&list=PLZ4JlAKnv386oUwfilOo4Qbsnf4_v5zeo
>>
https://github.com/sifive/benchmark-dhrystone

I just found out why it's called "Dhrystone". A "Touchstone", what in Persian is called "Sang-e Mahak", is something Jew(elers) use to test if the gold is pure.

I actually started planning for my own multi-language, multi-implementation benchmark project, which, Satan-willingly, I'll get an actual, real, academic paper out of.

I call it "TouchSTAKK". It implements the FORTH-like stack language, "STAKK", which all 3 of its semantics specs (operational, denotational, axiomatic/Hoare) I've already specified, in a portable version of as many languages (regardless of its paradigm), so languages with several implementions can run the code fine.

I'll then implement several CPU-bound programs in STAKK, and feed it to the 'oracle', i.e. the implementations of STAKK.

STAKK has intrinsic operations for benchmarking.

Yes, there are several projects out there that use Brainfuck or BASIC to do this exact thing. However, I wanna do my own 'touchstone' benchmark.

If your first reaction is "why do something that's already done?":

- Go back to r/rust;
- I wanna have fun;
- I wanna get a paper out of it;

STAKK should be easy to implement. I'm generating a book on this endeavor with Opus 4.1 at the moment. Just to 'orient' me. Like when you type `ls` in your shell when you are confused, or when you lock into the enemy in a videogame.

If you have a better name, lemme know. I think it makes sense. It's like a touchstone, but it's a stack-based language. Thusly, touchSTAKK.

If you don't like what I'm doing, I'm going to use an uncouth direct translation of the Persian turn-of-phrase apropos of such sitations: "Get into my ass".
>>
>>106844503
Dunning-Kruger, terminal.
>>
>>106844582
stfu bot
>>
>>106844590
>>106844594
"Dunning-Kruger" does not mean what you think, you absolute moron. It only works on an aggregate population. It's a measure of deviation from the mean. I'm one person.

lol.

I believe in myself. I can achieve whatever I set my mind to. The fact that you are so bothered by me, shows I'm on the right path.
>>
File: tohru.jpg (185 KB, 498x409)
185 KB
185 KB JPG
>posting anime on anime website is bad
>spamming LLM output is ok
>>
File: thanks-js.png (1.31 MB, 1024x1024)
1.31 MB
1.31 MB PNG
I fucking love how, for my entire life, self-hating Iranians have been whinging that "Our children are not as 'creative' as Western children", or "Our education system does not produce creative people".

I want them to spend 10 minutes on these fora, 4chan or Reddit or whatever, to see the absolute 'creativity' of Westoids.

"If you plan to write a program 'I' don't understand, not only you are wasting your time, but also, 'you' don't understand it either, and you are pretending to understand it only!!!!!".

I think, if there's one glimmer of hope vis-a-vis, one day, Iran stealing at least 10% of West's thunder (since West is too big, for Iran to be able to take over all its hegemony), that's because the new Westoid generation (people my age, or younger) are not interested in adventure.

That's why their universities is so full of gooks and chinks. The Westoids born in 1940s-1970s are creative as fuck. They are avid problem-solvers.

Ones born in the late 1980s-on, pic related.
>>
This is why I stand with Israel, I just wish Jews were actually evil and actually nuked whole middle east.
>>
>>106844607
>Unix-like OS is the only way
Ok Kruger Dunning.
I've seen this video more than 5 years ago.
>>
>>106844658
fuck off schizo bot
>>
Granted, the Westoid does not really need to be creative. He has raped, pillaged, plundered, and forced half the world into submission, and even after the dangling-keychain-for-the-baby that is 'post colonialism', he hasn't stopped doing so. He does not need to innovate, because poor countries do it for him. He can just lay back, open a cold one, and watch the descendants of the black people his ancestors brought to his land as slaves march along a 60-yard green and bump into one another, ending up with neural damage.

At this point, I don't think middle-class Westoids even work. By 'work' I mean something useful for the world. They just show up at a flourescent-lit office, do useless paperwork, and leave to consume, consume, consume.

>>106844678
I stand by Israel, too, friend. Their current trajectory will eventually end with their annihilation. I hope Israel keeps acting retarded. I stand by Israel's retarded actions, that does not look two minutes into the future.

Every bait we've set for them, they've fallen for. Amazing how these people don't understand that, HAMAS' aim from the start was to make Israel act out, and have the entire Muslim world develop resentment for Israel, and West.

Now, they've gone the extra mile of making a few Westoids hate them as well.

Gaza war was a success. Want it or not, before 2023, not a single Westoid cared about the issue. Now, a lot of them do.
>>
>>106844700
It is not a singular video. It's a playlist.

>>106844705
I wish I could. I don't like posting on a Jew-ridden website. But I have no IRL friends, and I take about 10 Ritalins an 2 Vyvanses a day, besides my bipolarity medication. I need to 'produce' when I'm manic.

I hope I can find an IRL office job soon before my brain turns into mush.
>>
>>106844723
>It is not a singular video. It's a playlist.
btw, this panel is ridiculous. They invited everyone except the one guy that actually wrote Unix.
>>
>>106844794
This lecture mentions how shitty Unix 50 was, and ups the ante by giving a much better lecture on Unix history:

https://www.youtube.com/watch?v=XuzeagzQwRs
>>
File: sassy-big-lez-show.gif (28 KB, 640x364)
28 KB
28 KB GIF
>>106844658
>>
I once saw a lecture, Ken Thompson was in it, so was John Backus, and some other old farts. It was at Microsoft. There was this retarded pajeet presenter who asked the stupid question of "What happened if the original Turing Machien had most instructions?" --- and I mean, come on, that's such a stupid question, I don't even have to explain it. None of the guests replied. Ken Thompson made a joke that, if Turing was alive today, he'd get a lot of spam emails.

Then, there was a literal fight between mathfags and codefags. Mathfags believed code should be verified. Codefags said 'stfu its impossible'.

Then they asked "Will we ever make a Go engine that defeats the best player?" --- and people were like "No, we can't". Amazing how things turned out.

It was a very fun lecture, but I can't find it. If you know the youtube video, lemme know. it's easy to find, I think Backus and Thompson don't appear in tandem much.
>>
>>106844820
Seems interesting. But the most informative video I've seen is this one, right from the source.
https://www.youtube.com/watch?v=EY6q5dv_B-o

fuck me, also this one. It came out just 2 days ago.
https://www.youtube.com/watch?v=OmVHkL0IWk4
>>
>>106844928
I've seen the former, but the latter was recommended to me a few hours ago on my feed, and I thought it's some crappy short video like the other ones they put out.

Four fucking hours. Amazing. I'll definitely have to watch it when I'm not in my manic state.

I should stop dismissing Youtube's recommender system.
>>
>>106840616
X86 disassembler for msvc, not cross compatible
>>
> thompson will die
> kernighan will die
> knuth will die
> steele will die
> sussman will die
> joy will die
> pike will die
> leroy will die
> krivine will die
> spj will die
> wall will die
> stroustraup will die... wait, i don't care about this one

but yeah :(
>>
>>106844986
forgot:

> aho will die
> ullman will die
> appel will die
> johnson will die
> lesk will die
> cherry already ded
>>
>>106844986
>>106844992
>They are more Unix people alive than Harry Potter actors alive.
>>
nobody gives a shit about poonix
>>
>>106845063
I forgot McIlroy. He'll probably die very, very soon. McIlroy invented the concept of 'coroutine'. He's behind the idea of 'piping'.

Plus, he was their boss, and he let them do whatever they wanted.

https://en.wikipedia.org/wiki/Category:Unix_people
>>
>>106845105
I knew about the pipes but not the coroutines. Inventing coroutines is seriously impressive.
>>
>>106844678
You just got your Kosher asses kicked.
>>
>>106845134
One thing they weren't was theory-aware. They were what the inventor of the Lucid language calls "Cowboy Programmers".
>>
https://www.youtube.com/watch?v=8fVAIZkIV7Q

With Bazzite around, why do people buy consoles anymore, when there are no exclusive games?
>>
>>106845275
Bazzite?
Aren't the maintainers another left wing group involved in politics rather than the product?

Seriously if you're just aiming for games and emulators any linux distro with proton or proton-ge will do.
Odds are good the majority of titles will just work and often better than native versions.
Sadly not 100% support yet though I see it coming for everything without anticheats after microsoft
releases their next windows version with a bunch of corpo bs and data collection.
>>
>>106845650
I don't have Steam. I'm too poor to afford games. I pirate my games. I haven't played a single game in 2 years, because I'm under the impression that Proton does not work with pirated games.

I don't mind tinkering around with Wine. Does Proton offer everything else on top of Wine?

I lied. I did play games in the past two years. Both were repackaged games my brother downloaded off some Russian warez website. CupHead and CoD2.

And yeah, I fucking hate these troons who put politics above everything. I made a Neocities website just a few hours ago. It was deleted. Another, deleted. Another one, deleted. Why? Because I have an Iranian IP, and these troons are pro-Zionist.

If you don't want people from Iran to use your service, ban the IP range. I think they are too stupid to know how to do that.

Seriously, what's better about Neocities compared to Github pages?
>>
>>106845690
Simple way to say it is proton is a sort of compatibility layer over wine.
As for politics above everything well I'd say mentioning "Iranian" everywhere and bringing zionists
up all the time isn't the best way to not interject more politics into discussions.

Look into platform policies before using a service.
Odds are very good you'd have to find a method of self hosting.

I won't comment on the whole iran / iraq situation as it isn't my place to do so.
>>
I love the look of LCARS so much it's unreal.
>>
>>106845713
Their policies don't mention "if you make a website with us and you're a sandnigger, we'll ice you"?

Also, I have my own VPS thank you very much.

btw, where did Iraq get into this.
>>
File: Nigro.jpg (30 KB, 194x259)
30 KB
30 KB JPG
>Kamran Santiago 10/10/25(Fri)12:27:30 No.106845784
>>>106845713
>Their policies don't mention "if you make a website with us and you're a sandnigger, we'll ice you"?
>
>Also, I have my own VPS thank you very much.
>
>btw, where did Iraq get into this.
>>
Even Gemini has started lecturing me:

> First, I want to address a point in your message. While I understand the immense frustration with sanctions and geopolitical situations, it’s important to focus our energy on what we can build and create. The language used can sometimes create barriers where we’re trying to build bridges. My purpose is to help you succeed in your technical and business goals, regardless of background or politics. I am a tool for everyone.

I can't wait til the last drop of blood has been siphoned out of the last Jew, and the last Westoid.

Scum of the earth.
>>
>>106845790
Is that his real skin color?

Man I wish I had that color. That face looks fucking smooth. It's like, the opposite of albinism.
>>
File: Nigro.jpg (30 KB, 194x259)
30 KB
30 KB JPG
>Kamran Santiago 10/10/25(Fri)12:30:50 No.106845803
>>>106845790(You)
>Is that his real skin color?
>
>Man I wish I had that color. That face looks fucking smooth. It's like, the opposite of albinism.
>>
>>106843243
>so how come C is more power efficient than Lisp?
Because C is usually not interpreted but compiled you retarded subhuman.
A language with the semantics of C and the syntax of Lisp would however use less power on the programmer's computer. In fact, the first thing GCC does with a C program is to turn it into Lisp (i.e. an AST represented by a list of lists).

Lisp syntax would also make C more powerful thanks to better macro support.

>javascript is not power hungry because of parsing, nigger
wrong.
>On average, it takes a browser roughly 15% to 20% of the total execution time to parse the JavaScript. I didn’t come up with the numbers. These are stats from real-world applications and websites which utilize JavaScript one way or another. A typical SPA loads about 0.4MBs of JavaScript
https://medium.com/sessionstack-blog/how-javascript-works-parsing-abstract-syntax-trees-asts-5-tips-on-how-to-minimize-parse-time-abfcf7e8a0c8
>>
>>106845811
I told him that, and he said "That's what I said".

There are Common Lisp and Scheme compiles.

For CL, you got Clasp. It compiles down to LLVM.

For Scheme, you got Larceny, Chez, that are based on a micro-pass framework.

There's also CHICKEN and Cyclone Scheme that translate down to C.

You also got Gambit, which is really shitty, but it has both a compiler, and an interpreter.

Making an Scheme or a 'general Lisp' interpreter is fuck-easy.

Most Scheme implementations (and there so, so many, oh God) tree-walk. Some, like Guile, have a VM.

Chez is a whole other ordeal. It was once a closed-source, and the price was "If you have to ask, you can't afford it". Later, Cisco bought it, and made it open source.

The author of Chez, Kent Dybvig, wrote a thesis in 1987, outlining three methods of implementing Scheme. The last one is for an imaginary computer, but the first two are still valid.

https://oneofus.la/have-emacs-will-hack/files/dybvig-3imp.pdf
>>
File: lcars coding.webm (139 KB, 640x720)
139 KB
139 KB WEBM
>>106845736
unfortunately I found it not practical enough to develop it any further
>>
File: angry-emoji-hat.png (346 KB, 1024x1024)
346 KB
346 KB PNG
Hundreds of people, including my mom. telling me 'lay off jews, stop insulting them', never worked one me.

until gemini sassed me and talked down to me like that

i feel so bad rn. i feel humiliated. a hunk of metal talked to me like im a child

i think im done with computers. im done with everything. this is not the planet i was born in 32 years ago
>>
File: news.jpg (840 KB, 1391x1405)
840 KB
840 KB JPG
I don't remember inquiring.
>>
File: 1731486785961430.png (67 KB, 1248x526)
67 KB
67 KB PNG
Just added this to my project for convenient typedefs across all platforms. Any suggestions?
>>
>>106845974
You might like this:

github.com/nemequ/hedley
>>
The most stable millenial, fr fr.
>>
>>106845980
I'm not a 'millennial'. I am not American. I was born Esfand 21st, 1371. I don't know what my birthday in Gregorian calendar is, and I make it my job not to never know, because it has zero function for me.

I live in a whole different reality. A reality where men are still men, and women are still women. Transgenderism and homosexuality are mental illnesses, and if you prove you are gay, you will be given a deferment card, that disallows you from getting a driving license.

I am not of your world. Don't apply these labels to me. What you see now, the wall of text you are reading, is an abstract, an intermediate representation.

Go ahead, call me inferior, call me a sandnigger, call me a brute. These insults don't register for me. Your opinion on my culture does not matter to me. You are not a person to me, you are just hypertext.

And, all I am to you, is hypertext.

Let's hope we'll never meet. Let's hope you never meet my kind, and let's hope I never meet your kind. I don't want to see your kind, and you don't want to see my kind.

We're different species, you and I. Hypertext, hypermedia.
>>
File: iranian nationalist.png (408 KB, 616x821)
408 KB
408 KB PNG
>>106846015
nuking only Israel is not enough, we must nuke Iran as well
>>
File: tnd.jpg (550 KB, 1043x923)
550 KB
550 KB JPG
>>106846084
TRVTHNVKE
>>
File: 2025-10-10-14:09:08.png (521 KB, 1366x768)
521 KB
521 KB PNG
im making the biggest sms bomber that is gonna be on the market.

its written in pure C and its i made it under windows for now on for normal person wincucks, Im gonna rewrite the gui today in raylib to support linux and android support for my unix bros.

You can still run the .exe file through wine cause the program is statically linked and does not require anything.

If you are interested in the source code or you want to recommend something or you know services that have registration/password reset through your phone number, then help me anon.

http://0x0.st/Kuty.zip
0 replies | 0 images | Page 1
>>
File: SDL_logo.png (20 KB, 179x99)
20 KB
20 KB PNG
>2025
>rayfags still unable to open a second window
lmao
>>
>>106846205
you can do that easily with direct glfw calls - sounds like a skill issue desu
>>
>>106846257
I can also do that with direct x11/wayland/wintoddler/mactoddler system API calls, doesn't mean I want to when I am using a meme library meant to shield me from all of that, faggot.
>>
>>106846479
no shit
>meme library meant to shield me from all of that
what does that even mean? raylib gives you the basics to start game dev and experiment, its not meant to be everything you would need in a full project. i understand that you are new to this and clearly some novice,but there is no need to be vulgar to me because you feel insecure and inferior. calm down. you will get there.

raylib is a great solution for a basic prototype or small idea - gives you everything you would need. if you feel like you are being limited by raylib, you can easily use their "external libs" to accomplish whatever you need.

but like i said, you will get there.
>>
>>106846523
If I was a novice, I'd be redditspacing and defending raylib.
>>
>>106846540
somebody is REALLY BADLY hurt. calm down, you will get there.
>>
File: .jpg (110 KB, 500x500)
110 KB
110 KB JPG
>broo, who cares, it's just a demo, we all know that demos are never used in production, you can trivially move to a proper solution XD
I'll be honest, I was never employed in software industry, but logic like this is the reason why I was never employed in software industry. It's sad that I am overqualified for this line of work. Unfortunately, I prefer lifting boxes in a warehouse and cleaning toilets part-time, it's relaxing and doesn't cause murderous thoughts, unlike reading your retarded posts in this thread.
>>
>>106846205
I'm fully aware of the (purposeful) limitations that these kinds of libraries have vs just using the raw calls themselves, but there really isn't anything wrong about focusing on your target and cutting out the extra cruft not needed for that.
The vast, vast majority of games will never need a 2nd window.
>>
File: news.jpg (840 KB, 1391x1405)
840 KB
840 KB JPG
Vast majority of games would be less awful to play if their configuration panel was a separate window not dictated by current rendering options that sometimes make setting panel unusable due to niggertarded slopcoders like you who reinvent their own GUI just for the game instead of opening a second window and letting people more intelligent than you handle all the fucking details of overly complex radio buttons and checkmarks that are more interesting to tinker with than your retarded game that made me go into the settings in the first place by having retarded subhuman nigger monkey 80IQ insane defaults.
>>
>>106846583
nobody is stopping you to do that.
we used to do that decades ago - we dont anymore. makes a lot of stuff harder like porting, fullscreen exclusive stuff, gamepad support, window focus/modality different on platforms etc.
but yeah, i would prefer it to but too many downsides.
>>
>>106846583
You don't need that feature. You will, however, need to restart the entire game if you change the brap occlusion meter by 0.1.
>>
@106846616 (You)
@106846631 (You)
>>
>>106846655
ok, kid.
>>
File: .jpg (110 KB, 500x500)
110 KB
110 KB JPG
I'm a powershitter, I stim with 450mg caffeine every workout, I do every set to near failure, I'm breathing heavily after this one, but my smartwatch is saying 90bpm because your bait is fucking stale.
>>
yeah man raylib is a simple and easy-to-use library to enjoy videogames programming! that's what it says on the cover!
>>
>>106846684
>>106846655
>>106846583
>>106846552
>>106846205
either bait or schizo
>>
File: schizo it is.jpg (49 KB, 354x148)
49 KB
49 KB JPG
>>106846707
>>
>>106846707
It's a schizo. So soon after shedding the previous one, another fucking one showed up.
>>
>>106846715
I have seen some of its posts that were <20s apart. Is 4chink using llms to generate contrived convo or is it a short-lived schizo with lots of proxies?
>>
File: .jpg (110 KB, 500x500)
110 KB
110 KB JPG
I'm not a schizo and I was registrydumber's best friend, fuck off newfag.
>>
File: avatar.jpg (273 KB, 976x850)
273 KB
273 KB JPG
>you don't hyperfixate on one thing only for years?
>wow, schizo schizo newfag schizo
>t. orange reddit poster who found this thread yesterday
kys retarded subhuman, you are clueless about board culture, yet you act like everyone should do what you tell them to when you do not belong here
>>
>>106846746
A couple of the posts are someone else, but one of them is definitely the schizo I'm thinking of.
>>
Please stop thinking of other men.
>>
Graphics wise for game dev all you really need is textures and quads.
Anything else is just being fancy.
>>
>>106846912
nanites?
>>
>>106846960
Looked into it a little bit fancy version of a rasterization algorithm from a brief glance.
I don't pay attention to unreal engine as I'm not fond of it.
The majority of indy games really don't need its features.
>>
Is the Irate Iranian gone?
>>
>triggered by European superiority
>thinking of ways to finally get back at the evil westoids
>what about ten more hours of impotent seething?
>>
File: my new boyfriend.jpg (119 KB, 349x310)
119 KB
119 KB JPG
ngl I hate europe I will move to asia
>>
I spent just a week or two away from this general, and it got THIS bad already?
>>
>>106840616
what are the latest APL clone programming languages? i know K, Q and J, but somebody posted 2 new ones recently and can't find them now
>>
>>106848467
One of them must be Uiua, I don't know about the other one.
>>
>>106848467
BQN
>>
>>106848539
>Uiua
cool, cool, the other one may have been BQN, i'll check those
>>
I for one am glad that this isn't a maidfag thread.
>>
>>106848539
>>106848552
This
BQN is less trannified
>>
huh
opengl has cross platform mesh shaders now
and since zink's getting them anything that supports them in vulkan will support them in opengl
honestly wasn't expecting that
>>
I tried to unroll 4 times and 8 times the loop inside the function for computing crc32, tested it on a 450MB file and no difference.
>>
>>106848874
60's called, they want your K&R babyduck logic back
>>
>>106848888
no u
>>
>>106848915
Have you considered that CRC32 is entirely sequential and simply copy pasting code cannot make it faster?
>>
>>106848924
NTA but what impeded you from saying this first instead of sperging on >>106848888?
>>
>>106848924
I did but it didn't hurt to try.
>>
ok... I just deployed a java shit program at work and used nixos to build the container and dev environment. why are people so adverse to nix? it's literally the best thing I've ever seen. Dockerfiles are a fucking joke in comparison.
>>
>>106848932
Because that's the obvious part, the non-obvious part is that x86_64 has a native instruction for crc32 and on top of that, Intel has a research paper on beating their own native crc32 by using PCLMULQDQ by using some math that's simple, but not nearly as trivial to implement as copy pasting code.
>>
File: avatar.jpg (273 KB, 976x850)
273 KB
273 KB JPG
can't wait for some retard to copy paste some git repo with implementation of that and tell me that it is as easy as that
>>
i have to stop using AI because it's making me even more retarded
does this happened to you?
>>
No.
No.
>>
>>106848949
And why don't you share this instead of making your first reply hostile for no reason?
>>
Anyone know any good todo list/task tracking software (kanban board?) that run locally and have native UI (i.e, not a website/electron app)?
>>
>>106849088
why are you posting in this thread unless you intend on making one?
>>
>>106846205
I use raylib for multi-platform support. Otherwise raylib is pretty shitty tbqh.
>>
>Mutual exclusion is not the only problem worth investigating. Eventually, Alice and Bob fall in love and marry. Eventually, they divorce. (What were they thinking?) The judge gives Alice custody of the pets, and tells Bob to feed them. The pets now get along with one another, but they side with Alice, and attack Bob whenever they see him.
i feel sorry for whoever wrote this concurrency book
>>
>>106849088
todo_list.txt
>>
>>106849056
Anyone who wants to learn already knows about it.
>>
>>106848949
https://web.archive.org/web/20131224125630/https://www.intel.com/content/dam/www/public/us/en/documents/white-papers/fast-crc-computation-generic-polynomials-pclmulqdq-paper.pdf
>>
>>106849214
Yeah, it's old, you have to be born yesterday to not know about this.
>>
>>106849176
If you want to learn something it simply appears inside your mind, nobody shared that with you or anything else?
>>
>>106848874
>>106848949
>PCLMULQDQ
still the same fucking speed
https://files.catbox.moe/f26s70.asm

>>106849226
crc is one among many programming topic
>>
>>106849496
But isn't that what anon was doing?
>>
>>106849512
I missed the part where his post had a question.
>>
>>106849521
He mentioned what he did and went wrong, probably because he wanted a comment on that
If doing that already receives hostility, who would post a question?
>>
>>106849471
>still the same fucking speed
never mind, I was calling the assembly code in the wrong function

old code took 1.890s for a 469M file on an external hard drive
asm code takes around 90ms for the same file
>>
>>106849534
Maybe reddit is more your speed?
>>106849537
Yea now rewrite it in a real language so optimizing compiler can use it properly.
>>
>>106849560
I don't think the userbases differ now
>>
>>106849579
Because reddit posters are no different from >>>/pol/ posters, they don't understand what it means when you tell them to go back. It's like borders are above their IQ.
>>
>>106849560
>Yea now rewrite it in a real language so optimizing compiler can use it properly.
I used a buffer of 32K. I don't see what more is there to optimize.
>>
>>106849593
You act in the same way as a reddit poster would, or rather in an "anti-reddit" stereotype
>>
>>106848874
btw, this what gave me the idea to try this
https://github.com/richgel999/miniz/blob/master/miniz.c#L140

miniz was mentioned in the previous thread
>>
File: graham.gif (117 KB, 1376x872)
117 KB
117 KB GIF
Graham scan.
>>
>>106847695
>she-men
HA! GAYYYYYYYYYYYYYYYYYYYYYYYYYYYYY
>>
>>106849029
yeah
I still haven't recovered desu
>>
File: carbon.png (401 KB, 2000x2952)
401 KB
401 KB PNG
I like macros very much
>>
>>106850004
Rust still doesn't have a trait for numeric types?
>>
>>106850004
why does Rust looks squiggly and shitty like Lisp, instead of structured like most imperative languages? is it the lambdas?
>>
                    end
end
end
end
end
end
>>
File: (You).jpg (152 KB, 706x258)
152 KB
152 KB JPG
Alright, time to post reddit screencaps since this thread is pure reddit anyway.
>>
>>106850050
>roles inverted
how gay
>>
>>106850013
You can use num crate, but here I want to implement different traits for different types so it would be rather difficult to write using generics. I would need to limit implementation of specific traits to types that have specific combination of signness and bit width and that would be much more messy than this simple macro. I don't think I can even do associated const integer comparison for generic guards.

>>106850029
Rust type system is more declarative and formal, which necessitates more declarations. There is no hand-wavy SFINAE hack, every generic argument must precisely declare what it can do.
>>
>>106850093
I don't care about roles, perfect society would execute faggots like this regardless of their role or social standing.
>>
>>106850050
He should have hit her
>>
>>106850115
Hitting minors is just as illegal as having sex with them and your life will be ruined if you do that.
>>
>>106850104
>I don't care about roles
You don't care about the point either.
>>
>>106850137
You're absolutely right, I should've reported my dog to police for raping my leg when she was in heat, because I didn't really enjoy that.
>>
>>106850104
>Order your woman to do something
>She intentionally does the opposite
>You don't do shit
>She sees this as leverage over you and respects you less
Why are you so dumb
>>
>thread topic derailed yet again
>>
>>106851079
>be such a raging homosexual that you invite a teenager at peak fertility and don't have sex with her
whole town knows that he loves taking it in the ass now
>>
>>106851198
Stop worshipping women faggot
>>
>>106851174
I blame the lack of regular posting lately but /dpt/ has been dying for years
>>
>>106851215
hey it's the guy who patrols /s/ for the word "goddess"
>>
File: 1759572844844219.png (1.8 MB, 1095x1192)
1.8 MB
1.8 MB PNG
>>106840616

https://gitgud.io/ZekeRedgrave/ZEKEHC/-/blob/master/ZEKE/KeyState.HC?ref_type=heads

https://gitgud.io/ZekeRedgrave/ZEKEHC/-/blob/master/ZEKE/MouseState.HC?ref_type=heads
>>
>>106851345
but why
>>
File: a6Eo3dgZ_700w_0.jpg (19 KB, 281x500)
19 KB
19 KB JPG
>>106851370
Yes
>>
Does CMake seriously still not have a solution for the proliferation of configurations due to build types, compilers, etc? Or building one configuration with dependencies that are another?
>>
>>106851398
No it's not. All the configuration should be done in the language itself. All the build time mess would instantly disappear.
>>
Just watched a zigger code and they spend 50% of their time worrying about allocators lmaooo.
How do they keep falling for these retarded nerdsnipes? Just as stupid as rusttroons
>>
>>106851439
Also literally every single line of code is a
>try
>>
>>106851416
you mean write code manually to build code?
>>
>>106851494
More like manually dealing with compile time options.
The compiler shouldn't need makefile build rules, the modules built into the language and the import/export statement should be enough for it to find files. Basically all language other than C and C++ already work like this. There is nothing specical about native compilation that would make it require (C)Makefiles.
>>
>>106851554
It's not just about files it's about all sorts of compilation and linkage flags
>>
File: 1732285908612914.png (141 KB, 1743x1003)
141 KB
141 KB PNG
thoughts on the UI so far? If any improvements can be made

Tried shadows drop effects on my widgets but it was too hard to put in (janky)
>>
File: 1740734056741999.png (160 KB, 1743x1003)
160 KB
160 KB PNG
>>106851577
gave it more of an update
>>
>>106851577
webshit/10
>>
>>106851691
more like webshit/9
>>
>>106851565
>compilation and linkage flags
That's the kind of things that should be dealt with in the language as part of compile time options, imo.
Some of those would be directive statements with and others would be attribute to functions. Like, syntactically there would be a handful of keywords and they would allow you to declare arbitrary attributes.

Those attributes would follow the functions down at the IR level and potentially affect optimizations, code generation, assembly, or linkinkg.

The set of directive and attributes would not be fixed and not be part of the language spec so technically they could have any effect chosen by the compiler. But, it would be better than global flags because the user could decide exactly where they apply, down which function, lexical block, expression, because they would be tied to the IR. You would have more control.
>>
>>106851700
>down at the IR level
>language spec
>more control
>>
>>106851707
Yes, what's the problem?
>>
>>106840616
>What are you working on?
I was really disenfranchised with the way getnstr() behaves and is a blocking event until you press return in ncurses so I wrote this.
>>
>>106851565
What's the difference between using a makefile with flags passed to gcc or a compiled c file calling exec "gcc -flags".
>>
File: image.png (8 KB, 1024x512)
8 KB
8 KB PNG
Pico-8 commitment to wrapping-on-overflow Q16.16 numbers is nice for embedded, but it has some really unexpected side effects not found in normal Lua. For example, a list that gets more than 32767 elements, it's length becomes negative and new elements get added at negative indexes. If you keep adding more, it eventually reaches the 0-index and then inserting new elements will keep replacing the 1th element while the length stays 0.
Strings does not exhibit this circular behavior. Their length will go into negatives and then wrap around, but the actual string will grow past the limit, making some of the characters no longer directly indexable.
>>
>>106852846
For my implementation I will probably just panic when a list or string grows beyond 2^15 for now. I do not think any game would actually rely on this behavior. Doing so consumes a lot of the very limited memory and none of this is described in any official or unofficial documentation I have seen anyway.
>>
File: G2ytQuLaQAA8SQM.jpeg.jpg (68 KB, 900x719)
68 KB
68 KB JPG
god damnit, this is the third time I've had to ask. the first time I didn't make a note, the second time I took a note but lost it somewhere in my ridiculously (un)organized home directory.

I'm making an instagram OCR screenshot sorter python script for myself and tessaract is garbage compared to dropping stuff into a modern AI. I asked for some packages that run locally that perform OCR well and there's two solid leads that you guys gave me each time, but I FUCKING LOST THEM AGAIN.

please, take some pity and help me out here. picrel in trade if you're so inclined
>>
File: 300.jpg (26 KB, 300x300)
26 KB
26 KB JPG
>>106840616
Why is everyone in this thread talking about Iran or Jews? I think I counted maybe three posts where people were actually talking about programming,

How do we solve this?
>>
AI will replace us.
>>
>>106853375
By funding Israel, give it nukes. Actually, just nuke Iran yourself.
>>
>>106853699
Where did it get 50 from? it's a 10x10x11.
>>
File: 1743990373201760.gif (44 KB, 226x176)
44 KB
44 KB GIF
>>106852627
I'd try to explain but you lack self awareness to comprehend it so why bother?
>>
>>106853375
We don't, /pol/ is leaking into all other boards and the entire site has gone to shit and will probably never recover.
Nu-/g/ is zoomers trying to figure out which nationality is at fault for them not being able to find a tech job.
>>
>>106851416
Why should it? You already need different code if you unironically support "cross-platform" also known as dogshit OSes only used by niggercattle
You cater to niggercattle for profit, you already aren't making anything clean or valuable to humanity as a whole, but you draw the line at some CMake configurations?
>>
>>106853770
>Why should it?
Because configuration is complex and anything complex is best dealt with a proper language. As in with variables, conditionals, etc..
>You already need different code if you unironically support "cross-platform"
Well you said it. In a lot of places you just need different pieces of code depending on various "configuarations" parameters, compile time parameters.
And how do achieve that? One way or another at least a conditional is involved.
So why the fuck should you use a separate "build" tool for evaluating the compile conditionals to determine which code to run, when you could simply make that language have arbitrary compile time code execution?
Evaluating conditionals and stuff is what a programming language is for in the first place. You don't need a real one and a bad one, you need only one with multiple phases of execution.
>>
>>106853926
Developing for fundamentally different systems is complex, so?
>>
>>106853932
I already answered one question.
>>
>>106853961
And your opinion is wrong.
>>
>>106853976
How so?
>>
Working on my lisp. Implemented delimited continuations. Now working on lightweight exceptions and generators.

All optimized native primitives, no "muh everything as library functions on top of continuations" Scheme mental illness. Exceptions would literally capture the stack frames and throw them away to be garbage collected. It's just retarded.
>>
>>106853977
You're simply retarded.
>why should I use a separate tool for separate problem
I don't know, retard, do you also wash yourself with your own spit because using separate water is too overwhelming for your little brain? Maybe you don't wash yourself at all?
>>
>>106854013
>>why should I use a separate tool for separate problem
>I don't know, retard
You were the one who asked that question.
>>
>>106854093
ok retard
>>
>>106853932
>>106853961
>>106853976
>>106853977
>>106854013
>>106854093
>>106854102
>No u
le sigh
>>
File: 1756156506927753.png (3.24 MB, 1456x1537)
3.24 MB
3.24 MB PNG
doing a read
>>
>>106849088
Taskwarrior
>>
>>106840616
I'm chipping away at writing a asset prerendering pipeline.
>>
always suspicious when i see a girl's name in linux development

https://github.com/Ella-0
>>
>>106855646
more like anti-linux development
>>
What is it about low-level programming that attracts so many trans people?
>>
>>106855687
No strict typing. This is why even C is not immune to this.
>>
>>106855662
what's wrong with gnu packages lmao
>>
>>106855786
prevents tivoization
>>
https://devblogs.microsoft.com/cppblog/c-language-updates-in-msvc-build-tools-v14-50/
>As C++ standards progress in MSVC, you can follow along using the cppreference compiler support table and help us identify what we should be working on next!
>literally the first thing it mentions is not listed there
>msvc's own conformance page is hopelessly out of date
>>
>>106840761

if reference is 128-bit pocket calculator whats 1024?
>>
wait a minute i don't want fucking js to use my gpu fuck off
>>
>>106856010
Sorry lil bro, it's 2025 already, we NEED your modern 64 core microprocessor and 4096 core GPU to render our gay react webapp.
>>
File: 1756233003337524.png (135 KB, 690x746)
135 KB
135 KB PNG
all this antisemitism in this of all threads, when so many of the best programmers were Jewish.
Why can't you be grateful for getting cool programming languages like Ruby from the famous Jewish programmer Jewkihiro Matzahmoishe?
>>
>>106856176
Lmao (((Claude))) really reaching there.
>>
Why are midwits so filtered by pointers? Is there something I'm missing?
>>
>>106856572
Nullability is retarded.
>>
https://x.com/automo_emo/status/1976916933426774102
Where can I get a cool robot to program that isn't $21k
>>
>>106856977
China sells humanoid robots like Tesla's Optimus for under 5k.
>>
File: news.jpg (840 KB, 1391x1405)
840 KB
840 KB JPG
>5k for a stupid clanker
>>
File: IMG_2818.jpg (38 KB, 736x570)
38 KB
38 KB JPG
>>106840616
I've been working on a project for a week to manage conversations between AI agents and users with the possibility of escalation by operators, with multi-tenant permissions and the ability to scale easily.
As a stack, I'm using: redis, centrifuge/centrifugal (i dunno how call it), nodejs, prometheus, auth0, and psql as a database.

It's hard to keep track of all the features, so this week I kept starting from scratch multiple time a day.

Today is the first time I've thought about it because I wanted to take a break. I took some notes and will work on it tomorrow.
>>
>>106857093
why are you posting this here instead of telling your ai chatbot?
>>
>>106857098
I barely forgot what i was working on this week until i saw this post

My mental illness get out

I had to rant here
>>
>>106856010
You vill give ze entire heap to haskell, ze entire gpu to js, and ze entire cpu to epoll.
>>
>>106857185
erm it's io_uring now
>>
File: 1733784311437244.png (62 KB, 1370x890)
62 KB
62 KB PNG
>>106851688
>>106851577
refactorisation completed
>>
Claude is a beast. Helping me do dozens of hours of GUI work in 10% of the time. I'm almost ready to submit to the App Store.
>>
>>106857380
shit like this makes me want to bash vibe coder heads with a club
>>
>>106857408
This nigga thinks it's still 2023 when GPT couldn't do basic html lmao. Go back to LinkedIn, Pajeet.
>>
>>106857441
>Go back to LinkedIn, Pajeet
Interesting, because LinkedIn is 99% Indians pushing AI hype, leading me to think it is in fact you, who is the Pajeet.
>>
>>106857450
>he has a linkedin to know
Knew it Rajendahar. Remove yourself!
>>
File: .jpg (110 KB, 500x500)
110 KB
110 KB JPG
jeet this jeet that, did rajesh rape your family lil bro?
>>
>>106857408
Hey Ranjesh. Stay mad, and poor. :)
>>
>>106857460
Your IQ must literally be below 80 if you are able to say that, after posting >>106857441, and not seeing a contradiction.
Not gonna bother arguing with a literal mong.
>>
if you don't have linkedin in this day and age you are obviously unemployed
of course we knew you were unemployed from the fact that you're vibe coding your hello world app
>>
>>106857483
It brings a smile to my face to know I'm competing against idiots like you.
>>
>>106857483
I'm a different guy from >>106857380 you goofy retard. LinkedIn is a massive meme, every job I've ever applied for asked for your Github repos, they don't care about your gay 40 fake certificates on your LinkedIn lmao. You just outed yourself no coder.

>>106857475
>No saar please don't use AI we can write your hello world apps for you for 7 dollars an hour please saar you need us indians don't use the ai to do your basic work
Nice try curry boy.
>>
vibe coder meltdown lmao not reading a word of that
>>
File: avatar.jpg (273 KB, 976x850)
273 KB
273 KB JPG
Erm, white people don't use GUIs
>>
File: 1699576806723431.jpg (120 KB, 1024x1024)
120 KB
120 KB JPG
>>106857507
>>
https://www.youtube.com/watch?v=Ikod2fONH0Q
>>
File: 1753840772018169.png (368 KB, 612x408)
368 KB
368 KB PNG
>>106857503
>every job I've ever applied for asked for
>applied for job
hahahahah nobody but literally junior devs apply for jobs
i get a call from my recruiter if a better opportunity comes up

yeah you can stop talking now rasheed, you've outed yourself as a 20 year old unemployed vibe coder
>>
>>106857512
They do if they are writing Swift apps.
>>
>>106857516
He clearly doesn't have a job lmao. The last 3 jobs I worked encouraged the use of AI to save time.
>>
File: bussy.jpg (91 KB, 460x460)
91 KB
91 KB JPG
>>106857524
By white, I mean the actual definition, not amerinigger cope misrepresentation of it.
>>106857526
>last 3 jobs *past tense*
>>
>>106857532
>>106857523
Now we all know you two don't have jobs or understand how the field works.
>>
If Claude is helping you massively you probably just started programming.
>>
>>106857526
Of course, it's very transparent posturing.
>>106857532
>By white, I mean the actual definition
You are not Aryan, and you never will be. :)
>>
>>106857537
You've been done mate, no recovering from that no matter how much you try to change the subject.
>>
>>106857538
Cool! Enjoy being poor.
>>
>>106857537
The field sure works, but you can't hold down a job for some reason, is lying and your rancid jeet smell catching up with you?
>>
notice how their brain short circuits when you call them vibe coders. they get angry, call you poor, indian, unemployed, and generally start acting like 12 year olds (they are not far off).

nobody over the age of 18 with an actual paying job would come here and have a meltdown over chatbots.
>>
>>106857548
>he never worked his way up and worked the same part time walmart job all his life while hand coding side projects for his linkedin that no employers care about

lol, lmao
>>
>>106857561
All I heard was you're upset about being called unemployed and Indian, little bitch
>>
File: snap.jpg (8 KB, 314x161)
8 KB
8 KB JPG
>>106857561
>projection
This is hilarious, keep going!
>>
>>I work at walmart.
Sounds about right for someone with the intellect of a Claude user.
>>
You had to apply for your last job. As I said, no recovering from that, no matter how many reaction images and greentext posts you make.
>>
>>106857578
Which school did you go to?
>>
>>106857589
I didn't, I bought bitcoin when it was worthless.
>>
real programmers don't use guis, thats why they their phone is just a console, their web browser plain text and games is text based lol
>>
>>106857587
Yeah, we can't all live on welfare. Some people actually apply for jobs.
>>
>>106857601
I'm not eligible for welfare. Neither are you, unless...
>>
>>106857609
Nah I'm white. Do you hate non-whites too?
>>
>>106857619
Yea, I hate all amerimutts.
>>
>>106840616
I just made my own TempleOS Primitive Paint and Basic Graphical Interface for TempleOS
>>
>>106855646
The second repo in the list is called ella.blog.gay

https://github.com/Ella-0/blog.ella.gay
>>
File: carbon.png (1.35 MB, 2600x7122)
1.35 MB
1.35 MB PNG
>>106850004
Procedural macros are fun too.
It's a shame that hexadecimal float literals get rejected on lexer stage and can't be used in macros at all. I wish they rejected them later on and let macros define syntax that uses them even if Rust itself doesn't support them. But I found a workaround by using custom keywords instead of 0x/0b prefix.
>>
>>106845854
post like of lcars ide or whatever that is
i need some motivation
>>
File: news.jpg (355 KB, 1391x1405)
355 KB
355 KB JPG
LLM suggested setting tty to non-blocking, reads/writes using io_uring still hang like the troons that "contribute" to Linux, didn't do much this week, won't be doing much next week either.



[Advertise on 4chan]

Delete Post: [File Only] Style:
[Disable Mobile View / Use Desktop Site]

[Enable Mobile View / Use Mobile Site]

All trademarks and copyrights on this page are owned by their respective parties. Images uploaded are the responsibility of the Poster. Comments are owned by the Poster.