79689101

Date: 2025-07-03 15:28:10
Score: 1
Natty:
Report link

The colon used in slicing. x[:, 0] means 2D array of all rows, with column index 0.

Example:

import numpy as np

x = np.array([[1, 2, 3],
              [4, 5, 6],
              [7, 8, 9]])

print(x[:, 0])  # output: [1 4 7]
Reasons:
  • Low length (0.5):
  • Has code block (-0.5):
  • Low reputation (1):
Posted by: Arnab Sahu

79689095

Date: 2025-07-03 15:22:08
Score: 1.5
Natty:
Report link

Add a new CocoaPods repository with CDN support to your local CocoaPods configuration.

pod repo add-cdn trunk https://cdn.cocoapods.org/
Reasons:
  • Low length (1):
  • Has code block (-0.5):
  • Low reputation (1):
Posted by: kiran bhalerao

79689093

Date: 2025-07-03 15:21:07
Score: 3
Natty:
Report link

ran into this issue.
Any better way to go about the reported issue?

foo.lua on the page is not available

Reasons:
  • Low length (1):
  • No code block (0.5):
  • Contains question mark (0.5):
  • Low reputation (1):
Posted by: Lipika Mahato

79689088

Date: 2025-07-03 15:21:07
Score: 0.5
Natty:
Report link
# Explanation and Fix

I hit this error while calling `cartLinesAdd`:

    {
        "data": {
            "cartLinesAdd": {
                "cart": null,
                "userErrors": [
                    {
                        "code": "INVALID",
                        "field": ["lines", "0", "quantity"],
                        "message": "The product 'X' is already sold out."
                    }
                ]
            }
        }
    }

It looks like an inventory problem, but the real culprit turned out to be **shipping rates**.

---

## What was really happening

- The product’s only stock was stored in a new location (`"Japan"`).  
- That location wasn’t covered by any shipping rate for the buyer’s country (`USA`).  
- During `cartLinesAdd`, Shopify checks:  
  *“Do I have at least one rate from the location that holds the stock to the destination country?”*  
- If the answer is **no**, the API returns the **“sold out”** error even when inventory exists.

---

## Extra troubleshooting step that revealed the root cause

In response to help from **Sabbir Noyon**, I logged the cart ID and full cart object inside the Remix action:

    export async function action({ request, context }: ActionFunctionArgs) {
        const { cart } = context;
        console.log('Cart context on server:', cart?.id);

        const formData = await request.formData();
        const { action, inputs } = CartForm.getFormInput(formData);

        if (action === CartForm.ACTIONS.LinesAdd) {
            const result = await cart.addLines(inputs.lines);
            console.log('Cart result from server:', result.cart);
            return result;
        }
    }

- The console showed a **valid cart ID**, so I copied that ID into **Postman** and manually called the Storefront API.  
- Postman reproduced the exact same JSON error, proving the issue was **not** a bad session or optimistic-UI glitch but a missing shipping rate for the new location.

---

## Fix

1. Go to **`Admin → Settings → Shipping and delivery`**.  
2. Open the **General profile**  
3. Add a simple **Free International Shipping** rate for the missing location and the `USA` zone.  
4. Save.  
5. `quantityAvailable` immediately jumped from `0` to the correct number and `cartLinesAdd` worked.

---

## Why it used to work

- Before creating the `"Japan"` location, stock lived in a location that already had rates for the USA.  
- After the inventory moved, there was no matching rate, so the API began to fail.

---

## Checklist for the future

- After adding a new location or moving stock, open the shipping profile and confirm **every location** has at least one rate for **every zone** you ship to.  
- If you use **Markets**, be sure the location is enabled under **Inventory & shipping origins** for that market.  
- The banner **“No rates for 1 location”** is a red flag—add or copy a rate before going live.  
- With a valid rate in place the product adds to cart without errors.

---

## Acknowledgements

Many thanks to **Sabbir Noyon** for the guidance.
Reasons:
  • Blacklisted phrase (0.5): thanks
  • Long answer (-1):
  • Has code block (-0.5):
  • Self-answer (0.5):
  • Low reputation (1):
Posted by: Jeremy Mejia

79689087

Date: 2025-07-03 15:20:07
Score: 2.5
Natty:
Report link

The solution was to downgrade to python3.9.

Iterable was removed from collections in python 3.10.

Reasons:
  • Low length (1):
  • No code block (0.5):
  • Self-answer (0.5):
  • Low reputation (0.5):
Posted by: Kevin Kraft

79689086

Date: 2025-07-03 15:20:07
Score: 1
Natty:
Report link

Powershell uses different syntax than Linux for issuing directory commands. However, Powershell allows users to issue Linux commands in their own form, but behind the scenes powershell is still issuing the commands in a known Windows syntax. Powershell is object-oriented and uses a "Verb-Noun" naming convention. The perameters "ls -a" would translate to "Get-ChildItem -Hidden" in Powershell or "Get-ChildItem -Force".

You might also try installing Windows Subsystem for Linux which will allow you to execute native linux commands from WSL terminal or within Powershell by affixing WSL to the start of your linux command.

Reasons:
  • Long answer (-0.5):
  • No code block (0.5):
  • Low reputation (1):
Posted by: Stephan

79689083

Date: 2025-07-03 15:19:06
Score: 0.5
Natty:
Report link

ls is not a typical command you use in Powershell. Try running the following:

Get-ChildItem -Force

I would also strongly recommend installing GitBash - https://about.gitlab.com/blog/git-command-line-on-windows-with-git-bash/

This will allow you to use linux like commands.

Reasons:
  • Low length (0.5):
  • Has code block (-0.5):
  • Low reputation (0.5):
Posted by: Bryan Adams

79689082

Date: 2025-07-03 15:18:06
Score: 2
Natty:
Report link

The Option 1 is preferred as,
Because on Option 2, on very re-render it creates new QueryClient for the query provider, which discards previous cache/data and duplicates the ongoing fetches. Which eliminates the superpower of Tanstack query

Reasons:
  • Low length (0.5):
  • No code block (0.5):
  • Low reputation (1):
Posted by: Ejemen Iboi

79689079

Date: 2025-07-03 15:17:06
Score: 3
Natty:
Report link

To make it work for both, SSMS21 and VS2022, I set the VS2022 Install Targets like shown below in the screenshot
VS2022 Install Targets for SSMS21 vsix creation

After having built the vsix I can run the vsix and choose where to install the SQLinForm (https://www.sqlinform.com)SQL Formatter in VS2022 or SSMS21.

How to install extension for both SSMS21 and VS2022

Reasons:
  • Probably link only (1):
  • Low length (0.5):
  • No code block (0.5):
  • Self-answer (0.5):
  • Low reputation (0.5):
Posted by: Guido

79689075

Date: 2025-07-03 15:12:04
Score: 2.5
Natty:
Report link

To do this, you can click on the icon to enter properties and from the colors tab, set the background and text colors. To change any of them, click on it and select the color from the bottom or enter it as RGB. This way, the color you want will be saved for the shortcut that you used to open cmd. Of course, this may not be the case for you.

Reasons:
  • No code block (0.5):
  • Unregistered user (0.5):
  • Single line (0.5):
  • Low reputation (1):
Posted by: mmmp

79689072

Date: 2025-07-03 15:11:04
Score: 4.5
Natty: 5
Report link

for download software the devs: curso google drive download

Reasons:
  • Probably link only (1):
  • Low length (2):
  • No code block (0.5):
  • Single line (0.5):
  • Low reputation (0.5):
Posted by: 73est

79689068

Date: 2025-07-03 15:09:03
Score: 0.5
Natty:
Report link

there should be no difference between &(sa.sin_addr) and &sa.sin_addr because of the precedence of the member access operator (.) over the & operator.

Sometime parenthesis are added in complex expressions, even when unnecessary, for legibility. Wether they are justified here or not is a matter of taste.

Reasons:
  • Low length (0.5):
  • Has code block (-0.5):
  • Low reputation (0.5):
Posted by: NRagot

79689060

Date: 2025-07-03 15:06:02
Score: 2.5
Natty:
Report link

add the --runtime nvidia option to your docker command

Reasons:
  • Low length (1.5):
  • Has code block (-0.5):
  • Single line (0.5):
  • Low reputation (1):
Posted by: returncode13

79689059

Date: 2025-07-03 15:06:02
Score: 0.5
Natty:
Report link

It's currently impossible to get full coverage on code that calls Messaging.sendEmail.

Please vote for this idea to make it possible to mock Messaging.sendEmail: https://ideas.salesforce.com/s/idea/a0BHp000016Kyl5MAC/ability-to-mock-messagingsendemail-in-unit-tests

Reasons:
  • Probably link only (1):
  • Low length (1):
  • Has code block (-0.5):
  • High reputation (-1):
Posted by: Frans

79689053

Date: 2025-07-03 15:03:00
Score: 6
Natty: 5
Report link

Была такая ошибка помогло try до вызова места где появилась ошибка. Она в ассинхронке только что ли...

Reasons:
  • Low length (1):
  • No code block (0.5):
  • Unregistered user (0.5):
  • Single line (0.5):
  • No latin characters (2.5):
  • Low reputation (1):
Posted by: user30957980

79689037

Date: 2025-07-03 14:46:56
Score: 1.5
Natty:
Report link

I managed to use the AxiosError message inside data like this:

(err: AxiosError) => {
      const error = Object.values(err.response?.data!);
      toast.error(error[0]);
    },
Reasons:
  • Low length (1):
  • Has code block (-0.5):
  • Low reputation (1):
Posted by: ssrj

79689034

Date: 2025-07-03 14:45:56
Score: 1
Natty:
Report link

First get element using find_element function.

Then get DOM attributes using get_dom_attribute function

element = driver.find_element(...)
classes = element.get_dom_attribute("class")
print(classes)
Reasons:
  • Low length (0.5):
  • Has code block (-0.5):
  • Low reputation (1):
Posted by: Heindrick Dumdum

79689031

Date: 2025-07-03 14:44:56
Score: 2
Natty:
Report link

"the SQL query looks for a column value of ALL the words in the search bar"

This is not what did you expect ?

To perform a case-insensitive search, you need to either change the collation of your columns (they should end with "_ci"), or adjust your PHP code and SQL query to compare only lowercase values, for example.

Reasons:
  • No code block (0.5):
  • Contains question mark (0.5):
  • Low reputation (1):
Posted by: Bisûnûrs

79689026

Date: 2025-07-03 14:41:54
Score: 2
Natty:
Report link

I have come up a GitHub repo as temp fix. If you guys like to try this temp fix, u are welcome to follow the instruction to install

https://github.com/reidlai-oss/langchain-localai-embeddings-openai-v1-patch

Reasons:
  • Whitelisted phrase (-1): try this
  • Probably link only (1):
  • Low length (1):
  • No code block (0.5):
  • Low reputation (0.5):
Posted by: Reid Lai from Codelity

79689024

Date: 2025-07-03 14:41:54
Score: 2
Natty:
Report link

I think I managed to solve it 😄

Setting the appsetting

  {
    name: 'WEBSITE_AUTH_AAD_ALLOWED_TENANTS'
    value: tenant().tenantId
  }

seems to have ticked the "Allow requests only from the issuer tenant"

enter image description here

Reasons:
  • Probably link only (1):
  • Low length (0.5):
  • Has code block (-0.5):
  • Low reputation (1):
Posted by: Carl

79689023

Date: 2025-07-03 14:41:54
Score: 3
Natty:
Report link

Error

I edited my video for days about three days again I edited but it does not work

can you fix it please

Reasons:
  • Low length (1):
  • No code block (0.5):
  • Unregistered user (0.5):
  • Low reputation (1):
Posted by: sifen

79689022

Date: 2025-07-03 14:40:54
Score: 1
Natty:
Report link

In my experience, it is generally not a good idea to change the scale of individual objects in the UI. If you want to change the size, it is better to work with the size in pixels.

If you want the size of the UI to adapt to different resolutions, you should use a Canvas Scaler, which automatically adjusts the scale of a canvas., Within this canvas you should not change the scale.

If there is really no other way, you will have to get out a calculator. If the child has a scale of 3 and the parent has a scale of 1, the difference (top and right variable) must be the size of the canvas times 2/3 (I think).

Reasons:
  • Long answer (-0.5):
  • No code block (0.5):
  • Low reputation (1):
Posted by: Nakrodus

79689018

Date: 2025-07-03 14:38:53
Score: 1.5
Natty:
Report link

I haven't used vanilla npm for years, and it turned out that I had save=false in my global .npmrc

Reasons:
  • Low length (1):
  • Has code block (-0.5):
  • Single line (0.5):
  • Low reputation (0.5):
Posted by: cornholio

79689010

Date: 2025-07-03 14:33:52
Score: 2
Natty:
Report link

I had the same issue and downgrading the package didn't work. I tried a bunch of stuff, but what worked was using docker.

Reasons:
  • Whitelisted phrase (-1): I had the same
  • Low length (1):
  • No code block (0.5):
  • Single line (0.5):
  • Low reputation (1):
Posted by: Kelvin Jaison

79689007

Date: 2025-07-03 14:31:51
Score: 4
Natty: 6
Report link

Hello, I’m working on localizing my custom DNN module (C#, ASP.NET).

👉 I’m following the standard approach:

<data name="msg" xml:space="preserve">
  <value>Congrats !!</value>
</data>

My code:

string resourceFile = this.TemplateSourceDirectory + "/App_LocalResources/View.ascx";

string message = Localization.GetString("msg", resourceFile);

lblMessage.Text = message ?? "Key not found";

or

lblMessage = Localization.GetString("msg", this.LocalResourceFile);

✅ The resource files are in the right folder.
✅ The key exists and matches exactly.
✅ The file name matches (View.ascx.fr-FR.resx).

❌ **But Localization.GetString always returns null.

What I checked:**

My question:
➡ Does anyone have a working example where Localization.GetString reads App_LocalResources successfully without modifying the web.config (i.e. without re-enabling buildProviders for .resx)?
➡ Could there be something else blocking DNN from loading the .resx files (for example, a hidden configuration or DNN version issue)?

Thanks for your help!

Reasons:
  • Blacklisted phrase (0.5): Thanks
  • Whitelisted phrase (-0.5): Thanks for your help
  • RegEx Blacklisted phrase (3): Does anyone have a working
  • Long answer (-1):
  • Has code block (-0.5):
  • Contains question mark (0.5):
  • Looks like a comment (1):
  • Low reputation (1):
Posted by: Test Test

79689006

Date: 2025-07-03 14:31:51
Score: 1.5
Natty:
Report link
  1. Open "Settings" from your application menu

  2. Go to "Appearance" or "Themes"

  3. Select a light theme like "Yaru" or "Adwaita"

  4. Alternatively, install light themes from Ubuntu Software if needed

Reasons:
  • Low length (0.5):
  • No code block (0.5):
  • Low reputation (0.5):
Posted by: Fiad

79689004

Date: 2025-07-03 14:31:51
Score: 2
Natty:
Report link

What worked for me was this:

  1. I downloaded Glassfish 7.0.24 and discovered it ran my project without StackOverflow issues ( It uses Eclipselink 4.0.5) .

  2. I copied all the org.eclipse.persistence.*.jar files from the glassfish/modules folder of glassfish 7 and pasted them in the glassfish/modules folder of Payara 6 .

  3. Stopped the payara domain.

  4. Deleted the osgi-cache and generated folder in the payara domain e.g domain1 .

  5. Then restarted the Payara domain and redeployed the project.

Reasons:
  • Blacklisted phrase (1): StackOverflow
  • Whitelisted phrase (-1): worked for me
  • No code block (0.5):
  • Starts with a question (0.5): What
  • Low reputation (1):
Posted by: norbert

79688995

Date: 2025-07-03 14:24:48
Score: 3.5
Natty:
Report link

but your question and your answer save my time dude...

Reasons:
  • Low length (1.5):
  • No code block (0.5):
  • Single line (0.5):
  • Low reputation (1):
Posted by: Ruvi_J _Gilalo

79688980

Date: 2025-07-03 14:11:45
Score: 0.5
Natty:
Report link

In your package.json, you can easily add this to the scripts section:

"scripts": {
    "dev": "vite"
}

This will start the development server without opening a browser automatically, you can type npm run dev (alternatively, you can simply run npx vite in your terminal without any flags. After that).

Reasons:
  • Low length (0.5):
  • Has code block (-0.5):
  • Low reputation (0.5):
Posted by: Ebraheem Al-hetari

79688978

Date: 2025-07-03 14:09:45
Score: 3
Natty:
Report link

SELECT A.Id, A.Name, B.Id AS BId, B.Name AS BName

FROM A

JOIN B ON B.AId = A.Id

WHERE NOT EXISTS (

SELECT 1

FROM C

WHERE C.ObjectId IN (A.Id, B.Id)

)

Reasons:
  • Low length (1):
  • No code block (0.5):
  • Unregistered user (0.5):
  • Low reputation (1):
Posted by: Neon

79688972

Date: 2025-07-03 14:04:43
Score: 1.5
Natty:
Report link

The error ValueError: Eigenvalues did not converge in NumPy typically comes from underlying LAPACK or BLAS routines (used via OpenBLAS in your case) when they fail to compute eigenvalues usually due to numerical instability or poorly conditioned input data.

Reasons:
  • Whitelisted phrase (-1): in your case
  • Low length (0.5):
  • No code block (0.5):
  • Single line (0.5):
  • Low reputation (1):
Posted by: Martins Olamide

79688971

Date: 2025-07-03 14:04:43
Score: 1.5
Natty:
Report link

If you don't want to set the Java path in the project itself, you can use the Maven Toolchain Plugin to run jobs with separate JDKs

Reasons:
  • Whitelisted phrase (-1.5): you can use
  • Low length (1):
  • No code block (0.5):
  • Single line (0.5):
  • Low reputation (1):
Posted by: Sibaprasad Ray

79688968

Date: 2025-07-03 14:02:43
Score: 1.5
Natty:
Report link

You do not import R, that is done by the system. This error is usually caused by a spelling mistake in the manifest file. As a start in the android name tag use the full package instead of just .MainActivity.

eg andriod:name = "com.app.AppName.MainActivity"

Reasons:
  • Low length (0.5):
  • No code block (0.5):
  • Low reputation (0.5):
Posted by: MunterMan

79688956

Date: 2025-07-03 13:54:40
Score: 3
Natty:
Report link

Here is the correct link :

enter image description here"<script src="https://cdnjs.cloudflare.com/ajax/libs/socket.io/4.8.1/socket.io.js" integrity="sha512-8BHxHDLsOHx+flIrQ0DrZcea7MkHqRU5GbTHmbdzMRnAaoCIkZ97PqZcXJkKZckMMhqfoeaJE+DNUVuyoQsO3Q==" crossorigin="anonymous" referrerpolicy="no-referrer"></script>"

Reasons:
  • Blacklisted phrase (1): enter image description here
  • Low length (0.5):
  • No code block (0.5):
  • Low reputation (1):
Posted by: LeoDas

79688954

Date: 2025-07-03 13:53:40
Score: 1.5
Natty:
Report link

A postscript to the responses above...
Neo4j introduced support for dynamic labels in Cypher with the release of version 5.26 in December 2024. This enhancement allows for the use of dynamic expressions to assign labels, relationship types, and properties, enabling more flexible and secure query construction.

Reasons:
  • No code block (0.5):
  • Low reputation (1):
Posted by: Matthew Wood

79688946

Date: 2025-07-03 13:47:38
Score: 3
Natty:
Report link

Status ‘completed’ apparently does not mean that the storage is already complete. Just reload the page more often, clear the cache, wait and see. 🤷‍♂️

Reasons:
  • Low length (1):
  • No code block (0.5):
  • Self-answer (0.5):
  • Low reputation (1):
Posted by: HendrikD2005

79688943

Date: 2025-07-03 13:44:37
Score: 4.5
Natty:
Report link

Looks like you're getting that annoying “Deadline expired before operation could complete” error in BigQuery.

That usually means one of two things - either BigQuery’s having a moment, or something’s up on your end.

First thing to do: check the Google Cloud Status Dashboard. If there’s a blip in your region, it’ll show up there.

Next, go to your Cloud Console → IAM & Admin → Quotas.

Look up things like “Create dataset requests” or “API requests per 100 seconds.” If you’re over the limit, that could be your problem.

Also, double-check your permissions. You’ll need bigquery.datasets.create on your account or service account.

Still no luck? Try using the bq command-line tool or even the REST API. They’re way better at showing detailed errors than the UI.

And if it’s still not working, try switching to a different region. Sometimes that helps if the current one’s overloaded.

Need a quick API command to test it? Just let me know - happy to share!

Reasons:
  • Blacklisted phrase (1): no luck
  • Blacklisted phrase (2): still not working
  • Long answer (-0.5):
  • No code block (0.5):
  • Contains question mark (0.5):
  • Low reputation (1):
Posted by: Alisha Bukhari

79688932

Date: 2025-07-03 13:38:35
Score: 2
Natty:
Report link

Caused by: org.openqa.selenium.WebDriverException at AppiumByTest.java

Caused by: java.net.ConnectException at SocketChannelImpl.java

Привіт! Ніяк не можу запустити моб аввтоматизацію..Такі помилки(

Reasons:
  • Low length (0.5):
  • No code block (0.5):
  • Low reputation (1):
Posted by: Байдацька Віталія

79688931

Date: 2025-07-03 13:38:35
Score: 2
Natty:
Report link

The open source Country Flag Fixer extension for Chrome and Edge fixes this in the browser.

Replaces mysterious country codes automatically with the corresponding flag. The solution for Chromium users on Windows!

Comparision of some country codes made of Regional indicator symbols rendered without and with the extension

It's based on the Country Flag Emoji Polyfill

Reasons:
  • Probably link only (1):
  • Low length (0.5):
  • No code block (0.5):
Posted by: cachius

79688927

Date: 2025-07-03 13:37:34
Score: 3
Natty:
Report link

I got the answer here https://discuss.pytorch.org/t/multi-head-self-attention-in-transformer-is-permutation-invariant-or-equivariant-how-to-see-it-in-practice/221249/2

the correct evaluation is

torch.allclose(y0[1], y1[0], atol=1e-6)

wich evaluate as True

Reasons:
  • Probably link only (1):
  • Low length (1):
  • Has code block (-0.5):
  • Self-answer (0.5):
  • Low reputation (1):
Posted by: fenaux

79688917

Date: 2025-07-03 13:31:33
Score: 2
Natty:
Report link

issue: tar: ./es8: file changed as we read it

solution;
apt update && apt install -y build-essential gcc make

tar version downgrade to 1.30

July 3 2025

Reasons:
  • Low length (1):
  • No code block (0.5):
  • Low reputation (0.5):
Posted by: sartuc

79688916

Date: 2025-07-03 13:30:32
Score: 0.5
Natty:
Report link

This is a browser layout issue.
You can fix it by using `requestAnimationFrame`

   function setSize(){
        const s = document.getElementById("myselect");
        requestAnimationFrame(() => {
            s.size = s.options.length;
        });
    }
Reasons:
  • Low length (0.5):
  • Has code block (-0.5):
  • Low reputation (0.5):
Posted by: Chinonso Ekpete

79688910

Date: 2025-07-03 13:22:31
Score: 2.5
Natty:
Report link

Just an addition to Mr. Patel and Hossein asnwers - do not define variables static with Value annotation. If you do, always default value is going to be loaded, in provided example it would be 12 or 14, not 10 and 20.

Reasons:
  • Low length (0.5):
  • No code block (0.5):
  • Single line (0.5):
  • Low reputation (1):
Posted by: Jakub Smolnicky

79688901

Date: 2025-07-03 13:15:29
Score: 3.5
Natty:
Report link

This works for me:

function streamLog()
{
  IFS=
  while read -r IN
  do
    echo "$IN" >> zlib.log
  done
}

/bin/tar --no-same-owner -zxvf 1.tar.gz -C build | streamLog

You say you see no output sent to your zlib.log file. The original code read from standard input correctly but only for one line. tar -vf will likely produce multiple lines of output as a tar file will probably have multiple files within it.

If files are failing to extract, do you have the permission to save that file into the filesystem at the fullpath name of the file, watching out for paths that start with '/'? To test permissions, can you run using sudo?

What should I do to correctly get the output of a command streamed to a function?
The output of tar is put onto standard output which is piped into the function which sits in a while loop, reading from standard input until that stream is closed (in our case, the standard input stream will be closed when the -vf information from tar is complete).

Every line of standard input ends up in the IN variable that is then echoed and appended to zlib.log.

IFS is set to nothing so that read does not split the input (output from tar) into words.
read -r is used so that read does not interpret any backslashes as escape characters.

Reasons:
  • Blacklisted phrase (2): What should I do
  • Whitelisted phrase (-1): works for me
  • RegEx Blacklisted phrase (2.5): do you have the
  • Long answer (-1):
  • Has code block (-0.5):
  • Contains question mark (0.5):
  • Low reputation (1):
Posted by: thequicklearningcompany.com

79688878

Date: 2025-07-03 12:52:23
Score: 0.5
Natty:
Report link

To apply aggregate functions in Make.com: max(map(YourArray; fieldName)) min(map(YourArray; fieldName)) average(map(YourArray; fieldName))

Example for price: max(map(aggregatedArray; price))

Use this in a Set Variable module after aggregating your array.

Reasons:
  • Low length (0.5):
  • Has code block (-0.5):
  • Low reputation (0.5):
Posted by: Sagar Vaghela

79688863

Date: 2025-07-03 12:38:19
Score: 2.5
Natty:
Report link

if you want to migrate from reactjs quickly to nextjs here is a fast and efficient platform http://codebypaki.online

Reasons:
  • Low length (1):
  • No code block (0.5):
  • Single line (0.5):
  • Low reputation (0.5):
Posted by: paki leonel

79688862

Date: 2025-07-03 12:38:19
Score: 1
Natty:
Report link

You can use the mPDF library for this purpose. To display Marathi text, simply download a Marathi font from Google Fonts and integrate it into mPDF. You can then use the font directly, as demonstrated in this official mPDF font usage guide.

Reasons:
  • Whitelisted phrase (-1.5): You can use
  • Low length (0.5):
  • No code block (0.5):
  • Single line (0.5):
  • Low reputation (1):
Posted by: Rajan Prajapati

79688859

Date: 2025-07-03 12:37:18
Score: 1.5
Natty:
Report link

Old thread but certainly still valid. In my case i have an excel for Microsoft 365 workbook that takes values from several other sheets across two other workbooks and consolidates it. I had a problem where people would edit the consolidation workbook directly, causing a lot of time to recreate the formulas. I had to let people still filter and sort but not change the cell contents.

In my situation VBA was not an option due to an inability to change it to a macro enabled worksheet in my environment. The suggestions above on the "Allow Users to Edit Ranges" did not work at all.

Kind of a hack, but I created a new sheet and simply had it do a live copy of the master sheet (using =A2 as example). I then protected and hid the master sheet and left the copy unprotected. it won't prevent that sheet from being edited but it is very quick to correct.

Reasons:
  • Blacklisted phrase (1): did not work
  • Long answer (-0.5):
  • No code block (0.5):
  • Low reputation (0.5):
Posted by: Chasester

79688852

Date: 2025-07-03 12:30:17
Score: 1.5
Natty:
Report link

In DB for these values write NULL and in uk write NULLS NOT DISTINCT:

ALTER TABLE FOO ADD CONSTRAINT uk_foo 
    UNIQUE NULLS NOT DISTINCT (parent_id , super_parent_id);
Reasons:
  • Low length (1):
  • Has code block (-0.5):
  • Low reputation (1):
Posted by: Svitlana Kizilpinar

79688848

Date: 2025-07-03 12:28:16
Score: 0.5
Natty:
Report link

To stop Bitbucket Cloud from automatically assigning specific user groups to new private repositories, go to Workspace settings > User groups. Identify the user groups that are currently being automatically added to new repositories, click the group name, select Edit, and set Default repository access to None.

Note: The "Automatically assign new repository permission" setting is deprecated, and setting access to None effectively disables it, as per Atlassian’s documentation on legacy permissions deprecatio.

enter image description here

Reasons:
  • Long answer (-0.5):
  • No code block (0.5):
  • Low reputation (0.5):
Posted by: joaoamaro

79688835

Date: 2025-07-03 12:21:14
Score: 1.5
Natty:
Report link

At first it seems weird that we take a token from the session, put it in the page, and then compare it to the same session token. It feels like we’re just comparing a value to itself. But

Here is the main idea:

Reasons:
  • Long answer (-0.5):
  • No code block (0.5):
  • Contains question mark (0.5):
  • Low reputation (1):
Posted by: Fauzan Tahir

79688832

Date: 2025-07-03 12:20:14
Score: 1.5
Natty:
Report link

I got the exact same error, also randomly working for one table and erroring on the other, but I've managed to resolve it by converting every field in my dataframe to string:

final_output_df.astype(str)

It's an unsatisfactory answer, but it seems to do the trick.

Reasons:
  • Low length (0.5):
  • Has code block (-0.5):
  • Unregistered user (0.5):
  • Low reputation (1):
Posted by: Hein T

79688824

Date: 2025-07-03 12:16:13
Score: 1
Natty:
Report link
function first(){
  doSomething();
}

// Lots of code

function doSomething(){
  alert('Somehow, I know that' + doSomething + 'function called me...');
  alert('Boink, hit an error, but now you know what function called me');
}
Reasons:
  • Low length (0.5):
  • Has code block (-0.5):
  • Low reputation (1):
Posted by: Aman Soni

79688821

Date: 2025-07-03 12:14:12
Score: 1.5
Natty:
Report link

If you're unable to access AI services while running your agentic application through Docker, it usually means the app inside the Docker container can't connect to the internet or reach the required API. This could be due to missing network settings, blocked ports, or incorrect environment variables. In simple terms, think of Docker as a box—if that box isn’t set up to "talk" to the outside world, the app inside won’t be able to reach the AI services it needs. To fix it, you may need to check your Docker network settings, make sure your API keys or URLs are correctly set, and ensure the container has internet access.

Reasons:
  • Long answer (-0.5):
  • No code block (0.5):
  • Single line (0.5):
  • Low reputation (1):
Posted by: Yash Patel

79688796

Date: 2025-07-03 11:59:08
Score: 4
Natty: 6.5
Report link

[qw](https://en.wikipedia.org/)

[url]https://en.wikipedia.org/\[/url\]

<a href="https://en.wikipedia.org/">qw</a>

[url=https://en.wikipedia.org/]qw[/url]

[qw]([url]https://en.wikipedia.org/\[/url\])

https://en.wikipedia.org/

Reasons:
  • Probably link only (1):
  • Low length (1):
  • No code block (0.5):
  • Unregistered user (0.5):
  • Low reputation (1):
Posted by: Alan Cordero

79688795

Date: 2025-07-03 11:59:07
Score: 2
Natty:
Report link

I found this workaround, but it is kind of inflexible, since you need to add the dimensions you later want as rows into another separate Google sheet. So in case your dimensions in your original data change, you need to update this Google sheet as well :-/

Reasons:
  • Low length (0.5):
  • No code block (0.5):
  • Single line (0.5):
  • Low reputation (0.5):
Posted by: Schnodahipfe

79688790

Date: 2025-07-03 11:57:06
Score: 3
Natty:
Report link

mate! I got the same problem recently and I found a solution here!
The page is in Japonese, but don't worry, he shows the codes, and if anything Google translator helped me. Good luck and I hope it helps! Cheers

Reasons:
  • Blacklisted phrase (1): Cheers
  • Blacklisted phrase (1): I got the same problem
  • Whitelisted phrase (-1): hope it helps
  • Low length (0.5):
  • No code block (0.5):
  • Low reputation (1):
Posted by: Tauan Torres

79688785

Date: 2025-07-03 11:53:05
Score: 3
Natty:
Report link

I used shapes from the source slide master and pasted them onto a layout in the destination slide master, then applied that layout to my new slide—it kept the design perfectly.

Reasons:
  • Low length (1):
  • No code block (0.5):
  • Single line (0.5):
  • Low reputation (1):
Posted by: Max

79688776

Date: 2025-07-03 11:44:58
Score: 6
Natty:
Report link

How to fix this? I have the same problem. No icon displayed. Here is my code:

!include "MUI2.nsh"

OutFile "out\myapp.exe"
Icon "original\app.ico"
RequestExecutionLevel user
SilentInstall silent
SetCompressor LZMA

!define MUI_ICON "original\app.ico"
;!insertmacro MUI_UNPAGE_CONFIRM
;!insertmacro MUI_UNPAGE_INSTFILES
;!insertmacro MUI_LANGUAGE "English"

Section
  InitPluginsDir
  SetOutPath $PLUGINSDIR

  File /r original\*.*
  
  ExecWait '"$PLUGINSDIR\commrun.exe"  --pluginNames webserver'

  Delete "$PLUGINSDIR\*.*"
SectionEnd
Reasons:
  • Blacklisted phrase (1): I have the same problem
  • RegEx Blacklisted phrase (1.5): How to fix this?
  • Long answer (-0.5):
  • Has code block (-0.5):
  • Me too answer (2.5): I have the same problem
  • Contains question mark (0.5):
  • Starts with a question (0.5): How to fix this
  • Low reputation (1):
Posted by: l-O_O-l

79688770

Date: 2025-07-03 11:39:56
Score: 0.5
Natty:
Report link

DuckDB currently (version 1.3.1) does not have support for MERGE statements to perform upserts in ducklake. This is planned to be added in a future update according to their roadmap. What you can do right now is to perform a DELETE on all rows in the table that has the same ID as the to-be-inserted records and then INSERT the updated records to the table.

Reasons:
  • Has code block (-0.5):
  • Single line (0.5):
  • Low reputation (0.5):
Posted by: DerekKnowles

79688760

Date: 2025-07-03 11:32:54
Score: 1.5
Natty:
Report link

If you need full control over your architecture and are planning to build a highly customised or large-scale IoT solution, Azure IoT Hub is a better option. It’s ideal for developers who want deep integration with other Azure services and prefer to manage their own data pipelines, security, and dashboards. IoT Central, on the other hand, is more of a plug-and-play solution suited for quick setups or proofs of concept. It hides a lot of the complexity but offers less flexibility. So if scalability and customisation are priorities, IoT Hub is the way to go.

Reasons:
  • Long answer (-0.5):
  • No code block (0.5):
  • Single line (0.5):
  • Low reputation (1):
Posted by: andrew

79688753

Date: 2025-07-03 11:29:54
Score: 1
Natty:
Report link

There's no need to save the graphics as individual glyphs. Browsers treat SVG <text> elements like vector graphics, because that's all an SVG is - Scalable Vector Graphic.

So you can warp the text in Corel or Illustrator, then export the entire word or phrase as a single SVG file.

Now just open the SVG in a text editor like Notepad, and it will give you the <path> information for the entire graphic. Just copy/paste this "d" info into your HTML and the browser will now display the text "warped" -- it's just displaying GRAPHICS based on a set of instructions.

Reasons:
  • Long answer (-0.5):
  • No code block (0.5):
  • Low reputation (1):
Posted by: user29541309

79688750

Date: 2025-07-03 11:26:53
Score: 2.5
Natty:
Report link

In iOS 18, Apple has added a new property on AVCaptureDevice called displayVideoZoomFactorMultiplier which serves exactly this purpose! We can finally stop hardcoding these magic factors... or at least phase them out until we can make iOS 18+ as the minimum deployment target.

Reasons:
  • Low length (0.5):
  • No code block (0.5):
  • Single line (0.5):
  • Low reputation (1):
Posted by: galijot

79688732

Date: 2025-07-03 11:10:48
Score: 2.5
Natty:
Report link

https://www.muvi.com/blogs/manage-multiple-jdk-versions-in-jenkins/ follow this article. I had the same problem and I resolved following this.

Reasons:
  • Blacklisted phrase (1): this article
  • Whitelisted phrase (-2): I resolved
  • Whitelisted phrase (-1): I had the same
  • Probably link only (1):
  • Low length (1.5):
  • No code block (0.5):
  • Single line (0.5):
  • Low reputation (1):
Posted by: Sibaprasad Ray

79688728

Date: 2025-07-03 11:06:48
Score: 2
Natty:
Report link

Removing the following sections in

.metadata\.plugins\org.eclipse.jdt.ui\dialog_settings.xml

did the trick for me:

<section name="completion_proposal_size">
<section name="quick_assist_proposal_size">

Reasons:
  • Low length (0.5):
  • No code block (0.5):
  • Low reputation (1):
Posted by: faceoff

79688726

Date: 2025-07-03 11:06:42
Score: 7
Natty:
Report link

Unfortunately, this is not working in my case in the application.properties. ${PID} works, for instance but not for HOSTNAME.

Access of System Properties

Also according to Baeldung it should work like this: https://www.baeldung.com/spring-boot-properties-env-variables#bd-use-environment-variables-in-the-applicationproperties-file

Do you know why this is the case?

Reasons:
  • RegEx Blacklisted phrase (2.5): Do you know why
  • Probably link only (1):
  • Low length (0.5):
  • Has code block (-0.5):
  • Ends in question mark (2):
  • Looks like a comment (1):
  • Low reputation (0.5):
Posted by: Phipsll

79688721

Date: 2025-07-03 10:58:40
Score: 3.5
Natty:
Report link

You can get Vm-sizes, subscription core quotas and information about any Azure Market place image from the PowerShell module Get-AzVMSku on link => https://www.powershellgallery.com/packages/Get-AzVMSku/3.0.2

Reasons:
  • Low length (1):
  • No code block (0.5):
  • Unregistered user (0.5):
  • Single line (0.5):
  • Low reputation (1):
Posted by: Christoffer Madsen

79688713

Date: 2025-07-03 10:54:39
Score: 2.5
Natty:
Report link

I've fixed this problem by using this annotation parameter:

@Builder(setterPrefix="set")

You're welcome

Reasons:
  • Low length (1):
  • No code block (0.5):
  • Low reputation (1):
Posted by: Yoru Okami

79688704

Date: 2025-07-03 10:47:37
Score: 2.5
Natty:
Report link

No, you can’t remotely launch an iOS app using Apple’s MDM. MDM can install or remove apps, but it can’t force an app to open on the device due to iOS security rules. You can only prompt users with a push notification.

Reasons:
  • Low length (0.5):
  • No code block (0.5):
  • Single line (0.5):
  • Low reputation (1):
Posted by: adityaj

79688694

Date: 2025-07-03 10:39:34
Score: 1.5
Natty:
Report link

I was trying to debug Serilog middleware and for me it was stuck. Then I tried debugging Startup methods(UseSwagger to be exact) which adds middleware and when I stepped in them then debug breakpoint was working on Serilog's code too. So you have to debug step by step any code from library which isn't written by you

Reasons:
  • No code block (0.5):
  • Single line (0.5):
  • Low reputation (0.5):
Posted by: Aka

79688693

Date: 2025-07-03 10:39:34
Score: 1
Natty:
Report link

This is not directly related to VsCode based debugging but it might nudge you in the right direction.

I am using Webstorm to debug and I was facing the same issue there. Then I went to the debugger configuration of my project(Edit configuration page) and saw that the "Ensure breakpoints are detected when loading scripts" was enabled. After disabling it and restarting the debugger it fixed the issue.

Note: on first load of a debugger, it will always show the sources tab when you open the deb tool. After switching to a different tab, the steps I described above fixes the redirection to source tab on each page reload.

My suggestion is that you look for such a configuration in VsCode and check if there is similar setting that is enabled there. The configuration might not be a UI based thing rather might be a JSON file(as most things are in VsCode).

Reasons:
  • Long answer (-0.5):
  • No code block (0.5):
  • Low reputation (1):
Posted by: Abenezer Ayalneh

79688688

Date: 2025-07-03 10:37:33
Score: 0.5
Natty:
Report link

You've asked this at https://github.com/ag-grid/ag-charts/issues/4606 and I've responded there with an example of https://plnkr.co/edit/KUIMbVpydQabuKTa where manual padding is utilised.

Additionally, I have modified your example to used our unit-time axis and Date objects - see https://www.ag-grid.com/charts/javascript/axes-time/ for more information about this.

As mentioned there, we have a feature request on our backlog for automatic padding.

You can track it on our pipeline with this reference:
AG-8163 - [Charts] Allow automatic series area padding if necessary

Thanks

David

Reasons:
  • Blacklisted phrase (0.5): Thanks
  • Has code block (-0.5):
  • Low reputation (0.5):
Posted by: David Glickman

79688684

Date: 2025-07-03 10:33:32
Score: 3.5
Natty:
Report link

You can find it via Monitor and improve tab > Policy and programs > App content

Reasons:
  • Low length (1.5):
  • No code block (0.5):
  • Single line (0.5):
  • Low reputation (1):
Posted by: paul lorenz buscano

79688677

Date: 2025-07-03 10:25:30
Score: 2.5
Natty:
Report link

I just had the same error code, I had mixed up the client certificate and key. Once correctly ordered it worked fine

Reasons:
  • Whitelisted phrase (-1): it worked
  • Low length (1):
  • No code block (0.5):
  • Unregistered user (0.5):
  • Single line (0.5):
  • Low reputation (1):
Posted by: max

79688675

Date: 2025-07-03 10:22:29
Score: 1
Natty:
Report link

This is not directly related to VsCode based debugging but it might nudge you in the right direction.
I am using Webstorm to debug and I was facing the same issue there. Then I went to the debugger configuration of my project(Edit configuration page) and saw that the "Ensure breakpoints are detected when loading scripts" was enabled. After disabling it and restarting the debugger it fixed the issue.

Note: on first load of a debugger, it will always show the sources tab when you open the deb tool. After switching to a different tab, the steps I described above fixes the redirection to source tab on each page reload.

My suggestion is that you look for such a configuration in VsCode and check if there is similar setting that is enabled there. The configuration might not be a UI based thing rather might be a JSON file(as most things are in VsCode).

Reasons:
  • Long answer (-0.5):
  • No code block (0.5):
  • Low reputation (1):
Posted by: Abenezer Ayalneh

79688666

Date: 2025-07-03 10:18:28
Score: 2.5
Natty:
Report link

I had a similar problem. I passed a "hex"-argument from python to a c-binary, i.e. 568AD6E4338BD93479C210105CD4198B, like:
subprocess.getoutput("binary.exe 568AD6E4338BD93479C210105CD4198B")

In my binary I wanted the passed argument to be stored in a uint8_t hexarray[16], but instead of char value '5' (raw hex 0x35), I needed actual raw hex value 0x5... and 32 chars make up a 16 sized uint8_t array, thus bit shifting etc..

for (i=0;i<16;i++) {
    if (argv[1][i*2]>0x40)
        hexarray[i] = ((argv[1][i*2] - 0x37) << 4);
    else 
        hexarray[i] = ((argv[1][i*2] - 0x30) << 4);
    if (argv[1][i*2+1]>0x40)
        hexarray[i] = hexarray[i] + (argv[1][i*2+1] - 0x37);
    else 
        hexarray[i] = hexarray[i] + (argv[1][i*2+1] - 0x30);

This would only work for hexstrings with upper chars.

But there must be a better way of doing this?

Reasons:
  • Blacklisted phrase (0.5): I need
  • Long answer (-0.5):
  • Has code block (-0.5):
  • Ends in question mark (2):
  • Low reputation (1):
Posted by: nudeln

79688663

Date: 2025-07-03 10:15:26
Score: 6
Natty: 5.5
Report link

My website's score is 90; I want to make it 100. How can I do that?

Here is my website: actiontimeusa

Reasons:
  • Blacklisted phrase (0.5): How can I
  • Blacklisted phrase (1): can I do
  • RegEx Blacklisted phrase (1): I want
  • Low length (1.5):
  • No code block (0.5):
  • Contains question mark (0.5):
  • Low reputation (1):
Posted by: Ower Shelf

79688649

Date: 2025-07-03 10:07:23
Score: 4
Natty: 4
Report link
  1. Navigate to the terminal window within VS Code.

  2. Right-click on the word 'Terminal' at the top of the window to access the drop-down menu.

  3. Choose 'Panel Position' option, followed by the position of choice ie Top/Right/Left/Bottom.

Reasons:
  • Probably link only (1):
  • Low length (1.5):
  • No code block (0.5):
  • Low reputation (1):
Posted by: Ankur

79688648

Date: 2025-07-03 10:07:23
Score: 3
Natty:
Report link

I'm used to do this:
Query:
SELECT a.ha_code FROM a WHERE ... a.ha_code = any (?)
Parameter as expression:
="{"+join(Parameters!ReportParameter2.Value, ",")+"}"

Reasons:
  • Low length (1):
  • No code block (0.5):
  • Contains question mark (0.5):
  • Low reputation (1):
Posted by: Nadir Dadi

79688644

Date: 2025-07-03 10:04:22
Score: 5.5
Natty: 5.5
Report link

14 Years later, grafts are deprecated. I there a way to do this without grafts ?

Reasons:
  • Low length (1.5):
  • No code block (0.5):
  • Ends in question mark (2):
  • Single line (0.5):
  • Low reputation (1):
Posted by: Jan Zimmermann

79688627

Date: 2025-07-03 09:47:18
Score: 2
Natty:
Report link

it is possible but you need to use libde265 ( not the default one in ffmpeg)

have a look at the git below

https://github.com/MohitBurkule/pyde265

Reasons:
  • Low length (1):
  • No code block (0.5):
  • Low reputation (0.5):
Posted by: Mohit Burkule

79688621

Date: 2025-07-03 09:43:17
Score: 2
Natty:
Report link

You can efficiently compute the union of many integer vectors using a hash set (unordered_set in C++ or set in Python) to avoid duplicates while inserting all elements. For large sorted vectors, a priority queue (heap) or a k-way merge algorithm (similar to merge in merge sort) may be faster, especially if duplicates are rare.

Reasons:
  • No code block (0.5):
  • Single line (0.5):
  • Low reputation (1):
Posted by: Bangalore Web Guru

79688620

Date: 2025-07-03 09:42:17
Score: 2.5
Natty:
Report link

There are several reliable approaches to solve this:

  1. Database-Level unique constraint

  2. Pessimistic locking

  3. Optimistic locking with retry logic

  4. Message queues

Reasons:
  • Low length (1):
  • No code block (0.5):
  • Low reputation (1):
Posted by: Martin Owaga

79688617

Date: 2025-07-03 09:40:16
Score: 3
Natty:
Report link

Using the tips recommended by VS code, adding the statement "package Java" before the "import java.util.*" statement seems to have solved the problem

Reasons:
  • Low length (1):
  • No code block (0.5):
  • Single line (0.5):
  • Low reputation (1):
Posted by: Jeevan Parthasarathy

79688608

Date: 2025-07-03 09:35:15
Score: 2
Natty:
Report link

To join (concatenate) two columns in SQL:

In MySQL / PostgreSQL / most SQLs (using || or CONCAT) :

SELECT first_name || ' ' || last_name AS full_name FROM your_table_name;

However, in MySQL specifically, you use CONCAT function:

SELECT CONCAT(first_name, ' ', last_name) AS full_name FROM your_table_name;

Reasons:
  • Low length (0.5):
  • No code block (0.5):
  • Low reputation (1):
Posted by: Yashwanth yash

79688585

Date: 2025-07-03 09:16:11
Score: 0.5
Natty:
Report link

Method - Extract the substring starting from the index of "Alert Id", By using the substring function.

enter image description here

  1. Taken your given out put in the compose action, and being converted to string with function string(outputs('Compose_Output'))

  2. Again, compose action using substring to start from the index of "Alert Id" with function - substring(outputs('Convert_to_String'), outputs('Compose'), 147)

  3. Created - Set Variable "Alert Id" as required output : Alert Id*: ```/subscriptions/32476574-bf58-4703-96d9-4378327845/providers/Microsoft.AlertsManagement/alerts/629bd98a-f9b5-c79a-75b1-b807b48d0002```

  4. Schema::

{
    "definition": {
        "$schema": "https://schema.management.azure.com/providers/Microsoft.Logic/schemas/2016-06-01/workflowdefinition.json#",
        "contentVersion": "1.0.0.0",
        "triggers": {
            "When_a_HTTP_request_is_received": {
                "type": "Request",
                "kind": "Http"
            }
        },
        "actions": {
            "Compose_OutPut": {
                "runAfter": {
                    "Alert_Id": [
                        "Succeeded"
                    ]
                },
                "type": "Compose",
                "inputs": ":azure: :alert: \n*Non-Prod Alert: RuleCpupercetange*\n*Severity*: Sev4\n*Timestamp*: 2024-10-10T17:55:18.5144302Z \n*Alert Id*: ```/subscriptions/32476574-bf58-4703-96d9-4378327845/providers/Microsoft.AlertsManagement/alerts/629bd98a-f9b5-c79a-75b1-b807b48d0002```\nClick here to find the code \n*****************************************************\n*Affected resource: W008ssaltmost* \n*Resource modified by:[email protected]*\n*****************************************************\n*Select a response:*, with interactive elements"
            },
            "Convert_to_String": {
                "runAfter": {
                    "Compose_OutPut": [
                        "Succeeded"
                    ]
                },
                "type": "Compose",
                "inputs": "@string(outputs('Compose_OutPut'))"
            },
            "Alert_Id": {
                "runAfter": {},
                "type": "InitializeVariable",
                "inputs": {
                    "variables": [
                        {
                            "name": "Alert Id",
                            "type": "string"
                        }
                    ]
                }
            },
            "Set_Variable_Alert_Id": {
                "runAfter": {
                    "Compose_to_set_variable": [
                        "Succeeded"
                    ]
                },
                "type": "SetVariable",
                "inputs": {
                    "name": "Alert Id",
                    "value": "@outputs('Compose_to_set_variable')"
                }
            },
            "Compose": {
                "runAfter": {
                    "Convert_to_String": [
                        "Succeeded"
                    ]
                },
                "type": "Compose",
                "inputs": "@indexOf(outputs('Convert_to_String'), 'Alert Id')\r\n"
            },
            "Compose_to_set_variable": {
                "runAfter": {
                    "Compose": [
                        "Succeeded"
                    ]
                },
                "type": "Compose",
                "inputs": "@substring(outputs('Convert_to_String'), outputs('Compose'), 147)\r\n"
            }
        },
        "outputs": {},
        "parameters": {
            "$connections": {
                "type": "Object",
                "defaultValue": {}
            }
        }
    },
    "parameters": {
        "$connections": {
            "type": "Object",
            "value": {}
        }
    }
}
Reasons:
  • Blacklisted phrase (1): enter image description here
  • Long answer (-1):
  • Has code block (-0.5):
  • Low reputation (1):
Posted by: Vijayamathankumar

79688582

Date: 2025-07-03 09:15:10
Score: 0.5
Natty:
Report link

Solved. The problem was the incomplete naming of the the segments. With more imagination for the solution on my side, it would have been quicker and easier: So, I wrote the same function in an external C file and compiled with the SRC option, that makes assembler code from C - et voilà.

Here is the complete ASM file for a function that rotates an uint32, n (uint8) times, that can be called from RC51 with the C-declaration shown above:

$include (reg51.inc)

NAME    bitops

?PR?_rotr?bitops    SEGMENT     CODE 
?DT?_rotr?bitops    SEGMENT     DATA    OVERLAYABLE

PUBLIC ?_rotr?BYTE  
PUBLIC  _rotr

RSEG        ?DT?_rotr?bitops
    ?_rotr?BYTE:
    n:      DS 1


RSEG ?PR?_rotr?bitops
    USING 0

_rotr PROC

    PUSH    ACC

    mov R3, n

rotr_loop:

    CLR C

    MOV A,R4
    RRC A   
    MOV R4,A    

    MOV A,R5    
    RRC A
    MOV R5,A    

    MOV A,R6    
    RRC A
    MOV R6,A    

    MOV A,R7
    RRC A
    MOV R7,A    

    MOV A,R4
    MOV ACC.7,C
    MOV R4,A    

    djnz R3, rotr_loop


    POP ACC

    RET

ENDP

END


Thanks to all, who supported.

Reasons:
  • Blacklisted phrase (0.5): Thanks
  • Long answer (-1):
  • Has code block (-0.5):
  • Self-answer (0.5):
  • Low reputation (1):
Posted by: Walt

79688573

Date: 2025-07-03 09:07:08
Score: 3.5
Natty:
Report link

What is your use-case? Are you using Redis for Web Application caching?

Better idea would be to put Redis in path of the API commit and Sync the data to Mongo or Postgres in backend.

Reasons:
  • Blacklisted phrase (1): What is your
  • Low length (0.5):
  • No code block (0.5):
  • Contains question mark (0.5):
  • Starts with a question (0.5): What is you
  • Low reputation (0.5):
Posted by: Abhishek

79688570

Date: 2025-07-03 09:03:07
Score: 2.5
Natty:
Report link

I don't quite understand why Redis CDC is used, but I saw that there are relevant implementations on GitHub, which might be useful for reference. The link is:

https://github.com/uuhnaut69/debezium-standalone-server

Reasons:
  • Low length (1):
  • No code block (0.5):
  • Low reputation (1):
Posted by: zme

79688566

Date: 2025-07-03 08:59:06
Score: 2
Natty:
Report link

Dear Ayesha Kiran,

The Hyperparameter tuning need to be put outside the loop, so that each training iteration can be fairly evaluated.

you can see the hyperparameter setting in the training beginning stage on the ref link.

ref: https://scikit-learn.org/stable/modules/cross_validation.html#

Reasons:
  • Low length (0.5):
  • No code block (0.5):
  • Low reputation (1):
Posted by: Jung-Yi Tsai

79688550

Date: 2025-07-03 08:51:04
Score: 1.5
Natty:
Report link

Late to the party but for other having the same problem. For me the following worked:

I changed my code from this:

builder.Services.AddAuthentication(JwtBearerDefaults.AuthenticationScheme)
             .AddMicrosoftIdentityWebApi(builder.Configuration.GetSection("AzureAd"));

to this:

// Add services to the container.
builder.Services.AddAuthentication(JwtBearerDefaults.AuthenticationScheme)
    .AddMicrosoftIdentityWebApi(options =>
    {
        builder.Configuration.Bind("AzureAd", options);
        
        // Configure events for SignalR
        options.Events = new JwtBearerEvents
        {
            OnMessageReceived = context =>
            {
                // Check if the request is for SignalR and has a query string token
                if (context.Request.Path.StartsWithSegments("/syncProgressHub") &&
                    context.Request.Query.ContainsKey("access_token"))
                {
                    // Read the access token from the query string
                    context.Token = context.Request.Query["access_token"];
                }
                return Task.CompletedTask;
            }
        };
    }, 
    options => builder.Configuration.Bind("AzureAd", options));
Reasons:
  • Long answer (-1):
  • Has code block (-0.5):
  • Me too answer (2.5): having the same problem
  • Low reputation (0.5):
Posted by: bslein

79688549

Date: 2025-07-03 08:50:04
Score: 2
Natty:
Report link

Yes it is posible to remove or change the document headers and/or footers in a PDF document in Adobe Acrobart for those who have a subscription fir the application software but if non of the editing features do not work for you, you can try to lease a profesional document editor and they can easily remove/ edit the header and/or footer

Reasons:
  • No code block (0.5):
  • Single line (0.5):
  • Low reputation (1):
Posted by: Yaseen Ebrahim

79688545

Date: 2025-07-03 08:45:03
Score: 1
Natty:
Report link

Update:

convert -coalesce -fuzz 10% -transparent "#fb665a" "/home/user/0 1.gif" "/home/user/0 2.gif"
convert -background white -extent 0x0 "/home/user/0 2.gif" "/home/user/0 3.gif"

I've now discovered a way to color the background, but the final IMAGE_2 is still flawed.

There is a problem in IMAGE_1 with the color that should previously be replaced by transparency.

I don't know how the area to be replaced can be expanded so that the similar adjacent color is also captured.

Reasons:
  • Has code block (-0.5):
  • Self-answer (0.5):
  • Low reputation (1):
Posted by: user28113543

79688534

Date: 2025-07-03 08:39:01
Score: 1.5
Natty:
Report link

This is most likely because slurmd and other Slurm programs are looking up _slurmctld*.*_tcp without appending a domain name.

The default behavior of the Linux resolver is to treat lookups contains one "." as a FQDN and therefore no domain search is done and the query will fail.

To get around the problem add "options ndots:2" to your /etc/resolv.conf file or even better if you build your own copy of Slurm go to the src/common folder and locate the file slurm_resolv.c where you add res.ndots=2; after the call to res_ninit() and before the call to res_nsearch().

Compile and you will have a perfectly working configless configuration.

You may want to vote this SchedMd BUG report to get the solution into the official distribution.

https://support.schedmd.com/show_bug.cgi?id=11878

Reasons:
  • Long answer (-0.5):
  • No code block (0.5):
  • Unregistered user (0.5):
  • Low reputation (1):
Posted by: John

79688531

Date: 2025-07-03 08:34:00
Score: 2.5
Natty:
Report link

Extract page text rects using tool like fitz, check if the same text is up on the top and bottom of all pages using its rect which tells its position on the page, if repeats over many pages, u got ur header and footer, can employ regex as well for more accurate extraction.

Reasons:
  • Low length (0.5):
  • No code block (0.5):
  • Single line (0.5):
  • Low reputation (1):
Posted by: Asyrin

79688522

Date: 2025-07-03 08:26:58
Score: 3.5
Natty:
Report link

I had the same issue with Tortoise and resolved it using Ignore Ancestry

Reasons:
  • Low length (1.5):
  • No code block (0.5):
  • Single line (0.5):
  • Low reputation (1):
Posted by: Mehdi Arfa

79688507

Date: 2025-07-03 08:20:56
Score: 0.5
Natty:
Report link
android:focusable="false" in layout for an EditText field worked for me when the datepicker was attached to an onclicklistener on an EditText Field...
Reasons:
  • Whitelisted phrase (-1): worked for me
  • Low length (1):
  • Has code block (-0.5):
  • Single line (0.5):
  • Low reputation (0.5):
Posted by: uberphoebe

79688502

Date: 2025-07-03 08:17:56
Score: 1
Natty:
Report link

Hope helpful you!

Step 1 - close the project

Step 2 - close Android Studio IDE

Step 3 - delete the .idea directory

Step 4 - delete all .iml files

Step 5 - open Android Studio IDE and import the project

Reasons:
  • Low length (0.5):
  • Has code block (-0.5):
  • Low reputation (1):
Posted by: Vincent Lâm

79688495

Date: 2025-07-03 08:15:55
Score: 0.5
Natty:
Report link
post_install do |installer|
    installer.pods_project.targets.each do |target|
        target.build_configurations.each do |config|
            config.build_settings['ONLY_ACTIVE_ARCH'] = 'NO'endendend

I got above answer from below solution

Finally I discovered the issue.

In Pods project or in every pod build config you can see that Cocoapods is forcing the "debug" Build active architecture only property to YES.

'Build active architecture only = YES'
Changing it manually to NO in every pod, did the trick, but that is not a good way to solve it.

You must go to your podfile and add this in the bottom part:

post_install do |installer|
    installer.pods_project.targets.each do |target|
        target.build_configurations.each do |config|
            config.build_settings['ONLY_ACTIVE_ARCH'] = 'NO'
        end
    end
end
That will force NO to every pod in Build active architecture only and the project will start compiling in your M1 mac.
Reasons:
  • Long answer (-0.5):
  • Has code block (-0.5):
  • Self-answer (0.5):
  • Low reputation (1):
Posted by: user30953894

79688487

Date: 2025-07-03 08:10:54
Score: 2
Natty:
Report link

Stuck with the same problem in a Visual Studio project with CMakePresets.json when I cook it using the example from MSDN: https://learn.microsoft.com/en-us/cpp/build/cmake-presets-vs

I set "CMAKE_BUILD_TYPE": "Release" in json, but Visual Studio still generates debug builds in this preset (there is no way to additionally set build types inside a preset in GUI):

enter image description here

The reason is still the same: CMAKE_CONFIGURATION_TYPES with several default values ​​and "Debug" as the first option to be used.

So the solution might be to set only one corresponding CMAKE_CONFIGURATION_TYPES value inside CMakePresets.json:

      "cacheVariables": {
        "CMAKE_BUILD_TYPE": "Release",
        "CMAKE_CONFIGURATION_TYPES": "Release"
      }
Reasons:
  • Long answer (-0.5):
  • Has code block (-0.5):
  • Me too answer (2.5): Stuck with the same problem
  • Low reputation (0.5):
Posted by: 1ndahous3