[ home / overboard ] [ soy / qa / raid / swa ] [ pol / int ] [ fort / craft ] [ a / an / fit / g / mtv / r / r9k / sude / tech / webm ] [ q / news / gem / chive ] [ rules / pass / bans ] [ wiki / booru / irc / blog / soysylum / dailyjak ]

A banner for soyjak.party

/sci/ - Soyence and Technology

I fucking love science!
Catalog
Email
Comment
File
Password (For file deletion.)

File: 1699206610770.png πŸ“₯︎ (31.5 KB, 179x255) ImgOps

 β„–20736Quote[Last 50 Posts][1][2]

what's the difference between C , C++ and C# ? Which should i learn?

 β„–20738Quote

C is a low level language that is literally older than your grandfather, it's a meme language and useless for anything but embedded and OS development. it also has a weird cult of fizzbuzzer skiddos built around it who spend their lives shilling it on imageboards.
C++ was the first object oriented language to become "mainstream" so to say. it's a superset of C but it's by now obsolete and has been replaced by more modern and better object oriented languages. there are still a lot of legacy codebases that use it, but it's unlikely that anyone mentally sane would start a business project with it today.
C# is a modern object oriented language developed by Microsoft and meant originally as an evolution of Java. it's very dominant in gaming and business applications development and allows you to do about everything you can think of (games, desktop applications, web applications, mobile applications and so on and so forth).

 β„–20741Quote

>>20738
partial retarderald doe it's true retards shills C for no reasons?

 β„–20743Quote

>>20738
trvke

 β„–20768Quote

>>20738
use rust like a normal person

 β„–20769Quote

C = C
C++ = C + Classes + Templates + you don’t have to reinvent linked lists, dynamic arrays, etc.
C# = Java but Microsoft

 β„–20770Quote

C is the good stuff everything that matters is written in, boomer language that built computers as we know them
C++ is C but with OOP (cancer), slower, overcomplicated, and only good for making video games or other large scale things
to know what C# is you first have to know what java is, basically its braindamage
now combine java with microsoft and some more braindamage and you get C#

 β„–20782Quote

>>20770
You are a fizzbuzzer who hates OOP because it’s cool to hate OOP. You don’t actually know the pros and cons of OOP. Doubt you know the difference between imperative and declarative.

 β„–20795Quote

>>20782
trvtherald

 β„–20796Quote

>Which should i learn?
having basic C knowledge is useful but for actual projects you should use C++ or C#
also C# jobs are much more common than jobs where you'd use C++ or C

 β„–20798Quote

>>20782
OOP is literal dogshit garbage useful only for theorytards who don't know how to program and never had to solve problems where 0.1% boost in performance saves millions of dollars per year.

 β„–20804Quote

>>20798
baiterald

 β„–20807Quote

>>20736
learn C first.
you will learn the basics of programming without having to learn OOP.
but mastering C takes years.
so stick to the strict minimum.
write a couple use cases for all C keywords and then learn something else. like C++. its an "evolution" of C. or even C#.

to be efficient in C you have to be really f* good and it takes ages. theres arcane shit like ilp you can learn only if youre confronted with an example in the codebase. or if youre a turbo autist like me. i had to go through opencl to start using this feature (opencl is C. but semi-asynchronous. same with CUDA. another reason to learn C, it opens the way to learn compute)

 β„–20808Quote

File: roadkill.jpg πŸ“₯︎ (88.59 KB, 700x467) ImgOps

>>20738
>t. rustroon
you can do stuff with C you cannot with rust.
i dont wanna shit up the thread too much, but i have a couple of snippets of code that are gonna show you what unspeakable things C does to rust

 β„–20809Quote

>>20808
post it

 β„–20811Quote

>>20804
Not bait, if you use C++ like "OOP language" you're a retarded nigger

 β„–20815Quote

>>20809
static inline t_epoch fn_fast_epoch(t_name *name)
{
// if (str->s[11])
// return (0);

char *str = name->s;

if (
((str[0] > '9') || (str[0] < '0') ||
(str[1] > '9') || (str[1] < '0')) ||
((str[2] > '9') || (str[2] < '0') ||
(str[3] > '9') || (str[3] < '0')) ||
((str[6] > '9') || (str[6] < '0') ||
(str[8] > '9') || (str[8] < '0')) ||
((str[4] > '9') || (str[4] < '0') ||
(str[7] > '9') || (str[7] < '0')) ||
((str[9] > '9') || (str[9] < '0') ||
(str[5] > '9') || (str[5] < '0'))
// || (str[10])
)
{
// fprintf(stderr, "bad\n");
return (0);
}

return(
((((str[0] - '0') * 1000000000) +
((str[1] - '0') * 100000000)) +
(((str[2] - '0') * 10000000) +
((str[3] - '0') * 1000000))) +
((((str[4] - '0') * 100000) +
((str[5] - '0') * 10000)) +
(((str[6] - '0') * 1000) +
((str[7] - '0') * 100))) +
(((str[8] - '0') * 10) +
(str[9] - '0'))
);

}

t_epoch is a signed long
and t_name can be sustituted for a regular char*: as you see i cast it into a char * anyways
4niggers rustroons got this snippet down to 50 and change cycles.
in C? its 16.
and with 1/10 the verbosity

 β„–20816Quote

>>20809
>>20815
(cont)
if its an early exit, it resoves in zero time

 β„–20817Quote

>>20809
oh, and to be completely frank, i compile it with -O3
but inb4 ->dats cheating
its not.
rust framework is supposed to do that for you by default.
were comparing framework to framework here. language vs language.

 β„–20818Quote

>>20809
and the code is to extract an epoch from a string, given that the string is padded with 8 bytes so it wont overflow.

 β„–20819Quote

>>20818
>padded with 8 bytes
8bytes set to zero

 β„–20822Quote

rust CANT compete with C.
bc you got all the bells and whistles that prevent your cpu from optimizing the shizz.

 β„–20825Quote

>>20824
programming languages.
you might wanna start here:
https://www.youtube.com/watch?v=2NWeucMKrLI&list=PL6gx4Cwl9DGAKIXv8Yr6nhGJ9Vlcjyymq

dont expect to get a job out of it tho
but its a powerful tool.

 β„–20826Quote

>>20798
>0.1% improvement that cost $300 of man hours instead of buying more RAM for $5/gb.
Fizzbuzzer

 β„–20827Quote

>>20826
>difference between 1hr of computation and 1 month
go back to your CSS.
boss is expecting that site to be done by the end of this week

 β„–20833Quote

>>20798
>the entire software industry is "theorytards"
the state of unemployed Cnile LARPers kek

 β„–20834Quote

>>20827
being unemployed is not a flex mr fizzbuzzer

 β„–20835Quote

>>20834
i employ myself.
you can seethe now.
i allow it.

 β„–20836Quote

>>20834
back to work you go, wageboy

 β„–20837Quote

>>20835
>>20836
believe it or not rewriting fizzbuzz in C for the 1000th time this week is not a job LMAO

 β„–20838Quote

>>20837
what makes you think thats what i do?

do you write in rust?
rewrite this:
>>20815
you have 16 cycles.

4 ns on a 4.2 ghz cpu

 β„–20839Quote

>>20837
to make it easy for you,
pad your buffer. i am not checking for buffer size, neither should you.
but i am chacking for null termination.
so pad your shit and do your best

 β„–20840Quote

>>20837
>but i am chacking for null termination.
if the format is wrong, ie theres not 10 nums you return 0.
so that we level the planefield.
im pretty sure youre gonna use high level shit like a mong and then get f*.
and that wouldnt be fair

 β„–20841Quote

>>20837
its been 21 mins since i gave you the latest hint.
41 since the beginning of the assignement.
you got 40 mins more. i will give you one hour bc thats what it took me to invent and benchmark this code. i might be more lenient, but i am also impatient.

despite what you might imagine i actually respect you.
but this is merely one example where rust actually meets C.
stdlib doesnt count bc a C coder worth his salt casually beats it.

 β„–20842Quote

>>20815
Whats an epoch

 β„–20843Quote

>>20815
Put everything in unsafe and do the same stuff, in trans btw

 β„–20844Quote

>>20842
its the number of seconds since 1st june 1970 irrc
the full name is "UNIX epoch" and thats the calendar for everything derived from that system.
so linux, macos and bsd.
and every OS i dont know about

>>20843
do it
C, rust, or 41%
but also benchmark it
and that would complcate things if you 41

 β„–20845Quote

>>20844
Get the asm and put in an wrapper for McDonald's or smth

 β„–20846Quote

>>20845
i cant into asm bc im grug
and thats why i do C
it has been designed for the likes of me

 β„–20847Quote

>>20844
Can i seer the io of this code

 β„–20848Quote

>>20847
you can see the whole code

——————–

#include <stdio.h>
#include <time.h>
#include <stdlib.h>
#include <unistd.h>
#include <fcntl.h>
#include <stdlib.h>

typedef long t_epoch;

unionu_name;
typedef union u_namet_name;

union u_name
{
char s[16];
long l[2];
};

static inline t_epoch fn_fast_epoch(t_name *name)
{
// if (str->s[11])
// return (0);

char *str = name->s;

if (
((str[0] > '9') || (str[0] < '0') ||
(str[1] > '9') || (str[1] < '0')) ||
((str[2] > '9') || (str[2] < '0') ||
(str[3] > '9') || (str[3] < '0')) ||
((str[6] > '9') || (str[6] < '0') ||
(str[8] > '9') || (str[8] < '0')) ||
((str[4] > '9') || (str[4] < '0') ||
(str[7] > '9') || (str[7] < '0')) ||
((str[9] > '9') || (str[9] < '0') ||
(str[5] > '9') || (str[5] < '0'))
// || (str[10])
)
{
// fprintf(stderr, "bad\n");
return (0);
}

return(
((((str[0] - '0') * 1000000000) +
((str[1] - '0') * 100000000)) +
(((str[2] - '0') * 10000000) +
((str[3] - '0') * 1000000))) +
((((str[4] - '0') * 100000) +
((str[5] - '0') * 10000)) +
(((str[6] - '0') * 1000) +
((str[7] - '0') * 100))) +
(((str[8] - '0') * 10) +
(str[9] - '0'))
);

}

void fn_strcpy(char *from, char *to)
{
int i = 0;
while (*from && i++ < 15)
*to++ = *from++;
to = 0;
}

 β„–20849Quote

int main(int ac, char **av)
{
int iterations = 1000 * 1000 * 1000 + 1;
// int iterations = 10;
// char *temp = (char *)&(name);

// char test[100] = "0123456789";
// t_name *name_test = (t_name*)test;

// fprintf(stderr, "test fast_epock : %ld\n", fn_fast_epoch(name_test));
// return (0);

if (ac != 2)
{
fprintf(stderr, "wrong numebr of args. need path to test table\n");
exit(1);
}

int fd = open(av[1], O_RDONLY);
if (!fd)
{
fprintf(stderr, "fd is null. path : %s\n", av[1]);
exit(1);
}

int size;
if (read(fd, &size, 4) < 0)
{
fprintf(stderr, "something went bork with fd. exiting\n");
exit(1);
}
fprintf(stderr, "size : %d\n",size);


if (size < sizeof(t_name))
{
fprintf(stderr, "dict size too small to do job properly. exiting\n");
exit(1);
}

char _buffer[size + 1];
char *buffer = (char *)_buffer;
*((int *)buffer) = size;

int rval;
if ((rval = read(fd, buffer + 4, size - 4)) < 0)
{
fprintf(stderr, "something went bork with fd when big-reading. exiting\n");
exit(1);
}
if (rval != size - 4)
{
fprintf(stderr, "something went bork with fd when big-reading.\nrval (%d)!= size (%d). exiting\n", rval, size);
exit(1);
}
buffer[size] = 0;

 β„–20850Quote

int int_final_count = size - sizeof(t_name);
t_name *name;
int i = 0;
t_epoch dummy_epoch = 0;
char c;
int j = 0;
clock_t begin = clock();
while (i < iterations)
{
name = (t_name *)(&(buffer[i % int_final_count]));
c = *(name->s);
dummy_epoch += c;
dummy_epoch %= 1001;
i++;
}
clock_t end = clock();

fprintf(stderr, "dummy epoch : %ld\n", dummy_epoch);
clock_t clock_baseline = end - begin;
double double_baseline = (double)(clock_baseline) / CLOCKS_PER_SEC;

// fprintf(stderr, "clock_baseline : %ld\n", clock_baseline);
fprintf(stderr, "baseline : %lf\n", double_baseline);



i = 0;
begin = clock();
while (i < iterations)
{
name = (t_name *)(&(buffer[i % int_final_count]));
c = *(name->s);
dummy_epoch += fn_fast_epoch(name);
dummy_epoch %= 256;
i++;
}
end = clock();

clock_t clock_spent = end - begin;
double double_spent = (double)(clock_spent) / CLOCKS_PER_SEC;
fprintf(stderr, "time spent: %lf\n", double_spent);
fprintf(stderr, "actual time: %lf\n", double_spent - double_baseline);
// fprintf(stderr, "actual time ratio : %lf\n", (double_stdlib - double_baseline) / (double_spent - double_baseline));
fprintf(stderr, "dummy epoch: %ld\n", dummy_epoch);

return (0);
}

 β„–20851Quote

>>20847
compile with -O3
it expects a path to a file as parameter for the executable.
the file is 4 bytes which are an int which tells the total size of the file, the rest is ascii.
making a link for a test file rn

 β„–20852Quote

Whats are you sposed to feed into this program and what to expect

 β„–20853Quote

Isnt long 32bits why is it unioned with 16 chars

 β„–20855Quote


 β„–20856Quote

>>20854
Im pretty sure 64bits is long long

 β„–20857Quote

>>20853
no, its 64 and its an array of 2 in the union.

 β„–20858Quote

>>20856
long long == long on x64

 β„–20859Quote

>>20858
Y dont you use stdint

 β„–20860Quote

>>20859
muscle memory tbh

 β„–20861Quote

>>20859
i love C bc i dont need to actually think about the language when i write in it

 β„–20862Quote

>>20859
also its intended for internal use
and i say that portable C is a retarded idea.
when its achieved, its by duplicate code hidden behind includes, gurded by defines.

C is NOT portable
and using the stdlib makes C 10x slower. also i say its THE source of bugs bc using the stdlib for anything else than system calls annihilates any possibility of code ownership.

in other words,
to do a good job using the stdlib
you have to learn the whole of it by heart, bc you never know which function calls what.

so i say
lets do freeform C.
drop the stdlib
own your code
fuck the idea of portability bc C is a macro asm

 β„–20863Quote

>>20862
>C is NOT portable
well it seems to be on arm and i386 linux, nothing else matters

 β„–20864Quote

>>20863
nonono
*idiomatic
*normie
*well behaved
C is portable

but whenever you get into the weeds
its all duplicate code
or its slow as all hell
for a simple reason:

a generalist solution has to do more checks than a specialized one
this is the reason you wanna use C
->to create a specialized solution
->it can be orders of magnitude faster even without using simd

 β„–20865Quote

learn assembly
>not portable!
>too complex!
fizzbuzzers CAN'T into assembly language

 β„–20866Quote

>>20862
C is extremely portable retard. Name something more portable that isn’t FORTH.

 β„–20867Quote

>>20866
absolute fucking illiterate C gets btfod with stupid fucking streams. or endianness without defines

>le C is portable

bc you include 20k lines of code with every header you include you absolute gorilla

 β„–20868Quote

>>20867
big endian processors are irrelevant, everything should be written for little endian

 β„–20869Quote

>>20868
>le c portable le nuh

 β„–20870Quote

>>20868
windows btfos your c code
its not even a matter of architecture

 β„–20872Quote

>>20868
step 1: remove stick from ass
step 2: kill clean code with fire
step 3: enjoy

 β„–20875Quote

>>20867
I’m talking about freestanding C. Endianness is going to be messy when you are using a language with pointers. Headers don’t increase binary size so i don’t get the complaint.

 β„–20876Quote

>>20865
Fizzbuzzers use assembly because they care about the 0% performance gain (in reality 10% performance loss because they didn’t actually check the cycle table).

 β„–20877Quote

File: 1681844296310.png πŸ“₯︎ (28.4 KB, 255x251) ImgOps

>cycle table

 β„–20878Quote

>>20877
Yeah exactly nobody wants to look at a fucking cycle table

 β„–20879Quote

>>20875
>freestanding C
i think youre talking about the opposite, actually.
what i would call freestanding c, you would call an ugly ass hack
but thats bc i tend to work with the primitivest of types bc i "target a specific platform" in politically correct

 β„–20880Quote

>>20875
now that i think of it
there isnt much that would make my code non-portable.
the syntax more than anything else tbh

 β„–20881Quote

>>20879
No, the person I was responding to brought up streams which don’t exist in freestanding C (or any file io)

 β„–20882Quote

>>20880
Assembly language (if that’s what you are writing in) is not portable. C is portable but less portable than Ada.

 β„–20884Quote

>>20881
same person
but then you see that at an even lower level than what i call freestaning c, c is even less portable.
there youre 100% hw-specific

otherwise youre at least posix and then you have streams

>>20882
i wouldnt call it portable.
yes, for instance, you can run int 64's on a 32bit machine, but its gonna run like a tank
so is it really portable?

 β„–20888Quote

>>20884
Yes it is portable. Portable means that you are able to retarget compilation for a different arch and possibly a different OS. Just because something will run like shit doesn’t mean it isn’t portable. 64-but longs are optimized with SSE by Clang. POSIX is not C. Windows is written in C but has no unistd.h or posix support (unless you use the POSIX subsystem)

Freestanding C has a specific definition according to ISO 9899:

A conforming freestanding implementation shall accept any strictly conforming program in which the use of the features specified in the library clause (clause 7) is confined to the contents of the standard headers <float.h>, <iso646.h>, <limits.h>, <stdalign.h>, <stdarg.h>, <stdbool.h>, <stddef.h>, <stdint.h>, and <stdnoreturn.h>.

 β„–20889Quote

>>20884
An unportable language for comparison is PL/M which is specific to either the 8080, 8086, 286, or 386 depending on what version of PL/M you are using. PL/M is closely tied to the x86 ISA and includes segments, based pointers, and CPU control directives (SET$GLOBAL$DESCRIPTOR$TABLE). GPL for the TI99/4A is another example.

 β„–20892Quote

>>20866
C++, GNU Compiler Collection moved on from C to C++ because C++ is objectively better including portability, GCC supports every single relevant and even some irrelevant systems, the only ones who still use C in 2023 are Linus Torvalds and proprietard wagecucks whose chips and compilers are proprietary and specifically designed to be different from everything else in the market to ensure secure vendor lock-in so if a person has a firmware bug or hardware breaks and they fix it at home, they still depend on vendor for patches and recalibrations of sensors and other crap that needs software to work.

 β„–20894Quote

>>20881
Nothing exists in C at all, it's blank slate DIY tinkertranny language that is anti-freedom.
C retards larp about bare to metal garbage when they don't even know that their code doesn't run on "bare metal", it runs on a silicon die that has so little metal in it, you could almost count individual atoms.
When they make such basic mistake, I know that 100% of their code is worthless. Shittiest parts of C++ STL are infinitelly better designed than any of Cnile code.

 β„–20895Quote

>>20894
Rust shill detected. Die, rust shill.

The #RITCHIE2024 REICH will gas all Crustaceans.

 β„–20896Quote

>>20826
tell that to google who wrote their own hash table where every operation is SIMD over vectors of bytes, not your tranny OOP garbage, it literally saved them billions of dollars in CPU time, adding more RAM doesn't work.

 β„–20897Quote


 β„–20898Quote

>>20897
>>20895
Least retarded Cnile award

 β„–20900Quote

>>20864
even fizzbuzz benefits from simd, kys retarded larper

 β„–20901Quote

>>20898
im going to #pragma pack push you off a cliff

 β„–20904Quote

>>20901
there's 0 usecases for ever packing a struct

 β„–20905Quote

>>20904
bitfields, device registers, and CPU structs like GDT/IDT

 β„–20906Quote

>>20904
AdaGODs can specify how many bits and what range a type uses.
>>20900
write a beautiful AVX-512 fizzbuzz

 β„–20907Quote

>>20905
Not relevant, retarded Cnile.
>>20906
>type
retarderald
>write fizzbuzz
that's your job, fizzbuzzer

 β„–20908Quote

>>20907
says the fizzbuzzer who has never written a driver

 β„–20909Quote

>>20908
drivers don't require niggerald struct packing garbage used by retarded niggers who can't program, also pretty much all drivers have shitty performance, must be all those unaligned memory accesses since retarded Cniles don't know how computers work.

 β„–20911Quote

File: ClipboardImage.png πŸ“₯︎ (13.18 KB, 417x183) ImgOps

>>20909
always align 4 retard
see picrel for a struct that must be packed
>just use shift and mask
The compiler will optimize packed structs better than shift-and-or clogging up the pipeline.

 β„–20912Quote

>>20909
because when i say i want 8 bits what i actually wanted was 32 bits

 β„–20913Quote

>>20911
retarded ctroon thinks his bitfields do something different than bitshifts lol

 β„–20914Quote

>>20913
they are semantically better for the compiler.

 β„–20915Quote

>>20914
no they aren't, retarded nigger

 β„–20916Quote

>>20915
yes they are fizzbuzzer

 β„–20917Quote

>>20916
post where, in the assembly, retarded nigger

 β„–20918Quote

>>20917
the issue is that GCC has niggerlicious implementation of bitfields that doesn't fucking work because FSF is too busy sucking off rms's feminine penis to fix their shitty compiler.

 β„–20919Quote

>>20918
yes because packed structs and bitfields are for retarded niggers who can't program and everyone who can doesn't give a fuck

 β„–20921Quote

File: clangtroon.jpg πŸ“₯︎ (11.58 KB, 191x263) ImgOps

>use clang, never use gcc

 β„–20923Quote

>>20922
every country in the world has niggers too, what's your point, niggers are le good now?

 β„–20924Quote

>>20919
nigger faggot every good language including all nonshit assemblers (non gas) have packed structs. you have risc on the brain, worried you may get a bus error?

 β„–20925Quote

>>20924
retarded bitfieldtroon can't even reply correctly first time, I feel sorry for whoever has to run your code

 β„–20926Quote

>>20925
nocoder

 β„–20927Quote

>>20926
yeah I don't code, I program, how did you know

 β„–20929Quote

>tinker trannying on distro that cannot be configured
packed struct and bitfield user intelligence lmao

 β„–20932Quote

>tinker trannying on distro that cannot be configured
packed struct and bitfield user intelligence lmao

 β„–20935Quote

>troon deleted his posts to make it look like I doubleposted
geeeeeeeg, total unpacked struct and memcpy victory

 β„–20936Quote

>troon deleted his posts to make it look like I doubleposted
geeeeeeeg, total unpacked struct and memcpy victory

 β„–20939Quote

>>20936
epic fail

 β„–20941Quote


 β„–20948Quote

C is used for systems programming, C++ is used for programs that aren't ingrained into the system (only if you want to doe you can use just C too) and C is a coally chimera between Java and C that people only care about because Unity games are powered by C.

 β„–20949Quote

>>20782
the pros are that you have classes for everything and its easier to work on large bloated things (excellent example being video games) with it than if you used C, the cons are that its overcomplicated and slower than C if youre only making a simple program that does one thing and one thing well
C is very unixy.

 β„–20962Quote

>>20949
>slower than C
no it isn't retarded nigger

 β„–20964Quote

>>20962
it's only slower when it needs to be slower. compare to objc which has a runtime to manage objects instead of doing it at compilation like C++

 β„–21028Quote

>>20964
it never needs to be slower and is never slower

 β„–21070Quote

oh my fauxi i didnt expect this to have so many replies

 β„–21071Quote

>>20738
>but it's by now obsolete and has been replaced by more modern and better object oriented languages.

posted by a first year CS student XDD

 β„–21077Quote


 β„–21080Quote

>>21071
couldnt be further from reality
i've been in the industry for years
but you sure do sound like a lolstudent fizzbuzzer

 β„–21086Quote

File: appomanx.png πŸ“₯︎ (97.39 KB, 531x325) ImgOps

>>21080
>i said LE industry
here you go.
picrel.
applel deprecates openCL and CUDA (which basically are C) on their machines. only to realize that metal is extremely shit and the ai accelerators dont cut it.

 β„–21087Quote

>>21086
and why should i care about that? what point are you even trying to make you gigantic autist

 β„–21088Quote

>>21086
OpenCL and CUDA are not C. They are APIs.

 β„–21090Quote

>>21087
corpos are fucking retarded.
corpos in 1980-something:
C is obsolete! we have c++ now!
->ffw 30 years
->corporate creates opencl. an asynchronous C bc the C model just makes sense
->we still havent come up with something better, not for lack of trying

seethe harder, rustroon
even in rust when you wanna go fast you write C

>>21088
>They are APIs.
nop. your code gets compiled.
no rust in heterogenous ever.
unless through api's, kek

 β„–21091Quote

>>21090
lmao u're definitely on the spectrum

 β„–21093Quote

>>21091
it honestly did cross my mind
but i dont think im a hard autist.
no legos in my room, i dont get confused by new people.
smalltalk was a skill i had to learn tho

 β„–21094Quote

>>21091
*goole search*
fuuck i didnt know this shit was hereditary
i really might have mild autism fucking hell
my father has big issues with socializing. his own father was in "introvert" too.

wtf? i was always told autism is caused by a hormonal imbalance…
i brushed off my elders ineptitude at socializing as because they come from a small village

 β„–21120Quote

File: ongezellig coco4.png πŸ“₯︎ (274.39 KB, 587x587) ImgOps

>>21094
its okay
i love u even if you're a Cnile autist chud

 β„–21136Quote

>>21094
my dad is autistic too, and im probably one too, this is what German genes get you.

 β„–21138Quote

File: nerd-doggo-hez.png πŸ“₯︎ (312.11 KB, 572x583) ImgOps

File: taliban-cure.webm πŸ“₯︎ (1.65 MB, 1280x720) ImgOps

>>21120
there is but one god, written in machine code
and His prophet is Dennis Ritchie, peace be upon his name

>>21136
makes sense.
paternal line are silesians

 β„–21169Quote


 β„–21174Quote

>>20738
>useless for anything but embedded and OS development
so literally everything in programming that isnt tranny shit?

 β„–21177Quote

>>21174
OS and propriwtary firmware ia definition of tranny shit

 β„–21186Quote

File: recylcle.png πŸ“₯︎ (353.6 KB, 600x600) ImgOps

>>21169
>nnn c-nile our language is just as fast or even faster!
>your days are numbered

*shifts code to second gear*
*rust absolutedly btfo*

>nnn thats otism

>who needs it anyways

rust cant compete with C. it just cant.

 β„–21187Quote

test

 β„–21188Quote

soot

 β„–21488Quote

>>21080
>eventhoe cscucks can't pass the fizzbuzz test

 β„–21890Quote

>>21177
windows won. cry some more

 β„–21978Quote

>>21890
the winner doesn't need to announce the win, keep dilating

 β„–21986Quote

>>20736
how do you make shadows like these?

 β„–22005Quote

>>21986
by cutting a namefag's throat

 β„–22024Quote

File: sektrnoe.png πŸ“₯︎ (45.61 KB, 179x255) ImgOps

>>22005
>>21986
its hand-drawn. impressive.

 β„–25488Quote

bump

 β„–25590Quote

kotlin mogs cshart

 β„–25594Quote

>>25590
why would you take something perfectly functional and make it look like the most jeet language on earth p*thon



[1] [2]
[Return][Catalog][Go to top][Post a Reply]
Delete Post [ ]
[ home / overboard ] [ soy / qa / raid / swa ] [ pol / int ] [ fort / craft ] [ a / an / fit / g / mtv / r / r9k / sude / tech / webm ] [ q / news / gem / chive ] [ rules / pass / bans ] [ wiki / booru / irc / blog / soysylum / dailyjak ]