79550076

Date: 2025-04-02 08:25:48
Score: 4
Natty:
Report link

I used sqlite:///:localhost: and it solved. Thanks to @rasjani for the suggestion!

Reasons:
  • Blacklisted phrase (0.5): Thanks
  • Low length (1.5):
  • Has code block (-0.5):
  • User mentioned (1): @rasjani
  • Self-answer (0.5):
  • Single line (0.5):
  • Low reputation (0.5):
Posted by: Ryan

79550010

Date: 2025-04-02 07:59:41
Score: 4.5
Natty:
Report link

Just by looking at your code, I haven’t tested it - your custom exception (STOP) logic currently contains a return statement directly before the exception. Exception is never raised.

How to fix? Remove the aforementioned return statement

Reasons:
  • RegEx Blacklisted phrase (1.5): How to fix?
  • Low length (0.5):
  • Has code block (-0.5):
  • Ends in question mark (2):
  • Low reputation (1):
Posted by: kris-szczepaniak

79550003

Date: 2025-04-02 07:56:40
Score: 4
Natty:
Report link

Thanks for reporting this. Unfortunately, there is no such option to dump all configuration at runtime, but you can always debug nginx process to dump configuration, as mentioned in official docs: https://docs.nginx.com/nginx/admin-guide/monitoring/debugging/#dumping-nginx-configuration-from-a-running-process

Reasons:
  • Blacklisted phrase (0.5): Thanks
  • Probably link only (1):
  • Low length (0.5):
  • No code block (0.5):
  • Single line (0.5):
  • Low reputation (1):
Posted by: CRS-Dev

79549998

Date: 2025-04-02 07:53:39
Score: 4.5
Natty: 5
Report link

https://github.com/steveio/CircularBuffer in case anyone interested and https://github.com/steveio/ArrayStats for running trend analysis

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

79549954

Date: 2025-04-02 07:34:33
Score: 4
Natty:
Report link

I ended up using the MediaStore API, and that works now.

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

79549939

Date: 2025-04-02 07:28:30
Score: 7 🚩
Natty:
Report link

@msd

after adding cjs file also didn't worked

has anyone solved it and i have done the docker approach DOCKER SAMPLE, it is also not working same error: "Browser was not found at the configured executablePath"

Reasons:
  • Blacklisted phrase (1): anyone solved
  • RegEx Blacklisted phrase (3): has anyone solved
  • Low length (0.5):
  • No code block (0.5):
  • User mentioned (1): @msd
  • Low reputation (1):
Posted by: mfaizhussain7

79549920

Date: 2025-04-02 07:17:27
Score: 8 🚩
Natty: 4.5
Report link

any luck with this? facing the same issue

Reasons:
  • Blacklisted phrase (1.5): any luck
  • Low length (1.5):
  • No code block (0.5):
  • Me too answer (2.5): facing the same issue
  • Contains question mark (0.5):
  • Single line (0.5):
  • Low reputation (1):
Posted by: Yatharth Kale

79549884

Date: 2025-04-02 06:54:20
Score: 4
Natty:
Report link

Check Firewalls. Sometimes firewalls from virus guards may block connections.
( I am putting this as an answer because I don't have enough reputation to put a comment)

Reasons:
  • RegEx Blacklisted phrase (1.5): I don't have enough reputation
  • Low length (1):
  • No code block (0.5):
  • Low reputation (1):
Posted by: Kapila KU

79549871

Date: 2025-04-02 06:47:18
Score: 4
Natty:
Report link

I'm unable to clean the zombie process , which is created by below command:

 log_file = "ui_console{}.log".format(index)
    cmd = "npm run test:chrome:{} &> {} & echo $!".format(index, log_file)
    print(f'run{index} :{cmd}')
    # This command will be run multiple time for each kvm instance in background, which is having bg pid and stor the stdout, stderr in log_file
    process = subprocess.Popen(cmd, shell=True, stdout=subprocess.PIPE, stderr=subprocess.PIPE, executable='/bin/bash')
    # Read the BG PID from the command's output

eaton@BLRTSL02562:/workspace/edge-linux-test-edgex-pytest$ ps -ef | grep 386819

eaton 386819 1 0 05:04 pts/2 00:00:01 [npm run test:ch] <defunct>

eaton 392598 21681 0 06:30 pts/3 00:00:00 grep --color=auto 386819

eaton@BLRTSL02562:/workspace/edge-linux-test-edgex-pytest$

how to clean the zombie PID ?

Tried below steps but no luck:

Find the Parent Process ID (PPID):
    ps -o ppid= -p <zombie_pid>
Send a Signal to the Parent Process
Send the SIGCHLD signal to the parent process to notify it to clean up the zombie process:
    sudo kill -SIGCHLD <parent_pid>
Replace <parent_pid> with the PPID obtained from the previous command.

Please suggest if there are any approach

Reasons:
  • Blacklisted phrase (1): no luck
  • RegEx Blacklisted phrase (2.5): Please suggest
  • Long answer (-1):
  • Has code block (-0.5):
  • Contains question mark (0.5):
  • Unregistered user (0.5):
  • Low reputation (1):
Posted by: user30139395

79549870

Date: 2025-04-02 06:46:17
Score: 11.5 🚩
Natty: 5
Report link

I'm new to GE. I was working on a scenario where I need to connect to a Oracle database and fetch the data based on a query and then execute expectations present in suite.

Instead of passing SQL query as a parameter when defining data asset. I want to pass the SQL query as a parameter at run time during validation.run() so that I can pass the query dynamically and it can be used on any database table and columns for that particular DQ check(completeness/range..)

Can you please suggest how to achieve it. If any sample code also helps a lot.

Thanks in advance

Reasons:
  • Blacklisted phrase (0.5): Thanks
  • Blacklisted phrase (0.5): I need
  • Blacklisted phrase (1): how to achieve
  • RegEx Blacklisted phrase (2.5): Can you please suggest how
  • RegEx Blacklisted phrase (3): Thanks in advance
  • RegEx Blacklisted phrase (1): I want
  • RegEx Blacklisted phrase (1.5): I'm new
  • Long answer (-0.5):
  • No code block (0.5):
  • Unregistered user (0.5):
  • Low reputation (1):
Posted by: Kiran

79549840

Date: 2025-04-02 06:34:12
Score: 6 🚩
Natty:
Report link

I have been struggling with the same situation for a while. I started to think that there is lack of feature support for this situation. Any ideas anyone?

Reasons:
  • Blacklisted phrase (1): Any ideas
  • Low length (1):
  • No code block (0.5):
  • Ends in question mark (2):
  • Single line (0.5):
  • Low reputation (1):
Posted by: Özgür Yüksel

79549817

Date: 2025-04-02 06:20:08
Score: 4.5
Natty:
Report link

I don't have enough reputation to comment yet, so posting this as an answer in hopes it helps the next person.

I spent around 3 days researching and trying to solve this issue. I found most of the StackOverflow answers as well as guides from other forums. All of those kept saying: Set your JAVA_HOME to some Java21 installation and check using 'mvn -v' to make sure you see a 21.x.x somewhere. This seems so have solved it for everyone else, but not for me.

My JAVA_HOME variable was pointing at Java 21, however for some reason it was installed only as a JRE and not as a JDK. Thus, there was no compiler present.

Make sure your JAVA_HOME variable is not only pointed to some Java 21 installation, but that that installation is a Java JDK, not just a Java JRE!

Reasons:
  • Blacklisted phrase (1): to comment
  • Blacklisted phrase (1): StackOverflow
  • RegEx Blacklisted phrase (1.5): I don't have enough reputation to comment
  • Long answer (-0.5):
  • No code block (0.5):
  • Low reputation (1):
Posted by: DavGoeck

79549752

Date: 2025-04-02 05:29:54
Score: 7.5 🚩
Natty:
Report link

I'm having the exact same problem, I didn't touch anything, I'm new on React and Expo so I don't know what's going on

Reasons:
  • RegEx Blacklisted phrase (1.5): I'm new
  • Low length (1):
  • No code block (0.5):
  • Me too answer (2.5): I'm having the exact same problem
  • Unregistered user (0.5):
  • Single line (0.5):
  • Low reputation (1):
Posted by: user30138612

79549702

Date: 2025-04-02 04:53:44
Score: 8.5 🚩
Natty: 5.5
Report link

Were you able to run this code and get inference from the exported model?

Reasons:
  • RegEx Blacklisted phrase (3): Were you able
  • Low length (1.5):
  • No code block (0.5):
  • Ends in question mark (2):
  • Single line (0.5):
  • Low reputation (1):
Posted by: user30138282

79549666

Date: 2025-04-02 04:30:39
Score: 5
Natty: 4.5
Report link

guys im not good with software i want u to help or guide me reveled a hidden number in facebook it goes like this **********48 any way to revel it

Reasons:
  • Blacklisted phrase (1): guide me
  • RegEx Blacklisted phrase (1): i want
  • Low length (1):
  • No code block (0.5):
  • Filler text (0.5): **********
  • Low reputation (1):
Posted by: عالطاير ديزد

79549605

Date: 2025-04-02 03:32:24
Score: 4
Natty:
Report link

Try this react-native-issue-resolved-cannot-remove-child-at-index-x-from-parent

Reasons:
  • Whitelisted phrase (-1): Try this
  • Probably link only (1):
  • Low length (2):
  • No code block (0.5):
  • Has no white space (0.5):
  • Low reputation (1):
Posted by: Varun Nayak

79549597

Date: 2025-04-02 03:23:21
Score: 9 🚩
Natty:
Report link

I have the exact same error and I'm unable to solve it. Does anyone know the solution to this?

Reasons:
  • RegEx Blacklisted phrase (2): Does anyone know
  • Low length (1):
  • No code block (0.5):
  • Me too answer (2.5): I have the exact same error
  • Ends in question mark (2):
  • Low reputation (1):
Posted by: novfrost

79549584

Date: 2025-04-02 03:13:18
Score: 5.5
Natty:
Report link

Are you running your nifi on kubernetes or on the instances?

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

79549503

Date: 2025-04-02 02:02:02
Score: 7.5
Natty: 7.5
Report link

I’m using similar code but the links and chips are not maintained with the appendRow. What can I do to keep the links and chips intact?

Reasons:
  • Blacklisted phrase (1): can I do
  • Blacklisted phrase (1): What can I do
  • Low length (1):
  • No code block (0.5):
  • Ends in question mark (2):
  • Unregistered user (0.5):
  • Single line (0.5):
  • Low reputation (1):
Posted by: Lynn

79549493

Date: 2025-04-02 01:51:59
Score: 10.5 🚩
Natty: 5.5
Report link

did u find the reason behind it and possibly the fix?

Reasons:
  • RegEx Blacklisted phrase (3): did u find the
  • RegEx Blacklisted phrase (1.5): fix?
  • Low length (1.5):
  • No code block (0.5):
  • Ends in question mark (2):
  • Single line (0.5):
  • Starts with a question (0.5): did
  • Low reputation (1):
Posted by: khalid badawi

79549432

Date: 2025-04-02 00:52:44
Score: 4.5
Natty:
Report link

Thanks for the answer , the issue really resolved when i use the "stdout" correctly

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

79549429

Date: 2025-04-02 00:48:43
Score: 4
Natty:
Report link

I think the question has been answered well. But for future developers you can now see an example here https://github.com/DuendeSoftware/Samples/tree/main/BFF/v3/Vue

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

79549399

Date: 2025-04-02 00:02:35
Score: 4.5
Natty: 4.5
Report link

Whoa very useless content. I'm happy to have seen such content. So glad

https://colab.research.google.com/drive/1qSadTO2IsN7GKSAiy6lnsI8Oor1SyRqF

https://colab.research.google.com/drive/1K0RqB09AWdOl5FQhE0I3RhRStZivFz2j

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

79549333

Date: 2025-04-01 22:48:18
Score: 4
Natty:
Report link

import type { Route } from "./+types/task";
import React, { useEffect, useState } from "react";
import type { ChangeEvent } from "react";

export default function Task() {
  const [file, setFile] = useState<File | null>(null);

  // handle file input change event
  const handleFileChange = (event: ChangeEvent<HTMLInputElement>) => {
    setFile(event.target.files?.[0] || null);
  };

  const handleFileUpload = async () => {
    if (!file) {
      alert('Please select a file to upload.');
      return;
    }

    // create a FormData object to hold the file data
    const formData = new FormData();
    formData.append('file', file);

    

    try {
      const response = await fetch('https://api.cloudflare.com/client/v4/accounts/<my-id>/images/v1', {
        method: 'POST',
        headers: {
          'Authorization': 'Bearer <my-api-key>',
        },
        body: formData,
      });

      // check if the response is ok
      const result = await response.json();
      console.log('Upload successful:', result);
    } catch (error) {
      console.error('Error during file upload:', error);
    }
  };
  return (
    <div className="block">
        <h1>File Upload</h1>
        <input type="file" onChange={handleFileChange} />
        <button onClick={handleFileUpload}>Submit</button>
    </div>
  );
}

Hello, can you help me to solve the problem I have face? Is similar too but I am in localhost reactJS of the web interface to upload the file to the cloudflare images, but the CORS error occurs. Here is the screenshot of the CORS in the browser inspection

Reasons:
  • Blacklisted phrase (1): help me
  • RegEx Blacklisted phrase (3): can you help me
  • Long answer (-1):
  • Has code block (-0.5):
  • Contains question mark (0.5):
  • Low reputation (1):
Posted by: Foo Wei Shien

79549240

Date: 2025-04-01 21:33:57
Score: 5.5
Natty: 6.5
Report link

have you tried https://github.com/recap/docker-mac-routes ? it works with 4.39.0

Reasons:
  • Whitelisted phrase (-1): have you tried
  • Probably link only (1):
  • Contains signature (1):
  • Low length (2):
  • No code block (0.5):
  • Contains question mark (0.5):
  • Single line (0.5):
  • Low reputation (1):
Posted by: Recap

79549209

Date: 2025-04-01 21:13:52
Score: 13 🚩
Natty: 6
Report link

Were you able to figure this out? I am having the same problem. thanks!

Reasons:
  • Blacklisted phrase (0.5): thanks
  • RegEx Blacklisted phrase (3): Were you able to figure this out
  • RegEx Blacklisted phrase (3): Were you able
  • Low length (1.5):
  • No code block (0.5):
  • Me too answer (2.5): I am having the same problem
  • Contains question mark (0.5):
  • Single line (0.5):
  • Low reputation (1):
Posted by: Neel Desai

79549197

Date: 2025-04-01 21:07:49
Score: 4.5
Natty:
Report link

@geekley's solution worked, but for those of us whose IM utility isn't called "convert" (also a FAT to NTFS converter utility), it may be installed as "magick.exe". Might save someone a few minutes of hair pulling, or accidentally reformatting their drive.

Reasons:
  • Low length (0.5):
  • No code block (0.5):
  • User mentioned (1): @geekley's
  • Single line (0.5):
  • Looks like a comment (1):
  • Low reputation (1):
Posted by: Drowning_Ophelia

79549192

Date: 2025-04-01 21:05:47
Score: 11 🚩
Natty:
Report link

I am using Microsoft Office Professional 2016 installed locally and have this same problem. I have need for the OFFSET function a lot. Has anyone found a workaround? Is the problem still present on later versions of Office? If "No" and "Yes", does MS have any plan to fix it?

Reasons:
  • Blacklisted phrase (2): anyone found
  • RegEx Blacklisted phrase (1.5): fix it?
  • RegEx Blacklisted phrase (3): Has anyone found
  • Low length (0.5):
  • No code block (0.5):
  • Ends in question mark (2):
  • Single line (0.5):
  • Low reputation (1):
Posted by: DRF

79549129

Date: 2025-04-01 20:32:37
Score: 4
Natty: 4
Report link

i had the exact same cookie problem, and your solution half fixed it! The cookie problem is gone on Chrome, but still exists on Safari, any insights? 🙏

Reasons:
  • Blacklisted phrase (0.5): 🙏
  • Low length (1):
  • No code block (0.5):
  • Contains question mark (0.5):
  • Single line (0.5):
  • Low reputation (1):
Posted by: lamb p

79549041

Date: 2025-04-01 19:49:25
Score: 4.5
Natty: 5
Report link

You may want to try matplotlib.pyplot.tripcolor.

https://matplotlib.org/stable/api/_as_gen/matplotlib.pyplot.tripcolor.html

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

79549029

Date: 2025-04-01 19:39:22
Score: 5
Natty: 5
Report link

This might be too simple, but - as an Apple user - I had to learn that notifications won't show on Android lock screens unless you tap the clock. Does the player show up this way?

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

79549016

Date: 2025-04-01 19:32:20
Score: 5
Natty:
Report link

I am facing the same issue, but mine scenario it routes traffic to both downstream api's randomly after deleting the main virtualservice then re-applying it so the istio routing order reset and the request-header router is sent to the top of the list.

Reasons:
  • Low length (0.5):
  • No code block (0.5):
  • Me too answer (2.5): I am facing the same issue
  • Single line (0.5):
  • Low reputation (1):
Posted by: Grant Banfield

79548848

Date: 2025-04-01 18:11:58
Score: 13.5
Natty: 8
Report link

Did you ever solve this issue? I am having a similar problem. Here's my code: https://github.com/cedarmax/ESP-IDF-FIREBASE/blob/master/main/firebase.c

Reasons:
  • Blacklisted phrase (1): I am having a similar problem
  • RegEx Blacklisted phrase (3): Did you ever solve this
  • RegEx Blacklisted phrase (1.5): solve this issue?
  • Probably link only (1):
  • Low length (1.5):
  • No code block (0.5):
  • Me too answer (2.5): I am having a similar problem
  • Contains question mark (0.5):
  • Single line (0.5):
  • Starts with a question (0.5): Did you
  • Low reputation (1):
Posted by: cjm

79548811

Date: 2025-04-01 17:50:51
Score: 4.5
Natty:
Report link

https://limewire.com/d/1aCRH#sfMTvHbUXf
Sorry. Only like this I can share vslogs.
I can't read logs

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

79548694

Date: 2025-04-01 13:00:42
Score: 4
Natty:
Report link

In VS Code you can add args to disable impeller.
enter image description here

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

79548559

Date: 2025-04-01 12:03:27
Score: 4
Natty:
Report link

for ppl that have come here recently, and will, here is the correct link to the API ref

https://www.ursinaengine.org/api_reference.html#mouse

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

79548551

Date: 2025-04-01 11:57:26
Score: 15
Natty: 7.5
Report link

I am facing a similar issue
Were you able to resolve it? Any help on this would be appreciated

Reasons:
  • Blacklisted phrase (1): appreciated
  • Blacklisted phrase (1): Any help
  • RegEx Blacklisted phrase (1.5): resolve it?
  • RegEx Blacklisted phrase (3): Any help on this would be appreciated
  • RegEx Blacklisted phrase (3): Were you able
  • Low length (1):
  • No code block (0.5):
  • Me too answer (2.5): I am facing a similar issue
  • Contains question mark (0.5):
  • Low reputation (1):
Posted by: Ishita Rathod

79548548

Date: 2025-04-01 11:55:24
Score: 7 🚩
Natty: 4.5
Report link

Did you succeed to do what you described above?

Reasons:
  • Blacklisted phrase (3): Did you succeed
  • Low length (1.5):
  • No code block (0.5):
  • Ends in question mark (2):
  • Single line (0.5):
  • Starts with a question (0.5): Did you
  • High reputation (-1):
Posted by: gtomer

79548525

Date: 2025-04-01 11:46:21
Score: 9 🚩
Natty: 5.5
Report link

Does anybody has a answer since 2020?

Reasons:
  • RegEx Blacklisted phrase (3): Does anybody has a answer
  • Low length (2):
  • No code block (0.5):
  • Ends in question mark (2):
  • Single line (0.5):
  • Low reputation (1):
Posted by: Christian Breuer

79548519

Date: 2025-04-01 11:44:20
Score: 5
Natty:
Report link

Do you use a proxy as I think it needs IPV6 and are you on a vpn as we have issues with cisco vpn breaking the routing apparently still looking into it?

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

79548478

Date: 2025-04-01 11:21:14
Score: 5
Natty:
Report link

I saw that you opened an issue and Jim Ingham has fixed this bug. If you urgently need to use this feature in the current lldb version, you can refer to the temporary stop-hook I wrote to solve this problem:

https://github.com/chenhuimao/HMLLDB/blob/997ab70dd404a3d9f7de57d472d58e9fe72ba1c3/commands/HMStopHook.py#L35

Reasons:
  • RegEx Blacklisted phrase (2): urgently
  • Probably link only (1):
  • Low length (0.5):
  • No code block (0.5):
  • Low reputation (1):
Posted by: mao2020

79548474

Date: 2025-04-01 11:18:13
Score: 11.5 🚩
Natty: 5
Report link

Hi @Johan Rincon did your problem resolve because i'm facing the same issue could you please help me.

Reasons:
  • Blacklisted phrase (1): help me
  • RegEx Blacklisted phrase (3): could you please help me
  • Low length (1):
  • No code block (0.5):
  • Me too answer (2.5): i'm facing the same issue
  • User mentioned (1): @Johan
  • Single line (0.5):
  • Looks like a comment (1):
  • Low reputation (1):
Posted by: Ajit

79548371

Date: 2025-04-01 10:37:03
Score: 8 🚩
Natty: 5.5
Report link

I am also facing same issue. Have you got the resolution ?

Reasons:
  • Low length (1.5):
  • No code block (0.5):
  • Me too answer (2.5): I am also facing same issue
  • Ends in question mark (2):
  • Single line (0.5):
  • Low reputation (1):
Posted by: user8226

79548308

Date: 2025-04-01 10:13:55
Score: 10.5 🚩
Natty: 5.5
Report link

How would you solve this, I have similar problem but hard to find the answer ?

Reasons:
  • Blacklisted phrase (1): How would you
  • Blacklisted phrase (1): I have similar
  • Low length (1.5):
  • No code block (0.5):
  • Me too answer (2.5): I have similar problem
  • Ends in question mark (2):
  • Single line (0.5):
  • Starts with a question (0.5): How would you solve this
  • Low reputation (1):
Posted by: Khoa Nguyen

79548293

Date: 2025-04-01 10:03:53
Score: 4
Natty:
Report link

"@react-navigation/drawer": "^6.7.2", "@react-navigation/material-top-tabs": "^6.6.14", "@react-navigation/native": "^6.1.18", "@react-navigation/native-stack": "^6.11.0",

Have you tried updating these?

Reasons:
  • Whitelisted phrase (-1): Have you tried
  • Low length (0.5):
  • No code block (0.5):
  • Ends in question mark (2):
  • Looks like a comment (1):
  • Low reputation (1):
Posted by: Bhavesh Punasiya

79548279

Date: 2025-04-01 09:58:51
Score: 5.5
Natty: 5.5
Report link

since it's been almost 5 years... has there been any development for this issue?

thanks!

Reasons:
  • Blacklisted phrase (0.5): thanks
  • Low length (1.5):
  • No code block (0.5):
  • Ends in question mark (2):
  • Low reputation (1):
Posted by: Katarina Bešlić

79548278

Date: 2025-04-01 09:58:51
Score: 6 🚩
Natty: 5
Report link

Thank you very much it helped me a lot

Reasons:
  • Blacklisted phrase (0.5): Thank you
  • Blacklisted phrase (1): helped me a lot
  • Low length (2):
  • No code block (0.5):
  • Unregistered user (0.5):
  • Single line (0.5):
  • Low reputation (1):
Posted by: yineali

79548200

Date: 2025-04-01 09:26:43
Score: 5.5
Natty:
Report link

Too many issues can exist, with unnamed module, since I am not able to comment due to point issues, I have found the answer check the answers on the link & fix your the issue.

https://stackoverflow.com/a/57753612/16897849

Reasons:
  • Blacklisted phrase (1): I am not able to
  • Blacklisted phrase (1): to comment
  • Blacklisted phrase (1): stackoverflow
  • Low length (1):
  • No code block (0.5):
  • Low reputation (1):
Posted by: Alan AU

79548182

Date: 2025-04-01 09:18:40
Score: 4.5
Natty:
Report link

Hmm. ta.adx() ...
adx() is no build in function for the ta source, at least in version 6 or version 5 what I see in the reference manual.
Where have you found it ? Check the reference and search for "ta.". Lots of build in functions but no adx(). May be there was a self defined method adx() somewhere ? If so you need to get to copy the code.
I am afraid the compiler is right ...

Reasons:
  • RegEx Blacklisted phrase (2.5): have you found it
  • No code block (0.5):
  • Contains question mark (0.5):
  • Low reputation (1):
Posted by: mantopajut

79548178

Date: 2025-04-01 09:15:39
Score: 14.5 🚩
Natty:
Report link

I have the same problem, do you have a solution?

Reasons:
  • Blacklisted phrase (1): I have the same problem
  • Blacklisted phrase (3): have a solution?
  • RegEx Blacklisted phrase (2.5): do you have a
  • Low length (1.5):
  • No code block (0.5):
  • Me too answer (2.5): I have the same problem
  • Ends in question mark (2):
  • Single line (0.5):
  • Low reputation (1):
Posted by: Quoc Lam

79548144

Date: 2025-04-01 09:02:35
Score: 4.5
Natty:
Report link

Just to be complete

when using grep -o -c, it only counts the single lines that match i.e. it misses the double entries on the same line- You can either do the replace (echo/echo\n) or use the wc or nl to count the returned matches

I have not found any option to -c that counts all matches ? anyone else ?

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

79548121

Date: 2025-04-01 08:48:33
Score: 4
Natty:
Report link

I heard great things about this one : https://dcm.dev/

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

79548111

Date: 2025-04-01 08:44:30
Score: 6 🚩
Natty: 5.5
Report link

su is not accepted after adb shell with Windows prompt.

Any other suggestion? If I have some update, I will write here.

Thank you

Reasons:
  • Blacklisted phrase (0.5): Thank you
  • RegEx Blacklisted phrase (2): Any other suggestion?
  • Low length (1):
  • No code block (0.5):
  • Contains question mark (0.5):
  • Unregistered user (0.5):
  • Low reputation (1):
Posted by: 1a1b

79548056

Date: 2025-04-01 08:20:24
Score: 11.5 🚩
Natty:
Report link

Hi Ahtisham , I've encountered the same issues 2 weeks ago. have you found any solution to it?

Reasons:
  • Blacklisted phrase (1.5): any solution
  • RegEx Blacklisted phrase (2.5): have you found any solution to it
  • RegEx Blacklisted phrase (2): any solution to it?
  • Low length (1.5):
  • No code block (0.5):
  • Ends in question mark (2):
  • Single line (0.5):
  • Low reputation (1):
Posted by: Wendy Kok

79548043

Date: 2025-04-01 08:14:23
Score: 7.5
Natty: 7.5
Report link

I am facing this issue; is there any update on this?

Reasons:
  • Blacklisted phrase (1): update on this
  • Blacklisted phrase (1): is there any
  • Low length (1.5):
  • No code block (0.5):
  • Ends in question mark (2):
  • Single line (0.5):
  • Low reputation (1):
Posted by: Lê Kim Tuấn

79548041

Date: 2025-04-01 08:13:22
Score: 5
Natty: 5
Report link

GitHub issue for that repository doesn't exist anymore and theres no snapshot in Wayback Machine, where can I find the issue answer?

Reasons:
  • Low length (1):
  • No code block (0.5):
  • Ends in question mark (2):
  • Single line (0.5):
  • Low reputation (1):
Posted by: Adrián López

79547997

Date: 2025-04-01 07:45:16
Score: 10 🚩
Natty: 6
Report link

@Youssef CH so how to fix the problem? I faced the same issue, deploy with github action with default script and no docker file in source code. Please help me

Reasons:
  • Blacklisted phrase (1): help me
  • RegEx Blacklisted phrase (3): Please help me
  • RegEx Blacklisted phrase (1.5): how to fix the problem?
  • Low length (1):
  • No code block (0.5):
  • Contains question mark (0.5):
  • Single line (0.5):
  • Looks like a comment (1):
  • Low reputation (1):
Posted by: Jaian

79547992

Date: 2025-04-01 07:43:14
Score: 5
Natty:
Report link

I´m having the same problem. I have a server that has azure devops 2022.0.2 installed. The cybersecurity team sent a nmap scan that shows a weak cipher "ssh_rsa", but no matter what I change in the ssh file the weak cipher still appears in the scan. I changed the ssh cinfig file as recomended by microsoft.

Reasons:
  • Low length (0.5):
  • No code block (0.5):
  • Me too answer (2.5): having the same problem
  • Single line (0.5):
  • Low reputation (1):
Posted by: Isac Melembe

79547962

Date: 2025-04-01 07:29:10
Score: 12 🚩
Natty: 6.5
Report link

Could you please tell me how did you fixed this issue ? Im facing the same now

Reasons:
  • Blacklisted phrase (1): how did you fix
  • RegEx Blacklisted phrase (2.5): Could you please tell me how
  • RegEx Blacklisted phrase (3): did you fixed this
  • RegEx Blacklisted phrase (1.5): fixed this issue ?
  • Low length (1.5):
  • No code block (0.5):
  • Contains question mark (0.5):
  • Single line (0.5):
  • Low reputation (1):
Posted by: user30129225

79547939

Date: 2025-04-01 07:15:06
Score: 8.5 🚩
Natty:
Report link

did you get any solution to this i myself am trying to find it :)

Reasons:
  • Blacklisted phrase (1.5): any solution
  • RegEx Blacklisted phrase (3): did you get any solution to this
  • Low length (1.5):
  • No code block (0.5):
  • Single line (0.5):
  • Starts with a question (0.5): did you
  • Low reputation (1):
Posted by: Krishna Bansal

79547902

Date: 2025-04-01 06:52:00
Score: 7 🚩
Natty: 4
Report link

Hello @Alan are you available there I have some issues to built up a twilio conference functionality? is this something you can hep me around to figure out the issue?

Reasons:
  • Low length (1):
  • No code block (0.5):
  • Ends in question mark (2):
  • User mentioned (1): @Alan
  • Single line (0.5):
  • Looks like a comment (1):
  • Low reputation (1):
Posted by: James Linton

79547899

Date: 2025-04-01 06:51:00
Score: 8.5
Natty: 7
Report link

Is there a solution for the on screen keyboard on Windows Tablets?

Reasons:
  • Blacklisted phrase (3): Is there a solution
  • Low length (1.5):
  • No code block (0.5):
  • Ends in question mark (2):
  • Single line (0.5):
  • Starts with a question (0.5): Is there a solution for the on
  • Low reputation (0.5):
Posted by: Zumpfiii

79547874

Date: 2025-04-01 06:39:56
Score: 4.5
Natty:
Report link

I'm seeing similar issues. I have buttons in a gallery to navigate to the screen which weren't working. Click the buttons and nothing.

It coincided with copilot filtering when clicking the button, so assumed it was related.

I then tried using a Param to load the screen with an id passed, and it was freezing on the load screen.

Now reading this, I assume there is a bug somewhere in the screen on visible.

Reasons:
  • No code block (0.5):
  • Me too answer (2.5): I'm seeing similar issue
  • Unregistered user (0.5):
  • Low reputation (1):
Posted by: Lyndon

79547861

Date: 2025-04-01 06:31:54
Score: 12
Natty: 8
Report link

I have the same problem any help for solution? Do you even solve the problem?

Reasons:
  • Blacklisted phrase (1): I have the same problem
  • Blacklisted phrase (1): any help
  • RegEx Blacklisted phrase (1.5): solve the problem?
  • Low length (1.5):
  • 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):
  • Low reputation (1):
Posted by: Rodrigo

79547851

Date: 2025-04-01 06:24:52
Score: 4.5
Natty:
Report link

I have the same issue too, Here is the solution that works for me:
1. Make sure that you install the 'Extension Pack for Java'
2. Click 'Java: Ready' on the bottom bar
3. Click 'Clean Workspace Cache'
this would trigger reindexing of the project, I guess, after that, Ctrl+Click should work.
Java: Clean Workspace Cache

Reasons:
  • Blacklisted phrase (1): I have the same issue
  • Whitelisted phrase (-1): works for me
  • Low length (0.5):
  • No code block (0.5):
  • Me too answer (2.5): I have the same issue
  • Low reputation (1):
Posted by: incredible John

79547702

Date: 2025-04-01 04:18:28
Score: 8 🚩
Natty: 4.5
Report link

Do you resolve your problem? I meet the same problem.

Reasons:
  • RegEx Blacklisted phrase (1.5): resolve your problem?
  • RegEx Blacklisted phrase (2.5): Do you resolve your
  • Low length (1.5):
  • No code block (0.5):
  • Contains question mark (0.5):
  • Single line (0.5):
  • Low reputation (1):
Posted by: kuazhangxiaoai

79547692

Date: 2025-04-01 03:58:24
Score: 8 🚩
Natty: 5.5
Report link

I am using the same API call but every time I get 202. How did you managed to get the response?

Reasons:
  • RegEx Blacklisted phrase (3): did you manage
  • Low length (1):
  • No code block (0.5):
  • Ends in question mark (2):
  • Single line (0.5):
  • Low reputation (1):
Posted by: Chamod Gunasinghe

79547676

Date: 2025-04-01 03:38:20
Score: 11.5 🚩
Natty:
Report link

I’m facing the exact same issue, but the percentage of failures in my case is much higher.

I’m using the Python client to upload/download/delete files from Google Drive, and I’m using service account credentials. It was working fine 4 days ago, but before 4 days I start receiving the connection timeout errors.

Have you found any solutions yet?

Reasons:
  • Blacklisted phrase (1.5): any solution
  • RegEx Blacklisted phrase (2.5): Have you found any solutions yet
  • RegEx Blacklisted phrase (2): any solutions yet?
  • No code block (0.5):
  • Me too answer (2.5): facing the exact same issue
  • Ends in question mark (2):
  • Low reputation (0.5):
Posted by: AliOsm

79547665

Date: 2025-04-01 03:25:17
Score: 4.5
Natty:
Report link

where is your gorm tag?read more about gorm docs please

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): where is you
  • Low reputation (1):
Posted by: Wang

79547637

Date: 2025-04-01 02:58:11
Score: 8 🚩
Natty:
Report link

I have the same problemit would be grate if somebody help us)

Reasons:
  • Blacklisted phrase (1): I have the same problem
  • RegEx Blacklisted phrase (1): help us
  • 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: Артем Демьянов

79547613

Date: 2025-04-01 02:35:07
Score: 5
Natty:
Report link

Updated Question (Example)

I've made some minor updates to my code, and it seems to be working now. However, I wanted to ask if there's a better way to handle the login configuration for AWSCognitoCredentialsProvider.

Here’s my updated loginCognito function:

private func loginCognito(data: AWSConfigData) {  
    let loginsKey = "cognito-idp.\(data.region).amazonaws.com/\(data.userPoolId)"  
    let logins = [loginsKey: data.idToken]    

    self.awsConfigData = data  
    printAWS(addition: "Login with Token:", message: "\(data.idToken)")    

    // If defaultServiceConfiguration is already set, update loginMaps  
    if let existingCredentialsProvider = AWSServiceManager.default()?.defaultServiceConfiguration?.credentialsProvider as? AWSCognitoCredentialsProvider,  
       let existingIdentityProviderManager = existingCredentialsProvider.identityProvider.identityProviderManager as? IdentityProviderManager {  
        existingIdentityProviderManager.setLogins(loginMaps: logins)  
        return  
    }    

    let identityProviderManager = IdentityProviderManager(loginMaps: logins)  
    let credentialsProvider = AWSCognitoCredentialsProvider(  
        regionType: data.regionType,  
        identityPoolId: data.identityPoolId,  
        identityProviderManager: identityProviderManager  
    )    

    // Set AWS default configuration  
    let configuration = AWSServiceConfiguration(  
        region: data.regionType,  
        credentialsProvider: credentialsProvider  
    )    

    AWSServiceManager.default()?.defaultServiceConfiguration = configuration  
}

And my IdentityProviderManager:

private class IdentityProviderManager: NSObject, AWSIdentityProviderManager {  
    private var loginMaps: [String: String]    

    init(loginMaps: [String: String]) {  
        self.loginMaps = loginMaps  
    }    

    func setLogins(loginMaps: [String: String]) {  
        self.loginMaps = loginMaps  
    }    

    func logins() -> AWSTask<NSDictionary> {  
        return AWSTask(result: loginMaps as NSDictionary)  
    }  
}

My Question:

Is there a better approach to updating logins dynamically in AWSCognitoCredentialsProvider?
Would it be more efficient to manage this differently, or is this the best practice?

Thanks in advance!

Reasons:
  • Blacklisted phrase (0.5): Thanks
  • RegEx Blacklisted phrase (3): Thanks in advance
  • Long answer (-1):
  • Has code block (-0.5):
  • Ends in question mark (2):
  • Self-answer (0.5):
  • Low reputation (0.5):
Posted by: Nguyễn Đức Thành

79547583

Date: 2025-04-01 02:09:02
Score: 4
Natty:
Report link

The code maintainers have helped fix this problem.

https://github.com/FasterXML/jackson-datatype-joda/issues/162

https://github.com/FasterXML/jackson-datatype-joda/issues/160

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

79547491

Date: 2025-04-01 00:43:45
Score: 5.5
Natty:
Report link

In $sqlcreate when you create a tables PRIMARY_KEY doesn't should be the last parameter?

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

79547474

Date: 2025-04-01 00:25:42
Score: 22.5 🚩
Natty:
Report link

It was really helpful I tried to replicate it, but it seems it presents a problem when you use it in large text. In my case, I am trying to apply it to a short-story, but the cursor don't get down when you scroll it. Is it a way to resolve this?

var light = document.getElementById('light');

document
  .documentElement
  .addEventListener('mousemove', function handleMouseMove(event) {
    light.style.setProperty('--light-position-y', (event.clientY - 50) + 'px');
    light.style.setProperty('--light-position-x', (event.clientX - 50) + 'px');
  });
body {
    background-color: black;
  }
  
  .content {
    position: relative;
    z-index: 10;
  }
  
  #light {
    width: 300px;
    height: 300px;
    border-radius: 50%;
    position: absolute;
    transform: translate(var(--light-position-x, 0px), var(--light-position-y, 0px));
    background-color: rgb(231, 221, 122);
  }
<!DOCTYPE html>
<html lang="en">
<head>
    <meta charset="UTF-8">
    <meta http-equiv="X-UA-Compatible" content="IE=edge">
    <meta name="viewport" content="width=device-width, initial-scale=1.0">
    <title>Document</title>
    <link rel="stylesheet" href="./flashlight.css">
</head>
<body>
    <div id="light"></div>

    <div class="content">
      <h1>Flashlight test</h1>
      <p>
        <p>Regresaba yo del Real del Espíritu Santo para la capital, cuando una fiebre amarilla, según la clasificaban los naturales de Cutzio, me detuvo en el pueblecillo de este nombre, situado a una legua de San Juan Huetamo, en el estado de Michoacán. En mi convalecencia conversaba algunas veces con el dueño de la casa en que me habían curado y que, por mi buena fortuna, era un rumbeador de minas, o lo que es lo mismo, un antiguo barretero aficionado a buscarlas.</p>
        <p>—¿Qué tales minas conoce usted por aquí Manuel? –le preguntaba.</p>
        —¡Válgame Dios, amo, todavía esta pinto jiebre y ya quiere minas! —¡Hombre,
        para cuando sane! —Tengo dos o tres tuzeritos y una que creo ha de ser
        güena. —Eso quiere decir que usted no la ha visto. ¿Tiene agua? —No, siñor.
        No le hace agua, no más la que le entra por el arroyo. —¿Qué arroyo, hombre?
        —Pos, siñor, el río que pasa por la puerta y que se mete como a su casa.
        Dicen que es mina vieja y rica; por más señas, del año de diez. —¡Cáspita!
        ¿Pero qué se va a hacer con un río? — Eso si no sé, siñor amo. —¿Y qué otros
        agujeros conoce usted? —Pos un joyo grande y jondo la Cueva del Cristo. —¿La
        qué? —La Cueva del Cristo. —¿Qué cosa es eso, hombre? —Pos siñor, una cueva.
        —¿Grande? —Jondísima, amo. —Hemos de ir a verla. —Güeno, cúrese y yo lo
        llevo. Quince días más tarde, y por consecuencia del diálogo anterior,
        encontrábame con Manuel frente a la entrada de la cueva, formada por un arco
        de rocas negruzcas; marco en el cual se engastaba un agujero negro y lleno
        de tinieblas. —¿Trae usted velas? –le interrogué. —Un puño –me contestó.
        Penetramos en la oscuridad hasta donde fue posible, y después, encendiendo
        dos velas, una para él y otra para mí, continuamos en medio de sombras
        profundas y de nubes de murciélagos que, azorados, revoloteaban con ruido
        siniestro a nuestro alrededor. —Mal agüero –murmuró Manuel haciendo la señal
        de la cruz. —¿Por qué, hombre? —Porque los murciélagos son jijos del malo.
        —¿De quién? —¿Pos de quién ha de ser?, del Diablo. Continuamos avanzando
        entre las sombras que parecían moverse heridas por nuestras dos luces. El
        piso estaba formado por una tierra floja, suave, untuosa y color de café.
        Por su sabor picante, fresco y acre, comprendí que era tierra nitrosa. —No
        la pruebe, amo –dijo mi compañero–, esa tierra tiene pólvora. Sonreí de su
        candor y me detuve a examinar el lugar donde nos encontrábamos. Era una
        inmensa oquedad en sentido longitudinal y como de unas doce varas de
        latitud; su techo lo formaba una bóveda casi plana y bastante baja, de color
        blanco mate, que marcaba la formación caliza del cerro. A medida que
        penetrábamos, las tres dimensiones se ensanchaban de un modo asombroso, y
        una hora después no se veía ni el techo ni las paredes de la cueva. Por
        segunda vez nos detuvimos en un verdadero océano de sombras. —¿Qué hace?
        –interrogué a Manuel, viéndole desenredar una cuerda y sacar una pequeña
        piedra de su bolsa. —Saco la jonda para que rigule el tamaño de la cueva. Y
        haciendo girar su brazo derecho con rapidez, armado con la honda, despidió,
        casi en sentido vertical la pequeña piedra, que partió silbando. Fijé el
        oído con atención y no escuché que la piedra chocase contra el techo.
        Instantes después caía cerca de nosotros. La altura era profunda.
        Entretanto, mi compañero había colocado en la honda una nueva piedra,
        despidiéndola en sentido lateral contra el horizonte de sombras que nos
        rodeaba. También se apagó el silbido de la piedra sin producir ruido ni
        choque alguno. Esto indicaba que las dimensiones crecían con igual
        proporción. Alguna inquietud debió revelar mi mirada, porque agregó: —No
        tenga cuidado, amo, para salir tenemos nuestras juellas. Y era así en
        verdad. Nuestros pasos estaban marcados en la tierra suelta y nitrosa, como
        un surco hecho en arena. —Deme otra vela –dije y encendiéndola, porque la
        primera se había acabado, continuamos. La atmósfera de la cueva estaba
        húmeda y fría, llena de sombras y de silencio. De vez en cuando una gota de
        agua, desprendiéndose del techo, producía un ruido metálico que vibraba en
        la profundidad de la caverna. Llevábamos dos horas y media de marcha y
        comenzaba a fatigarme. ¿Qué causa me obligaba a proseguir? Ciertas
        tradiciones sobre aquella cueva, que hablaban de un tesoro oculto en ella
        durante la guerra de Independencia, sobre lo cual creía tener ciertos datos
        que consideraba exactos. Hace años que busco un tesoro o una bonanza, pero
        con una ambición noble y santa. De aquí nacía aquella tenacidad empleada tan
        sólo en nadar, por decirlo así, entre las sombras. La Caverna Negra, como la
        llamaría yo, no tenía estalactitas, ni estalagmitas, ni nada que se le
        pareciese. Era una abra de dimensiones colosales, húmeda, fría y nada más.
        Pero como todas las obras que la Naturaleza nos presenta de una manera
        grandiosa, se imponía a mi espíritu de un modo solemne. Aquello tenía algo
        como la entrada a la Eternidad. Su silencio era profundo. Su enormidad era
        elocuente. Abismo negro atraía con fascinación, produciendo lo que podría
        llamarse el vértigo de la sombra. Se sentía uno como abrumado y se tocaba
        los ojos, para convencerse de que no estaba ciego. Tenebrosa, llena de
        misterios y con una belleza imponente, aquella cueva oprimía el espíritu por
        una sola cosa: la sombra. Concisión formidable. Saqué un reloj viejo de
        cobre, que marcaba las cinco de la tarde; llevábamos tres horas de marcha, y
        se habían gastado seis velas, o tres por cada uno de nosotros. —Deme usted
        otra vela –dije a Manuel, porque se acaba la mía. Este me la entregó,
        dictándome, al tiempo que se estiraba una oreja, lo que denunciaba en él una
        fuerte preocupación: —Es la última, siñor amo. Un sudor frió brotó de las
        raíces de mis cabellos. Salir, recorriendo el camino en que se habían
        gastado tres velas, con una sola, era más que difícil, ¡era casi imposible.
        —¡Usted me dijo que traía un puño! —Un puño son siete, siñor amo. —¡Cuán
        estúpido soy! –murmuré por lo bajo; ¿quién pensaba en el significado de la
        palabra minera? Y después, en voz alta, y uniendo a la palabra la acción:
        —¡Atrás! ¡Atrás!, pero aprisa o nos quedamos sepultados vivos. Y comencé a
        desandar el camino hecho, con rapidez. Manuel me seguía, diciendo: “— En eso
        estaba yo pensando, y mi pícara oreja lo ha pagado”. Yo no escuchaba. Con la
        cabeza inclinada, y cubriendo con la mano la llama de la vela, para que el
        aire no la gastase tan violentamente, caminaba con rapidez, siguiendo las
        huellas marcadas en la tierra por nuestros pasos. No discurría, no pensaba
        absolutamente nada; era la opresión de una idea, por decirlo así,
        instintiva, la que me hacía caminar. ¡Salir, salir! era todo aquella
        palabra. Salir era equivalente a la vida. Manuel marchaba detrás de mí,
        fijándose con aire estúpido en no sé qué señales de proximidad a la puerta,
        que yo no observaba, por no detenerme un solo instante. Marchábamos
        rápidamente; pero con igual celeridad se consumía la vela. La cueva me
        parecía eterna y negra y horrible. Había no se qué de siniestro en aquella
        sombra que nos rodeaba, y que de espectadora se había convertido en
        amenazante. La oscuridad era el peligro. Titán impalpable pero espantoso. Se
        sentía uno como agarrar por una mano invisible, por lo negro. La vela entre
        tanto se consumía... No sé qué tiempo marchamos así. —Debe de estar cerca la
        puerta –dijo Manuel. —¿Por qué, bestia? —Porque ya empiezan los murciégalos.
        En efecto, los asquerosos vespertilios pululaban, pero la vela se había
        consumido y su pábilo agonizante se despedía quemándome los dedos.
        Repentinamente se apagó. Saqué los cerillos. Prendía uno y avanzábamos.
        Prendía otro y proseguíamos. Conforme se consumían, la esperanza de salir se
        desvanecía, y era preciso que se acabasen, y con ellos el último recurso de
        salvación. Cuando concluyeron, me detuve. Estaba bañado en sudor, y lo digo
        con orgullo, no era de miedo sino de fatiga. —Sentémonos para descansar y
        pensemos en los medios que puede haber para salir –dije en voz alta. Lo
        hicimos así, en medio de las más profundas tinieblas; pero realmente
        profundas, intensas, inconcebibles para todo aquel que no se ha encontrado
        en una labor de mina profunda y sin luz. Soy franco, aun cuando parezca
        fatuidad el decirlo: no he temblado nunca en mi vida, no he tenido miedo
        jamás, no puedo comprender todavía lo que significa el terror. Pero en
        aquella noche de tinieblas, oyendo el ruido acompasado y monótono de las
        gotas de agua, el aleteo siniestro de los murciélagos y hasta los latidos de
        mi corazón... sentía algo extraño, que me disgustaba, y que, repito, no era
        terror. Era la mano de la muerte que me acariciaba, el presentimiento de la
        agonía, el principio o la aproximación de ambas... pero lo repetiré
        siempre... ¡no! ¡No era terror! Durante algún tiempo guardamos lúgubre
        silencio. Por fin interrogué a Manuel: —¿Habrá algún modo de salir? —Vamos a
        ver, amo. En esa ocasión la palabra ver me pareció el mejor y más bello
        poema de la humanidad: ¡tres letras, pero qué elocuentes! Volvió a reinar el
        silencio. Yo pensaba, pero no sé qué pensaba. Algo tan negro como las
        tinieblas que me rodeaban. Más de una hora trascurrió así. —Morir
        –murmuraba–, de hambre, de sed, y de estar bebiendo tinieblas. ¡Esto no es
        doloroso... esto es estúpido! Entonces percibí ese ligero ruido que producen
        los dientes al chocarse los unos contra los otros, y que se llama
        castañetear, vulgarmente. —¿Qué diablos tienes, Manuel? —Pos, siñor, tengo
        frío hasta en los huesos. —¡Calla, cobarde! ¡Lo que tienes es miedo! —Pos
        siñor, eso de morirse de hambre... ansina no me gusta. —¿Pues cuál muerte te
        agrada, bárbaro? –le dije, tuteándole de pura cólera. —¿Trae su mercé el
        chisme? Esa palabra chisme fue un rayo de luz para mí. Saqué la pistola, que
        a esto equivale, y la acaricié con verdadera ternura. —Hágame su mercé la
        gracia de tirar por su frente, a ver si está lejos la pared. Era una buena
        idea. Calcular la distancia por el choque de la bala. Amartillé y a la
        altura mía, hice fuego. Sea que la puntería fuese muy baja, y la bala se
        hundiese en la tierra, sin producir ruido, o bien que la detonación no lo
        dejase percibir, lo cierto es que nada oímos. Pero lo que me causó una
        tristeza infinita fue que apenas percibí el relámpago producido por el tiro.
        —¡Ciego! –murmuré en voz baja–; ¡ciego, ciego, Dios mío! Esto no era
        estúpido... esto sí era doloroso. No sé, ni recordaba quién me había
        contado, que una tiniebla tan densa como aquella podía producir la ceguera.
        ¡Morir... proseguía yo en mi monólogo; morir, cuando me siento hombre, joven
        y fuerte, lleno de actividades, de vigores, de sueños, y con una muerte
        oscura, ignorada y estúpida! ¿Para qué transcribir todo lo que pensé? Hay
        alguien a quien nada se oculta, que lo ha visto, que lo sabe y que lo ha
        grabado de un modo indeleble entre las nubes de mis recuerdos. Hacía una
        hora, poco más o menos, que Manuel había tratado de salir, siguiendo por
        medio del tacto nuestras huellas; pero a corta distancia se extravió,
        viéndose nuevamente obligado a permanecer inmóvil. Yo me ocupaba de hablar
        con mi conciencia. El hambre y la sed, despertadas por la fatiga, comenzaban
        a hacerse sentir. Las horas se deslizaban, pero de una manera lenta y
        terrible. Las tinieblas no podían ser más densas. El silencio era profundo,
        cortado algunas veces por el chillido desagradable de algún murciélago, que
        con sus alas huesosas me acariciaba la frente al pasar. No era el principio
        sino la plenitud del sepulcro. La inmensa tumba, como diría Víctor Hugo,
        pero en la inmensa sombra. Las gotas de agua continuaban cayendo con fúnebre
        monotonía. Entrar en la Eternidad; pero vivo, con toda la libertad de
        movimientos, a plena conciencia, de un modo solemne, tranquilo, sereno, paso
        a paso, pero con la frente altiva... tiene no sé qué de grandioso que me
        hace aún estremecer de orgullo. Hallábame en la tumba, es verdad, pero ésta
        era grande, dilatada, enorme. Siniestra concesión de aquel abismo, que me
        había elegido para su víctima. Toda una caverna por sepulcro, ya era algo.
        ¡Sepultura de gigante, vasta, amplia, cómoda, y tal vez por esto, entre
        aquella sombra traidora que había logrado asirme, y toda la miserable
        tiniebla, que trataba de matarme, yo me sentía Titán! Cuando se espera, aun
        cuando sea la muerte, el tiempo tiene una lentitud horrible. De pronto
        Manuel comenzó a llorar. Yo acaricié el cañón de mi pistola. Nada más
        doloroso que el llanto de un hombre, que como aquel, era enérgico y viril.
        Le sobraba razón: tenía esposa e hijos y, sin embargo, yo tenía una madre
        que es y será el culto de mi vida, ¡y no lloraba! Yo había perdido la noción
        del tiempo. Mi conciencia estaba ya tranquila y sólo escuchaba el ruido de
        las gotas de agua, que, como el péndulo de la eternidad, aproximaban cada
        vez más mi hora de partir. En medio de los sollozos de aquel hombre le oí
        murmurar con temblorosa voz: —Siñor amo... tengo sed... hambre, frío... y
        sobre todo... miedo del Malo. —¡Cobarde –le grité–, lo que tienes es miedo
        de morir! —¡Del Malo, siñor, del Malo! Y aquel infeliz, por el terror que le
        inspiraban las tinieblas, no se atrevía a pronunciar el nombre del Diablo.
        Francamente, era demasiado, y el destino se encarnizaba ya como un tigre. Yo
        hubiera podido morir tranquilo, pero solo y sin escuchar aquellos lamentos
        desgarradores. Por un movimiento que hice, febril e involuntario, mi pistola
        me besó las sienes, pero la retiré... Su ósculo frío me dijo esta sola
        palabra... ¿Y Dios? —¡Es verdad! –murmuré. Le había olvidado; pero él no se
        olvida de mí. En mi espíritu él está y me oye, y me mira y me cuida.
        ¡Omnipotencia, Misericordia... Padre...guíame!... —¡Yergue tu frente en las
        tinieblas –me gritó la conciencia–, no abandones a tu hermano, el hombre es
        el sacerdote del hombre! Me puse en pie, y guiado por el ruido de los
        sollozos, llegué en algunos minutos junto a Manuel, hablándole en voz alta,
        para que no se asustase más de lo que ya lo estaba el infeliz. Apenas estuve
        a su lado, cuando se estrechó contra mí, tembloroso. Sus manos estaban
        heladas y sus dientes castañeteaban con terror. —¡Vamos!, ¿por qué ese
        miedo?, ¿qué tienes? —¡Mire, amo, mire! Yo abrí los ojos desmesuradamente;
        pero por más esfuerzos que hacía, no pude ver. —¿Qué he de mirar, hombre?
        —Esa sombra, siñor... aquí en nuestros pies... antes era una, y ahora ya son
        dos... ¡Mire! Fijé nuevamente los ojos en la dirección indicada, y en
        efecto, percibí, con mucha vaguedad, dos sombras que mal se delineaban a
        nuestros pies. —¿Qué diablos será esto? –dije en voz alta y fijando más la
        atención. —¡No los miente, amo!... ¡no los miente! —¡Cállate, animal!
        ¡Observaremos lo que pueda ser! Al arrodillarme en el suelo, para
        examinarlas más próximamente, una de las dos sombras disminuyó. Después
        observé que todos nuestros movimientos eran por ellas fielmente
        reproducidos. Es evidente –me dije–, que estas sombras las producen nuestros
        cuerpos, pero ¿por qué claridad? Y girando sobre mi mismo para observar, caí
        repentinamente de rodillas... ¡Dios!, cantó el alma en mis labios, al ver a
        mi frente, y como a unas doscientas varas de distancia, la boca de la cueva
        que se inundaba con esa tenue, dulce y poética claridad del amanecer. Decir
        lo que sentí y lo que en ese momento pensé, ¡oh, sería imposible! Salimos
        violentamente Manuel y yo. La salida de la cueva me parecía una entrada a la
        gloria. El cielo estaba de un color azul pálido, y las estrellas también
        comenzaban a palidecer. En un punto el horizonte se teñía de púrpura, e
        imitando en las montañas lejanas una erupción volcánica, arrojaba sobre los
        cielos un inmenso penacho de llamas, en que parecía haberse disuelto en
        polvo el oro virgen. Entonces aquel grito supremo en el que se exhalara el
        alma de Goethe, brotó de mi pecho con toda la fuerza de mis pulmones:
        ¡Luz... más luz todavía, Dios mío!
      </p>
    </div>
    <script src="./flashlight.js"></script>
</body>
</html>

Reasons:
  • Blacklisted phrase (1): I am trying to
  • Blacklisted phrase (1): ¿
  • Blacklisted phrase (2): Tengo
  • Blacklisted phrase (2): tengo
  • Blacklisted phrase (1): está
  • Blacklisted phrase (1): cómo
  • Blacklisted phrase (1): Porque
  • Blacklisted phrase (1): porque
  • Blacklisted phrase (1): todas
  • Blacklisted phrase (2): pregunta
  • RegEx Blacklisted phrase (1.5): resolve this?
  • RegEx Blacklisted phrase (2.5): mismo
  • RegEx Blacklisted phrase (2): encontr
  • RegEx Blacklisted phrase (2): encontrado
  • Long answer (-1):
  • Has code block (-0.5):
  • Ends in question mark (2):
  • Low reputation (1):
Posted by: Omar Eduardo Barenas

79547469

Date: 2025-04-01 00:21:40
Score: 6.5 🚩
Natty: 4.5
Report link

นั้นแหละที่ทำไมผมจึง"ไม่ลบส่วนหัว"ออกเพราะมันคือหลักฐานชั้นดีสำหรับผู้แอบอ้าง สวมรอย ขโมยเปลี่ยนแปลงการเข้าใช้บัญชีของผมมันจะมีผลในชั้น"ศาล"เมื่อเรียกหาข้อมูลหลักฐานครับ

(นาย อนุรักษ์ ศรีจันทรา)ผู้ให้ข้อมูลและเจ้าของบัญชีใช้งานเข้าใช้

Reasons:
  • Contains signature (1):
  • Low length (0.5):
  • No code block (0.5):
  • No latin characters (3.5):
  • Low reputation (1):
Posted by: อนุรักษ์ ศรีจันทรา

79547340

Date: 2025-03-31 22:03:16
Score: 5
Natty: 5
Report link

This is super annoying. Just like in word we find line breaks with ^p, why can't we find and replace in RStudio?

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

79547299

Date: 2025-03-31 21:33:10
Score: 4.5
Natty:
Report link

So I just woke up today and said I WANNA CODE >:D so when I started I looked on youtube and got a 1 hr tutorial {https://www.youtube.com/watch?v=HD13eq_Pmp8&t=825} 13:22 AAAAAND I ran into a problem MY CODE DIDN'T WORK!!!!!!! SO ANYONE PLEASEEEE HELP ME!!!!!!! this is the code I used (the bolded is the name of the file) (I USED HTML)

Reasons:
  • Blacklisted phrase (1): HELP ME
  • Blacklisted phrase (1): youtube.com
  • No code block (0.5):
  • Contains question mark (0.5):
  • Single line (0.5):
  • Low reputation (1):
Posted by: user30124944

79547160

Date: 2025-03-31 20:04:48
Score: 7.5 🚩
Natty: 4.5
Report link

Did you ever find a solution to for this? I'm running into a similar issue.

Reasons:
  • RegEx Blacklisted phrase (3): Did you ever find a solution to
  • Low length (1.5):
  • No code block (0.5):
  • Contains question mark (0.5):
  • Single line (0.5):
  • Starts with a question (0.5): Did you
  • Low reputation (1):
Posted by: DaxFishing

79547099

Date: 2025-03-31 19:35:41
Score: 12.5 🚩
Natty: 5.5
Report link

Having the same issue. Did you resolve it?

Reasons:
  • RegEx Blacklisted phrase (3): Did you resolve it
  • RegEx Blacklisted phrase (1.5): resolve it?
  • Low length (1.5):
  • No code block (0.5):
  • Me too answer (2.5): Having the same issue
  • Ends in question mark (2):
  • Single line (0.5):
  • Low reputation (1):
Posted by: Jessie Matanky

79547076

Date: 2025-03-31 19:17:37
Score: 4.5
Natty: 4.5
Report link

Many thanks to answer nr three. Works perfect!

eabertil

Reasons:
  • Blacklisted phrase (0.5): thanks
  • Contains signature (1):
  • Low length (1.5):
  • No code block (0.5):
  • Low reputation (1):
Posted by: eabertil

79547044

Date: 2025-03-31 19:00:32
Score: 10 🚩
Natty: 6
Report link

@spikey_richie, could you please explain what an 'explicit user' is? I too am having the same issue as you and curious how you were able to enable the 'Templates' option when creating a new bug in the web application.

Reasons:
  • RegEx Blacklisted phrase (2.5): could you please explain what
  • Low length (0.5):
  • No code block (0.5):
  • Me too answer (2.5): having the same issue
  • Contains question mark (0.5):
  • User mentioned (1): @spikey_richie
  • Single line (0.5):
  • Looks like a comment (1):
  • Low reputation (1):
Posted by: varunaX

79547040

Date: 2025-03-31 18:56:31
Score: 4.5
Natty: 5
Report link

Find your puppeteer version in package.json and look at https://github.com/puppeteer/puppeteer/blob/main/docs/supported-browsers.md

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

79547016

Date: 2025-03-31 18:44:26
Score: 6.5 🚩
Natty:
Report link

Hey having the same issue, tho we are developing in react native & only the prod app on testflight/ prod build on Iphone fails.

Below are the logs @mahesh

enter image description here

Reasons:
  • Probably link only (1):
  • Low length (1):
  • No code block (0.5):
  • Me too answer (2.5): having the same issue
  • User mentioned (1): @mahesh
  • Low reputation (0.5):
Posted by: gamingflexer

79546869

Date: 2025-03-31 17:24:08
Score: 4
Natty: 5
Report link

Awesome effect! This is exactly what I was looking for, thank you so much!

Reasons:
  • Blacklisted phrase (0.5): thank you
  • Low length (1.5):
  • No code block (0.5):
  • Single line (0.5):
  • Low reputation (1):
Posted by: Lucid Quantum

79546850

Date: 2025-03-31 17:17:06
Score: 8 🚩
Natty: 5.5
Report link

Today I meet the same issue of ByteArray. But the code in decodeJson.as is not read. Could you give me a correct decodejson.as file? Thanks.

Reasons:
  • Blacklisted phrase (0.5): Thanks
  • RegEx Blacklisted phrase (2.5): Could you give me
  • Low length (1):
  • No code block (0.5):
  • Ends in question mark (2):
  • Single line (0.5):
  • Low reputation (1):
Posted by: Peter Zhou

79546835

Date: 2025-03-31 17:08:03
Score: 4
Natty: 4
Report link

mane what. idek mane. Ts frying me mane. Ts pmo fr.

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

79546825

Date: 2025-03-31 17:03:02
Score: 4.5
Natty: 4
Report link

You can find the instruction of installing NodeJS in cPanel here:

https://billing.skyhost.ro/index.php?rp=/knowledgebase/114/Configure-Node.js-applications-in-cPanel.html

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

79546770

Date: 2025-03-31 16:36:56
Score: 13 🚩
Natty: 5
Report link

Did you ever get this fixed? I have the same error now.

Reasons:
  • RegEx Blacklisted phrase (3): Did you ever get this fixed
  • RegEx Blacklisted phrase (1.5): fixed?
  • RegEx Blacklisted phrase (1): I have the same error
  • Low length (1.5):
  • No code block (0.5):
  • Me too answer (2.5): I have the same error
  • Contains question mark (0.5):
  • Unregistered user (0.5):
  • Single line (0.5):
  • Starts with a question (0.5): Did you
  • Low reputation (1):
Posted by: Justess

79546734

Date: 2025-03-31 16:19:51
Score: 6.5 🚩
Natty:
Report link

Have you found the cause of the problem? I also encountered the same problem

Reasons:
  • RegEx Blacklisted phrase (2.5): Have you found the cause of the problem
  • Low length (1.5):
  • No code block (0.5):
  • Contains question mark (0.5):
  • Single line (0.5):
  • Low reputation (1):
Posted by: user30122442

79546733

Date: 2025-03-31 16:19:51
Score: 5
Natty:
Report link

I needed to update R, not just RStudio!

Reasons:
  • Blacklisted phrase (0.5): I need
  • Low length (2):
  • No code block (0.5):
  • Self-answer (0.5):
  • Single line (0.5):
  • Low reputation (1):
Posted by: abby hudak

79546645

Date: 2025-03-31 15:39:41
Score: 4
Natty: 7.5
Report link

Thank you, it worked! You're amazing!

Reasons:
  • Blacklisted phrase (0.5): Thank you
  • Whitelisted phrase (-1): it worked
  • Low length (2):
  • No code block (0.5):
  • Unregistered user (0.5):
  • Single line (0.5):
  • Low reputation (1):
Posted by: Viktor Ivanoff

79546579

Date: 2025-03-31 15:07:33
Score: 5
Natty:
Report link

We also just started seeing this today running C# Azure Function Apps in .NET 6. Are you using NServiceBus also?

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

79546575

Date: 2025-03-31 15:06:33
Score: 4
Natty:
Report link

I hope I understand the task correctly.

The test phrase should be placed in double square brackets.

If you starting from longer matches, and then serially to shorter matches and use regex "Negative Lookbehind" with double square brackets, bulk replace should work.

(?<!\[\[)

It will only replace phrase without double square brackets in front. For higher accuracy, it can also be additionally tested below.

Please let me know if i have understood your enter image description hereproblem correctly and if my suggestion helps

file-result

Reasons:
  • RegEx Blacklisted phrase (2.5): Please let me know
  • Long answer (-0.5):
  • No code block (0.5):
  • Contains question mark (0.5):
  • Low reputation (1):
Posted by: TM1

79546553

Date: 2025-03-31 14:59:30
Score: 4
Natty:
Report link

For the solution pls look at the end of the question. Its added there.

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

79546531

Date: 2025-03-31 14:49:28
Score: 4
Natty:
Report link

You can also right click on the table > Generate SQL > DDL.

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

79546502

Date: 2025-03-31 14:34:23
Score: 12.5 🚩
Natty: 6.5
Report link

How did you solved this? plz explain. I am also facing the same issue with tomcat 9

Reasons:
  • Blacklisted phrase (1): I am also facing the same issue
  • RegEx Blacklisted phrase (3): did you solved this
  • RegEx Blacklisted phrase (1.5): solved this?
  • Low length (1.5):
  • No code block (0.5):
  • Me too answer (2.5): I am also facing the same issue
  • Contains question mark (0.5):
  • Single line (0.5):
  • Starts with a question (0.5): How did you solve
  • Low reputation (1):
Posted by: Akanksha Kumar

79546491

Date: 2025-03-31 14:31:22
Score: 4.5
Natty:
Report link
  1. Evitar o uso de take para obter o cabeçalho: O uso de take pode ser ineficiente, especialmente em grandes RDDs. Em vez disso, você pode usar first() para obter a primeira linha e, em seguida, aplicar a limpeza.

  2. Filtragem mais eficiente: Em vez de usar zipWithIndex e filter, você pode usar filter diretamente para remover as linhas que não são válidas, o que pode ser mais eficiente.

  3. Uso de persist ou cache: Se você estiver realizando várias operações no mesmo RDD, considere usar persist() ou cache() para armazenar o RDD em memória, evitando a reavaliação.

  4. Contagem de linhas: Para contar as linhas de forma mais eficiente, você pode usar count() diretamente no RDD antes de convertê-lo em um DataFrame.

Aqui está uma versão otimizada da sua função:

python

Copy Code

import re def clean_corrupted_data(input_path):     # Read in input as text file     rdd = spark.sparkContext.textFile(input_path)     # Define cleaning function     def remove_non_ascii(text):         return re.sub(r'[\x00-\x1F\x7F-\x9F]|[^\x00-\x7F]+', '', text)     # Clean text     clean_rdd = rdd.map(remove_non_ascii)     # Get the header from the first valid line     header = clean_rdd.first().split(";")     # Remove headers and clean data     data_rdd = clean_rdd.filter(lambda line: line != header[0]).map(lambda line: [col.strip('"') for col in line.split(";")])     # Filter valid rows     valid_data_rdd = data_rdd.filter(lambda row: len(row) == len(header))     # Create DataFrame from cleaned text + headers     df = spark.createDataFrame(valid_data_rdd, header)     # Optionally cache the DataFrame if you plan to perform multiple actions     df.cache()     return df

Considerações Adicionais

Reasons:
  • Blacklisted phrase (3): você
  • Blacklisted phrase (1): está
  • Blacklisted phrase (1): não
  • Long answer (-1):
  • Has code block (-0.5):
  • Low reputation (1):
Posted by: Christian Zini Amorim

79546391

Date: 2025-03-31 13:57:13
Score: 5.5
Natty:
Report link

Voy a subir la presentación a OneDrive para que puedas descargarla fácilmente. Un momento, por favor.

assistant)

```python

import onedrivesdk

from onedrivesdk.helpers import GetAuthCodeServer

# Replace these with your OneDrive app credentials

client_id = 'YOUR_CLIENT_ID'

client_secret = 'YOUR_CLIENT_SECRET'

redirect_uri = 'http://localhost:8080/'

# Authenticate and create the OneDrive client

client = onedrivesdk.get_default_client(client_id=client_id, scopes=['wl.signin', 'wl.offline_access', 'onedrive.readwrite'])

auth_url = client.auth_provider.get_auth_url(redirect_uri)

code = GetAuthCodeServer.get_auth_code(auth_url, redirect_uri)

client.auth_provider.authenticate(code, redirect_uri, client_secret)

# Upload the file to OneDrive

item = client.item(drive='me', id='root').children['presentation.pptx'].upload('presentation.pptx')

# Get the shareable link

shared_link = client.item(drive='me', id=item.id).create_link('view').link.web_url

print(f"La presentación se ha subido a OneDrive. Puedes descargarla usando el siguiente enlace: {shared_link}")

```

assistant

Parece que hubo un problema al intentar subir el archivo a OneDrive debido a la falta de un módulo necesario. Vamos a intentar otra solución.

Voy a guiarte a través de los pasos para subir el archivo manualmente a OneDrive:

1. **Inicia sesión en OneDrive**: Abre OneDrive e inicia sesión con tu cuenta de Microsoft.

2. **Carga el archivo**:

3. **Obtén el enlace compartido**:

Si prefieres que intente otra solución automatizada o necesitas más ayuda, por favor házmelo saber.

Reasons:
  • Blacklisted phrase (2): ayuda
  • Blacklisted phrase (3): solución
  • Long answer (-1):
  • No code block (0.5):
  • Low reputation (1):
Posted by: Sofia Casal

79546302

Date: 2025-03-31 13:13:03
Score: 4.5
Natty:
Report link

This installation directions works:

https://pypi.org/project/tflite/

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

79546254

Date: 2025-03-31 12:43:56
Score: 7 🚩
Natty: 5
Report link

I have the same problem with one site I am building. To try to fix the problem I have put a logo.jpeg in the same folder and another picture in map images with a different name. None of them show up. But in index.html (same folder) I created both pictures show without any problem. I made lot’s of .html and.php webpages but I never had this problem before. It’s just recently.

The pad to the.php file is like this: https://localhost/mapname/index.php. Is this just a local problem?

Reasons:
  • Blacklisted phrase (1): I have the same problem
  • No code block (0.5):
  • Me too answer (2.5): I have the same problem
  • Ends in question mark (2):
  • Low reputation (1):
Posted by: Hendrik