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 Nisha Jadon‭

4 posts
60%
+1 −0
Q&A How can I create and modify a struct over iterations of a loop?

You can use an Option to keep track of the mutable state between iterations. Use as_mut to get a mutable reference to the Option's inner value without consuming the Option. Use unwrap on the muta...

posted 2mo ago by Nisha Jadon‭  ·  edited 2mo ago by GeraldS‭

Answer
42%
+1 −2
Q&A How to establish a relationship between HTML elements (tags)? (i.e., how can one element refer to another one)

attribute data-* can be used for custom data storage or semantic elements like id, class, aria. <p data-date-added="3/9/2021" data-superseded-by-amendment="1"> Complex systems are the bes...

posted 2mo ago by Nisha Jadon‭  ·  edited 2mo ago by GeraldS‭

Answer
42%
+1 −2
Q&A libicuin75.dll was not found

Your application needs a dll to run, libicuin75.dll Search on google "download libicuin75.dll for msys". Do not depend on any web, URL can be change so just search for DLL on google and download.

posted 2mo ago by Nisha Jadon‭

Answer
33%
+1 −4
Q&A Reusing HTML without rewriting it

Use static site generator to manage your footer on multiple pages. GitHub supports Jekyll, by this you can create templates for common elements like footers.

posted 2mo ago by Nisha Jadon‭

Answer