Newest Questions
24,163,902 questions
0
votes
0
answers
3
views
Why do I sometimes get "non-fast-forward (pull first)" vs "divergent branches" in Git?
I’m trying to understand the difference between two Git situations that seem similar but behave differently.
Sometimes when I try to push, I get an error like:
"Updates were rejected because the ...
0
votes
1
answer
21
views
How can I get the Claude Code extension in Cursor IDE on Windows to use my Conda Python interpreter specified in AGENTS.md?
I use the Claude Code extension in Cursor IDE on Windows 25H2 Pro.
I specified which Python interpreter agents should use in AGENTS.md in my project:
## Python environment
This project uses a Conda ...
-1
votes
0
answers
16
views
Why is my PHP query string malfunctioning?
I am writing a simple web-app to display flashcards using PHP, SQL and HTML.
To show the cards currently created I have a page called view_cards.php which loads with a query string comprising the ...
Best practices
0
votes
2
replies
64
views
How to make a controller for a top-down shooter game in Game Maker Studio 2
How do I make a controller for a top-down shooter game in Game Maker Studio 2?
I'm new to the GML Visual coding language I tried many things but I'm more used to GML Code and the code is always ...
Best practices
0
votes
0
replies
20
views
Collaboration between tenants on Microsoft 365
I’ve been researching collaboration between tenants to better understand the available options, but I’m struggling to find a clear path to follow.
My goal is to “connect” the tenants to improve ...
0
votes
0
answers
37
views
Interpolation between arrays of different dimension
I am working on a 1D rod heat diffusion simulation with a moving heat generation term.
Below is my code for the moving source:
# Functions
def wf_pos(t):
"""
Position of the ...
0
votes
0
answers
40
views
How to change date format from day-month-year to month-day-year
I have two very simple columns of data that I am trying to rbind, but can't because one is in day-month-year format and the other is in month-day-year format. I have been able to convert dates before ...
0
votes
1
answer
42
views
I want to make a conditional component in React but didnt work, What I'm doing wrong?
Currently I have my code like this, and it works:
{(users.length===0)? (<></>) : (
<Pagination
sx={{ mt: '1rem' }}
page={page}
count={pagination.last_page}
onChange={...
0
votes
0
answers
26
views
How do I get a transparent Shell navigation bar on Android using MAUI 10?
I am trying to make my app fully edge to edge, while using MAUI 10 and a having a visible Shell.NavBar. On IOS, the application renders like this:
Note that the Shell navigation bar is displayed, but ...
0
votes
0
answers
33
views
Trying to Understand the activity lifecycle of android [closed]
I am writing a simple pressure sensing android app , that uses android 13+
The app senses pressure, and keeps track of it in a text file.
Not able to understand if it uses Java awt to manage its ...
Tooling
0
votes
1
replies
37
views
Check out my new Open Source Python Debugger
I’ve been building an open-source Python debugger called Flatline and wanted to share it here to get feedback from other Python developers.
Flatline is aimed at a specific class of failures that ...
Tooling
0
votes
2
replies
38
views
Query tuning: counting distinct matching rows across tables
I’m querying two large tables containing property transactions for 2024 and 2025. I need to count how many distinct properties (defined by county, PAON, street, city) appear in both tables, grouped by ...
-1
votes
0
answers
35
views
How can I resize my buttons in GUI in SciLab when I change size of window?
I am writing simple GUI application that calculates decision of system of linear algebraic equations. When I generate window, I got rectangle with gray background with my sizes that I set. I also ...
-2
votes
2
answers
40
views
Append instances of specific word in string with incrementing integer
I have some text like this:
Lorem ipsum THIS dolor sit THIS amet, consectetur THIS adipiscing elit.
and it needs to be like this:
Lorem ipsum THIS1 dolor sit THIS2 amet, consectetur THIS3 adipiscing ...
0
votes
0
answers
37
views
How do I start the VS Code debugger (Python) when I run scripts from the terminal?
Normally when debugging, I'll just place breakpoints and hit debug on the top right of the VS Code interface.
But a lot of times, I need to run scripts from the terminal. I essentially want to be able ...