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 mr Tsjolderâ€
Type | On... | Excerpt | Status | Date |
---|---|---|---|---|
Edit | Post #289218 |
Post edited: emphasis use of list |
— | over 1 year ago |
Comment | Post #289229 |
There also exist expressions that perform actions (e.g. the walrus operator `:=` since Python 3.8, or `++i` in C). Would you consider these expressions to be statements as well? (more) |
— | over 1 year ago |
Edit | Post #289218 |
Post edited: wording |
— | over 1 year ago |
Edit | Post #289218 |
Post edited: wording |
— | over 1 year ago |
Edit | Post #289218 | Initial revision | — | over 1 year ago |
Answer | — |
A: How to compress columns of dataframe by function Since `pandas` uses `numpy` for these computations under the hood, I would have suggested to use `df.mean(keepdims=True)`, but apparently this has been explicitly disabled by `pandas`. However, after looking into the docs, I noticed you should be able to get the desired result as follows (note the... (more) |
— | over 1 year ago |
Edit | Post #289162 |
Post edited: |
— | over 1 year ago |
Comment | Post #289155 |
Unfortunately, I am not familiar enough with submodules in Git to provide a proper answer, but you should definitely include this information in your question to show what you have tried/done already. (more) |
— | over 1 year ago |
Edit | Post #289162 | Initial revision | — | over 1 year ago |
Answer | — |
A: Should we disallow ChatGPT-User crawler (and others) from scraping Software Codidact? A few thoughts from my side (as a ML researcher, without experience in LLMs): 1. I am not sure if it is really useful to block ChatGPT specifically. ChatGPT is only one of many LLMs out there. Blocking only ChatGPT will probably not prevent the data on codidact from being fed into other mo... (more) |
— | over 1 year ago |
Comment | Post #289155 |
According to the [docs](https://git-scm.com/docs/git-pull#Documentation/git-pull.txt---no-recurse-submodulesyeson-demandno), this should be possible using `git pull --recurse-submodules`. Have you tried that? (more) |
— | over 1 year ago |
Comment | Post #289104 |
I indeed overlooked the "join us in chat" link. In my defence, the donate button is the most prominent part and the link above is about advertising leading me to assume this box is about financial stuff... (more) |
— | over 1 year ago |
Edit | Post #289104 | Initial revision | — | over 1 year ago |
Answer | — |
A: How can we grow this community? After a few years of casually using stack-exchange sites and wandering around on coda-dict, I feel there are mainly three components to the quality of the content on each of these sites: 1. the knowledge base 2. the community 3. the game The Knowledge Base I think most answers to this ques... (more) |
— | over 1 year ago |
Comment | Post #289091 |
yes, but also the higher chances for errors (i.e. more opportunities for typos etc.) (more) |
— | over 1 year ago |
Edit | Post #289093 | Initial revision | — | over 1 year ago |
Answer | — |
A: Slicing a dictionary using a string variable Assuming that `dynamicmodel` and `uncertainlibrary` are just (nested) dictionaries and ```python value = '"SCD"' ``` is actually supposed to be a string (note the single quotes here), your code would attempt to add a dictionary to a string, which is indeed not supported. Python would let you k... (more) |
— | over 1 year ago |
Comment | Post #289085 |
This is not valid syntax in Python, but it could be when combining single and double quotes. (more) |
— | over 1 year ago |
Comment | Post #289092 |
I thought this would create a duplicate tag. But it indeed seems to delete the existing tag, thanks! (more) |
— | over 1 year ago |
Edit | Post #289091 | Initial revision | — | over 1 year ago |
Question | — |
How to move a tag in git? I have created a tag in my project, using `git tag v2023` However, I forgot to commit a few changes. Now I would like to move this tag to the current point (after having committed the changes I had missed). According to the docs, it is possible to delete tags using `git tag -d v2023` Afte... (more) |
— | over 1 year ago |
Comment | Post #289000 |
the insight on the signature of the composition operator explains my misunderstanding very well! (more) |
— | over 1 year ago |
Comment | Post #288987 |
Stupid, I must have missed that error message. However, I also get it when writing `dec_first = map (subtract 1) . take` even though I am not applying `take` to any arguments in this case. Where does this error come from? (more) |
— | over 1 year ago |
Edit | Post #288986 | Initial revision | — | over 1 year ago |
Question | — |
How to use function composition for applying a function to first elements of a list? Can anyone explain to me why my Haskell function gives rise to a type-definition error? Originally, I wrote the following function to subtract one from the first `n` elements in a list: ```haskell decfirst :: Int -> [Int] -> [Int] decfirst 0 l = l decfirst n (x:xs) = (x-1):decfirst (n-1) xs `... (more) |
— | over 1 year ago |
- ← Previous
- 1
- 2
- Next →