Newest Questions
24,236,334 questions
0
votes
0
answers
5
views
UnicodeDecodeError using PostgreSQL DB for DRF project on Windows
I'm working on a team project on DRF, which uses PostgreSQL-based DB, my local PostgreSQL version is 17. The problem is that all of my colleagues have Ubuntu OS on their devices (and the project ...
0
votes
0
answers
9
views
PHPSpreadsheet: styling completely ignored
Trying to add styling to PHPSpreadsheet' cells:
$spreadsheet = new Spreadsheet();
$sheet = $spreadsheet->getActiveSheet();
$irow = $icol = 1;
foreach ([
...
0
votes
0
answers
8
views
code for querying the paradox database in java
I have installed the driver https://github.com/leonhad/paradoxdriver
What should I write in the line "java.sql.Connection conn = DriverManager.getConnection("jdbc:paradox:./db");"
...
0
votes
0
answers
10
views
How can i extract Failed Selector URLs from Cypress Tests
I'm working on a self-healing project for Cypress, and I need to extract URLs that have failed selectors from my test files (.cy.js). My goal is to automatically log these URLs into a file for further ...
0
votes
0
answers
5
views
layer preview in GeoMesa-HBase
I'm using GeoServer to connect to GeoMesa-HBase for displaying data. However, when I navigate to the "Layer Preview" section of GeoServer, I get an error. Interestingly, when I select the &...
0
votes
0
answers
4
views
Revalidation Delay in Next.js
I'm working with Next.js version 14. The goal is to allow a user to apply for a listing only if they have enough credits. If they don’t have enough credits, I redirect them to a payment page.
After a ...
-1
votes
0
answers
13
views
Django javascript functions running arbitrarily [closed]
I have 2 functions in my views.py and javascript. running at intervals of 1 and 10 sec respectively. They share a cumulative df. Although I'm using Lock(), the functions seem to give random outputs.
0
votes
0
answers
9
views
Solve "ptrace: Operation not permitted" issue with gdb inside apptainer
This question is similar to these two, but is specifically related to Apptainer.
How to solve "ptrace operation not permitted" when trying to attach GDB to a process?
gdb in docker ...
0
votes
1
answer
16
views
Convert string into single column rows
I am trying to take a ID that has a string of accounts associated with it and convert it into 2 columns that show just the ID and the account number aligned to it. Some of the strings have multiple ...
0
votes
0
answers
12
views
Strange behaviour of `ldap_bind` function in PHP when executed against an IPv6 server
Below a very simple code that tries to connect to an Ldap Server.
<?php
// IPv6 address of the LDAP server
$ldapServer = "ldap://[db8::100]:1389"; // Change this to your actual LDAP ...
0
votes
0
answers
8
views
Go allows access to private struct from package when returned by public func
I have a Go main.go like this:
package main
import (
"fmt"
"test/mypkg"
)
func main() {
// this does not work
// var teststruct1 mypkg.privateStruct
// but ...
-1
votes
0
answers
13
views
How to upgrade Laravel 7 project to Laravel 10 using PHP 8.1
{
"name": "laravel/laravel",
"type": "project",
"description": "The Laravel Framework.",
"keywords": [
&...
0
votes
0
answers
17
views
How can I reduce result using find_all?
I tried to get Manchester Utd's win result from Latest 10 Scores of Premier League.
So I wrote below code But It did not show Manchester Utd's win result But all the Latest 10 Scores result.It was ...
0
votes
0
answers
8
views
Problem in logging out in Postman while sending POST Request through API
I am using POSTMAN to send API Requests.I have been logged in through API and got a token. When I try to log out using that particular token it display output as "not logged in"
This is the ...
0
votes
0
answers
9
views
How to prevent new build when using release-cli
When I use release-cli in a .gitlab-ci.yml with the tag option build job it is creating a new pipeline with the build job in it only. The upload and release jobs in my three stage pipeline are not ...