[ home / overboard ] [ soy / qa / raid / r ] [ int / pol ] [ a / an / asp / biz / mtv / r9k / tech / v / sude / x ] [ q / news / chive / rules / pass / bans / status ] [ wiki / booru / irc ]

A banner for soyjak.party

/tech/ - Soyence and Technology

Download more RAM for your Mac here
Catalog
Email
Subject
Comment
File
Options


Password (For file deletion.)

File: indian_excellence.webm πŸ“₯︎ (5.34 MB, 640x360) ImgOps

 β„–31957[Reply]

Behold…
Braphrat EXCELLENCE
7 posts omitted. Click reply to view.

 β„–32068

File: india_is_aryan_sar.mp4 πŸ“₯︎ (2.91 MB, 576x708) ImgOps


 β„–32129

geg

 β„–32174


 β„–32175

>>32174
>differentiating between the jeet kinds

 β„–32177

brahminic code that came down as a tarzanite gem from aryanheaven btw

 β„–32179

Javascript in 2 years



File: 60145 - soybooru.com - bot….png πŸ“₯︎ (308.83 KB, 787x951) ImgOps

 β„–32235[Reply]

simplewall
everything
flux
librewolf
mpv
qview
qbittorrent
keepassxc
notepad++
you dont need more

 β„–32237

shut up dude
worthless post; contributes nothing, uninteresting discussion, not entertaining
i'm super saging this!

 β„–32238

c

 β„–32252

keep talking dude
worthwhile post; contributes everything, interesting discussion, entertaining
i'm bumping this!

 β„–32303

>>32235 (OP)
i dont get it



File: ClipboardImage.png πŸ“₯︎ (254.59 KB, 1170x1418) ImgOps

 β„–32169[Reply]

this is why i hate reddit (beyond its ui and commiepedotroon userbase). there’s ALWAYS a nigga who wants some reddit social credit so he has to crack up a joke in the comments. ALWAYS. Nigger I wanna learn about DNRs not see a shitty joke about the company’s name. shut the fuck up

 β„–32176

that good ole reddit smugness, he probably felt pride after that shit joke



File: HGaG2GcbwAADcBQ(1).png πŸ“₯︎ (2.91 MB, 2048x1366) ImgOps

 β„–32172[Reply]

trying to install a gsi on an old phone and vbmeta wont flash. even xda jeets cant help my poor soul

 β„–32173

>media pending approval
ack



File: ClipboardImage.png πŸ“₯︎ (330.18 KB, 1907x765) ImgOps

 β„–31554[Reply]

alternative to libreboot that isn't owned by a tranny pedophile?
>usecase: not showing support to moloch
22 posts and 2 image replies omitted. Click reply to view.

 β„–31697

Sata* ^

 β„–31996

>>31554 (OP)
Lel, xe looks like chud

 β„–31997


 β„–32058

>>31997
only supports old hardware
just build muh coreboot urself

 β„–32130

ugly tranny

 β„–32148

>>31558
what are blobs in coreboot anyway i'm kinda new to this



File: 1773926170065b.png πŸ“₯︎ (2.03 MB, 1736x1261) ImgOps

File: 1778912215529f.png πŸ“₯︎ (63.85 KB, 537x594) ImgOps

 β„–32069[Reply]

Rate my setup
11 posts and 1 image reply omitted. Click reply to view.

 β„–32100

>>32069 (OP)
aint no way cuh

 β„–32137

He has RAM, GET HIM!!!!

 β„–32140

>>32089
what the actual fuck is a goonwall

 β„–32141

>>32140
just looked this up and im at a loss for words

 β„–32146

>>32140
just wait till you learn what a "Goondoll" is

>>32069 (OP)
OK ARCHIE

 β„–32304

just kill everyone in this thread via boiling in feces. OP is a massive AIDS-ridden faggot for attentionwhorring on an anonymous imageboard



 β„–32138[Reply]

waylandGQDS vvQn…
xlibresissies, your response?

 β„–32142

>>32138 (OP)
>miku pfp
>:3 in channel description
worshipped moloch again award

 β„–32143

File: 1776600759864g.png πŸ“₯︎ (49 KB, 731x653) ImgOps

>>32138 (OP)
https://wayland.fyi/
>MUH WAYLAND XENDER AFFIRMING 9 THREMBILLION USELESS NEOXITTY DIALATING TRANIMATIONS BUT… MUH LIGHTWEIGHT HOW FUCKING KINO



File: OpenAI_logo_2025_(wordmark….png πŸ“₯︎ (17.21 KB, 1280x345) ImgOps

 β„–32117[Reply]

>steal tons of gplv3 code
>release it regurgitated under public domain
how is this allowed? why isn't the fsf suing the shit out of ai companies?

 β„–32118

>>32117 (OP)
Because they are reputationwashing by funding open source projects. The final goal is to extinct the free projects, but they don't realize that, and thus shill for (((big ai))) thinking it's a lifeline.

 β„–32127

>why aren't suing
legal grey area
same goes for the books, movies, etc they used

 β„–32128

>>32127
I thought Anthropic got sued for hundreds of millions for stealing books and shit?

 β„–32168

Free software was always a Jewish trick by (((Stillman))) to get goyim work for free. Now (((Altman))) is reaping the harvest.



File: 1772165695279542.jpg πŸ“₯︎ (230.9 KB, 843x1019) ImgOps

 β„–31857[Reply]

modern day coders cant reverse a linked list without ai
12 posts and 4 image replies omitted. Click reply to view.

 β„–31913

>>31908
seems like complicating stuff tbh. why do i need all this anwyay o algo can you show us a concrete usecace?

 β„–31915

>>31913
Okay, so if you are writing a program in C, you can only have static sized arrays, i. e. the size of array is constant, so once it's set, it cannot be changed.
In C arrays are just fancy pointers to the consecutive data of the same type. So for example

int arr[] = {0, 78, 10};

creates an array of tree members, indexed from 0 to 2, and stores in memory (in .data segment particularly because it's a global variable)
The size of array can't be changed because it may AND WILL overwrite the variables that come after it.

In memory, this array looks something like this:
Post too long. Click here to view the full text.

 β„–31916

>>31915
now to reverse a linked list, we simply add a pointer to a previous element and then simply switch addresses with next pointer

 β„–31917

>>31916
at least it works this way in my head

 β„–31947

>>31866
I still have yet to autistfag and learn what the stack and heap are geg

 β„–32124

File: Oekaki.png πŸ“₯︎ (31.59 KB, 480x480) ImgOps

>>31947
let me break it down for you mark



 β„–31998[Reply]

am i a goyboy for wanting this?
3 posts omitted. Click reply to view.

 β„–32060

>>31998 (OP)
No, it's pretty

 β„–32070

File: ClipboardImage.png πŸ“₯︎ (414.31 KB, 1920x1080) ImgOps

>>32056
okay so i just did it and i actually like it. the nigga in the video wants you to install a thing to backup your system in case you brick it but that's absolute snca. also ulauncher is useless o algo.

https://www.howtogeek.com/heres-how-i-made-ubuntu-look-like-macos/

i did half of this and half of the video
but do the video

i didn't install icons cause snca and apple fonts are ass (not mono!) and backgrounds are snca

 β„–32076

thank you tim apple for goodering my brapersonal negroputer

 β„–32078

>>32070
Weeaboo faggot

 β„–32088

>>32070
I like it

 β„–32120

>>31998 (OP)
yes because you're doing it on ubuntu instead of muh heccin unknown opsec distro that is just arch or debian with snca preinstalls



File: 1779053306545v.png πŸ“₯︎ (205.36 KB, 1024x1024) ImgOps

 β„–32114[Reply]

<script>alert(document.cookie)</script>
>

 β„–32116

i put the subject in the email field geg



File: OIP-4250267202.jpg πŸ“₯︎ (6.52 KB, 142x192) ImgOps

 β„–32052[Reply]

For context google is adding a feature on android that will force all apps to be certified by them before installation wich will basicly ruin sideloading becouse every app has to be certified.
4 posts omitted. Click reply to view.

 β„–32063

>>32052 (OP)
just flash lineage

 β„–32064

File: 1774532223319u.mp4 πŸ“₯︎ (3.96 MB, 480x480) ImgOps

>using mobile arch linux

 β„–32093

File: 1778264656098p.webp πŸ“₯︎ (5.39 KB, 223x255) ImgOps

Nga ust wait 48 or 24 or however many hours to access the advanced flow you judt go to developer settings like when you unlock the bootloader rite

 β„–32104

File: gigafly.mp4 πŸ“₯︎ (2.18 MB, 524x378) ImgOps

>buy a linux phone o algo

 β„–32106

>>32055
maybe don't do this for a few years. they all suck dick

 β„–32267

waydroid or a pixel with grapheneos



File: unnamed.webp πŸ“₯︎ (27.23 KB, 671x800) ImgOps

 β„–31995[Reply]

do these young niggaz really not know any linux?

 β„–32059

They are not poor enough to not use a Mac.



File: ClipboardImage.png πŸ“₯︎ (594.98 KB, 1596x968) ImgOps

 β„–32002[Reply]

death to the penguin

 β„–32003

Nusois can't view WebPs… JSID

 β„–32009

NophonOS

 β„–32101

i really want to uhhh fuck the AROS cat



File: ClipboardImage.png πŸ“₯︎ (107.4 KB, 775x838) ImgOps

 β„–31979[Reply]

https://www.youtube.com/watch?v=I14yjt00Fl8

>OY VEY! GOYIM FOUND OUR BACKBOARD!

>SHUT IT DOWN!

 β„–31981

File: 1777018039556w.png πŸ“₯︎ (78.33 KB, 2000x2000) ImgOps

nothingburger for anyone who is tech literate
we all knew this already
>n-no the government and corpos would never do that!

 β„–31991

>>31981
sir did you know that 80% of the world population uses this operation system?

 β„–32135

>>31981
This is different, you are talking about how they can just subpoena microjeet for the recovery key, this instead just allows for a complete bypatch fully offline



Delete Post [ ]
[1] [2] [3] [4] [5] [6] [7] [8] [9] [10] [11] [12] [13] [14] [15] [16] [17] [18] [19] [20]
| Catalog
[ home / overboard ] [ soy / qa / raid / r ] [ int / pol ] [ a / an / asp / biz / mtv / r9k / tech / v / sude / x ] [ q / news / chive / rules / pass / bans / status ] [ wiki / booru / irc ]