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 Alexei
Type | On... | Excerpt | Status | Date |
---|---|---|---|---|
Edit | Post #289455 |
Post edited: added relevant tag |
— | over 1 year ago |
Edit | Post #289484 |
Post edited: added relevant tag |
— | over 1 year ago |
Edit | Post #289459 |
Post edited: inlined the link |
— | over 1 year ago |
Comment | Post #289429 |
Ref. to "I didn't even consider that Codidact allows case-sensitive tags until very recently." - If you write an existing tag using a different case, Codidact will not create a new tag, but use the existing one (i.e. case insensitive search and match).
Ref. to the `char` vs `CHAR` example, I think... (more) |
— | over 1 year ago |
Edit | Post #289429 | Initial revision | — | over 1 year ago |
Answer | — |
A: Tag creation/deletion criteria for Software Development? Yes, but with some notes I think this a good idea, but we will need to provide more details and agree on some details. > 1. A tag must be named appropriately, considering Tag naming guidelines. I have mixed feelings about using uppercase in the tag names. I am inclined to switch to using th... (more) |
— | over 1 year ago |
Comment | Post #289427 |
Ref. to "package managers install files in system locations" - this is not clear if this is supposed to be a feature of package managers in general or the Python ones. For example, NuGet package manager [installs global packages](https://learn.microsoft.com/en-us/nuget/consume-packages/managing-the-g... (more) |
— | over 1 year ago |
Edit | Post #289420 |
Post edited: minor spelling fix (title) |
— | over 1 year ago |
Comment | Post #289346 |
Can you also tag the question with the Windows version? (7, 10, 11) Not sure, but it might be relevant. (more) |
— | over 1 year ago |
Edit | Post #289275 | Nominated for promotion | — | over 1 year ago |
Edit | Post #289303 | Initial revision | — | over 1 year ago |
Answer | — |
A: Why is git merge from rather than to? Another reason could be to allow to perform the merge without auto commit and no fast-forward: ```bash git merge thebranch --no-commit --no-ff ``` This allows reviewing the merged changes before they are committed. (more) |
— | over 1 year ago |
Edit | Post #289258 | Initial revision | — | over 1 year ago |
Answer | — |
A: On self-answered questions, is it inappropriate to mark my own answer "Works for me" immediately? I don't think it is inappropriate for someone to mark their own answer "Works for me" on self-answered questions, but it feels a little bit redundant since the answer is expected to work for the poster. (more) |
— | over 1 year ago |
Comment | Post #289250 |
The only answer provided to the referenced SO question suggests that disabling the element that currently has the focus is most likely undefined and various user agents might treat it differently. ("it‘s quite likely that the Web Standards don’t define the case of a focused element becoming inactive.... (more) |
— | over 1 year ago |
Edit | Post #289250 |
Post edited: added tags |
— | over 1 year ago |
Edit | Post #289155 | Nominated for promotion | — | over 1 year ago |
Edit | Post #289156 | Nominated for promotion | — | over 1 year ago |
Edit | Post #289168 | Nominated for promotion | — | over 1 year ago |
Edit | Post #289184 | Nominated for promotion | — | over 1 year ago |
Edit | Post #289237 | Nominated for promotion | — | over 1 year ago |
Comment | Post #289159 |
@#61308 Yes, I have embedded that link. (more) |
— | over 1 year ago |
Edit | Post #289159 |
Post edited: added link to ChatGPT bot as per suggestion in the comment |
— | over 1 year ago |
Edit | Post #289159 | Initial revision | — | over 1 year ago |
Question | — |
Should we disallow ChatGPT-User crawler (and others) from scraping Software Codidact? Stack Overflow has recently announced OverflowAI and I think this video summarises pretty well this. The main drawback is that the users are less incentivized to put effort into answering questions and have this effort being fed into SO's LLM. I am wondering if it makes sense to start blocking kno... (more) |
— | over 1 year ago |
Comment | Post #289155 |
`git submodule update --remote` seems to do the job according to [this article](https://gist.github.com/gitaarik/8735255). (more) |
— | over 1 year ago |
Comment | Post #289121 |
Ref. to " I don't like to type a long URL software.codidact.com every time to view the front page." - this should not be an issue with modern browsers which (by default) store the URL history and use it to provide URL autocompletion. (more) |
— | over 1 year ago |
Edit | Post #289009 | Question closed | — | over 1 year ago |
Edit | Post #288982 | Nominated for promotion | — | over 1 year ago |
Edit | Post #289027 | Nominated for promotion | — | over 1 year ago |
Edit | Post #288986 | Nominated for promotion | — | over 1 year ago |
Edit | Post #289091 | Nominated for promotion | — | over 1 year ago |
Comment | Post #289085 |
Is `value = "["SCD"]["CL0"]"` valid syntax in Python? It looks like those double quotes are not escaped.
Ref. to "the data types do not agree and changing the data type does not help" - can you provide more context? do you receive an error? if yes, which is it? which types are involved? (actual vs... (more) |
— | over 1 year ago |
Edit | Post #289030 |
Post edited: highlighted the code + better readability |
— | over 1 year ago |
Comment | Post #289027 |
localStorage is typically handled similarly to other "side effects" (e.g. HTTP calls) and the operations related to it are handled outside of the reducer functions (e.g. middlwares). [createListenerMiddleware](https://redux-toolkit.js.org/api/createListenerMiddleware) seems up to do this. (more) |
— | over 1 year ago |
Comment | Post #289027 |
I have experience working with ngrx (an Angular similar approach) and I have noticed that your reducer functions mutate de state. AFAIK, the reducer functions should be pure and one typically returns the new state (clone initial state + make changes + return).
For example `
const authPending = (... (more) |
— | over 1 year ago |
Comment | Post #289016 |
Transferring such content is a great idea. I am wondering if it makes sense to split in Q&As for each specific error/case.
Pros:
- an answer is more to the point and does not mix somewhat unrelated errors/issues
- easier to link to the answer in case of duplicate questions
Cons:
- requires... (more) |
— | over 1 year ago |
Comment | Post #289009 |
[This article](https://lizrush.gitbooks.io/algorithms-for-webdevs-ebook/content/chapters/nudity-detection.html) provides a high-level explanation related to nudity detection in an efficient way. (more) |
— | over 1 year ago |
Comment | Post #288993 |
Is it possible to debug step by step? `post_comment_to_lemmy` is doing quite a lot of stuff and it would be a quick way to find out where the program "hangs". (more) |
— | over 1 year ago |
Edit | Post #288916 | Nominated for promotion | — | over 1 year ago |
Edit | Post #288946 | Nominated for promotion | — | over 1 year ago |
Edit | Post #288819 | Nominated for promotion | — | over 1 year ago |
Comment | Post #288920 |
Not used yet, but Sugar ORM might help when interacting with the SQLLite by automatically creating tables and query generation. (more) |
— | over 1 year ago |
Edit | Post #288068 |
Post edited: added MWE back |
— | over 1 year ago |
Comment | Post #288764 |
Under normal circumstances, simply defining a branch would do the job (I am using a different branch anyway).
It is the actual switch time between the branches that's killing me. Switching from the upgrade branch to the "business as usual" branch means running `npm install` and `npm start` which ... (more) |
— | over 1 year ago |
Edit | Post #288765 |
Post edited: added own research (moved from the answer) |
— | almost 2 years ago |
Edit | Post #288764 | Nominated for promotion | — | almost 2 years ago |
Edit | Post #288765 | Nominated for promotion | — | almost 2 years ago |
Edit | Post #288774 | Initial revision | — | almost 2 years ago |
Answer | — |
A: Self answered questions about an unclear quickstart Yes Quick starting with an API is definitely ontopic and especially helpful for newbies who struggle to understand the "spirit" of that API. Even if nobody else from the community is into Google Apps Script API right now, I am pretty sure it will help future readers. If you have the time, pl... (more) |
— | almost 2 years ago |