Newest Questions
24,184,593 questions
0
votes
0
answers
2
views
What is the best tool to compile and run my c and c++ files in vs code's Terminal?
I am currently learning C and C++ and i want to run my code directly in terminal. is there any way?
0
votes
0
answers
2
views
Unable to upload my app with Transporter. Some kind of version mismatch?
I'm having an issue with my Flutter app, it builds ok but when moving it to Transporter to get it on App Store Connect I get a message:
Validation failed (409)
Invalid Bundle. The bundle Runner.app/...
0
votes
0
answers
5
views
Conflict on generic TryFrom impl but not on generic From impl
I'm trying to implement TryFrom over a type parameter, like so:
enum MyType {}
struct MyError();
impl<T: Into<u8>> TryFrom<T> for MyType {
type Error = MyError;
fn try_from(...
0
votes
0
answers
13
views
how to make circular button with transparent background using CustomTkinter?
I am making an alarm using Python and MySQL integration for school project. I am using CustomTkinter to make UI
enter image description here
This is what I have reached so far.
I want to add a red ...
Advice
0
votes
0
replies
12
views
Compile C++ .NET SDK into apk android app. Possible?
I am working on windows application with windows forms in visual studio using C++/CLI SDK.
This is easily compiling to exe file, it works perfectly on windows.
But what about android or ios? What the ...
-1
votes
0
answers
22
views
Why is std::vector<bool> special, and what guarantees does it actually provide?
std::vector<bool> is the only standard container whose name strongly suggests “a vector of bool”, yet it intentionally does not model a contiguous container of bool objects.
Despite breaking ...
0
votes
0
answers
11
views
Supabase, Unexpected end of JSON input Error While uploading img file to storage
Trying to upload a image file(png) to Supabase Storage Using the code below.
import fs from 'fs'
import { createClient } from '@supabase/supabase-js'
import 'dotenv/config'
const supabase = ...
1
vote
0
answers
11
views
How to sync/restore data from Aurora DB in one AWS account to an existing Aurora DB in another account without recreating the DB?
I have an Amazon Aurora database used as UAT in AWS Account A and another Aurora database used as QA in AWS Account B.
In Account A, the UAT Aurora cluster creates automated snapshots every 1 hour. My ...
-2
votes
0
answers
26
views
Confluentic Schema Registry Broken : Docker Compose File
Schema Registry Failed to Start
Unable to identify the issue with configuration or port binding issue
Referred Github Link : https://github.com/Java-Techie-jt/spring-kafka-avro
Error Log
[main] INFO ...
Best practices
0
votes
1
replies
44
views
Do SQL databases apply WHERE filters before joins?
from a in xx
join b in yy on a.someprop equals b.someprop
join c in zz on a.someprop1 equals c.someprop
where a.someprop2.Contains(strval)
I’m trying to understand how SQL query execution works ...
2
votes
0
answers
27
views
Sonos Control API: /groups/{groupId} and /groups/{groupId}/queue return 404 in Amp-based household deprecated, device-specific, or entitlement-gated?
I’m integrating with the Sonos Control API (v1) and trying to understand the current behavior of group-level endpoints, specifically in a household that primarily uses Sonos Amp devices.
I’ve built a ...
Advice
0
votes
1
replies
21
views
Discord bot embed customization
I wanted to make a custom command that sent an embed with a message that the user writes (I was using $N for that), but I also wanted the users to be able to customize the embed color in their message....
Best practices
0
votes
0
replies
12
views
How would I add a NuxtUI Popover to a fullCalendar event?
I've been using NuxtUI for my UI elements, and I'm using fullCalendar for calendaring things. I want to add a popover that would display some text when hovering over an event (with the popover ...
1
vote
1
answer
29
views
"TypeError: expected string or bytes-like object, got 'type'" error with SQLAlchemy query
(I'd tried to post this here, had someone post a version of it for me on r/flask, and am trying again here, so please excuse the duplication if the original one shows up.)
I'm trying to modify a Flask/...
1
vote
0
answers
32
views
Zstandard in Python 3.14: compress a file in streaming and multi-threaded mode
It is very nice that Python 3.14 added Zstandard to the standard library. Please see here for its package documentation. I can use it with a rudimentary syntax
from compression import zstd
from ...
