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
83%
+8 −0
Q&A How to set text-align for whole column of HTML table?

In addition to what Moshi already told you: Among web designers, W3Schools has a somewhat tainted reputation, because it often makes things simpler than they really are. In my experience, this lac...

posted 3y ago by meriton‭

Answer
75%
+4 −0
Meta Etiquette for posting comments

Should be avoided secondary discussions or debates on controversial points (please ask a question on meta). Just when is a discussion secondary? I think r~~ used the term "digressive", wh...

posted 3y ago by meriton‭

Answer
77%
+5 −0
Meta Etiquette for posting comments

Proposal: Can Include Helpful feedback I'd refrain from restricting the topic of feedback, because there are many possible topics: Clarifying the question Explaining why OP would be ...

posted 3y ago by meriton‭

Answer
72%
+6 −1
Meta How are we supposed to give feedback for poor questions if such comments are deleted?

The question https://software.codidact.com/posts/281517 is currently voted at -3. I wrote several comments to explain why, so the author can hopefully ask better questions in the future. This morn...

2 answers  ·  posted 3y ago by meriton‭  ·  last activity 3y ago by deleted user

Question discussion comments
77%
+5 −0
Q&A Is it worth using the Java Platform Module System in application code?

Is it worth using the Java Platform Module System introduced in Java 9 to structure application code? Given that the Java Platform Module System introduced in Java 9 doesn't manage dependency vers...

1 answer  ·  posted 3y ago by meriton‭  ·  edited 11mo ago by __blackjack__‭

Question java architecture
77%
+5 −0
Q&A Why often times data compression causes data loss?

I understand data compression as making data structures nearer (if they are mere machine code without any abstract representation) or representing them in less and less abstract computer languages...

posted 3y ago by meriton‭

Answer
75%
+4 −0
Q&A How to properly deal with impersonation in a Web application? (security vs. usefulness for tech support)

My first instinct would be to track both identities, using one for access control, and the other for audit purposes. For instance, rather than storing: User createdBy; you'd store User create...

posted 3y ago by meriton‭

Answer
81%
+7 −0
Meta Why do I, a logged in user, have to solve a captcha to post?

You should know I am not a bot by now ;-)

1 answer  ·  posted 3y ago by meriton‭  ·  last activity 3y ago by ArtOfCode‭

Question bug
66%
+2 −0
Q&A How to enable or disable a bunch of reactive form controls?

Actually, TypeScript is perfectly able to type check the code you posted. Here's what the compiler thinks: const functionName = disable ? "disable" : "enable"; // inferred type: "disable" | "enabl...

posted 3y ago by meriton‭

Answer
81%
+7 −0
Q&A Is there a problem in making Captcha an HTML builtin with an attribute setting which type of Captcha

As the comments in that thread mention, Captcha is a service, not mere software. The distinction is that Captcha are in an arms race with spammers, and must continually evolve to remain effective. ...

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

Answer
80%
+6 −0
Q&A Dye all label asterisks Red with vanilla JavaScript

In HTML, style information is applied to elements; it can't be applied to individual characters in a text node. Therefore, if you want to style the * differently, it needs a dedicated element. You...

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

Answer
75%
+4 −0
Q&A What should healthcheck of an Web API application actually check?

I am interested in a guideline to understand how dependencies are considered when building the healthcheck functionality for an API. Like any functionality, the implementation of this feature sho...

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

Answer
75%
+4 −0
Q&A How to reason about transaction isolation during development

Consider the following code: public class OnlineShoppingService { @Transactional public void cancelOrder(String id) { if (shipmentRepository.findShipmentForOrder(id) != null) { ...

1 answer  ·  posted 3y ago by meriton‭  ·  last activity 3y ago by Alexei‭

66%
+2 −0
Q&A What is the latest, efficient way to create a login page in JAVA?

A login page is but the tip of the iceberg. For a login page to function, you need a way to store users and their passwords, verify passwords in a safe way, prevent the login form from being bypass...

posted 3y ago by meriton‭

Answer
75%
+4 −0
Q&A Is it necessary for a build server to remove node_modules before an AOT build?

I suspect this is an outdated practice: Prior to npm 3, npm did not keep track of resolved dependencies, and npm install would try to reconcile the existing with the declared dependencies. Since no...

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

Answer
37%
+1 −3
Q&A How can I make --reset-author the default?

Rather that doing git commit --amend --date= every time you commit, you can coalesce commits at merge time using git merge --squash. That said, for non-trivial topic branches, it is usually valuab...

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

Answer
70%
+5 −1
Q&A Is omitting braces for single statements bad practice?

Advantages of Mandatory Braces When in Rome, do as the Romans do. Since every popular coding standard for java mandates the use of braces, and every popular code style checking tool enforces their...

posted 3y ago by meriton‭

Answer
62%
+3 −1
Meta The size of the code format window is much too small.

Seconded. This looks accidental, since the height is set to 20em, but the line-height is set to 1.5em, resulting in 20/1.5 = 13 lines being displayed. I wonder what that line-height is for? I know ...

posted 3y ago by meriton‭

Answer
40%
+0 −1
Meta Community feedback: What type of questions can I ask here?

questions dealing with how to write software documentation This seems overly broad. I mean this would include Mark Bakers entire book, but technical writing has an established codidact community,...

posted 3y ago by meriton‭

Answer
40%
+0 −1
Meta Community feedback: What type of questions can I ask here?

questions about which tools, frameworks, or technologies to use, unless they are directly related to development (e.g. code, schema changes documentation tools) Don't understand. Frameworks or ...

posted 3y ago by meriton‭

Answer
77%
+5 −0
Meta Community feedback: What type of questions can I ask here?

questions about the system, network, or server administration Which system? I think it is clearer without "the": questions about system, network, or server administration

posted 3y ago by meriton‭

Answer
71%
+3 −0
Meta Community feedback: What type of questions can I ask here?

questions asking for implementing a certain feature (or homework). You should include your (partially working) trials in the post asking to explain what a certain code does. A great many questi...

posted 3y ago by meriton‭

Answer
81%
+7 −0
Meta Community feedback: What type of questions can I ask here?

questions about best practices as long as enough detail is provided to answer using external references or expertise consensus It's not a "detail" if it is essential, is it? Can we explicitly sta...

posted 3y ago by meriton‭

Answer
81%
+7 −0
Meta Community feedback: What type of questions can I ask here?

questions about software design, software architecture, or modeling questions related to software design/review - what item goes where when using a certain technology stack These seem redundant...

posted 3y ago by meriton‭

Answer
55%
+3 −2
Meta Community feedback: What type of questions can I ask here?

Overall feedback: To better understand what is on-topic and what is offtopic, please read the following sections. followed by a total of 16 bullet points ... folks, no first time visitor will car...

posted 3y ago by meriton‭

Answer