79668211

Date: 2025-06-16 20:39:02
Score: 3
Natty:
Report link

Check your power source is stable. (change it) That's how I got rid of this NaN issue. Nasty little serial port FTDI device that had 3.3v must have been spiking or similar.

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

79668203

Date: 2025-06-16 20:33:01
Score: 3.5
Natty:
Report link

I solve that importing css from flowbite by cdn and js turbo.min.js by importmap

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

79668202

Date: 2025-06-16 20:33:01
Score: 1
Natty:
Report link

Turns out I had to simply untick the Size option in the StyledSettings dropdown:

Delphi Programming IDE Object Inspector

And now my font size is working!

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

79668200

Date: 2025-06-16 20:33:01
Score: 1
Natty:
Report link

When rendering text in most HTML elements, browsers collapse multiple whitespace characters (spaces, tabs, newlines) into a single space by default. To preserve line breaks and display multi-line text, wrap the content in a <pre></pre> tag.

<pre><textarea name="Reply" id="replyTextarea"> </textarea></pre>
Reasons:
  • Low length (0.5):
  • Has code block (-0.5):
  • Starts with a question (0.5): When
  • Low reputation (0.5):
Posted by: I'm NOT a programmer

79668191

Date: 2025-06-16 20:25:59
Score: 1
Natty:
Report link
  1. VS Code runs web files in a browser rather than executing it directly, which essentially guarantees prevention of suspicious activity, but in local files, it doesn't have direct access to that recourse and needs to be more secure.

  2. As the VS Code documentation puts it, "...Both the welcome view and the notification contain the Manage Unsafe Repositories command [under the Workspace section] that lets you review the list of potentially unsafe repositories, mark them as safe, and open them. The Manage Unsafe Repositories command is also available in the Command Palette (⇧⌘P (Windows, Linux Ctrl+Shift+P))." There should be a popup that asks you if you would like to trust this folder or trust the parent folder.

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

79668185

Date: 2025-06-16 20:23:59
Score: 1.5
Natty:
Report link
my_anova3 <- mixed(data ~ Group*Session*Condition 
                   + (Session+Condition|PID),  
                   data=my_data)
Reasons:
  • Low length (1):
  • Has code block (-0.5):
  • Low reputation (1):
Posted by: user2887751

79668178

Date: 2025-06-16 20:14:56
Score: 2
Natty:
Report link

The IBM SPSS Exact Tests handbook says:

"Calculating the exact p value can be memory-intensive. If you have selected the exact

method and find that you have insufficient memory to calculate results, you should first

close any other applications that are currently running in order to make more memory

available. If you still cannot obtain exact results, use the Monte Carlo method."

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

79668170

Date: 2025-06-16 20:08:55
Score: 0.5
Natty:
Report link

I add this task to my `build.gradle.kts` files:

tasks.register("printRuntimeClasspath") {
    println(sourceSets.main.get().runtimeClasspath.asPath)
}

and then call java builds using:

java -cp $( ./gradlew --quiet printRuntimeClasspath ) com.example.MyEntryPoint
Reasons:
  • Low length (0.5):
  • Has code block (-0.5):
  • Low reputation (0.5):
Posted by: Randall

79668169

Date: 2025-06-16 20:05:54
Score: 0.5
Natty:
Report link

I have been facing the same issue of NativeWind not working in a project initiated without it and Expo SDK 53 for weeks but glad I finally found a way around it.

I think this, https://www.nativewind.dev/docs/guides/troubleshooting, is a great starting point for debugging. First clear the cache using the command "npx expo start --clear" then proceed with the other debugging steps.

When I ran this command, "npx tailwindcss --input <input.css> --output output.css," the output.css file was empty, even while I had my global.css file with the Tailwind import directives. Then I thought, "There must probably be something wrong with the installation." I also tried verifying the NativeWind installation using the guide here, https://www.nativewind.dev/docs/guides/troubleshooting#verifying-nativewind-installation, but it gave an error.

Then, I deleted my node_modules folder and reinstalled the entire package using the command "npm i" and then followed the NativeWind manual setup guide again, following the guide here: https://www.nativewind.dev/docs/getting-started/installation. I previously had Tailwind CSS in the dependency instead of devDependencies.

Also, I updated my tailwind.config.js file correctly to contain the app and component folders.

/** @type {import('tailwindcss').Config} */
module.exports = {
content: ["./app/**/*.{js,jsx,ts,tsx}", "./components/**/*.{js,jsx,ts,tsx}"],
presets: [require("nativewind/preset")],
theme: {
extend: {},
},
plugins: [],
}

Following the details carefully in the installation guide should help a lot, and be sure to verify the NativeWind installation, https://www.nativewind.dev/docs/guides/troubleshooting#verifying-nativewind-installation.

`import { verifyInstallation } from "nativewind";

export default function AuthScreen() {
const nativewind = verifyInstallation();
console.log("nativewind: ", nativewind);
// remaining code`

It now logs the below, showing it has been correctly installed and configured

`LOG NativeWind verifyInstallation() found no errors
LOG nativewind: true`

I hope this helps someone.

Reasons:
  • Whitelisted phrase (-1): hope this helps
  • Long answer (-1):
  • Has code block (-0.5):
  • Me too answer (2.5): facing the same issue
  • Low reputation (0.5):
Posted by: oyerohabib

79668164

Date: 2025-06-16 19:58:52
Score: 2
Natty:
Report link

If anyone in the future runs into this issue:

  1. Install Visual Studio 2019,
  2. Instal SQL Server Integration Services via the extension menu in VS 2019,
  3. Open the SSIS project in question, open properties, change deployment target to SQL Server 2022,
  4. (Possibly optional) Upgrade all packages by right clicking on the ssis folder and chosing the upgrade option.

After this, I have been able to open my project in Visual Studio 2022 Community [preview] without getting any of the errors from before.

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

79668160

Date: 2025-06-16 19:56:51
Score: 1
Natty:
Report link

The best way to get good performance on develop and builded working is adding zone.js conditionally at start of server.ts:

if (environment.production) {
  await import('zone.js');
}

I couldnt find a way to import only on build using angular.json.

Reasons:
  • Low length (0.5):
  • Has code block (-0.5):
  • Low reputation (1):
Posted by: Sergio Fernández

79668155

Date: 2025-06-16 19:51:50
Score: 3
Natty:
Report link

I know this might be an old post, but I am running into a different issue.

If I have wo websites: Default Web Site and TestSite1. Default Web Site has a good SSL Certificate bound to the site. Now, when I execute the following PowerShell script for TestSite1:

New-WebBinding -Name $SiteName -Protocol $Protocol -IPAddress $IPAddress -Port $Port -HostHeader $Hostname -SslFlags $SslFlags

I see the bindings in IIS for TestSite1, with *|443|Site1, but I also see the certificate that is bound to Default Web Site.

Default Web Site Bindings: *|443|Default.com
TestSite1 Bindings: *|443|Site1

The script continues to bind the cert:

$binding = Get-WebBinding -Name $SiteName -Protocol $Protocol
$null = $binding.AddSslCertificate($Thumbprint, $StoreName)

Now both the Default Web Site and TestSite1 have been updated with the thumbprint for the new cert.

Any ideas how to bind the cert to the new bindings? Or better yet, why is the new binding already set to a cert?

Reasons:
  • Blacklisted phrase (1): Any ideas
  • Long answer (-0.5):
  • Has code block (-0.5):
  • Ends in question mark (2):
  • Low reputation (1):
Posted by: Bob P

79668153

Date: 2025-06-16 19:50:50
Score: 2
Natty:
Report link

Thank you everyone for your help. Sorry for late response. The simple solution that i found was instead of doing optionss = Options(), do optionss = ChromeOptions()

So simple but yet so weird

Reasons:
  • Blacklisted phrase (0.5): Thank you
  • Low length (0.5):
  • Has code block (-0.5):
  • Self-answer (0.5):
  • Low reputation (1):
Posted by: NicolasSurfer

79668150

Date: 2025-06-16 19:49:49
Score: 1.5
Natty:
Report link

You could try moving the timer into its own Repository and then pass that repository to the other pages.

Every time you switch to a page that would stop the timer, use its VM to stop it. Then start it again once you go back to the page that should be running it.

Another option is to put the timer in the UI page so that when a navigation triggers you can start/stop it there.

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

79668115

Date: 2025-06-16 19:16:41
Score: 1.5
Natty:
Report link
.Include(x => x.FooDetails.FooDetailsInfo)

little bit simpler

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

79668112

Date: 2025-06-16 19:14:41
Score: 1
Natty:
Report link

I'm not sure, but I think the solution to this problem is to use Git and a disciplined branching strategy.

The basic idea is that you maintain a mainline branch containing stable code (that is not 'in edition').

When anyone wants to make any changes, they take a branch off the mainline and change that.

Everybody has a stable base for their change branches, and thus everyone, at all times, can have a branch that (in between actual edits) is fully compilable.

Does this help? (I might be missing the point, of course.)

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

79668111

Date: 2025-06-16 19:12:40
Score: 0.5
Natty:
Report link

It sounds like your Raspberry Pi is hanging or freezing right when cv2.imshow() is called — the window shows up black, small, and the system becomes unresponsive. That's definitely not normal OpenCV behavior, especially for a simple image display.

Here’s a breakdown of what could be going wrong and how to fix or debug it:


Likely Cause: OpenCV GUI backend and Raspberry Pi GUI conflict

OpenCV’s imshow() relies on a GUI environment (like X11 on Linux). If your Raspberry Pi is:

Then imshow() has no display to show the window, and trying to do so can cause serious issues (including freezes).


Solutions

1. Check if you're running in GUI mode

Make sure you're running your script from a desktop environment on the Pi:


2. Test a minimal OpenCV window

Before running your full function, test this:

import cv2
import numpy as np

img = np.zeros((300, 600, 3), dtype=np.uint8)
cv2.imshow("Test", img)
cv2.waitKey(0)
cv2.destroyAllWindows()

If even this causes the Pi to hang or show a black window → the issue is with the OpenCV GUI backend setup.


3. Use cv2.namedWindow() explicitly

Try specifying the window type before imshow():

cv2.namedWindow("Confirm Images (Front & Back)", cv2.WINDOW_NORMAL)
cv2.imshow("Confirm Images (Front & Back)", combined_img)

This gives more control over how OpenCV creates the window and can prevent weird size or render bugs.


4. Don't move the window manually

The cv2.moveWindow() call may cause issues on limited environments. Try commenting this out:

# cv2.moveWindow("Confirm Images (Front & Back)", 1, 1)

It’s not needed unless you know the Pi's screen resolution and want precise placement.


5. Avoid waitKey(0) in non-interactive environments

Instead of waiting forever for a key press, try a timeout:

key = cv2.waitKey(5000)  # wait 5 seconds
if key == ord('y'):
    print("Images confirmed.")
elif key == ord('n'):
    print("Retaking images...")
else:
    print("No key pressed. Defaulting to confirm.")

6. Print debug info before GUI

Before calling imshow(), print out image shapes and check for None:

print(f"Front image shape: {front_img.shape}")
print(f"Back image shape: {back_img.shape}")

This confirms the images loaded and resized properly.


Alternative: Save the image and preview in another way

If OpenCV GUI keeps failing, save and preview:

cv2.imwrite("combined.jpg", combined_img)
print("Saved combined image. Please open 'combined.jpg' manually to confirm.")
Reasons:
  • Blacklisted phrase (1): what could be
  • Long answer (-1):
  • Has code block (-0.5):
  • Low reputation (1):
Posted by: Balkishan Mandal

79668110

Date: 2025-06-16 19:12:40
Score: 2.5
Natty:
Report link

in cmd window (running as an administrator)
PATH %PATH%;%AppData%\npm

This will add it to the path for the current user.

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

79668107

Date: 2025-06-16 19:09:39
Score: 0.5
Natty:
Report link

I fixed this error by adding [Organization]\Project Collection Valid Users as 'Contributor' to the feed's permissions.

It's a bit confusing. Some would say that this is too broad, but it's not worth my time to troubleshoot it. Shame on Microsoft for making it so complicated.

If you have some time and you'd like to apply a more granular permission, I recommend that you review this link: How do I set the build authorization scope for my project?

Reasons:
  • Blacklisted phrase (1): How do I
  • Blacklisted phrase (1): this link
  • Whitelisted phrase (-2): I fixed
  • No code block (0.5):
  • Ends in question mark (2):
  • High reputation (-2):
Posted by: Jim G.

79668099

Date: 2025-06-16 19:02:37
Score: 0.5
Natty:
Report link

You're hitting a limitation of jsdom — it doesn't support CSS media queries or actual rendering. So even if you stub innerWidth, CSS like @media (min-width: 768px) won’t trigger.

To fix this:

vi.stubGlobal('matchmedia', query => ({
 matches: query.includes('min-width: 768px'),
 addListener: () => {},
 removeListener: () => {}
}));

Pure CSS based visibility be tested in Vitest/jsdom, it's not supported.

Reasons:
  • Long answer (-0.5):
  • Has code block (-0.5):
  • User mentioned (1): @media
  • Low reputation (0.5):
Posted by: Lucian Wu

79668088

Date: 2025-06-16 18:55:36
Score: 2.5
Natty:
Report link

Looks like permission issue . Please check while running the command it has the access to the specified path . You can try to run as root / admin . Also , give permission to all the files/folders present in the path to be accessed/run .

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

79668081

Date: 2025-06-16 18:48:34
Score: 1
Natty:
Report link

Adding a position: absolute on the dropdown menu should fix it for you.

Example with React Bootstrap:

<Dropdown.Menu style={{ position: 'absolute' }}>
  <Dropdown.Item>
    Item 1
  </Dropdown.Item>
  <Dropdown.Item>
    Item 2
  </Dropdown.Item>
</Dropdown.Menu>
Reasons:
  • Low length (0.5):
  • Has code block (-0.5):
  • Low reputation (1):
Posted by: Darin Heuermann

79668079

Date: 2025-06-16 18:46:33
Score: 0.5
Natty:
Report link

I ran into this problem because the class file where I defined the new class and namespace was Tests vs Tests.cs renamed to include .cs and everything worked perfectly. VisualStudio was not helping, because in the class it figured out what I was doing and did not give any errors.

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

79668059

Date: 2025-06-16 18:29:28
Score: 2
Natty:
Report link

You might be looking for this:

el.innerText = '';

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

79668053

Date: 2025-06-16 18:22:27
Score: 1
Natty:
Report link

use this middleware at first of code

// fix edit request query and make it allow for edit this in new version of express
app.use((req, res, next) => {
  Object.defineProperty(req, 'query', {
    ...Object.getOwnPropertyDescriptor(req, 'query'),
    value: req.query,
    writable: true,
  });
  next();
});
Reasons:
  • Low length (0.5):
  • Has code block (-0.5):
  • Low reputation (1):
Posted by: Mohammed Sersawy

79668044

Date: 2025-06-16 18:15:25
Score: 2
Natty:
Report link

Im facing the same issue, i would love a api that retrieves my user lists.
For now i did some things for javascript.

IMDBListToObject
I made a Userscript that add a button to the page that get all the itens from a list and show in another tab as JSON

Other Method
You can also fetch the html page and scrap the data from it, the problem is that it returns only the first 25 itens of the list and you need to open CORS for IMDB urls in your website.

/*
EN:
https://www.imdb.com/user/ur174614034/ratings/?view=detailed
Other langs, ex PT:
https://www.imdb.com/pt/user/ur174614034/ratings/?view=detailed
The "view" argument is important
*/

fetch("https://www.imdb.com/pt/user/ur174614034/watchlist/?ref_=up_urwls_sm").then(r=>r.text()).then(r => {
    let doc = document.createElement("div");
    doc.innerHTML = r;

    // logs the title of the itens in the list
    console.log([...doc.querySelectorAll(".ipc-title--title")].map(e=>e.innerText))
})
Reasons:
  • Long answer (-0.5):
  • Has code block (-0.5):
  • Me too answer (2.5): facing the same issue
  • Low reputation (0.5):
Posted by: Luís Henrique de Almeida

79668038

Date: 2025-06-16 18:10:24
Score: 1.5
Natty:
Report link

Thanks for the report Jesus; Should be fixed following:
https://github.com/openrewrite/rewrite-spring/pull/735

Reasons:
  • Blacklisted phrase (0.5): Thanks
  • Probably link only (1):
  • Low length (1.5):
  • No code block (0.5):
  • High reputation (-2):
Posted by: Tim

79668030

Date: 2025-06-16 18:03:22
Score: 1.5
Natty:
Report link

Prestashop Vx.x.x - Hide Price of product from Database (phpMyAdmin) - SQL Query

Example product # 10 -- Table: `ps_product_shop >> | SQL |

UPDATE `ps_product_shop` SET `show_price`=0, available_for_order=0 WHERE id_product = 10;

| Continue |

Prestashop Vx.x.x - Ocultar precio de un producto desde la base de datos (phpMyAdmin)

Ejemplo ocultar el precio del producto # 10 -- Tabla: `ps_product_shop >> | SQL |

UPDATE `ps_product_shop` SET `show_price`=0, available_for_order=0 WHERE id_product = 10;

| Continuar |

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

79668025

Date: 2025-06-16 18:00:21
Score: 0.5
Natty:
Report link

Having no ideas yet about COUNTIF, I can explain the general comparison like "A1>0" behavior. It tries to convert A1 to number first, if not - converts 0 to a text and compare text values using the sort order.

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

79668023

Date: 2025-06-16 17:54:19
Score: 2.5
Natty:
Report link

For me, PerlScript as language server (like ASP VBScript or JScript) is running with the ActiveState Binary build 2404 distribution of Perl v5.24.3 on IIS 6.1 / Window 7 but not with the next distribution of Perl or other than ActiveState

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

79668022

Date: 2025-06-16 17:53:19
Score: 2.5
Natty:
Report link

For anyone new, it seems starting the foreground service from boot isn't allowed for certain service types anymore.
how to start foreground service after device reboot

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

79668001

Date: 2025-06-16 17:40:15
Score: 3
Natty:
Report link

You can check where the file is getting dowloaded in your system. It should be in C:/Users/{username}/Dowloads. You can run it as administrator.

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

79667994

Date: 2025-06-16 17:32:13
Score: 2
Natty:
Report link

Just recently we have 3 users that are receiving error: AADSTS90019: No tenant-identifying information found in either the request or implied by any provided credentials.

As an Admin in MS and Azure, how can this be corrected?

All users information is correct in MS Entra Admin Center and the user is licensed correctly in MS Admin Center.

We have tried multiple fixes, but nothing is working.

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

79667987

Date: 2025-06-16 17:29:12
Score: 3.5
Natty:
Report link

Nowadays you can see this in the admin panel as "Compute price/credit," which can be reached in the web UI under Admin > Cost Management

enter image description here

enter image description here

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

79667983

Date: 2025-06-16 17:23:10
Score: 5
Natty:
Report link

According to AntonRoskvist, the issue seems to be related to this PR: https://github.com/apache/activemq-artemis/pull/5764

Reasons:
  • Probably link only (1):
  • Low length (1.5):
  • No code block (0.5):
  • Self-answer (0.5):
  • Single line (0.5):
  • Low reputation (1):
Posted by: André Conrado

79667973

Date: 2025-06-16 17:14:08
Score: 3.5
Natty:
Report link

It’s safe since the auth status only present in the memory.

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

79667972

Date: 2025-06-16 17:14:08
Score: 1.5
Natty:
Report link

For me, it was an issue with TestFlight.

(!) just don’t add anything into "What to Test"

Reasons:
  • Low length (1.5):
  • Has code block (-0.5):
  • Low reputation (0.5):
Posted by: Anton Marchanka

79667954

Date: 2025-06-16 16:56:04
Score: 3
Natty:
Report link

Besides defining the experiment name as the other answer mentioned, you also have to setup the DATABRICKS_HOST and DATABRICKS_TOKEN environment variables.

You can create a token following this guide: https://docs.databricks.com/aws/en/dev-tools/auth/pat

Then use the "export" command on web terminal, or the os.getenv() method on python.

Reasons:
  • Blacklisted phrase (1): this guide
  • Low length (0.5):
  • No code block (0.5):
  • Low reputation (1):
Posted by: Thales Bonfim Mansur

79667952

Date: 2025-06-16 16:55:03
Score: 3.5
Natty:
Report link

set expiration date to previous day -expires=>'-1d'

Reasons:
  • Low length (1.5):
  • No code block (0.5):
  • Single line (0.5):
  • Low reputation (1):
Posted by: J Alejandro Ceballos Z

79667937

Date: 2025-06-16 16:38:59
Score: 3
Natty:
Report link

It is working as expected.. there is a logic which executing behind in skipped tests and deleting the files.. issue is resolved. If any one wants to use this solution they can use, as the above code is fully functional

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

79667928

Date: 2025-06-16 16:30:56
Score: 2
Natty:
Report link

FFmpeg converts the WAV file from WAVE_FORMAT_PCM to WAVE_FORMAT_EXTENSIBLE when it considers the sample rate or width are out of spec.

Take a look at https://trac.ffmpeg.org/ticket/4426 for a discussion about it.

If you need a 96Khz WAVE_FORMAT_PCM file, FFmpeg will not produce it. Use audacity or DAW like reaper or cakewalk to generate it.

Reasons:
  • Low length (0.5):
  • No code block (0.5):
  • Low reputation (1):
Posted by: Moises L.

79667908

Date: 2025-06-16 16:09:48
Score: 0.5
Natty:
Report link

With good hint from AdrianHHH's answer
I find a almost best way what I need when originally asked question.

Now I have this option enabled for this example file extension:
enter image description here

So basically its can be done with modify registry key:

"HKEY_CLASSES_ROOT\SystemFileAssociations\[.YourExtension]"

with add command for 'batch-edit'.

I share ready example for add context menu to .ps1 file context menu. Just copy this bellow, paste to any editor and save it as reg file - eg. :"C:\NP++l450.reg".


Windows Registry Editor Version 5.00
[HKEY_CLASSES_ROOT\SystemFileAssociations\.ps1\Shell\Edit with Notepad++ from line 450\Command]
@="\"C:\\Program Files\\Notepad++\\notepad++.exe\" \"%1\" -n450 %*"

Next just run this file and new entry Context Menu shall appear for ps1 file.

Only one thing what is missing and I can't figure out how to make its icon file on the left:
enter image description here
so if you know how to add that icon to this context menu of that file extension please reply anytime.

Reasons:
  • Blacklisted phrase (0.5): I need
  • Blacklisted phrase (1.5): please reply
  • Whitelisted phrase (-1): solution is
  • Long answer (-1):
  • Has code block (-0.5):
  • Self-answer (0.5):
  • Low reputation (0.5):
Posted by: MikeZetPL

79667903

Date: 2025-06-16 15:58:45
Score: 0.5
Natty:
Report link

The hidden information from the tonavigationtable helper from the Microsoft documentation is the line Preview.DelayColumn = itemNameColumn, which just does not work together with Function type columns.

So as found out here: https://github.com/migueesc123/PowerBIRESTAPI/blob/master/Power%20BI%20API/PowerBIRESTAPI/PBIAPI.pq you need to have 2(!) navigation table helper functions, one with and one without that line. This also works for functions without parameters.

Like so:

NavigationTable = (url as text) as table => 
    let
        navigationTableSource = #table(
            { "Name", "Key", "Data", "ItemKind", "ItemName", "IsLeaf" }, {
                { "Topics", "topics", topics(), "Table", "Table", true },
                { "Parameterized Reports","Functions", FunctionsNavTable(), "Folder","Functions",false}
               // more navigation elements
            }
        ),
        NavTable = Table.ToNavigationTable(navigationTableSource, {"Key"}, "Name", "Data", "ItemKind", "ItemName", "IsLeaf")
    in
        NavTable;

FunctionsNavTable = () as table => 
    let
        navigationTableSource = #table(
            {"Name","Key","Data","ItemKind","ItemName","IsLeaf"},{
                { "Unique Users Report 1", "unique_users_1", Value.ReplaceType(EventCloudImpl.ReportingApiGateway, ReportingApiGatewayType), "Function", "Function", true },    
            }
        ),
        NavTable = Table.ForceToNavigationTable(navigationTableSource, {"Key"},"Name","Data","ItemKind","ItemName","IsLeaf")
    in
        NavTable;

Navigation Table with parameters for functions

Reasons:
  • Probably link only (1):
  • Long answer (-1):
  • Has code block (-0.5):
  • Low reputation (1):
Posted by: Xaratas

79667902

Date: 2025-06-16 15:58:45
Score: 1.5
Natty:
Report link

The reason sigma clipping normally uses multiple iterations is because the sigma1 estimate in the first iteration includes the outliers, and is thus biased to have a larger value. Once these outliers are removed, the sigma2 estimate in the next iteration will be smaller, and thus identify more outliers outside the (now tighter) bounds. This is why you get progressively fewer points within the bounds, because the sigma estimation keeps ignoring more and more outliers away from the mean.

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

79667898

Date: 2025-06-16 15:57:45
Score: 3
Natty:
Report link

make sure that excel.exe is not running when you run your code.

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

79667878

Date: 2025-06-16 15:41:41
Score: 0.5
Natty:
Report link

One way to write the function in modern C++ would be:

void PrintArray(const std::array<int, 4>& arr)
{
    for (const auto elem : arr) {
        std::cout << elem << std::endl;
    }
}
Reasons:
  • Low length (0.5):
  • Has code block (-0.5):
  • Low reputation (0.5):
Posted by: SarvanZ

79667871

Date: 2025-06-16 15:35:40
Score: 3
Natty:
Report link

You could use MgGraph instead. Like this:

$userId = "[email protected]"
Invoke-MgGraphRequest -Method PATCH -Uri "https://graph.microsoft.com/v1.0/users/$userId" -Body @{onPremisesImmutableId = $null}

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

79667868

Date: 2025-06-16 15:34:39
Score: 0.5
Natty:
Report link
const panelView = elementor?.getPanelView();
const currentPageView = panelView?.currentPageView;

if (panelView && currentPageView?.model && currentPageView?.model?.attributes?.widgetType) {
    const widgetModel = currentPageView.model;
                   
    // Getter
    widgetModel.getSetting(key);
    
    // Setter
    widgetModel.setSetting(key, value);
}

// Found another hook too for new version of Elementor.
// Fires when a widget gets active.

elementor.hooks.addAction('panel/open_editor/widget', (panel, model) => {
    // Your code here.
}
Reasons:
  • Long answer (-0.5):
  • Has code block (-0.5):
  • Self-answer (0.5):
  • Low reputation (1):
Posted by: Salim Shrestha

79667864

Date: 2025-06-16 15:29:38
Score: 2.5
Natty:
Report link

By the looks of the error you received you're attempting to get data from a table-valued function on the remote server, not a hard table, and thus the hint "WITH (NOLOCK)" doesn't even apply.

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

79667851

Date: 2025-06-16 15:20:35
Score: 0.5
Natty:
Report link

It is currently not possible to use DPO (direct preference optimization) of GPT via CLI or Python on Azure. Source: private correspondence with Microsoft.

Reasons:
  • Low length (1):
  • No code block (0.5):
  • Self-answer (0.5):
  • Single line (0.5):
  • High reputation (-2):
Posted by: Franck Dernoncourt

79667848

Date: 2025-06-16 15:17:35
Score: 2
Natty:
Report link

$ENV:USERNAME

Does this work in Linux? I know it works in Windows PowerShell

Reasons:
  • Low length (1.5):
  • Has code block (-0.5):
  • Contains question mark (0.5):
  • Low reputation (0.5):
Posted by: Vern_Anderson

79667828

Date: 2025-06-16 15:02:30
Score: 10
Natty: 7
Report link

@zkvvoob Did you solve this issue? I'm experiencing this exact problem.

Reasons:
  • RegEx Blacklisted phrase (3): Did you solve this
  • RegEx Blacklisted phrase (1.5): solve this issue?
  • Low length (1.5):
  • No code block (0.5):
  • Contains question mark (0.5):
  • User mentioned (1): @zkvvoob
  • Single line (0.5):
  • Looks like a comment (1):
  • Low reputation (0.5):
Posted by: mosh.jinton

79667823

Date: 2025-06-16 15:00:24
Score: 7 🚩
Natty:
Report link

did u resolved your error , im having the same

Reasons:
  • RegEx Blacklisted phrase (3): did u resolved your
  • Low length (1.5):
  • No code block (0.5):
  • Single line (0.5):
  • Starts with a question (0.5): did
  • Low reputation (1):
Posted by: Souza

79667821

Date: 2025-06-16 14:58:23
Score: 1
Natty:
Report link

I had the same behavior - everything seemed fine, Tampermonkey was Enabled, it recognized that the script should be firing on this page, but when I hovered on the name of the script under the Tampermonkey icon, it told me "This script was not executed yet".

I was able to resolve this issue and get the script to run by enabling "Developer Mode" in the Manage Extensions area of the browser (Chrome/Edge).

Reasons:
  • Whitelisted phrase (-1): I had the same
  • No code block (0.5):
  • Unregistered user (0.5):
  • Low reputation (1):
Posted by: Zippity Doodah

79667820

Date: 2025-06-16 14:58:23
Score: 0.5
Natty:
Report link

I think you might be running into a known bug: https://github.com/dotnet/maui/issues/17152

As per the latest comment it seems the decimal separator is taken from the device regional settings despite the localization of the application:

The numeric keyboard uses the decimal separator of the language as configured for the device. Not for the language of the app.
If the language of the device is set to english, the numeric keyboard allows the dot as decimal separator, even if the language of the app is set to dutch.
If the language of the device is set to dutch, the numeric keyboard allows the comma as decimal separator, even if the language of the app is set to english.
The numeric keyboard should at least use the language of the app as set in CultureInfo.CurrentUICulture to determine the decimal separator.

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

79667804

Date: 2025-06-16 14:46:21
Score: 4
Natty:
Report link

You can perform CSS animations useing react-native-reanimated 4.

https://docs.swmansion.com/react-native-reanimated/docs/next/category/css-animations/

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

79667792

Date: 2025-06-16 14:29:16
Score: 0.5
Natty:
Report link

According to ccordoba12:

we set a fixed value of 80 columns in our consoles by default to make some terminal libraries (like Rich and Colorama) work as expected.

However, setting that value automatically is not an easy task because the Spyder graphical interface and the kernel (i.e. the program that runs your code) live in different processes. So, we'd need to inform the kernel every time a change in width occurs in the console (and right now I'm not sure how we could that).

So, I'm afraid you'll have to continue setting display.width by hand for now. But we'll try address this in the future

Reasons:
  • Long answer (-0.5):
  • No code block (0.5):
  • Self-answer (0.5):
Posted by: user2153235

79667790

Date: 2025-06-16 14:26:15
Score: 3
Natty:
Report link

Right click and open Command Line Tool with Admin, then execute.

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

79667787

Date: 2025-06-16 14:24:15
Score: 1.5
Natty:
Report link

When getting permission denied errors, you can still try:
gcloud alpha resource-manager liens list

Which results in the error, but still gives the resource name, e.g.:
resourceName: projects/p815952589364-la3009308-1817-48d0-8ece-ca4d531dc7a3

Then use, which will delete the resource, even though it's complaining about permission:
gcloud alpha resource-manager liens delete p815952589364-la3009308-1817-48d0-8ece-ca4d531dc7a3

Now you can delete the google cloud project.

Reasons:
  • No code block (0.5):
  • Starts with a question (0.5): When
  • Low reputation (0.5):
Posted by: Guido A.

79667784

Date: 2025-06-16 14:23:15
Score: 2.5
Natty:
Report link

Remember that Arquillian is not meant to be used with Mockito:
Jakarta is designed to work with Fake Objects and similar instead of Mocks.

Look at Stack Overflow Why no more mocks in Arquillian? for details.

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

79667778

Date: 2025-06-16 14:18:13
Score: 0.5
Natty:
Report link

That is not a formatting issue but time zone. The clue is that the "error" is exactly 1 hour from midnight. You haven't given sufficient information/detail for a solution to be offered but here's what you need to do...

  1. Know where the date should be coming from.
  2. Find out where it is coming from. (Should a SQL script or trigger be inserting using the database datetime, so all entries in the table are date-stamped using the same clock? Or do you want to send a local client-side (or other-server-side) value across the wire to the central database?) Your problem here is clearly that you have done a bit of both from time zones 1 hour apart.
  3. Then (a) once you have a clear notion of how it should work, if (b) resolving time zone differences is necessary and (c) you are still uncertain... then post another question providing the details, related program code and database scripts/procs.

Good luck

Reasons:
  • Blacklisted phrase (1): another question
  • Long answer (-0.5):
  • No code block (0.5):
  • Contains question mark (0.5):
  • High reputation (-1):
Posted by: AlanK

79667752

Date: 2025-06-16 13:58:09
Score: 1
Natty:
Report link

Xcode 16.0

Cannot preview in this file
❌ Failed to launch com.myname.github.io.MyApp
Cause:
path: /Users/myname/Developer/MyApp/Pods/MLKitTextRecognitionCommon/Frameworks/MLKitTextRecognitionCommon.framework

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

79667748

Date: 2025-06-16 13:55:08
Score: 2
Natty:
Report link

I ran into a similar issue (although I was using fetchxml through liquid, rather than using the API). It seems Power Pages appends all the table permissions as extra link-entities to any fetchxml queries that are sent to dataverse.

For any tables that are also used in your table permissions, try giving those link-entities an alias and see if that helps.

This blog post was helpful for me. In liquid, you can view the full query that is being sent using the .xml attribute (details in the post). If there's an equivalent for the api you could try that, too.

Reasons:
  • Blacklisted phrase (1): This blog
  • Long answer (-0.5):
  • No code block (0.5):
  • Low reputation (1):
Posted by: pinginrua

79667744

Date: 2025-06-16 13:53:07
Score: 0.5
Natty:
Report link

The error you are seeing is due to interruption in rendering of state in react you can use router inside a non dependency useEffect

useEffect(()=>{

if(!session){

router.push("/login")

},[])

Reasons:
  • Whitelisted phrase (-1.5): you can use
  • Low length (0.5):
  • No code block (0.5):
  • Low reputation (1):
Posted by: Aryan Gadhave

79667739

Date: 2025-06-16 13:50:06
Score: 5.5
Natty: 5.5
Report link

Ive started programming my engine a week or two ago, and only implemented alpha beta pruning. It reaches a depth of 7-8 in about 10 seconds. Is it normal/good/bad?

Reasons:
  • Low length (1):
  • No code block (0.5):
  • Ends in question mark (2):
  • Unregistered user (0.5):
  • Single line (0.5):
  • Low reputation (1):
Posted by: Amit271

79667737

Date: 2025-06-16 13:46:04
Score: 7 🚩
Natty: 5.5
Report link

Is there any kind of integration with Robot Framework?

Reasons:
  • Blacklisted phrase (1): Is there any
  • Low length (1.5):
  • No code block (0.5):
  • Ends in question mark (2):
  • Single line (0.5):
  • Starts with a question (0.5): Is there any
  • Low reputation (1):
Posted by: Edmilson Batista

79667730

Date: 2025-06-16 13:43:02
Score: 2
Natty:
Report link

See this answer there : https://stackoverflow.com/a/63638373/2832282

There is a hack to allow http:// URLs in google workspace

Reasons:
  • Blacklisted phrase (1): stackoverflow
  • Probably link only (1):
  • Low length (1.5):
  • No code block (0.5):
  • High reputation (-2):
Posted by: Cyril Duchon-Doris

79667718

Date: 2025-06-16 13:37:01
Score: 1
Natty:
Report link

I have added code on Main thread for cursor position and it is working fine.

 Device.BeginInvokeOnMainThread(() =>
 {
     CurrentCounterEntry.CursorPosition = CurrentCounterEntry.Text.Length;
 });
Reasons:
  • Low length (0.5):
  • Has code block (-0.5):
  • Self-answer (0.5):
  • Low reputation (0.5):
Posted by: BSB

79667717

Date: 2025-06-16 13:37:01
Score: 1
Natty:
Report link

In Postman (for those using filters in the URL), for me, this has worked:

localhost:8080/api/blogs?populate=*&filters[categories][uid][$eq]=react

I have a blogs content-type and a blog-categories content-type with a many-to-many relationship. A blog can have several categories, and a category can have several posts. So, if I want to filter blogs that belong to a specific category, I do it as I described above. 👆

Reasons:
  • RegEx Blacklisted phrase (1): I want
  • Has code block (-0.5):
  • Low reputation (0.5):
Posted by: JGuerra

79667712

Date: 2025-06-16 13:32:00
Score: 3
Natty:
Report link

I know it's probably late, but here's an accurate and relevant answer your question - for the benefit of others who might be facing the same problem.

I recently - about a month back - bulk uploaded posts using the following template as provided by Blogging is Happiness at this link.

You may also check the full process at How to Bulk Import Posts into your Blogger blog using this free XML template.

<?xml version='1.0' encoding='UTF-8'?>
    <ns0:feed xmlns:ns0='http://www.w3.org/2005/Atom'>
    <ns0:title type='html'>Title</ns0:title>
    <ns0:generator>Blogger</ns0:generator>
    <ns0:updated>2025-04-27T23:16:25Z</ns0:updated>
    <ns0:entry>
        <ns0:category scheme='http://www.blogger.com/atom/ns#' term='Love'/>
        <ns0:category scheme='http://schemas.google.com/g/2005#kind' term='http://schemas.google.com/blogger/2008/kind#post' />
        <ns0:id>post-1</ns0:id>
        <ns0:author><ns0:name>Author</ns0:name></ns0:author>
        <ns0:content type='html'><a src="https://EverythingForBloggers.Blogspot.com">Blogging Is Happiness</a></ns0:content>
        <ns0:published>2025-04-28T23:16:25Z</ns0:published>
        <ns0:title type='html'>Everything For Bloggers</ns0:title>
    </ns0:entry>
</ns0:feed>
Reasons:
  • Blacklisted phrase (1): this link
  • Long answer (-1):
  • Has code block (-0.5):
  • Me too answer (2.5): facing the same problem
  • Low reputation (1):
Posted by: Mohanjeet Singh

79667710

Date: 2025-06-16 13:32:00
Score: 1
Natty:
Report link

I ran into this same error, and managed to "fix" it by opening src/main/resources/META-INF/mods.toml, and replacing all mentions of ${mod_id} with grugmodloader, and replacing ${mod_version} with 1.0.0. You'll need to use the values that you have in your gradle.properties.

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

79667709

Date: 2025-06-16 13:31:59
Score: 4.5
Natty: 6
Report link

In our ionic capacitor project for android app, we want to accept text, link and image inside the app so can we use this plugin? Currently we have capacitor v7.0.0.

Reasons:
  • Blacklisted phrase (1): this plugin
  • Low length (1):
  • No code block (0.5):
  • Contains question mark (0.5):
  • Single line (0.5):
  • Low reputation (1):
Posted by: Hariprasad

79667707

Date: 2025-06-16 13:30:59
Score: 1
Natty:
Report link

I found two options in the Visual Studio marketplace:

Reasons:
  • Low length (0.5):
  • No code block (0.5):
Posted by: Jean-David Lanz

79667699

Date: 2025-06-16 13:24:57
Score: 0.5
Natty:
Report link

As of the latest developer betas of macOS 16 Tahoe:

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

79667696

Date: 2025-06-16 13:23:57
Score: 2
Natty:
Report link

After a bit of playing around with the code provided by @adrid, I was able to resolve it by simply stripping WS_THICKFRAME and WS_MAXIMIZEBOX from the Window style.

If WS_BORDER is also stripped, the window can't have a title bar which is not explicitly stated in the documentation. Below shows a before and after.

Window with WS_BORDER style stripped.

Window with WS_BORDER style not stripped.

Final Code:

void windowSetResizable(Window* window, bool canResize) {
    InternalWindow* internalWindow = getInternalWindow(window);
    int style = GetWindowLongPtr(internalWindow->handle, GWL_STYLE);

    if (!canResize) {
        style &= ~(WS_THICKFRAME | WS_MAXIMIZEBOX);
    } else {
        style |= (WS_THICKFRAME | WS_MAXIMIZEBOX);
    }
    SetWindowLongPtrA(internalWindow->handle, GWL_STYLE, style);
    
    SetWindowPos(internalWindow->handle, NULL, 0, 0, 0, 0, SWP_NOMOVE | SWP_NOSIZE | SWP_NOZORDER | SWP_FRAMECHANGED);
}
Reasons:
  • Probably link only (1):
  • Long answer (-0.5):
  • Has code block (-0.5):
  • User mentioned (1): @adrid
  • Self-answer (0.5):
  • Low reputation (0.5):
Posted by: xKaihatsu

79667685

Date: 2025-06-16 13:18:55
Score: 0.5
Natty:
Report link

I use dplyr for this which makes it very simple. Tibbles are great but works on data frame too.


data |> mutate( across(where(is.character), ~na_if(., "NA")) )
Reasons:
  • Low length (1):
  • Has code block (-0.5):
Posted by: Miguel Trias

79667663

Date: 2025-06-16 13:00:51
Score: 2
Natty:
Report link

View -> Task List

It's in the View menu under Task List

Reasons:
  • Low length (1.5):
  • No code block (0.5):
Posted by: shieldgenerator7

79667660

Date: 2025-06-16 12:57:49
Score: 5.5
Natty: 4.5
Report link

there's this Medium article on it, it has a Helm chart and everything you need.

https://medium.com/@redwanalkurdi/deploying-spark-connect-on-kubernetes-a-comprehensive-guide-19a1185d70ba

Reasons:
  • Blacklisted phrase (0.5): medium.com
  • Probably link only (1):
  • Contains signature (1):
  • Low length (1.5):
  • No code block (0.5):
  • Low reputation (1):
Posted by: redwan

79667659

Date: 2025-06-16 12:56:49
Score: 3
Natty:
Report link
header 1 header 2
cell 1 cell 2
cell 3 cell 4

Pubg kaisa hai aur Kya Karta Hai

Reasons:
  • Low length (1.5):
  • No code block (0.5):
  • Low reputation (1):
Posted by: Somveer Kumar

79667656

Date: 2025-06-16 12:53:48
Score: 0.5
Natty:
Report link

Declare:

private static final DateTimeFormatter DTSTAMP_FORMATTER
        = DateTimeFormatter.ofPattern("uuuuMMdd'T'HHmmssX")
                .withZone(ZoneOffset.UTC);

Then do:

    ZonedDateTime zdt = ZonedDateTime.of(1996, 7, 4,
            6, 0, 0, 0, ZoneId.of("America/Mazatlan"));
    String formattedForICalendar = zdt.format(DTSTAMP_FORMATTER);
    System.out.println(formattedForICalendar);

Output is the desired:

19960704T120000Z

Use java.time for your date and time work. Joda-Time was a good library, but is in maintenance mode and officially replaced by java.time.

Links:

Reasons:
  • Long answer (-0.5):
  • Has code block (-0.5):
  • Unregistered user (0.5):
  • Low reputation (1):
Posted by: Zoé Mammadov

79667655

Date: 2025-06-16 12:53:48
Score: 3
Natty:
Report link

As @Liero already mentioned the ˋHttpContextˋ should be avoided or used with caution.
So your main problems are with the authentication and the user preferences (I assume they are saved in the cookies).

The current user should be retrieved as @Liero also said using the ˋAuthenticationStateProviderˋ. I don't know whether the login works or not for you but a way I do it mostly is by forcing the Browser to send a POST request containing the form because the ˋHttpContextˋ is only in the initial request available.

To save the user preferences in a cookie you can use JsInterop to set and retrieve the cookie because this cookie don't need the http only option.

When you use Identity in Blazor you have pay attention that a valid ˋHttpContextˋ is available at the time when do stuff that e.g. sets a cookie or retrieves one. Do check this you can make the cascading ˋHttpContextˋ nullable at check if its null or not.

Are your questions answered now?

Reasons:
  • Whitelisted phrase (-1.5): you can use
  • Long answer (-0.5):
  • No code block (0.5):
  • Ends in question mark (2):
  • User mentioned (1): @Liero
  • User mentioned (0): @Liero
  • Looks like a comment (1):
  • Low reputation (0.5):
Posted by: Suiram1

79667649

Date: 2025-06-16 12:51:47
Score: 2.5
Natty:
Report link

Try adding this line:

maven { url 'https://maven.scijava.org/content/repositories/public' }

before this line:

maven { url 'https://jitpack.io' }

At build.gradle (e.g. "C:\Program Files (x86)\GeneXus\GeneXus18\Android\Templates\RootProject\build.gradle")

Reference: https://www.genexus.com/en/developers/websac?data=60721;;

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

79667640

Date: 2025-06-16 12:46:45
Score: 5.5
Natty:
Report link

Muchas gracias al pana Praveen Kedar....

Reasons:
  • Blacklisted phrase (2): gracias
  • Low length (1.5):
  • No code block (0.5):
  • Single line (0.5):
  • Low reputation (1):
Posted by: s7mogato

79667639

Date: 2025-06-16 12:44:45
Score: 1.5
Natty:
Report link

I found this code on another stack overflow question which referenced it from another stack overflow question. This code will have the screen reader say "two thousand five hundred euros" but not read "2.500", while at the same time the 2.500 being visible to all users.

.visually-hidden { 
    border: 0;
    padding: 0;
    margin: 0;
    position: absolute !important;
    height: 1px; 
    width: 1px;
    overflow: hidden;
    clip: rect(1px 1px 1px 1px); /* IE6, IE7 - a 0 height clip, off to the bottom right of the visible 1px box */
    clip: rect(1px, 1px, 1px, 1px); /*maybe deprecated but we need to support legacy browsers */
    clip-path: inset(50%); /*modern browsers, clip-path works inwards from each corner*/
    white-space: nowrap; /* added line to stop words getting smushed together (as they go onto seperate lines and some screen readers do not understand line feeds as a space */
}
<p><span class="visually-hidden">two thousand five hundred </span>€<span aria-hidden="true">2.500</span></p>

Citations:

accessibility p tag different text for screen reader
How to hide a text and make it accessible by screen reader?

Reasons:
  • Long answer (-1):
  • Has code block (-0.5):
  • Ends in question mark (2):
  • Low reputation (1):
Posted by: Ashford

79667636

Date: 2025-06-16 12:43:44
Score: 3
Natty:
Report link

Solution in 2025: Use puma app server instead.

See https://github.com/puma/puma/tree/master

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

79667633

Date: 2025-06-16 12:41:44
Score: 1
Natty:
Report link

I ended up with

<td style="width:50px">
    <div style="width:50px">
        your content
    </div>
</td>

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

79667631

Date: 2025-06-16 12:40:43
Score: 3.5
Natty:
Report link

As stated by @0stone0 in the comments, quoting the path and the url solves the issue.

Reasons:
  • Low length (1.5):
  • No code block (0.5):
  • Self-answer (0.5):
  • Single line (0.5):
  • Low reputation (0.5):
Posted by: tony_merguez

79667616

Date: 2025-06-16 12:33:41
Score: 0.5
Natty:
Report link

I think you have to add DataSourceProperties bean error in Spring Boot 3.5.0

I add sample code below.

@EnableConfigurationProperties(DataSourceProperties.class)

this code will registers DataSourceProperties when you exclude DataSourceAutoConfiguration.

Hope your success.

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

79667609

Date: 2025-06-16 12:29:40
Score: 2.5
Natty:
Report link

For windows

Try using alt+shift+down arrow to copy lines (we have to use alt and shift present in the left side of the keyboard.)

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

79667587

Date: 2025-06-16 12:17:36
Score: 4.5
Natty: 4
Report link

Error: As a result of LOCAL INFILE command server wants to read C:\Users\Admin\Desktop\Web_pages\ocmp\rcs-backend\ocmp-backend\tmp\consent_1750075391722.csv file, but as of v2.0 you must provide streamFactory option returning ReadStream.

i am getting this error. how can i resolve this error

Reasons:
  • Blacklisted phrase (0.5): how can i
  • Blacklisted phrase (1): i am getting this error
  • RegEx Blacklisted phrase (1): i am getting this error
  • Low length (0.5):
  • No code block (0.5):
  • Low reputation (1):
Posted by: Manikanta Annavarapu

79667585

Date: 2025-06-16 12:15:35
Score: 4
Natty:
Report link

Click this button to jump to the first commit:

enter image description here

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

79667582

Date: 2025-06-16 12:14:35
Score: 3.5
Natty:
Report link

If on iPhone you can use Shortcuts to add a custom icon to an app.

https://www.youtube.com/watch?v=jlsqrf8-QwQ

Reasons:
  • Blacklisted phrase (1): youtube.com
  • Whitelisted phrase (-1.5): you can use
  • Probably link only (1):
  • Low length (1.5):
  • No code block (0.5):
  • Low reputation (1):
Posted by: Ashford

79667576

Date: 2025-06-16 12:09:34
Score: 0.5
Natty:
Report link

Example as php:

//On top of oyur code
header('Content-Type: application/json');
//To output some array data into JSON
$response = array("Key1" => "Value1", "Key2" => "Value2");
echo json_encode($response);
Reasons:
  • Low length (0.5):
  • Has code block (-0.5):
  • Low reputation (0.5):
Posted by: Andy McRae

79667573

Date: 2025-06-16 12:08:33
Score: 0.5
Natty:
Report link

If you want to transfer files, folders or text in a "user friendly" way you can use applications such as Localsend, it allows you to transfer text and files with other devices in the same LAN (without Internet) without any configuration other then installation, it's multiplatfom and easy to use. If you need to transfer data in a more advanced way I suggest SCP, based on the SSH protocol; it requires a more experienced user and some configuration (well documented online), but it's far more powerfull.

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

79667555

Date: 2025-06-16 11:59:30
Score: 1
Natty:
Report link

Yeah, this is actually a common issue on Android when picking images, especially if they’re from Google Photos or cloud apps. Sometimes the file you get is just a placeholder, not the full thing 😅

Best way is to use ContentResolver.openInputStream(uri) instead of trying to get the actual file path. It works better for those types of files and lets the system handle fetching it.

You can’t really “force” Android or Chrome to download it fully, but if you try to read from the InputStream, it usually starts the download if needed. Just gotta be patient and maybe handle failures with a try-catch. If the stream fails or is empty, the file probably isn’t ready yet.

So yeah, not perfect, but that’s what most people do. Handle errors nicely and maybe tell the user to wait a bit 👍

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

79667552

Date: 2025-06-16 11:58:30
Score: 4.5
Natty: 5
Report link

im also trying to show twitter timeline on my website but its not working

Reasons:
  • Blacklisted phrase (1): its not working
  • Low length (1.5):
  • No code block (0.5):
  • Single line (0.5):
  • Low reputation (1):
Posted by: Krishi Yojana

79667549

Date: 2025-06-16 11:55:29
Score: 1
Natty:
Report link

I try to run an Azure pipeline to deploy a Java app with maven using self-hosted agent, but it says that agent doesn't see Java. How can I fix it?

You installed Java in user-specific folder: C:\Users\user\..., If the Azure DevOps agent is running as a Windows service, it won’t have access to C:\Users\user\.jdk\... So when your pipeline runs, it says: agent doesn't see Java, even it works fine in the command line under your user account.

To resolve use System-Wide JDK installation install java in shared ProgramFiles and set the path in System Environment Variables.

Or open C:\Users\user\.jdk in PowerShell, download and create your agent there, and run .\config.cmd. This runs the agent interactively as that user, which will have access to the .jdk Java installation.

In your azure-pipelines.yml file, you specified jdkVersionOption: '1.17', which uses Java version 17. However, you have installed Java version 23, which causes the error.

so, use below lines in your YAML file.

javaHomeOption: 'JDKVersion'
jdkVersionOption: '1.23'
or
javaHomeOption: 'Path'
jdkDirectory: '$(JAVA_HOME)'

enter image description here

Reasons:
  • Blacklisted phrase (0.5): How can I
  • RegEx Blacklisted phrase (1.5): How can I fix it?
  • Long answer (-1):
  • Has code block (-0.5):
  • Contains question mark (0.5):
Posted by: Aslesha Kantamsetti

79667547

Date: 2025-06-16 11:54:28
Score: 4.5
Natty:
Report link

try gooning

with utmost serendipity,

stefan

Reasons:
  • Contains signature (1):
  • Low length (1.5):
  • No code block (0.5):
  • Unregistered user (0.5):
  • Low reputation (1):
Posted by: stefan

79667546

Date: 2025-06-16 11:54:28
Score: 1
Natty:
Report link

you can run your tests directly using PHPUnit instead of the artisan test command. This bypasses the version constraints introduced by nunomaduro/collision.
Try running:
./vendor/bin/phpunit ./tests/

This solution resolved the issue for me when I encountered the same problem.

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

79667543

Date: 2025-06-16 11:52:27
Score: 1
Natty:
Report link

There's no way to increase the time to persist items in s1 and s2 if they depend on s3, it just doesn't make sense.

You should instead check how the operation which emits the value in s3 is evaluated and optimize from there.

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