Scrap’s cat

  • 0 Posts
  • 19 Comments
Joined 1 year ago
cake
Cake day: June 16th, 2023

help-circle






  • I’m a bit older than you and gotta disagree one one point. The 50s was NOT an optomistic time for American SciFi. With the exception of “Forbidden Planet”, which heavily influenced TOS, 50s SciFi was dominated by paranoia, repression & fatalism. There were monsters under every rock. Our inability to control ourselves and our technology was dooming our future. The early 60s TOS was an optomistic breath of fresh air. Maybe we wouldn’t blow ourselves up after all


  • Longer seasons would allow them to throw in a few SciFi oriented episodes that don’t necessarily advance character arcs. Where would SNW be if TOS didn’t have the “Arena” (Gorn) episode that was based on a completely unrelated SciFi short story?

    Mirror, Mirror was a SciFi episode that not only gave us the foundation for Discovery, but cemented the evil-twin-goatee trope into pupular culture.

    Space Seed (Botany Bay/Khan) was also a one-off SciFi episode. Where would the entire franchise be without it?

    I really hope SNW makes room for exploring the sort of SciFi ideas that Star Trek was originally based on.









  • 50k lines is, IMHO, way too large for a bash script. I’d switch to python long before before that. Bash is primarily an *interactive shell. Bash has a lot of nice scripting capabilities (that few are aware of, let alone use) but its primary use is not as a programing language. As far as standard libraries go: sed, awk, grep, curl, netcat, etc… provide plenty of advanced capabilities. That’s the Unix philosophy, lots of small utilities that each do one thing well and that work with streams of bytes as i/o. Tie them together with a powerful shell, and an ordinary user can do quite a lot without “programming”. Is the Unix philosophy perfect? No. Has it proved to be the most flexible and successful compute environment developed for over 50 years? Yes.