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

6 posts
80%
+6 −0
Q&A Conditionally ignore files in git

Something like automatically ignoring all .pdf files for which a .tex of the same name exists? We can do something close to that. We can reject the commit if your change list contains pdf and ...

posted 2y ago by jmathew‭  ·  edited 2y ago by jmathew‭

Answer
77%
+5 −0
Q&A Using an existing web server vs writing your own

3rd Option: You put a web server like Nginx, etc in front of your application server which can also handle 'raw' network traffic. Even in the PHP scenario this is common. There are a few reason I ...

posted 7mo ago by jmathew‭  ·  edited 7mo ago by jmathew‭

Answer
75%
+4 −0
Q&A How to uncollapse the first and second tiers of a link tree in JavaScript?

The first item your selector returns is the top level arrow. hasAttribute just tells us if the attribute is present, not what the value is. So basically your condition is returning true for all ele...

posted 2y ago by jmathew‭

Answer
71%
+3 −0
Q&A What are the disadvantages of using auto mapper libraries?

It's fairly obvious, but the greater the difference between the input object and the mapped output, the less valuable auto mapping becomes. The configuration and fluent syntax for the exception...

posted 2y ago by jmathew‭  ·  edited 2y ago by jmathew‭

Answer
66%
+2 −0
Q&A Are there other reasons why useEffect might not be defined apart from not importing it?

You need import all functions from the React library that you use. Add import {useEffect, useState} from 'react' to your file.

posted 11mo ago by jmathew‭

Answer
64%
+7 −3
Meta How can we grow this community?

Not having a single sign on option greatly increased the friction in adopting the site for me. This was further compounded when the sign up process failed the first time. Which I believe was a bug...

posted 2y ago by jmathew‭  ·  edited 2y ago by jmathew‭

Answer