Newest Questions
24,166,696 questions
Advice
0
votes
0
replies
3
views
Assembly x86 32-Bits Write Character
I'm currently working on a DOS Kernel 32 Bits on x86 Assembly
I'm looking for help, i want to print out the letter E on the screen to check if my code jump 16-Bits to 32-Bits is working correctly.
...
0
votes
0
answers
2
views
`pgoutput` does not send BEGIN/COMMIT for empty transactions in PostgreSQL 18 — replication slot LSN does not advance
Problem
After upgrading from PostgreSQL 17 to PostgreSQL 18, our logical replication consumer stops advancing restart_lsn on the replication slot when workload consists mainly of empty transactions (...
0
votes
0
answers
6
views
Unwanted Communication Reporting Extension deletes messages always
I am implementing an Unwanted Communication Reporting Extension (IdentityLookupUI) to allow users to report spam messages to our backend.
The extension works perfectly in terms of data collection and ...
0
votes
0
answers
15
views
Python json normalization - nested structure
I am learning to process what i consider a complex json structure and am trying to load this into a dataframe. I want a single record for each report id. Here is the sample json structure
{
&...
Advice
0
votes
0
replies
9
views
Application Platform component for multi-applications environment?
I am assigned to plan for rebuilding our company's applications. We currently have 5 standalone applications which authenticate against local Microsoft Active Directory Domain Controller. All the ...
Best practices
0
votes
0
replies
14
views
How can I see how much time a work item spent in the Blocked Kanban column?
I would like to understand whether it is possible to measure how many days a work item spent in the “Blocked” Kanban column when the work item state remains “Active”.
Context:
We are using a separate ...
0
votes
0
answers
9
views
How to correct the typecode values in the DB without dropping the data
We extensively use the DataModelUpgrade plugin provided by Guidewire to modify the database structure in higher environments without losing data. This approach has been consistently successful across ...
0
votes
0
answers
10
views
Input loses focus after disabled and re-enabled
I want to disable the input box while it is processing, and to re-enable and return the focus to it when processing is done
This works to disable and re-enable the input box but it loses the focus ...
Best practices
0
votes
0
replies
6
views
proftpd server fails to follow .ftpaccess file rules
I made .ftpaccess file like below: so myuser cannot see file denied.txt but it is not working. It fails to work either way files->limit neither limit->files. WHAT TO DO?
<Limit STOR STOU ...
0
votes
0
answers
10
views
Getting a list of events for a pod (as it starts)
Python 3.11, kubernetes library 29.3.0
Scenario
I have a typescript front-end which uses a python back-end to launch docker images into a kubernetes cluster. As part of that process, it calls an API ...
0
votes
0
answers
7
views
Can I load an icon from a file in a python3 qt6 app?
Like the title says. I have a python3 tool that uses the Qt6 libraries to display windows on my MacOS server and I would like to use a different icon. Everything I have found talks about compiling in ...
0
votes
1
answer
11
views
time shell keyword not respecting value of TIMEFORMAT when set before command
According to the Bash manual,
The TIMEFORMAT variable may be used to specify the format of the time information.
For instance, if I set TIMEFORMAT to %R, then time should only print the elapsed time ...
Tooling
0
votes
0
replies
5
views
How to integrate AI-generated presentations into a website project?
I just want to ask if there are any AI tools I can integrate into my website project that can generate PowerPoint presentations with templates. I'm just a beginner working on my project. Thank you for ...
Best practices
0
votes
0
replies
6
views
SwiftUI Contiuously Read Data via TCP/IP
I am relatively new to programming in Swift, coming from C++. I want to write an iOS app in SwiftUI that continuously reads data which is sent by a server via TCP/IP and eventually sends TCP/IP ...
0
votes
0
answers
15
views
uv workspace packages vs path dependencies?
uv has two ways to specify dependence on a package by relative path. Either use a path dependency, or a workspace member:
[tool.uv.sources]
package_a = { path = "python_stuff/package_a" }
...