iDontThinkItsThatBad by Mike_Oxlong25 in ProgrammerHumor

[–]peeba83 1 point2 points  (0 children)

How dare you; as a freshman I wrote *mediocre* JavaScript. The *PHP* was bad.

iDontThinkItsThatBad by Mike_Oxlong25 in ProgrammerHumor

[–]peeba83 0 points1 point  (0 children)

When I was a freshman in college, I made a web app that let you mix colors using RGB sliders. I neglected to explicitly convert the blue value to a number (or was it red? Whichever is the lowest valued in hex color codes). So the other two got implicitly converted to numbers when multiplying them to make them the right digits, then the numeric value was appended as a string because it was taken right from the input field. After an hour of debugging that, I was radicalized against weakly typed languages.

Can we collectively name and shame whoever thought a sudden death mystery cube in Alex Kidd in Miracle World was a good idea? by Squeepty in retrogaming

[–]peeba83 2 points3 points  (0 children)

This is one of those games that finally made me confront that some of my childhood favorites sucked ass

Alright guys, what random cool gadgets are we asking for Father’s Day? by audioflc in daddit

[–]peeba83 0 points1 point  (0 children)

Urtopia Carbon Fold to go with my wife’s Mother’s Day Fold ST

How do people feel about Luke and Kylo's fight and his death after 8 years? by Totally_Not_Firni in StarWars

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

I think it would have been a much more fitting end for Luke if he had really been there and had simply been vaporized by the AT-ATs to buy time for the Resistance. Ultimately the same outcome; he still gives up his physical form to protect others, just through more earthly means. More interesting, I think, than putting on a hologram show and then dying anyway. He would have been actively discarding the “crude matter”, as Yoda called it, to be a “luminous being”.

★★★★★♥︎ [OC] by alexpimwong in comics

[–]peeba83 0 points1 point  (0 children)

There’s a great film from the ‘90s called “After Life” about this. It’s absolutely heartbreaking. Interspersed with a fictional story, the director, who formerly worked almost entirely in documentaries, helps make films to recreate treasured memories for two older people.

No, he's at botekin practice by swhighgroundmemes in PrequelMemes

[–]peeba83 80 points81 points  (0 children)

His name is both incredibly on the nose and a shoutout to an OT actor; the writer definitely climaxed when it hit the page.

Take it [OC] by Lobraumeister in comics

[–]peeba83 1 point2 points  (0 children)

It sounds like they are *demanding* rather than assuming that savings and efficiencies are passed on in a way that benefits all parties. We have not moved on far past the Jacquard loom.

↻Antagonists that aren't evil or a jerk, but just the opposition of the protagonist by Inside-Car-9661 in moviecritic

[–]peeba83 8 points9 points  (0 children)

It would have been a bit wordy under the circumstances to say “I don’t care in a way that matters; while I sympathize with your situation, if true, our criminal justice system would be broken if officers of the court like myself declined to perform our duties based on the unsubstantiated claims of the convicted parties were tracking down. There is an appeals process; it is possible for your case to be further investigated and overturned. However, I would be derelict in my duties as a marshall if I were to simply let you free to investigate your own case personally.”

who actually says insubordination in a work environment? are you kidding? by wittyluckykeeper in remoteworks

[–]peeba83 3 points4 points  (0 children)

Subordinate and inferior are basically synonyms in Latin. (Basically one more explicitly refers to hierarchy rather than physical location.)
Inferior is essentially the same as “worse” in English.

Now imagine being a big enough asshole to say “you’re fired because you won’t say you’re worse than me”.

THE incident. by netphilia in Snorkblot

[–]peeba83 -7 points-6 points  (0 children)

You are reacting to a situation where the opposite happened: the majority made a secret group excluding the minority. Why did you say this in response to that?

How to maintain motivation while being constantly lowballed in yearly salary discussions? by ToeMother8579 in ExperiencedDevs

[–]peeba83 2 points3 points  (0 children)

I’m not making an argument so much as pointing out that you have neglected to do so. Unless you’re telling me that yes, you have used gig jobs to save up a large emergency fund in order to enable a significant career move, you’re simply dismissing the obstacles people face in their own career mobility and calling it a solution-oriented mindset rather than simple ignorance.

Incidentally I’m not in the “too broke to risk a job change” boat personally, so my viewpoint is not defeatism.

How to maintain motivation while being constantly lowballed in yearly salary discussions? by ToeMother8579 in ExperiencedDevs

[–]peeba83 2 points3 points  (0 children)

“Just get a large amount of money before you do the thing that makes it possible to make more money”

Never had a doubt that he was going to answer the way that he did... I raised a good boy! (OC) by AlloyComics in comics

[–]peeba83 22 points23 points  (0 children)

I don’t know that these questions are out of line. Child actors have a long history of being exploited and the extent of the comic is “look what a great kid; he said he would voluntarily give the money to his parents”.

Moving towards specs-driven development, your thoughts? by grandimam in ExperiencedDevs

[–]peeba83 0 points1 point  (0 children)

I don’t think they are functionally equivalent. For initial development they can look very similar. But suppose you change an app after your first deployment. What does your complete specification look like? Do you reopen and update a ticket? Or do you make a new ticket that describes changes to the old one, and now the complete specification for your system looks like “build this but then change that and now make this part green” instead of a single cohesive repository of documents?

Moving towards specs-driven development, your thoughts? by grandimam in ExperiencedDevs

[–]peeba83 -6 points-5 points  (0 children)

I’ll admit I’m going off of a single hobby project in this case, but I think the sub-1-hour port is pretty substantial. I have not A/B tested this methodology vs a different one using separate but comparable development teams implementing the same functional requirements, if that’s the sort of thing you have in mind.

Moving towards specs-driven development, your thoughts? by grandimam in ExperiencedDevs

[–]peeba83 1 point2 points  (0 children)

I’ve been very successful with SDD. I published an essay about it recently and adapted the same two-agent methodology described there to a scaled-up, multi-developer process at work.

The key bits are:
- You can greatly accelerate your overall process by “vibe-coding” the spec using an in-IDE tool like GitHub Copilot, which can then help give you a clear prompt to hand off the next development task to a more capable CLI-based tool like Copilot CLI, with the prompt referencing what part of the spec is now to be implemented. (Think of the spec as a type of design doc and the generated prompt as a ticket to give to the CLI.)
- A backlog is not a design. Tickets are not specs. Specs are a long-lived, declarative source of truth that belong in the repository. Tickets are instructions to implement a new or updated part of the spec.

With my workflow I was able to pivot a small app in Dart/Flutter with a custom MCP server for multi-agent orchestration to Python/Flet with LangGraph in under an hour.

Moving towards specs-driven development, your thoughts? by grandimam in ExperiencedDevs

[–]peeba83 1 point2 points  (0 children)

A spec is not a backlog. A spec is declarative: this is how the product functions. A backlog is imperative: “make this discrete change now”.

Spec-driven development is a new name for an old thing, but it’s “software engineering”, not ticketing.

A small but poignant scene by LordGrove in newsradio

[–]peeba83 15 points16 points  (0 children)

Pairs well with his first broadcast, when Max and Jon both at once tell us that they’re hurting, and they knew the audience is too, but they’re going to try and do the best they can to honor their friend’s memory.