Newest Questions
24,159,863 questions
0
votes
0
answers
7
views
Permissions with google drive
To avoid installing each time I start a session, I tried to put the miniconda inside the google drive. Here is the error I got:
The Permission denied error means Google Drive is still preventing the ...
Advice
0
votes
0
replies
9
views
the raspberry pi pico extension in vscode cannot create a C++ project
I've tried to create a C++ project for several times, but it showed me a blank every time. Instead, I am able to create a micropython project.
The empty "new pico project" tab
I've tried ...
Advice
0
votes
1
replies
12
views
Immigration management system
Add personal information associated with immigration operation , update , delete , search and display all information."Create a Linked List code project for me, completing every part, and make it ...
Best practices
0
votes
1
replies
17
views
Scoring items if the text appears in another list
I am trying to use excel to check if a typed answer can be found in another list. If the word can be found in one of the other lists, I want to score that a 1, if not I want it to be scored a 0.
I am ...
0
votes
1
answer
39
views
UnicodeDecodeError (character maps to <undefined>) when reading a text file
I have a Python file and a text file in the same folder in VS Code, and I have the following code:
intro_doc = open("0_intro.txt","r")
intro_text = intro_doc.readlines()
print(...
Advice
0
votes
0
replies
19
views
How to protect routes containing data from MongoDB on a website
Currently working on a website for a tree service company that contains info about their services etc as well as forms a customer can submit for a quote. These forms are then contained in mongoDB and ...
-2
votes
0
answers
46
views
FMOD isn't working, and I can't find out how to fix it
So I downloaded a program's source code because I need to use it, but the problem is that it uses FMOD, and whenever it tries to run FMOD.Factory.System_Create(out var system);, it just throws an ...
Best practices
0
votes
1
replies
39
views
Small dataset (~600 images) for facial emotion detection using YOLOv11 + Roboflow — how to collect better training images?
I am building a small computer vision project (MoodAI Player) where a webcam detects facial emotions and triggers music + LED responses on a Raspberry Pi .
I am planning to train a YOLOv11 model, ...
0
votes
0
answers
27
views
unknown access mask 2097151
I have this enum in usermode app:
[Flags]
public enum ProcessAccessRights : uint
{
PROCESS_TERMINATE = 0x0001,
PROCESS_CREATE_THREAD = 0x0002,
...
0
votes
0
answers
28
views
.NET MAUI - Dependency Injection - Constructor is never called
I'm trying to make a generic popup which allows me to reuse it for multiple different occasions. For some reason tho the constructor of my viewmodel is never called even tho I register it and call it ...
Best practices
0
votes
1
replies
26
views
What pattern to use to handle chaotic client-server exchanges, from the client side, in SOLID?
Apologies for asking what is probably a stupid question, I'm too prideful to ask an AI and not knowledgeable enough to know what words to Google for.
Here's my situation; a few days ago, for fun and ...
-1
votes
0
answers
47
views
database error trying to enforce constraint
I am writing a small script to colelct some url info, and store it in database.
getting the following error ::
Dropping index: sqlite_autoindex_keywords_1
Traceback (most recent call last):
FilX e &...
1
vote
0
answers
49
views
Firefox Web Extensions: adding datepicker input to popup?
I am trying to add a builtin datepicker (i.e. <input type="date">) to a Mozilla web extension (which is based on html/css/js) but the calendar does not popup.
The code below (stripped ...
-5
votes
0
answers
64
views
Why is Google's Chromium OS source downloader asking for a username and password and can it be avoided?
I'm following the instructions to setup an environment in which to compile Chromium OS source code, but I got this message:
$ repo init -u https://chromium.googlesource.com/chromiumos/manifest.git --...
2
votes
1
answer
84
views
line count returns 2 less than expected
// Last task removal
if(!strcmp(argv[2], "last")) {
int line = 0; // Which line is last in the file
FILE *fileptr = fopen(FileAddress, "r"); // Create ...