Kache

joined 1 year ago
[–] Kache@lemm.ee 2 points 9 months ago (1 children)

Not surprising that PDF comments were being used as a task list/tracker. In the same manner, Google Docs supports "@-mentions", "assign to", and "resolved" functionality for comments.

All you can do is send feedback to Adobe somehow and hope they add that feature back in. In the meantime, best to find an alternative workflow.

[–] Kache@lemm.ee 2 points 9 months ago* (last edited 9 months ago)

avoiding merge conflicts

No, not like that -- you misunderstand. I'm not talking about actively avoiding conflicts. Coordinating to avoid merge conflicts is the same work as resolving a merge conflict anyway, just at a different time.

I'm talking about creating practices and environments where they're less likely to happen in the first place, never incurring the coordination cost at all.

One example at the individual level is similar to what you mentioned, but there's more to it. E.g. atomically renaming and moving in separate commits, so git's engine better understands how the code has changed over time and can better resolve merges without conflict.

But there're other levels to it, too. A higher-order example could be a hot module where conflicts frequently occur. Sure, atomic commits and all that can help "recover" from conflict more easily, but perhaps if the hot module were re-designed so that interface boundaries aligned with the domains of changes that keep conflicting, future changes would simply not conflict anymore.

IMO the latter has an actual productivity benefit for teams/orgs. Some portion of devs just aren't going to be that git proficient, and in this case, good high level organization is saving them from losing hours to incorrect conflict resolutions that can cause lost work, unintended logical conflicts (even though not lexical conflict), etc. Plus, it implies abstraction boundaries better match the changes demanded by the domain, so the code is likely easier to understand, too.

[–] Kache@lemm.ee 1 points 9 months ago* (last edited 9 months ago) (2 children)

It's kind of difficult to explain in the same way git is difficult to grok on the first try.

Perhaps it's convincing enough to just say:

  • Git is the fundamentally better at resolving merges/rebases without conflicts than older VCS that don't maintain a commit tree data structure.
  • Even within just git, using one diff algorithm vs another can mean the difference between git successfully merging vs failing and showing you a conflict
  • Software is flexible -- there are endless permutations to how it can be structured. Everything else being equal, some code/commit structures are more prone to conflicts than others

I.e. whether a conflict will happen is not some totally unpredictable random event. It's possible to engineer a project's code & repo so that conflicts are less common.

[–] Kache@lemm.ee 2 points 9 months ago (6 children)

Even better, learn how to avoid conflicts from happening in the first place!

[–] Kache@lemm.ee 4 points 9 months ago* (last edited 9 months ago) (1 children)

Thank goodness for the Hippocratic origins of healthcare. Wish I could throw his words back at him so he could hear how insane it sounds in the context of healthcare. Just imagine:

You think a doctor sits back and says, 'Gosh, how can we get the price of saving this patient's life down?' No, it's like, 'How high a price can I get and maximize the profit for my shareholder?'"

[–] Kache@lemm.ee 31 points 9 months ago* (last edited 9 months ago) (1 children)

You're getting a lot of conceptual definitions, but mechanically, it's just:

keeping state (data) and behavior (functions) that operate on that state, together

At minimum, that's it. All the other things (encapsulation, message passing, inheritance, etc) are for solidifying that concept further or for extending the paradigm with features.

For example, you can express OOP semantics without OOP syntax:

foo_dict.add(key, val)  # OOP syntax

dict_add(foo_dict, key, val)  # OOP semantics
[–] Kache@lemm.ee 9 points 9 months ago (3 children)

What kind of quick one off scripts have large complex scopes where variable renames are difficult to track?

Besides, these days Python has great LSPs and typing features that can even surpass the traditional typed langs

[–] Kache@lemm.ee 48 points 9 months ago (6 children)

But surely there's a practical middle between "shoot first, ask later" and "sit and wait an hour"

[–] Kache@lemm.ee 4 points 10 months ago* (last edited 10 months ago)

I've created a Google spreadsheet to accomplish this sort of thing: Split Payment Calculator

It's got formatting and locked areas to help layman usage, but it's ofc still a spreadsheet UI and not a dedicated app. A bit of math proficiency and spreadsheet formula knowledge helps.

Could be replicated on other spreadsheet software like Excel or Calc, although Sheets solves a lot of problems at once, like accessibility, sync, versioning, sharing, etc

[–] Kache@lemm.ee 6 points 10 months ago* (last edited 10 months ago)

It's difficult to consider them pollution even if we were to accept the subjective opinion on displeasing aesthetics.

The pollution we're all concerned about tends to be:

  • Physically harmful
  • Difficult to confine/localize/avoid/reverse
  • An externality the economy doesn't sufficiently account for
  • A burden that's unevenly/unfairly distributed across society

Even light pollution, which is arguably barely physically harmful, has all of the remaining qualities (or nearly) for sure.

If these qualities even apply wind generators at all, they do so very weakly. They can be moved/unbuilt, the "free market" is pricing them cheaper by the day, and if you really don't like looking at them, it's not impractical to avoid them.

[–] Kache@lemm.ee 22 points 10 months ago* (last edited 10 months ago) (1 children)

A title as uninformative as the single . commit messages he suggests writing.

Bare minimums of typo, refactor, whitespace, comments are barely any effort -- less than the thought it takes to name variables and functions.

I really can't agree with completely meaningless messages like minor and .

[–] Kache@lemm.ee 9 points 11 months ago

Technically, anything can be "hacked", but that's the same kind of technically as "any car can be broken into".

Just like there are ways to mitigate getting your car broken into, there are ways to mitigate getting your system compromised.

view more: ‹ prev next ›