Newest Questions
24,234,690 questions
1
vote
1
answer
26
views
How can I create a scrolling affect that changes the portion of text that overlaps a static image to white?
I am trying to change the text color from black to white only of the portion of text that overlaps my static background image as the text scrolls up. I have been able to get close with mix-blend-mode:...
0
votes
1
answer
9
views
IndexedDB await get not returning an object
Working with IndexedDB, I have this code:
async function Get() {
const dataset=await db.result.transaction('Store1','readwrite').objectStore('Store1').get(5);
console.log(dataset);
}
I am expecting ...
0
votes
0
answers
5
views
fastlane pilot stuck on upload to App Store
I'm doing a workflow in git actions (Gitea) that build and upload the app to App Store in TestFlight. The match and build work as expected the issue is in uploading the process start but then stuck ...
0
votes
0
answers
7
views
Issue with sending emails with MimeKit
I've been trying to send a 'forgot password' email for my website. I am using a template html file with replaced text to send new randomized credentials to a user. I have so far been unable to send ...
0
votes
1
answer
9
views
WinUI 3 App Not Showing in Kiosk Mode (Assigned Access) App List on Windows 11 Pro
I'm developing a Kiosk application using WinUI 3 on Windows 11, and I'm trying to test it locally using Assigned Access (Kiosk mode).
I’ve packaged the app as an MSIX using Visual Studio and ...
-1
votes
0
answers
12
views
Can Selenium chrome driver submit actual live data to backend?
I am running a selenium webdriver program with chrome driver, where the programs opens job application and fills all the forms and submits the data. The code is even able to create account with that ...
0
votes
0
answers
23
views
Why does sqrt(x+1)-sqrt(x) result to 0 in JS? [duplicate]
I’m trying to compute the difference between two square roots in JS.
function diffSqrt(x) {
return Math.sqrt(x + 1) - Math.sqrt(x);
}
console.log(deltaSqrt(1e6)); // 0.0004999998750463419
console....
0
votes
0
answers
10
views
tensorflow/core/framework/local_rendezvous.cc:407] Local rendezvous is aborting with status: OUT_OF_RANGE
I am experiencing an issue with an image classification model.
After extracting frames from videos, saving them in a suitable folder structure for creating an image dataset from a directory using tf....
0
votes
1
answer
11
views
How can I get all thing names from a thing group in AWS IoT Core using a Lambda function?
I'm trying to get all the thing names that are part of a specific thing group in AWS IoT Core using a Python Lambda function.
I checked the Boto3 documentation looking for a function that retrieves ...
0
votes
0
answers
19
views
How do you mock FusionCache with Moq?
I created a wrapper for FusionCache and am attempting to create a unit test.
This is the method:
public class FusionCacheService<TEntity>(IFusionCache cache, PayabliMainDbContext dbContext, ...
0
votes
0
answers
5
views
HttpSecurity.securityMatcher is not matching my request. Custom Filter runs even when its SecurityFilterChain doesn't match the request
I have defined two custom OncePerRequestFilter which I want to run only specific request. However they are running against my SecurityConfiguration for other endpoint aswell.
My Controller Endpoint ...
0
votes
0
answers
9
views
Downloading wordpress core using wp-cli command
I have tried to install WordPress using the CLI command wp core download but I got:
Fatal error: Allowed memory size of 134217728 bytes exhausted (tried
to allocate 36864 bytes)
Can any one help me ...
-4
votes
0
answers
11
views
How to get knowledge by seeing others code [closed]
I want to learn about how to analyse and make understand once thought process to another thought process by looking into the other code and how to understand their approach by just looking into into ...
0
votes
1
answer
28
views
"EIdOSSLLOadingCertError [...]PEM_read_bio:no start line" when trying to post with TIdHTTP and SSLIOHandler
I'm trying to do a POST request in Delphi, using the Indy TIdHTTP component. The target host requires a certificate and key files. Testing the requests with Postman or Insomnia, it works fine, returns ...
0
votes
0
answers
10
views
Repopulate artefacts when deploy folder deleted
I run a build bitbake core-image-minimal which produced poky distro image under build/deploy-ti/images/beagley-ai. I deleted the folder thinking that tmp folder has-it-all and will re-create and re-...