DEV Community

Cover image for What is the Coolest Program ever?

What is the Coolest Program ever?

o2sh on May 27, 2019

Came to share a pretty sweet initiative from /g/ (4chan board focused on technology). The idea was to have a site where people could share and dis...
Collapse
 
thomasjunkos profile image
Thomas Junkツ

The coolest algorithm is IMHO sleepsort

#!/bin/bash


function f() {
    sleep "$1"
    echo "$1"
}
while [ -n "$1" ]
do
    f "$1" &
    shift
done
wait

# example usage:
# ./sleepsort.bash 5 3 6 3 6 3 1 4 7
Collapse
 
o2sh profile image
o2sh • Edited

Yep, it's pretty nice.
It was one of my first post on codl.dev

Post N°21

Collapse
 
ben profile image
Ben Halpern

This is really interesting!

I can definitely see some design inspiration coming from dev.to. 🙂

I've had similar thoughts about things like this we could fold in here and will take a look for inspiration.

I think the core differences between this and similar sorts of things we'd create in our community would centrally be about cultural differences between our community and /g/, and the fact that this is so focused on this one thing, whereas we're more of a bizarre.

Anyway, super well done! Thanks for sharing!! I think Codl is bound to be a hit.

Collapse
 
o2sh profile image
o2sh

Yeah, I definetly took some inspiration from dev.to

I hope you don't mind... 😉

The core idea is indeed very specific, but I hope it will grow and evolve with time.

The site is just 3 days old. ⭐️

Collapse
 
chatziiola profile image
Lamprinos Chatziioannou • Edited

Loved the idea... In fact, I think that it is the actual implementation of the good ol' Gates' words: "In order to become a great programmer, you have to study great programms". I'll surely come back soon to check for updates 😉!! Nice work!

Collapse
 
o2sh profile image
o2sh

That's nice, thx 😊

Collapse
 
_bigblind profile image
Frederik 👨‍💻➡️🌐 Creemers

I think the coolest piece of code will be something that runs on a quantum computer, since the qbits need to be cooled to near absolute zero degrees.

Collapse
 
itr13 profile image
Mikael Klages

I was gonna answer "whatever they use to test superconductors"