Newest Questions
24,160,064 questions
0
votes
0
answers
3
views
High Frenquency MicroSD saving with STM32 Disk Error
For the past few days, I've been iterating through different ways to save a txt file in a microSD using this guide from MicroPeta. Very useful, and it's working fine, but my goal is to have around ...
0
votes
0
answers
3
views
Two structurally identical ModelingToolkit models — one solves, one crashes at `solve`
I have two Julia models using ModelingToolkit.jl that are identical in every way except the name of one sub-component. Despite this, structural_simplify produces a different number of unknowns for ...
Advice
0
votes
2
replies
9
views
Advice for transitioning into web development from a non-technical background
I recently decided to move into web development after working in a non-technical job as a forklift operator. I’ve started studying (HTML, CSS, and JavaScript), and I’m really enjoying the learning ...
-1
votes
0
answers
16
views
Python allows type hints like tuple[int,...], but is there any shorthand way to verify that? [duplicate]
Python allows argument type hints like tuple[int, ...]. Is there any built-in way accomplish something like: isinstance(x, tuple[int, ...])? I realize I can do isinstance(nums, tuple) and and then ...
-1
votes
0
answers
15
views
How to get thread emails in a conversation by using GraphAPI
I'm building AI Email Drafting Agent by using Power Automate.
I'm going to fetch thread emails by using conversationID with HTTP action which use GraphAPI
https://graph.microsoft.com/v1.0/users/@{...
Advice
0
votes
1
replies
41
views
Why did yandaredevs code suck
I began learning code since I got my own computer a few weeks back and I was wondering, why did yandaredevs code suck so much?
I saw that he didn´t use switch statements and 500 if elses instead, but ...
Advice
0
votes
1
replies
19
views
Building a website to convert long videos into engaging and attractive short videos
I don’t have any code to attach, and I know this isn’t a typical technical problem. The real issue is that I don’t even know where to start.
I have a problem and I don’t know how to solve it, so I’m ...
-1
votes
0
answers
22
views
How to fix the Connection Failed message in SQLcl
I have just installed SQLcl and oracle database 21c express edition and also added the path in environment variables. All the services including OracleOraDB21Home1TNSListener is running successfully ...
Advice
0
votes
0
replies
16
views
Where is BIOS boot checksum algorithm specified?
In El Torito specification, I read
The Boot Record contains an absolute pointer to the Boot Catalog.
and
Checksum Word. This sum of all the words in this record should be 0.
I don't know where to ...
-1
votes
0
answers
19
views
POST requests are changed to GET on railway
I recently uploaded my nodejs backend to railway
While testing it locally on postman before deploying everything worked as expected
When I deployed it and tested again using postman all requests I ...
Best practices
0
votes
3
replies
19
views
Trying to aggregate by two subsets
In my data file I have a column of my response values, a column for my first factor (with 2 levels), and a column for my second factor (with 2 levels). I have figured out how to aggregate my data by ...
-1
votes
0
answers
22
views
Convert Beautiful Soup .text to float
I'm trying to create a float list from text derived from an HTML website, as I want to check if the list has a price at my budget or lower. I am using find_all() from Beautiful Soup 4 to retrieve the ...
0
votes
0
answers
13
views
Close/Save Buttons Greyed out after TYPO3 Update?
I have a non-composer version of TYPO3 that I recently updated from 13.4.17 to 13.4.28 using the downloaded zip.
I have now noticed the Close/Save/View buttons, at the top of all pages and content ...
-2
votes
0
answers
30
views
Where should extra logic live, in the parent or child component? [closed]
I have a parent and child component. The child component is tree structure component and the data consists of groups, sub-groups, sub-sub groups etc. The child currently handles the selection of the ...
0
votes
0
answers
20
views
Hot reload on Next.js routes still shows an error even after the bug has been fixed
I'm new to React and Next.js, and I'm running into a really annoying caching issue.
When I have a api/auth/route.ts , and an error is detected in this file (a basic syntax error), even after I fix the ...