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.

Posts by Ullallulloo‭

9 posts
81%
+7 −0
Q&A How do I add functionality to the back button?

How do I add functionality to the back button in Android without reimplementing the back button entirely? Prior to last year, I would just call onBackPressed() and then simply override it: overri...

1 answer  ·  posted 1y ago by Ullallulloo‭  ·  edited 1y ago by Ullallulloo‭

Question android
80%
+6 −0
Q&A How to delete contents of a specific field, if it matches a pattern and there is nothing else in the field

You're matching the regex pattern of /-/, so it just matches every individual hyphen, regardless of where. You want to match the entire entry if it's only hyphens, or /^-+$/. ^ – Beginning of line...

posted 2y ago by Ullallulloo‭

Answer
71%
+3 −0
Q&A Can UWPNuGetPackages be moved to another drive?

Apparently this is controlled by the registry value Computer\HKEY_LOCAL_MACHINE\SOFTWARE\WOW6432Node\NuGet\Repository\UWPNugetPackages. I changed it from C:\Program Files (x86)\Microsoft SDKs\UWPNu...

posted 2y ago by Ullallulloo‭

Answer
71%
+3 −0
Q&A What's the difference between colorMode and uiMode?

In setting android:configChanges in AndroidManifest.xml, what is the difference between colorMode and uiMode? I hear uiMode is for changes between light/dark modes, which sounds exactly what colorM...

1 answer  ·  posted 5mo ago by Ullallulloo‭  ·  last activity 4mo ago by zmzaps‭

Question android
66%
+2 −0
Q&A Can UWPNuGetPackages be moved to another drive?

I'm trying to make a UWP app in Visual studio, but the NuGet package files have been huge. They just don't fit on my SSD, but I do have an HDD I could theoretically use. After a bunch of tinkering...

1 answer  ·  posted 2y ago by Ullallulloo‭  ·  last activity 2y ago by Ullallulloo‭

Question visual-studio nuget
66%
+2 −0
Q&A How do I install Chart.js as a file?

If you're not importing it as a module but just including it through a <script> tag, you can't use the regular file. You'll need to use the UMD file instead. You can either include it from a ...

posted 1y ago by Ullallulloo‭

Answer
66%
+2 −0
Q&A How do I get the min/max axis values in Chart.js?

The equivalent in Chart.js would be: xmin = chart.scales.x.min; xmax = chart.scales.x.max; This can be found in the docs as an option common to all axes.

posted 1y ago by Ullallulloo‭

Answer
62%
+3 −1
Q&A How do I strip file extensions from URLs with H2O?

I'm trying to use H2O to serve a multi-file PHP website without routing—just having a separate PHP file for every page. The relevant part of my H2O config currently looks like this: paths: "/":...

1 answer  ·  posted 2y ago by Ullallulloo‭  ·  last activity 2y ago by jminer‭

Question h2o path-mapping
60%
+1 −0
Q&A How to append HTML to the DOM with JavaScript?

First, I would warn you that using JavaScript here isn't best practice. It won't work for people without JavaScript and it will slow down the site some even for people with JavaScript. If you can d...

posted 3y ago by Ullallulloo‭

Answer