1,436 questions
3
votes
1
answer
114
views
PowerShell Script: When the Ethernet Port status changes why doesn't the status report show the actual port status?
I am an occasional casual programmer (for about 60 years now!). I wrote 2 functional SNMP PowerShell desktop shortcut scripts 4 years ago. Now I am writing two scripts for my old Windows 10 system: ...
0
votes
1
answer
65
views
Get the result of the triggered pipelines
I have a main azure pipeline (pipelineFinal) that should be triggered when a pipelineA is finished.
pipelineA:
trigger: none
jobs:
- job: BuildA
displayName: "Build Pipeline A"
pool:
...
0
votes
1
answer
81
views
Simulate a click on a toggleButton in a custom-made Ribbon
I created a custom Ribbon in Excel with multiple ToggleButtons using Office RibbonX Editor. When I click them 1 by 1 everything works (display a certain meeting type on a calendar Yes or No).
I want ...
0
votes
0
answers
48
views
Battery Status Changing after some delay after the healthd updates
Did anyone resolved the issue of the battery status as Charging and Discharging in the GUI.
In my kernel the Charging and Discharging is happening perfectly.
logs from the kernel:-
phyboard_polis:/ # ...
1
vote
1
answer
100
views
How to set a custom WooCommerce order status based on the pickup location of Local Pickup Plus
To offer pickup locations during checkout on a WooCommerce installation we use Local Pickup Plus of Skyverge. This tool works as expected and orders are set to "Pending". However, we want ...
-1
votes
1
answer
90
views
Magento 2.4 how to hide out of stock for one category while showing them for other categories?
I want to hide out of stock product for one category while showing them for other category. Please suggest me how to do it
I tried turning hide out of stock on but it is hiding for all category. ...
0
votes
1
answer
52
views
how can I make the activity part of the bot's profile invisible when the bot is active?
client will look active, but I want that gray part of the place to look like the complete avatar of my bot
like that
i tried many ways to do that like ws and client presence options but it couldn't ...
2
votes
1
answer
820
views
Unity - How to always show status bar and navigation bar on android app
I was able to display the status bar and make it Transparent using UnityTransparentStatusBarTheme on the xml but my app goes from behind the status bar. I would like to remove the full screen and make ...
1
vote
1
answer
41
views
Track dates at which a status changes to a specific value
I have a table my_table like this:
id | updated_at | status
-----------------------------------------+-------------------------------+--------
...
0
votes
1
answer
82
views
Activity status in Node js
I am making a pet-project in MERN stack where I want to implement the activity status of users. After 3 minutes of inactivity the user status becomes inactive. One approach i am considering is by node-...
-2
votes
1
answer
908
views
Simple Python Server - How to prevent sending 304 on either end? [closed]
I set up a local simple http server in python on windows.
I set up an HTML file with javascript that uses setInterval() to request a JSON in the local directory every second. (Then updates the webpage ...
-2
votes
1
answer
1k
views
blank orders being generated in WooCommerce with no details and a pending payment status,
blank orders being generated in WooCommerce with no details and a pending payment status,
i am using woocommerce plugin and elavon payment getaway
everything setup is ok but the order are automatic ...
-1
votes
1
answer
442
views
Add a Cancel order button to WooCommerce My account View Order pages
Is there a way to insert a button or link to cancel the order inside the page view-order of woocommerce?
1
vote
4
answers
78
views
Obtaining varied results using the grep command
For example, I have a file:
$ cat test.file
a
b
c
If I grep with output, I got echo $? to 0:
$ grep a test.file
a
$ echo $?
0
But if I grep without output, I got echo $? to 1
$ grep x test.file
$ ...
1
vote
0
answers
793
views
Target status of deployment group in azure devops shows offline most of the time even though server is running
Most of the time, the target status in the deployment group shows as offline, even though the server is running. I am unsure why this occurs. When this problem arises, I usually manually run the cmd....
2
votes
1
answer
3k
views
How to enable DAG Processor status in Airflow
I have an Airflow cluster running with Docker. Everything seems to work fine except DAG Processor is not properly bound.
When checking the cluster status it is set to Unknown:
Thus I am investigating ...
1
vote
2
answers
221
views
How to get WooCommerce order items details in custom email content?
The first part of the question is HERE.
I need to get a list of items from a suborder that have received the status 'shipped' or 'readytocollect' inside $message_body = .
To do this, I was advised to ...
0
votes
1
answer
203
views
show status of multiple fields with LIKE and OR
I'm trying to show the status of two variables in mysql
$ sudo mysql -e "SHOW STATUS LIKE 'wsrep_local_state_comment' OR LIKE 'wsrep_cluster_size'"
ERROR 1064 (42000) at line 1: You have an ...
0
votes
1
answer
74
views
Is it possible to put a PayPal payment on a pending status using API
I want to implement a flow for transactions.
A buyer sends a payment to a seller but the seller will not receive the money until my server will approve it's ok and the buyer has received what they ...
0
votes
1
answer
317
views
Track the historical change of Status
I defined the folloing Expr Formula:
history.changes.Filter($.field="status").changeGroup.map(CONCAT($.author.user_display_name(), " set on ", FORMAT_DATETIME($.timestamp, "&...
0
votes
1
answer
1k
views
Grafana docker container status UP or Down
How to create Dashbosrd on Grafana that displays status of docker container UP or DOWN?
Example:
Name Status
Container1 UP
Conteiner2 Down
Solution
The way of creation the dashboard with the ...
-1
votes
1
answer
612
views
The best way to track a user's online status | Laravel 9
What's the best way to check a user's online status? I found two options, but I need advice to understand which one is better. The option I found: middleware and broadcast
Middleware simply hangs on ...
2
votes
1
answer
140
views
How to find out if a third party has killed or broken the program in C++
We know that in the world of Linux-Unix, we can break the program running in the foreground in the terminal with ctrl+C and end the program.
How can I know in C++ that a third party breaks or forces ...
0
votes
1
answer
71
views
Does the header "If-None-Match" consume quota in youtube's api when the response code is 304?
That's the question, does the "If-None-Match" consume quota when the response code is 304 from youtube's api v3 or it's the same as when the response code is 200 which is 1 quota?
Didn't try ...
0
votes
1
answer
195
views
SQL query to find max value for each day available, and fill in rows for missing days to build a complete table?
I have a table from IBM Maximo called wostatus, which records changes in workorder statuses. There can be mutliple status changes in a single day, and changes are only recorded when they happen.
I ...