139
Asbetha
5y

To all developers who think "I don't need to delete that one 1KB temp file"

FUCK.YOU.

You are not the only garbage developer who does not clean his shit up. The reason we need TERA FUCKING BYTE storage devices nowadays is because you incompetent shit heads have no idea how an application has to properly work. A temp file is not there to exist for ever. HENCE THE FUCKING WORD TEMPORARY

Comments
  • 41
    Temporarily permanent.

    I just finished cleaning up a "temp" file issue this week for a project.😔
  • 7
    @C0D4 permanently temporary :)
  • 1
    Acutally would someone know if extfs has some sort of flag that would mark a file temporary / to be deleted at next restart?
  • 11
    Temporary workarounds tend to be permanent though..
  • 12
    0 0 * * * find /tmp -mtime +1 -type f -delete

    have a nice day
  • 6
    @vane yea that would work, if all of those "developers" would save "temporary" files in /tmp or in the Temp folder of the current logged in user.

    It's a fucking mess and those people should be ashamed of their garbage
  • 20
    It's like this
  • 0
    @Asbetha Well you can’t fix the world but you can make it a little bit nicer and it’s better then doing nothing.
  • 2
    I get it.. it's messy n all.. but if the 1k files are the reason you need tb drives, you have too many damn programs installed.
  • 7
    1kB files? Hah. My colleagues save 1GB simulation result files. One guy had stuff from 3 years ago. I asked where the fuck was this-and-this results file from. They guy didn't know, but "it's good to have those around in case I need them".

    Ended up filling the UNIX disks, crashing everyones work and killing the servers. The guy had like hundereds of those. He had no idea what for and from where they were.

    Modern day horders.
  • 4
    Heh, I was supporting a Sun system that had a legacy web site running on it. It started to bog down. So I went looking at the logs. It had 20 years worth of logs on this computer. The system only had like 6GB of space and most of that was log files. It logged every time someone went to a page, or every time an ajax script updated the weather. I deleted the majority of those logs and it magically started running really fast.
  • 1
    So developers DO know how to clear those temp files.
    My win drives used to be full of them so i just thought that developers just didn't know how to do it. Infact they were just being lazy. 😱
  • 2
    They came as temps but got hired permanently
  • 3
    @K4R71K well, devs who work on limited disk space < 10GB know how important it is to delete files that have no place after use.

    Devs who own TB drives for purely dev, don't clean up after them selves.
  • 1
    Worts when this file is commit in git XD
  • 0
    Well, Microsoft devs in particular rely on the fact that Windows servers have to be restarted on a daily basis, so their temp folders get cleared on a daily basis. Why write / maintain extra code when you dont have to!
  • 2
    There are poor underprivileged embedded devices that have one or maybe even half a KB of flash memory IN TOTAL and these rich webdevs waste memory like no tomorrow.

    Really makes me tear up.
  • 1
    @Pyjong Nope, for example in linux the /tmp directory is cleaned by a service on start-up.
  • 1
    @Jifuna was just about to say this. Its not hard to get rid of temp files, just store them in the right place

    I believe windows also has a temp folder
  • 0
    When you do a dump, you flush.
Add Comment