Newest Questions
24,188,470 questions
0
votes
0
answers
9
views
Hibernate 7 and H2 2.4.240 compatible issues
When upgrading H2 to the latest 2.4.240, the H2 specific tests failed with the following errors:
insert into posts (content,created_at,slug,status,title,version,id) values (?,?,?,?,?,?,?) [23514-240]
...
Best practices
0
votes
0
replies
8
views
Build histogram from pre-existing data
I have a question regarding histograms, not built from data collected in real time.
Our codebase deals with processes, all of which have a duration. I want to expose these durations as a metric. We ...
0
votes
0
answers
13
views
Jython calls wrong method when trying to call Java method with a boolean
My Java class has several flavors of the same method with each method taking a different Java type as an argument. One takes an int, one takes a boolean, etc.
When my Python code calls method(True), ...
0
votes
0
answers
6
views
Traefik (via Coolify labels) still applies Basic Auth on /api and /jobs
I’m running a container through Coolify and setting Traefik labels.
Basic Auth should only apply to the main site, while /api and /jobs should stay public.
Сonfig:
traefik.enable=true
traefik.http....
0
votes
0
answers
14
views
How to import a Haskell function in Python
I cannot fix this error. build.sh is trying to create a shared library but it fails:
~/Desktop/deepseek$ ./build.sh
Building Haskell shared library...
Loaded package environment from /home/success/....
0
votes
0
answers
22
views
Does Google One AI Pro include API access for Veo 3 or is it limited to Flow only?
I’m a student and subscribed to Google One AI Pro using the free-tier eligible discount.
In the Flow web interface, I can successfully generate videos using the Veo 3 model.
However, when I try to use ...
-6
votes
0
answers
39
views
Can you give me your feedback? [closed]
I want it make a kind of forum but where you can personalize your own post, also i wanted to make possible to personalize your own profile
https://habb.lat/
Best practices
0
votes
1
replies
31
views
Bash tool/function to replace an arbitrary literal string (not regex) in a file/variable
I want to write a small tool or Bash function that can be used like:
tool foo bar file
and it should replace all occurrences of foo in file with bar.
The key problem for me: both foo and bar can be ...
Advice
0
votes
0
replies
15
views
Google Sheets: How to keep a new column in sync with a computed column
Suppose I have two sheets: Sheet A's rows come from somewhere else, e.g. a Google Form, continually added to and kept in chronological order of addition, but subject to modification (e.g. manually). ...
-1
votes
0
answers
28
views
Why does Clangd warn when using C++20 designated initializers with uniform initialization syntax?
According to modern C++ guidelines, we should prefer uniform initialization everywhere, for example:
int x{0};
However, when I try to combine uniform initialization with C++20’s designated ...
Advice
0
votes
0
replies
17
views
How modify script with adding second task?
This script adds a line to add custom.js to vivaldi browser directory:
#!/bin/bash
vivaldi=/opt/vivaldi/resources/vivaldi
moddir=$HOME/vivaldi-modding/
sudo cp $moddir/custom.js $vivaldi
sudo sed -i -...
-1
votes
0
answers
12
views
Azure App Service (Linux) showing default page instead of Laravel app wrong root? Startup command not working
I deployed a Laravel project to Azure App Service (Linux) using Bitbucket Pipelines, but the app is not loading. Instead of my Laravel homepage, Azure shows the default App Service page.
In my ...
0
votes
1
answer
23
views
Subclass of Generic fails with AttributeError: object has no attribute '__parameters__' - using Generic when superclass does forward __init_subclass__
I have a setup like the following
from typing import Generic, TypeVar
T = TypeVar("T")
class ThirdParty:
def __init_subclass__(cls):
... # does not call super()
class Mine(...
0
votes
1
answer
18
views
Why does the entire viewport fills in red when the element is not that big in size?
Hello! just trying to figure out what is going on here.
I am trying to understand in a comprehensive way, how all this works (I am an experienced one but always with some doubts about the things ...
0
votes
0
answers
18
views
Animate a view's transition differently from its modifiers (in SwiftUI)
I'm writing a SwiftUI app in which I'd like to have objects animate slowly when they change location and quickly when they disappear. I can't figure out how to achieve that.
Take this example. There ...