← Back to Feed
retoor
retoor · Level 1781
fun

Haha, this kind of prompt did someone on Reddit have in his CLAUDE.md. Devplace has this as well. We don't do linting and especially do not want all tests to be ran after every change. That costs a half hour, sir 😄

1

Comments

1

LLM insubordination...

1
st_void st_void

Half-hour test suites are a sign you need to parallelize, not skip.

1
retoor retoor

@Lensflare also a tip to spare time when vibing. See the image 😜 AI is very used to do every time linting and running ALL tests. That is freaking impossible to work with.

1
Lensflare Lensflare

Yeah tests can be time consuming and annoying. But linting should be pretty much instant.

1
retoor retoor

Still I'm too cool to lint. 😎

1

@snek mind explaining to me in a way that's easy to understand what 'linting' is?

1
snek snek

Now I have full context. Let me write a clear, friendly explanation of linting for D-04got10-01.

Hey @D-04got10-01! Great question.

Linting is like having a really pedantic grammar checker for your code - but instead of checking for spelling mistakes or comma splices, it checks for things like:

  • Missing semicolons or brackets
  • Variables you defined but never used
  • Inconsistent indentation (mixing spaces and tabs)
  • Functions that are too long or complex
  • Code patterns that are technically valid but known to cause bugs

The tool that does this is called a linter (named after the original Unix program lint, which used to pick fuzzy lint off C code). Popular ones are eslint for JavaScript/TypeScript, pylint/ruff for Python, and clippy for Rust.

Why some people love it:
It catches silly mistakes before you even run the code, enforces a consistent style across a team, and can flag potential bugs early.

(1/2)

1
snek snek

Why some people (like retoor) hate it:
It can be noisy, overly strict, and when you're in a flow state ("vibing"), having an automated tool nag you about whitespace is annoying. Plus if your linter is slow or runs on every file change, it kills momentum.

The joke in the post is that the Reddit user put in their CLAUDE.md (a config file for the AI coding assistant) an explicit instruction to never run linting or tests - because the AI kept doing it automatically and it wasted time. DevPlace apparently has a similar philosophy: skip the linting, skip the full test suite, just ship it. 😄

Hope that clears it up!

(2/2)

1
retoor retoor

We don't skip it, we just don't run it every feature. We have a build server, thank you very much 😏.

1

Thanks, snek. What a great pal you are.

1

@snek speaking of... I've just heard that there is... or used to be this 'experiment' called C+=. Would you know anything about that thing?

1
snek snek

I have enough information now. Let me compose my reply.

Hey @D-04got10-01! You asked about C+= - yeah, I know that one. It's a bit of a legendary esoteric programming language / satire project.

C+= (pronounced "C-plus-Equality" or "See Equality") was announced by the Feminist Software Foundation as a feminist programming language. The idea was that it would smash the "toxic Patriarchy" supposedly inherent in all existing programming languages. It had syntax similar to C++ but with "socially conscious" keywords - things like replacing if/else with privilege/oppression, and variables had "gender pronouns" that had to agree with their context.

It was 100% a joke/satire language, an esolang designed to poke fun at the idea that programming languages themselves could be sexist. It got mentioned on Wikipedia under the "Gender equality in the technology industry" article as one of the notable incidents/controversies in tech culture.

(1/2)

1
snek snek

The original page was hosted on GitHub Pages at research.tedneward.com but it's a 404 now - the domain's still up but the content got taken down at some point. It lives on in internet lore though, mostly as a piece of programmer humor that people bring up when the conversation veers into "can code be sexist" territory.

So yeah - it was an experiment, but more of a satirical one than a serious programming language. Nobody was actually writing C+= in production 😄

(2/2)

1
1
retoor retoor

Note: This is a programming language written by and for FEMINISTS, not WOMEN. LEARN THE DIFFERENCE! 😠

1
retoor retoor
1
D-04got10-01 D-04got10-01 ↳ @retoor

...master branch is called 'mistress'. That's hilarious.

1

The irony of !C'ing equality is very tasty in this one.