Newest Questions
24,150,784 questions
0
votes
0
answers
15
views
How to stop previous flow when new trigger arrives
I'm trying to create a workflow in Outlook. Currently is working partially is shown below and works like this:
Check email received
If an email body contains the text "Start Process" --> ...
Best practices
0
votes
0
replies
24
views
Should trailing slash URLs redirect to non-trailing slash URLs?
I have a Laravel website running behind nginx, and I am trying to understand the correct way to handle URLs with a trailing slash.
For example, there can be two possible versions of the same page:
/en/...
1
vote
1
answer
34
views
Why is variable not expanding in jq?
Why does this work (variable expanded by bash)
jq -r "include \"i3\";stack(.id==$ID)|
.[]|select(.type==\"workspace\")|.name" <<< "$TREE"
When this ...
0
votes
1
answer
30
views
How to display names instead of IDs, using Django with React?
I'm using Django with React.
I'm creating a CRUD application for products. My Product table is related to the Category, Brand, Model, Quality, and Supplier tables.
I can save the data, but when I try ...
0
votes
0
answers
34
views
The Payment applicationId option is not in the correct format in next.js
I'm working on a Next.js application and trying to integrate Square Payments. However, I'm encountering the following error during initialization:
Square initialization error: ...
1
vote
2
answers
52
views
Simple p5.js sound player, sound is forever 'undefined'
I started this project two days ago with the intent to slowly learn about audio features while building up a simple audio player, but I can't even get past step one: getting the audio to play. It just ...
-2
votes
2
answers
37
views
Specific dependencies in Pom.xml not overriding transitive dependencies
I am using the awssdk dependency
<dependency>
<groupId>software.amazon.awssdk</groupId>
<artifactId>s3</artifactId>
<version>2.46.9</version>
</...
1
vote
1
answer
27
views
Babylon.js + Vite: Failed to load module script and blank index.html in dist
I'm trying to deploy a Babylon.js game using Vite onto Github Pages and I'm running into a couple issues.
- index.html in the built folder is blank.
- Navigating to the deployed Github Page displays ...
0
votes
1
answer
36
views
Python Selenium - how to download via execute_script
I made a small app in Python, using Selenium and Firefox, where I want that in response to a click in an anchor element, the file is downloaded instead of opened in a new tab (PDF file).
from selenium ...
0
votes
0
answers
22
views
Firebase Firestore BigQuery Export extension is automatically deleted after about one day
I’m using the Firebase Firestore BigQuery Export extension. The extension installs successfully and starts streaming Firestore changes into BigQuery, but after approximately one day it disappears from ...
Best practices
1
vote
2
replies
49
views
Could this logging setup code be rationalised
Any thoughts on how I could simplify this code a bit, for example is there any way of putting the format string in a root handler so that it is then inherited in the file logs. Just feels like a lot ...
-3
votes
0
answers
26
views
Azure Logic Apps Agent workflow hangs when processing large tasks (~160 files) with repeated HTTP tool calls [closed]
I have an Azure Logic Apps workflow that hangs when processing 160 files with repeated HTTP tool calls
Workflow design:
The Agent loops a tool which internally performs an HTTP GET to retrieve file ...
0
votes
1
answer
30
views
Get Form Tool Feature's Placement Face and other attributes
I'm trying to get the attributes from a Form Tool Feature. Primarily goal is to get the Placement Face, secondary goal would be to be able to "Flip Tool" if user set it up wrong.
I tried ...
0
votes
1
answer
42
views
Elementor + UAE Navigation Menu mobile dropdown opens but menu items display horizontally and cause horizontal scrolling
I'm using Elementor with the Unlimited Elements (UAE) Navigation Menu widget in a custom header.
The menu works correctly on desktop, but on mobile I have a strange issue:
Problem
The hamburger icon ...
5
votes
1
answer
122
views
Why does C++26 add `CHAR_WIDTH` when we already have `CHAR_BIT`?
While reading cppreference, I noticed that C++26 adds a new macro named CHAR_WIDTH.
For me it seems to have the same value as CHAR_BIT, which for me is 8.
What's the difference between CHAR_BIT and ...