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

12 posts
66%
+2 −0
Q&A Xcode, SDL app showing in a single quarter of the window.

Why SDL (the Simple Directmedia Layer) apps are showing in a single quarter of the window, while the other three are blacked out, and what can I do about it? I'm using Xcode. I think this started h...

0 answers  ·  posted 3y ago by .                                                .‭  ·  edited 3y ago by .                                                .‭

Question xcode sdl retina
66%
+2 −0
Q&A How to protect the git respository for a public_html folder on a Linux server?

If you can, have the repository locally and/or in a Git server. Use rsync to deploy updates to public_html. If the repository still needs to live in that same server, same applies (rsync, just loca...

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

Answer
62%
+3 −1
Q&A DST disrupting rsync twice a year

I'm facing rsync full syncs every once upon a time, I think it's because DST, notice an hour of difference: $ ls -l tier2/VIDEO-2020-06-17-15-10-27.mp4 /Volumes/KINSTON2/dat/laptop_kinstones/tier2...

1 answer  ·  posted 3y ago by .                                                .‭  ·  last activity 2y ago by .                                                .‭

Question rsync
60%
+4 −2
Q&A What are the pros and cons of a composite primary key versus a unique constraint?

One could either do a unique constraint on those foreign keys or a composite primary key on those columns. For elegance, canonicity, a primary key is necessary. You would initially have a primary...

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

Answer
60%
+1 −0
Q&A Can renaming a MySQL column be sped up by dropping indexes or foreign keys?

I need to rename one column in 170 tables in a MySQL database and its going really slow. [...] Doesn't make much sense. A column name should be easy to rename and somewhat independent of the data...

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

Answer
60%
+1 −0
Q&A What would the pros and cons of storing the compiled CSS output of SASS in version control?

This is as old as the ages, and the problem existed in the Yacc world long before CSS was invented.  Keep both the SASS and the resulting CSS files in version control. Good: More predictable, eas...

posted 3y ago by .                                                .‭

Answer
60%
+1 −0
Q&A cpulimit and sensors

I'm using GNU/Linux. I'd need some program or script or solution which would wrap make so that it would launch cpulimit on g++ processes in order to be nice to sensors output. Or, more genericall...

0 answers  ·  posted 3y ago by .                                                .‭

60%
+1 −0
Q&A DST disrupting rsync twice a year

Solved this æons ago actually... [Assumes Bash shell]. If the DST difference is for instance an hour (or 60 minutes, or 3600 seconds), change: --modify-window=3 To: --modify-window=$((3 + 60...

posted 2y ago by .                                                .‭

Answer
50%
+1 −1
Q&A Should I cast to (void) when I do not use the return value

I saw at least one compiler (Codewarrior for HC12) warn me if I use a function without using it's return value. [...] Ye, for that's the right choice. [...] Other compilers (clang/gcc) do not is...

posted 3y ago by .                                                .‭

Answer
50%
+0 −0
Meta How can I fill in tag information?

There is a privilege to add the information to the tags: https://github.com/codidact/qpixel/blob/047a8d92073559fb10ebead89df8ce686f1a3dc4/app/views/tags/show.html.erb#L36-L39 https://github.com/cod...

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

Answer
41%
+3 −5
Q&A Is concatenation a logical AND?

It is OR. Assimilate FALSE to the empty string, and TRUE to any other string: ε CONCATENATE ε = ε ε CONCATENATE something = something something CONCATENATE ε = something What about both sides at T...

posted 3y ago by .                                                .‭

Answer
33%
+0 −2
Q&A Does using an Integer have any speed/performance benefits over a string in JSON

Let's start with this perl at https://www.json.org/json-en.html: A number is very much like a C or Java number, except that the octal and hexadecimal formats are not used. That's an extremely imp...

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

Answer