this post was submitted on 04 Apr 2024
1266 points (98.7% liked)

memes

9660 readers
3371 users here now

Community rules

1. Be civilNo trolling, bigotry or other insulting / annoying behaviour

2. No politicsThis is non-politics community. For political memes please go to [email protected]

3. No recent repostsCheck for reposts when posting a meme, you can only repost after 1 month

4. No botsNo bots without the express approval of the mods or the admins

5. No Spam/AdsNo advertisements or spam. This is an instance rule and the only way to live.

Sister communities

founded 1 year ago
MODERATORS
 
you are viewing a single comment's thread
view the rest of the comments
[โ€“] [email protected] 17 points 5 months ago (1 children)

It's a programming joke. If you declare variables or set a value to a space in the storage, this space is blocked even after the programme is done using that variable. So to write a programme with efficient use of storage, you have to free the storage space after you are using it.

Many programming languages use a routine called "garbage collector" to free unused storage space.

So, if you don't want to be a garbage collector, you have to assign storage space manually.

[โ€“] [email protected] 7 points 5 months ago

That is a deliciously deep cut. Thank you for explaining it to me.