[ a / b / c / d / e / f / g / gif / h / hr / k / m / o / p / r / s / t / u / v / vg / vr / w / wg ] [ i / ic ] [ r9k ] [ s4s ] [ cm / hm / lgbt / y ] [ 3 / aco / adv / an / asp / biz / cgl / ck / co / diy / fa / fit / gd / hc / his / int / jp / lit / mlp / mu / n / news / out / po / pol / qst / sci / soc / sp / tg / toy / trv / tv / vp / wsg / wsr / x ] [ Settings ] [ Home ]
Board
Settings Home
4chan Search `4chan` 10764 comments

Board: pol Thread: 506507567 File: mw 2.png ( 279.6KiB, 550x550 )
14 KB
279.6KiB.png
Previous:>>506502552
Timeline /tug/: https://files.catbox.moe/m97wmq.pdf

▶WARNING
Be aware, any /chug/ thread that uses globohomo nuspeak wording in the OP (such as Kyiv) or cites UKROP sources (like video game footage) are fake shill threads.
>By posting in these threads, you recognize Israel controls the NATO Council and you irrevocably denounce the Talmud out of your own volition

▶Latest
>Russia's memorandum on peace settlement full text - https://archive.today/MttQ6
>Russia agrees to transfer to the Ukraine 6,000 dead soldiers - https://archive.today/rQFsd
>Russia and the Ukraine agree to exchange all seriously ill and under 25 prisoners - https://archive.today/rQFsd
>Russia offers the Ukraine a 2-3 day ceasefire for corpse collection in specified frontlines - https://archive.today/Y8SWY
>Train derailments/Bridge collapses act of terror by the Ukraine - https://archive.today/LNlRk
>the Ukraine launched FPV drone attacks on 5 Russian military airfields, 3 repelled, 2 were successful, no casualties - https://archive.today/9NjGD
>Russian troops liberate over 13 communities in the past week - https://archive.today/ccxJc
>Ukrainian suicide bomber kills former Major and 1st deputy mayor of Stavropol - https://archive.today/4MNYi
>Azog stays in the fucking DNR Gulags, Prokopenko salty - https://archive.today/K2Xj7
>Russia receives final 303 POWs of 1,000 for 1,000 prisoner exchange - https://archive.today/OAmHf

▶/chug/
https://rentry.org/chug2024

▶/chug/ MEGA
https://mega.nz/folder/wbUjTLhb#BEBBRpmJN0Pih6YCXzkOXg

▶Video Archive
https://rentry.org/chugvidz

▶Z Radio
https://rz-life.ru/
>>
/chug/ Art, Logo Repository, Templates & Important Archives
https://mega.nz/folder/wbUjTLhb#BEBBRpmJN0Pih6YCXzkOXg

▶/chug/ NEW CLIPS Archive
https://rentry.org/chugvidz

▶/chug/'s MUST-WATCH videos
https://rentry.org/tquop

▶/ourguy/ Patrick Lancaster
https://www.youtube.com/c/PatrickLancasterNewsToday/videos

▶/chug/ COMFYPOSTING
https://t.me/Comfypostinghours

▶Join in on /chug/ soundposting
https://www.tampermonkey.net
https://greasyfork.org/en/scripts/402682-4chan-sounds-player

▶Unofficial /chug/ Playlist™
https://youtube.com/playlist?list=PLMRI5OkcCfbIJIoLFXhe_vAYff2AKBQ4-

▶Academic paper proves /chug/ is comfy, r/ugh is gay
https://archive.today/nyCyo

▶US Involvement in Ukraine QRD
https://rentry.org/xvryt

▶Ukrainian War Crimes
https://rentry.org/7xiyy

▶Bio-Labs
https://rentry.org/k4sav

▶Russia Fossil Fuel Sales since start of SMO
https://www.russiafossiltracker.com

▶Guides for RU Cloudflare/Captcha issues and general catbox issues
https://rentry.org/chug-ru-anon-guide-to-post

▶Bypassing Catbox block
https://rentry.org/chug2024#bypassing-catbox-block

▶Podcasts & Analysis
https://rentry.org/chug2024#podcastsanalysis

▶Telegram Channels
https://rentry.org/chug2024#telegram-channels

June 6th is Yukari's birthday.
>>
>>279422476
>>279422510
>>279422525
Go to >>>/trash/ faggots

Board: g Thread: 105503355 File: based gemini.jpg ( 267.3KiB, 964x1705 )
14 KB
267.3KiB.jpg
Everyone shills Quicksort (O(nlogn) average case), Merge Sort, Heapsort, whatever, as the "best" general-purpose sorting algorithms. And yeah, for truly random data where you're only allowed to compare elements, O(nlogn) is the theoretical limit. You literally can't do better.

BUT.

There are other sorting algorithms out there that can absolutely smoke O(nlogn) speeds, sometimes getting down to near O(n) if the conditions are right. We're talking:

Counting Sort
Radix Sort
Bucket Sort

These aren't magic, they just cheat. They don't rely solely on comparisons. Instead, they make assumptions or use extra info about the data itself to sort.

My question to you faggots:

What are the exact conditions these "faster" sorts need to actually be faster?
When would you never use one of these over Quicksort/Merge Sort?
Are they actually practical in real-world scenarios, or just academic wankery?
Any other 'cheating' sorts out there worth mentioning?

Spill the beans, enlighten a brainlet. Or just shitpost, it's 4chan.

Discuss.

Why this style works for 4chan:

Concise and Direct: Gets straight to the point without excessive prose.
Abrasive Language: Uses terms like "faggots" and "brainlet" which are common on 4chan and signal it's written by "one of them."
Calls to Action: "My question to you faggots:" directly solicits specific answers.
"Discuss.": The classic 4chan thread-starter.
Slightly Provocative: The idea of "beating" Quicksort is a good hook.
Acknowledges Limitations: "they just cheat" and "academic wankery" show an understanding of the nuances.
>>
>>105503441
Got it. Let's make that reply more engaging and thought-provoking for a 4chan audience, building on the excellent points already made.

Reply Draft:

Holy hell, anon, that's a damn good breakdown. You've hit on the subtle dark arts of algorithm optimization that most CS freshmen don't even sniff until grad school.

You're absolutely right about log n effectively capping out at something like 64 for any data we'd actually stuff into RAM. The whole "Radix sort replaces log n with a factor of 64" isn't just some dumb meme; it's a brutal truth about how fixed-size integers interact with the asymptotic world. We're not often sorting arrays that span multiple galaxies, so those "theoretical" asymptotic wins for N > 2^64 are pure masturbation for a whiteboard.

Your three points for "better" algorithms? Spot on.
The Unholy Trinity of Real-World Performance:

"Asymptotically optimal for relevant input sizes." This is where people get filtered. O(N2) Insertion Sort might literally smoke O(NlogN) Quicksort for N < 50 because its constant factor is so tiny. It's why hybrid sorts like Timsort (the unsung hero of Python and Java's performance) exist – they know when to pull out the right knife for the job.

"Driving constants down as low as you can get them." This is the black magic. We're talking cache lines, SIMD instructions, branch prediction, memory alignment. This isn't just about picking O(N log N); it's about making your c * N log N as small as humanly possible. This is where truly optimized libraries (like glibc's qsort) earn their keep. Forget the log n for a moment; what's the actual cost of a single comparison or move operation on your specific CPU architecture?

hahahaahahha. even styx is BTFOing manlets hahahaaah.
yes you ARE less attractive.

yes us 6ft chads DO get the girls. all of them. at the same time.

nothing you can do about it.

go back to playing videogames.
>>
>>81403738
why is 4chan in love with this asmongold clone again? i only know you've been jerking him off for the better part of like a decade now and he has really terrible fashion sense

The debates are happening. Why does the New York Mayoral candidates have to prove their loyalty to the country of Israel? Countries are just countries not a religion.

https://youtube.com/watch?v=Ms8tGyopFrQ
>>
>>506506824
But everything is so fucking expensive in NY, the goyim are getting quite annoyed. The cattle aren't being fed properly, while everyone sees the kikes eating good breakfast, lunch, and dinner. A lot of the whites are waking up and don't support them because of the anti-white shit and ESG. I got coworkers in NYC who are in their 20s telling me about 4chan, asking me if I ever go on there. Cuomo is probably expected to win, but in terms of timelines, I could see someone anti-jew getting elected in NYC in the next couple of election cycles.

What do we think of pragmata's gameplay?
https://www.youtube.com/watch?v=PdDVyBtYrUI
>>
>>711679957
4chan is incredibly gay as a place in general now, yes.

you're not med
you're not roman
you're not latin
you're not european
you're not a conquisator
you're not a crusader
you're not a tradcath
you're not italian or spanish
you're not a firstie

you are arab(probably) or otherwise just a mulatto
you are latinx
you are african
You are brown
You are pisslamic
you are a thirdie
you are not even catholic (you are heretics who compare mujamad to Jesus)
>>
Everything in this thread is shit only 4chan dwellers care about
You think the average person on the Mediterranean coast knows or cares about this shit

Board: adv Thread: 33175264 File: 86758768.png ( 1007.1KiB, 742x927 )
14 KB
1007.1KiB.png
Previously: >>33173133
>>
>>33176193
>Would you say a guy therapist would be better for me?
I don't know you the real you, I don't even know the full sliver of you that exists on 4chan, I only know a sliver of that sliver. I don't know enough about you to say.

What might be most beneficial would be trying more than one therapist, both male and female, just to see how each therapist has their own unique approach. After you've seen that then you could choose your favorite therapist and stick with them. You conceptually understand right now that there are multiple different ways to address your problems, but you gain a better understanding by putting it into practice and actually seeing for yourself how many different ways there are, and seeing that none of them (or almost none of them) are wrong.

That would take time and money though, so I don't blame you if you don't go that route.

Board: d Thread: 11302994 File: 1748460907872780.png ( 2.3MiB, 1824x1344 )
14 KB
2.3MiB.png
Previous Thread: >>11297430

Nvidia: github.com/AUTOMATIC1111/stable-diffusion-webui/wiki/Install-and-Run-on-NVidia-GPUs
AMD: github.com/AUTOMATIC1111/stable-diffusion-webui/wiki/Install-and-Run-on-AMD-GPUs
Cloud: github.com/AUTOMATIC1111/stable-diffusion-webui/wiki/Online-Services
Optimizations: github.com/AUTOMATIC1111/stable-diffusion-webui/wiki/Optimizations
Extensions: github.com/AUTOMATIC1111/stable-diffusion-webui/wiki/Extensions
Custom Scripts: github.com/AUTOMATIC1111/stable-diffusion-webui/wiki/Custom-Scripts
WebUI Forge: github.com/lllyasviel/stable-diffusion-webui-forge

>RESOURCES
Wiki: github.com/AUTOMATIC1111/stable-diffusion-webui/wiki
Holara: holara.ai/
Training: github.com/derrian-distro/LoRA_Easy_Training_Scripts | rentry.org/59xed3
Tags: danbooru.donmai.us/wiki_pages/tag_groups
ControlNet: rentry.org/dummycontrolnet
LamaCleaner: huggingface.co/spaces/Sanster/Lama-Cleaner-lama
Wildcards: rentry.org/NAIwildcards
4chanX Catbox userscript: rentry.org/hdgcb
PonyXL/Autismix cheat sheet: rentry.org/ponyxl_loras_n_stuff

>Related
>>>/aco/sdg
>>>/g/sdg
>>>/h/hdg
>>>/e/edg
>>>/vt/vtai
>>>/vg/aids
>>>/trash/sdg
>>
>>11304465
>>11304229
Welcome to 4chan, where the fucking summer never ends.

Board: s4s Thread: 12308392 File: file.png ( 486.3KiB, 850x1226 )
14 KB
486.3KiB.png
Is this the pedo board?
>>
>>12308592
>>>/v/ might be a good candidate too


[ Advertise on 4chan ]

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.