79689330

Date: 2025-07-03 18:42:05
Score: 0.5
Natty:
Report link

Turns out that I run a scala-cli command some days ago to set the default repository to some internal url... something like:

scala-cli config --power repositories.default https://<internal_url>

For some reason that seems to mess with the resolver pattern, and also messed with the repository mirrors. I went to the actual config file at ~/Library/Application Support/ScalaCli/secrets/config.json and commented out the setting, that fixed it.

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

79689329

Date: 2025-07-03 18:39:04
Score: 4
Natty:
Report link

Not sure if it's too late, I have similar issue. It's because the installed aws executable is not in executables path, you can do either of:

Option#1: create sym link

sudo ln -s /Users/fr/.local/lib/aws/bin/aws /usr/local/bin/aws

Option#2: Add path to zshrc file

echo 'export PATH=/Users/fr/.local/lib/aws/bin/:$PATH' >> ~/.zshrc

source ~/.zshrc

Reasons:
  • Blacklisted phrase (1): I have similar
  • No code block (0.5):
  • Me too answer (2.5): I have similar issue
Posted by: KiranM

79689317

Date: 2025-07-03 18:25:00
Score: 3
Natty:
Report link

I ended up putting in a datetime-add function, passing the date and the duration 'P0Y0M0DT01H0M' to get the desired result.

Reasons:
  • Low length (1):
  • No code block (0.5):
  • Self-answer (0.5):
  • Single line (0.5):
  • Low reputation (0.5):
Posted by: Scott Cantrell

79689314

Date: 2025-07-03 18:24:00
Score: 1
Natty:
Report link

Source Code Protector is a powerful PHP and JavaScript-based script protection system designed to secure your PHP, HTML, CSS, and JavaScript from theft, inspection, and reverse engineering. Whether you're selling premium templates or hosting sensitive frontend logic, this advanced solution ensures your website’s source code remains hidden from prying eyes.

Built with cutting-edge encryption algorithms, real-time anti-debugging detection, and developer tool blocking mechanisms, JavaScript Protector Pro dynamically renders encrypted content using PHP, making it nearly impossible for users to access via View Source, browser DevTools (F12, Ctrl+U, etc.), or network analysis.

Perfect for developers, digital product sellers, SaaS providers, WordPress developers, and anyone looking to add serious frontend security, this tool offers plug-and-play integration, mobile responsiveness, and is fully compatible with all modern browsers.

https://www.codester.com/items/56328/source-code-protector

Why Choose This Script?

Choosing Source Code Protector gives you a strategic edge in protecting your intellectual property, web assets, and premium frontend logic. Here’s why this script stands out:

Maximum Frontend Security

Your source code (PHP, HTML, JS, and CSS) is encrypted and dynamically loaded, preventing access through View Source, browser DevTools, or network sniffing.

Anti-Inspect & Anti-Debugging

Automatically detects and blocks inspection attempts (F12, Ctrl+Shift+I, Ctrl+U) and disables common debugging tools using real-time detection techniques.

PHP-Based Rendering Engine

Content is loaded via PHP to prevent direct access to original source files, adding an extra layer of backend-driven protection.

Advanced Obfuscation Techniques

Utilizes Base64, XOR, and optional AES encryption methods combined with JS obfuscation to scramble and protect your logic and layout.

Easy Integration – Plug and Play

No complicated setup. Just plug the script into your existing project and instantly secure your assets with minimal configuration.

Compatible Across All Platforms

Fully responsive and tested on all major browsers — Chrome, Firefox, Edge, Safari — and compatible with any HTML/CSS/JS or WordPress-based websites.

Ideal For:

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

79689309

Date: 2025-07-03 18:20:59
Score: 3
Natty:
Report link

This was finally resolved by installing an older version of vscode that supports such remote connection
And disabling auto updates

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

79689302

Date: 2025-07-03 18:15:57
Score: 3
Natty:
Report link
header 1 header 2
cell 1 cell 2
cell 3 cell 4
Reasons:
  • Low length (1.5):
  • No code block (0.5):
  • Low reputation (1):
Posted by: Izeta Telarevic

79689296

Date: 2025-07-03 18:08:55
Score: 2
Natty:
Report link

field 22 of /proc/1/stat has the start time of the container (in jiffies)

field 22 of /proc/self/stat has the current time (in jiffies)

so...

$(( ( $(cut -d' ' -f22 /proc/self/stat) - $(cut -d' ' -f22 /proc/1/stat) ) / 100 ))

gives you the container uptime in seconds.

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

79689286

Date: 2025-07-03 18:02:53
Score: 11
Natty: 6
Report link

did you solve ? I have same issue. Looking everywhere cant find a clue.AI always saying same shit. Delete it , clone it ,give it extra permission etc.

Reasons:
  • RegEx Blacklisted phrase (3): did you solve
  • RegEx Blacklisted phrase (1.5): solve ?
  • Low length (1):
  • No code block (0.5):
  • Me too answer (2.5): I have same issue
  • Contains question mark (0.5):
  • Single line (0.5):
  • Starts with a question (0.5): did you solve
  • Low reputation (1):
Posted by: Kerem Tasan

79689275

Date: 2025-07-03 17:51:50
Score: 2
Natty:
Report link

This is a hack, but had you considered preprocessing the html to inject the footer content before rendering to pdf?

This could then be repeated by css rules targeting print.

Print stylesheets are always a bit brittle, and it'll only work in the case that the page content is pretty simple but you might make it work for your specific case...

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

79689272

Date: 2025-07-03 17:47:49
Score: 0.5
Natty:
Report link

"I want to maintain a consistent column width when possible" & "Method to set minimum column width in flextable"

You can use strwidth in this case for Arial point 11, and measure the maximum text width, if it's below your desiredWidth, set it to desiredWidth using pmax() + width

library(flextable)
library(magrittr)

### Ex. Tbls
vendor <- data.frame("Vendor" = rep("A longer Company Name", 4),   "Sales" = c(20,30,12,32))

autosize_min_width <- function(
    dd,    # dataframe
    desWid # desired Widths
)
{
  flextable(dd)|>
    width(width = pmax(sapply(seq_along(names(dd)), \(i) max(strwidth(dd[,i], font = 11, units = 'in'))), desWid))
}

desiredWidths <- c(.5,.5)
autosize_min_width(vendor, desiredWidths)

giving what you want:

out

Whereas your code

flextable(vendor) %>%
  autofit() %>% 
  width(j = which(dim(.)$widths < desiredWidths), desiredWidths[which(dim(.)$widths < desiredWidths)])

gives

out2

which I guess is not what you want?

Reasons:
  • Whitelisted phrase (-1.5): You can use
  • RegEx Blacklisted phrase (1): I want
  • Probably link only (1):
  • Long answer (-0.5):
  • Has code block (-0.5):
  • Ends in question mark (2):
  • High reputation (-1):
Posted by: Tim G

79689267

Date: 2025-07-03 17:41:48
Score: 1.5
Natty:
Report link
it doesn't work like that... Error:
app.set('views', path.join(__dirname, '../views'));
                 ^

ReferenceError: path is not defined
Reasons:
  • Low length (1):
  • Has code block (-0.5):
  • Low reputation (1):
Posted by: Олег Гречишников

79689255

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

You can do this

const handleChange: UploadProps['onChange'] = async ({ fileList, file }) => {
if (file.uid !== fileList.at(-1)?.uid) return;

//your code
}
Reasons:
  • Low length (1):
  • Has code block (-0.5):
  • Low reputation (0.5):
Posted by: Zahar

79689243

Date: 2025-07-03 17:25:44
Score: 1
Natty:
Report link

The issue is with the docs. Bookings.ReadWrite.All is not the correct Application permission, although it is listed as higher privilege.

To solve this, use BookingsAppointment.ReadWrite.All.

Reasons:
  • Low length (0.5):
  • Has code block (-0.5):
  • Self-answer (0.5):
  • Low reputation (0.5):
Posted by: Steven Bitaxi

79689235

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

I think that what they want is a command that restarts the program and runs the main loop so something like this would work better:

local cmd = io.read()
if cmd == "exit" then
dofile("thisfilename.lua")
end

I have been making simelar it isn't perfect but works

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

79689221

Date: 2025-07-03 17:04:38
Score: 0.5
Natty:
Report link

Since you're new to Qt, I'd suggest starting with a simpler solution. A QComboBox could be populated by mainwindow constructor. A simple for loop using the QComboBox's addItem(QString) public function call would be sufficient. That will get the base functionality you need. From there, you can start messing around with ways to get this box displaying years to float on your form and then to interact with the QLineEdit widget. The logic will involve use of the textChanged(const QString) or textEdited(const QString) signals.

Reasons:
  • Long answer (-0.5):
  • Has code block (-0.5):
  • Single line (0.5):
  • Low reputation (1):
Posted by: Matthew Osborne

79689215

Date: 2025-07-03 16:58:36
Score: 2.5
Natty:
Report link

Yes, you're on the right track — MySQL can only use an index for both filtering and sorting when the "ORDER BY" columns match the index's leftmost prefix and order.

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

79689208

Date: 2025-07-03 16:53:34
Score: 0.5
Natty:
Report link

I have seen that when there are thousands of records in the table a search by converting to char(8) is much faster than keeping the field as date itself.

change the line

and Date between 2011/02/25 and 2011/02/27

to

and convert(char(8), Date, 112) between '20110225' and '20110227'
Reasons:
  • Low length (0.5):
  • Has code block (-0.5):
  • Low reputation (0.5):
Posted by: Polymath

79689205

Date: 2025-07-03 16:51:33
Score: 2.5
Natty:
Report link

Under the settings, instead of Editor, click on Plugins, and uncheck the Copilot plug in.

Reasons:
  • Low length (1.5):
  • No code block (0.5):
  • Single line (0.5):
Posted by: Blade

79689204

Date: 2025-07-03 16:51:33
Score: 1
Natty:
Report link

I have found the issue, I wasn't using properly the $states

This works.

"MessageGroupId": "{% 'msgGroup_' & $states.input.request.requestId %}",
"MessageDeduplicationId": "{% 'msgId_' & $states.input.request.requestId %}"
Reasons:
  • Low length (0.5):
  • Has code block (-0.5):
  • Self-answer (0.5):
  • Low reputation (0.5):
Posted by: David Marciel

79689198

Date: 2025-07-03 16:49:33
Score: 3
Natty:
Report link

If you are unable to find the solutions from the other answers, one of the reasons could be the 'Code Runner' extension by Jun Han. That was the case for me. Try uninstalling it.

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

79689187

Date: 2025-07-03 16:38:30
Score: 1
Natty:
Report link

The Feike´s answer it´s correct, I solved the problem change that property Border ",5" to ".5" on Printing tab.

Reasons:
  • Whitelisted phrase (-2): I solved
  • Low length (1):
  • No code block (0.5):
  • Single line (0.5):
  • Low reputation (1):
Posted by: Dany Hernandez

79689178

Date: 2025-07-03 16:33:28
Score: 2
Natty:
Report link

Dans mon cas, le plugin Android est déclaré dans les fichiers Gradle à la racine du projet, ce qui entraîne l’utilisation de javapoet 1.10.

Ajouter id(“dagger.hilt.android.plugin”) apply false dans mon bloc plugin a résolu le problème, car le script de build inclut désormais la bonne version de javapoet.

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

79689176

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

I ran into a similar issue recently when switching from a local file structure to using a directory managed by another service — my code worked perfectly in one context then suddenlly started failing to load files that definitely existed.

In your case, it might be worth checking:

1 **File permissions or locks** sometimes files get locked by the OS or an external process and silently fail to load

2 **Relative vs absolute paths** are you sure the curren t working directory is what you expect when the code runs? `System.out.println(new File(".").getAbsolutePath());` can help with that

3 **Encoding or filename mismatches** especially on Windows vs Linux, weird characters or hidden extensions (like `.txt.txt`) can trip you up

If you can share the exact error (stack trace or message) I might be able to dig a little deeper but my hunch is that it's either a path or permission issue

Been burned by both before 🙃

Reasons:
  • Whitelisted phrase (-1): In your case
  • Long answer (-0.5):
  • No code block (0.5):
  • Contains question mark (0.5):
  • Low reputation (1):
Posted by: ShamsCyber

79689175

Date: 2025-07-03 16:32:27
Score: 1.5
Natty:
Report link

Use signals, steam sends a HUP signal to the process when you press "STOP"

#!/bin/bash

handle_HUP()
{
  python3 savemanager.py --backup
  exit
}

trap 'handle_HUP' HUP

python3 savemanger.py --load
$1 "$2"
Reasons:
  • Low length (0.5):
  • Has code block (-0.5):
  • Self-answer (0.5):
  • Low reputation (1):
Posted by: Tima_ben

79689148

Date: 2025-07-03 16:07:21
Score: 1
Natty:
Report link

Include children in the AvatarProps

export interface AvatarProps extends ChakraAvatar.RootProps {
  name?: string
  src?: string
  srcSet?: string
  children: React.ReactNode; // <= Right here. It is not included
  loading?: ImageProps['loading']
  icon?: React.ReactElement
  fallback?: React.ReactNode
}
Reasons:
  • Low length (0.5):
  • Has code block (-0.5):
  • Low reputation (1):
Posted by: Ejemen Iboi

79689144

Date: 2025-07-03 16:04:20
Score: 3.5
Natty:
Report link

I found that I need to generate an cloudinit.iso with a configuration (IP address) for a Linux installation...But did not worked for me until now. I do not know how to make the second iso bootable. does anyone succeeded.

Reasons:
  • Blacklisted phrase (0.5): I need
  • Blacklisted phrase (1): did not work
  • Whitelisted phrase (-1): worked for me
  • Low length (0.5):
  • No code block (0.5):
  • Unregistered user (0.5):
  • Single line (0.5):
  • Low reputation (1):
Posted by: user30958451

79689134

Date: 2025-07-03 16:01:19
Score: 3.5
Natty:
Report link

I use the accesshub.app service to delete employees, no notifications are sent to him

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

79689133

Date: 2025-07-03 16:01:19
Score: 1
Natty:
Report link

Best way I know, create the button in a div with text-align center.
The OP said indeed that he doesn't want to add CSS to the div, and he may have good reason for that. But you can add another div inside the first one, just for the button(s), and leave the original div unchanged.
It's better than with margin auto because you can do it easily the same way if you have more than 1 button.

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

79689129

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

I recommend not doing what youre attempting using that sentence formula there. and obtaining the information attempted to be obtained with the corrections if accurately working

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

79689127

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

You can now use the Self type from typing library

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

79689110

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

For me I have the problem with a Windows xp virtual machine under HyperV with Windows 11 including the HIDE87.COM in then autoexec.nt trick did the job for me. Thank you to the author.

Reasons:
  • Blacklisted phrase (0.5): Thank you
  • Low length (0.5):
  • No code block (0.5):
  • Single line (0.5):
  • Low reputation (1):
Posted by: BICHARA MARC

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