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 Someoneā€­

Type On... Excerpt Status Date
Answer A: How to prompt a user for an expanded variable in Bash?
How about this for bash: ``` #!/bin/bash echo "What is your web application root?" read webapplicationroot webapplicationroot="$(envsubst <<< "$webapplicationroot")" echo webapplicationroot=$webapplicationroot ``` `envsubst` does the environment variable expansion for you. For examp...
(more)
about 3 years ago
Answer A: Scheme for cross-platform warning control?
Since C++11 the standard mandates the `Pragma` operator which is intended for use inside macros. With this you can improve the situation by wrapping all this compiler switching into a central macro definition (MSVC is untested!): ``` // see https://stackoverflow.com/a/45783809 #define DOPRAGM...
(more)
over 3 years ago
Question Allow filtering search for only Meta (or any other category)
When I open the search, I can only search across all categories of this site. I'd like to filter down the search results to only Meta (or Code review).
(more)
over 3 years ago
Question Posts list shows luap42 instead of actual author
The current two top questions at https://software.codidact.com/ ( https://software.codidact.com/q/279699 and https://software.codidact.com/q/278674) are marked as coming from luap42: Screenshot of top of question list However, when clicking on them, they are actually by other authors. What is g...
(more)
over 3 years ago
Question pod 0.1.0-dev not accepted for required version 0.1.0 (without -dev suffix)
I have following setup: 1. flutter plugin with an example app 2. the plugin depends on a native library (`flutterplugin.podspec` contains `s.dependency 'native-lib', '0.1.0'`) 3. for local development I pull in the native library in the example app `Podfile` via `pod 'native-lib', :path => '../...
(more)
over 3 years ago