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 meriton‭

63 posts
77%
+5 −0
Meta Are reference requests welcome here?

On that other site that shall not be named, reference request questions are outlawed as "asking for an off-site resource". What do you guys think about such questions? Should they be welcome here?...

4 answers  ·  posted 3y ago by meriton‭  ·  last activity 3y ago by dmckee‭

Question discussion scope
66%
+2 −0
Code Reviews Setting the authentication token in an Angular application for generated API clients

Do you need to write this yourself? That is, are you sure there is no library that could do this for you? After all, the angular services generated by the typescript-angular language binding of the...

posted 3y ago by meriton‭  ·  edited 3y ago by meriton‭

Answer
71%
+3 −0
Meta Give actionable feedback when closing questions

I think the best solution is to have specific canned close reasons, with vetted messages clearly communicating what was bad, why that is bad, and specific tips for improving it. Here are some attem...

posted 3y ago by meriton‭

Answer
66%
+6 −2
Meta Give actionable feedback when closing questions

Having had the dubious honor of experiencing the closing process from the perspective of a question author, it seems to me that closing does not adequately communicate why the question was closed, ...

4 answers  ·  posted 3y ago by meriton‭  ·  last activity 3y ago by Mithical‭

Question discussion
50%
+3 −3
Q&A What is the worst code you ever saw?

The worst code I ever saw was when I was called in to finish the work of a consultant who had left the company for greener pastures. The feature had been in development for 4 months, and was, accor...

posted 3y ago by meriton‭

Answer
15%
+1 −14
Q&A What is the worst code you ever saw? [closed]

In the interest of learning from the mistakes of other people: What is the worst code you ever saw? What made it so bad?

1 answer  ·  posted 3y ago by meriton‭  ·  closed 3y ago by Mithical‭

75%
+4 −0
Q&A Is there a way to estimate the execution time of a statement in MySQL?

The best way to estimate this is to measure it, for instance by importing a backup of the production database into a new instance and run your scripts there. Short of that, you could consult the ex...

posted 3y ago by meriton‭

Answer
54%
+4 −3
Meta Do we want a wiki (or similar) alongside Q&A?

I am not categorically opposed, but I currently don't see a use case for articles. For one, wikis already exist. What would be the benefit of hosting our own rather than participating on Wikipedia?...

posted 3y ago by meriton‭

Answer
75%
+4 −0
Meta Long code lines are not wrapped

As Lundin points out, there are quite a few whitespace-sensitive programming languages out there, where automatic wrapping would change the apparent meaning of the code, such as Phython or JavaScri...

posted 3y ago by meriton‭

Answer
80%
+6 −0
Meta Asking software architecture related questions on Software Development community

Personally, I'd say that it depends on the question. Over on that other site, this ban was instituted to avoid opinion-based questions. For instance, suppose you asked: Is Angular a great framewor...

posted 3y ago by meriton‭

Answer
83%
+8 −0
Q&A What are the pros and cons of a composite primary key versus a unique constraint?

Facts In relational theory, each row in a relation is uniquely identified by a primary key. That's why some purists say that every table should have a primary key. Foreign keys usually reference a ...

posted 3y ago by meriton‭  ·  edited 3y ago by meriton‭

Answer
62%
+3 −1
Q&A Would a MySQL database run more efficiently with smaller varchar lengths?

The manual writes: In contrast to CHAR, VARCHAR values are stored as a 1-byte or 2-byte length prefix plus data. The length prefix indicates the number of bytes in the value. A column uses one len...

posted 3y ago by meriton‭  ·  edited 3y ago by meriton‭

Answer
86%
+11 −0
Q&A How should we share some content between two otherwise-independent git repositories?

Generally speaking, if two groups of people collaborate on the same software, I'd recommend they put everything in a shared git repository: Documentation is intimately tied to the version of the ...

posted 3y ago by meriton‭

Answer