- 3
- 62 335
SlayerNate26
เข้าร่วมเมื่อ 2 มิ.ย. 2018
วีดีโอ
[DOMINO RALLY] April 2022 Part 1
มุมมอง 762 ปีที่แล้ว
Chapters: 0:00 Regular Domino Rally Test 1 0:07 Pejonia 0:11 Regular Domino Rally Test 2 0:19 Regular Domino Rally 0:32 Lubrasia 0:40 Sakria 0:51 Sahmia 1:04 Avrimia 1:12 Emiklia 1:20 Quariumicaria | Seyolia (Part 1) 1:30 Quariumicaria | Seyolia (Part 2) 1:41 Quariumicaria | Seyolia (Part 3)
3:35 Your average alarm
16,384 bugou seu pc
0:44 0:46
I love it when the sorting algorithm sounds so angelic
I feel like there’s more to why base 512 outputs music and it isn’t just a coincidence. What’s the underlying meaning? What’s so special about 512 or radix?
00:00 Base 128 00:29 Base 256 00:58 Base 512 01:26 Base 1.024 01:55 Base 2.048 02:24 Base 4.096 02:53 Base 8.192 03:24 Base 16.384
Isn't base 16384 technically just a counting sort?
1:08 damn
How to base 16384: Step 1: Inspect the list with a stick (2 times) Step 2: *Wii crash noise* Step 3: Run pigeonhole sort
the last one is very funny
Base 128: 1. Scan the shuffled sort twice 2. Eerie music 3. Scan the shuffled sort again 4. Sort Base 256: 1. Scan the shuffles sort twice 2. Old glitchy retro music 3. Scan it again 4. Sort Base 512 1. Scan the shuffled sort twice 2. Add some cool retro music 3. Scan it again 4. Laggy sort Base 1024 1. Scan it twice 2. Add some more cool retro music 3. Scan again 4. Laggy sort Base 2048 1. Scan twice 2. Some not so cool retro music 3. Scan the somewhat shuffled sort again 4. Very laggy sort Base 4096 1. Scan twice 2. Lag 3. Scan again 4. Lag Base 8192 1. Scan twice 2. Lag 3. Scan again 4. Lag Base 16384 1. Scan twice 2. Lag
Base 512: 1. Slow fast music 2. Quiet tap music 3. Gets to radix pass
3:34 LSD_Radixsort.exe has stopped working.
3:19 3:19 3:19 3:20
1:38 - A bootleg version of the category reveal from Jeopardy!
base 512: how to do 1. scan list twice 2. cool music 3. scan list once 4. magic
Funk time 1:09
Gotta love counting sort in these sorting algorithm representations: - scan - BWEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEP - sorted
2:49 is a very interesting sound. I think I'ma use it in a song.
Base 16384: Scan twice *eeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeee* done
Base 2048-8192 are in blood
3:24 Base 16384
0:40 *oh d!*
1:09
*base 512, 256 kinda lag* *base 1,024 made d! d! d! Bam! Sound*
1:38 *based 1024*
1:38 - 1:38 *oh for D's fault!*
Base 512 *not to lag done d!*
*watching on base 512*
3:05 base 8,192 *sorting.exe stopped working*
2:38 base 4,096 *lag*
0:12
1:38 base 1,024😅
0:11 base 128😂
1:09 when you wanna make music but you’re unmotivated and you just put randomness:
❤😊s
Bass
very funky sorting going on
Base 16384 (00:03:24) is trying to open a second chrome tab on a school computer
POV: My wii right after I catch a rare fish in city folk:
Base 16384 be like: Step 1: scan with blue pointer Step 2: scan slower with red pointer Step 3: drop the delay down to 3744ms Step 4: lag Step 5: pierce everyone’s eardrums Step 6: profit
0:51 we once try again to turn on the stove
do other scrambles
Did you add synth drums and a whistle? Interesting touch.
maybe the software uses midi : \
@@TrueMarble64 I kinda like it. I love the sound of computation, just fascinated me even as a kid. I’m still wondering how they came up with the computer sound effects in the 6 million dollar man. They got recycled throughout film history. Maybe it was tapping into a serial console? Or the databus? Anyhow, I first got into it when I put a radio next to my commodore 64. Could totally hear different sounds and patters as the program ran, each part of the game had a pretty specific sound to it.
i thought i was the only one who heard the whistle bc nobody else seemed to be talking abt it :D
yeah I'm pretty sure this is cheated.
Im going to have really weird dreams...
I want jazz!
2:07 Sort.exe
hash sort directly to bins, just (max-min)/bins to get the bin width, (x-min)/binwidth to get the bin number, uniform distribution of data assumed, use other hash functions for other distributions, you can do multiple scans per recursion, like the max,min before the data number binning, other O(n) compatible scans possible
it will not be different for different scale of numbers, supports int and fp numbers, just two passes per run, very aggressive divide and conquer, easily simply multi-threadable
3:05 sorting.exe phase 3
In 3:35 hace an error sorting
1:38 amazing part
1:41
Base 16384 is just Step 1: scan the array twice Step 2: lag Step 3: done
well, there were only 16384 numbers to sort
Doing a RADIX sort to the same base as there are elements just becomes a counting sort, which works just like that.
1 2:54 2:55
OK 👌👍👍👍👍👍👍👍👌👍👌👍👌👍8
i swear you snuck some cymbal sounds in there
2:07 sorting.exe phase 1 2:38 sorting.exe phase 2
I never thought a sorting algorithm could be so unsettling
3:34 sorting.exe has stopped working.
1:09 where do i download the midi file
Base 512 sounds like the Carnival Organ in HELL! 😈
1:09
so if the base = the item count, it's just a loud/slow Counting Sort
Exactly. Radix is basically a parallelization of the counting sort.
@@Tasarran Beautiful!
@@heyitzrare The thing I really love about it is that it never does a single compare or swap. Beautiful, indeed!