Communities

Writing
Writing
Codidact Meta
Codidact Meta
The Great Outdoors
The Great Outdoors
Photography & Video
Photography & Video
Scientific Speculation
Scientific Speculation
Cooking
Cooking
Electrical Engineering
Electrical Engineering
Judaism
Judaism
Languages & Linguistics
Languages & Linguistics
Software Development
Software Development
Mathematics
Mathematics
Christianity
Christianity
Code Golf
Code Golf
Music
Music
Physics
Physics
Linux Systems
Linux Systems
Power Users
Power Users
Tabletop RPGs
Tabletop RPGs
Community Proposals
Community Proposals
tag:snake search within a tag
answers:0 unanswered questions
user:xxxx search by author id
score:0.5 posts with 0.5+ score
"snake oil" exact phrase
votes:4 posts with 4+ votes
created:<1w created < 1 week ago
post_type:xxxx type of post
Search help
Notifications
Mark all as read See all your notifications »

Welcome to Software Development on Codidact!

Will you help us build our independent community of developers helping developers? We're small and trying to grow. We welcome questions about all aspects of software development, from design to code to QA and more. Got questions? Got answers? Got code you'd like someone to review? Please join us.

Activity for LAFK‭

Type On... Excerpt Status Date
Answer A: To transfer, or not to, that is the question: whether 'tis nobler to let it stay or to take arms against Stack Overflow's dominance of FAQ canonicals
You are a thoughtful person, aren't you? /me bows in thanks I for one think it would be valuable, even if you were to port it as is. In other words: it's valuable. Period. 1. I like what Stephen said and concur: divide into multiple questions please, careful with the licenses. 2. If you disli...
(more)
10 months ago
Question Maven exec:exec fails to see executables
I am stumped at Maven exec plugin. Running `mvn exec:exec -Dexec.executable="curl"` (or "echo") works. But when running `mvn exec:exec` or `mvn exec:exec@b` (or `@a`) it fails saying > The parameter 'executable' is missing or invalid My POM's relevant part: maven-...
(more)
10 months ago
Answer A: Writing a testable console program
Not using Rust myself I'll add to @InfiniteDissent's answer on: > is there a better way to solve this problem altogether? Yes, there is, it's called a golden master test. Legacy code retreat taught me a golden master testing technique for cases just like that. 1. You create a set of i...
(more)
11 months ago
Question Running mvn validate does not show rules passed message though it should
My large, multi-module Maven project validation (Maven Enforcer plug-in) is playing tricks on me. `moduleA> mvn validate` - correctly finds all modules - runs enforcer on all of them - displays consistent output in all 7 runs I did so far - enforcer "rules passed" message appears in 5/7 modu...
(more)
11 months ago
Answer A: How to make Husky run git hook?
Breakthrough, I found it, mere minutes after posting here. A workaround more than an answer, but it gets the script working. 1. Reading up on `husky.sh` I decided that I don't have it and I don't want it (need to push the work forward). How did this work before though? Why could I push, commit, se...
(more)
11 months ago
Question How to make Husky run git hook?
How to make Husky run git hook? I have a working git hook, prepare-commit-message, but the moment Husky was installed, the hook stopped working. Not finding much luck, I then tried to make it a "Husky git hook" and run it like that, so I installed it via `npx husky add prepare-commit-message cont...
(more)
11 months ago
Answer A: Spreadsheets apps as end user development tool / spreadsheet formulas as a form of funtional programming
While I personally agree (take my upvote) I'd note that programming spreadsheet has multiple levels. Level 0: I use spreadsheet, sometimes with some functions, like `count` or `sum` of something conditional. Level 1: I do pivots often, along with lookups, references, and many others. And so ...
(more)
11 months ago