Recent Posts
Emacs
poast your fav cool websites
Give me one tech tip you know about
Urge to watch Mr. Robot Hindi dub
/cyb/+/psg/: Cyber-Punk/Security & Privacy
soyjak.st forum which hacked 4chin blocks all indi...
Have you discovered female luke smith yet?
Aarambh hai prachand..
OTG vs Microwave
which llm subscription is the best
Tell me all about indiachan/bharatchan lore
How do people who have a job get time to code on s...
Great time to be a /g/enius
Just found out linux foundation has their own free...
the best android browser has arrived!!
My ThinkPad arrived
(((Open)))ai playing new tricks
NEED ADVICE FROM true /g/entooman
Create something interesting with your skills now ...
Gonna make my own 34-key keyboard
which software on PC and mobile you use to handle ...
🦀🦀🦀🦀🦀
C++ Resources
Local Models General
GPT-5
What is shell programming
Libre Thinkpads
Computing
Tech Scams
Thinkpads are the best Laptops
M. tech. thesis suggestion,ideas.
Linux /gen/
Indian related AI discussion
privacy chuds gtfih
Best LLM model for coding and maths.
PuchAI
Every software is open source of you know assembly
18oBo8
No.309
.
Eizkjq
No.386
>>309(OP)
still difficult to contribute though
BXcrgY
No.393
>>309(OP)
EVER SOFTWARE IS SHIT IF YOU KNOW BINARY, NIGJA GET THE FUCK OUT OF HERE :3
!XShledrwphaLWim
vz0Ze4
No.469
>>309(OP)
Fun fact: C and C++ aren't programming languages. Technically, they are just standards. Implementing them is up to the compiler authors. The compiler authors themselves can add some non-standard extensions.
Also, when you write in any compiled language, you aren't giving instructions to the computer itself. You're actually giving instructions to the compiler. It is up to the compiler what it wants to do with the final code: optimization, compression, minimization, etc.
When you code in an interpreted language, you're actually giving instructions to the interpreter/JIT compiler.
The only true way of programming is to write in assembly or binary opcodes.
1ml2Od
No.470

HzQB6F
No.1243
>>469
Even in case of assembly, it depends upon the kind of platform you are working on, PCs come with OS, that itself abstracts away a lot of stuff, I have read and written aarch64 assembly for apple silicon, you can do sys calls for basic I/O read and write, you can also straight up branch to labels such as _printf, these symbols link to libC functions.
You can write pure assembly only on Bare Metal.