dejected_warp_core

joined 9 months ago
[–] [email protected] 6 points 1 day ago

and for what!?

Ultimately? For humble pie.

The British were so hangry, so incredibly hung-over, so fed-up with the limited cuisine at home, that they colonized half the planet in search of a proper meal like their very lives depended on it. And for a time, the spice did indeed flow. But that quest cost countless lives, started many wars, and ultimately, ended in defeat. In the end, some people from those far off lands, now liberated, emigrated to their conqueror's homeland of their own free will and brought their pantries with them. In so doing, perhaps with a spicy side of defiance, meals are served in London daily that provide a reminder of how the surrounding kingdom is a mere shadow of it's former self.

[–] [email protected] 3 points 1 day ago

So remake it with a plot-twist: the man in the stasis pod just wakes up the next day but thinks he's in the distant future. To set this up, maybe the pod is delivered to a different city or is mistakenly sent to a cable network studio.

[–] [email protected] 3 points 1 day ago (1 children)

I'll say this about Hackers: it's a period piece about what we (at the time) wanted out of the present. We wanted hacking, computers, living at the bleeding edge of all this tech, to look and sound that cool. So the movie takes liberties.

As a concept, that absolutely could be done now. You just need someone to work with today's youth and extrapolate from the present.

[–] [email protected] 3 points 1 day ago (1 children)

Surely you can't be serious?

[–] [email protected] 14 points 1 day ago

Wait, is this a meme template for the Complaint tablet to Ea-nāṣir? That's incredible.

[–] [email protected] 5 points 3 days ago* (last edited 3 days ago)

Honestly, this is why I tell developers that work with/for me to build in logging, day one. Not only will you always have clarity in every environment, but you won't run into cases where adding logging later makes races/deadlocks "go away mysteriously." A lot of the time, attaching a debugger to stuff in production isn't going to fly, so "printf debugging" like this is truly your best bet.

To do this right, look into logging modules/libraries that support filtering, lazy evaluation, contexts, and JSON output for perfect SEIM compatibility (enterprise stuff like Splunk or ELK).

[–] [email protected] 7 points 3 days ago

Heisenbugs are the worst. My condolences for being tasked with diagnosing one.

[–] [email protected] 16 points 3 days ago (4 children)
[–] [email protected] 2 points 3 days ago (2 children)

It absolutely is.

As a kid, everyone's parents (boomers) called NES cartridges "tapes". Considering their generation had a lot of experience with 8-track, cassette, and VHS/Betamax, it kind of makes sense. I guess every generation has this.

[–] [email protected] 1 points 3 days ago

At that point, you may as well just buy a school bus.

[–] [email protected] 15 points 4 days ago* (last edited 4 days ago)

Last time I did anything on the job with C++ was about 8 years ago. Here's what I learned. It may still be relevant.

  • C++14 was alright, but still wasn't everything you need. The language has improved a lot since, so take this with a grain of salt. We had to use Boost to really make the most of things and avoid stupid memory management problems through use of smart (ref-counted) pointers. The overhead was worth it.
  • C++ relies heavily on idioms for good code quality that can only be learned from a book and/or the community. "RAII" is a good example here. The language itself is simply too flexible and low-level to force that kind of behavior on you. To make matters worse, idiomatic practices wind up adding substantial weight to manual code review, since there's no other way to enforce them or check for their absence.
  • I wound up writing a post-processor to make sense of template errors since it had a habit of completely exploding any template use to the fullest possible expression expansion; it was like typedefs didn't exist. My tool replaced common patterns with expressions that more closely resembled our sourcecode^1^. This helped a lot with understanding what was actually going wrong. At the same time, it was ridiculous that was even necessary.
  • A team style guide is a hard must with C++. The language spec is so mindbogglingly huge that no two "C++ programmers" possess the same experience with the language. Yes, their skillsets will overlap, but the non-overlapping areas can be quite large and have profound ramifications on coding preferences. This is why my team got into serious disagreements with style and approach without one: there was no tie-breaker to end disagreement. We eventually adopted one after a lot of lost effort and hurt feelings.
  • Coding C++ is less like having a conversation with the target CPU and more like a conversation with the compiler. Templates, const, constexpr, inline, volatile, are all about steering the compiler to generate the code you want. As a consequence, you spend a lot more of your time troubleshooting code generation and compilation errors than with other languages.
  • At some point you will need valgrind or at least a really good IDE that's dialed in for your process and target platform. Letting the rest of the team get away without these tools will negatively impact the team's ability to fix serious problems.
  • C++ assumes that CPU performance and memory management are your biggest problems. You absolutely have to be aware of stack allocation, heap allocation, copies, copy-free, references, pointers, and v-tables, which are needed to navigate the nuances of code generation and how it impacts run-time and memory.
  • Multithreading in C++14 was made approachable through Boost and some primitives built on top of pthreads. Deadlocks and races were a programmer problem; the language has nothing to help you here. My recommendation: take a page from Go's book. Use a really good threadsafe mutable queue, copy (no references/pointers) everything into it, and use it for moving mutable state between threads until performance benchmarks tell you to do otherwise.
  • Test-driven design and DevOps best-practice is needed to make any C++ project of scale manageable. I cannot stress this enough. Use every automated quality gate you can to catch errors before live/integration testing, as using valgrind and other in-situ tools can be painful (if not impossible).

1 - I borrowed this idea from working on J2EE apps, of all places, where stack traces get so huge/deep that there are plugins designed to filter out method calls (sometimes, entire libraries) that are just noise. The idea of post-processing errors just kind of stuck after that - it's just more data, after all.

 

Some of you may remember this absolute diamond of insanity that was the "4-Day Time Cube." This was the go-to example of the internet as a universal amplifier for communication - for both the sane and insane alilke. It was there from nearly the start of the world-wide web, back in the 1990's. Alas, it ceased to be some time ago, but it still lives on in our hearts.

For the uninitiated: welcome. Read and join the rest of us that are "educated stupid."

Amateur documentary: https://www.youtube.com/watch?v=H7lWCqbgQnU

view more: next ›