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.

Search

Advanced Search Options

To further refine your search, you can use additional qualifiers such as score:>0.5. For example, the search score:>=0.5 created:<1y grammar would return only posts mentioning "grammar" that have a score >= 0.5 and were created less than a year ago.

Further help with searching is available in the help center.

Quick hints: tag:tagname, user:xxx, "exact phrase", post_type:xxx, created:<N{d,w,mo,y}, score:>=0.5

Filters
2.7k posts
 
60%
+1 −0
Q&A Uncaught ReferenceError: variable is not defined

I have a variable defined using const keyword. function Text() { const variable = "Hello!"; } console.log(variable); When I try to access this variable, I get: Uncaught ReferenceError...

1 answer  ·  posted 3y ago by Kevin M. Mansour‭  ·  edited 3y ago by Alexei‭

60%
+1 −0
Q&A What input functions can I use in TIO's PHP?

You could use fgets to read from STDIN. And to print the message, just use the short tag (<?= whatever, which is a shorthand to <?php echo whatever; ?>): <?='Hello, '.fgets(STDIN).'!'...

posted 3y ago by hkotsubo‭  ·  edited 3y ago by hkotsubo‭

Answer
60%
+1 −0
Q&A What input functions can I use in TIO's PHP?

Try It Online! is an online interpreter for many supported languages, including PHP. I'm trying to solve coding challenges using the language, specifically "Hello, {name}!". In PHP, you can litera...

1 answer  ·  posted 3y ago by General Sebast1an‭  ·  last activity 3y ago by hkotsubo‭

Question php function input
60%
+1 −0
Q&A How to properly manage PGP signing key storage, access, and usage for dev and automation?

I work for an IoT company. We recently got secure boot to work for a customer-visible product. For secure boot to work, the images we generate must be signed. Obviously, we want customer-visible sy...

0 answers  ·  posted 3y ago by ghost-in-the-zsh‭  ·  edited 3y ago by ghost-in-the-zsh‭

60%
+1 −0
Q&A Error: Cannot find module 'is-color-stop' in Tailwind CLI

While compiling the code for production in Tailwind CLI using: npx tailwindcss -m -o ./build/tailwind.css --purge "./**/*.html" I get: node:internal/modules/cjs/loader:941 const err = new ...

0 answers  ·  posted 3y ago by Kevin M. Mansour‭

Question npx tailwind-css
60%
+1 −0
Q&A Find image for contact list in Android Java

How to get image of contact list? I was using cursor to get contact list. Here how it looks like. ArrayList<HashMap<String, String>> contactList = new ArrayList<>(); Has...

1 answer  ·  posted 3y ago by Anonymous‭  ·  last activity 3y ago by Anonymous‭

60%
+1 −0
Q&A Using http.get to get page from frontend

It's possible to use Angular 8 http.get to get a page from the frontend itself ? My local frontend url: https://192.168.0.177:4200/ I tried in a service: test(): Observable<string> { ret...

1 answer  ·  posted 3y ago by nelson777‭  ·  last activity 3y ago by Derek Elkins‭

60%
+1 −0
Q&A Find image for contact list in Android Java

See https://developer.android.com/reference/android/provider/ContactsContract.Contacts.Photo There's PHOTO_URI in ContactsContract.class. Fetch it following way. String photo = c.getString(c.getC...

posted 3y ago by Anonymous‭

Answer
60%
+1 −0
Q&A Uncaught ReferenceError: variable is not defined

const is block-scoped. Which means that const can be only accessed inside the block-scope that it were declared in. Block-scope means code enclosed by Curly braces {}. Functions are also blocks. ...

posted 3y ago by Kevin M. Mansour‭

Answer
60%
+1 −0
Meta Etiquette for posting comments

Before posting this on the help pages, I will compile the feedback in a separate answer. Generally speaking, comments should be helpful feedback and the following are not exhaustive lists. Can in...

posted 4y ago by Alexei‭

Answer
60%
+1 −0
Meta Can we migrate office suite related questions to the Power Users community?

I had seen 3 "related" question for this : Office suites category ~ proposed by @Lundin (My answer) Software Recommendations Category ~ proposed by @Moshi (My answer) Site for office suites ~ ...

posted 3y ago by deleted user

Answer
60%
+1 −0
Q&A Is there any breaking change in regard to TrustServerCertificate property of System.Data.SqlClient for .NET 5?

I have recently an issue at work after upgrading an ASP.NET Core 3.1 application to .NET 5. It worked correctly on all environments (e.g. PreProd, Prod) when targeting 3.1, but failed on Prod only ...

1 answer  ·  posted 3y ago by Alexei‭  ·  last activity 3y ago by Alexei‭

60%
+1 −0
Q&A Convert .npy files in a directory to images (.png)

fastest and most efficient method (time and memory-wise) Time and memory go against each other in a simple way: amount of jobs divides the time (up to amount of cores, sans the overhead, assum...

posted 3y ago by hoverhell‭

Answer
60%
+1 −0
Q&A What makes a software module an "authentication" module?

I don't think there is a formal definition on what constitutes a "authentication" module. It's just a term for defining a part of a system where you identify yourself and the security part of the ...

posted 3y ago by nelson777‭

Answer
60%
+1 −0
Q&A How to start mysql in Manjaro from terminal?

Actually, It was happening for mariadb wasn't installed. So, I simply was trying to install mysqld directly (Some websites said to install mysqld). But, there was no mysqld package. So, I had wrote...

posted 3y ago by deleted user

Answer
60%
+1 −0
Q&A event_start always returning contact number in android

Why ContactsContract.CommonDataKinds.Event.START_DATE always returning contact number. The number is available in Google Contacts. Here what I am doing... Cursor c; if (contactID==""...

0 answers  ·  posted 3y ago by Anonymous‭

60%
+1 −0
Q&A can't find git repo (library)

At first you have to add maven { url "jitpack.io" } in settings.gradle. I was facing the issue after adding that line also. When I had reboot my system it's working fine then. You can try to cl...

posted 3y ago by Anonymous‭

Answer
60%
+1 −0
Q&A can't find git repo (library)

Could not find com.github.Kunzisoft:Android-SwitchDateTimePicker:1.9. Required by: project :app Search in build.gradle files I was trying to use the library. I had searched for 2.1, 2.0 a...

1 answer  ·  posted 3y ago by Anonymous‭  ·  last activity 3y ago by Anonymous‭

Question android gradle
60%
+1 −0
Q&A WARNING: environment variable DISPLAY is not set (netbeans)

I was trying to install Netbeans in Xubuntu. I had installed Netbeans using Snapd. sudo snap install netbeans --classic I was trying to start Netbeans then I got an error which was looking like...

1 answer  ·  posted 3y ago by Anonymous‭  ·  last activity 3y ago by Anonymous‭

60%
+1 −0
Q&A Get the length of a slice from a multi-dimensional array

You can use Array.GetUpperBound method Gets the index of the last element of the specified dimension in the array. and Array.GetLowerBound one accordingly. var arr = new int[,]{ { 1, 2 ...

posted 3y ago by FoggyFinder‭

Answer
60%
+1 −0
Q&A How does PathData work?

What is pathData? I was thinking to convert SVG to XML. I found it. In the code, I had seen that android:pathData="M 64 2 C 98.2416544895 2 126 29.7583455105 126 64 C 126 98.2416544895 98.2416544...

2 answers  ·  posted 3y ago by Anonymous‭  ·  edited 3y ago by Alexei‭

60%
+1 −0
Q&A Are there practical reasons for designing a method-only class/object?

It depends. Regarding "grouping functions/methods": as a general rule, you should group things that make sense to be together. Yes, it's a very broad and generic rule, and somewhat subjective. How...

posted 3y ago by hkotsubo‭

Answer
60%
+1 −0
Q&A Why comma is expected for auto_increment?

Read the documentation for SQLite CREATE TABLE clauses, not questions about Netbeans JavaDB. In particular, if you expand column-def and column-constraint you'll see the correct syntax for what yo...

posted 3y ago by Peter Taylor‭

Answer
60%
+1 −0
Q&A Why is the switch statement not executing the correct case blocks?

In the code below, the value of order variable should change according to i's value: String order; switch (i){ case 0: order = CallLog.Calls.DATE + " DESC "; contactViewAda...

1 answer  ·  posted 3y ago by Anonymous‭  ·  last activity 3y ago by hkotsubo‭

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