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.

Activity for toraritte‭

Type On... Excerpt Status Date
Edit Post #290197 Post edited:
about 1 year ago
Edit Post #290198 Initial revision about 1 year ago
Answer A: How to create and manipulate (read/write) Excel (XLSX) documents with complex rules using general programming languages?
All of these projects use Microsoft's OpenXML SDK for Office behind the scenes: 1. .NET (F#, C#) The F# Guide recommends NPOI, which also seems to be the most popular and most up-to-date, but there are others as well (ClosedXML, EPPlus). 2. Elixir + `elixlsx` seems to be only for manipula...
(more)
about 1 year ago
Edit Post #290197 Initial revision about 1 year ago
Question How to create and manipulate (read/write) Excel (XLSX) documents with complex rules using general programming languages?
Our organization (blindness non-profit in California) is obligated to submit reports to grant organizations (e.g., Department of Rehabilitation) on a regular basis. Most of the time, this means exporting data from our case management system and copying it manually into an Excel template file containi...
(more)
about 1 year ago
Comment Post #290189 To the point, and explains exactly how it should be done without getting lost in specifics.
(more)
about 1 year ago
Edit Post #290185 Initial revision about 1 year ago
Answer A: What are the benefits of starting a Git repo with an empty commit?
Quoting an answer from SO: > Perhaps there was an advantage years ago prior to version 1.17.12 which added the `--root` option to rebase. Nowadays though, I can't think of any reason to start with an empty commit for a new repository. > > However, there may still be some minor advantages when r...
(more)
about 1 year ago
Edit Post #290182 Initial revision about 1 year ago
Question What are the benefits of starting a Git repo with an empty commit?
Found an article about starting a repo with an empty commit. Read the post a couple of times, but still don't understand the reasoning: 1. > ##### 1. `git log` and other commands blow up with terrifying error messages. > ##### 2. You can’t `git reset` back to that initial state. Based on...
(more)
about 1 year ago
Edit Post #290181 Initial revision about 1 year ago
Answer A: What is the point of triggering CI/CD with an empty git commit?
Based on the SO comments, this is not a good general practice, and I believe the point of the posts mentioned in the question is that + it can be done (but one probably shouldn't) + this can be used to test a CI/CD build service/system without having to add a contrived change. It seems that a ...
(more)
about 1 year ago
Edit Post #290180 Initial revision about 1 year ago
Question What is the point of triggering CI/CD with an empty git commit?
I read posts (e.g., 1, 2, 3) that recommend triggering a CI build process by pushing an empty git commit. I don't understand how this is a good idea as the commit history will be peppered with meaningless entries, and they can't be removed without re-writing the hashes (e.g., `git rebase --intera...
(more)
about 1 year ago
Edit Post #290096 Post edited:
about 1 year ago
Edit Post #290096 Initial revision about 1 year ago
Question How to programmatically click through a list of elements if one has to wait for a click to load a set of predefined new elements?
I would like to download the old-time radio show I Love a Mystery from the OTRR website. I figured out how to construct the list of right URLs, ```javascript const urlStub = "https://otrr.org/OTRRLibrary/jukebox/"; copy(Array.from( document.getElementsByTagName('a')). map( a => `"$...
(more)
about 1 year ago
Edit Post #289948 Post edited:
Clarify "program"
about 1 year ago
Comment Post #289948 Your comment is so spot on: I didn't realize how misleading the word "program" would be, so one would naturally think of "software" or "application", when I'm talking about "federal / state program for non-profits to be able to provide services". Thank you so much for pointing this out!
(more)
about 1 year ago
Comment Post #289948 Never heard of it, but by the sound of it I would say yes:) Thank you also for your question regarding performance, because I should have foreseen how this would be an important aspect. The answer is that performance is not an important factor: There are only a couple hundred clients a year, less...
(more)
about 1 year ago
Comment Post #289975 Thank you for providing real-world examples! The example in the question is indeed from an introductory book to logical database design (Database Design for Mere Mortals), and the author points out several times that some aspects may not be possible with a given RDBMS / not easy to implement. I wa...
(more)
about 1 year ago
Comment Post #289948 > Does a table for program A have different columns from an analogous table for program B? Is it possible to make a reasonable design where creating a new program is as simple as inserting some rows? I would assume not, but the requirements you listed don't jump out at me as things that should requir...
(more)
about 1 year ago
Comment Post #289948 > you haven't really provided enough information to answer that question, at least not clearly. I didn't want to inundate readers with the details when the database structures are indeed fundamentally different (should have spelled this out probably), and the only entities common are the clients a...
(more)
about 1 year ago
Comment Post #289948 > The structure of this question is kind of awkward. [..] What I think your actual question is is "what is a good software architecture for your problem". You are right, and this is not a good question, but one that reflects my ignorance in this topic. Also, your suggestion is right, but spending ...
(more)
about 1 year ago
Edit Post #289948 Post edited:
about 1 year ago
Edit Post #289948 Initial revision about 1 year ago
Question What software architecture are available for developing an application with multiple business domains that only share some common aspects?
> NOTE\ > The meaning of the word "program" below is > > > (PROGRAM) A federal or state initiative that offers grants for non-profits so that they can provide service at low cost or free of charge. > > and not a software application or online service. When I mean software, I use "application". ...
(more)
about 1 year ago
Edit Post #289938 Post edited:
about 1 year ago
Edit Post #289938 Initial revision about 1 year ago
Question How to implement a relationship between 2 tables where the type of participation is mandatory and RESTRICT rule for both?
Found the example below in a book teaching logical database design, but I'm stuck on how one would implement this in PostreSQL: ![enter image description here][1] The diagram reflects the following business rule: > An instructor must teach one class, but no more than eight classes. This i...
(more)
about 1 year ago