Log in to h4cker, then connect Hacker News to publish comments.
THthrow-nodox-235 часов назад
I.. I cannot restart my computer. Why? I work at a smallish agency as a developer. A few years ago we were acquired by a massive global corporation as part of the typical vertical integration strategy these big boys usually run with. Anyway, that’s all dandy as we otherwise would have perished during Covid. But this parent company, as many others, have some rather stringent security policies when it comes to IT. They use ZScaler for ”securing” traffic to- and from its employees’ computers. And wow has this been a boiled frog. At first it was fine, not that big of a deal as not much of our day-to-day tooling was blocked. But slowly and steadily the frog got cooked. Now the frog is basically dead. Like.. dead dead. For example their current configuration of the ZScaler proxy strips ALPN causing all traffic to fallback to HTTP/1.1 which has - well, quite some consequences for web development. There are a gazillion more things - but to really get to the point, no I haven’t restarted my computer in the last euhmm weeks. We found a way to disable ZScaler temporarily to access the ”real” internet, but this loophole has been plugged in their latest rollout. And if I restart my computer the new version will take effect - which will literally make it impossible for me to work. And yes, we have for a long time been trying to explain/escalate this but the red tape and bureaucracy of a massive org like this (where a vast majority doesn’t even know we exist) makes it feel very Sisyphus-esque.
DVdv35z19 часов назад
I have a cron job which restarts my computer every day (Linux Mint Debian edition). I like waking up to a "fresh" computer, and since I know that it will restart every day - this is a "forcing function" to (1) be diligent about saving things that are important, (2) treating browser tabs, random notes, etc as ephemeral, and bookmarking the important stuff.
I used to work at an office where we pair-programmed with clients all day (Pivotal Labs), and most of our computers had some sort of "automatically restart / restore from a known-good image". I liked this, as it resulted in less cruft over time, and some intentionality about what getting a computer into a productive state means. It also got me thinking of using automatic routines to accomplish goals, and not being so attached to my open tabs, etc. Let it gooo....
To be more specific about this - for those wanting to get into blogging/publishing, this could mean auto-opening the website project folder using VSCodium upon user login, so its ready to go for the morning coffee. More half the time I just close it - but as a "default", it makes it easy for me to do the thing I want to do.
sudo crontab -e -u root
#-----------------------------
# RESTART COMPUTER DAILY
#-----------------------------
00 04 * * * /usr/sbin/shutdown -r +5 "Rebooting in 5 minutes. Run 'shutdown -c' to cancel"
GLgloosx6 часов назад
My Macbook needs a restart periodically. Somehow my quite limited disk space (500GB) is getting lower and lower and lower to the point where spotlight will stop working. After restart, I magically get 50GB of disk space back, I'm not sure what is wrong with it and I never took the time to investigate, but I guess it's caches and temp files of all kinds. I also HATE the invention of "open all apps and windows back so everything is the same as before restart", no matter if I choose no in the special dialog, it freaking opens the apps and windows which were open prior to restart, which is FRUSTRATING, I have to kill them all as soon as they pop up, pressing CMD+Q repeatedly for a solid minute after EVERY restart – I like my system clean and pristine after I shut it down and up again, but somehow they made it problematic.
BAbArray31 минуту назад
I only shutdown when absolutely necessary, i.e. the system becomes unstable and crashes. Otherwise all of my machines have 100% uptime. This is for a few reasons:
1. Some tools take time to get setup in the way that they were originally setup. I mentally want everything to remain where I left it. I'm usually working on 5+ projects at a time, it's already enough mental tax to have to context switch, let alone to have to go find all the resources I need to be productive again.
2. I'm forced to use Ubuntu, and it is constantly updating stuff and making it crash. Every time I reboot it's a gamble as to whether something I previously used works again properly. Maybe 1 in 100 boots, the entire system doesn't come back properly.
KYkylemaxwell23 часа назад
I remember when Linux users were practically obsessive about uptime and restarting felt like a sign of failure. This was at a time when Windows seemingly needed to restart once or twice a day, at least.
These days I like to turn my work Mac off at the end of the week just so I feel a literal sense of closure. It's not really the applications minimizing and running in the background; it's ME.
Comments
5 preview comments · loading full threadLog in to h4cker, then connect Hacker News to publish comments.
I.. I cannot restart my computer. Why? I work at a smallish agency as a developer. A few years ago we were acquired by a massive global corporation as part of the typical vertical integration strategy these big boys usually run with. Anyway, that’s all dandy as we otherwise would have perished during Covid. But this parent company, as many others, have some rather stringent security policies when it comes to IT. They use ZScaler for ”securing” traffic to- and from its employees’ computers. And wow has this been a boiled frog. At first it was fine, not that big of a deal as not much of our day-to-day tooling was blocked. But slowly and steadily the frog got cooked. Now the frog is basically dead. Like.. dead dead. For example their current configuration of the ZScaler proxy strips ALPN causing all traffic to fallback to HTTP/1.1 which has - well, quite some consequences for web development. There are a gazillion more things - but to really get to the point, no I haven’t restarted my computer in the last euhmm weeks. We found a way to disable ZScaler temporarily to access the ”real” internet, but this loophole has been plugged in their latest rollout. And if I restart my computer the new version will take effect - which will literally make it impossible for me to work. And yes, we have for a long time been trying to explain/escalate this but the red tape and bureaucracy of a massive org like this (where a vast majority doesn’t even know we exist) makes it feel very Sisyphus-esque.
I have a cron job which restarts my computer every day (Linux Mint Debian edition). I like waking up to a "fresh" computer, and since I know that it will restart every day - this is a "forcing function" to (1) be diligent about saving things that are important, (2) treating browser tabs, random notes, etc as ephemeral, and bookmarking the important stuff. I used to work at an office where we pair-programmed with clients all day (Pivotal Labs), and most of our computers had some sort of "automatically restart / restore from a known-good image". I liked this, as it resulted in less cruft over time, and some intentionality about what getting a computer into a productive state means. It also got me thinking of using automatic routines to accomplish goals, and not being so attached to my open tabs, etc. Let it gooo.... To be more specific about this - for those wanting to get into blogging/publishing, this could mean auto-opening the website project folder using VSCodium upon user login, so its ready to go for the morning coffee. More half the time I just close it - but as a "default", it makes it easy for me to do the thing I want to do. sudo crontab -e -u root #----------------------------- # RESTART COMPUTER DAILY #----------------------------- 00 04 * * * /usr/sbin/shutdown -r +5 "Rebooting in 5 minutes. Run 'shutdown -c' to cancel"
My Macbook needs a restart periodically. Somehow my quite limited disk space (500GB) is getting lower and lower and lower to the point where spotlight will stop working. After restart, I magically get 50GB of disk space back, I'm not sure what is wrong with it and I never took the time to investigate, but I guess it's caches and temp files of all kinds. I also HATE the invention of "open all apps and windows back so everything is the same as before restart", no matter if I choose no in the special dialog, it freaking opens the apps and windows which were open prior to restart, which is FRUSTRATING, I have to kill them all as soon as they pop up, pressing CMD+Q repeatedly for a solid minute after EVERY restart – I like my system clean and pristine after I shut it down and up again, but somehow they made it problematic.
I only shutdown when absolutely necessary, i.e. the system becomes unstable and crashes. Otherwise all of my machines have 100% uptime. This is for a few reasons: 1. Some tools take time to get setup in the way that they were originally setup. I mentally want everything to remain where I left it. I'm usually working on 5+ projects at a time, it's already enough mental tax to have to context switch, let alone to have to go find all the resources I need to be productive again. 2. I'm forced to use Ubuntu, and it is constantly updating stuff and making it crash. Every time I reboot it's a gamble as to whether something I previously used works again properly. Maybe 1 in 100 boots, the entire system doesn't come back properly.
I remember when Linux users were practically obsessive about uptime and restarting felt like a sign of failure. This was at a time when Windows seemingly needed to restart once or twice a day, at least. These days I like to turn my work Mac off at the end of the week just so I feel a literal sense of closure. It's not really the applications minimizing and running in the background; it's ME.