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 mr Tsjolder‭

Type On... Excerpt Status Date
Comment Post #291310 Are you saying that using pointers is just fine and custom iterators are only useful if iteration becomes more complex?
(more)
about 1 month ago
Comment Post #289700 The problem is that it does not really make sense to write an answer about `BitSet` in this general context, since e.g. Python does not really have a data structure like that. This is probably also the reason why I assumed this was a Python and not a Java question. My point is that by abstracting ...
(more)
8 months ago
Comment Post #289625 Roughly speaking, tensorflow-graph is tensorflow-v1 and tensorflow-eager is tensorflow-v2. I don't think these tags would be that useful. Especially since there are generally not that much tensorflow questions thus far.
(more)
8 months ago
Comment Post #289251 I definitely agree that showing non-working attempts is generally a good thing. I do feel that the non-working attempts should be conceivable from the standpoint of someone who could have this question, however. I just can't imagine that someone would think about tuples in this kind of scenario.
(more)
8 months ago
Comment Post #289700 First of all, I hope it is clear that I did not intend to "attack" your question. I just found the topicality documentation a little ambiguous about this kind of question. To me, software design/architecture/modelling is one level above the actual algorithm/data structure considerations. On a soft...
(more)
8 months ago
Comment Post #289694 I have no problem with the language-agnostic tag. I think my main issue is that this question feels like it originated from Python and was then artificially generalised to cover all languages (or all languages with a data structure for sets that is implemented by a hashtable). In the end, this questi...
(more)
8 months ago
Comment Post #289251 I agree with @#53398 that this question comes over as too artificial. In the list you linked in the answer to the meta question, you list these top questions. One common aspect of these questions seems to be that they have very short and simple question statements. These questions are popular because...
(more)
8 months ago
Comment Post #289691 This question is about datastructures in an abstract sense, which makes this more of a computer science than a programming question in my opinion. Is this really on-topic here?
(more)
8 months ago
Comment Post #289613 Of course! I forgot to execute the JITted function multiple times during my quick testing. Would it be feasible to split your function into different parts so that you could do the benchmarking outside of the JITted code?
(more)
8 months ago
Comment Post #289633 1. that depends on what style of programming you wan't to use, but Python typically favours [EAFP](https://docs.python.org/3/glossary.html#term-EAFP) 2. This is indeed an important detail that I forgot to mention (although it is indicated documentation I linked to): this assumes that the clean-up co...
(more)
8 months ago
Comment Post #289605 also, what is wrong with the obvious `ctrl + C` solution? It does not require any code and is pretty standard for people working with the CLI.
(more)
9 months ago
Comment Post #289613 Is there any reason why you can't use `time.time()` from the `time` package?
(more)
9 months ago
Comment Post #289625 tensorflow functions should work both on eager and graph tensors. I just tried `10. * tf.math.log(x) / tf.math.log(10.)` and it worked in both settings. Similarly, you could use `tf.cast(x, dtype=tf.int64)` for the casting function (unless there is a specific reason why you would not want graph tens...
(more)
9 months 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)
10 months 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)
10 months 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)
10 months 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)
10 months ago
Comment Post #289091 yes, but also the higher chances for errors (i.e. more opportunities for typos etc.)
(more)
10 months ago
Comment Post #289085 This is not valid syntax in Python, but it could be when combining single and double quotes.
(more)
10 months ago
Comment Post #289092 I thought this would create a duplicate tag. But it indeed seems to delete the existing tag, thanks!
(more)
10 months ago
Comment Post #289000 the insight on the signature of the composition operator explains my misunderstanding very well!
(more)
10 months 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)
10 months ago