79551126

Date: 2025-04-02 16:50:26
Score: 4.5
Natty:
Report link

Starship supports Enabling Right Prompt. Work for me on MacOS with the zsh shell. I tried add_newline = false but it doesn't work for me. I don't know if they have the option for Left Prompt 😂.

Reasons:
  • Blacklisted phrase (1): 😂
  • RegEx Blacklisted phrase (2): doesn't work for me
  • Low length (1):
  • Has code block (-0.5):
  • Single line (0.5):
  • Low reputation (0.5):
Posted by: Phạm Huy Cường Thịnh

79551069

Date: 2025-04-02 16:21:16
Score: 6 🚩
Natty:
Report link

what does --only-show-errors command do in such case ? Will it be helpful to track only errors ? - https://learn.microsoft.com/en-us/cli/azure/vm/run-command?view=azure-cli-latest#az-vm-run-command-invoke-optional-parameters

Have you given a try ?

Reasons:
  • Probably link only (1):
  • Low length (1):
  • No code block (0.5):
  • Ends in question mark (2):
  • Starts with a question (0.5): what do
  • Low reputation (1):
Posted by: Pratiyush Pushkar

79551046

Date: 2025-04-02 16:09:12
Score: 5.5
Natty:
Report link

try to tick this settings on excel
enter image description here

Reasons:
  • Blacklisted phrase (1): enter image description here
  • Probably link only (1):
  • Low length (2):
  • No code block (0.5):
  • Low reputation (1):
Posted by: user510603

79551035

Date: 2025-04-02 16:07:10
Score: 10.5 🚩
Natty:
Report link

sir did you solve the problem?

Reasons:
  • RegEx Blacklisted phrase (3): did you solve the problem
  • RegEx Blacklisted phrase (1.5): solve the problem?
  • Low length (2):
  • No code block (0.5):
  • Ends in question mark (2):
  • Single line (0.5):
  • Low reputation (1):
Posted by: Duygu Karataş

79551004

Date: 2025-04-02 15:51:06
Score: 4.5
Natty:
Report link

Hello and welcome to Los pollos hermanos family My name is Anton Chigurh but you can call me Gus

Reasons:
  • Contains signature (1):
  • Low length (1):
  • No code block (0.5):
  • Unregistered user (0.5):
  • Single line (0.5):
  • Low reputation (1):
Posted by: Anton Chigurh

79550952

Date: 2025-04-02 14:50:52
Score: 6
Natty: 7
Report link

if you still want to have one container instead of 2/3 check this article. https://medium.com/@boris.haviar/serving-angular-ssr-with-django-8d2ad4e894be

Reasons:
  • Blacklisted phrase (1): this article
  • Blacklisted phrase (0.5): medium.com
  • Probably link only (1):
  • Low length (1.5):
  • No code block (0.5):
  • Single line (0.5):
  • Low reputation (1):
Posted by: Boris Haviar

79550923

Date: 2025-04-02 14:39:48
Score: 6.5 🚩
Natty: 4
Report link

Hi I have the exact same Problem!!

I use python and marimo in a uv env in my workspace Folder (Win11) . And get the same marimo not loading problem and want to share some Additional information, that could maybe help:

screenshot

Basically it seems the ports of the marimo server, the marimo VSCode extention and the native VSCode notebook editor do not match up. When I change the port in the marimo VSCode Extention from 2818 to 2819, the marimo server starts on port 2820, but not always, it seems the port difference of 1 between settings and marimo server start is only happening sporadically.

I managed to at one point get all ports to match up, but still had the same issue:

screenshot2

Also restarting my PC, VSCode, it's extentions, or marimo did not work for me.

Reasons:
  • Blacklisted phrase (1): did not work
  • RegEx Blacklisted phrase (2): Hi I have the
  • Long answer (-0.5):
  • No code block (0.5):
  • Me too answer (2.5): I have the exact same Problem
  • Low reputation (1):
Posted by: Max Jost

79550922

Date: 2025-04-02 14:38:47
Score: 6.5 🚩
Natty:
Report link

I have some doubt:
I am getting the Error as:

Argument of type "tuple[Any, NDArray[Any] | Unbound, NDArray[Any] | Unbound] | tuple[Any, NDArray[Any] | Unbound] | Any | tuple[Any | Unknown, Unknown, Unknown] | tuple[Any | Unknown, Unknown] | Unknown" cannot be assigned to parameter "x" of type "ConvertibleToFloat" in function "__new__"
  Type "tuple[Any, NDArray[Any] | Unbound, NDArray[Any] | Unbound] | tuple[Any, NDArray[Any] | Unbound] | Any | tuple[Any | Unknown, Unknown, Unknown] | tuple[Any | Unknown, Unknown] | Unknown" is not assignable to type "ConvertibleToFloat"
    Type "tuple[Any, NDArray[Any] | Unbound, NDArray[Any] | Unbound]" is not assignable to type "ConvertibleToFloat"
      "tuple[Any, NDArray[Any] | Unbound, NDArray[Any] | Unbound]" is not assignable to "str"
      "tuple[Any, NDArray[Any] | Unbound, NDArray[Any] | Unbound]" is incompatible with protocol "Buffer"
        "__buffer__" is not present
      "tuple[Any, NDArray[Any] | Unbound, NDArray[Any] | Unbound]" is incompatible with protocol "SupportsFloat"
        "__float__" is not present
      "tuple[Any, NDArray[Any] | Unbound, NDArray[Any] | Unbound]" is incompatible with protocol "SupportsIndex"
  ...

code section is as:

def calculating_similarity_score(self, encoded_img_1, encoded_img_2):
        print(f"calling similarity function .. SUCCESS .. ")
        print(f"decoding image .. ")
        decoded_img_1 = base64.b64decode(encoded_img_1)
        decoded_img_2 = base64.b64decode(encoded_img_2)

        print(f"decoding image .. SUCCESS ..")
        # Read the images

        print(f"Image reading ")
        img_1 = imageio.imread(decoded_img_1)
        img_2 = imageio.imread(decoded_img_2)
        print(f"image reading .. SUCCESS .. ")

        # Print shapes to diagnose the issue
        print(f"img_1 shape = {img_1.shape}")
        print(f"img_2 shape = {img_2.shape}")

        # ")
        # Convert to float
        img_1_as = img_as_float(img_1)
        img_2_as = img_as_float(img_2)
        print(f"converted image into the float ")

        print(f"calculating score .. ")
        # Calculate SSIM without the full parameter
        if len(img_1_as.shape) == 3 and img_1_as.shape[2] == 3:
            # For color images, specify the channel_axis
            ssim_score = ssim(img_1_as, img_2_as, data_range=img_1_as.max() - img_1_as.min(), channel_axis=2, full=False, gradient=False)
        else:
            # For grayscale images
            ssim_score = ssim(img_1_as, img_2_as, data_range=img_1_as.max() - img_1_as.min())
        print(f"calculating image .. SUCCESS .. ")

        return ssim_score

so upon returning the value form this function I and adding the operator on it like:
if returned_ssim_score > 0.80: ## then for this line it gives me the above first one error.
but when I am printing this returned value then it is working fine like showing me the v alue as: 0.98745673...

so can you help me with this

Reasons:
  • Blacklisted phrase (1): help me
  • RegEx Blacklisted phrase (2): I have some doubt
  • RegEx Blacklisted phrase (3): can you help me
  • RegEx Blacklisted phrase (1): I am getting the Error
  • Long answer (-1):
  • Has code block (-0.5):
  • Low reputation (1):
Posted by: Lakshay

79550876

Date: 2025-04-02 14:19:40
Score: 5
Natty: 5.5
Report link

@Parfait
I am getting error "NoneType' object has no attribute 'text'.

All the "content" nodes (sort to be based upon) has some value in it.

Reasons:
  • Blacklisted phrase (1.5): m getting error
  • Low length (1):
  • No code block (0.5):
  • User mentioned (1): @Parfait
  • Low reputation (1):
Posted by: Writer Oh One

79550844

Date: 2025-04-02 14:03:35
Score: 9 🚩
Natty: 5
Report link

I have the same question: can someone tell me if I can adjust the estimation window? As I understand the package description, all the data available before the event date is used for the estimation.

"estimation.period: If “type” is specified, then estimation.period is calculated for each firm-event in “event.list”, starting from the start of the data span till the start of event period (inclusive)."

That would lead to different length of the estimation depending on the event date. Can I manually change this (e.g estimation window t:-200 until t:-10)?

Reasons:
  • Blacklisted phrase (1): I have the same question
  • RegEx Blacklisted phrase (2.5): can someone tell me
  • Long answer (-0.5):
  • No code block (0.5):
  • Me too answer (2.5): I have the same question
  • Ends in question mark (2):
  • Low reputation (1):
Posted by: Juana

79550812

Date: 2025-04-02 13:47:30
Score: 4
Natty: 4
Report link

Here is a dirty way to remove O( ) : add ".subs(t**6,0)" to your solution

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

79550749

Date: 2025-04-02 13:25:22
Score: 4.5
Natty:
Report link

TELEGRAM Chat

TELEGRAM Admin

YouTube Channel

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

79550739

Date: 2025-04-02 13:23:20
Score: 9 🚩
Natty: 5
Report link

Did this get resolved? Facing the same error.

Reasons:
  • RegEx Blacklisted phrase (1.5): resolved?
  • Low length (1.5):
  • No code block (0.5):
  • Me too answer (2.5): Facing the same error
  • Contains question mark (0.5):
  • Unregistered user (0.5):
  • Single line (0.5):
  • Starts with a question (0.5): Did this
  • Low reputation (1):
Posted by: user30143847

79550676

Date: 2025-04-02 12:57:11
Score: 11.5 🚩
Natty: 6
Report link

Did you ever find a solution for this? I'm having the same problem, container seems to be running infinitely and I want it to be marked as "success" so the next tasks can move on.

Reasons:
  • Blacklisted phrase (1): I'm having the same problem
  • RegEx Blacklisted phrase (3): Did you ever find a solution
  • RegEx Blacklisted phrase (1): I want
  • Low length (1):
  • No code block (0.5):
  • Me too answer (2.5): I'm having the same problem
  • Contains question mark (0.5):
  • Single line (0.5):
  • Starts with a question (0.5): Did you
  • Low reputation (1):
Posted by: Gonçalo Martins

79550655

Date: 2025-04-02 12:47:07
Score: 7 🚩
Natty:
Report link

Looking at it, the only thing it triggers me would be the dataloader...
But if it work with the other models, would work with this too.

Can you share your dataloader code?

Reasons:
  • RegEx Blacklisted phrase (2.5): Can you share your
  • Low length (1):
  • No code block (0.5):
  • Ends in question mark (2):
  • Low reputation (1):
Posted by: Eduardo L da Silva

79550645

Date: 2025-04-02 12:45:06
Score: 4.5
Natty: 5
Report link

I rcommend https://min.io/docs/minio/linux/reference/minio-mc.html, which is well maintained these days.

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

79550599

Date: 2025-04-02 12:20:58
Score: 4
Natty:
Report link

I think it's NOT a real answer, but a workaround. MS should work on this.

This article helped me. Basically, I had to delete the "My Exported Templates" folder and now Visual Studio created the Folder and the Template.

The template was finally created!

Reasons:
  • Blacklisted phrase (1): This article
  • Probably link only (1):
  • Low length (0.5):
  • No code block (0.5):
  • Self-answer (0.5):
  • Low reputation (0.5):
Posted by: Angelo Bernardi

79550514

Date: 2025-04-02 11:46:47
Score: 6 🚩
Natty: 5
Report link

here's my query but it does not show anything on the map.

json_build_object('type', 'Polygon','geometry', ST_AsGeoJSON(ST_Transform(geom, 4326))::json)::text as geojson

any idea?

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

79550493

Date: 2025-04-02 11:38:44
Score: 6 🚩
Natty:
Report link

same question,

stream splits tool_calls and returns data: {"choices":[{"delta":{"content":null,"tool_calls":[{"function":{"arguments":"{\"city\": \""}," 



so that the complete parameters cannot be obtained, but I don't know how to solve it


Map<String, Object> arguments = ModelOptionsUtils.jsonToMap(functionInput);
Reasons:
  • Blacklisted phrase (1): how to solve
  • RegEx Blacklisted phrase (2): I don't know how to solve
  • RegEx Blacklisted phrase (1): same question
  • RegEx Blacklisted phrase (2): know how to solve
  • Has code block (-0.5):
  • Low reputation (0.5):
Posted by: ldl

79550492

Date: 2025-04-02 11:38:44
Score: 5.5
Natty: 5
Report link

Inspired by @Oliver Matthews' answer, I create a repository on markdown-include: https://github.com/atlasean/markdown-include .

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

79550397

Date: 2025-04-02 10:43:29
Score: 4
Natty: 4.5
Report link

Migrating from 0.11.x to 0.12+

https://ffmpegwasm.netlify.app/docs/migration

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

79550377

Date: 2025-04-02 10:26:24
Score: 4.5
Natty: 5.5
Report link

I create a repository on markdown-include: https://github.com/atlazean/markdown-include

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

79550312

Date: 2025-04-02 10:01:17
Score: 5.5
Natty:
Report link

enter image description here Now it only supports .exe and .MSI format packages.

Reasons:
  • Blacklisted phrase (1): enter image description here
  • Probably link only (1):
  • Low length (1.5):
  • No code block (0.5):
  • Single line (0.5):
  • Low reputation (1):
Posted by: xingba gan

79550256

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

Not having the exact same issues as you, but definitely having issues in this update. Preview is super slow and buggy. As soon as I use a textfield anywhere even on a basic test, I am getting the error: this application, or a library it uses, has passed an invalid numeric value (NaN, or not-a-number) to CoreGraphics API and this value is being ignored. Please fix this problem.in the console. Build times definitely seem soooooo much slower, its making the process annoying when it doesn't need to be.

I've cleaned the derived data, tried killing every Xcode process going, restarted a billion times lol. Great update this time around.

Reasons:
  • RegEx Blacklisted phrase (1): I am getting the error
  • Long answer (-0.5):
  • No code block (0.5):
  • Me too answer (2.5): having the exact same issue
  • Low reputation (1):
Posted by: Billie Boo

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.