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

Type On... Excerpt Status Date
Comment Post #284415 `textContent` (like it's name implies) only does text. If you want to replace HTML, you'll have to use `innerHTML`
(more)
over 2 years ago
Comment Post #284414 If you scroll down to "Using the standard libraries.", you can click on `stdlib.jar` to download the jar file
(more)
over 2 years ago
Suggested Edit Post #284413 Suggested edit:
Made the title more specific, tagged
(more)
declined over 2 years ago
Comment Post #283834 I updated the diagram to make it more clear.
(more)
over 2 years ago
Edit Post #283832 Post edited:
Updated diagram
over 2 years ago
Comment Post #283834 I regularly pull from the main branch, but I thought it would be the same regardless of which pattern I use, since I am pulling for updates basically every time I start working on the feature branch to make sure I'm on latest. So there would be a bunch of merges into the feature branch from main in b...
(more)
over 2 years ago
Edit Post #283832 Initial revision over 2 years ago
Question Is it a good idea to have a permanent branch for a feature?
I'm rather new to using git, so I'm not sure about the best practices regarding it. I have a feature branch branched off, and periodically when the feature needs to be updated I will add some commits to the branch and then create a pull request.[^1] Is it a good idea to have a permanent branch for...
(more)
over 2 years ago
Edit Post #283797 Post edited:
Focused the title
over 2 years ago
Suggested Edit Post #283797 Suggested edit:
Focused the title
(more)
helpful over 2 years ago
Comment Post #283671 @#8176 It doesn't do nothing, it puts the linked answer at the top *and then* sorts by score. It's only useless when there is only one other answer, but that's the same uselessness as when there is only one answer total in normal view.
(more)
over 2 years ago
Comment Post #283672 @#53242 Ah, merges do complicate things. I don't really think that there is a way around that though, at least with show-branch. The only workaround I can think of at the moment is using something like `git show-branch master topic^` to essentially undo the merge in the eyes of git-show-branch, but t...
(more)
over 2 years ago
Edit Post #283672 Post edited:
Added disclaimer, this answer won't really do what OP wants but it is a method
over 2 years ago
Comment Post #283672 @#53242 What do you mean by that? Anything past the common ancestor, basically by definition, will not differ between the branches
(more)
over 2 years ago
Edit Post #283672 Initial revision over 2 years ago
Answer A: How do I ask git-show-branch to display a commit range?
According to the docs, you could use the `--more` flag If you just want to look at some commits past the common ancestor, then you can add the `--more` flag to it. From the git-scm docs for git-show-branch, > `--more=` > > Usually the command stops output upon showing the commit that is th...
(more)
over 2 years ago
Comment Post #283667 See also *[Answers order is changed when we access a specific answer by its direct link](https://meta.codidact.com/posts/283346)* This link you have is an answer link, which floats the linked answer to the top.
(more)
over 2 years ago
Comment Post #283667 @#8046 That is intended. See *[Randomize order of answers with same score](https://meta.codidact.com/posts/277855)*
(more)
over 2 years ago
Comment Post #283669 and that would show up as <pre><code><span class="hljs-keyword">import</span> std.stdio; <span class="hljs-keyword">void</span> main(<span class="hljs-built_in">string</span>[] args) { <span class="hljs-built_in">string</span> greeting1 = <span class="hljs-string">&quot;Good&quot;</spa...
(more)
over 2 years ago
Comment Post #283669 E.g. you could do (code taken from https://software.codidact.com/posts/283059/283196#answer-283196) ``` <pre><code><span class="hljs-keyword">import</span> std.stdio; <span class="hljs-keyword">void</span> main(<span class="hljs-built_in">string</span>[] args) { <span class="hljs-buil...
(more)
over 2 years ago
Comment Post #283669 This is an absolutely terrible idea, but you could theoretically do it manually (or install highlight.js locally) I.e. 1 Take your code 2 Add in the `span`s either manually or by running highlight.js locally 3 Copy paste the result 4 ??? 5 Profit.
(more)
over 2 years ago
Comment Post #283052 @#36356 Sure, I've added a section for that
(more)
over 2 years ago
Edit Post #283052 Post edited:
Added solution, touched up a bit
over 2 years ago
Comment Post #283050 Your dark callback is setting the attribute to "light".
(more)
over 2 years ago
Edit Post #283052 Initial revision over 2 years ago
Answer A: Why does Firefox block based on a restrictive default-src directive, when more specific, more permissive *-src exist?
Each header is checked independently Having multiple Content Security Policy headers can only make it more restrictive I assume that each `Content-Security-Policy:` line you have is a separate CSP header. If you send each separately, then a source will be checked on each CSP separately. For ...
(more)
over 2 years ago
Comment Post #283015 @#8049 The headers are applied independently; default-src is the fallback *within the header*. So for an inline style, we check the first header: ``` Content-Security-Policy: style-src 'self' 'unsafe-inline' https://fonts.googleapis.com/; ``` All good here, we have 'unsafe-inline'. We then ...
(more)
over 2 years ago
Comment Post #283015 [Multiple Headers can only be more restrictive](https://developer.mozilla.org/en-US/docs/Web/HTTP/Headers/Content-Security-Policy#multiple_content_security_policies) I assume that each `Content-Security-Policy:` line you have is a separate CSP header. If you send each separately, then the `default...
(more)
over 2 years ago
Edit Post #282895 Post edited:
Added some headers to make it look nice
almost 3 years ago
Edit Post #282895 Post edited:
almost 3 years ago
Edit Post #282895 Initial revision almost 3 years ago
Answer A: What's the difference between =, == and === operators in JavaScript?
Assignment `=` `=` is the assignment operator. There's nothing much to say here. Abstract Equality `==` `==` is abstract equality - it will attempt to perform a type conversion before evaluating equality. E.g. ```javascript 1 == '1' 1 == true null == undefined ``` Objects only ...
(more)
almost 3 years ago
Comment Post #282673 That specific post was created by a now-deleted user, which might be the cause of the error.
(more)
almost 3 years ago
Edit Post #282488 Initial revision almost 3 years ago
Answer A: Why use an asterisk after a type?
> Here I used asterisk after Node. Actually, why asterisk used for? What if I don't put any asterisk after Node (Both Node are structure). It's a pointer. A pointer, like its name implies, points to an actual object in memory. (More technically, it holds an address to the memory location). I...
(more)
almost 3 years ago
Edit Post #282231 Post edited:
Added language to the code block for syntax highlighting
almost 3 years ago
Suggested Edit Post #282231 Suggested edit:
Added language to the code block for syntax highlighting
(more)
helpful almost 3 years ago
Edit Post #281660 Initial revision almost 3 years ago
Answer A: How to set text-align for whole column of HTML table?
You cannot set `text-align` on a column element (Well, you can, but it won't have any effect) There are only a couple of properties that have an effect, namely `border`, `background`, `width`, and `visibility`. If you need to style a column outside of those attributes, MDN notes some pos...
(more)
almost 3 years ago
Comment Post #281511 The question begging to be asked is "how?" There isn't, afaik, a standard for "password cookies" (which is a terrible name to refer to the session cookies that I assume you mean).
(more)
about 3 years ago
Edit Post #281348 Post edited:
Fixed typos (missing semicolon in escape code, it's -> its)
about 3 years ago
Edit Post #281348 Initial revision about 3 years ago
Answer A: How to inhibit auto link generation?
Method 1: `` (or other HTML tag) It appears that Markdown isn't detected within HTML tags, so you can wrap the URL-like in a span or other tag and it won't turn into a link. `dead.sh` -> dead.sh `dead.sh` -> dead.sh etc. Method 2: `&#46;` (period escape) You can also escape the peri...
(more)
about 3 years ago
Comment Post #281036 Increasing the height of the enclosing `p` element by setting `padding: 1px` fixes the issue, though I'm still not sure of the cause. Therefore, it seems that for whatever reason, the borders are getting clipped by the element below them.
(more)
about 3 years ago
Comment Post #280607 @Alexei I don't know if it's still the case, but cross-site duplicates weren't supported.
(more)
about 3 years ago
Comment Post #279834 @FractionalRadix That's odd, tag creation isn't currently ability-locked. Perhaps raise a bug report?
(more)
over 3 years ago
Comment Post #279834 @FractionalRadix For future reference, you can create the tag yourself if it doesn't already exist :) Just add it to the tag field when you submit your question and it'll be automatically created
(more)
over 3 years ago
Comment Post #279070 @Hyperlynx remove, reset, you're still making the extra effort to get rid of the date information on past commits; I just don't understand why you bother - if it's not useful, no one will look at it anyway, so it shouldn't matter if it's the true date or not.
(more)
over 3 years ago
Comment Post #279070 @Hyperlynx I'm not sure what you're asking - you asked how to remove that info right?
(more)
over 3 years ago
Comment Post #279070 Alternatively, the info is there and I don't believe it's getting in the way of anyone, so why bother removing it?
(more)
over 3 years ago