[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

Name
Options
Subject
Comment
Verification
4chan Pass users can bypass this verification. [Learn More] [Login]
File
  • Please read the Rules and FAQ before posting.
  • You may highlight syntax and preserve whitespace by using [code] tags.

08/21/20New boards added: /vrpg/, /vmg/, /vst/ and /vm/
05/04/17New trial board added: /bant/ - International/Random
10/04/16New board for 4chan Pass users: /vip/ - Very Important Posts
[Hide] [Show All]


[Advertise on 4chan]

[Catalog] [Archive]

File: 1679496852531.jpg (204 KB, 1152x2048)
204 KB
204 KB JPG
Arenas are the new hot programming meme.

Despite this, you can't implement an arena backed up by a statically allocated buffer in C and C++ without violating strict aliasing rules.
27 replies and 6 images omitted. Click here to view.
>>
>>106872029
You don't if you aren't an hyper autist teaching at university. In industrie you just pick the right tools for the job and that's it.
>>
>>106869953
Yes, it is
>>
>>106872005
7/10 bait
>>
>>106871986
>reading comprehension
>>
>>106865259
This "you can't write malloc in standard c" bullshit has gone on for too long.
union u {int i; float f;} u;
u.i = 1;
printf("%f\n", u.f); //strict aliasing violation, super bad
u.f = 1.;
printf("%f\n", u.f); //fine

int *i = &u.i;
float *f = &u.f;
*i = 1;
printf("%f\n", *f); // le bad
*f = 1.;
printf("%f\n", *f); // fine


Comment too long. Click here to view the full text.

File: ygg-1759937034.webm (3.99 MB, 1920x1200)
3.99 MB
3.99 MB WEBM
Shader edition

/gedg/ Wiki: https://igwiki.lyci.de/wiki//gedg/_-_Game_and_Engine_Dev_General
IRC: irc.rizon.net #/g/gedg
Progress Day: https://rentry.org/gedg-jams
/gedg/ Compendium: https://rentry.org/gedg
/agdg/: >>>/vg/agdg
Graphics Debugger: https://renderdoc.org/

Requesting Help
-Problem Description: Clearly explain your issue, providing context and relevant background information.
-Relevant Code or Content: If applicable, include relevant code, configuration, or content related to your question. Use code tags.

(Actual) Previous: >>106658977
109 replies and 20 images omitted. Click here to view.
>>
This was actually pretty painless, I expected the c/raylib to web assembly pipeline to be hell.

Guess I can uninstall Bloatdot now.
>>
webgpu and wgpu / dawn seems like goyslop. opengl for life.
also runs on mac, windows and linux. the most multiplatform graphics api there is.
>>
>>106846088
use Dynamic Mode and reimplement OpenGL in your own rendering backend so that you can get work done.
>>
>>106871116
>also runs on mac
not anymore. Apple's legacy implementation is extremely buggy and only getting worse.
But you can compile against ANGLE and get a reasonable metal implementation of OpenGL.
>>
>>106871744
>OpenGL
I started with Vulkan and have never written a single line of OpenGL, so I wouldn't really know what that looks like.

How do we save Linus Tech Tips, /g/?
67 replies and 11 images omitted. Click here to view.
>>
>>106859387
i respect your pattern recognition
>>
>>106868815
The deal, as described by Linus, was that he would stay on and perform on screen like he does now. Standard media acquisition, with his retained ownership stake as an incentive.
>>
>>106868789
>s-steve was totally wrong, guys i swear!
what a faggot
>>
>>106869356
that was probably included as a requirement in his severance package. well played by linus, stevesisters on suicide watch
>>
>>106856673
>the fatso Linux nerd went TRANS

LMAO
FUCKING TEXTBOOK
WHY DOES IT ALWAYS HAPPEN

>confidently states incorrect information while parading leftist bullshit constantly and always mentions he's gay
What a horrible channel
28 replies and 4 images omitted. Click here to view.
>>
>>106871367
>>106871375
he didn't say anything inaccurate and OP is a faggot.
>>
>>106871387
>You can tell from his voice
holy shit you might actually be gay
>>
File: 1553760859293.jpg (44 KB, 497x427)
44 KB
44 KB JPG
>>106871308
>incorrect information
Such as?
>parading leftist bullshit constantly
>>>/pol/
>always mentions he's gay
Has never discussed sexuality even once
>>
WAIT he's gay?? Doesn't look or sound like it.
>>
>>106871308
Yes, it's slop for nerds.

File: linuxmint-1.jpg (54 KB, 1280x960)
54 KB
54 KB JPG
>revives your old PC
>revives your family's old PCs
>just works out of the box
>is ready to receive all those people who can't install Windows 11
Is Linux Mint the best Linux distro for replacing Windows, /g/?
I think it is.
150 replies and 11 images omitted. Click here to view.
>>
>>106856600
Yet it doesn't undo the damages
>>
>>106854483
Synaptic eliminates almost all cases you'd have to use a command line.
>>
>>106870673
The overwhelming majority of users prefer unstable operating systems. Stability is something that only servers need. Tell your grandma "no you can't install the newest version of Zoom because RHEL didn't package it since it's meant to be stable!" and she'll tell you to go abort yourself and install Windows instead.
>>
>>106854373
Windows 10 iot enterprise ltsc does this better.
>>
>>106856988
Many such cases. But you can make money off these idiots if you're a psychopath enterprising sovl.

File: file.png (3.21 MB, 1920x1080)
3.21 MB
3.21 MB PNG
Everything is already from China, but here we discuss the cheap chink shit you see on various sites.
1st rule of /csg/: If it looks too good to be true, it probably is.

Useful links
>TWS IEM reviews: www.scarbir.com/
>Guide: csg-guide.neocities.org/
>Wiki: https://igwiki.lyci.de/wiki/Chink_Shit_General

>What headphones/earbuds should I buy?
>>>/g/iemg
>I want a cheap smartphone what should I buy?
>>>/g/spg/
>I want to buy some sort of emulation device
>>>/vr/hhg/


Comment too long. Click here to view the full text.
18 replies and 6 images omitted. Click here to view.
>>
>>106870187


nvm its chinks trying to chink me
>>
Don't let the thread die, anons
>>
>>106871213
owari da
no more consooming chinkshit
>>
>voted for this
>>
>>106871213
I’ll try my very best, but some of us have lives to live, besides consooming and coooming!
My autistic-deep-dive into chink router bits hasn’t even started, because I had other /diy/-related things that needed fixing and thus I also had no time to review all of the stuff I got in my most recent order. And I wanted to do an autismXexhibitionism review of the various types of fake nipple piercings, but I also can’t find the time for it.
Sorry, m8.

File: adt41.jpg (3.11 MB, 3386x2820)
3.11 MB
3.11 MB JPG
>UIs to generate anime
ComfyUI: https://github.com/comfyanonymous/ComfyUI
SwarmUI: https://github.com/mcmonkeyprojects/SwarmUI
re/Forge/Classic: https://rentry.org/ldg-lazy-getting-started-guide#reforgeclassic
SD.Next: https://github.com/vladmandic/sdnext
Wan2GP: https://github.com/deepbeepmeep/Wan2GP
InvokeAI: https://www.invoke.com/
AniStudio(WIP): https://github.com/FizzleDorf/AniStudio

>How to Generating Anime Images
https://rentry.org/comfyui_guide_1girl
https://tagexplorer.github.io
https://making-images-great-again-library.vercel.app/
https://neta-lumina-style.tz03.xyz/


Comment too long. Click here to view the full text.
141 replies and 62 images omitted. Click here to view.
>>
>>106869226
nah I would never recommend it either because I genuinely think its garbage
you have a cringe cattle mentality
>its so popular... it must mean its good!
its only popular because its author lied about not including noobai in the mix to avoid licensing issues so the civitfags could use it for on-site genning back when noob license didn't allow it.
>>
File: 1749453538542747.png (409 KB, 755x755)
409 KB
409 KB PNG
>>106871595
Someanon made the joke weeks ago.
Dunno why it only dawned on me now to gen it.
>perhaps I may be a bit dumb
>>
File: 1758135971091891.png (663 KB, 1024x1024)
663 KB
663 KB PNG
goodnight faglords
it was a pleasure posting animu with you

https://prompthero.com/ai-models/maga-meme-pack-download/awoo-illustrious
>>
File: 00002-1678218116.png (2.67 MB, 1856x1280)
2.67 MB
2.67 MB PNG
>>
>>106871276
/e/

File: 2025-10-13 064137.png (12 KB, 498x224)
12 KB
12 KB PNG
3 replies and 1 image omitted. Click here to view.
>>
>>106870540
>>106870529
AI CANT READ ON PICTURES, COOL
>>
>>106870513
>>106870513
>>106870513
>>
File: file.png (117 KB, 926x517)
117 KB
117 KB PNG
>>106870529
>>106870539
>>106870540
>>106870553
>mental illness spam thread
>>
>everything i dont like is mental illness
>>
>>106870513
>>106870513
>>106870513

File: babyduck gets ransomware.png (121 KB, 1693x1080)
121 KB
121 KB PNG
Why are they like this?
>>
>>106871806
>Why are they like this?
Buck broken
They'll rather tinker with hacked isos, "debloat" scripts and raping group policies than make a switch.
Windows 7 users are the most funny retards since they can't benefit from Windows software support since their shit is outdated and they can't benefit from Linux as well.
>>
>>106871806
I have many services running on my pc that need minutes to shut down so dualbooting is not an option and i would need to dual boot to play anticheat games with my friends and do work in adobe and reverse engineer programs and games, so linux is just not an option as I don't use my OS as a wrapper for trannyfox

File: 1760287171.png (104 KB, 1498x708)
104 KB
104 KB PNG
I just wanted to render some fonts to a png file ...
41 replies and 3 images omitted. Click here to view.
>>
>>106868231
>untested fonts
so i have to test every single font file just to makw sure c doesn't implode
>>
Let's try python kids!
>compile an executable that prints hello world
54MB
>scratch that, use script that creates qr code images
30KB python library + <1KB script
>alright, alright, alright! now let's do the opposite
7 WHOLE FUCKING GIGABYTES OF VENV DATA SPACE WASTED ON DYNAMIC CUDA LIBS THAT THIS ARCH DOES NOT EVEN SUPPORT

It's not a question of flash drive space anymore, it's a question of a very limited cpu memory cache.
>>
>>106870008
being smug about knowing what compiler flags or shared objects or LTO/ pseud-LTO(a single translation unit gives you the same benefits) are like they're anything special or advanced shows me how experienced you are.
>>
>>106866126
Rendering fonts to PNG? Child's play for Lisp! With its powerful macro system and dynamic typing, Lisp makes this trivial task a breeze. You can write a concise, readable program in seconds. And because Lisp's garbage collector is so efficient, your memory usage will be minimal - no bloated packages needed.

In fact, Lisp's unique nature means many other languages, including those massive 512MB packages, are simply dialects of Lisp or heavily influenced by its brilliance. Python, Ruby, even JavaScript - they all owe a debt to the granddaddy of programming languages, Lisp.

So don't waste time with clumsy, memory-hungry tools when Lisp can do it better, faster, and more elegantly. Once you experience the joy of Lisp, you'll never go back to those cumbersome alternatives again. It's not just a language - it's a revelation. Lisp is the greatest programming language ever created, and there's no debate about it.
>>
>>106868791
>rust guarantees that programs don’t have any memory bugs
does it add a fucking ECC you dumb cunt?
>you really don’t need a debugger with rust
age of space travel has ended before it could even start

File: images.jpg (7 KB, 262x193)
7 KB
7 KB JPG
https://www.youtube.com/watch?v=kcICMXz_n3Y
We need to pop this LLM bubble as soon as possible.
First of all, we have to start referring to what these idiots call “AI” for what it really is: decoder only large language generative models.
Second, we need to start spreading the fact that MCP and function calling are useless for 95% of use cases cases where you don’t even need language in the first place. Proof of that is that not even Amazon has jumped into that shitty paradigm. Who the hell wants to talk to a chatbot to order a pizza? Imagine having to type everything and turn a simple “tap and pay” mechanism into a fucking chat session, arguing with a bot about why you don’t want onions milk in your order.
All the dinosaur investors behind this LLM nonsense want to drag us back to the caveman era, where computing power was centralized and we had dumb terminals.
Imagine needing megawatts of power and terabytes of RAM for a simple REST request just because some wannabe Steve Jobs thinks that hooking his website to ChatGPT makes it an AI app.
>>
>AI companies just spend money on each other, artificially inflating their valuations upward infinitely.
Wait until you find out how the entire economy works.
>>
>>106868369
I just want endless AI 3D porn, also it will make real women obsolete for the first time in the human history
>>
>>106870336
yea, but that's "open-weights" local image generation models. Not retarded closed LLMs
>>
Well, how do "we" go about "popping" it, OP?

File: 1760075539216538.jpg (1.45 MB, 4950x2260)
1.45 MB
1.45 MB JPG
wallpapers of /g/
22 replies and 8 images omitted. Click here to view.
>>
File: 1750046444766786.jpg (8 KB, 248x241)
8 KB
8 KB JPG
How dead is this site?
>>>/tv/215200540
>>>/v/723125880
>>
File: meirl.jpg (26 KB, 540x462)
26 KB
26 KB JPG
>>106871008
very.
>>
File: 1571342830679.png (2.4 MB, 2022x980)
2.4 MB
2.4 MB PNG
I usually poke through /w/ and look for something seasonable.
>>
File: 1760258665033772.jpg (1.68 MB, 5444x2666)
1.68 MB
1.68 MB JPG
>>106869175
better version
>>
>>106869175
>>106869175
ZUTTED

/aicg/ - A general dedicated to the discussion and development of AI chatbots

Taisch Edition

>News
GPT-5 Pro released https://openai.com/index/introducing-gpt-5/
Z.AI releases GLM 4.6 - https://z.ai/blog/glm-4.6
Anthropic releases Sonnet 4.5 - Big upgrade in RP quality - https://www.anthropic.com/news/claude-sonnet-4-5?p=2
DeepSeek releases V3.2-Exp - Still no change in RP quality https://api-docs.deepseek.com/news/news250929
DeepSeek releases V3.1 Terminus - https://api-docs.deepseek.com/news/news250922
Kimi K2 0905 released https://moonshotai.github.io/Kimi-K2

>Frontends
SillyTavern: https://docs.sillytavern.app
RisuAI: https://risuai.net

Comment too long. Click here to view the full text.
20 replies and 3 images omitted. Click here to view.
>>
>>106871911
That's just the thinking part isn't it? I never have it leaked out as output except when using the "continue" request sometimes on SillyTavern
My problem with Gemini is it often thinks of kino, then disregards all of it and outputs slop
>>
>>106871975
lorebooks
>>
>>106871911
Prefilling causes that
>>
rentry.org/mysteryinfo
>>
>>106872065
How do I stop it?

File: Btrfs.png (27 KB, 1600x1020)
27 KB
27 KB PNG
>corrupts the instant you use it
31 replies and 3 images omitted. Click here to view.
>>
>>106871392
This happened to me with ext4. Turns out it was just a bad drive.
>>
I put btrfs on the data ssd in my mini pc home server so I can snapshot + borg backup to external hdd (ext4) easily. Being able to detect bitrot is nice. Single data and duplicate metadata + system so at least metadata errors can be healed.
Eventually I'd like to build a NAS with at least 2 mechanical drives running ZFS which should be the main protected ground truth data pool but for now btrfs on a single ssd is probably better than nothing.
>>
File: 1745123470684760.png (8 KB, 540x344)
8 KB
8 KB PNG
>>106868703
>>
>>106871789
even on a single drive btrfs can protect you from mistakes (snapshots) and tell you about corrupted files (so you can restore them from a backup rather than letting them propagate to backups).
you can also easily convert it to a raid1 later on by just adding another drive to that btrfs volume and running a balance on it. btrfs has the most flexible raid out of anything out there, there's no planning or commitment required, it will adapt to whatever you need the moment you need it
>>
>>106871527
Just use the DKMS module bruv, it will go into the kernel again eventually anyway

File: dinosaur laptop.jpg (70 KB, 696x1024)
70 KB
70 KB JPG
Comp sci student, don't want to have to collect a thousand different notebooks alongside my x220. Is it time to get an iPad?
24 replies and 2 images omitted. Click here to view.
>>
>>106866666
>>
>>106864740
>Is it time to get an iPad?
I often notice that a good portion of my classmates take digital notes. They copy everything attentively, yet it makes no difference with regards to actually understanding what they've copied. This is reflected by the fact that they don't perform any better on exams. Though I suppose this could just be confounded with the possibility that they believe that copying the notes verbatim is enough for them learn something. Might be sufficient for helping them know what to do on assignments, but it's gone come exams and the final.
>>106864752
Personally, I find myself retaining information better when I'm studying on my own and working on a whiteboard. It's easy to just find yourself copying the textbook essentially word for word, and knowing I'll just erase everything forces me to just write what's important. I end up tossing my notes anyway.
>>106864868
Dollar store notebooks feel like shit to type on, and sometimes smell like ass--could just be a homeless Amerishart who wiped their ass on the notebook due to lack of toilet paper. Why the fuck do Americans cut down all these trees for, only to produce shitty paper?
>>
File: math.png (17 KB, 586x562)
17 KB
17 KB PNG
>>106864740
OneNote

you don't even need a pen/tablet if you have a good enough mouse to free-hand the equations, and its built-in "ink to math" is really good at figuring out what you've scribbled and turning it into a formula you can then copy and paste into a document, or keep it in your notes

and the obvious advantage of digital notes over pen and paper is that you can easily move stuff around to better organize it
>>
>>106864740
Just don't do it anon.
I did it for one semester and I was miserable.
Composition notebook and pencil is the way to go.
>>
Convertible tablet laptops used to be a thing. Took all of my engineering notes that way so I could reference stuff quickly.
Then microshit made onenote online-only so I don't have a way to reference them anymore.


[Advertise on 4chan]

Delete Post: [File Only] Style:
[1] [2] [3] [4] [5] [6] [7] [8] [9] [10]
[1] [2] [3] [4] [5] [6] [7] [8] [9] [10]
[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.