Newest Questions
24,148,507 questions
0
votes
0
answers
7
views
Does GridStoreFactory.getGridStore() internally reuse connections when identical connection properties are supplied?
I'm developing a Java application that interacts with GridDB and I'm trying to better understand how the Java client manages connections.
In several places in the application, I obtain a GridStore ...
Advice
0
votes
0
replies
14
views
How can I provide a static outbound IP for Azure Container Apps to support third-party IP whitelisting?
I have an Azure Container App deployed in a custom VNet. An external partner requires all outbound FTP connections to originate from a single static public IP that they can whitelist.
Azure Container ...
-4
votes
0
answers
20
views
How can I back up multiple IMAP email accounts? [closed]
I'm building a utility to archive emails from several IMAP accounts (Gmail, Outlook, and custom domains). I need to preserve the original folder structure, attachments, timestamps, and metadata during ...
Advice
0
votes
1
replies
24
views
How do you decide what's worth automating?
I'm always curious how you approach this. There's obvious stuff - if you're doing the same thing 50 times a day, automate it. But there's a lot of grey area.
Some tasks look automatable but have ...
Best practices
0
votes
0
replies
28
views
Devops real time projects
I am looking for hands-on, real-time DevOps projects or workshops that cover an end-to-end CI/CD pipeline using GitHub, GitLab, Jenkins, Docker, Kubernetes, and cloud platforms (AWS/Azure). My goal is ...
Advice
0
votes
1
replies
19
views
Are active PA speakers worth the investment over passive speakers for small live events?
I'm planning to upgrade my audio setup for small indoor and outdoor events, including corporate presentations, live music, and community gatherings. I'm trying to decide between active (powered) PA ...
Advice
0
votes
1
replies
37
views
Is retrieving the row before calling put() the only way to update a single field in GridDB?
I'm using the GridDB Java API and have a collection where each row contains several fields. In some cases, I only need to update a single field.
Right now I'm doing this:
Device device = container.get(...
0
votes
0
answers
21
views
f2py `-DF2PY_REPORT_ATEXIT` flag not working
I am using Numpy's F2PY to compile some Fortran code for use in Python, and I am trying to test the performance of the F2PY-generated interface using the -DF2PY_REPORT_ATEXIT compilation flag. ...
-1
votes
0
answers
18
views
GTM enhanced conversions: user data sends with constant value but not with Data layer variable
I need a hand understanding the Google Tag Manager issue.
So, I'm sending user-provided data (email available in datalayer) to a server-side GTM container via the User-Provided Data tag with manual ...
0
votes
0
answers
41
views
Windows Console resizing works when increasing size but fails when decreasing
I am trying to dynamically adjust the size of multiple Windows console buffers and windows using the SetConsoleScreenBufferSize and SetConsoleWindowInfo functions.
struct ScreenBuffer
{
HANDLE ...
Best practices
0
votes
1
replies
46
views
How to get rid of line breaks when printing in the Shell
I am new to Python and ran into an issue when trying to print a single line more than 80 characters. I am hoping to get rid of the line breaks, and increase the character width of the shell to ...
-1
votes
0
answers
26
views
I am getting a TypeError in fastapi jinja2
If I run the code below
return templates.TemplateResponse(
"eq.html",
{
"nonce": request.state.nonce,
"url": url
}
)
I get this error:
File ...
3
votes
1
answer
65
views
What do fgetc and fputc have to do that using fread or fwrite on a big block avoids
I am writing a toy dictionary-based compressor program that reads and writes one byte at a time with fgetc and fputc. Now perf doesn't say those calls are the bottleneck, but I suspect perf is blaming ...
0
votes
0
answers
21
views
True configuration of a PowerShell Light Theme
I have been trying to configure a light theme for PowerShell 7 and thought I had succeeded. These being my settings if the theme is light (my own variable that I give):
Set-PSReadLineOption -BellStyle ...
1
vote
1
answer
30
views
Why is mypy 2.0 caching not working between invocations that do/don't pass --num-workers?
I'm using mypy ~v2 (specifically, 2.1.0) and I've found that successive runs of mypy that don't pass --num-workers are fast due to cache hit, and successive runs of mypy that do pass --num-workers ...