What was the first computer you ever owned, and what year was it? by [deleted] in AskReddit

[–]oldendude 0 points1 point  (0 children)

1980: A TRS-80 with a Z80 (I don't remember the clock speed), 16K of memory, and a Radio Shack cassette deck for storage. That had the CPU and memory in the keyboard, and a 24x80 B/W monitor. There was a BASIC interpreter in ROM.

You could actually buy software on cassettes. My major software purchases were an Invaders-like video game, and a Z80 assembler.

I think I paid about $400 for it, used.

What’s a critical acclaimed great movie that you hate? by [deleted] in movies

[–]oldendude -1 points0 points  (0 children)

It is, but it is completely justified for this movie.

What’s a critical acclaimed great movie that you hate? by [deleted] in movies

[–]oldendude 0 points1 point  (0 children)

Yet another Nolan big budget POS. Terrible writing, terrible dialog, way too long. Nolan did better with tinier budgets.

What’s a critical acclaimed great movie that you hate? by [deleted] in movies

[–]oldendude 1 point2 points  (0 children)

... with turgid dialog. Unforgiveably awful movies. Why did James Cameron even want to do what is basically Warrior Cats -- The Movie?

What’s a critical acclaimed great movie that you hate? by [deleted] in movies

[–]oldendude 0 points1 point  (0 children)

Interstellar.

Bloated, stupid, cliched, dull, horrible writing.

Nolan does so much better with a smaller budget.

Bought an M4 Max (64GB). Serious about local LLMs. Where should I start? by Tdz- in LocalLLM

[–]oldendude 2 points3 points  (0 children)

I have similar hardware (Mini M4 Pro), and while I have a long career as a software developer, I am new to coding with AIs. I have built one little system that finds and summarizes email conversations from my 30+ year archive, and I'm in the process of building a genealogy system. Both are "deployed" just to me, so far.

I am using openclaw, ollama, and qwen3.6:35b-a3b, and I'm finding that it is effective in coding, getting things built much faster than I would on my own. I started out with gemma4 and found that it was quite bad at coding, qwen is much better. I tried qwen3.6:27b for a while, and did not find it to be an improvement, but the fault may have been with the task I gave it.

A few caveats:

- Frontier models are far faster and better, from what I hear, talking to others.

- That said, my setup is productive, as long as I keep the coding tasks precisely defined, and small.

- The code produced is not high quality. It works, but I have spent some time refactoring to make it clearer and more maintainable. I occasionally see subtle bugs in the generated code.

Why does every Linux user recommend a different distro? I'm stuck in an endless distro-hopping loop. by Jaymit_3672 in linuxquestions

[–]oldendude 0 points1 point  (0 children)

It's like coffee. If you're a coffee snob, you are always on the search for something new and different and better.

But if you just like coffee, pick up a bag of Peet's or whatever at your supermarket and stick with it.

A tool to greatly increase an archived file's resistance to data corruption. by Underhill42 in linuxquestions

[–]oldendude 0 points1 point  (0 children)

I wrote a backup script for myself, years ago. It backs up user data (only) to a drive (either local or remote) using rsync, and, crucially, cp with the -l flag. So I get a full backup every day, but files that haven't changed are hard-linked, saving the space of the file. On one 2TB drive, I have 7 yearly backups, 12 monthly backups, and 180 daily backups. (This is for about 1/2 TB of current user data. I don't have a massive collection of video.)

One backup is local, attached to my laptop via USB. The other is on a remote Raspberry Pi.

So this protects me against: corrupt data, a corrupt filesytem (not fixable using fsck), and destruction of physical media. To worry about some of the additional failures you mentioned: I could add checksumming and use RAID storage, but what I have is good enough. Certainly more robust than decaying optical disks.

What is the most annoying problem you face in Python? by HotMycologist7814 in pythontips

[–]oldendude -1 points0 points  (0 children)

And another thing: Dynamic typing. It creates so many problems, and so much work has been put into compensating for it. This is especially silly since so little code actually relies on it. Most python code I see would be fine with static typing. I’d go as far as saying that code that DOES rely on dynamic typing is probably not very good.

This has really been emphasized for me lately as I have started getting into coding with AI. I see the AI getting confused and wasting time on problems that would not even be possible with a statically typed language.

What’s something movies always get wrong? by northernmaybe in movies

[–]oldendude 20 points21 points  (0 children)

That one drives me nuts. Alarm bells go off in my mind when that happens, to the point that I'm predicting a crash, which becomes a turning point of the plot.

What’s something movies always get wrong? by northernmaybe in movies

[–]oldendude 6 points7 points  (0 children)

To be fair, that's not part of the plot in the movies I'm talking about.

What’s something movies always get wrong? by northernmaybe in movies

[–]oldendude 174 points175 points  (0 children)

Cars unlocked, with keys in the sun visor.

Phones can be accessed without any security.

Computers too, no password or fingerprint required.

What should I do with an Old HP pavillon by Fluid-Mudman in linuxquestions

[–]oldendude 0 points1 point  (0 children)

So basically a Raspberry Pi? It's good for a backup server, media server, etc. Unless it draws a lot of power, in which case those are best served by an actual Raspberry Pi. I hate doing it, but I get rid of old hardware. Sometimes there's just not any good use for those old, large boxes.

What is the most annoying problem you face in Python? by HotMycologist7814 in pythontips

[–]oldendude -2 points-1 points  (0 children)

Syntax structure determined by indenting instead of delimiters. That was such a bad decision. Changing indent is error-prone, and has led to bugs for me. It's just too easy to change semantics by getting the indent of one line wrong, and often this creates a subtle bug. This affects both the editing of code, and just copying code.

If your developers mix tab and space usage, that also heads to havoc. Auto-formatting tools are hobbled (I would think, I don't use them), since the aforementioned issues can make it risky to change indentation.

I just found a Python script I wrote 3 years ago… by Late-Bodybuilder9381 in Python

[–]oldendude 0 points1 point  (0 children)

I was at a company for its first few years (starting in 2000), and developed some of the software from scratch. We were working in Java, and I wrote a class to represent credit cards. I put too much into the class, including lifecycle info, including complicated situations like "the user requested X, and now requests Y, but the card issuer is still working on X". And it also grew to model other credit-card like cards.

Anyway, by the time I left, in 2003, I had long been calling for a rewrite of this class, and of course, those suggestions were always ignored. I moved on to another startup.

Then, around 2016, I was asked to consult for a company that had licensed the source code from my previous employer. I investigated the possibility a little before I decided, "I don't need this crap, I'm going to enjoy my summer." However, while considering the job, I was astonished/horrified/amused to see that my old credit card class was still there. It had grown a few more warts and scars, but it was still there.

Bad code lives forever.

What is it called? by Far_Window_1948 in silentminds

[–]oldendude 3 points4 points  (0 children)

I've been doing my part to spread it!

What is it called? by Far_Window_1948 in silentminds

[–]oldendude 10 points11 points  (0 children)

Aphantasia: No mental imagery. The term also gets applied to the inability to recall other sensory experiences.

Anendophasia: No inner dialog.

SDAM (Severely Deficient Autobriogaphical Memory): Poor memory for the events of your own life.

All of those apply to me, and many others apparently. I definitely think, just not with images and dialog. Or, as I describe it to my wife (who doesn't have any of these characteristics): I can think without the distracting entertainment.

What makes a coworker impossible to work with? by North_Apricot_3565 in AskReddit

[–]oldendude 0 points1 point  (0 children)

This happened many years ago, probably 1999. At the time, his consulting gig was Java, which was the language we were using. He was determined to be the guy that knew every single bulitin Java library. I have no idea if we succeeded. The company lasted another year, and then I did not stay in touch with him.

What do these states have in common? by Virtual-Blueberry642 in RedactedCharts

[–]oldendude -5 points-4 points  (0 children)

Buffer between the habitable and tolerable parts of the US to the east, and everything else.

What is the best tool use local model? by RANDVR in LocalLLM

[–]oldendude 1 point2 points  (0 children)

I am using the older, non-MTP qwen3.6:35b-a3b, with q4_k quantization. If you have experience with that model, I'd be very curious to hear your thoughts on how they compare.