Newest Questions
24,159,913 questions
0
votes
0
answers
4
views
Is there a rate limit to agora free tier for deepgram model?
I am currently using conversation ai engine on my app, and deepgram nova-3 is my ASR. However, I recently encountered an issue where my voice agent does not understand what I am saying clearly even ...
0
votes
0
answers
2
views
What's the difference between the kernel's File Object and an Inode?
I am confused about the relationship between the File Object and the Inode Table in the Linux kernel.Does the "File Object" created during open() contain the file offset, or is that stored ...
-1
votes
0
answers
8
views
GitHub signup blocked with “We detected unusual activity” even after CAPTCHA and network changes
I am trying to create a new GitHub account, but the signup process consistently fails with the error:
\> “We couldn’t create your account. We detected unusual activity and are unable to complete ...
Advice
0
votes
1
replies
11
views
DO-WHILE loop challenge
I am reading a book to learn C# and this is the problem statement.
"As an optional challenge, add statements so that the user can only make three attempts before an error message is displayed.&...
Best practices
0
votes
0
replies
23
views
Haskell FunDeps having too much fun
This isn't a what am I doing wrong? Rather, I'm surprised this works, what's the rationale?/might it all quickly turn to custard.
By ‘ambiguous’ we mean that there is a type variable e that appears ...
Tooling
0
votes
0
replies
28
views
How can I compress images in the browser without uploading them to a server?
I was looking for a way to compress images fully client-side (no backend).
The main reason was:
privacy (no uploads)
speed
avoiding server costs
After testing different approaches, I found that the ...
0
votes
0
answers
11
views
Invalid or unsupported command "update"
Following https://developer.android.com/tools/agents/android-cli I run:
curl -fsSL https://dl.google.com/android/cli/latest/darwin_arm64/install.sh | bash
android update
android init
Problem: At the ...
1
vote
0
answers
28
views
Chart.js not responding to resize in grid column
I need my chart to resize to the full width and height of it's container within a grid column. I've read through the documentation and made sure maintainAspectRatio is false and the container position ...
0
votes
0
answers
7
views
Applying custom segmented function to a subarray in jax
Supose I have a function vec_fun that maps a vector to a vector. I want to apply this function to a subvector of an array based on a condition. For example:
mask = jnp.asarray([False, True, False, ...
0
votes
0
answers
20
views
Python 3.13.0 on Mac OS, jupyter notebook can't find pandas installed
I have installed pandas using
pip3 install pandas
In my Terminal it works fine with no error
import pandas as pd
But I can't do so in Jupyter Notebook, this is the error:
------------------------------...
Best practices
0
votes
0
replies
18
views
How best to update the database from a user text-based database file
I'm working on a program which has a large associative array (somewhere in the thousands, less than 10k, I hope) from strings to files. For the user-end, the user is expected to manage the database ...
Best practices
0
votes
0
replies
11
views
how to fold two very long fs2.stream
i have two very long fs2.stream, stream1 and stream2, now i need to do the following
stream1.fold(complicatedAcc)((acc,e1)=>func(acc,e1))
where func(acc,e1)=stream2.fold(acc)((acc,e2)=>...
0
votes
1
answer
25
views
Why does a css tint appear when i open my webpage [closed]
When i open the webpage, I designed, a tint comes over with a non-functioning x button.
https://github.com/JVCAISON/Html-2.html/blob/main/index.html
0
votes
0
answers
15
views
Griddb TQL OFFSET skipping wrong rows when WHERE clause is used
Not sure if this is a bug or I'm misunderstanding how TQL handles execution order, been going back and forth on this.
Setup is a GridDB Collection storing sensor data. Tried filtering by temperature ...
0
votes
0
answers
29
views
Why are my async/await errors not being caught properly in my Node.js Express middleware?
I am building a REST API using Node.js with Express, and I’m running into an issue where errors thrown inside an async route handler are not being caught by my error-handling middleware.
const express ...