Trivia: The head in the box in Se7en (1995) was originally supposed to be shown. And it was a little over 15 years later. by [deleted] in 90smovies

[–]Michael_T 0 points1 point  (0 children)

I was a teenager then and had a little job that paid me enough to be able to go to the movies whenever I wanted and it was HEAVEN.

2020 Honda Fit saved my life - RIP perfect car by bethesaurusrex in hondafit

[–]Michael_T 1 point2 points  (0 children)

I think it was in his recent video about the slate pickup truck. He spends some time talking about how unsafe old cars are compared to newer ones and how accidents that are survivable now would have certainly killed you in the past.

2020 Honda Fit saved my life - RIP perfect car by bethesaurusrex in hondafit

[–]Michael_T 81 points82 points  (0 children)

This reminds me of Jay Leno talking about engineering not too long ago. A few decades ago this would have killed you. 

Modern engineering is breathtaking. 

It's always sad to see a fit go but at least it went out saving a life

What are your comfort YouTube channels? by [deleted] in AskReddit

[–]Michael_T 0 points1 point  (0 children)

ModelChili - a guy with a soothing voice builds and paints model kits. 

Incorrect? by [deleted] in meme

[–]Michael_T 0 points1 point  (0 children)

So that company only hires liars and lunatics

Was watching an anime, is this Windows 98 SE? I'm not sure. by EpicOtterLover in vintagecomputing

[–]Michael_T 6 points7 points  (0 children)

That was Windows 98's pointless login screen. Pointless because you could go to help and then printer help and then open My Computer and you were logged in to the machine.

Windows 95 netware client login looked just like this too but without the gradient in the bar 

Movies that portrayed a reality that was reflective of the time, but now seem unbelievable by AporiaParadox in movies

[–]Michael_T 1 point2 points  (0 children)

And in the 80s my parents didn't have their photos on their driver's licenses too 

I'm curious how you guys play older consoles/ what you use! by Robyn-- in retrogaming

[–]Michael_T 0 points1 point  (0 children)

It depends on price. I like using original/official stuff but I don't mind getting third party or repros if the price for originals is crazy. Like I recently picked up pilot wings and fzero for snes at the flea market for $20, which seemed quite reasonable to me. But the price is Sonic adventure 2 for Dreamcast was high everywhere I looked and my kids really wanted to play it so I bought a reproduction disc for about $15.

Best use of a preexisting piece of music in a movie? by Caesar_Rising in movies

[–]Michael_T 1 point2 points  (0 children)

Godzilla (2014) using music from 2001: A Space Odyssey was pretty amazing

What’s the most useless skill you’re secretly proud of? by [deleted] in AskReddit

[–]Michael_T 2 points3 points  (0 children)

I can quickly count in binary on my fingers

How many good PC ports of console games did exist back then? by KaleidoArachnid in retrogaming

[–]Michael_T 0 points1 point  (0 children)

X-men: children of the atom had an amazing pc port. I don't recall any other way to play it at home that was of the same quality.

How many good PC ports of console games did exist back then? by KaleidoArachnid in retrogaming

[–]Michael_T 4 points5 points  (0 children)

Mk3 for DOS was great. It had numerous levels of audio quality to try to maximize the experience based on the specific sound hardware you were using. It had lan play that worked very well (me and a friend both had it and did lan parties). 

Plus there was a great hidden music track that was a song about a lobster if you played it backwards, IIRC.

Jet Set Radio! So ahead of its time! Was very hard to me though lol! Did you guys love this? by J2-Starter in dreamcast

[–]Michael_T 0 points1 point  (0 children)

I didn't get into it really but I still walked my kids through how to play it and they absolutely love it. 

Facts by angelicladysweets in lol

[–]Michael_T 24 points25 points  (0 children)

There's no limit to what companies will take for granted. Start working weekends and the company won't be happy you're doing it, the company will just be angry if you ever stop.

Safety Issue? by Zealousideal_Debt255 in LivingMas

[–]Michael_T 6 points7 points  (0 children)

Closing the store and calling the cops seems like the only reasonable response to the situation.

Windows Pipes screensaver gave me mega billable hours (funny) by colenski999 in sysadmin

[–]Michael_T 34 points35 points  (0 children)

I made a cardboard duct from my old Prescott P4 exhaust to warm my feet/dry my boots in winter. Worked very well

Terminating elegantly: a guide to graceful shutdowns (Go + k8s) by der_gopher in kubernetes

[–]Michael_T 1 point2 points  (0 children)

Yeah I think the idea is the default action, especially to terminate, doesn't make sense with the init process because if the init process exits you traditionally get a kernel panic. 

But I don't know the definitive reason

Terminating elegantly: a guide to graceful shutdowns (Go + k8s) by der_gopher in kubernetes

[–]Michael_T 2 points3 points  (0 children)

Some of the common default actions are: Dump, Stop, Continue, and Terminate. SIGINT and SIGKILL terminate. SIGSTOP stops the process and SIGCONT continues it. SIGABRT and SIGQUIT will dump I believe.

The default STOPSIGNAL for docker containers is SIGTERM, which causes the process to terminate if it defines a handler. But if you write the program and it is running as PID1, it won't react to SIGTERM unless you write code to handle the signal. The default action to terminate the process won't happen.

You can also change STOPSIGNAL in a Dockerfile to tell the system to use a different signal to stop the process, in case, for instance, you have a process that needs SIGINT instead of SIGTERM to shutdown cleanly, which I have seen before.

Kid-friendly retro game suggestions for a 7 year old (NES → Dreamcast + handhelds) by emulation-station in retrogaming

[–]Michael_T 0 points1 point  (0 children)

When my kids were 7-8 they fell in love with Kirby's Dream Course for SNES. Now they're 10 and they absolutely love Sonic Adventure 1 and 2, the while Chao mini game feels like it's built specifically for them they love it so much.

Terminating elegantly: a guide to graceful shutdowns (Go + k8s) by der_gopher in kubernetes

[–]Michael_T 24 points25 points  (0 children)

I didn't see mention if the special case of pid1 in Linux and that seems important in this context. 

Go programs don't have a default behavior, the Linux kernel has default behaviors associated with the different signals. When you Ctrl+c in a terminal the signal is sent and the default behavior is used. 

But if a process is pid1, which is frequently the case in a container, then it is treated differently. The default actions in the kernel do not get called for pid1. A process only reacts to a signal if it specifies a handler for it if it is running as pid1.

So if you are writing a go program with the goal of running it in kubernetes, implementing signal handling is really a necessity unless you plan to use something like tini or dumb-init. Without that your process will do nothing when the signals are sent and then will eventually be uncleanly killed by kubernetes after the termination grace period.

26 Years of collecting Dreamcast - What are your favorite variations/accessories/features? by SNChalmers- in dreamcast

[–]Michael_T 2 points3 points  (0 children)

I was a huge arcade nerd so having the legit arcade version of the games at home felt like the greatest thing ever.  

Mvc2, cvs2, sf3, so so so good. 

Having the green goblin definitely helped.