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 |
---|---|---|---|---|
Edit | Post #288321 | Initial revision | — | almost 2 years ago |
Question | — |
How are software recommendations handled? How are software recommendations handled on https://software.codidact.com/ ? https://outdoors.codidact.com/ has a "gear recommendations" section, so it seems like Codidact is open to the idea. I saw https://software.codidact.com/posts/287107 but it's about books specifically. What about questio... (more) |
— | almost 2 years ago |
Comment | Post #285739 |
I agree with this, but I think it will be unhelpful down the line to characterize UI/UX as "choosing fonts and colors". UI design and UX design are design disciplines with a lot of depth beyond that. Using that phrasing risks alienating a lot of actual design experts and also perpetuates an unhelpful... (more) |
— | almost 2 years ago |
Edit | Post #288305 |
Post edited: |
— | almost 2 years ago |
Edit | Post #288305 | Initial revision | — | almost 2 years ago |
Answer | — |
A: Should I post a link to the Github repo for code reviews? If it's so large that you must link the repo rather than reposting code, I think it is too large to reasonably expect anyone to review. Bored people will read a couple dozen lines, and point out a thing or two. But nobody (?) is bored enough to audit 1k+ LoC just for the asking. I personally would... (more) |
— | almost 2 years ago |
Comment | Post #286000 |
I think he means he's a noob of the site, not a noob of Python. (more) |
— | almost 2 years ago |
Edit | Post #288304 | Initial revision | — | almost 2 years ago |
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) |
— | almost 2 years ago |
Edit | Post #288302 | Initial revision | — | almost 2 years 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) |
— | almost 2 years ago |
Edit | Post #288299 |
Post edited: |
— | almost 2 years ago |
Edit | Post #288299 | Initial revision | — | almost 2 years 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) |
— | almost 2 years 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) |
— | almost 2 years 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) |
— | almost 2 years ago |
Edit | Post #288257 |
Post edited: |
— | almost 2 years ago |
Edit | Post #288257 | Initial revision | — | almost 2 years 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) |
— | almost 2 years ago |