Newest Questions
24,234,673 questions
0
votes
0
answers
2
views
How can I make a printf in assembly x32 that can prints 256chars
I’m writing a tiny demo in 32-bit x86 assembly (NASM 2.16) under Linux x86 (Ubuntu 22.04, GCC 13 / binutils 2.42).
For learning purposes I want to avoid printf from libc and roll my own PRINTF macro ...
0
votes
0
answers
5
views
DNS delegated subdomain for apex production domain on Route 53
Currently, I have a site hosted at example.com. It has DNS setup in AWS Route 53 with a "parent" project. This hosted zone is for example.com and contains the NS record for the registrar and ...
0
votes
0
answers
3
views
Remove-IISConfigCollectionElement causes NullReferenceException
I am developing a PowerShell script to modify customHeaders in my website's web.config file, specifically the Content-Security-Policy header. I'm doing this with a script for 2 reasons:
For my ...
0
votes
0
answers
5
views
Using the data of the children to order with eBean fails
I have two ebean object in Playframework 3.0.5 and ebean 3.0.0.
MessageThread, which has MessageItems:
In MessageThread:
@OrderBy("addDate ASC")
@OneToMany(mappedBy = "thread", ...
0
votes
0
answers
9
views
Trouble with Gmail API
I'm trying to read email using gmail API. It was working for a while, then I guess it hit an email it didn't like and now all I get is An error occurred: 'parts'
try:
# Call the Gmail API
...
0
votes
0
answers
8
views
I want to put the result of an tennisgame in google excel spreadsheets. But I don't get the results in excel
I want to put the result of tennis games in google excel spreadsheets .Can you help me to fix this problem?
importdata
importxml
=IMPORTDATA(https://www.flashscore.nl/tennis/)
=IMPORTDATA(https://www....
0
votes
0
answers
5
views
Every possible swiss tournament
So I’m wondering if there is a way to program every possible Swiss tournament bracket of n rounds and m players?
What I’m trying to do is given a pairing algorithm (which I don’t need to worry about ...
0
votes
0
answers
8
views
jsPDF html method - autoPaging option with the 'text' mode causes issues with text styling
Good day, I wanted to ask a question related to using the html method of jsPDF to generate a PDF based on the html contents of a page. I am using Vue 3 for my frontend and Laravel 10 for my backend. ...
0
votes
0
answers
4
views
How to fix "No active connection found!" error in VS Code for SQL?
I have been facing problems of the IDEs not getting the connections constantly for a few days. I fixed it for SQL Workbench. But somehow the error is still coming on VS Code.
Is there a way to fix it?
...
0
votes
0
answers
8
views
Very slow write speed in SDMMC 1 bit mode on ESP32 s3
I have an esp32-s3 wroom camera board. I have an Arduino program that takes a picture and save sit on the SD card. Nothing really fancy. It works well, it saves the picture in 1-2 seconds. I didn't ...
0
votes
0
answers
7
views
Haskell regular expression error "parse error on input ‘2’ [re|^[A-Z0-9a-z._%+-]+@[A-Za-z0-9.-]+\.[A-Za-z]{2,64}$|]"
I'm using the PCRE library to validate the email in haskell.
Below is my code -
import ClassyPrelude
import Domain.Validation
import Text.Regex.PCRE.Heavy
import Control.Monad.Except
type Validation ...
0
votes
0
answers
11
views
`Future#get` not responding to `Thread#interrupt()` in Java
In the following code, mainThread.interrupt() in the "interrupt thread" does not interrupt taskFuture.get(...).
What is supposed to happen is that the "interrupt thread" interrupts ...
0
votes
0
answers
11
views
Why I can access httpOnly Cookies using Nuxt useCookie() composable?
In my Nuxt app, I've implemented custom authentication middleware and composables. On the backend (Spring Boot), my /login route sets a refreshToken as an HttpOnly cookie and returns an accessToken in ...
0
votes
0
answers
4
views
In Bootstrap's Carousel- How Can I Style the First Indicator Differently On Load?
I have styled the carousel indicators to have a progress animation. The transition starts when the list item becomes active, and after 5 seconds it ends, the color disappears, and the next indicator ...
0
votes
0
answers
6
views
Remix: How to Reuse a Loader Function in a Shopify Hydrogen Component Without Context
I am working on a Shopify Hydrogen Remix stack.
I have a function within my product route. The function is built for this route however I would like to use it in another component in another file. ...