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 Andreas witnessed the end of the world today
Type | On... | Excerpt | Status | Date |
---|---|---|---|---|
Comment | Post #293072 |
With this in mind, I don't the think the question really lives up to the standards as of now. The answer still seems useful, though, just for a different question. The question in its current form needs an overhaul; rather large one. Potentially split it into two: one Q/A for the explanation for how ... (more) |
— | 11 days ago |
Edit | Post #292968 |
Post edited: Remove the mention of Python; it's an irrelevant specificity, and mostly adds confusion to the question. |
— | 20 days ago |
Suggested Edit | Post #292968 |
Suggested edit: Remove the mention of Python; it's an irrelevant specificity, and mostly adds confusion to the question. (more) |
helpful | 21 days ago |
Edit | Post #292983 |
Post edited: Remove unncessary parts, focus and simplify the question, reorder code to the bottom for better flow |
— | 23 days ago |
Edit | Post #292922 |
Post edited: Remove fluff and minor writing improvements. The question still needs a bigger cleanup or rewrite. |
— | 23 days ago |
Edit | Post #292953 |
Post edited: Remove tag from title |
— | 23 days ago |
Suggested Edit | Post #292983 |
Suggested edit: Remove unncessary parts, focus and simplify the question, reorder code to the bottom for better flow (more) |
helpful | 23 days ago |
Suggested Edit | Post #292922 |
Suggested edit: Remove fluff and minor writing improvements. The question still needs a bigger cleanup or rewrite. (more) |
helpful | 23 days ago |
Suggested Edit | Post #292953 |
Suggested edit: Remove tag from title (more) |
helpful | 23 days ago |
Comment | Post #278914 |
Just make sure you don't plagiarize the question. Besides, if you do this often enough, it may seem like you are stealing questions from SO, which doesn't exactly lead to a good reputation. (more) |
— | 23 days ago |
Edit | Post #292695 |
Post edited: Remove meta commentary. Such belongs in a comment or close flag instead. |
— | 2 months ago |
Edit | Post #292701 |
Post edited: Remove fluff |
— | 2 months ago |
Edit | Post #292694 |
Post edited: Remove fluff, remove non-constrained limitation (wasn’t real anyway) |
— | 2 months ago |
Suggested Edit | Post #292701 |
Suggested edit: Remove fluff (more) |
helpful | 2 months ago |
Suggested Edit | Post #292695 |
Suggested edit: Remove meta commentary. Such belongs in a comment or close flag instead. (more) |
helpful | 2 months ago |
Suggested Edit | Post #292694 |
Suggested edit: Remove fluff, remove non-constrained limitation (wasn’t real anyway) (more) |
helpful | 2 months ago |
Comment | Post #292715 |
Flag one of the posts. (more) |
— | 3 months ago |
Edit | Post #292715 | Initial revision | — | 3 months ago |
Answer | — |
A: What is the difference between `back-end` and `backend` tags? Quite obviously, these are the same. The name of the two is literally the same except for a hyphen. They only have one question each. Looking at the questions, they are indeed used for the same purpose. Both have tag descriptions that are mostly similar. Why somebody decided to write descriptions so ... (more) |
— | 3 months ago |
Edit | Post #284872 |
Post edited: Seemed as if the list was going to explain why using text is good, yet it explains why using images is bad. |
— | 3 months ago |
Suggested Edit | Post #284872 |
Suggested edit: Seemed as if the list was going to explain why using text is good, yet it explains why using images is bad. (more) |
helpful | 3 months ago |
Edit | Post #292286 |
Post edited: Remove fluff (for the future, you might as well put that statement in a comment, or simply omit it) |
— | 4 months ago |
Suggested Edit | Post #292286 |
Suggested edit: Remove fluff (for the future, you might as well put that statement in a comment, or simply omit it) (more) |
helpful | 4 months ago |
Comment | Post #292230 |
Based on what I can find about Joe-E, that remains purely a theoretical scenario, not a real one. Standard Java _is not_ capability-safe, so I in that context, I'm not sure if this really answers it. I do like the mention of an import whitelist, though. I can't see anything else in OpenJDK these days... (more) |
— | 4 months ago |
Comment | Post #292219 |
But it isn’t really obscurity, is it? The Java bytecode for the object is available, and that can be decompiled and inspected.
JEP 401, being part of Valhalla, is generally written by the most experienced JDK developers, with deep knowledge of the JVM. Surely they wouldn’t get such a basic misund... (more) |
— | 4 months ago |
Edit | Post #292219 |
Post edited: |
— | 4 months ago |
Edit | Post #292219 | Initial revision | — | 4 months ago |
Question | — |
Why does a lack of object encapsulation constitute a security breach? In the current version of OpenJDK's JEP 401: Value Classes and Objects (Preview), it is said that value classes can leak data stored in their fields, and that this is potentially a security concern. Quoting the two parts: > - The ability to compare value objects' fields means that a value object'... (more) |
— | 4 months ago |
Comment | Post #292128 |
Yes, I originally posted the answer on Stack Overflow. I don’t think it’s a great solution to the underlying issue there, though. I did consider posting a variation of that underlying issue here, but didn’t get that far yet.
https://stackoverflow.com/a/60123319/7395227
(more) |
— | 5 months ago |
Comment | Post #292135 |
It’s not so much about me not wanting exactly Git questions everywhere, I just strongly support limiting topics to as few communities as possible. Overlap isn’t good.
Now, for Git specifically, that is something I’d expect to find on Software Development, so seeing such questions in other communi... (more) |
— | 5 months ago |
Comment | Post #292135 |
Git questions should all be banned for every community other than this one, except for in cases where the question is very specifically _not_ for a development/programming purpose, and the answer would differ significantly. For instance, Linux can accept questions about how to use Git for non-develop... (more) |
— | 5 months ago |
Comment | Post #292135 |
Git is specifically a versioning system for code repositories, so it 100% belongs on Software Development. (more) |
— | 5 months ago |
Edit | Post #292129 |
Post edited: |
— | 5 months ago |
Edit | Post #292129 |
Post edited: |
— | 5 months ago |
Edit | Post #292129 |
Post edited: |
— | 5 months ago |
Edit | Post #292129 | Initial revision | — | 5 months ago |
Answer | — |
A: Prevent anonymously subclassing There is no keyword or compile-time construct to prevent this, but it can be accomplished through the use of a runtime exception: ``` class Parent { public Parent() { if (getClass().isAnonymousClass()) { throw new IllegalStateException("You violated my secret rule... (more) |
— | 5 months ago |
Edit | Post #292128 | Initial revision | — | 5 months ago |
Question | — |
Prevent anonymously subclassing Is it possible to somehow prohibit anonymously subclassing of a specific class? For instance, with a plain public parent class: ``` public class Parent { } ``` Extending this class should not be possible with an unnamed, anonymous subclass: ``` var myClass = new Parent() { ... } ``` ... (more) |
— | 5 months ago |
Edit | Post #291969 |
Post edited: Remove fluff |
— | 5 months ago |
Suggested Edit | Post #291969 |
Suggested edit: Remove fluff (more) |
helpful | 5 months ago |
Edit | Post #291167 |
Post edited: Total makeover. Remove fluff. |
— | 6 months ago |
Edit | Post #291913 |
Post edited: Remove fluff |
— | 6 months ago |
Suggested Edit | Post #291913 |
Suggested edit: Remove fluff (more) |
helpful | 6 months ago |
Suggested Edit | Post #291167 |
Suggested edit: Total makeover. Remove fluff. (more) |
helpful | 6 months ago |
Comment | Post #291848 |
If a question really shows a complete fundamental lack of understanding for how computers work, my natural response would be to treat it as some very low quality post, and move on. I guess I struggle to turn these particular very concrete examples into a more abstract case, and then discuss them all ... (more) |
— | 6 months ago |
Comment | Post #291848 |
Using development tools correctly is an issue for this community, not Super User. Pip on the command line does remain a topic for programmers, beginners or advanced users. Obviously, not knowing how Pip works, because one doesn't know it's not used from within Python (let alone not actually understan... (more) |
— | 6 months ago |
Comment | Post #291848 |
> "trying to use Pip in the REPL"
That sounds like an awful title, but can't you have a question titled "how to use Pip [with]in Python"? (more) |
— | 6 months ago |
Comment | Post #291805 |
The post asks for too much at once. The reason why this is really an issue, is because it renders the reusability of this question almost non-existent. Ask one question for each platform. Imagine if I find this question, but want an answer for one more platform. Do edit this question, or do I post a... (more) |
— | 6 months ago |
Comment | Post #291805 |
Why are you specifically looking for platform dependent functions? Why do platform independent functions not suffice? (more) |
— | 6 months ago |