[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]

This is an example of what a Reddit bot account looks like. Dead Internet theory could be absolutely real.

https://old.reddit.com/user/Tricky-Glassy
>>
and?
why the fuck do I give a shit about what happens on reddit. just go back and stay there.

ayo!!! dis diode be emitting light an shiet!!!
36 replies and 10 images omitted. Click here to view.
>>
>>108415729
It's an amplifier. Most "common x" configurations are amplifiers, especially BJTs which are better suited to high frequency analog circuits than MOSFETs. Turning off or on the BJT is actually a concern of the DC large signal bias voltage. Once it's biased an AC small signal voltage is fed into Vin and is magnified proportionally to Rc and then output from Vout.
>>
>>108416307
mosfets way better at digital logic, though
bjts have a much softer V-I curve
>>
How does rf shit werk.
Its all crystals and weird antennas.
>>
>>108416349
it takes big dick maxwell's equations to do rf
t. rf researcher
>>
>>108416349
Nobody know, it's a dark art.

File: 1750303334189835.gif (881 KB, 480x270)
881 KB
881 KB GIF
>Lisp is a family of programming languages with a long history and a distinctive parenthesized prefix notation. There are many dialects of Lisp, including Common Lisp, Scheme, Clojure and Elisp.

>Emacs is an extensible, customizable, self-documenting free/libre text editor and computing environment, with a Lisp interpreter at its core.

>Emacs Resources
https://gnu.org/s/emacs
https://github.com/emacs-tw/awesome-emacs
https://github.com/systemcrafters/crafted-emacs

>Learning Emacs
C-h t (Interactive Tutorial)
https://emacs-config-generator.fly.dev
https://systemcrafters.net/emacs-from-scratch
http://xahlee.info/emacs
https://emacs.tv

Comment too long. Click here to view the full text.
37 replies and 6 images omitted. Click here to view.
>>
>>108416194
>compiler and dynamic typing rendering tons of optimizations unfeasible,
Which is why I love Coalton, you can do the heavy computations with static typing and the dynamic polymorphic stuff outside of it, but I'm trying to get a hang of just doing it all in Coalton and only do what's strictly necessary in CL since there are some footfuns related to passing values between the two that render that compartmentalization moot.

It's not strictly C performance but fuck it's so nice, you get static typing, better performance AND you can still use use macros, AND you can also drop down to CL and do whatever. I'm just waiting on 0.2 dropping in a week to get into it 100% since there's a lot that has been changing in the last couple months.
>>
>>108416334
I tried coalton but the performance was actually worse than my version with only a couple of optimizations, I tried debugging it for 30 minutes and just thought it wasn't worth it. Have you had actual better performance? I might try it again
>>
>>108416194
>In something like lisp if you define a super simple function that just does basic arithmetic and don't declare types it'll end up generating garbage
This isn't really true. Check with tools like disassemble and time. SBCL does a lot of optimization even on its default settings. Sometimes things skip even the stack and just get tossed around in registers. Besides that, with generational GCs (which SBCL has) they don't allocate like malloc or new. An allocation is usually just a pointer bump. This allows for the mainline code of an application overall to be faster than a C or C++ application. Add in no fragmentation for a moving and incrementally compacting GC (which SBCL has), no zeroing first, lock-free thread-local allocations, and you get other performance wins. You pay for some of it later with the cost of GC, but if you have a query-oriented application (e.g. web servers) then you can put that cost between queries.
The usual tradeoff of GC and non-GC is CPU and RAM. By using more RAM, a GC language can have higher performance than a non-GC one, ignoring things like compiler sophistication that can do auto-vectorization and other big speedups. Manual memory management tends to optimize for footprint at the expense of CPU -- likely a bad tradeoff if the memory being managed is less than 1 GB per CPU. (See: https://www.youtube.com/watch?v=mLNFVNXbw7I)
>>
>>108416507
If that were true you'd see Java/C#/Go applications/benchmarks outperforming C++/Zig/Rust programs, which they don't even when used naiively. Those optimizations you mentioned are definitely there but they serve to counterweight the heftiness of the GC, which has to i.e. track allocations, discover which objects are still reachable, move shit around, reclaim dead objects, etc. And in general even if heap allocation ends up cheaper you just end up allocating way way more shit on the heap in these languages.
>>
>>108416540
You often *do* see Java/Go/SBCL benchmarks outperforming C++/Rust/etc programs. This is maybe the only good thing about the computer language benchmarks game in that it has multiple entries for a given language and you can see a mix of samples and judge for yourself whether they represent idiomatic code or are competing for who can use the most unsafe annotations and intrinsics to squeeze out the most performance on a single micro benchmark.
An old common footgun in C++ land is losing so much performance to copy constructors.
A recent example for Lisp and Rust is https://renato.athaydes.com/posts/how-to-write-slow-rust-code.html
I also recall once reading about a person using Go for real-time video streaming. They had much better performance than VLC, which is C and C++, though not as good as ffmpeg's ffplay which is mostly C and assembly.
There's also the experience from businesses that replaced or didn't allow the creation of new C++ a hot minute after Java came on the scene. It didn't always perform better, much of the gain was just being far easier to reach acceptable performance, but sometimes it did perform better too.

File: 1761167231412409.jpg (60 KB, 1280x720)
60 KB
60 KB JPG
https://dylanmtaylor.com/posts/2026-03-19-googles-new-android-sideloading-flow-is-a-fair-trade.html
Yes, this is the same Dylan responsible for https://github.com/systemd/systemd/pull/40954
17 replies and 1 image omitted. Click here to view.
>>
>>108413679
Written with gemini, then touched up to appear more organic.
>>
>>108413679
What's his opinion on Zionism?
>>
File: 1772944606921675.png (169 KB, 374x500)
169 KB
169 KB PNG
>>108414044
>>
>>108413679
I suspect this persona isn't real at all.
>>
File: 20240329010623_1.png (161 KB, 326x379)
161 KB
161 KB PNG
>>108413679
and the most raped goyslave award goes to Dylan the Cuck

File: 18-03-2026 00-09.png (1.93 MB, 1920x1080)
1.93 MB
1.93 MB PNG
F1 Edition.
Previous Thread: >>108358243
129 replies and 53 images omitted. Click here to view.
>>
>>108416029
retard
>>
File: file.png (893 KB, 641x1080)
893 KB
893 KB PNG
>>108416610
>>
>>108416643
non-verbal autist can only respond in images
>>
>>108416658
>>
>>108416643
KEK

File: 0x0.jpg (37 KB, 559x440)
37 KB
37 KB JPG
does anyone else got the feeling that google shows worse results recently? sometimes I search for a webpage or a video exactly by name and it won't show up
27 replies and 4 images omitted. Click here to view.
>>
>>108413287
This site is worse than Google.
>>
>>108413287
>all poo names
Lol. Lmao, even.
>>
>>108408463
Used to be able to search "companyname confidential" on there before to dig up accidental source code/PDFs and shit from open directories
Now google doesn't even index fucking github properly, you can try searching for a line of code from some popular project and it'll be hit or miss if google can find it
>>
Search engines are a crutch for people to not link to things or learn how to use their bookmarks or actually make indexes of things they care about.
Killing search engines is the only good thing to come out of AI.
>>
>>108413279
>their stock is up considerably.
Nobody on this board cares because they're all poor and unemployed wannabe programmers.

File: 1704531673536380.png (107 KB, 370x349)
107 KB
107 KB PNG
>nvidia bros get dlss5
>amd bros dont even get fsr4 on their series 7000 and below
is dlss5 going to be the final nail in the coffin for amd? there is no reason to buy their gpus now unless ur on linux
45 replies and 3 images omitted. Click here to view.
>>
why do you guys feel the need to insult each other?
>>
There's no sign you can actually turn off the AI part of DLSS 5
https://www.tomshardware.com/pc-components/gpus/jensen-huang-says-gamers-are-completely-wrong-about-dlss-5-nvidia-ceo-responds-to-dlss-5-backlash

They've only said so far you can tardwrangle the AI to not change things too much, and at that point why turn it on at all, and why include it in the hardware?
>>
>>108413535
How are Nvidia's AI faces the final nail in the coffin for AMD?
>>
this is the stupidest tech feature I've ever seen in my life
>>
>>108413535
>y-you can't slopify your games!
didn't ask but cool

File: voidflag.png (79 KB, 1920x1080)
79 KB
79 KB PNG
>new kid on the block
>best distro
how did they manage to succeed where so many others have failed?
92 replies and 7 images omitted. Click here to view.
>>
>>108407328
It's really not that complicated why some people don't like anime, especially on the right wing. The majority of anime today is either very feminizing, childish or degenerate. I'm willing to bet most anime watchers are left leaning more than right because of this. All this cuteness aggression shit is cope.
This is coming from someone who used to watch anime on quite a regular basis before I grew into an adult.
>>
>>108390794
It's old. New one AerynOS
>>
>>108416094
>AerynOS
>Rust distro
no thanks.
>>
>>108416094
>systemd
what's the point
>>
>>108416094
DOA

File: 1773952480991.png (212 KB, 1920x1080)
212 KB
212 KB PNG
This is what you will have to do if you want to sideload on Android from now on. Why is this allowed?

Step 1: Enable Developer Mode
No more quick toggles. You’ll need to manually enable developer options first.

Step 2: Confirm you’re not being coerced
Android will explicitly ask if someone is guiding you through disabling protections on your device as a direct response to scam tactics.

Step 3: Restart your phone
This cuts off active calls, remote access, or screen-sharing sessions

Step 4: Wait 24 hours
Yes, really. There’s a mandatory one-day waiting period before you can proceed and sideload an app from an unverified developer. Google calls it a “protective waiting period.”

Step 5: Re-authenticate

Comment too long. Click here to view the full text.
75 replies and 13 images omitted. Click here to view.
>>
>>108414468
fake news, Google Play Market is totally free from scams and malware applications (Google says so)
>>
>>108408893
this is actually worse than iPhone. time to switch.
>>
>>108409751
The other week through fdroid.
And last month to test a pedometer app I'm making.
>>
>>108408893
>biometric autentification
hell no, what if I don't have than nonsense in my phone, banking apps already forced you to enable that garbage tho
>>
>>108409633
I swear masons didn't exist pre 2010, all the satanism shitting started around 2020, internet died in 2017, this current one is mostly deadshell and full of brainwhashing. and now you have the pedomafia and apparently the average poltard was right about jews even tho, they were just being edgies on internet

File: perl-book-cover.jpg (71 KB, 500x750)
71 KB
71 KB JPG
give me a single good reason for why I shouldn't use it that doesn't involve syntax or the ugly code that a mediocre programmer wrote one day
118 replies and 26 images omitted. Click here to view.
>>
I've gathered most of the old directories I have so now I'm sorting them and completing them.
I'll probably upload the zip tomorrow. Don't let the thread die please.
>>
>>108408489
Perl modules shipped with the distro are of sufficient freshness and quality to suit whatever purpose the distro needs them for. The same goes for the Perl version and build flags.
You should not be using the distro builds of stuff for your own projects unless you're a developer for said distro (which 99% of developers aren't). They are not intended for your projects. The distro will not consult you when they decide to ship a new, incompatible library (or module, or interpreter) in a future version, and your shit will break horribly. They will not ask your permission to remove a module from their repos.
It doesn't matter if you program in C or Perl or Python. The distro does not build libraries for you, never has and never will.
If you publish your projects for others, they WILL be using different OS versions with different sets of libraries. Your shit shouldn't break just because their DISTRO uses a different Perl for its own internal purposes. You should either bundle Perl with your project, or require a specific Perl build as a dependency, or test and validate your project against that specific build on that distro and whitelist it.
Many developers don't understand this basic principle and then blame Perl (or Python, or OpenSSL) when it doesn't suit their project, despite their own misconceptions having caused the issue.
>>
File: 00.gif (844 KB, 180x180)
844 KB
844 KB GIF
>>108413401
Waiting and praying!
>>
there's nothing you can do with perl that you cannot do better and easier with python
>>
>>108415419
perl is fast though

>>108396832
you're thinking of wakaba/kareha, which was a perl rewrite of futallaby, 4chan's old script. it was actually pretty decently written perl and still runs with no modifications iirc

File: 456443.png (66 KB, 1020x373)
66 KB
66 KB PNG
>you know, I think I'm gonna finally give this Linux thing a try
>*instantly nukes computer*
21 replies and 5 images omitted. Click here to view.
>>
>>108415534
>>108415549
>>108415560
people don't actually know how computers work, why are you surprised? this is why people hijack executable/image servers in the first place. it's free real estate.
>>
>>108415289
>If you downloaded or opened a file named “Xubuntu-Safe-Download.zip”
Yeeeah, I have literally zero empathy for people that retarded.
>>
>>108415339
I agree, ubuntu did some retarded redundant work making all those distros just because it has different desktop environments, they should make one distro and make installing the desktop a user selection during install
>>
>>108415339
Normies are too paranoid about breaking their entire OS if they install more than one DE/WM at a time, so they have to be spoonfed dedicated spins like these and the Fedora ones.
>>
>>108416041
>>108415546
OH NO NO NO NO NO NO NO
AAAAAAAAAAAAAHAHAHAHHAAHAHAHAHAHHAAHAHAHAHAHHAAHAHAHAHAHHAAHAHAHAHAHHAAHAHAHAHAHHAAHAHAHAHAHHAAHAHAHAHAHHAAHAHAHAHAHHAAHAHAHAHAHHAAHAHAHAHAHHAAHAHAHAHAHHAAHAHAHAHAHHAAHAHAHAHAHHAAHAHAHAHAHHAAHAHAHAHAHHAAHAHAHAHAHHAAHAHAHAHAHHAAHAHAHAHAHHAAHAHAHAHAHHAAHAHAHAHAHHAAHAHAHAHAHHAAHAHAHAHAHHAAHAHAHAHAHHAAHAHAHAHAHHAAHAHAHAHAHHAAHAHAHAHAHHAAHAHAHAHAHHAAH

File: 1631916477979.webm (2.91 MB, 1280x720)
2.91 MB
2.91 MB WEBM
Do you decorate your GitHub profile?
17 replies and 1 image omitted. Click here to view.
>>
File: Github.png (1.89 MB, 689x1777)
1.89 MB
1.89 MB PNG
of course
>>
>>108414631
>digital nomad

My brother inlaw called himself unironically a digital nomad because he works from home full-time. I was think dude you are a shut-in, the opposite of a nomad.
>>
>>108415889
Rust repo?
>>
>>108414560
Nope my GitHub profile is just as plain and ugly as the day I made my GitHub account
>>
>>108414560
1. Your video lacks audio
2 I deleted my github long ago.

File: adt op 01.jpg (826 KB, 1920x1088)
826 KB
826 KB JPG
Previous: >>108309853

>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/

>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.
120 replies and 46 images omitted. Click here to view.
>>
Do we add /2huai/ to the OP again?
>>
File: ComfyUI_05400_.png (1.13 MB, 1024x1024)
1.13 MB
1.13 MB PNG
>>108415513
dont see a reason to since they themselves don't want to be added
>>
Do checkpoints bigger than 6gb really exist? Do they run on larger capacity GPUs and have more parameters?
>>
>>108415759
there's bigger models like flux2 but I dont actually know if the checkpoints are bigger or if the extra size comes from the LLM TEs
>>
>>108416569
Flux 2 diffusion part is either 10B or 20B params, what i know is that it uses mistral small 24B as a text encoder.

File: Seal_of_Illinois.svg.png (511 KB, 960x958)
511 KB
511 KB PNG
Illinois HB5511 and HB5066, age verification bills, rescheduled for new hearing for March 25.

File a witness slip in opposition.
HB5511 (Requires your operating system, including Linux, to broadcast your age to all the applications on your computer)
https://ilga.gov/House/hearings/details/3062/22637/CreateWitnessSlip/?legislationId=167486&GaId=18&View=Create

HB5066 (ID uploads and face scans to use social media, including forums, IRC, 4chan, etc)
https://ilga.gov/House/hearings/details/3062/22637/CreateWitnessSlip/?legislationId=166575&GaId=18&View=Create

Instructions for filing witness written testimony if you live in Illinois
https://ilga.gov/Uploads/Testimony/House/Remote_Committee_Hearing_Process_February2025.pdf


I'm less worried about HB5066 because similar laws have been ruled unconstitutional in the courts. But HB5511 will allow groomers to run websites and deploy apps and collect information on who all the children are because their operating system will rat them out. HB5511 will also essentially ban all websites from being available in the state if the user's operating system doesn't rat out the user's age. It'll create huge liability for open source hobby projects as well!


Comment too long. Click here to view the full text.
>>
>>108414397
Compelled speech is not legal
>>
HB5066 is far worse than HB5511.
>>
>>108414397
So everyone has to jump through hoops and suffer just because lazy parents can not be bothered with managing their children

File: AMD-AM5.jpg (299 KB, 2223x1321)
299 KB
299 KB JPG
>Get a am4 cpu and motherboard upgrading from ivy bridge.
>first mobo i got on amazon was broken when it arrived
>get a new one
>that one works
>Over time from 2023 2024 it works fine >although there are a few issues and I cant use xmp
>2025 arrives.
>im working on a game.
>i have these crashes almost everyday where the system freezes
>eventually my usb controller stops working
>have to get a new motherboard.
>the old motherboard fucked my ryzen cpu and guess what.... the pins were bent when it came out :( and yes it was the mobo...
>have to rush order a new CPU
>finally things work for a about a day.
>then the SAME freezes happen again but this time EVEN worse
>Eventually I learn its the PSU

Comment too long. Click here to view the full text.
33 replies and 6 images omitted. Click here to view.
>>
>>108415359
But like if it is sarcasm.. then might i remind you that I pulled out cpus from my gigabyte motherboard and they came out fine so I KNOW that its not my fault.. BOTH cpus that went into that asus board came out with broken pins.
>>
>>108414855
kek, shrimple as.
also, OC'd my 3700x in 2020 to its limits. never turn it off. ever.
OC'd the 3 core amd to its limits in 13, never turned it off ever. still runs as server...
whats the problem?
>>
File: GitGud_Front.png (53 KB, 700x700)
53 KB
53 KB PNG
>>108414327
sounds like a skill issue to me.
>>
>>108415311
it wasnt packaged airtight with seals?
and you didnt check the socket?
should have just returned it.
>>
>>108414473
whats the deal with am4? i havent bought a computer in like 20 years


[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.