Newest Questions
24,156,960 questions
Advice
0
votes
0
replies
4
views
Huggingface. Passing data to multimodal chat bot without having to save to files
Typically in order to pass non-textual data (audio, image, video) to a model you would need to save the data to a file and then specify the path (or url) to the file.
messages = [
{
&...
Best practices
0
votes
0
replies
8
views
Best way to convert laravel breeze to bootstrap
Other than this method:
npm uninstall tailwindcss postcss autoprefixer
rm tailwind.config.js postcss.config.js
delete the postcss.config.js tailwind.config.js
then:
composer require aldhix/breeze-...
0
votes
0
answers
13
views
SQL additional Practice
I recently started to learn SQL and got the basics down. What are some good practices YouTube videos I can watch to improve my skills. I want to become fluent in SQL.
Advice
0
votes
0
replies
19
views
Algorithm to calculate heat load reduction through multi-layered glass with IR-rejection coatings
I am developing a Python tool to simulate energy efficiency in smart homes. I need to calculate the heat transfer coefficient (U-value) when adding a window film layer. Given the Visible Light ...
0
votes
0
answers
8
views
JPA/Hibernate: Backfill process generates duplicate primary keys (id=1) when deleting and recreating child entities
I'm implementing a backfill process to re-enrich old commit data in my application. This involves:
Marking old commits as "BACKFILL_PENDING"
For each commit: delete existing enrichment ...
0
votes
0
answers
10
views
Programatically written (Maui) UraniumUI TabItem does not inherit Xaml style override for TabView
I have a custom bit of code in App.xaml that creates an override for my TabView. It is a hard style application without being referenced, which I assumed would propagate to other elements within it.
...
-2
votes
0
answers
20
views
Issue with a vector<node*> pointers [closed]
I'm trying to make a doubly linked hash table, sort of. At least, within each bucket it is doubly linked.
My issue is when I am trying to assign the next/previous pointer to of the top of the bucket. ...
Advice
0
votes
1
replies
13
views
How to integrate NestJS with Ecuador SRI electronic invoicing (XAdES-BES signature, SOAP, multitenant)?
Context
Building an electronic invoicing integration for Ecuador's SRI (Servicio de Rentas Internas) tax authority in NestJS involves several non-trivial challenges:
Generating valid XML documents ...
-1
votes
0
answers
30
views
Codex session still cannot access the local Word renderer
I tried the visual QA again, but this Codex session still cannot access the local Word renderer.
What happened:
Word is installed, but Word automation still fails with 80070520 / “specified logon ...
0
votes
0
answers
26
views
How can I find the scopes for UI in VS Code?
I've been making my own theme in a .json file,
and I've been having trouble finding out how to target different UI elements in the window in VS Code.
For example, I don't know what scope targets the &...
Advice
0
votes
1
replies
24
views
How should I follow up on a pending YouTube Data API quota/compliance review after submitting the requested screencast?
I am working on a private internal publishing tool that uses the YouTube Data API to upload videos to our own organization’s YouTube channel.
The client uses OAuth 2.0 authorization and `videos.insert`...
Advice
0
votes
4
replies
37
views
Are lookup tables for case-converting, ASCII only characters [0,127] faster than arithmetic operation?
Imagine I have a long string 10 kb characters, filled with random ASCII characters.
And I want to lowercase them. One way i could do that is by using a simple operation like:
inline char lowercase(...
Advice
0
votes
1
replies
20
views
How to remove items from a list that contain special characters while iterating
Let's say I have a list called words that contains some items with special characters (anything not alphanumerical).
for i in words:
#check if i contains special characters and return True or ...
-1
votes
0
answers
16
views
Optimizing ARIA-live regions for high-velocity AI asset mapping in Node.js
I am building an orchestration layer (Millions SDK) for real-time asset mapping using 180 TOPS neural offloading on ARM hardware. My system uses a Shadow-Vault for non-custodial data settlement.
I am ...
0
votes
0
answers
18
views
__BEGIN_DECLS macro in an Apple-supplied header is causing a "expected unqualified-id" compiler error
I'm trying to use the Arduino-Emulator library so far without much success.
Right now the code doesn't do anything but include Arduino.h and return 0.
I finally got CLion to be happy with my ...