79740749

Date: 2025-08-20 07:32:02
Score: 5
Natty:
Report link

Free & working (5 Millions installs) : https://www.devsense.com/en

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

79740709

Date: 2025-08-20 06:40:48
Score: 4.5
Natty:
Report link

How big are we talking? The new Plotly Cloud by default accepts Dash projects up to 80MB (and you could convert your excel to parquet for a more compact (and efficient footprint)

Reasons:
  • Low length (1):
  • No code block (0.5):
  • Contains question mark (0.5):
  • Unregistered user (0.5):
  • Single line (0.5):
  • Starts with a question (0.5): How
  • Low reputation (1):
Posted by: Dave Gibbon

79740693

Date: 2025-08-20 06:19:44
Score: 13.5
Natty: 7.5
Report link

I have the same issue. Did you manage to fix it?

Reasons:
  • Blacklisted phrase (1): I have the same issue
  • RegEx Blacklisted phrase (3): Did you manage to fix it
  • RegEx Blacklisted phrase (1.5): fix it?
  • Low length (1.5):
  • No code block (0.5):
  • Me too answer (2.5): I have the same issue
  • Ends in question mark (2):
  • Single line (0.5):
  • Low reputation (1):
Posted by: Simon Bowen

79740685

Date: 2025-08-20 06:13:41
Score: 5
Natty:
Report link

Pyenv is not made for windows. see https://github.com/pyenv/pyenv?tab=readme-ov-file

Have you tried pyenv-win (https://github.com/pyenv-win/pyenv-win)?

Reasons:
  • Whitelisted phrase (-1): Have you tried
  • Probably link only (1):
  • Low length (1.5):
  • No code block (0.5):
  • Ends in question mark (2):
  • Low reputation (1):
Posted by: Christoph Noll

79740605

Date: 2025-08-20 03:57:12
Score: 6
Natty: 5.5
Report link

How to detect landscape-left or rigtht in react native?

Reasons:
  • Low length (1.5):
  • No code block (0.5):
  • Ends in question mark (2):
  • Single line (0.5):
  • Starts with a question (0.5): How to
  • Low reputation (1):
Posted by: Prajwal VK

79740587

Date: 2025-08-20 03:24:06
Score: 4.5
Natty:
Report link

Open Gmail node, go to Settings and set Execute Once to true

enter image description here

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

79740568

Date: 2025-08-20 02:41:54
Score: 4
Natty:
Report link

if you use inject , make sure do it right
Inject setting with build setting

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

79740552

Date: 2025-08-20 01:52:44
Score: 4.5
Natty:
Report link

Try adding:

@rendermode InteractiveServer

to the top of your razor page.

Reasons:
  • Low length (1.5):
  • No code block (0.5):
  • Unregistered user (0.5):
  • User mentioned (1): @rendermode
  • Low reputation (1):
Posted by: Coder

79740539

Date: 2025-08-20 01:15:35
Score: 6.5
Natty: 4
Report link

Were you able to get into this API? Every query I attempt yields the same error your posted regardless of the endpoint.

Reasons:
  • RegEx Blacklisted phrase (3): Were you able
  • Low length (1):
  • No code block (0.5):
  • Contains question mark (0.5):
  • Single line (0.5):
  • Low reputation (1):
Posted by: Michael Klemens

79740534

Date: 2025-08-20 00:59:31
Score: 4.5
Natty: 4
Report link

A bit late to the party but, is there a way to use the in-app browser from Capacitor to prevent this horrific UX? If the browser window fl

Reasons:
  • Blacklisted phrase (1): is there a way
  • Low length (1):
  • No code block (0.5):
  • Contains question mark (0.5):
  • Single line (0.5):
  • Low reputation (1):
Posted by: Flobo79

79740515

Date: 2025-08-20 00:13:20
Score: 4.5
Natty:
Report link

Thanks @Hamed Jimoh and @Salketer for your comment. After studying the ricky123 VAD code base, I switched to use NonRealTimeVAD following the example (https://github.com/ricky0123/vad/blob/master/test-site/src/non-real-time-test.ts#L31). Here is the code used in a Web Worker:

    import { NonRealTimeVAD, NonRealTimeVADOptions, utils } from "@ricky0123/vad-web";
    
    var concatArrays = (arrays: Float32Array[]): Float32Array => {
        const sizes = arrays.reduce((out, next) => {
                                        out.push(out.at(-1) as number + next.length);
                                        return out;
                                    }, [0]);
        const outArray = new Float32Array(sizes.at(-1) as number);
        arrays.forEach((arr, index) => {
            const place = sizes[index];
            outArray.set(arr, place);
        });
        return outArray;
    };
    
    // const options: Partial<NonRealTimeVADOptions> = {
    //     // FrameProcessorOptions defaults
    //     positiveSpeechThreshold: 0.5,
    //     negativeSpeechThreshold: 0.5 - 0.15,
    //     preSpeechPadFrames: 3,
    //     redemptionFrames: 24,
    //     frameSamples: 512,
    //     minSpeechFrames: 9,
    //     submitUserSpeechOnPause: false,
    // };
    
    var Ricky0123VadWorker = class {
        vad: NonRealTimeVAD|null;
        sampleRate: number = 16000;
        
        constructor() {
            this.vad = null;
    
            this.init = this.init.bind(this);
            this.process = this.process.bind(this);
        }
        
        public async init(sampleRate: number) {
            console.log("VAD initialization request.");
            
            try {
                this.sampleRate = sampleRate;
                
                const baseAssetPath = '/vad-models/';
                defaultNonRealTimeVADOptions.modelURL = baseAssetPath + 'silero_vad_v5.onnx';
                // defaultNonRealTimeVADOptions.modelURL = baseAssetPath + 'silero_vad_legacy.onnx';
                this.vad = await NonRealTimeVAD.new(defaultNonRealTimeVADOptions); // default options
                
                console.log("VAD instantiated.");
                self.postMessage({ type: "initComplete" });
            }
            catch (error: any) {
                self.postMessage({ type: 'error', error: error.message });
            }
        }
        
        public async process(chunk: Float32Array) {
            // Received an audio chunk from the AudioWorkletNode.        
            
            let segmentNumber = 0;
            let buffer: Float32Array[] = [];
            for await (const {audio, start, end} of this.vad!.run(chunk, this.sampleRate)) {
                segmentNumber++;
                // do stuff with
                //   audio (float32array of audio)
                //   start (milliseconds into audio where speech starts)
                //   end (milliseconds into audio where speech ends)
                buffer.push(audio);
            }
            if (segmentNumber > 0) {
                console.log("Speech segments detected");
                const audio = concatArrays(buffer);
                self.postMessage({ type: 'speech', data: audio });
            }
            else {
                console.log("No speech segments detected");
            }
        }
        
        // Finalize the VAD process.
        public finish() {
            this.vad = null;
        }
    };
    
    var vadWorkerInstance = new Ricky0123VadWorker();
    
    self.onmessage = (event) => {
        const { type, data } = event.data;
        switch (type) {
            case "init":
                vadWorkerInstance.init(data);
                break;
            case "chunk":
                vadWorkerInstance.process(data);
                break;
            case "finish":
                vadWorkerInstance.finish();
                break;
        }
    };

The worker creation in the main thread:

    const vadWorker = new Worker(
                                          new URL('../lib/workers/ricky0123VadWorker.tsx', import.meta.url),
                                          { type: 'module' }
                                    );

Upon running the web page, it still hangs on this.vad = await NonRealTimeVAD.new() as console.log afterwards never outputs the trace message. I tried both silero_vad_legacy.onnx and silero_vad_v5.onnx. I also copied the following files into public/vad-models/ folder:

    silero_vad_v5.onnx
    silero_vad_legacy.onnx
    vad.worklet.bundle.min.js
    ort-wasm-simd-threaded.wasm
    ort-wasm-simd-threaded.mjs
    ort-wasm-simd-threaded.jsep.wasm
    ort.js

I suspect something wrong with underlying model loading. Without any error messages, it's hard to know where the problem is exactly. Could anyone enlighten me on what else I missed out to cause the hang?

Thanks

Reasons:
  • Blacklisted phrase (0.5): Thanks
  • Long answer (-1):
  • Has code block (-0.5):
  • Ends in question mark (2):
  • User mentioned (1): @and
  • User mentioned (0): @for
  • Self-answer (0.5):
  • Looks like a comment (1):
  • Low reputation (1):
Posted by: user30919975

79740503

Date: 2025-08-19 23:54:16
Score: 4.5
Natty: 5
Report link

Các bạn có thể tham khảo bài viết Toán tử REGEXP trong MySQL của bên mình https://webmoi.vn/toan-tu-regexp-trong-mysql/

Reasons:
  • Probably link only (1):
  • Low length (1.5):
  • No code block (0.5):
  • Single line (0.5):
  • Low reputation (1):
Posted by: Bùi Tấn Lực

79740364

Date: 2025-08-19 20:15:20
Score: 9.5
Natty: 8
Report link

did you figure out a solution to this issue?

Reasons:
  • RegEx Blacklisted phrase (3): did you figure out a solution to this
  • Low length (1.5):
  • No code block (0.5):
  • Ends in question mark (2):
  • Unregistered user (0.5):
  • Single line (0.5):
  • Starts with a question (0.5): did you
  • Low reputation (1):
Posted by: anonym

79740268

Date: 2025-08-19 18:14:43
Score: 5.5
Natty:
Report link

I have the same issue, and the answer is to stop the Services below in your system

  1. SQL Server (MSSQLSERVER)

  2. SQL Server Agent (MSSQLSERVER)

Now it will work.

Reasons:
  • Blacklisted phrase (1): I have the same issue
  • Low length (1):
  • No code block (0.5):
  • Me too answer (2.5): I have the same issue
  • Low reputation (0.5):
Posted by: Sanjay Dwivedi

79740151

Date: 2025-08-19 16:01:04
Score: 12.5
Natty: 7.5
Report link

Hi did you solve it? if yes, Could you provide the solution?

Reasons:
  • RegEx Blacklisted phrase (2.5): Could you provide the solution
  • RegEx Blacklisted phrase (3): did you solve it
  • RegEx Blacklisted phrase (1.5): solve it?
  • Low length (1.5):
  • No code block (0.5):
  • Ends in question mark (2):
  • Single line (0.5):
  • Low reputation (1):
Posted by: moon

79740111

Date: 2025-08-19 15:19:52
Score: 4
Natty:
Report link

Try to connect with the Kafka UI Plugin:
https://plugins.jetbrains.com/plugin/28167-kafka-ui-connect-to-kafka-brokers-produce-and-view-messages

With it you can connect to your Kafka Cluster easily

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

79740095

Date: 2025-08-19 15:00:46
Score: 4
Natty:
Report link

You can simply copy your HTML form and use a django forms generator tool like this one:
https://django-tutorial.dev/tools/forms-generator/

Reasons:
  • Probably link only (1):
  • Low length (1.5):
  • No code block (0.5):
  • Low reputation (1):
Posted by: nischal with no P

79740055

Date: 2025-08-19 14:33:37
Score: 4
Natty: 4
Report link

Try to connect with the Kafka UI Plugin:
https://plugins.jetbrains.com/plugin/28167-kafka-ui-connect-to-kafka-brokers-produce-and-view-messages/edit

With it you can connect to your Kafka Cluster easily

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

79740031

Date: 2025-08-19 14:19:32
Score: 4.5
Natty: 4.5
Report link

Is the package free? It seems my Mac can't find it in the pip market.

Reasons:
  • Low length (1.5):
  • No code block (0.5):
  • Contains question mark (0.5):
  • Single line (0.5):
  • Starts with a question (0.5): Is the
  • Low reputation (1):
Posted by: JOSEPH MANIA

79739942

Date: 2025-08-19 13:16:13
Score: 4.5
Natty:
Report link

@Charlie Harding "Instead of @RolesAllowed, I implemented a custom @PermissionsAllowed annotation. I created a PermissionChecker that uses a map to link specific actions (permissions) like menu.Doctors to a list of allowed roles. The system then checks if the logged-in user's roles match any of the allowed roles for that permission. This gives me a more granular, permission-based control rather than just role-based."

Reasons:
  • No code block (0.5):
  • User mentioned (1): @Charlie
  • User mentioned (0): @RolesAllowed
  • User mentioned (0): @PermissionsAllowed
  • Self-answer (0.5):
  • Single line (0.5):
  • Looks like a comment (1):
  • Low reputation (1):
Posted by: Dejan

79739907

Date: 2025-08-19 12:48:06
Score: 5.5
Natty: 5
Report link

https://marketplace.visualstudio.com/items?itemName=BuldiDev.hide-vscode-icon

I created an extension just for this reason, enjoy it

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

79739897

Date: 2025-08-19 12:38:03
Score: 11.5
Natty: 5.5
Report link

did anyone found a solution for this ?

Thx

Reasons:
  • Blacklisted phrase (1): Thx
  • Blacklisted phrase (2): anyone found
  • RegEx Blacklisted phrase (3): did anyone found a solution
  • Low length (1.5):
  • No code block (0.5):
  • Ends in question mark (2):
  • Starts with a question (0.5): did anyone
  • Low reputation (1):
Posted by: ruy

79739877

Date: 2025-08-19 12:13:58
Score: 4
Natty: 6.5
Report link

Can I also make each row's output a clickable hyperlink? Right now, it's displaying as plain text URLs that aren't clickable

Thanks

Reasons:
  • Blacklisted phrase (0.5): Thanks
  • Low length (1):
  • No code block (0.5):
  • Contains question mark (0.5):
  • Starts with a question (0.5): Can I also
  • Low reputation (1):
Posted by: LsL

79739855

Date: 2025-08-19 11:49:52
Score: 4.5
Natty: 4.5
Report link

Is there any way to attemt a removal of big files one by one?
I added old binary files, not removed, that are still in the commit history, but are completely useless.
I would like to delete only those files, and leave old source fode files untouched.

Thank you.

Reasons:
  • Blacklisted phrase (0.5): Thank you
  • Blacklisted phrase (1): Is there any
  • Low length (0.5):
  • No code block (0.5):
  • Contains question mark (0.5):
  • Starts with a question (0.5): Is there any
  • Low reputation (1):
Posted by: Luca Lista

79739852

Date: 2025-08-19 11:48:51
Score: 4.5
Natty:
Report link

Thanks to @robertklep (in comments):

The answer is: parts = str.split("\n\n");

Reasons:
  • Blacklisted phrase (0.5): Thanks
  • Low length (1.5):
  • No code block (0.5):
  • User mentioned (1): @robertklep
  • Self-answer (0.5):
  • Low reputation (0.5):
Posted by: TJS101

79739770

Date: 2025-08-19 10:24:30
Score: 5
Natty: 4
Report link

olá.. sou um completo iniciante em programação. mas com devido esforço e sagacidade, consegui escrever um bot de vendas automaticas com. entretanto ta faltando a sincronização api mercado pago, e bot telegram, no momento em que o cliente finaliza o pedido. o pix e gerado, copia e cola e imagem qr, o problema é que PUBLIC_BASE_URL precisa ser HTTPS público (Ex.: Render, Railway, Fly.io, VPS com domínio). Vá no painel do Mercado Pago e cadastre a URL do webhook: e eu não sei resolver isso. alguem pode me ajudar? abraços. sou leigo na programação, então ja sabem né

Reasons:
  • Blacklisted phrase (1): então
  • Blacklisted phrase (1): não
  • Blacklisted phrase (2): olá
  • Long answer (-0.5):
  • Has code block (-0.5):
  • Contains question mark (0.5):
  • Single line (0.5):
  • Low reputation (1):
Posted by: Diego Teodoro

79739762

Date: 2025-08-19 10:19:28
Score: 6
Natty: 5.5
Report link

Isn't this only valid for SLAVE devices? For the MASTER, isn't it safer to capture MISO at the same edge used to latch MOSI?

Reasons:
  • Low length (1):
  • No code block (0.5):
  • Ends in question mark (2):
  • Unregistered user (0.5):
  • Single line (0.5):
  • Starts with a question (0.5): Isn't this on
  • Low reputation (1):
Posted by: DoYouHumansExist

79739713

Date: 2025-08-19 09:40:19
Score: 4.5
Natty: 5
Report link

Các bạn có thể tham khảo bài viết String REPLACE() trong UPDATE MySQL của bên mình https://webmoi.vn/string-replace-trong-update-mysql/

Reasons:
  • Probably link only (1):
  • Low length (1.5):
  • No code block (0.5):
  • Single line (0.5):
  • Low reputation (1):
Posted by: Bùi Tấn Lực

79739705

Date: 2025-08-19 09:35:14
Score: 6.5
Natty:
Report link

when I try to run my C# program in VS Code I get the following message. Please help me.

Cannot activate the 'C#' extension because it depends on an unknown 'ms-dotnettools.vscode-dotnet-runtime' extension.

Reasons:
  • Blacklisted phrase (1): help me
  • RegEx Blacklisted phrase (3): Please help me
  • Low length (0.5):
  • No code block (0.5):
  • Starts with a question (0.5): when I
  • Low reputation (1):
Posted by: kourosh akbari

79739702

Date: 2025-08-19 09:32:13
Score: 4
Natty:
Report link

<div class="card-body flex-grow-1"></div>

Reasons:
  • Low length (1.5):
  • No code block (0.5):
  • Has no white space (0.5):
  • Single line (0.5):
  • Low reputation (1):
Posted by: M Reza Muktasib

79739645

Date: 2025-08-19 08:33:58
Score: 4.5
Natty:
Report link

Im getting the same issue
getReactModuleInfoProvider' overrides nothing FAILURE: Build failed with an exception. * What went wrong:

Fix : Change to this version “react-native-screens": "^2.18.1"

Reasons:
  • Low length (0.5):
  • No code block (0.5):
  • Me too answer (2.5): getting the same issue
  • Low reputation (1):
Posted by: Gowtham C

79739613

Date: 2025-08-19 08:04:50
Score: 4.5
Natty:
Report link

@Riesmeier, can you be more specific? I am encountering some issues while using the same DCMTK module. I have a multiframe image that I want to display. Before rendering each frame I pass to DicomImage::setWindow() the values corresponding to DCM_WindowCenter and DCM_WindowWidth (the "tag path" to them is PerFunctionalGroupsSequence -> Item X -> FrameVOILUTSequence -> Item X -> WindowCenter/WindowWidth, where X is the frame number).

This way, my program displays the image darker (lower contrast and lower luminosity) than it is displayed by other softwares (DICOMscope, Weasis), so I believe something is wrong with my implementation.

I tried another approach: I used the window center and window width corresponding to the first frame for all frames in the image. This way, I see no difference in luminosity and contrast to how the image is displayed in the above mentioned viewers. However, I think this is technically wrong.

What would you do to display a multiframe image where each frame has its own DCM_WindowCenter and DCM_WindowWidth ?

Does DicomImage::setWindow() expect raw values corresponding to DICOM tags or do I have to preprocess DCM_WindowCenter and DCM_WindowWidth before feeding them to DicomImage::setWindow()? If yes, what kind of preprocessing?

Reasons:
  • RegEx Blacklisted phrase (1): I want
  • Long answer (-1):
  • Has code block (-0.5):
  • Ends in question mark (2):
  • User mentioned (1): @Riesmeier
  • Looks like a comment (1):
  • Low reputation (1):
Posted by: Laurentiu

79739579

Date: 2025-08-19 07:24:41
Score: 5
Natty: 5
Report link

This is possible with GKE now: https://cloud.google.com/kubernetes-engine/docs/how-to/node-system-config#sysctl-options

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

79739374

Date: 2025-08-19 01:20:23
Score: 5
Natty:
Report link

Log Analytics Agent has been retired since August of 2024.

The Log Analytics Agent (OMS agent for Linux) was replaced by the Azure Monitoring Agent(AMA).

There are a few way to install the AMA agent but to start I would recommend referencing this document as it will be updated as the agent matures to reflect the current methods of installation overtime:
https://learn.microsoft.com/en-us/azure/azure-monitor/agents/azure-monitor-agent-manage?tabs=azure-portal

One of the biggest changes with the AMA agent is that the machine that you are installing it on has to be connected to azure, meaning that it has to be an Azure VM, or is Arc Connected: https://learn.microsoft.com/en-us/azure/network-watcher/connection-monitor-connected-machine-agent?tabs=WindowsScript

Once the AMA Agent is installed on the machine it does not gather any information by default, like the previous Log Analytics Agent. Instead you need to associate one or many Data Collection Rules to the machine in order to start the collection of data.

Data Collection Rules (DCRs) can range from pre-made (VMInsights) to custom (Performance metrics and custom logs in a single DCR). They allow for a level of granularity that could not be achieved with the Log Analytics agent: https://learn.microsoft.com/en-us/azure/azure-monitor/data-collection/data-collection-rule-overview

Once you have created a DCR to collect the data you want to collect and send that data where you would like it to be stored, you then finally need to create a Data Collection Rule Association (DCRA) that links a VM to the DCR: https://learn.microsoft.com/en-us/azure/azure-monitor/data-collection/data-collection-rule-associations?tabs=cli#create-new-association

I could write out all of the steps here and come off as thorough and impressive but the truth six months from now, the images would inaccurate and the steps would no longer work, the documents I reference will be updated as the products are, if you read something and have a question, please let me know or open a support ticket in the portal to work with CSS support.

Azure Monitoring Enterprise Support Technical Advisor - Marcus

Reasons:
  • Blacklisted phrase (1): this document
  • RegEx Blacklisted phrase (2.5): please let me know
  • Contains signature (1):
  • Long answer (-1):
  • No code block (0.5):
  • Low reputation (1):
Posted by: Marcus

79739362

Date: 2025-08-19 00:56:17
Score: 5.5
Natty:
Report link

Thanks for your message.

I am not seeing a specific version that you have the code base set to. You mentioned V2. Would you please try updating to the latest version(2.03 onwards?). The latest being V2.7.0 at https://github.com/cloudinary/cloudinary_npm/releases?page=1

Also, can you please try adding the following?

cloudinary.config({
    sdkSemver: engines.node,
});

Please let me know the outcome after trying these options?

Thanks,
Sree

Reasons:
  • Blacklisted phrase (0.5): Thanks
  • RegEx Blacklisted phrase (2.5): Please let me know
  • Has code block (-0.5):
  • Ends in question mark (2):
  • Low reputation (1):
Posted by: sreecloudinary

79739314

Date: 2025-08-18 22:55:51
Score: 4.5
Natty:
Report link

Fine,there has the answer.We should open the pycharm project in linux env . https://zhuanlan.zhihu.com/p/1926342469806715282

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

79739279

Date: 2025-08-18 21:56:35
Score: 6.5
Natty: 5
Report link

He intentado hablar con Apple , pero no me ayuda. También tengo un problema, mi ex marido era hacker , pero también ciberdelicuente . Lo conocéis todos . Pero no me deja en paz y por lo visto gana dinero conmigo. Bastante dinero . Ha hecho un block , ha publicado fotografías mías. Ha hablado de mis operaciones y etc etc .

Reasons:
  • Blacklisted phrase (2): ayuda
  • Blacklisted phrase (2): tengo
  • No code block (0.5):
  • Unregistered user (0.5):
  • Single line (0.5):
  • Low reputation (1):
Posted by: Eva

79739202

Date: 2025-08-18 20:14:08
Score: 4
Natty:
Report link
Hello I am trying to use ImageRenderer in a view containing an AsyncImage, but I have the same problem, only le placeholder appear as the result of the ImageRenderer.



struct ShareView: View {
@State private var renderedImage = Image(systemName: "photo")
    var body: some View {
            NavigationStack {
                VStack {
                    Spacer()
                    AsyncImage(url: URL(string: "http://myurl.com")) { image in
                        image.resizable()
                    } placeholder: {
                        ProgressView()
                    }
                    .frame(width: 100, height: 100)
                    .clipShape(Circle())
                    .padding()
                    
                    Spacer()
                    ShareLink("Export", item: renderedImage, preview: SharePreview(Text("Shared image"), image: renderedImage))
                    Spacer()
                }
                .onAppear {
                    render()
                }
            }
            .padding(.horizontal)
        }
        
        @MainActor func render() {
            let renderer = ImageRenderer(content: shareableView)
            if let uiImage = renderer.uiImage {
                renderedImage = Image(uiImage: uiImage)
            }
        }
    }
    }
Reasons:
  • Blacklisted phrase (1): I have the same problem
  • Blacklisted phrase (1): I am trying to
  • Long answer (-1):
  • Has code block (-0.5):
  • Me too answer (2.5): I have the same problem
  • Low reputation (1):
Posted by: Djiby

79739010

Date: 2025-08-18 16:26:03
Score: 4
Natty:
Report link

There is a hide option in the context menu

A description showing the context menu

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

79738970

Date: 2025-08-18 15:38:51
Score: 4
Natty:
Report link

I'm not sure if this will help you or not, but please don't downvote my answer if it's not helpful.

You can try using swiperjs to achieve the same behavior.

Reasons:
  • RegEx Blacklisted phrase (2): downvote
  • Low length (1):
  • No code block (0.5):
  • Low reputation (0.5):
Posted by: Ahmed Radi

79738950

Date: 2025-08-18 15:26:46
Score: 4
Natty:
Report link

For more information, refer to the following SurveyJS support thread: https://surveyjs.answerdesk.io/ticket/details/t24552/using-angular-outputting-stock-questions-but-in-our-specific-format

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

79738670

Date: 2025-08-18 12:00:46
Score: 5
Natty:
Report link

Just checking something if it wrks okay else i will delete
https://www.youtube.com/watch?v=kGo0AxoOQYw

Reasons:
  • Blacklisted phrase (1): youtube.com
  • Probably link only (1):
  • Low length (1.5):
  • No code block (0.5):
  • Low reputation (1):
Posted by: Nitin Kumar

79738522

Date: 2025-08-18 09:39:07
Score: 4
Natty: 5
Report link

Hi look into this project, could be usefull:

https://github.com/Nukepayload2/VbWinUI3Demos

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

79738503

Date: 2025-08-18 09:34:05
Score: 6
Natty: 7
Report link

How can I build a seamless charting system with both real-time and full historical OHLCV data using my own chain data and external APIs?

Reasons:
  • Blacklisted phrase (0.5): How can I
  • Low length (1):
  • No code block (0.5):
  • Ends in question mark (2):
  • Single line (0.5):
  • Starts with a question (0.5): How can I
  • Low reputation (1):
Posted by: M.WAHAJ KHAN

79738478

Date: 2025-08-18 09:15:58
Score: 7
Natty:
Report link

I have the same problem, cannot enter an .up.railway.app domain...

Reasons:
  • Blacklisted phrase (1): I have the same problem
  • Low length (1.5):
  • No code block (0.5):
  • Me too answer (2.5): I have the same problem
  • Single line (0.5):
  • Low reputation (1):
Posted by: user31296471

79738400

Date: 2025-08-18 07:48:34
Score: 7.5
Natty: 5
Report link

Please check this link also for more explanation https://usingaspdotnet.blogspot.com/2025/08/adult-validation-using-javascript.html

Reasons:
  • Blacklisted phrase (1): Please check this
  • Blacklisted phrase (1): this link
  • RegEx Blacklisted phrase (1): check this link
  • Probably link only (1):
  • Low length (1.5):
  • No code block (0.5):
  • Single line (0.5):
  • Low reputation (1):
Posted by: Dench Designs

79738365

Date: 2025-08-18 07:08:22
Score: 4.5
Natty:
Report link

so after going through everything, python versions, jdk versions etc. I finally found the solution. All thanks to @samkart, for providing the link for the similar question. there I got to know that it works with python 3.11.8 and I gave it a try and it works now. In browser as well as in vscode.
Thanks man

Reasons:
  • Blacklisted phrase (0.5): thanks
  • Blacklisted phrase (0.5): Thanks
  • Low length (0.5):
  • No code block (0.5):
  • User mentioned (1): @samkart
  • Self-answer (0.5):
  • Low reputation (1):
Posted by: supinebeing

79738255

Date: 2025-08-18 04:04:42
Score: 10.5
Natty: 4.5
Report link

I'm facing the same issue right now, even with plain html with no css/js/images. Have you solved it?

Reasons:
  • Blacklisted phrase (2): Have you solved it
  • RegEx Blacklisted phrase (1.5): solved it?
  • Low length (1):
  • No code block (0.5):
  • Me too answer (2.5): I'm facing the same issue
  • Ends in question mark (2):
  • Low reputation (1):
Posted by: Kevin C.

79738172

Date: 2025-08-17 23:39:49
Score: 4
Natty:
Report link

Answer is in the comment I posted above...

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

79738167

Date: 2025-08-17 23:23:45
Score: 6.5
Natty:
Report link

Question:

enter image description here This is the screenshot of the drop-down list, how can I get the XPath of a value in the drop-down list in Google Chrome?

Reasons:
  • Blacklisted phrase (0.5): how can I
  • Blacklisted phrase (1): enter image description here
  • Low length (1):
  • No code block (0.5):
  • Ends in question mark (2):
  • Self-answer (0.5):
  • Low reputation (1):
Posted by: Henry Demking

79738109

Date: 2025-08-17 21:23:18
Score: 7.5
Natty: 5
Report link

I know this an old post but the above solution does not work anymore in thunderbird 141 (it did work up to thunderbird 102). It seems that ToggleMessageTag(key, addKey) function does not exist any more. Does anybody have an updated solution?

Reasons:
  • RegEx Blacklisted phrase (3): Does anybody have an updated
  • Low length (0.5):
  • No code block (0.5):
  • Ends in question mark (2):
  • Single line (0.5):
  • Low reputation (1):
Posted by: MacGyver

79738061

Date: 2025-08-17 19:33:53
Score: 6.5
Natty: 4.5
Report link

Have you solved this problem somehow? I’m trying to do the same thing

Reasons:
  • Blacklisted phrase (1): trying to do the same
  • RegEx Blacklisted phrase (1.5): solved this problem somehow?
  • Low length (1.5):
  • No code block (0.5):
  • Contains question mark (0.5):
  • Single line (0.5):
  • Low reputation (1):
Posted by: Keplayo

79737987

Date: 2025-08-17 17:06:18
Score: 6
Natty:
Report link

I've been collecting MuJoCo resources here

https://github.com/Tadinu/awesome_mujoco

If you have some good ones particularly with educational values, may you help with a PR/issue? Thanks!

Reasons:
  • Blacklisted phrase (0.5): Thanks
  • Contains signature (1):
  • Low length (1):
  • No code block (0.5):
  • Ends in question mark (2):
  • Self-answer (0.5):
  • Low reputation (0.5):
Posted by: Tadinu

79737978

Date: 2025-08-17 16:54:14
Score: 4.5
Natty:
Report link

try to use aria-autoComplete ="off"

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

79737940

Date: 2025-08-17 16:23:06
Score: 10.5
Natty: 8
Report link

@ali-qamsari so you did not any solution for this ??

Reasons:
  • Blacklisted phrase (1.5): any solution
  • RegEx Blacklisted phrase (2): any solution for this ?
  • Low length (1.5):
  • No code block (0.5):
  • Ends in question mark (2):
  • User mentioned (1): @ali-qamsari
  • Single line (0.5):
  • Looks like a comment (1):
  • Low reputation (0.5):
Posted by: Sushil Adokar

79737901

Date: 2025-08-17 15:07:47
Score: 10
Natty:
Report link

This questions is far from being clear enough. What instances specifically? Do you have a minimum code example to reproduce the bug? Do you have any logs?

Reasons:
  • RegEx Blacklisted phrase (2.5): Do you have a
  • RegEx Blacklisted phrase (2.5): Do you have any
  • Low length (1):
  • No code block (0.5):
  • Ends in question mark (2):
  • Single line (0.5):
  • Low reputation (1):
Posted by: ZeSeb

79737868

Date: 2025-08-17 13:51:29
Score: 5
Natty: 4.5
Report link

I created a VS Code extension to help with this:

https://marketplace.visualstudio.com/items?itemName=ch4mb3rs.stage-selected

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

79737867

Date: 2025-08-17 13:49:28
Score: 5
Natty: 5.5
Report link

How can I put these fields not at the start and not at the end but between the sku and the price?
Thx.

SKU
Min
Max
Step
Price

Reasons:
  • Blacklisted phrase (1): Thx
  • Blacklisted phrase (0.5): How can I
  • Low length (1):
  • No code block (0.5):
  • Contains question mark (0.5):
  • Starts with a question (0.5): How can I
  • Low reputation (1):
Posted by: dakota259

79737853

Date: 2025-08-17 13:29:24
Score: 4
Natty: 4
Report link

business_management permission is what solved my problem.

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

79737801

Date: 2025-08-17 11:48:02
Score: 4
Natty:
Report link

Found an answer, just use flutter flavors like described in the Docs

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

79737671

Date: 2025-08-17 06:48:59
Score: 4.5
Natty: 5
Report link

Have you found the solution?

I tried to use AntdRegistry in layout but it does not work also

Reasons:
  • RegEx Blacklisted phrase (2.5): Have you found the solution
  • Low length (1):
  • Has code block (-0.5):
  • Contains question mark (0.5):
  • Low reputation (1):
Posted by: Vata

79737645

Date: 2025-08-17 05:22:42
Score: 5
Natty: 5
Report link

I ended up this problem either. it was supporatable (I means the property mask-image)in chrom and firefox. but why doesn't work anymore?

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

79737619

Date: 2025-08-17 03:49:21
Score: 4.5
Natty: 5
Report link
header 1 header 2
cell 1 cell 2
cell 3 cell 4https://www.facebook.com/ye.naung.311493?mibextid=ZbWKwL
Reasons:
  • Probably link only (1):
  • Low length (1.5):
  • No code block (0.5):
  • Unregistered user (0.5):
  • Low reputation (1):
Posted by: user31289236

79737613

Date: 2025-08-17 03:13:14
Score: 4.5
Natty:
Report link

if you get this on web you need to add PWA elements check this https://stripe.capacitorjs.jp/docs/angular/

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

79737534

Date: 2025-08-16 22:56:24
Score: 4
Natty:
Report link

use Wavebox browser............

Reasons:
  • Low length (2):
  • No code block (0.5):
  • Has no white space (0.5):
  • Single line (0.5):
  • Filler text (0.5): ............
Posted by: LΞИIИ

79737484

Date: 2025-08-16 20:59:00
Score: 8.5
Natty: 6
Report link

did you solve it? I'm trying to catch silences to add punctuation, the one provided by google sucks... a least in the free tier

Reasons:
  • RegEx Blacklisted phrase (3): did you solve it
  • RegEx Blacklisted phrase (1.5): solve it?
  • Low length (1):
  • No code block (0.5):
  • Contains question mark (0.5):
  • Single line (0.5):
  • Starts with a question (0.5): did you solve it
  • Low reputation (1):
Posted by: Jorge Ivan Ramos Zebadúa

79737478

Date: 2025-08-16 20:46:57
Score: 5
Natty:
Report link

This nice code of yours didn't work for me. I followed your suggestion to no avail. See below, please.

R> getSymbols("AAPL")
[1] "AAPL"
R> addFibonacci <- newTA(Fibonacci,on=1)
R> chartSeries(AAPL, TA="addFibonacci()")
Error in runMin(x, n = n) (from #4) : 
  ncol(x) > 1. runMin only supports univariate 'x'
R> R> Fibonacci(AAPL)
Error in runMin(x, n = n) (from #4) : 
  ncol(x) > 1. runMin only supports univariate 'x'
R> 

How to solve it?

TIA,

Andre Luiz
Reasons:
  • Blacklisted phrase (1): How to solve
  • RegEx Blacklisted phrase (1.5): How to solve it?
  • RegEx Blacklisted phrase (2): TIA
  • Has code block (-0.5):
  • Low reputation (1):
Posted by: André Luiz Tietböhl Ramos

79737380

Date: 2025-08-16 17:47:16
Score: 8
Natty: 5
Report link

I'm trying to use a "MaskEditText" in Android Studio with Kotlin code... I've tried several versions and have never been able to get a satisfactory result. It's worth noting that I want the mask to remain visible while typing... Can someone provide me with some working code to use as a starting point? Thanks.

Reasons:
  • Blacklisted phrase (0.5): Thanks
  • RegEx Blacklisted phrase (2.5): Can someone provide me
  • RegEx Blacklisted phrase (1): I want
  • No code block (0.5):
  • Ends in question mark (2):
  • Single line (0.5):
  • Low reputation (1):
Posted by: Denis NICOLAÏ

79737296

Date: 2025-08-16 15:52:49
Score: 12
Natty: 7.5
Report link

help i have the same problem and i dont have javascript extensions for it can you just make like a.color= the variable of my color where a is the polygon???????? im new

Reasons:
  • Blacklisted phrase (1): i have the same problem
  • Blacklisted phrase (1): ???
  • RegEx Blacklisted phrase (1.5): im new
  • Low length (1):
  • No code block (0.5):
  • Me too answer (2.5): i have the same problem
  • Ends in question mark (2):
  • Unregistered user (0.5):
  • Single line (0.5):
  • Filler text (0.5): ????????
  • Low reputation (1):
Posted by: wes

79737275

Date: 2025-08-16 15:14:40
Score: 4
Natty:
Report link

Turbo behaved as it should. It was a bit of confusion.

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

79737214

Date: 2025-08-16 13:32:16
Score: 4.5
Natty:
Report link

i want to replace each letters by the letters 13 spaces ahead in alphabetic order.

Reasons:
  • RegEx Blacklisted phrase (1): i want
  • Low length (1.5):
  • No code block (0.5):
  • Single line (0.5):
  • Low reputation (1):
Posted by: user31055931

79737205

Date: 2025-08-16 13:25:14
Score: 4
Natty:
Report link

Solved, when updated the mac to Sequoia.

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

79737124

Date: 2025-08-16 10:44:39
Score: 4
Natty:
Report link

it's been a few years, but I'd like to know if you managed to resolve your issues and how. My professor proposed me a thesis on system administration using osquery and I was trying to use the process_file_events table but it returns nothing.
I start osqueryi using sudo with the following flags:

osqueryi \
        --verbose \
        --disable_audit=false \
        --audit_allow_config=true \
        --audit_persist=true \
        --audit_allow_process_events=true \
        --disable_events=false \
        --audit_allow_fim_events=true \
        --enable_file_events=true

as it happened to you, the file_events table works fine and likewise the process_events table, but not the process_file_events.
The messages show no warnings or errores, and they actually say process_file_events and audit rules are installed correctly:

I0816 12:27:30.478456  9500 eventfactory.cpp:390] Starting event publisher run loop: inotify 
I0816 12:27:30.478528  9498 eventfactory.cpp:390] Starting event publisher run loop: auditeventpublisher 
I0816 12:27:30.478590  9495 auditdnetlink.cpp:372] Attempting to configure the audit service 
I0816 12:27:30.478618  9495 auditdnetlink.cpp:400] Enabling audit rules for the process_events (execve, execveat) table 
I0816 12:27:30.478623  9495 auditdnetlink.cpp:427] Enabling audit rules for the process_file_events table   

Am I doing something wrong? How did you handle your issues? I read there were bugs with this table, do you think they're still in existence?

Reasons:
  • Blacklisted phrase (2): something wrong?
  • Long answer (-1):
  • Has code block (-0.5):
  • Ends in question mark (2):
  • Unregistered user (0.5):
  • Low reputation (1):
Posted by: SuperT

79737040

Date: 2025-08-16 08:27:08
Score: 4.5
Natty:
Report link

Use this package, rhis fixes and decodes malformed json.

json_repair_flutter: ^2.0.2

https://pub.dev/packages/json_repair_flutter

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

79737035

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

My app is also facing the same issue. Some users can receive normal remote notifications but cannot receive any VoIP notifications.

For these users:

Reasons:
  • No code block (0.5):
  • Me too answer (2.5): also facing the same issue
  • Low reputation (1):
Posted by: Rock Jan

79737021

Date: 2025-08-16 07:37:55
Score: 6
Natty:
Report link

bro who are you people and how did you get to this level of intelligence. fourth year SWE student here left confused as hell. Im cooked for sure.

Reasons:
  • RegEx Blacklisted phrase (3): did you get to this
  • Low length (1):
  • No code block (0.5):
  • Single line (0.5):
  • Low reputation (1):
Posted by: Sami

79736974

Date: 2025-08-16 05:44:32
Score: 4
Natty:
Report link

When it comes to sound quality, a few headphone brands repeatedly stand out for their premium audio performance. Here are some of the top options known for excellent sound quality see more

Reasons:
  • Low length (1):
  • No code block (0.5):
  • Unregistered user (0.5):
  • Single line (0.5):
  • Starts with a question (0.5): When it
  • Low reputation (1):
Posted by: user31284561

79736956

Date: 2025-08-16 04:32:16
Score: 5
Natty: 4.5
Report link

You can give Hugeicons a try - https://www.npmjs.com/package/@hugeicons/react

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

79736909

Date: 2025-08-16 00:25:22
Score: 4
Natty:
Report link

Following Marce Puente's advice, I commented out the .setFont statement and the text is now aligned. Thanks!

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

79736888

Date: 2025-08-15 23:30:10
Score: 5.5
Natty: 5
Report link

how did you manage to connect your app to the printer I'm not sure how to do that... did you use an npm package? Im trying with this one btw

tp-react-native-bluetooth-printer
Reasons:
  • RegEx Blacklisted phrase (3): did you manage to
  • Low length (1):
  • Has code block (-0.5):
  • Contains question mark (0.5):
  • Starts with a question (0.5): how did you
  • Low reputation (1):
Posted by: Hugo Hav

79736613

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

I made it way to difficult. I just had to read lines until I find two newlines.

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

79736606

Date: 2025-08-15 16:08:25
Score: 5
Natty:
Report link

Currently having the exact same issue, the project I was working suddenly the emulator says unsupported, currently trying to fix it.

If I manage too I'll come back to help 😉

Reasons:
  • Low length (1):
  • No code block (0.5):
  • Me too answer (2.5): having the exact same issue
  • Low reputation (1):
Posted by: Francisco Simões

79736478

Date: 2025-08-15 13:47:48
Score: 5
Natty: 7
Report link

Fiz a mudança no settings do Mac pois quero que abra o LiveServer no chrome private mas continua abrindo no regular. Qual o erro? Algum outro local que devo mudar?

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

79736359

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

sed -i '/END_MARKER/,$d' filename

Reasons:
  • Low length (2):
  • No code block (0.5):
  • Has no white space (0.5):
  • Single line (0.5):
  • Low reputation (1):
Posted by: DimiDr0l

79736343

Date: 2025-08-15 10:51:04
Score: 5.5
Natty:
Report link

What @Tom Brunberg told works!!

Thank you very much!!

Reasons:
  • Blacklisted phrase (0.5): Thank you
  • Low length (1.5):
  • No code block (0.5):
  • User mentioned (1): @Tom
  • Self-answer (0.5):
  • Starts with a question (0.5): What
  • Low reputation (1):
Posted by: ZinkPT

79736324

Date: 2025-08-15 10:23:57
Score: 4
Natty:
Report link

Everything suggests that the problem is caused by the latest update of the "Maven for Java" extension in VS Code for Windows. I’ll have to wait for them to release another update and hope it fixes the issue. On a Mac, I don’t notice the same problem. Thank for your time. Kind regards.

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

79736226

Date: 2025-08-15 08:25:23
Score: 6
Natty:
Report link

I have the same problems, thinks that we should have the pages_messaging permissions. I tried but Facebook reviewers are toooooo slow and I have a long time have not reviewed my permissions. If you don't have that permission, You can't get the lastname and firstname, and also picture,email,....

Reasons:
  • Blacklisted phrase (1): I have the same problem
  • Low length (0.5):
  • No code block (0.5):
  • Me too answer (2.5): I have the same problem
  • Single line (0.5):
  • Low reputation (1):
Posted by: Bui Xuan Duc K17 HL

79736213

Date: 2025-08-15 08:11:20
Score: 4.5
Natty: 5
Report link

If someone comes across this in 2025, then here is the solution https://developer.android.com/studio/known-issues#run-config-missing-gradle

Reasons:
  • Probably link only (1):
  • Low length (1.5):
  • No code block (0.5):
  • Single line (0.5):
  • Low reputation (1):
Posted by: Алексей Орехов

79736206

Date: 2025-08-15 08:05:17
Score: 6.5
Natty: 5
Report link

Check this link also with more explanation https://usingaspdotnet.blogspot.com/2025/07/how-to-display-word-file-in-html-using.html

Reasons:
  • Blacklisted phrase (1): this link
  • RegEx Blacklisted phrase (1): Check this link
  • Probably link only (1):
  • Low length (1.5):
  • No code block (0.5):
  • Single line (0.5):
  • Low reputation (1):
Posted by: Dench Designs

79736166

Date: 2025-08-15 07:15:02
Score: 4
Natty:
Report link

I like to tone down my buttons if they are in disabled states with bg-opacity-* opacity is not preferable as this will also tone down the text. Lets say my buttons have no multiple types like primary, secondary, success etc. with the new way i would need to explode my logic for applying the disabled state for each type instead of just adding the bg-opacity. would you say this is a legitimate Use Case for introducing this utility back or am i missing another feature of tailwind?

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

79736143

Date: 2025-08-15 06:32:51
Score: 4
Natty:
Report link

Declension of words in plural in Django templates. Solution for Russian language: Склонение слов во множественном числе в шаблонах Django.

Reasons:
  • Probably link only (1):
  • Low length (1.5):
  • No code block (0.5):
  • Low reputation (1):
Posted by: Василий Жилкин

79736066

Date: 2025-08-15 03:55:15
Score: 5
Natty: 4.5
Report link

Thank you, looking for fun sounds? Discover viral sound buttons and free online soundboards at SoundbuttonsPRO.com - click and play instantly! You can download free ringtones at https://soundbuttonspro.com/

Reasons:
  • Blacklisted phrase (0.5): Thank you
  • Contains signature (1):
  • Low length (1):
  • No code block (0.5):
  • Contains question mark (0.5):
  • Single line (0.5):
  • Low reputation (1):
Posted by: soundbuttonspro

79735874

Date: 2025-08-14 20:41:36
Score: 4
Natty:
Report link

:P1_ITEM := replace(:P1_ITEM, '&', '&');

Reasons:
  • Low length (1.5):
  • No code block (0.5):
  • Single line (0.5):
  • No latin characters (0.5):
  • Low reputation (1):
Posted by: Mohamed Mam

79735837

Date: 2025-08-14 19:44:05
Score: 4
Natty:
Report link

I was also facing this problem from two days and built the solution to tackle this Problem. You can checkout the wiki here to generate access token for Vimeo API.

Reasons:
  • Blacklisted phrase (1): also facing this
  • Low length (1):
  • No code block (0.5):
  • Single line (0.5):
  • Low reputation (1):
Posted by: Nebula

79735812

Date: 2025-08-14 19:06:55
Score: 8.5
Natty:
Report link

Can you post here logs from Lakekeeper?

Reasons:
  • RegEx Blacklisted phrase (2.5): Can you post
  • Low length (2):
  • No code block (0.5):
  • Ends in question mark (2):
  • Single line (0.5):
  • Starts with a question (0.5): Can you post
  • Low reputation (0.5):
Posted by: v-kessler

79735676

Date: 2025-08-14 16:28:14
Score: 4
Natty: 4.5
Report link

I have made this one open-source and importable as a package

https://github.com/diegotid/circular-range-slider

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

79735539

Date: 2025-08-14 14:34:44
Score: 10.5
Natty: 7
Report link

did you manage to solve the issue?

Reasons:
  • RegEx Blacklisted phrase (3): did you manage to solve the
  • RegEx Blacklisted phrase (1.5): solve the issue?
  • Low length (2):
  • No code block (0.5):
  • Ends in question mark (2):
  • Single line (0.5):
  • Starts with a question (0.5): did you
  • Low reputation (0.5):
Posted by: zyka

79735447

Date: 2025-08-14 13:14:23
Score: 11
Natty: 7.5
Report link

same exact problem, did you fix this?

Reasons:
  • RegEx Blacklisted phrase (3): did you fix this
  • RegEx Blacklisted phrase (1.5): fix this?
  • Low length (2):
  • No code block (0.5):
  • Ends in question mark (2):
  • Unregistered user (0.5):
  • Single line (0.5):
  • Low reputation (1):
Posted by: Grace

79735429

Date: 2025-08-14 12:56:18
Score: 5
Natty:
Report link

I am having the same issue. I have burned through 5 motherboards so far while developing a PCIe card with Xilinx MPSoC. Some reddit user says the Xilinx PCIe would not cooperate with certain motherboards and it will corrupt the BIOS. It's hard to imagine the BIOS would get bad by running a PCIe device. But apparently they fixed the motherboard by manually flashing the BIOS again. I haven't seen any discussion on this issue on Xilinx forums.

Reasons:
  • No code block (0.5):
  • Me too answer (2.5): I am having the same issue
  • Unregistered user (0.5):
  • Single line (0.5):
  • Low reputation (1):
Posted by: user31274703

79735356

Date: 2025-08-14 11:53:03
Score: 5
Natty: 6.5
Report link

Why shouldn't Account-Id be a company Name?

Otherwise you also can set the Account-Name
https://support.pendo.io/hc/en-us/articles/21326198721563-Choose-IDs-and-metadata

https://support.pendo.io/hc/en-us/articles/9430394517403-Configure-for-Feedback

Reasons:
  • Probably link only (1):
  • Low length (1.5):
  • No code block (0.5):
  • Contains question mark (0.5):
  • Starts with a question (0.5): Why
  • Low reputation (1):
Posted by: HexS4lem