this post was submitted on 10 Oct 2025
474 points (98.2% liked)

Programmer Humor

26817 readers
3181 users here now

Welcome to Programmer Humor!

This is a place where you can post jokes, memes, humor, etc. related to programming!

For sharing awful code theres also Programming Horror.

Rules

founded 2 years ago
MODERATORS
you are viewing a single comment's thread
view the rest of the comments
[–] MrScottyTay@sh.itjust.works 1 points 6 hours ago

I often use z as a temp variable when i need something to compare to when creating new code but don't want a separate window to the side or to experiment with something but don't yet know what the result can or will be. I use z purely just because i know z is very very unlikely to have been used elsewhere, and if for some reason it has, then i just name it 'zz'.

This is actually temporary by the way. It does not stay in my code. Once I'm done with it, i delete it.