79733918

Date: 2025-08-13 05:55:51
Score: 1.5
Natty:
Report link

This is a signature-level permission used to protect system apps from external usage, you can not get this permission by putting it in AndroidManifest.xml or requesting it at runtime
the only way to request it is to sign your app with with OPPO platform key and offcourse OPPO will never share their platform signing key developers.

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

79733915

Date: 2025-08-13 05:51:50
Score: 1.5
Natty:
Report link

Set a proper pad_token and pass attention_mask in model.chat() if it supports it.

If .chat() doesn’t take attention_mask, you’ll need to tokenize your inputs first with

encoding = tokenizer(text, return_tensors="pt", padding=True, return_attention_mask=True)

then pass encoding["attention_mask"] manually to model.generate().

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

79733913

Date: 2025-08-13 05:48:50
Score: 1
Natty:
Report link

I tried multiple approaches, but eventually found that the root cause was a "Page Not Found" error.

In my case, the route name in the code was sign-in, but on GitHub, I had accidentally pushed it as Sign-in. Since Next.js is case-sensitive with routes, this mismatch caused the deployed version on Vercel to fail.

After changing the route name to all lowercase (sign-in) in the main branch and redeploying, everything started working fine

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

79733884

Date: 2025-08-13 05:30:45
Score: 0.5
Natty:
Report link

In addition to what Chetan mentioned in his answer https://stackoverflow.com/a/75015574/3423570

I had to also add some more args

On Java21 + Eclipse:

Add the following in default VM arguments(Window -> Preferences/Settings -> Installed JREs -> select jre -> edit) - all separated by space

Reasons:
  • Blacklisted phrase (1): stackoverflow
  • Long answer (-0.5):
  • Has code block (-0.5):
  • Low reputation (0.5):
Posted by: Rohit

79733859

Date: 2025-08-13 04:50:36
Score: 0.5
Natty:
Report link

The issue turned out to be quite strange. On Windows, "kubectl edit" basically runs the command "notepad" in cmd behind the scenes, if some environment variables are not set otherwise: https://kubernetes.io/docs/reference/kubectl/generated/kubectl_edit/

When I tried running "notepad" in cmd, I encountered errors saying, "This program can't run on Windows" and "Access is denied." However, I could still open Notepad through PowerShell or other methods. Running "where notepad" in cmd revealed multiple locations for the executable, with the top one being "C:\Users\myuser\notepad.exe" Upon checking, I found a zero-byte notepad.exe file there, though I have no idea how it got created. Deleting that file resolved the issue, and kubectl started working normally again.

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

79733857

Date: 2025-08-13 04:48:36
Score: 4
Natty:
Report link

Looks like there's a bug report here:
https://bugreports.qt.io/browse/QTBUG-135438
Guess I just have to wait and see.

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

79733855

Date: 2025-08-13 04:46:35
Score: 0.5
Natty:
Report link

Your plots appear blank because SageMath’s built-in 3D viewer often malfunctions. To fix this, simply include viewer='threejs' when calling show(), for example: show(W + S, viewer='threejs', figsize=8). Alternatively, you can save the plot as an HTML file using (W + S).save('plot3d.html', viewer='threejs') and then open it in any new version browser. If you’re working in Jupyter, run %display plot3d threejs before plotting to ensure the correct viewer is used. Additionally, if you’re running Sage locally, make sure the OpenGL libraries are installed on your system to avoid rendering issues.

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

79733832

Date: 2025-08-13 04:02:25
Score: 3
Natty:
Report link

I hate that it took the better part of a day to solve this but I finally figured it out. The problem is "/login". Giving VSCode http://10.10.10.55:8888?token=**** works fine and seems to store the token for reuse once you name the server

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

79733828

Date: 2025-08-13 03:40:20
Score: 3.5
Natty:
Report link

In Kafka there is no offset commit for a particular record. It can only commit offset per partition. We had implemented this using our own implementation.

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

79733822

Date: 2025-08-13 03:29:17
Score: 2.5
Natty:
Report link

Try:

if (Platform.OS === "android") {
  audio.shouldCorrectPitch = true;
  audio.setPlaybackRate(rate);
} else {
  audio.setPlaybackRate(rate, "high");
}

Credit to neiker: https://github.com/expo/expo/issues/37025#issuecomment-3027988621

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

79733806

Date: 2025-08-13 02:50:08
Score: 1
Natty:
Report link

-h -1 avoid using headers. Maybe you should write:

sqlcmd -S SERVERNAME -U TEST -P TEST123 -d TESTDB -Q "set nocount on;select * from ALLDATA" -o "C:\test\test.csv" -s, -W
Reasons:
  • Low length (1):
  • Has code block (-0.5):
  • Low reputation (0.5):
Posted by: Xabi

79733799

Date: 2025-08-13 02:37:05
Score: 1
Natty:
Report link

Just wanted to let people know that I was able to solve this issue by using

comboBox.setVisibleRowCount(items.size());

that runs after every update of the list (I have a listener on comboBox.valueProperty())

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

79733797

Date: 2025-08-13 02:32:04
Score: 10.5
Natty: 5.5
Report link

I am facing similar issue. Is there any fix ?

Reasons:
  • Blacklisted phrase (1): Is there any
  • RegEx Blacklisted phrase (1.5): fix ?
  • Low length (1.5):
  • No code block (0.5):
  • Me too answer (2.5): I am facing similar issue
  • Ends in question mark (2):
  • Single line (0.5):
  • Low reputation (1):
Posted by: Kamakshi Muthukrishnan

79733796

Date: 2025-08-13 02:28:03
Score: 1.5
Natty:
Report link

_|WARNING:-DO-NOT-SHARE-THIS.--Sharing-this-will-allow-someone-to-log-in-as-you-and-to-steal-your-ROBUX-and-items.|_CAEaAhAB.401609C2C58990BF91B1C81B4F6AA562D2F8503D25605BF8D129BA992BE43314B45A47AF06369F0DEC1736A5E0B5A230E4E5227D2A74985DCFD68C5149977D64DED53755401D91DDD6F0D6414CDD9ADF17F6115CDFC706EF3D82E68BCF417C5B941486E6F3A29959714CE989C6D6DC1C5AF9FE99BA485489EE944C49BBA6209E6005361E641E7B4FA92869DBC55C221323DF69A7C166665CC82D5A338731B30A51065528B3674BAC5DCE618AF862062669FDC84807A4AC3D08EC1470D9174CB6C2BA50294B8EB95564996DB10FD79C33CB7E9EA2CF692C0535045F466589CA66BD7C2A6CCBB5F2BB64573F9252E2E9B1F3497FA8AF6E4D7D6FAA12B42EA7485D9F5C9E372CBC01E15A0261EB5C7B9316E2831AFAB68A052D2FA564BBCBAD4E30B4DE4E7DABABFE9B4A21ED060232FFE739DA3471453F1CEC15859E91AB4946A176B6AF1A2061F715651625350AF8809723F8071DDEEA78A88D96C9F8C6AE509C618D838E7316473E9502C632D54DA6A0F853BFD1C1329A1F31CF225B5F927EF735265BDFEACC49924961DC699AEEE4E35B181AF93852AD9044DA2EC6FE41EC34F6A44AA3CB024B7B609416BBAF842892E56A832F9EF4B24FE5BAAB0DD6C1BBC91303176CA5A61483C78B4F24816816EB2D4EA712AC7D6ACFFD0D265838C8ED177BB8ACC4143178546F1D1C8F1FD145CE830CE20624464F2964BDC518F7DD4AB64A187F53AE84295A85CD01EA6268DB3814CA1749764C78A75F6EB777663FE07C5895A7AFB25808D275C6C4C6F45F9B974ACC142497E0FA746DC5CDD95DC4C3A836DD001B2D91BA8BE7C984ED9AB287EA46F50B4CEA7F1B9BE9772E64BBD2241BFDF1CC2F6215E6B645B40F78E5C1554B20937385F186068762AD79F4EA64DBFB0D5B5497EE3A11987D4611486958020B36B9154A912E6083F02EA48EE42277107B926E67AC02B6D9066A83239D8EA955D6FB294AF34365C209C5EAC2CA71E79F51404063F3CBBA705D6FEA6465E0D45DDF66758C26C763BE954D789B214AD01940BE32AF75E01E57981D2249A405C20AD67FF831D375AC79E17FEFB898A64B852CE357D78513EDC3AC3752742DBBC2F30707B0C7F5B77470124AA2CFC4E9BBBA061A009F9E40FC3C37563C9D5FAA80EB1774BD54E3B19EB274FDD97D605E74B69B36207B8490B45F0468D1CFA64713D1EA2F6A72F08DA1B9A65F8795AE5C804F212165094198ECF9945FC27DE9C0E47ADD789568

Reasons:
  • Long answer (-1):
  • No code block (0.5):
  • Has no white space (0.5):
  • Single line (0.5):
  • Low reputation (1):
Posted by: Sikandar Khaksar

79733794

Date: 2025-08-13 02:24:01
Score: 4.5
Natty: 5.5
Report link

Have you tried pressing the Ctrl + Shift + R? or clearing the cache in your browser?

Reasons:
  • Whitelisted phrase (-1): Have you tried
  • Low length (1.5):
  • No code block (0.5):
  • Ends in question mark (2):
  • Single line (0.5):
  • Low reputation (1):
Posted by: Jayen

79733786

Date: 2025-08-13 02:10:58
Score: 3.5
Natty:
Report link

WhatsApp wa = new WhatsApp(from, Base64Encode("+880 1782-755624"), "abc", false, false);

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

79733783

Date: 2025-08-13 01:59:56
Score: 3.5
Natty:
Report link

I had to add the parameters directly to the JSON file for a storage trigger. FYI if anyone can't find these options, enter it in manually. Example JSON trigger file with parameters at the bottom of this article.

https://learn.microsoft.com/en-us/azure/data-factory/how-to-use-trigger-parameterization

Reasons:
  • Blacklisted phrase (1): this article
  • Low length (0.5):
  • No code block (0.5):
  • Unregistered user (0.5):
  • Low reputation (1):
Posted by: Joe Schmo

79733780

Date: 2025-08-13 01:36:52
Score: 1
Natty:
Report link

I searched for many solutions and tried so many things a few years ago. Nothing is as simple and amazing as this solution. You can add ".captureProtected()" to anything you want. Image, text. An entire view. It all works. Clean and simple. No plug in no weird code and bad workarounds.

import SwiftUI
import UIKit

private extension UIView {
    // Secure container borrowed from UITextField
    static var secureCaptureView: UIView {
        let tf = UITextField()
        tf.isSecureTextEntry = true
        tf.isUserInteractionEnabled = false
        return tf.subviews.first ?? UIView()
    }
}

private struct _CaptureProtectedContainer<Content: View>: UIViewRepresentable {
    let content: Content
    
    func makeUIView(context: Context) -> UIView {
        let secure = UIView.secureCaptureView
        let host = UIHostingController(rootView: content)
        host.view.backgroundColor = .clear
        host.view.translatesAutoresizingMaskIntoConstraints = false
        secure.addSubview(host.view)
        NSLayoutConstraint.activate([
            host.view.topAnchor.constraint(equalTo: secure.topAnchor),
            host.view.bottomAnchor.constraint(equalTo: secure.bottomAnchor),
            host.view.leadingAnchor.constraint(equalTo: secure.leadingAnchor),
            host.view.trailingAnchor.constraint(equalTo: secure.trailingAnchor),
        ])
        return secure
    }
    
    func updateUIView(_ uiView: UIView, context: Context) { }
}

private struct CaptureProtected: ViewModifier {
    func body(content: Content) -> some View {
        content
            .hidden()
            .overlay { _CaptureProtectedContainer(content: content) }
    }
}

extension View {
    func captureProtected() -> some View { modifier(CaptureProtected()) }
}
Reasons:
  • Blacklisted phrase (1.5): any solution
  • Long answer (-1):
  • Has code block (-0.5):
  • Low reputation (1):
Posted by: ProtonFission

79733771

Date: 2025-08-13 01:16:47
Score: 1.5
Natty:
Report link

The way Symfony handles this has changed, now the counter-intuitive "extensions" property actually ALSO sends MIME-check through PHP native functions (see the current code for 7.3). So your code tells it to check much more than the extension. And, as the auto-detection can be unreliable, depending on the editor used for the file, you cannot trust it all the time.

But, as the documentation states, you can explicit your MIME type for a given extension, overriding the default configured ones from PHP's ext-mime built-in extension.

Try this (with a form), or adapt your code if you're using Attributes or Annotations (SF 7.3 valid):

'constraints' => [
    new File(
        maxSize: '8192k',
        extensions: [
            'csv' => [
                'text/csv',
                'application/csv',
                'text/x-comma-separated-values',
                'text/x-csv',
                'text/plain',
            ]
        ],
        extensionsMessage: 'mtg_result.import.file.error',
    ),
],

And don't forget you can help your users filter browser selection using the proper HTML code as well on the frontend:

{{ form_row(form.csv_file, {'attr': {'accept': '.csv,text/csv,application/csv,text/x-comma-separated-values,text/x-csv,text/plain'}}) }}
Reasons:
  • Whitelisted phrase (-1): Try this
  • RegEx Blacklisted phrase (3): you can help
  • Long answer (-1):
  • Has code block (-0.5):
  • Low reputation (1):
Posted by: DocFX

79733760

Date: 2025-08-13 00:57:43
Score: 1.5
Natty:
Report link

The statement "facet 1 is coplanar with the interior point" means that the facet (a flat surface) of a geometric object lies on the same plane as a designated point inside the object.

In the first order, point (0, 6000) located inside the facet of the other three points.

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

79733753

Date: 2025-08-13 00:46:40
Score: 1
Natty:
Report link

Yes there is a way to programatically restart a iOS app. It is tho through a private API. Basically iOS has a daemon called Launch Services Daemon(lsd), this daemon is able to open any app with any bundleid on the device. You can open ur own app, yes it won't work by just opening ur own app. It's possible to trigger a race condition by invoking the app openage while you exit your app via exit(0) as your own app doesn't trigger the reopen but the XPC daemon lsd, and when it triggers it ur app is already dead... And it opens it..

https://github.com/ProjectNyxian/Nyxian/blob/main/Nyxian%2FLindChain%2FPrivate%2FRestart.m

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

79733729

Date: 2025-08-12 23:46:29
Score: 3.5
Natty:
Report link

If you're having trouble with other clients, consider trying AbsoluteTelnet SSH Client. Contact me at [email protected] if you get stuck.

Reasons:
  • Blacklisted phrase (0.5): Contact me
  • Low length (1):
  • No code block (0.5):
  • Single line (0.5):
  • Low reputation (1):
Posted by: Brian Pence

79733728

Date: 2025-08-12 23:44:29
Score: 3
Natty:
Report link

Maybe your tables are in different database ?

Right click on the connection click on "Edit connection"

Check show all databases, it should show you all databases

Check the image here

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

79733727

Date: 2025-08-12 23:28:26
Score: 0.5
Natty:
Report link

For image duplication search, it is worth mentioning the Bloom Filter algorithm. It can give you quick and memory-efficient results. It does not depend on resolution and cropping. Note that it can give false-positive results but not false negatives. It looks like you can use it as the initial step in your comparison logic. The use of some of the methods described above.

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

79733725

Date: 2025-08-12 23:22:24
Score: 3.5
Natty:
Report link

I had a problem with that version that Windows 10 SDK component was not installed. Manually updating with selecting the component resolved the issues.

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

79733720

Date: 2025-08-12 23:11:22
Score: 3
Natty:
Report link

Consider another SSH client such as AbsoluteTelnet SSH Client. I use it with github all the time and may be able to help.

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

79733711

Date: 2025-08-12 23:01:20
Score: 1.5
Natty:
Report link

Autodesk Viewer doesn’t natively load IFC files as a “decorative-only” mesh without processing the data. To achieve what you want, you’ll need to first convert the IFC into a supported lightweight 3D format (like SVF or OBJ) using the Model Derivative API or another converter. Once converted, you can load it in the viewer using viewer.loadExtension('Autodesk.Viewing.SceneBuilder') and add it as a custom geometry layer or overlay scene. By setting it to a separate overlay scene and disabling selection on those fragments (via isSelectable: false in the geometry definition), you can make it purely visual with no interaction — similar to an image overlay, but in 3D space.

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

79733709

Date: 2025-08-12 22:56:19
Score: 1.5
Natty:
Report link

Company Logo

Sorry, but we're having trouble signing you in.

We track these errors automatically, but if the problem persists feel free to contact us. In the meantime, please try again.

Correlation ID: 110bdce1-9e75-4c6e-8552-a7ecf6692b0f

Timestamp: 2025-08-12 22:46:55Z

AADB2C90046: We are having trouble signing you in. You might want to try starting your session over from the beginning.

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

79733707

Date: 2025-08-12 22:50:17
Score: 7
Natty: 7.5
Report link

@iRon Thanks for this informative response! It helps when PowerToys is unavailable due to corp. security restrictions.
@IInspectable Why harass someone like this? The question is implied: this didn't work, what will?

Reasons:
  • Blacklisted phrase (0.5): Thanks
  • Low length (0.5):
  • No code block (0.5):
  • Ends in question mark (2):
  • Unregistered user (0.5):
  • User mentioned (1): @iRon
  • User mentioned (0): @IInspectable
  • Looks like a comment (1):
  • Low reputation (1):
Posted by: InspectorGadget

79733697

Date: 2025-08-12 22:24:12
Score: 2
Natty:
Report link

For me the issue was the max heap size was too small, specifically because my docker config was constricting it to just over 300MB which was far too small, I made the changes to expand the max heap size which solved this, you may also get this problem if the JVM your using is 32 bit, which as others suggest, switching to 64 bit would solve this too, since the virtual memory space would mean the max heap size would be expanded

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

79733687

Date: 2025-08-12 21:59:06
Score: 4
Natty:
Report link

Consider Everything by https://www.voidtools.com/ as a freeware software solution, if you just want quick answers.

Reasons:
  • Low length (1.5):
  • No code block (0.5):
  • Unregistered user (0.5):
  • Single line (0.5):
  • Low reputation (1):
Posted by: Bubba None

79733685

Date: 2025-08-12 21:57:05
Score: 13.5
Natty: 6.5
Report link

Was there any solution to this? I'm having the same error now when trying to flash it with any tool (Sonoff Dongle Flasher Add-on from HomeAssistant, Official Texas Instrument tool from ti.com, website of SMLIGHT, anything...), and I can't manage to flash the dongle with any firmware.

Thanks in advance.

Reasons:
  • Blacklisted phrase (0.5): Thanks
  • Blacklisted phrase (1.5): any solution
  • RegEx Blacklisted phrase (3): Thanks in advance
  • RegEx Blacklisted phrase (1): I'm having the same error
  • RegEx Blacklisted phrase (2): any solution to this?
  • Low length (0.5):
  • No code block (0.5):
  • Me too answer (2.5): I'm having the same error
  • Contains question mark (0.5):
  • Starts with a question (0.5): Was there any solution to this
  • Low reputation (1):
Posted by: Ricardo Ballester

79733677

Date: 2025-08-12 21:40:01
Score: 3.5
Natty:
Report link

To show the file history:

gitk path/to/file

This will show you the chronological history of the file

See Show history of a file?

Reasons:
  • Low length (1):
  • Has code block (-0.5):
  • Ends in question mark (2):
  • Low reputation (1):
Posted by: Brian Birmingham

79733667

Date: 2025-08-12 21:19:56
Score: 2
Natty:
Report link

The address you are using is incorrect for Sepolia. Use the actual SwapRouter address for Sepolia: 0x3bFA4769FB09eefC5a80d6E87c3B9C650f7Ae48E.

This should solve the main error that prevents MetaMask from opening.

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

79733661

Date: 2025-08-12 21:06:53
Score: 0.5
Natty:
Report link

The correct way to load animations is using the Humanoid animator, so it would be Humanoid.Animator:LoadAnimation(youranimation)

Example:

local UserInputService = game:GetService("UserInputService")

local Player = game.Players.LocalPlayer
local Character = Player.Character or Player.CharacterAdded:Wait()
local Humanoid = Character:WaitForChild("Humanoid")
local Animator = Humanoid.Animator

local Animation = script.Animation
local AnimationTrack = Animator:LoadAnimation(Animation)

UserInputService.InputBegan:Connect(function(input, gameProcessed)
    if gameProcessed then return end -- here we ensure this doesn't trigger if the player is typing in the chat
    if input.KeyCode == Enum.KeyCode.LeftControl then
            AnimationTrack:Play()
    end
end)
Reasons:
  • Long answer (-0.5):
  • Has code block (-0.5):
  • Unregistered user (0.5):
  • Low reputation (1):
Posted by: unknown

79733640

Date: 2025-08-12 20:44:48
Score: 2.5
Natty:
Report link

Because I keep running into this issue I thought I would share my solution here. It seems apple has broken some things in xcode 16 and in order to fix you will need to manually copy and link against an older version of the coreimage framework. I outlined the steps here: https://stackoverflow.com/a/79015744/1157843

Reasons:
  • Blacklisted phrase (1): stackoverflow
  • Low length (0.5):
  • No code block (0.5):
  • Single line (0.5):
Posted by: aferriss

79733615

Date: 2025-08-12 19:57:36
Score: 1.5
Natty:
Report link

Google Apps Script REST API doesn't support service accounts --ref. https://developers.google.com/apps-script/api/concepts

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

79733613

Date: 2025-08-12 19:51:34
Score: 5
Natty:
Report link

Earlier versions of java did not respect the memory constraints of a container. What version of java & what version of Grails are you using?

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

79733610

Date: 2025-08-12 19:49:34
Score: 2
Natty:
Report link

Novatic Furniture is your go-to destination for home solutions that merge style, durability, and everyday practicality. Our collection includes premium cabinets and drawers for smart storage, cloth drying stands and folding drying racks for efficient laundry care, as well as kitchen cabinet pulls, vanity pulls, and shoe racks that bring elegance to every room.

We focus on creating designs that save space, enhance organization, and elevate the overall look of your home. Every product is crafted from top-quality materials, ensuring it stands the test of time while complementing modern lifestyles.

With Novatic Furniture, you’re not just furnishing your home—you’re creating an environment that’s organized, welcoming, and beautifully designed.

Reasons:
  • Contains signature (1):
  • Long answer (-0.5):
  • No code block (0.5):
  • Low reputation (1):
Posted by: novatic furniture

79733605

Date: 2025-08-12 19:44:33
Score: 3
Natty:
Report link

Microsof's official doc says:

If you want to make changes to a file on a SharePoint site and want to make sure no one else can edit it, check out the file. When you have the file checked out, you can edit it online or offline, and save it—multiple times, if necessary.

It's a form of lock on files.
Check out to lock a file.
Check in to unlock it.

Resources that solved my question:
- https://support.microsoft.com/en-us/office/check-out-check-in-or-discard-changes-to-files-in-a-sharepoint-library-7e2c12a9-a874-4393-9511-1378a700f6de

- https://medium.com/jumpto365/the-basics-of-sharepoint-check-in-and-check-out-e7db1c63d860

Reasons:
  • Blacklisted phrase (0.5): medium.com
  • Probably link only (1):
  • No code block (0.5):
  • Self-answer (0.5):
  • Low reputation (0.5):
Posted by: J.J.Enrik

79733602

Date: 2025-08-12 19:40:32
Score: 1
Natty:
Report link

You could use ROWCOUNT instead of SELECT TOP (@var) ... as:

SET @var = ISNULL(@var, 0)
SET ROWCOUNT @var
SELECT * FROM ...
SET ROWCOUNT 0

set ROWCOUNT 0 means all rows.

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

79733587

Date: 2025-08-12 19:21:27
Score: 2
Natty:
Report link

Since you didn't give more details, I assume you are a windows user, turn of your windows defender's real time protection and try again, when you finish your work turn it on again.

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

79733576

Date: 2025-08-12 19:12:24
Score: 1.5
Natty:
Report link

Hi Mihai Socaciu it sounds like you are using your App config resource for testing (unless I missed something) and I'd like to suggest maybe to try out the Developer Tier which is suitable for testing, its $0.12 per store per day, plus an overage charge at $0.40 per 10,000 requests2. The first 3,000 requests are included in the daily charge.

Please see https://azure.microsoft.com/pricing/details/app-configuration/, for more information.

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

79733573

Date: 2025-08-12 19:09:24
Score: 2.5
Natty:
Report link

As of today, you can!!!

AWS Lambda has recently launched Lambda Remote Debugging in VS Code. This allows you to debug live function and put break points in codes on local machine. It also supports automatic code downloading from cloud to your local machine and sync the code change back to the cloud as well.

Check out for information here:

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

79733569

Date: 2025-08-12 19:03:22
Score: 0.5
Natty:
Report link

To find ip of nic eth0:

import os
ip = os.popen('"ip -4 -br addr show eth0 | grep -E -o '([0-9]{1,3}\.){3}[0-9]{1,3}'"').read().strip()
print(ip)
#Or using variable to define network interface card
nic = "eth0"
ip = os.popen('"ip -4 -br addr show " + nic + " | grep -E -o '([0-9]{1,3}\.){3}[0-9]{1,3}'"').read().strip()
print(ip)

Instead of using external tools like awk one can use a regular expression.

  1. Extend regular expression (-E)

  2. Print only the matched parts (-o)

([0-9]{1,3}\.){3}[0-9]{1,3}'"') -> Breaks into two parts

  1. ([0-9]{1,3}\.){3}

    1. [0-9] -> Digits 0 to 9.

    2. {1,3} -> Minimum 1 digit, maximum 3 digits.

    3. \. Adds a '.', the '\' works as a escape character.

    4. = {3} Repeats three times.

  2. [0-9]{1,3} Same as part 1, no '.', no repeat.

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

79733545

Date: 2025-08-12 18:38:15
Score: 0.5
Natty:
Report link

You can use below format.

Object.keys(props.ingredients || {})

Reasons:
  • Whitelisted phrase (-1.5): You can use
  • Low length (1.5):
  • Has code block (-0.5):
  • Low reputation (1):
Posted by: monster-dev

79733541

Date: 2025-08-12 18:33:14
Score: 1.5
Natty:
Report link

another solution: remove fields from Series Groups and write separate expressions for each value that you want displayed in the Values section instead.

Reasons:
  • Whitelisted phrase (-2): solution:
  • Low length (1):
  • No code block (0.5):
  • Unregistered user (0.5):
  • Single line (0.5):
  • Low reputation (1):
Posted by: aje

79733537

Date: 2025-08-12 18:28:12
Score: 1.5
Natty:
Report link

For me, adding the io.lettuce:lettuce-core:6.8.0.RELEASE dependency resolved the issue in my Spring Boot 3.2.0 application.

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

79733535

Date: 2025-08-12 18:25:11
Score: 3
Natty:
Report link
// HANDLE BROWSE-ALL SCRIPT
// STEP 1: Initialize Browse keydown activation
const $browseLink = $('.cmp-bmw-header__browse-link');
const $browseNav = $browseLink.find('.cmp-bmw-header__nav-link');
const $header = $('.cmp-bmw-header-view'); // Assuming this is the header element
 
$browseNav.on('keydown', function (e) {
  if (e.key === 'Enter' || e.key === ' ') {
    e.preventDefault();
    setTimeout(() => {
      initAccessibleBrowse(this);
    }, 50);
  }
});
 
// STEP 1.1: Click event to toggle browse dropdown
$browseLink.on('click', function (e) {
  e.preventDefault();
  const isOpen = $browseLink.hasClass("cmp-header-browse--opened");
  if (isOpen) {
    closeBrowse();
  } else {
    initAccessibleBrowse(this);
  }
});
 
// STEP 2: Keep Browse open on focusin
$(".cmp-bmw-header-view__nav-container").on("focusin", function () {
  $browseLink.addClass("cmp-header-browse--opened");
  $header.addClass("sticky-header"); // Add sticky class
  $(".cmp-bmw-header-view__text-mobile").removeClass("cmp-bmw-header-view__header-hidden");
});
 
// STEP 3: Close on Escape anywhere in document when dropdown is open
$(document).on("keydown", function (e) {
  const isOpen = $browseLink.hasClass("cmp-header-browse--opened");
 
  if (e.key === "Escape" && isOpen) {
    closeBrowse();
  }
});
 
// Function to close the browse dropdown
function closeBrowse() {
  $browseLink.removeClass("cmp-header-browse--opened");
  $header.removeClass("sticky-header"); // Remove sticky class
  $(".cmp-bmw-header-view__text-mobile").addClass("cmp-bmw-header-view__header-hidden");
  $(".cmp-bmw-header-view--transparent").removeClass("cmp-bmw-header-view--navbar-active");
  $browseNav.focus();
}
 
// STEP 4: Arrow Key Navigation (up/down)
document.addEventListener('keydown', function (e) {
  const focusable = Array.from(document.querySelectorAll('a, button, input, textarea, [tabindex="0"]'))
    .filter(el => el.offsetParent !== null);
 
  const currentIndex = focusable.indexOf(document.activeElement);
 
  if (e.key === "ArrowDown") {
    e.preventDefault();
    const next = focusable[currentIndex + 1] || focusable[0];
    next.focus();
  }
 
  if (e.key === "ArrowUp") {
    e.preventDefault();
    const prev = focusable[currentIndex - 1] || focusable[focusable.length - 1];
    prev.focus();
  }
});
 
// STEP 5: Init Browse dropdown and focus
function initAccessibleBrowse(anchor) {
  const $anchor = $(anchor);
  const $navContainer = $('.cmp-bmw-header-view__nav-container');
 
  if (!$anchor.length || !$navContainer.length) return;
 
  $(".cmp-bmw-header__search").addClass("hide");
  $(".cmp-bmw-header-view__text-mobile-search").addClass("hide");
 
  $browseLink.addClass("cmp-header-browse--opened");
  $header.addClass("sticky-header"); // Add sticky class
  $(".cmp-bmw-header-view__text-mobile").removeClass("cmp-bmw-header-view__header-hidden");
  $(".cmp-bmw-header-view--transparent").addClass("cmp-bmw-header-view--navbar-active");
 
  $navContainer.removeClass("hide");
 
  // Prevent visible outline if triggered by Enter
  $navContainer.attr("tabindex", "-1");
  setTimeout(() => $navContainer.focus(), 10);
}
==================================================
CSS:
.cmp-bmw-header-view__nav-container:focus {
  outline: none;
  box-shadow: none;
}
 
/* Dropdown hidden by default */
.cmp-bmw-header-view__nav-container.hide {
  opacity: 0;
  pointer-events: none;
  visibility: hidden;
  transition: opacity 0.2s ease-in-out;
}
 
/* Dropdown shown */
.cmp-header-browse--opened + .cmp-bmw-header-view__nav-container,
.cmp-bmw-header-view__nav-container:focus-within {
  opacity: 1;
  pointer-events: auto;
  visibility: visible;
  transition: opacity 0.2s ease-in-out;
}
 
/* Sticky header styles */
.sticky-header {
  position: sticky;
  top: 0;
  z-index: 1000; /* Adjust as necessary */
  background-color: white; /* Ensure background is set */
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1); /* Optional shadow for effect */
}

 HEADER IS HIDDEN WHEN WE OPEN BROWSE DROP DOWN , HOW TO FIX THIS ?
Reasons:
  • RegEx Blacklisted phrase (1.5): HOW TO FIX THIS ?
  • Long answer (-1):
  • Has code block (-0.5):
  • Ends in question mark (2):
  • Low reputation (1):
Posted by: Sravani Pulipati

79733520

Date: 2025-08-12 18:09:07
Score: 0.5
Natty:
Report link

To diagnose this, It would be useful to know what versions of Dazl and Daml you are using. (And @chrslg is right in that it would also be useful to have the full stack trace and exception message.)

That said, I have an example implementation of some Python code that uses Dazl 8.4.2 to query a Sandbox ledger from the Daml 2.10.1 SDK. You can find it here: https://github.com/mschaef-da/daml-cx-kb-demos/tree/main/dazl-client

The Python code specifically is here: https://github.com/mschaef-da/daml-cx-kb-demos/blob/main/dazl-client/main.py

The entry point establishes a connection to the sandbox and passes it into a function that executes the query against the stream:

async def main():
    async with dazl.connect(url='http://localhost:6865', read_as=alice_party_id()) as conn:
        await show_create_events(conn)

The query itself is written like this:

async def show_create_events(conn):
    async with conn.stream_many(tid) as stream:
        async for event in stream.items():
            if isinstance(event, Boundary):
                break

            print(pprint.pformat({
                '_cid': event.contract_id.value,
                '_tid': event.contract_id.value_type,
                'payload': event.payload
            }))
            print()

The call to stream_many opens a stream of events for the contract template ID in question and the async for iterates over the elements of that stream, printing each event in oldest-to-newest sequence.

By default stream_many will initially contain a create event for every contract that is active at the point of the query. Once it's sent events for all of these pre-existing contracts, it transitions to sending events representing current business process. The reason the sample loop breaks at the Boundary is that it displays only contracts that are active at the point of the query - it doesn't report current events. If you're interested in ongoing business processes, you won't want to stop at the Boundary. This will cause the loop to run indefinitely (and you will also have to handle archived events, which can start appearing once the stream is past the initial contracts.)

One other detail worth mentioning is the computation of tid... the template ID for the contract being queries. There's logic in place to discover the main package ID of the Daml model being queried and use that to explicitly populate the package ID in the tid . This results in a value for tid that looks like this (fully qualified):

e2e508ab6018568d0e8ce07dccc6c7288ad9744a6b8e5c826e1a19431c9cba09:Main:Asset

Reasons:
  • Contains signature (1):
  • Long answer (-1):
  • Has code block (-0.5):
  • User mentioned (1): @chrslg
Posted by: mschaef

79733513

Date: 2025-08-12 18:01:05
Score: 3.5
Natty:
Report link

Let us know if you've found a solution to this please.

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

79733505

Date: 2025-08-12 17:48:02
Score: 3
Natty:
Report link

Removing the .idea folder fixed the issue for me.

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

79733496

Date: 2025-08-12 17:37:59
Score: 6
Natty:
Report link

Use emacs on windows. Do you guys still remember (((Monica)))? Or what? Everybody just went as usual about their life despite the antisemitism? Just because of some transsexual monkey???

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

79733488

Date: 2025-08-12 17:28:56
Score: 5
Natty:
Report link

Use emacs on MacOSX. Do you guys still remember (((Monica)))? Or what? Everybody just went as usual about their life despite the antisemitism? Just because of some transsexual monkey?

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

79733487

Date: 2025-08-12 17:26:55
Score: 4.5
Natty:
Report link

do you have the latest version of Android Studio? If you have one of the latest versions, then you may indeed have problems. Details about this and which version is better to download are listed here: https://support.hyperskill.org/hc/en-us/articles/39791715079828-Possible-problems-with-Android-Studio-version-2025-1-and-later

If the problem is something else, then it is better to contact Hyperskill support with information about the project where you encountered the problem.

Reasons:
  • RegEx Blacklisted phrase (2.5): do you have the
  • No code block (0.5):
  • Contains question mark (0.5):
  • Low reputation (1):
Posted by: aamuliory

79733473

Date: 2025-08-12 17:12:51
Score: 0.5
Natty:
Report link

Tree Data Lazy Loading is now available in Slickgrid-Universal and Aurelia-Slickgrid v9.7.0, there's also a new live Example 35 for Slickgrid-Universal and Example 46 for Aurelia-Slickgrid. It's also important to note that this new feature only works with a hierarchical dataset (not supported for parent/child dataset)

Reasons:
  • Contains signature (1):
  • Low length (0.5):
  • No code block (0.5):
  • Single line (0.5):
  • High reputation (-2):
Posted by: ghiscoding

79733472

Date: 2025-08-12 17:11:50
Score: 2.5
Natty:
Report link

Replace compileSdk with compileSdkVersion

Reasons:
  • Low length (1.5):
  • Has code block (-0.5):
  • Has no white space (0.5):
  • Single line (0.5):
  • Low reputation (0.5):
Posted by: dubok79

79733471

Date: 2025-08-12 17:10:50
Score: 3
Natty:
Report link

Mike,

Are you still looking for a REST API to use with Microsoft Access ?
If so you we can discuss it privately....

David R.
[email protected]

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

79733470

Date: 2025-08-12 17:10:46
Score: 9.5
Natty:
Report link

I am having the exact same problem now in 2025 with Eclipse 2025-06. I can't find a solution but my research shows that probably JSch needs to updated to use the newest OpenSSH authentication methods.

Just some context: Eclipse used to work fine and synchronizing projects easily. After a major server update, with more stringent security rules, the Eclipse sync failed. As I do not control the server (it is a big IT provider) we need Eclipse to implement more modern tools to make it more secure.

Any suggestions are welcome.

Reasons:
  • RegEx Blacklisted phrase (2): Any suggestions
  • RegEx Blacklisted phrase (2): I can't find a solution
  • RegEx Blacklisted phrase (2): can't find a solution
  • Long answer (-0.5):
  • No code block (0.5):
  • Me too answer (2.5): I am having the exact same problem
  • Low reputation (1):
Posted by: Rick

79733465

Date: 2025-08-12 17:04:44
Score: 1.5
Natty:
Report link

I'd like to add

Secur32.lib

for curl version 8.15.0 compilation.

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

79733460

Date: 2025-08-12 17:03:44
Score: 3.5
Natty:
Report link

If you're not targeting web, this documentation will probably help you :
https://docs.flutter.dev/cookbook/persistence/reading-writing-files

Basically you have to use the package path_provider with dart.io .

Reasons:
  • Blacklisted phrase (1): this document
  • Probably link only (1):
  • Low length (1):
  • Has code block (-0.5):
  • Low reputation (1):
Posted by: Médi Olivier

79733446

Date: 2025-08-12 16:41:38
Score: 4
Natty:
Report link

There are some limits in using DATA STRUCTURE in a SQLRPGLE. As we do not know the code, I can just enjoin you to check what limit you exceeded in that IBM reference :

https://www.ibm.com/docs/en/i/7.6.0?topic=cssiira-using-host-structures-in-ile-rpg-applications-that-use-sql

Regards,

Olivier.

Reasons:
  • Blacklisted phrase (1): Regards
  • Probably link only (1):
  • Low length (0.5):
  • No code block (0.5):
  • Low reputation (1):
Posted by: Olivier Drubigny

79733438

Date: 2025-08-12 16:21:33
Score: 3.5
Natty:
Report link

https://in.mathworks.com/help/stats/prob.nakagamidistribution.html

The help section in 'MATLAB' has a detailed description about Nakagami function and its application.

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

79733436

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

If anyone is using Sideloadly to install the .ipa on a device: it always auto-signed my app while installing, creating a new identifier in the apple connect, which didn't have any capabilties e.g. "Sign-In with Apple".

Sideloadly Settings

Changing the Sidloadly settings to "Normal" install, prevented this from happening and it worked again.

Reasons:
  • Whitelisted phrase (-1): it worked
  • No code block (0.5):
  • Low reputation (1):
Posted by: Gleitmehl

79733429

Date: 2025-08-12 16:14:31
Score: 5.5
Natty:
Report link

You can detect and correct duplicate records with a two-step process.

  1. Find duplicates by aggregation

  2. Review and correct them

Let me demonstrate it with dummy data.

enter image description here

---

POST translations_test/_bulk
{ "index": {} }
{ "raw_body_text": "¿Hola, cómo estás?", "translated_body_text": "Hello, how are you?" }
{ "index": {} }
{ "raw_body_text": "Muy bien, ¡gracias!", "translated_body_text": "Hello, how are you?" }
{ "index": {} }
{ "raw_body_text": "¿Cómo te va?", "translated_body_text": "Hello, how are you?" }
{ "index": {} }
{ "raw_body_text": "Estoy bien.", "translated_body_text": "I am fine." }

GET translations_test/_search
{
  "size": 0,
  "aggs": {
    "translations": {
      "terms": {
        "field": "translated_body_text.keyword",
        "min_doc_count": 2,
        "size": 10000
      },
      "aggs": {
        "unique_sources": {
          "terms": {
            "field": "raw_body_text.keyword",
            "size": 10000
          }
        },
        "having_multiple_sources": {
          "bucket_selector": {
            "buckets_path": {
              "uniqueSourceCount": "unique_sources._bucket_count"
            },
            "script": "params.uniqueSourceCount > 1"
          }
        }
      }
    }
  }
}

Tips:

Extra Tip:

Reasons:
  • Blacklisted phrase (1): ¿
  • Blacklisted phrase (1): está
  • Blacklisted phrase (1): cómo
  • Blacklisted phrase (1): Cómo
  • Blacklisted phrase (2): gracias
  • Blacklisted phrase (2): Estoy
  • Long answer (-1):
  • Has code block (-0.5):
  • High reputation (-1):
Posted by: Musab Dogan

79733426

Date: 2025-08-12 16:06:28
Score: 1.5
Natty:
Report link

When I moved to this OS, I was trying this as well. I remember that i had installed Python from the official site which is python.org, but I did not face this issue.

I suggest you update the python version on your system, ensure you installed the suitable version, and retry connecting to the virtual env via VS code. I suggest to follow the tip that was shared earlier in the following link, to reinstall, or update the Jupyter extension, and then relaunch your VS code software.

Also some quick checklist:

  1. ensure ipykernel is installed in your system (if not, install it)

  2. you can try registering the env by yourself on the kernel.

  3. ensure kernel is selected correctly inside your VS code app.

  4. if all above 3 points are satisfied, close the app and restart VS code.

Would love to hear if there's any more effective way to combat this. In addition to above, you can read the attached official documentation of VS code, with link to py environments section.

Reasons:
  • Long answer (-0.5):
  • No code block (0.5):
  • Starts with a question (0.5): When I
  • Low reputation (1):
Posted by: Deepthi B 21BCE5601

79733418

Date: 2025-08-12 15:59:26
Score: 1
Natty:
Report link

Yes you can use this Update, I think it will work.

Update RECIPES 
   set SEQUENCE = RRN(RECIPES);

Regards,

Olivier.

Reasons:
  • Blacklisted phrase (1): Regards
  • Whitelisted phrase (-1.5): you can use
  • Low length (1):
  • Has code block (-0.5):
  • Low reputation (1):
Posted by: Olivier Drubigny

79733400

Date: 2025-08-12 15:33:20
Score: 1
Natty:
Report link

Ah, it seems a repository cannot be imported via load directly, I need to use local_repository to import it first and then load definitions from the repository.

load("@bazel_tools//tools/build_defs/repo:local.bzl", "local_repository")
local_repository(name="hedron_compile_commands", path="tp/hedron_compile_commands")
load("@hedron_compile_commands//:workspace_setup.bzl", "hedron_compile_commands_setup")
hedron_compile_commands_setup()
Reasons:
  • Blacklisted phrase (0.5): I need
  • Has code block (-0.5):
  • Self-answer (0.5):
  • Low reputation (0.5):
Posted by: zsrkmyn

79733397

Date: 2025-08-12 15:30:19
Score: 1
Natty:
Report link

I found the answer in documentation , You can solve this by adding a custom Live Template in Phpstorm.
Go to Settings → Editor → Live Templates, click + to make a new one, give it an abbreviation (like html5), paste your HTML5 boilerplate in the template text, and under Applicable in, tick PHP.

Now, in a .php file (outside your PHP tags), just type your abbreviation and hit Tab — you’ll get the full boilerplate instantly.

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

79733392

Date: 2025-08-12 15:28:19
Score: 1.5
Natty:
Report link

Found this thread and had the same problem, referencing images with @ and it not working with Vue and Element plus.

I haven't had the chance to test it because I just don't have the time, but check this page out on the Element Plus website , they import ref from vue, then imageinstance from element-plus and then use that to handle the image.

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

79733390

Date: 2025-08-12 15:26:18
Score: 0.5
Natty:
Report link

The reason your code isn’t working is because YouTube’s getPlayerState() and Vimeo’s getPaused() don’t return results instantly — you need to use their APIs properly.

YouTube Example:

<script src="https://www.youtube.com/iframe_api"></script>
<iframe id="yt-player" width="560" height="315"
    src="https://www.youtube.com/embed/n1tswFfg-Ig?enablejsapi=1"
    frameborder="0" allowfullscreen>
</iframe>

<script>
let ytPlayer;

function onYouTubeIframeAPIReady() {
    ytPlayer = new YT.Player('yt-player', {
        events: {
            onReady: checkYTState
        }
    });
}

function checkYTState() {
    // 1 = playing, 2 = paused
    const state = ytPlayer.getPlayerState();
    console.log('YouTube state:', state);
}
</script>

Vimeo Example:

<script src="https://player.vimeo.com/api/player.js"></script>
<iframe id="vimeo-player" src="https://player.vimeo.com/video/237596019"
    width="640" height="360" frameborder="0" allowfullscreen>
</iframe>

<script>
const vimeoPlayer = new Vimeo.Player('vimeo-player');

function checkVimeoState() {
    vimeoPlayer.getPaused().then(function(paused) {
        console.log('Vimeo paused:', paused);
    });
}

checkVimeoState();
</script>
Reasons:
  • Blacklisted phrase (1): youtube.com
  • Long answer (-1):
  • Has code block (-0.5):
  • Low reputation (1):
Posted by: Asfand Yar

79733386

Date: 2025-08-12 15:25:18
Score: 2
Natty:
Report link

Image for screenshot of my playground on Azure AI Foundry

When we are using the Azure AI Foundry, within a project, we choose our models from model catalogue and try it out in the playground. Once you enter playground, there will be an option to upload data source, which serves as knowledge base based on which the response we are expecting will be grounded upon.

Here, if you see in the attached screenshot of my Azure AI Foundry's chat playground, you can see at top left, there is a blue button denoting 'view code' option. when you click on it, you can see the code, which can be integrated with your current prompt and app.

But, when you are trying to use the endpoints to connect to the model locally from your project, you see that the data on which you grounded the model's responses is not working. One suggestion you may try out, as I read in the following link on official Microsoft documentation for Azure AI Foundry: Microsoft's Documentation for Azure AI Foundry

I read that when we click on the view code button, in one of the lines of code, we should be able to see the endpoint in the format as follows: https://<project-name>.<region>.inference.ai.azure.com/chat

When I tried it on my Azure Foundry, I got in a different format, but if you're able to see the endpoint in the suggested format, it might solve your problem.

Would love to hear if I need to follow differently to get the correct endpoint format. Thanks!

Reasons:
  • Blacklisted phrase (0.5): Thanks
  • Blacklisted phrase (0.5): I need
  • Long answer (-1):
  • No code block (0.5):
  • Starts with a question (0.5): When we are
  • Low reputation (1):
Posted by: Deepthi

79733384

Date: 2025-08-12 15:25:18
Score: 3
Natty:
Report link

I had an issue similar to this while following the zero-config setup for xdebug but it was a setting of PhpStorm blocking external connections:

PhpStorm Settings. PHP > Debug > External Connections > Uncheck ignore external connections

After unchecking this I was able to connect.

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

79733370

Date: 2025-08-12 15:16:15
Score: 2
Natty:
Report link

When the ODL controller responds with a 404 message, it is usually because it could not process the request correctly, usually because it is not correctly formed. Take a look at the following guide that has some examples on how to configure and query the controller:

https://repositorioinstitucional.uaslp.mx/xmlui/handle/i/8772

Reasons:
  • Low length (0.5):
  • No code block (0.5):
  • Starts with a question (0.5): When the
  • Low reputation (0.5):
Posted by: D Arjona

79733366

Date: 2025-08-12 15:11:14
Score: 1.5
Natty:
Report link

You can do this without any converters:

<TextBlock Text="{Binding Name[0]}" />

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

79733365

Date: 2025-08-12 15:09:13
Score: 1
Natty:
Report link

Make sure state.user is defined before adding it to the localstorage.

useEffect(() => {
  if (state.user) {
    localStorage.setItem("user", JSON.stringify(state.user));
  }
}, [state.user]);
Reasons:
  • Low length (0.5):
  • Has code block (-0.5):
  • Low reputation (1):
Posted by: c_Jane

79733358

Date: 2025-08-12 15:02:11
Score: 2.5
Natty:
Report link

THe issue was resolved when we went to Trust Center -> Trust Center Settings ->ActiveX Settings and clicked the "Prompt me before enabling all controls with minimal restrictions" and restarted Excel.

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

79733350

Date: 2025-08-12 14:57:10
Score: 2
Natty:
Report link

The frontend runs in the browser, even though it may be docker starting it up.

Therefore the browser is not aware of your docker host-name resolution, and you should use localhost for your apiUrl in your angular application.

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

79733343

Date: 2025-08-12 14:51:08
Score: 2.5
Natty:
Report link

here you are inserting one row for every fruit, means if u add more that one it will not add into the number but create the multiple rows it is better to first combine the different fruits using ID for each using GROUP BY

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

79733340

Date: 2025-08-12 14:50:08
Score: 0.5
Natty:
Report link

please clear docker cache first, and then use this configuratin in your pom file

<configuration>
  <image>
    <builder>paketobuildpacks/builder-jammy-base</builder>
    <runImage>paketobuildpacks/run-jammy-base</runImage>
  </image>
</configuration>
Reasons:
  • Low length (0.5):
  • Has code block (-0.5):
  • Low reputation (0.5):
Posted by: amir rad

79733337

Date: 2025-08-12 14:49:07
Score: 2
Natty:
Report link

Perhaps this problem is also caused by what you observed. It is also possible github is experiencing an incident and just fails to show open PRs, which is what's happening for me at the moment (see screenshot).

Check https://www.githubstatus.com/ for incident status.

What it looks like when PRs are problematic on github

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

79733332

Date: 2025-08-12 14:41:06
Score: 2
Natty:
Report link

@PrivateToDatabase is a qualifier (thats missing from the docs).
The subcomponent module should have something like that:

@Module
public class DatabaseImplModule {
    @Provides
    @PrivateToDatabase
    Database provideDatabase() {
        return new Database();
    }
}

If you want constructor injection, it won't work (StackOverflowError). You would need to pass arguments to new Database(arg1, arg2) manually with new. On the other hand, field injection will work using members injector:

    @Provides
    @PrivateToDatabase
    Database provideDatabase(MembersInjector<Database> injector) {
        Database instance = new Database();
    injector.injectMembers(instance);
        return instance;
    }
Reasons:
  • Blacklisted phrase (1): StackOverflow
  • Long answer (-0.5):
  • Has code block (-0.5):
  • User mentioned (1): @PrivateToDatabase
  • Low reputation (1):
Posted by: qba47

79733328

Date: 2025-08-12 14:37:05
Score: 0.5
Natty:
Report link

I solved this by: When the form is submitted, use JavaScript to concatenate all the InputText values into one long string before the actual submit. This string is coded so it can be unpacked on the server into useable fields. The string is stored as a string field in the form's model.

Reasons:
  • Whitelisted phrase (-2): I solved
  • Low length (0.5):
  • No code block (0.5):
  • Self-answer (0.5):
  • Low reputation (1):
Posted by: SteveGundeck

79733326

Date: 2025-08-12 14:34:04
Score: 3
Natty:
Report link

One way to avoid having to escape all the curly brackets in your JSON might be to use the older-style Python string formatting...?

"""
{
   'ultimate': 'The %(foo)s is %(bar)s'
}
""" % {'foo':'answer', 'bar':42}
Reasons:
  • Low length (0.5):
  • Has code block (-0.5):
  • Ends in question mark (2):
  • Low reputation (1):
Posted by: Quentin Stafford-Fraser

79733323

Date: 2025-08-12 14:32:03
Score: 3.5
Natty:
Report link

Maybe you have an overflow error (ORE) in your USART. This flag can also cause the ISR te be called (again and again if not resetted).

Reasons:
  • Low length (1):
  • No code block (0.5):
  • Unregistered user (0.5):
  • Single line (0.5):
  • Low reputation (1):
Posted by: Jan Atze de Vries

79733319

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

You need to set targetLocation to your output folder and use targetNameExpression only for the filename. Also make sure your variables like ${version} are defined. For example: groovy Copy Edit fileCopyOperations( includes: 'build-*/Release/program', flattenFiles: true, renameFiles: true, sourceCaptureExpression: 'build-(.*)/Release/program$', targetLocation: "${env.WORKSPACE}/output", targetNameExpression: "\$1-program-${version}" ) Make sure version is defined in your script before this step. The FATAL: null error often happens if these are missing or misconfigured.

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

79733318

Date: 2025-08-12 14:28:02
Score: 3.5
Natty:
Report link

I ended up following react documentation for a nextjs app as with nextjs I wasnt able to see any fetch calls traces .

https://github.com/Da3az/signoz-sample/commit/07392131f84ad9040c0825777901fc7c8e6f1df3

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

79733317

Date: 2025-08-12 14:28:02
Score: 3.5
Natty:
Report link

If you got this error when starded the app with React Native, u must to donwload Visual Studio C++
https://learn.microsoft.com/pt-br/cpp/windows/latest-supported-vc-redist?view=msvc-170

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

79733311

Date: 2025-08-12 14:21:00
Score: 2.5
Natty:
Report link

There is a current effort to bring back l2switch for the latest Titanium release. This is a work in progress but it should start working soon.

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

79733306

Date: 2025-08-12 14:17:59
Score: 1.5
Natty:
Report link

Thanks for @greg-449 for the directions.

It turns out the injection system is not even initialized until PlatformUI.createAndRunWorkbench is ran.

I have found however that my TreeModelView class is created with working DI. Which is apparently because it is mentioned in plugins.xml It is still not clear whether I have (or need) a central point where I can register my own beans, but I could do so here with the ones needed there.

First of all, to inject the OSGI service inez I did not have to do anything beyond using @Inject in that class. I have even deleted basically all of the start() function of my bundle activator which was previously obtained the service.

I could also @Inject IEclipseContext, and use that tho create my own bean. I did that with my ModelTreeContentProvider class, which in turn again uses inez using injection:


public class TreeModelView extends ViewPart {
    public static final String ID = "io.github.magwas.inez.ui.treeModelView";

    @Inject
    IWorkbench workbench;

    @Inject
    Inez inez;

    @Inject
    IEclipseContext eclipseContext;

    private TreeViewer viewer;

    @Override
    public void createPartControl(Composite parent) {
        Assert.notNull(inez, "inez is null");
        ModelTreeContentProvider provider = ContextInjectionFactory
                .make(ModelTreeContentProvider.class, eclipseContext);
                //normal eclipse viewer stuff from here, deleted for brewity
        
    }

    @Override
    public void setFocus() {
        viewer.getControl().setFocus();
    }

}
public class ModelTreeContentProvider implements ITreeContentProvider {

    @Inject
    Inez inez;

    @Override
    public Object[] getElements(Object inputElement) {
        System.out.println("getElements " + inputElement);
        return inez.root().getChildren().toArray();
    }
//[...]
}

I also tried to just add a @Singleton annotation to my ModelTreeContentProvider class and inject it to my TreeModelView, but that did not work. Apaprently I have to register my beans using ContextInjectionFactory by hand. So until I find some central space where I can make all my beans early, I just use some of my views and editors for that, and factor out their business logic to some services.

Reasons:
  • Blacklisted phrase (0.5): Thanks
  • Blacklisted phrase (1): did not work
  • Long answer (-1):
  • Has code block (-0.5):
  • User mentioned (1): @greg-449
  • Self-answer (0.5):
Posted by: Árpád Magosányi

79733301

Date: 2025-08-12 14:10:58
Score: 3.5
Natty:
Report link

Issue is in the excellent KX12 to KX13 converter I was using.

Fix can be found here:

https://github.com/KenticoDevTrev/KX12To13Converter/issues/10

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

79733293

Date: 2025-08-12 14:07:57
Score: 2.5
Natty:
Report link

Microsoft official guideline: https://learn.microsoft.com/en-us/windows/wsl/tutorials/gui-apps#install-x11-apps

You have to install the x11 apps.

sudo apt install x11-apps -y
Reasons:
  • Probably link only (1):
  • Low length (1):
  • Has code block (-0.5):
  • Low reputation (1):
Posted by: tcluk624

79733277

Date: 2025-08-12 13:56:54
Score: 2
Natty:
Report link

the read number is correct, in the ITF code the last number is a control character not a barcode number

85890000000 chk0 71290328221 chk4 19070822119 chk1 64001262917 chk8

Correct number read is

85890000000712903282211907082211964001262917

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

79733269

Date: 2025-08-12 13:51:52
Score: 3
Natty:
Report link

Put the cursor where you want to split and then use loupe Commands, choose split.

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

79733253

Date: 2025-08-12 13:35:48
Score: 1
Natty:
Report link

As I've noticed a lot of people struggling with creation of a multilingual Avalonia app (myself included), I wrote an article on the issue after I figured out a working solution. You can read it here:
https://beemobile4.net/support/avalonia-articles/multilingual-web-application-based-on-avalonia-framework

Reasons:
  • Whitelisted phrase (-2): I figured out
  • Probably link only (1):
  • Low length (0.5):
  • No code block (0.5):
  • Low reputation (1):
Posted by: Vladimír Gregor

79733252

Date: 2025-08-12 13:35:48
Score: 3.5
Natty:
Report link

This is giving comments on users created in PostgreSQL. Thanks for providing this information in the Post

Reasons:
  • Blacklisted phrase (0.5): Thanks
  • Low length (1):
  • No code block (0.5):
  • Single line (0.5):
  • Low reputation (1):
Posted by: Jitendra JP Patel

79733250

Date: 2025-08-12 13:34:48
Score: 1
Natty:
Report link

To solve the above problem, please take the following specific steps:

Step 1: Find command line

a(function(){if(!e.isSecure){var a=c.lang.versionCheck.notificationMessage.replace("

in file ckeditor.js

Step 2: Edit the command line mentioned in step 1 as follows:

a(function(){e.isSecure=true;if(!e.isSecure){var a=c.lang.versionCheck.notificationMessage.replace(

This means that you assign the variable e.isSecure to always be TRUE and the result will no longer display the other message.

I have done it and found it effective.

Wishing you success.

Reasons:
  • Long answer (-0.5):
  • No code block (0.5):
  • Low reputation (1):
Posted by: Việt Ngô

79733248

Date: 2025-08-12 13:31:47
Score: 6
Natty:
Report link

Potential answer given by @pvmilk here: https://github.com/ray-project/ray/issues/5635. Also implements a similar fix

Reasons:
  • Probably link only (1):
  • Low length (1.5):
  • No code block (0.5):
  • User mentioned (1): @pvmilk
  • Self-answer (0.5):
  • Single line (0.5):
  • Low reputation (1):
Posted by: Bawb

79733247

Date: 2025-08-12 13:30:46
Score: 1
Natty:
Report link

Your question isn't very clear but maybe you want this?

p<- plot_ly(data = df,
            x= ~DAYS,
            y= ~SCORE,
            type = "scatter",
            mode = 'lines',
            color = ~GROUP) |>
  add_trace(split = ~ USUBJID, showlegend = FALSE)
p

resulting plot showing only a legend with the three colors

Reasons:
  • Probably link only (1):
  • Low length (0.5):
  • Has code block (-0.5):
  • Ends in question mark (2):
  • High reputation (-2):
Posted by: Roland

79733244

Date: 2025-08-12 13:30:46
Score: 2
Natty:
Report link

If you are using fragments, you can switch back to the previous one by adding the transaction to the back stack:

FragmentTransaction ft = getSupportFragmentManager().beginTransaction();

ft.replace(R.id.container, newFragment);

ft.addToBackStack(null);

ft.commit();

Reasons:
  • Low length (0.5):
  • No code block (0.5):
  • Low reputation (1):
Posted by: Zümra Arslanhan