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

Type On... Excerpt Status Date
Answer A: Continuously read from piped input using Vim
Maybe passing the piped results through `tail` first would partially work. Use `tail` with the `-f` flag so that tail will continuously its contents. Example: ` | tail -f | vim -` I think you would still need to tell vim to get updates from tail periodically with `:e!`
(more)
over 2 years ago
Question Docutils rst2pseudoxml.py reported error: No role entry for "meth"
docutils's rst2pseudoxml.py is reporting this error: `Unknown interpreted text role "meth".` even though the build command: `sphinx-build -b html -d build/doctrees source build/html` runs fine and properly displays the method. I suspect I just have some mis-configuration somewhere because the role ...
(more)
over 2 years ago
Question Are there practical reasons for designing a method-only class/object?
Are there practical reasons for designing/implementing a method(s)-only class/object? Follow-up background notes: This question is for languages that are not exclusively Object-Oriented, for example, Python and Perl. So languages that can have classes/instances and top-level independent f...
(more)
over 2 years ago
Question Are there textual-formats for documenting actions in Graphical Windows systems?
I've recently been involved with creating text documentation of steps for workflows in graphical windows systems (and web-pages). These are often somewhat wordy, for example: "Click on the 'Exit' item of the menu in the upper-left corner of the screen". Are there more concise and established pro...
(more)
almost 3 years ago
Question Python Regex to parse multiple "word. word. word."
I'm trying to parse lines like "THIS. THAT..OTHER " so that `"THIS. THAT."` is found. There can be more than one `` separated by a space except no space after the last one. Based on the initial feedback, I've added more example lines to the lines array below. My current results are: ``` re....
(more)
about 3 years ago