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 ShowMeBillyJoâ€
Type | On... | Excerpt | Status | Date |
---|---|---|---|---|
Edit | Post #278771 |
Post edited: |
— | about 4 years ago |
Comment | Post #278785 |
@meriton As one of the mods Lundin mentioned, I really appreciate the feedback you've left here. I like the idea of explaining the motivation behind a rule, right within or near the rule itself. Thank you! (more) |
— | about 4 years ago |
Comment | Post #277320 |
This is the most common convention I've seen in the wild. (more) |
— | about 4 years ago |
Edit | Post #278620 | Initial revision | — | about 4 years ago |
Answer | — |
A: Who should the moderators be? I'll throw my hat in. I don't post much, but I do keep up with the site every day. I try to model a style of leadership that emphasizes consensus building, compromise, and "the third way." That's how I'd approach moderation here too. (more) |
— | about 4 years ago |
Comment | Post #278049 |
I appreciate the expanded answer and reasoning, but I disagree with the suggestion to send JSON to the server. That would make the browser responsible for parsing the user-generated HTML and creating the JSON payload. Still needs a parser and slows down the client. Better in my mind to just accept HT... (more) |
— | about 4 years ago |
Edit | Post #277969 |
Post edited: |
— | about 4 years ago |
Edit | Post #277969 |
Post edited: |
— | about 4 years ago |
Edit | Post #277969 |
Post edited: |
— | about 4 years ago |
Edit | Post #277969 | Initial revision | — | about 4 years ago |
Answer | — |
A: In a stored procedure, is it possible to get the total number or rows updated by different statements? This is possible in SQL Server using the built-in `@@ROWCOUNT` variable. Something like this DECLARE @rows INT = 0; -- INSERT ... SET @rows = @rows + @@ROWCOUNT; -- UPDATE ... SET @rows = @rows + @@ROWCOUNT; -- DELETE ... SET @rows = @rows + @@ROWCOUNT; ... (more) |
— | about 4 years ago |
Edit | Post #277901 | Initial revision | — | about 4 years ago |
Answer | — |
A: How to protect the git respository for a public_html folder on a Linux server? The best practice here is, Don't deploy your `.git` folder to your web server. Then there's nothing to protect. (more) |
— | about 4 years ago |
Comment | Post #277216 |
Rewrite can swallow errors or bubble them up as something else. Have you and they made sure woff is configured as a mime type on all web servers involved? Can you browse directly to a rewritten woff URL? (more) |
— | over 4 years ago |