[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: rust trannies.jpg (329 KB, 910x1486)
329 KB
329 KB JPG
>When I tried to figure out what was going on, the language had changed since the last time somebody had posted a description! And so it took days to write a program which in other languages would take maybe five minutes!

Is this why most of the rust programmers are trannies? Because they like pain and suffering?
67 replies and 6 images omitted. Click here to view.
>>
>>106532045
>If you care what Brian Kernighan thinks so much why don't you go join the IDF?
>your brain on rust
>>
>>106531103
ignorant tryhard
>>
>>106531703
>dust is in fact, slower than du
I use it on a HPC with hueg GPFS full of many tiny bioinformatics files. It's night and day between it and du.
I don't know what your use case is where it's slower.

>>106532006
Not for the core utilities sure, but there could still be C versions of them if their improvements aren't rust related, right?
>>
>>106532960
could be? yes
are, will be? no idea
I never heard anyone say damn grep is so slow I wish it were faster
>>
>>106533051
>I never heard anyone say damn grep is so slow I wish it were faster
Talk to some bionformaticians.

Essential software for Windows 95/98/ME/2000?
Bonus points for non games
50 replies and 6 images omitted. Click here to view.
>>
File: R(3).jpg (78 KB, 658x800)
78 KB
78 KB JPG
>>106528878
Did you guys end up being astronauts?
>>
Wordpad
>>
>>106532357
image library/viewer
>>
File: ntp.png (30 KB, 574x602)
30 KB
30 KB PNG
>>106528878
>NoteTab Pro
Lightweight but powerful plain text editor. I still use it as my main text editor and it mogs 99% of what's out there and is faster. Still works on 9x though.
>>
>>106530587
Based but v7 was the best one.

File: OIP(17).jpg (34 KB, 474x423)
34 KB
34 KB JPG
>giving your coworker wife pointless busywork to do so she doesn't fucking annoy you at work
>>
No fun
>>
My work wife runs circles around you script kiddies

File: 1663208950379621.png (503 KB, 704x512)
503 KB
503 KB PNG
Post your best deals, and worst.. annd your most retarded, lmmfao.

https://youtu.be/H1lfbOQACco
8 replies and 1 image omitted. Click here to view.
>>
>>106528871
Boughted this 3d printer for like 250$ with a warranty and all. https://3dflyingbear.com/collections/reborn-3
>>
cado on the log
>>
File: 1739895794701835.png (599 KB, 832x902)
599 KB
599 KB PNG
>>
File: 1738220161148562.png (1.27 MB, 1179x1143)
1.27 MB
1.27 MB PNG
>>106532942
>>106528871
Why is it always nickacado's asshole?
>>
>>106532970
why am i able to see it perfectly in these images despite only seeing the image briefly a couple times?

File: 1756235472097112.jpg (14 KB, 400x400)
14 KB
14 KB JPG
> Install Linux.
> Want to play games.
> I don't have any money.
> Download pirated software There are no ports for Linux.
> The only games I can play are LBreakkout2, tic-tac-toe, and mahjongg.
How did you uninstall this shit?
37 replies omitted. Click here to view.
>>
Why the heck would you install Linux? Are you a masochist? Do you have too much free time? A lobotomy is a better use of your free time than trying to make Linux work, you know?
>>
>>106525439
>Install Linux
There's your problem.
>>
>>106532439
>0 seeders
Same joke as recommending Linuxrulez torrents kek.
>>
Windows 11 pro is still objectively better for gaming than Linux. That's a fact and I say that as someone who has been primarily using Linux for 4 years now.
However, Linux is good enough that I can live with any shortcomings. VRR works. HDR works. Response times are identical.
>>
Install bsdgames and Nethack

File: *eshell*.png (8 KB, 549x707)
8 KB
8 KB PNG
>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.amodernist.com
https://systemcrafters.net/emacs-from-scratch
http://xahlee.info/emacs
https://emacs.tv

Comment too long. Click here to view the full text.
115 replies and 22 images omitted. Click here to view.
>>
>>106528020
>org-srs is based
Link? Is this org-drill? If so, isn't org-drill unmaintained? It also had some problems with its timestamp formats in newer org versions
>>
>>106531244
(defmacro internal--thread-argument (first? &rest forms)
"Internal implementation for `thread-first' and `thread-last'.
When Argument FIRST? is non-nil argument is threaded first, else
last. FORMS are the expressions to be threaded."
(pcase forms
(`(,x (,f . ,args) . ,rest)
`(internal--thread-argument
,first? ,(if first? `(,f ,x ,@args) `(,f ,@args ,x)) ,@rest))
(`(,x ,f . ,rest) `(internal--thread-argument ,first? (,f ,x) ,@rest))
(_ (car forms))))

What the fuck is this doing? f and x are not declared anywhere
>>
>>106530286
I'm not sure how that relates to my question
>>
>>106531357
pattern matching, read the pcase documentation
>>
How do people in lisp land that want to make webshit deal with the lack of an established web framework? I'm trying to build a SaaS product, and I want to use clojure, but part of me is feeling like I should just fall back to the comfort of rails. Am I thinking about it all wrong? Is the framework approach just not the done thing? How do people navigate this?

File: 1739637869324327.png (1.45 MB, 1014x1014)
1.45 MB
1.45 MB PNG
FAQ:
>How do I activate Windows?
HWID2 generates and registers a permanent legitimate license on MS's activation servers
github.com/massgravel/Microsoft-Activation-Scripts
Usage: paste this into Powershell, run.
irm https://get.activated.win | iex

>and Office?
Same link, select Ohook option
You can also use Office.com if your needs are very minimal
or try OnlyOffice/LibreOffice and set it to save in MSOffice file formats

>What version should I install?
>W10 Enterprise IoT LTSC 2021
Binary identical to Enterprise except no MS Store or apps
Preinstalled with: Edge & Win32 system apps

Comment too long. Click here to view the full text.
129 replies and 17 images omitted. Click here to view.
>>
>>106531781
wait for what? you're saying i should keep the kb5064081 update?
>>
>>106531834
Could nullify whatever could be wrong with it who knows
>>
File: 345432123.jpg (60 KB, 914x619)
60 KB
60 KB JPG
>>106531570
No need to reinstall.

Just go on settings, "reset this PC". Then, pick the "keep my files" option.

Then, download and use DDU:
https://www.wagnardsoft.com/content/Download-Display-Driver-Uninstaller-DDU-18131

So the display driver can be 100% removed, then just download and install nvidia/amd drivers again.

If the problem persists, it's a hardware issue.
>>
>>106531617
That's fair enough.
>Winhance
Fairly good but not comprehensive. For example pretty much every home user will have no use for Microsoft.AAD.BrokerPlugin or PowerShellV2 (which even MS recommends removing because its a security risk).
>WinUtil
Kinda really sucks and so does MicroWin but I guess it serves its audience

I haven't been able to find a single graphical tool that is both comprehensive and customisable. May as well just use DISM and the other tools direct for offline or online customisation. Unless you just want to remove some start menu entries
>>
>>106524868
>unfinished firmware versions, which were never intended for end users,
so it’s you buying shitty SSDs

File: 1682893283310823.png (219 KB, 675x499)
219 KB
219 KB PNG
>human intelligence is not symmetrically distributed
>it is biased towards the low end
>drug abuse and other reasons mean you can accidentally/intentionally get dumb
>rarely does one accidentally get smarter

there is not just one retard for every ten normies, there are actually two, and then there's just one (You), of course.

this realization, that is more likely to be closer to objective reality than the widespread misrepresentation of human intellgience distribution, helps me a lot.
21 replies and 2 images omitted. Click here to view.
>>
>>106532036
IQ distribution is actually a bit more complicated than this. Ever since analysing scottish school children grades in the 1930s we know that there is a so called "Greater Male Variability" in a lot of skills, including IQ. This means that women group around the average, while men polarize aroud the extremes.

Which end of the male spectrum does /g/ attract?
>>
>>106532036
>>106532070
IQ is a standardized score, and is normally distributed /by design/. By "intelligence", we mean this standardized, normalized, IQ score. The raw data is close to be normal, though, at least in healthy individuals.
There is no "particle of intelligence" or anything that we could reliably measure. "Intelligence" is the IQ, but what we may perceive as "intelligence" may not be measured in an IQ test. Is a poor and undeducated high-IQ individual, working a manual and "dumb" job, more intelligent than a 100-IQ engineer producing good results? Some of the things that we may want to intuitively call "intelligence" can come from various things unrelated or weakly linked to IQ, like the level of education or even creativity.
IQ is not that important, and knowing it doesn't bring much info.
>>
>>106532793
>I'd be willing to bet that the 68IQ now outnumbers my IQ level by 3x to 4x
Yeah, this is the problem, it seems crass at first, but when you zero in on the specific range, those numbers become very plausible, due to the general discrepancy in average differences.

I don't even want to judge, I just want to know what to assume, for sanity.
https://wiki.c2.com/?MappersVsPackers
>>
>>106532082
>So really, what is even the usecase for FreeBSD?
Its purpose is to be a server OS. That's it. It's bred solely for being a server OS. It also is a decent desktop OS but why lmao
>>
>>106532844
>n=801
Not bad for 1933.
But that (vertically symmetric) bump at IQ=75 is obviously an outlier, due to the low sampling number.
Hence
>How many such studies even exist?
I mean, I don't *really* care enough about it, to look for it, I just almost forgot about it again.
I mean
>fuck HN
>fuck leddit
cheers, anon.

What is it like working in a big tech company?
Are you stressed or happy?
>>
>>106532987
My brain hallucinated the word "faggot" for a microsecond after seeing the logos
This site ruined me

File: whereareyoubased.png (6 KB, 228x193)
6 KB
6 KB PNG
Application form asks where am I based. What should I type?
22 replies and 1 image omitted. Click here to view.
>>
>>106530166
Based on what?
>>
File: 1750574304368431.png (1.05 MB, 1398x917)
1.05 MB
1.05 MB PNG
>>106530166
>>
File: 175690821735834855.gif (753 KB, 400x300)
753 KB
753 KB GIF
>>106530166
>What should I type?
Niger
>>
>>106530166
based department
>>
>>106530166
But shouldn't it say "When were you based?"

File: 1744586999372658.mp4 (2.45 MB, 576x1024)
2.45 MB
2.45 MB MP4
usecase for CERN?
6 replies omitted. Click here to view.
>>
Good point. Take out all the funding and more money is available for helping humanity by feeding the poor.
>>
>>106531670
That would be murder on your wrists.
>>
>>106531670
it had a good run but now they should stop instead of trying to go even bigger. There is a need for alternative accelerator designs that are more compact instead of chasing ever bigger circles.
>>
>>106531670
you can make micro bullet holes in your body so tiny that you do not feel pain

you can collide dna from hitler with dna from stalin to create dna instructions for ursula
>>
>>106531912
this desu
it's not overly practical but it helps us understand the universe, which again maybe is not as practical as developing airless tyres or selfhealing rubber shoes but either way, interesting.

File: file.png (236 KB, 1354x590)
236 KB
236 KB PNG
can anyone send me this course? i really need it bros
https://www.techworld-with-nana.com/it-beginners-course
>>
>>106531744
Is Nana a man?
>>
>>106531765
no
>>
>>106532862
damn
>>
>>106532885
did u find the course doe?
>>
>>106531744
https://youtu.be/LfaMVlDaQ24

File: 2025-09-07_21-48.png (299 KB, 585x574)
299 KB
299 KB PNG
lmao, i can't believe i used to pay artists hundreds of dollars for artwork

do you feel bad for artists?
161 replies and 22 images omitted. Click here to view.
>>
>>106532618
The end goal of AI is for us to get UBI after AI can do our jobs and spend the rest of our lives doing what we please to do dumbass fucking luddite coping artist
Anyone with braincells is pro that
>>
>>106532641
Bait or indian?
>>
>>106532641
And the noble knight in shining armor will arrive on his steed and proclaim UBI for all individuals! The wealthy elite will then gladly redistribute their wealth so that all humans can now do as they please! If not, the knight will force them to. We just have to wait. Then we will live happily ever after in a new AI utopia.
>>
>>106518060
>do you feel bad for artists?
Not at all
>>
>>106532641
The end goal is that you starve to death or get executed by death squads.

File: 1756983743771135.jpg (690 KB, 1360x1020)
690 KB
690 KB JPG
Users of all levels are welcome to ask questions about GNU/Linux and share their experiences.

*** Please be civil, notice the "Friendly" in every Friendly GNU/Linux Thread ***

Before asking for help, please check our list of resources.

If you would like to try out GNU/Linux you can do one of the following:
0) Install a GNU/Linux distribution of your choice in a Virtual Machine.
1) Install a GNU/Linux distribution of your choice on bare metal and run your previous OS in a Virtual Machine.
2) Use a live image and to boot directly into the GNU/Linux distribution without installing anything.
3) Go balls deep and replace everything with GNU/Linux.

Resources: Please spend at least a minute to check a web search engine with your question.
Many free software projects have active mailing lists.


Comment too long. Click here to view the full text.
294 replies and 39 images omitted. Click here to view.
>>
>>106532684
Yea I think EAC is the most documented one to get around. The VR Chat wiki has an entire article basrd around it:

>https://docs.vrchat.com/docs/using-vrchat-in-a-virtual-machine
>>
>>106532637
>Isn't TPM just a PCIe device
I2C actually.
>>
File: EMV-Chip-Card.jpg (29 KB, 826x581)
29 KB
29 KB JPG
>>106532028
TPM does roughly the same as chips in chip cards: it stores private keys without any way to access them. You can totally emulate that from the host.
(although it waters down the actual idea of having securely stored keys)
>>
>>106517066
0.15w is more than 6 Zen 2 cores eat on idle, the fuck (ignoring eternal 20W of IO shit of course)
>>
>>106517066
150mW from the antenna = 2000mW total

File: new youtube.png (1.53 MB, 1620x901)
1.53 MB
1.53 MB PNG
NIGGERS
306 replies and 57 images omitted. Click here to view.
>>
JUST give me a player where the interface is not over the fuckign top of the video jesus christ. we know how to determine if a user is on a mobile just give them the shitty vignette interface over the top of the video
>>
File: 1751207507321856.png (26 KB, 489x387)
26 KB
26 KB PNG
>>106491528
Not my problem
>>
>>106532241
vlc
>>
>>106532267
does this support ascii thumbnails
>>
>>106533002
It uses either chafa icat or imgcat for thumbnails, you just pick one


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