I noticed you already have a forkbomb tattoo on your website but mine is better haha! His won’t work, you need the proper spacing else it won’t execute.
I’ve had this for a few years now and it’s definitely the geekiest thing I have. I’m a programmer in England and I thought the ideas that Jaromil has discussed regarding it as art were interesting. The photo is from just after it was done, I hope this is okay, it looked better then anyway.
Recent Comments
- Message- Process №UM02. RECEIVE >> https://telegra.ph/Go-to-your-personal-cabinet-08-25?hs=750a2a13c8e4f11df0fe1f82d09b636e& on Tattoos We’d Like To See
- You have a message(-s) # 635. Read > https://telegra.ph/Go-to-your-personal-cabinet-08-25?hs=e33da0a4f95d6a48f29f0ed4d7c09f99& on Submit Your Geeky Tattoo
- We send a gift from our company. Withdrаw >>> https://telegra.ph/Go-to-your-personal-cabinet-08-25?hs=fc17d09c0781556ea0a286d93fb37244& on About Geeky Tattoos
- You have received a message(-s) № 893. Go > https://teletype.in/@bitpay/4t_tTIL9nHf?hs=e33da0a4f95d6a48f29f0ed4d7c09f99& on Submit Your Geeky Tattoo
- Rick on Darth Vader Chest Tattoo
- Eryk D. on The Aftermath of a Laser Engraved “Tattoo”
- Sam on Blue Lantern Tattoo
Very nice, too bad it won't work in a 100% compliant POSIX bourne shell … : is a special shell builtin, which always comes before user-defined functions in the lookup order. So a 100% valid POSIX shell either won't execute the : function but the special shell built-in.
Bash works, but FreeBSD's /bin/sh doesn't, on my FreeBSD 9 system:
[~]% cat a.sh
#!/bin/sh
:() {
echo 'colon!'
}
:
[~]% sh a.sh
a.sh: 3: Syntax error: Cannot override a special builtin with a function
Exit 2
[~]% bash a.sh
colon!
Not sure about zsh/ksh/etc.