Newest Questions
24,168,156 questions
0
votes
0
answers
4
views
Do any AudioKit samplers support overlapping same-note polyphony (same MIDI note triggered twice)?
I am building a sequencer in Swift using AudioKit and testing several sampler engines, including:
- DunneAudioKit Sampler
- MIDISampler
- AppleSampler
I noticed that when triggering two notes of the ...
-1
votes
0
answers
6
views
Prefix Referral Code eg: NRWF4563R, Admin's and Member Dashboard, Wallet
I have a website that I want to start paid Referral program, when someone click on the preexisting username eg NRWF4563R and Register and Activate that Account with $5.00, and Activation message will ...
0
votes
0
answers
8
views
writing test for Timeout::Error, Errno::ECONNREFUSED
The folllowing test:
assert_raises(Timeout::Error) do
Timeout.timeout(1) do
sleep(5) # This should exceed the timeout
post confirm_execution_url, params: { txdoc_id: this_txdoc.id }, "...
0
votes
0
answers
10
views
Api used by snipping tool when taking screenshot/screenrecording
I am trying to monitor screenshot events on Windows 10/11 by hooking the API used when a screenshot or screen recording is taken via the Snipping Tool (Win + Shift + S).
While investigating, I found ...
0
votes
0
answers
16
views
Using a regex lookahead after spaces
I am trying to write a simple script to process JSON5 — the idea is to convert to standard JSON and let JSON.parse() do the rest. I’m using regular expressions to do the conversion.
One part is to ...
Best practices
0
votes
0
replies
11
views
rust session scoped integration tests with docker
I have a CLI tool that connects to a remote via SSH and does a bunch of operations on that host. To test this I want to write multiple integration tests. The tests should spin up a docker compose ...
Advice
0
votes
0
replies
12
views
Chronos2: Training data
After reading some articles it is still unclear to me why exactly the AutoGluon tutorial for Chronos2 creates training data. If I am not wrong, foundation models use transfer learning and the weights ...
0
votes
0
answers
13
views
codesign: Apple Silicon vs Intel
As expected, copying a system executable (e.g. id, ls etc.) in a user directory does not give you a usable executable (it gets SIGKILL on launch).
On an Intel Mac with Tahoe 26.3.1 , the command:
...
0
votes
0
answers
6
views
iOS Build with EAS failing with fastlane build/archive error exit code 65 on Windows
I’m trying to build my React Native / Expo app for iOS TestFlight using EAS Build, but the production build fails while development builds work fine. I’m on Windows, so I’m using eas build (no Xcode ...
-1
votes
0
answers
13
views
TypeScript error: Property 'accessRequest' does not exist on type' 'PrismaClient<PrismaClientOptions>' even though model exists
I'm working on a Next.js 14 project with Prisma and getting a TypeScript error when trying to use my accessRequest model
import { NextResponse } from "next/server";
import { prisma } from &...
1
vote
0
answers
29
views
Initialize interpeter before it runs main script
I need to run python script with costly initialization (0.5 seconds). To mitigate initialization time multiple interpreters are pooled, so when need to execute arises, interpreter is taken from pool ...
0
votes
0
answers
15
views
iPadOS 26 Crash when floating num pad in presented view
Build the sample code below, type something in the textfield (make sure the num pad is floating). And tap multiple times outside of the textfield in the sheet.
That will lead to the crash:
*** ...
-1
votes
0
answers
24
views
Automatically run macros without prompt to run a macro
I have a code here but the code still prompting to run a macro.
I need to run the macro Automatically.
Private Sub Worksheet_SelectionChange(ByVal Target As Range)
If Intersect(Target, Range(&...
Advice
0
votes
1
replies
13
views
How should I manage a large database schema in GBase 8s during application development?
I am currently designing the database for a medical-related software project using GBase 8s. After generating the schema design with the help of an AI tool, the normalized design resulted in around ...
Advice
0
votes
1
replies
13
views
During Power BI Export, How to Reset Default Report Filters Before Applying reportLevelFilters?
'm using Power BI Embedded in a web application with an embed token, and I'm exporting reports to PDF using the Power BI Export API.
During export, I apply filters using reportLevelFilters like this:
&...