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

Type On... Excerpt Status Date
Edit Post #295643 Initial revision 6 months ago
Answer A: Improving robustness when using MAUI Shell navigation
Take the following with a grain of salt, as I don't know MAUI. There might be some better approach baked in. At mimimum, I'd be making that param name a `const string` somewhere. Maybe as far defining extension methods upon `IDictionary`, for each different param. Something like... ```cs p...
(more)
6 months ago
Edit Post #294712 Initial revision 11 months ago
Answer A: How to morph a table into a list when its content wraps?
I'll second and elaborate on Michael's response, seems like you should just be using ``s exclusively for the rendering. You can use CSS to put some `display: grid` styling on that to make them render like a table, except for the "Experience" field. Me, I'd probably just render it like... ```ht...
(more)
11 months ago
Edit Post #294295 Post edited:
about 1 year ago
Edit Post #294389 Initial revision about 1 year ago
Answer A: What is a "security protocol"? Is it the same as a "cryptographic protocol"?
I would say there isn't any meaningful distinction. I mean, heck, Wikipedia itself, in the article you linked to, just redirects "security protocol" to "cryptographic protocol", it considers them to be the same thing. That's pretty much true in the world of computing. If we just look at the te...
(more)
about 1 year ago
Edit Post #294295 Post edited:
about 1 year ago
Edit Post #294295 Initial revision about 1 year ago
Answer A: Do Where and OfType preserve List capacity?
TL;DR: for `.Where()`, no, for `.Cast()`, yes. At least, when possible, when the prior operator in the chain passes count info along. Looking at the implementation of `.ToList()`, we can see how its optimizations work. ```cs public static List ToList(this IEnumerable source) { if...
(more)
about 1 year ago