DEV Community

Faruk
Faruk

Posted on • Originally published at Medium

I Asked My Linux Server to Predict My Death. The Result Froze Me | by Faruk Ahmed | Sep, 2025

Member-only story

I Asked My Linux Server to Predict My Death. The Result Froze Me

--

Share

I thought it was just a script for fun. Until it gave me a date I can’t unsee — and started acting like it knew something I didn’t.

The Joke That Went Too Far

I was bored one night, tinkering on my Linux machine like always.

I thought: What if I could make my server predict my death date?

Not seriously — just a random future date from a script I’d call DeathPredictor.sh . I wrote it in 15 minutes.
DeathPredictor.sh

#!/bin/bash year=$(( $(date +%Y) + (RANDOM % 50 + 1) )) month=$(( RANDOM % 12 + 1 )) day=$(( RANDOM % 28 + 1 )) date -d "$year-$month-$day" +"%d %B %Y"
Enter fullscreen mode Exit fullscreen mode

Simple. Creepy. Harmless.

But when I ran it…

It Gave Me a Real Date

user@server:~$ ./DeathPredictor.sh 16 April 2043 user@server:~$
Enter fullscreen mode Exit fullscreen mode

Then the server froze. No logs. No CPU spike. Just silence — for 43 seconds.

Then it came back online.

The Date Meant Something

At first, I laughed it off. But 16 April 2043 felt… familiar. I searched my notes, my calendar, even old family records.


👉 Read Full Blog on Medium Here

Top comments (0)