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

Type On... Excerpt Status Date
Answer A: Questions easily answered by studying a beginner-level book
Beginner questions are not a "huge problem" for StackOverflow. They are the main reason SO got big at all. During what I would call its "peak", the joke going around was that the best documentation for any software is its SO tag. SO responded to this by creating a whole site feature around it, and ma...
(more)
over 1 year ago
Edit Post #288302 Initial revision over 1 year ago
Question How to prevent Visual Studio Code from opening an extra blank window?
When I run `code .` in a directory, Visual Studio Code opens two windows. The first is empty, the second shows directory I was in as expected. I checked `/.config/VSCode/Workspaces` and there is only one in there for a different folder, so that can't be it. I found a bug about this https://gith...
(more)
over 1 year ago
Edit Post #288299 Post edited:
over 1 year ago
Edit Post #288299 Initial revision over 1 year ago
Question How to migrate after SQLalchemy schema changes?
When I set up my object mappings with SQLalchemy, everything works well enough. It even creates the tables for me if they don't exist. However, if I decide to add/remove columns (aka fields) from an object, it starts erroring out with my old test data because it's got the old column set. Obviously...
(more)
over 1 year ago
Comment Post #288060 It seems like the question can be rephrased as: "Why doesn't Python have the same syntax as Javascript?" Well, why would it? Obviously different languages have different syntax and it makes no sense to expect otherwise. If they had the same syntax they would be the same language.
(more)
over 1 year ago
Comment Post #288257 That command looks confusing and difficult to type/edit to me, which is why I used the form that I did. The temp files are not a problem if you put them in /tmp/, they'll get cleaned up automatically at next boot.
(more)
over 1 year ago
Edit Post #288257 Post edited:
over 1 year ago
Edit Post #288257 Initial revision over 1 year ago
Answer A: grep AND search for multiple words in files
Between-lines relations are not easy to look for with grep, which is a line filter. You could use a regex that spans lines, but I find this annoying because of all the flags you have to set. Grep has a switch for printing the filenames instead of matching lines. You can put each in a file. Once yo...
(more)
over 1 year ago