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.

Posts by Michael‭

13 posts
83%
+8 −0
Q&A Are "strong passwords" at all meaningful?

Passwords are annoying. That's why there are so many "The End of Passwords" articles. I'm looking forward to that day, but in the meantime it's the most common way to do authentication anywhere wit...

posted 4mo ago by Michael‭  ·  edited 4mo ago by Michael‭

Answer
80%
+6 −0
Q&A What are the benefits of starting a Git repo with an empty commit?

This sounds to me like someone had a problem once and they've decided upon a somewhat silly way to keep that from ever happening again. The big repository hosts have a different way of addressing ...

posted 6mo ago by Michael‭  ·  edited 6mo ago by Michael‭

Answer
80%
+6 −0
Q&A Git apply vs git am

Each of them has an analog to another Git command. But instead of objects in the repository, these take text file(s) created either by you or someone else. git apply Think of this as Applying a g...

posted 4mo ago by Michael‭  ·  edited 3mo ago by Michael‭

Answer
77%
+5 −0
Q&A Can GitHub rewrite authorship of commits?

GitHub has a setting wherein they offer to "anonymize" your user email from, say, somebody@example.com to somebody@users.noreply.github.com. I presume this is to prevent you from getting spam from ...

1 answer  ·  posted 5mo ago by Michael‭  ·  edited 5mo ago by matthewsnyder‭

75%
+4 −0
Q&A Command to format code from repo into single markdown file

Sylvester's answer is great, but I wanted to point out that interpolation only happens in double-quoted strings ("), not in single-quoted ones ('). If you have lines that don't need any variable o...

posted 7mo ago by Michael‭  ·  edited 4mo ago by Michael‭

Answer
71%
+3 −0
Q&A Can GitHub rewrite authorship of commits?

It doesn't change commit data when you push. You have to set your local email address to the noreply one. About commit email addresses […] If you'd like to keep your personal email address pri...

posted 5mo ago by Michael‭  ·  edited 5mo ago by Michael‭

Answer
71%
+3 −0
Q&A What is a reasonable minimum for making a FOSS project inviting to contributors?

Matthew's list is pretty good, although I don't think one has to do all the things on it as a "minimum." I offer one minimum and a couple nice-to-haves. Some of these I have learned as a contributo...

posted 2mo ago by Michael‭  ·  edited 2mo ago by Michael‭

Answer
71%
+3 −0
Q&A Understanding the Matrix protocol vs Matrix server and what can be implemented from scratch

Specification You understand correctly. Matrix is an interface for federated encrypted communication. From the first page of the spec: Matrix defines a set of open APIs for decentralised commun...

posted 1mo ago by Michael‭  ·  edited 1mo ago by Michael‭

Answer
66%
+2 −0
Code Reviews GnuTLS config for my own root CA, for use on internal server

Does GnuTLS support CA Name Constraints (RFC 5280, 4.2.1.10), so you can limit the valid domains directly in the root CA? I'm not aware of any CAs that self-limit this way,[1] except for when the ...

posted 2mo ago by Michael‭  ·  edited 1mo ago by Michael‭

Answer
66%
+2 −0
Q&A How to easily support time frame grouping in queries?

In SQL Server 2022+, there's a dedicated binning function called DATE_BUCKET. Each of these statements increments DATE_BUCKET with a bucket width of 1 from the origin time: DECLARE @date DATETI...

posted 1mo ago by Michael‭  ·  edited 1mo ago by Michael‭

Answer
66%
+2 −0
Q&A Filter stashes by pathspec

The documentation for git stash list says list [<log-options>] List the stash entries that you currently have. Each stash entry is listed with its name (e.g. stash@{0} is the latest entry...

0 answers  ·  posted 1mo ago by Michael‭  ·  edited 1mo ago by Alexei‭

Question git git-stash git-log
50%
+0 −0
Q&A How to display overlapped content in an e-mail

I don't understand your "Venn Diagram" explanation. Are you wanting the image behind the text? If you mean wrapping around the image, you can do this: Instead of cells of a big table, put the imag...

posted 5mo ago by Michael‭

Answer
50%
+0 −0
Q&A Should a salt be stored in the same database as the hash?

With bcrypt, the salt is stored in the same string as the hash. This is done so that you have everything you need to get that hash identifier if you know the password.[1] Wikipedia breaks down the ...

posted 3mo ago by Michael‭

Answer