/g/ - Technology

Board dedicated to discussions related to everyday technology!

0/4000

BharatChan Disclaimer

Notice

Before proceeding, please read and understand the following:

1. BharatChan is a user-generated content platform. The site owners do not claim responsibility for posts made by users.

2. By accessing this website, you acknowledge that content may not be suitable for all audiences.

3. You must follow BharatChan’s community guidelines and rules. Failure to do so may result in a ban.

4. By using BharatChan users agree to the use of cookies, mostly for session related to user.

A poster on BharatChan must abide by the following rules:

Sitewide Rules
You must be 18 or older to post.
Sharing personal details or engaging in doxing is strictly prohibited.
Political discussions should be confined to /pol/.
NSFW content is only allowed in /kama/.
Off-topic discussions, thread derailment, or spam may result in a ban and IP blacklist.
Pornographic content is strictly prohibited.
Any activity violating local laws is not allowed.
Acknowledge

Recent Posts

b-bros just installed arch linux

View

IDE's should be the norm

View

View

View

User extensions to Bharatchan

View

View

Mac vs PC

View

View

बिना वीपीएन के टाॅरेण्ट डाउनलेड कर लिया

View

View

cock.li in distress

View

This book is my geeta

View

View

Firefox is more unoptimized than chrome

View

liquid glass more like liquid -

View

Aarambh hai prachand..

View

Can anyone bomb his WhatsApp or fuck his phone up ...

View

Every software is open source of you know assembly

View

View

Placement

View

Can Quantum Computers Actually Beat Humans, or Are...

View

He was right

View

View

alternative frontends

View

View

Daily Reminder

View

Gaymes on Linux

View

Apple WWDC 25 Event

View

friendship ended with xfce now kde is my best frie...

View

opensuse appreciation thread

View

View

Billions must commit env in main

View

All you ever need

View

View

View

View

any xfce users here?

View

google gave me free access to gemini 2.5 pro

View

View

just installed Arch Linux bros

View

View

View

Recommend me a no nonsense browser

View

View

AI wrote 90% of the code at microsoft

View

View

Working on my game in a late night game dev sessio...

View

skills

View

Good lua scripts for MPVplayer?

View

Sketch - A simple 2D graphics library in C

View

Every software is open source of you know assembly

Anonymous

IN

18oBo8

No.309

.

Anonymous

IN

Eizkjq

No.386

>>309(OP)

still difficult to contribute though

Anonymous

IN

BXcrgY

No.393

>>309(OP)

EVER SOFTWARE IS SHIT IF YOU KNOW BINARY, NIGJA GET THE FUCK OUT OF HERE :3

DGH

!XShledrwphaLWim

IN

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.

Anonymous

IN

1ml2Od

No.470

>>469

why did you come back anon?

you said you will study for upsc

IN

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.