79295298

Date: 2024-12-19 18:47:31
Score: 5.5
Natty: 7.5
Report link

le même problème moi aussi quelle est votre solution svp?

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

79295295

Date: 2024-12-19 18:46:30
Score: 5
Natty: 5.5
Report link

How do i make the monthly numbers to align center. defaultly they are in top right corner

Reasons:
  • Blacklisted phrase (1): How do i
  • Low length (1.5):
  • No code block (0.5):
  • Single line (0.5):
  • Starts with a question (0.5): How do i
  • Low reputation (1):
Posted by: sunke pavan kumar

79295275

Date: 2024-12-19 18:38:26
Score: 6 🚩
Natty: 3.5
Report link

If you found the solution please share. I'm facing with same problem.

Reasons:
  • RegEx Blacklisted phrase (2.5): please share
  • Low length (1.5):
  • No code block (0.5):
  • Single line (0.5):
  • Low reputation (1):
Posted by: Nahidul Islam Shakin

79295272

Date: 2024-12-19 18:35:24
Score: 7 🚩
Natty: 4
Report link

Hey @j_quelly I use same solution what u, but it doesn't help. I've set the conditionall on entry.isIntersecting && and isIntersected (I need it to display animation once), but infinity loop still goes on. When i run useEffect with observerObject into component, everything is running like a charm, but for list elements it's a lot lines of code, that's why I want to encapsulated it to customHook.

Source Code

useIntersectionListObserver.ts

import { useEffect, useState, useCallback, useRef, MutableRefObject } from "react";

export const useIntersectionListObserver = (
  listRef: MutableRefObject<(HTMLDivElement | null)[]>,
  options?: IntersectionObserverInit
) => {
  const [visibleItems, setVisibleItems] = useState(new Set<number>());
  const [hasIntersected, setHasIntersected] = useState(false);
  const observerRef = useRef<IntersectionObserver | null>(null);

  const observerCallback = useCallback(
    (entries: IntersectionObserverEntry[]) => {
      entries.forEach((entry) => {
        const target = entry.target as HTMLDivElement;
        const index = Number(target.dataset.index);

        if (entry.isIntersecting && !hasIntersected) {
          setVisibleItems(
            (prevVisibleItems) => new Set(prevVisibleItems.add(index))
          );
          index === listRef.current.length - 1 && setHasIntersected(true);
        } else {
          setVisibleItems((prevVisibleItems) => {
            const newVisibleItems = new Set(prevVisibleItems);
            newVisibleItems.delete(index);
            return newVisibleItems;
          });
        }
      });
    },
    [hasIntersected, listRef]
  );

  useEffect(() => {
    if (observerRef.current) {
      observerRef.current.disconnect();
    }

    observerRef.current = new IntersectionObserver(observerCallback, options);

    const currentListRef = listRef.current;
    currentListRef.forEach((item) => {
      if (item) {
        observerRef.current.observe(item);
      }
    });

    return () => {
      if (observerRef.current) {
        observerRef.current.disconnect();
      }
    };
  }, [listRef, options, observerCallback]);

  return { visibleItems
 };
};

Any help in identifying the cause of the infinite loop and how to fix it would be greatly appreciated.

Reasons:
  • Blacklisted phrase (1): appreciated
  • Blacklisted phrase (0.5): I need
  • Blacklisted phrase (1): Any help
  • RegEx Blacklisted phrase (3): Any help in identifying the cause of the infinite loop and how to fix it would be greatly appreciated
  • RegEx Blacklisted phrase (1): I want
  • Long answer (-1):
  • Has code block (-0.5):
  • User mentioned (1): @j_quelly
  • Low reputation (1):
Posted by: Mark_stuck

79295233

Date: 2024-12-19 18:13:17
Score: 8 🚩
Natty: 5
Report link

Are you using to x-total-length to render your own download UI? I was planning on using the browsers' progress percentage UI using content-length. Were you able to achieve that?

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

79295211

Date: 2024-12-19 18:05:14
Score: 5
Natty: 4.5
Report link

This post (https://www.databricks.com/blog/2015/07/13/introducing-r-notebooks-in-databricks.html) seems to say you can run R notebook in production in databricks.

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

79295163

Date: 2024-12-19 17:46:08
Score: 4
Natty: 4
Report link

I just figured it out; Don't use vim, use nano.

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

79295161

Date: 2024-12-19 17:45:05
Score: 11 🚩
Natty:
Report link

I want to download level 13 map tiles does any one have best solution for downloading...I prefer to go with open source tool but if any tool is available which can make my work easy...then please suggest I have gone through ArcGIS,QGIS,openstreetmap,map proxy, mapbox but I don't found them helpfull so please anyone suggest me the best way to do it. I have also tried by python script but I was only able to download till 12 level , when I downloaded 13 level they were download but they weare blank.

Reasons:
  • Blacklisted phrase (3): please anyone
  • RegEx Blacklisted phrase (2.5): please suggest
  • RegEx Blacklisted phrase (3): does any one have
  • RegEx Blacklisted phrase (1): I want
  • Long answer (-0.5):
  • No code block (0.5):
  • Single line (0.5):
  • Low reputation (1):
Posted by: SDisplay

79295099

Date: 2024-12-19 17:20:59
Score: 4.5
Natty:
Report link

Any clue how to fix this? I'm experiencing something similar. Some resolved issue (https://github.com/supabase/cli/issues/2539) on Supabase repo mentioned this problem was fixed so it may be related to something else.

Reasons:
  • RegEx Blacklisted phrase (1.5): how to fix this?
  • Low length (1):
  • No code block (0.5):
  • Contains question mark (0.5):
  • Single line (0.5):
  • Low reputation (0.5):
Posted by: thib

79295096

Date: 2024-12-19 17:18:57
Score: 8 🚩
Natty: 6
Report link

did u find a solution to that? I need the same functionality, but I need to be able to connect 3 devices the same wifi direct. I want the process to be as much seamless as possible for the user by using QR

Reasons:
  • Blacklisted phrase (0.5): I need
  • RegEx Blacklisted phrase (3): did u find a solution to that
  • RegEx Blacklisted phrase (1): I want
  • Low length (0.5):
  • No code block (0.5):
  • Contains question mark (0.5):
  • Single line (0.5):
  • Starts with a question (0.5): did
  • Low reputation (1):
Posted by: Alex Pawelec

79295056

Date: 2024-12-19 17:02:52
Score: 4.5
Natty: 4
Report link

I´m trying to create an Azure Search vector index as well in the Azure ML UI (Prompt flow) portal but having an error in the component "LLM - Crack and Chunk Data": enter image description here

The error says: User program failed with BaseRagServiceError: Rag system error

Part of the logs is:

input_data=/mnt/azureml/cr/j/60652b595f69/cap/data-capability/wd/INPUT_input_data
input_glob=**/*
allowed_extensions=.txt,.md,.html,.htm,.py,.pdf,.ppt,.pptx,.doc,.docx,.xls,.xlsx,.csv,.json
chunk_size=1024
chunk_overlap=0
output_chunks=/mnt/azureml/cr/j/606547e361134e058c4829792b595f69/cap/data-capability/wd/output_chunks
data_source_url=azureml://locations/XXXXX/workspaces/04XXXX0/data/vector-index-input-1734572551882/versions/1
document_path_replacement_regex=None
max_sample_files=-1
use_rcts=True
output_format=jsonl
custom_loader=None
doc_intel_connection_id=None
output_title_chunk=None
openai_api_version=None
openai_api_type=None
[2024-12-19 01:43:28] INFO     azureml.rag.crack_and_chunk.crack_and_chunk - ActivityStarted, crack_and_chunk (activity.py:108)
[2024-12-19 01:43:28] INFO     azureml.rag.crack_and_chunk - Processing file: What is prompt flow.pdf (crack_and_chunk.py:127)
/azureml-envs/rag-embeddings/lib/python3.9/site-packages/pypdf/_crypt_providers/_cryptography.py:32: CryptographyDeprecationWarning: ARC4 has been moved to cryptography.hazmat.decrepit.ciphers.algorithms.ARC4 and will be removed from cryptography.hazmat.primitives.ciphers.algorithms in 48.0.0.
  from cryptography.hazmat.primitives.ciphers.algorithms import AES, ARC4
[2024-12-19 01:43:31] INFO     azureml.rag.azureml.rag.documents.chunking - No file_chunks to yield, continuing (chunking.py:237)
[2024-12-19 01:43:31] INFO     azureml.rag.azureml.rag.documents.chunking - No file_chunks to yield, continuing (chunking.py:237)
[2024-12-19 01:43:31] INFO     azureml.rag.crack_and_chunk - [DocumentChunksIterator::filter_extensions] Filtered 0 files out of 1 (crack_and_chunk.py:129)
[2024-12-19 01:43:31] INFO     azureml.rag.crack_and_chunk - [DocumentChunksIterator::filter_extensions] Skipped extensions: {} (crack_and_chunk.py:130)
[2024-12-19 01:43:31] INFO     azureml.rag.crack_and_chunk - [DocumentChunksIterator::filter_extensions] Kept extensions: {
  ".pdf": 1
} (crack_and_chunk.py:133)
[2024-12-19 01:43:31] INFO     azureml.rag.azureml.rag.documents.cracking - [DocumentChunksIterator::crack_documents] Total time to load files: 0.30446887016296387
{
  ".txt": 0.0,
  ".md": 0.0,
  ".html": 0.0,
  ".htm": 0.0,
  ".py": 0.0,
  ".pdf": 1.0,
  ".ppt": 0.0,
  ".pptx": 0.0,
  ".doc": 0.0,
  ".docx": 0.0,
  ".xls": 0.0,
  ".xlsx": 0.0,
  ".csv": 0.0,
  ".json": 0.0
} (cracking.py:381)
[2024-12-19 01:43:31] INFO     azureml.rag.azureml.rag.documents.cracking - [DocumentChunksIterator::crack_documents] Total time to load files: 0.30446887016296387
{
  ".txt": 0.0,
  ".md": 0.0,
  ".html": 0.0,
  ".htm": 0.0,
  ".py": 0.0,
  ".pdf": 1.0,
  ".ppt": 0.0,
  ".pptx": 0.0,
  ".doc": 0.0,
  ".docx": 0.0,
  ".xls": 0.0,
  ".xlsx": 0.0,
  ".csv": 0.0,
  ".json": 0.0
} (cracking.py:381)
[2024-12-19 01:43:31] INFO     azureml.rag.azureml.rag.documents.chunking - [DocumentChunksIterator::split_documents] Total time to split 1 documents into 0 chunks: 0.9676399230957031 (chunking.py:247)
[2024-12-19 01:43:31] INFO     azureml.rag.azureml.rag.documents.chunking - [DocumentChunksIterator::split_documents] Total time to split 1 documents into 0 chunks: 0.9676399230957031 (chunking.py:247)
[2024-12-19 01:43:31] INFO     azureml.rag.crack_and_chunk - Processed 0 files (crack_and_chunk.py:208)
[2024-12-19 01:43:31] INFO     azureml.rag.crack_and_chunk - No chunked documents found in /mnt/azureml/cr/j/606547e361134e058c4829792b595f69/cap/data-capability/wd/INPUT_input_data with glob **/* (crack_and_chunk.py:215)
[2024-12-19 01:43:31] ERROR    azureml.rag.crack_and_chunk.crack_and_chunk - ServiceError: intepreted error = Rag system error, original error = No chunked documents found in /mnt/azureml/cr/j/606547e361134e058c4829792b595f69/cap/data-capability/wd/INPUT_input_data with glob **/*. (exceptions.py:124)
[2024-12-19 01:43:36] ERROR    azureml.rag.crack_and_chunk.crack_and_chunk - crack_and_chunk failed with exception: Traceback (most recent call last):
  File "/azureml-envs/rag-embeddings/lib/python3.9/site-packages/azureml/rag/tasks/crack_and_chunk.py", line 229, in main_wrapper
    map_exceptions(main, activity_logger, args, logger, activity_logger)
  File "/azureml-envs/rag-embeddings/lib/python3.9/site-packages/azureml/rag/utils/exceptions.py", line 126, in map_exceptions
    raise e
  File "/azureml-envs/rag-embeddings/lib/python3.9/site-packages/azureml/rag/utils/exceptions.py", line 118, in map_exceptions
    return func(*func_args, **kwargs)
  File "/azureml-envs/rag-embeddings/lib/python3.9/site-packages/azureml/rag/tasks/crack_and_chunk.py", line 220, in main
    raise ValueError(f"No chunked documents found in {args.input_data} with glob {args.input_glob}.")
ValueError: No chunked documents found in /mnt/azureml/cr/j/606547e361134e058c4829792b595f69/cap/data-capability/wd/INPUT_input_data with glob **/*.
 (crack_and_chunk.py:231) ...................................

It seems the chunk is not doing nothing. My file is PDF format file with only one page without images to let it more easy.

Someone has a suggestion? thank you in advanced!!

Reasons:
  • Blacklisted phrase (0.5): thank you
  • Blacklisted phrase (1): enter image description here
  • RegEx Blacklisted phrase (3): thank you in advanced
  • Long answer (-1):
  • Has code block (-0.5):
  • Contains question mark (0.5):
  • Low reputation (1):
Posted by: Ana Armas

79295042

Date: 2024-12-19 16:57:49
Score: 4
Natty: 5.5
Report link

I am having this same issue. I have renamed the old database and my solution points to the new database (copy of DEV) and I want the local solution to use the new DEV database but even though the connection string is pointing to the DEV database, the data I am seeing if from the old database. This is very weird! Any help would be great. Thanks.

Reasons:
  • Blacklisted phrase (0.5): Thanks
  • Blacklisted phrase (1): Any help
  • RegEx Blacklisted phrase (1): I want
  • No code block (0.5):
  • Single line (0.5):
  • Low reputation (0.5):
Posted by: kyjote

79295038

Date: 2024-12-19 16:57:49
Score: 9.5
Natty: 7
Report link

@15113491, this API is not working anymore as it returns the web page instead of JSON. Could you please tell me what is the updated API to fetch profile data now?

Reasons:
  • RegEx Blacklisted phrase (2.5): Could you please tell me what
  • Low length (1):
  • No code block (0.5):
  • Ends in question mark (2):
  • User mentioned (1): @15113491
  • Single line (0.5):
  • Looks like a comment (1):
  • Low reputation (1):
Posted by: M Rashid

79294958

Date: 2024-12-19 16:28:40
Score: 4
Natty: 4.5
Report link

here is the full implementation please feel free to ask any doubts https://github.com/ARULKUMAR0106/JWTTokenGeneration

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

79294942

Date: 2024-12-19 16:19:35
Score: 7 🚩
Natty:
Report link

I have the same problem in my Google Chrome, so make sure you have this setting on the your browser network, and reload or restart the browser you should be good.

enter image description here

Reasons:
  • Blacklisted phrase (1): I have the same problem
  • Probably link only (1):
  • Low length (1):
  • No code block (0.5):
  • Me too answer (2.5): I have the same problem
  • Single line (0.5):
  • Low reputation (0.5):
Posted by: Srééjîth Náîr

79294919

Date: 2024-12-19 16:09:32
Score: 5.5
Natty: 5
Report link

@swiss_szn worked for me too thanks

Reasons:
  • Blacklisted phrase (0.5): thanks
  • Whitelisted phrase (-1): worked for me
  • Low length (2):
  • No code block (0.5):
  • User mentioned (1): @swiss_szn
  • Single line (0.5):
  • Looks like a comment (1):
  • Low reputation (1):
Posted by: pkfox

79294890

Date: 2024-12-19 16:00:29
Score: 8.5 🚩
Natty: 5.5
Report link

HI have you been able to solve the issue?

Reasons:
  • Blacklisted phrase (1.5): have you been able to
  • RegEx Blacklisted phrase (1.5): solve the issue?
  • Low length (1.5):
  • No code block (0.5):
  • Ends in question mark (2):
  • Single line (0.5):
  • Low reputation (1):
Posted by: Darphizisct

79294869

Date: 2024-12-19 15:54:26
Score: 5
Natty: 6
Report link

Just wondering if you were able to find the solution for this. We are also trying to perform a similar operation in Fabric using powershell and we end up in same error.

If you have the solution please post it here. Thanks.

Reasons:
  • Blacklisted phrase (0.5): Thanks
  • RegEx Blacklisted phrase (2.5): please post
  • Low length (0.5):
  • No code block (0.5):
  • Low reputation (1):
Posted by: Renga

79294835

Date: 2024-12-19 15:45:22
Score: 11.5 🚩
Natty: 5.5
Report link

@Brad Interesting, did you find a solution? I have the similar issue.

Reasons:
  • RegEx Blacklisted phrase (3): did you find a solution
  • Low length (1.5):
  • No code block (0.5):
  • Me too answer (2.5): I have the similar issue
  • Contains question mark (0.5):
  • User mentioned (1): @Brad
  • Single line (0.5):
  • Looks like a comment (1):
  • Low reputation (1):
Posted by: Vasiliy Sokolov

79294821

Date: 2024-12-19 15:39:20
Score: 5.5
Natty:
Report link

Thanks Guys for the answer. It has solved the problem, even though I am new to using forEach() method inside forEach.

Reasons:
  • Blacklisted phrase (0.5): Thanks
  • RegEx Blacklisted phrase (1.5): I am new
  • Low length (1):
  • No code block (0.5):
  • Self-answer (0.5):
  • Single line (0.5):
  • Low reputation (1):
Posted by: User One

79294811

Date: 2024-12-19 15:37:19
Score: 8
Natty: 7
Report link

Good afternoon, how can I fix this to eliminate the warning in the google console? Thanks

Reasons:
  • Blacklisted phrase (0.5): Thanks
  • Blacklisted phrase (0.5): how can I
  • Blacklisted phrase (1): Good afternoon
  • Blacklisted phrase (1): how can I fix this
  • Low length (1.5):
  • No code block (0.5):
  • Ends in question mark (2):
  • Low reputation (1):
Posted by: Vi to

79294771

Date: 2024-12-19 15:26:15
Score: 11.5 🚩
Natty: 4
Report link

Actualmente en 2024/25, para mí tesis, estoy interesado en desarrollar una app para monitoreo de presión arterial, he buscado información, pero no es muy clara, si alguien sabe respecto al tema podría ayudarme, tengo las siguientes dudas

Cualquier tipo de información sería de mucha ayuda, gracias de antemano.

Reasons:
  • Blacklisted phrase (1): ¿
  • Blacklisted phrase (2): ayuda
  • Blacklisted phrase (2): tengo
  • Blacklisted phrase (1): está
  • Blacklisted phrase (2): gracias
  • Blacklisted phrase (2): estoy
  • Long answer (-0.5):
  • No code block (0.5):
  • Contains question mark (0.5):
  • Low reputation (1):
Posted by: WALTER DAVID GARAY CABALLERO

79294770

Date: 2024-12-19 15:26:14
Score: 4
Natty:
Report link

Be sure to watch out for the fact that the interceptor object needs to be a singleton instance.

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

79294766

Date: 2024-12-19 15:25:13
Score: 4
Natty: 4.5
Report link

Also interested in this as we currently manage our Oracle and SQL Server schemas in Oracle SQL Developer Data Modeler but now also need to manage Databricks SQL as well. We would like to use the same tool but looks like we'll need to switch to a generic tool.

Unless support for Databricks JDBC drivers has been added since 2022?

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

79294765

Date: 2024-12-19 15:24:11
Score: 6 🚩
Natty:
Report link

not solving the issue. I am facing same issue in ladybug for a flutter project

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

79294725

Date: 2024-12-19 15:09:06
Score: 5.5
Natty: 2.5
Report link

I have the same issue, i'm trying to use my own http client implementation in a scrapy project, i tried to yield the scrapy.items in a loop and it keep trying to access the attribute dont_filter which is normally found scrapy.Request

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

79294704

Date: 2024-12-19 15:05:04
Score: 5.5
Natty: 5
Report link

How to get rid off the word "Characteristic" at the beggining of the table created from gtsummary package?

Reasons:
  • Low length (1):
  • No code block (0.5):
  • Ends in question mark (2):
  • Single line (0.5):
  • Starts with a question (0.5): How to
  • Low reputation (1):
Posted by: Gustavo Tavares Lameiro da Cos

79294683

Date: 2024-12-19 14:54:00
Score: 5.5
Natty:
Report link

are you using stripe?

i'm having the same issue, if i remove that library evertything works fine.

Reasons:
  • Low length (1):
  • No code block (0.5):
  • Me too answer (2.5): i'm having the same issue
  • Contains question mark (0.5):
  • Low reputation (1):
Posted by: Francesco De Giorgio

79294656

Date: 2024-12-19 14:44:57
Score: 5.5
Natty: 5.5
Report link

I meet the same problem, do you figure it out?

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

79294644

Date: 2024-12-19 14:39:55
Score: 8.5 🚩
Natty: 5.5
Report link

does anyone have newer information about this? As far as we can see, the intelligent albums are still noch reachable, are they?

Reasons:
  • RegEx Blacklisted phrase (3): does anyone have
  • 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: Sabine

79294578

Date: 2024-12-19 14:17:49
Score: 4.5
Natty: 5
Report link

https://tunnel.imo.im/s/object/.G5nBZOJAjqbbqOhATYEBpZDXpTR/voice.aac"], ["", "2024-07-31 14:36:58", "me", "uploaded audio:

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

79294542

Date: 2024-12-19 14:06:45
Score: 5.5
Natty: 5.5
Report link

If i change a json value in en will it be reflected in es too?

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

79294514

Date: 2024-12-19 13:58:42
Score: 4
Natty: 4.5
Report link

Currently, client credentials grant type is not supported by custom connectors.

https://learn.microsoft.com/en-us/connectors/custom-connectors/connection-parameters

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

79294459

Date: 2024-12-19 13:39:37
Score: 10 🚩
Natty: 5.5
Report link

@rayad are you able to resolve this problem? I am facing same issue

Reasons:
  • RegEx Blacklisted phrase (1.5): resolve this problem?
  • Low length (1.5):
  • No code block (0.5):
  • Me too answer (2.5): I am facing same issue
  • Contains question mark (0.5):
  • User mentioned (1): @rayad
  • Single line (0.5):
  • Looks like a comment (1):
  • Low reputation (1):
Posted by: sarah shaikh

79294426

Date: 2024-12-19 13:27:32
Score: 8.5 🚩
Natty: 5.5
Report link

I have the same issue too, any help!

Reasons:
  • Blacklisted phrase (1): any help
  • Blacklisted phrase (1): I have the same issue
  • Low length (2):
  • No code block (0.5):
  • Me too answer (2.5): I have the same issue
  • Single line (0.5):
  • Low reputation (1):
Posted by: Nour Mustafa

79294417

Date: 2024-12-19 13:24:30
Score: 6.5 🚩
Natty: 4.5
Report link

Am trying to renew an expired CA on ejbca using CLI : ./ejbca.sh ca renewca

and it took a lot of time without response.

Is there any idea?

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

79294386

Date: 2024-12-19 13:08:26
Score: 4.5
Natty:
Report link

¡Hola! Parece que el problema surge porque el modelo Pydantic para Task define solution como un objeto individual (Optional[Solution]), pero en tu definición de SQLAlchemy solution es una lista debido a la relación uno a muchos.

Puedes ajustar el esquema de Pydantic para reflejar esto, cambiando la definición a algo como:

solution: Optional[List[Solution]]


solution: List[Solution] | None


Esto debería resolver el error de validación al devolver la lista de soluciones en la respuesta. Si solo quieres devolver una solución específica, asegúrate de manejar esto directamente en tu consulta antes de serializarla.
Reasons:
  • Blacklisted phrase (1): porque
  • Blacklisted phrase (2.5): solucion
  • Blacklisted phrase (3): solución
  • Whitelisted phrase (-2): solution:
  • Long answer (-0.5):
  • Has code block (-0.5):
  • Low reputation (1):
Posted by: José Manuel Tena

79294366

Date: 2024-12-19 12:59:22
Score: 4.5
Natty:
Report link

Quick question - Did MSFT removed that option (Minimum number of approvals required dropdown) ? I can still see it on old environments but not anymore for a new environment that I just created ?

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

79294287

Date: 2024-12-19 12:31:14
Score: 5
Natty:
Report link

Are you the admin in manage.autodesk.com? Do you have Autodesk's premium Plan? If yes, then you are eligible to use Premium Reporting APIs

Reasons:
  • RegEx Blacklisted phrase (2.5): Do you have A
  • Low length (1):
  • No code block (0.5):
  • Contains question mark (0.5):
  • Low reputation (0.5):
Posted by: Deepali Srivastava

79294282

Date: 2024-12-19 12:30:14
Score: 4
Natty:
Report link

They should be rotating multiple keys

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

79294181

Date: 2024-12-19 12:00:05
Score: 5
Natty: 5
Report link

we have product with JSF 1.1 migrating since upgrated tomcat 11 from 9.x . jakarta face 3 version can be used for tomcat 11.And JSP is supported?

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

79294169

Date: 2024-12-19 11:56:04
Score: 4.5
Natty: 4.5
Report link

https://medium.com/@ahsanbrothernit1/uploads-files-pdf-image-using-blobs-in-nodejs-44666e304d55

check blobs Upload and Access Files (Image/Pdf) in Azure Storage using Node Js

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

79294117

Date: 2024-12-19 11:37:58
Score: 4
Natty:
Report link

i dont care that this is not actually an answer, and will get deleted sooner or later. Since i do not have enough rp to comment on @jmrk's answer, and i desperately want to thank him personally...... ( call me crazy ) .....

So jmrk please accept my thanks, its one of the best explanations, what i have been looking for past few days......

Reasons:
  • Blacklisted phrase (0.5): thanks
  • Blacklisted phrase (1): to comment
  • No code block (0.5):
  • User mentioned (1): @jmrk's
  • Low reputation (1):
Posted by: Aditya Mishra

79294093

Date: 2024-12-19 11:27:55
Score: 4.5
Natty:
Report link

There is an even better version of the brilliant trick proposed by @an-angular-dev, you can find it here:

https://css-tricks.com/faking-min-width-on-a-table-column/

Reasons:
  • Probably link only (1):
  • Low length (1):
  • No code block (0.5):
  • User mentioned (1): @an-angular-dev
  • Low reputation (1):
Posted by: Cloddo

79293973

Date: 2024-12-19 10:46:43
Score: 8
Natty: 7.5
Report link

for me, its shows network failure, how do i resolve this?

Reasons:
  • Blacklisted phrase (1): how do i
  • RegEx Blacklisted phrase (1.5): resolve this?
  • Low length (1.5):
  • No code block (0.5):
  • Ends in question mark (2):
  • Single line (0.5):
  • Low reputation (1):
Posted by: user10

79293882

Date: 2024-12-19 10:20:36
Score: 4
Natty: 4.5
Report link

check this pug 2 jsx tool https://www.npmjs.com/package/pug-as-jsx-utils/v/1.0.41

or this pug preview compiler

https://marketplace.visualstudio.com/items?itemName=ginie.pug2html

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

79293866

Date: 2024-12-19 10:17:35
Score: 4
Natty:
Report link

I looked into source code of unit tests for that rule in AGP linter. They are testing it in various ways but they do not test it with code like mine. So based on Android Code Search I was able to fix my problem with code like:

PendingIntent pendingIntent = null;
int pendingIntentFlags;
if(Build.VERSION.SDK_INT >= VERSION_CODES.M){
    pendingIntentFlags = PendingIntent.FLAG_IMMUTABLE;
} else {
    pendingIntentFlags = 0;
}
pendingIntent = PendingIntent.getBroadcast(context, 0, intent, pendingIntentFlags);

Now linter has no problems with that code.

I still do not know why my previous code was failing on linter, so if anyone have any idea, please share your thoughts in comments because I would like to know.

Reasons:
  • Blacklisted phrase (1.5): I would like to know
  • RegEx Blacklisted phrase (2.5): please share your
  • Long answer (-0.5):
  • Has code block (-0.5):
  • Self-answer (0.5):
  • Low reputation (0.5):
Posted by: aFku

79293837

Date: 2024-12-19 10:07:31
Score: 5
Natty: 4
Report link

Have you fix the problem? Recently I met the same problem with simplesim.

Reasons:
  • RegEx Blacklisted phrase (1.5): fix the problem?
  • Low length (1.5):
  • No code block (0.5):
  • Contains question mark (0.5):
  • Single line (0.5):
  • Low reputation (0.5):
Posted by: chunlin yang

79293810

Date: 2024-12-19 09:56:27
Score: 6 🚩
Natty: 4.5
Report link

i got stuck on this.calendar = eval('cal' + String(this.roomInt));

debug result is : Error
ReferenceError: cal is not defined eval
Submission @ Code.gs:33 main @ Code.gs:79

can u help me to check, how cal is not defined

Reasons:
  • Blacklisted phrase (1): help me
  • RegEx Blacklisted phrase (3): can u help me
  • Low length (0.5):
  • No code block (0.5):
  • Low reputation (1):
Posted by: Fhe Dargo

79293742

Date: 2024-12-19 09:35:20
Score: 6.5 🚩
Natty:
Report link

How have you configured Keycloak with Trino?

Reasons:
  • Low length (1.5):
  • No code block (0.5):
  • Ends in question mark (2):
  • Unregistered user (0.5):
  • Single line (0.5):
  • Starts with a question (0.5): How have you
  • Low reputation (1):
Posted by: david

79293626

Date: 2024-12-19 09:00:11
Score: 8.5 🚩
Natty: 4.5
Report link

I'm also having a similar issue, and the error on my side is as follows:

missing Semmle DVL log content for driver 'xxx' with the OS architecture 'x64'.

Is there any progress on your situation?

Reasons:
  • Blacklisted phrase (1): Is there any progress
  • Blacklisted phrase (1): Is there any
  • Low length (0.5):
  • No code block (0.5):
  • Me too answer (2.5): I'm also having a similar issue
  • Ends in question mark (2):
  • Low reputation (1):
Posted by: Mirxat Xawkat

79293586

Date: 2024-12-19 08:42:07
Score: 5.5
Natty:
Report link

"@Ben S" Could you elaborate on the use of the calibration file? I am also using the python solution provided by @Rotem. I end up with an array of int16 values, but interpolating against the .pr calibration file does not yield the correct temperatures when I check against the PIX Connect temperatures. Using the offset values I've found in the .xml files also does not get me any closer to the right temperature.

Reasons:
  • RegEx Blacklisted phrase (2.5): Could you elaborate
  • No code block (0.5):
  • Contains question mark (0.5):
  • User mentioned (1): @Rotem
  • Low reputation (1):
Posted by: John G.

79293585

Date: 2024-12-19 08:42:05
Score: 10
Natty: 7
Report link

I am also facing the same issue with Model No: ELITE 30B-2, Make: SECURE. I am getting "Failed, Response Code: E2" on the serial monitor. The settings are as follows: Parity Bit: None, Baud Rate: 9600, Stop Bit: 1. How can I resolve this issue?

Reasons:
  • Blacklisted phrase (1): I am also facing the same issue
  • Blacklisted phrase (0.5): How can I
  • RegEx Blacklisted phrase (1.5): How can I resolve this issue?
  • Low length (0.5):
  • No code block (0.5):
  • Me too answer (2.5): I am also facing the same issue
  • Ends in question mark (2):
  • Single line (0.5):
  • Low reputation (1):
Posted by: Shubham

79293551

Date: 2024-12-19 08:32:02
Score: 4
Natty: 4
Report link

Is this happening again ? I am receiving the same issue.

Reasons:
  • Low length (1.5):
  • No code block (0.5):
  • Contains question mark (0.5):
  • Starts with a question (0.5): Is this
  • Low reputation (1):
Posted by: Samer Nasif

79293526

Date: 2024-12-19 08:23:59
Score: 6.5 🚩
Natty:
Report link

Can you provide your Login.xaml and your MauiProgram.cs? Maybe you are not registering your Service in the right way.

Reasons:
  • RegEx Blacklisted phrase (2.5): Can you provide your
  • Low length (1):
  • No code block (0.5):
  • Contains question mark (0.5):
  • Single line (0.5):
  • Starts with a question (0.5): Can you
  • Low reputation (1):
Posted by: jannisrow

79293480

Date: 2024-12-19 08:03:54
Score: 6
Natty: 7
Report link

can someone please explain these below lines

serverClientId: isIOS ? null : googleClientId, clientId: isIOS ? googleClientIdIOS : null);

Reasons:
  • RegEx Blacklisted phrase (2.5): can someone please explain
  • Low length (1):
  • No code block (0.5):
  • Contains question mark (0.5):
  • Starts with a question (0.5): can someone please
  • Low reputation (1):
Posted by: Saad Raja

79293456

Date: 2024-12-19 07:52:50
Score: 6.5 🚩
Natty: 4.5
Report link

Did you find a solution? I had the same problem.

Reasons:
  • Whitelisted phrase (-1): I had the same
  • RegEx Blacklisted phrase (3): Did you find a solution
  • 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 find a solution
  • Low reputation (1):
Posted by: user28136549

79293432

Date: 2024-12-19 07:44:46
Score: 7.5 🚩
Natty:
Report link

I am also facing the same issue

Reasons:
  • Blacklisted phrase (1): I am also facing the same issue
  • Low length (2):
  • No code block (0.5):
  • Me too answer (2.5): I am also facing the same issue
  • Single line (0.5):
  • Low reputation (1):
Posted by: bdaqqah

79293418

Date: 2024-12-19 07:35:44
Score: 4
Natty:
Report link

This tool can monitor many indicators of processes. Please take a look

https://github.com/tianshiyeben/wgcloud

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

79293325

Date: 2024-12-19 06:54:34
Score: 5.5
Natty:
Report link

Docker IIS Container: Ensure the container is running and accessible locally at http://192.168.10.1:250.

Public IP & Domain: The domain (testvault.info) is pointed to your server's public IP (31.56.#.#).

IIS with ARR Installed: ARR (Application Request Routing) must be installed on the IIS instance running on the host server.

For the configuration of ARR you can help you with this documentation : https://learn.microsoft.com/fr-fr/iis/extensions/planning-for-arr/using-the-application-request-routing-module

Reasons:
  • Blacklisted phrase (1): this document
  • RegEx Blacklisted phrase (3): you can help
  • No code block (0.5):
  • Low reputation (1):
Posted by: Hadrien Valet

79293311

Date: 2024-12-19 06:44:32
Score: 4
Natty:
Report link

This is now available in SSMS 21 (Preview), for all tabs, not just the pinned ones.

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: Nace Kapus

79293306

Date: 2024-12-19 06:40:30
Score: 6.5 🚩
Natty: 6
Report link

Excuse me, have you solved the problem? I found that the stcrreg function in Stata can be used to solve the problem, but I couldn't find the solution in R

Reasons:
  • Blacklisted phrase (1.5): have you solved the problem
  • RegEx Blacklisted phrase (1.5): solved the problem?
  • Low length (1):
  • No code block (0.5):
  • Contains question mark (0.5):
  • Single line (0.5):
  • Low reputation (1):
Posted by: Mild Hu

79293207

Date: 2024-12-19 05:51:17
Score: 8.5 🚩
Natty:
Report link

I tried to edit the file and cleared the cache, but not working. I don't have build folder in the server right now. Only have a folder named next which contains a sub folder static which includes css and media folder. Should you please suggest a method to convert the files in the server into work files?

Reasons:
  • Blacklisted phrase (1): but not working
  • RegEx Blacklisted phrase (2.5): please suggest
  • Low length (0.5):
  • No code block (0.5):
  • Ends in question mark (2):
  • Self-answer (0.5):
  • Single line (0.5):
  • Low reputation (1):
Posted by: user28837667

79293143

Date: 2024-12-19 04:59:07
Score: 4.5
Natty: 5
Report link

I want to study how android works when sms sends. More precisely - I want to know how android recognizes phone number in sms body, like in the next photos:

For example, somebody sent

Reasons:
  • Blacklisted phrase (1): I want to know
  • RegEx Blacklisted phrase (1): I want
  • Low length (0.5):
  • No code block (0.5):
  • Unregistered user (0.5):
  • Low reputation (1):
Posted by: Sushil

79293112

Date: 2024-12-19 04:32:00
Score: 9 🚩
Natty:
Report link

enter image description here Picture of error gpm please if anyone can help

Reasons:
  • Blacklisted phrase (1): enter image description here
  • RegEx Blacklisted phrase (3): anyone can help
  • RegEx Blacklisted phrase (0.5): anyone can help
  • Probably link only (1):
  • Low length (1.5):
  • No code block (0.5):
  • Self-answer (0.5):
  • Low reputation (1):
Posted by: Jacob Douglas

79293095

Date: 2024-12-19 04:20:56
Score: 7.5 🚩
Natty: 4
Report link

As commented by @Jonask, "setting Bypass for network in Chrome Dev Tools>Application>Service Workers" fixed the problem. Can anyone provide what is exactly happening in the background with this setting? Because I am not sure if this has to be set for all the users who is going to use the application? Or if this issue exist only with localhost?

Thanks

Reasons:
  • Blacklisted phrase (0.5): Thanks
  • RegEx Blacklisted phrase (2.5): Can anyone provide what
  • Has code block (-0.5):
  • Ends in question mark (2):
  • User mentioned (1): @Jonask
  • Looks like a comment (1):
  • Low reputation (1):
Posted by: Srikanth

79293078

Date: 2024-12-19 04:04:52
Score: 4
Natty:
Report link

Only red number desert m1887 m1014 ump

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

79293026

Date: 2024-12-19 03:17:42
Score: 5.5
Natty:
Report link

Do you have try to implement your lists in a div ?

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

79293009

Date: 2024-12-19 03:04:39
Score: 6.5 🚩
Natty: 5.5
Report link

This link is blocked. Is there a new resource to point to?

Reasons:
  • Blacklisted phrase (1): This link
  • Low length (1.5):
  • No code block (0.5):
  • Ends in question mark (2):
  • Single line (0.5):
  • Low reputation (1):
Posted by: Andrew V hehim

79292985

Date: 2024-12-19 02:46:36
Score: 4
Natty: 4.5
Report link

Try switch 'EQ' to 'IN'? Mine sometimes work sometimes doesn't work

Reasons:
  • Low length (1.5):
  • No code block (0.5):
  • Contains question mark (0.5):
  • Single line (0.5):
  • Low reputation (1):
Posted by: Noob GIS

79292870

Date: 2024-12-19 01:05:14
Score: 5
Natty: 5.5
Report link

@loann-delgado Any update on this issue? I'm running into the same problem.

Reasons:
  • Blacklisted phrase (1): update on this
  • Low length (1.5):
  • No code block (0.5):
  • Contains question mark (0.5):
  • User mentioned (1): @loann-delgado
  • Single line (0.5):
  • Looks like a comment (1):
  • High reputation (-1):
Posted by: hartpdx

79292761

Date: 2024-12-18 23:27:54
Score: 7 🚩
Natty: 6.5
Report link

Similar situation for me aswell. Im trying to create a stored procedure. In my case Im trying to build a stored procedure for error_log in dbeaver for a redshift database. I have 4 input parameters and 2 current_timestamp columns. Im not able to test it in dbeaver. Any suggestions how can I test my logic?

Reasons:
  • Blacklisted phrase (0.5): how can I
  • RegEx Blacklisted phrase (2): Any suggestions
  • Low length (0.5):
  • No code block (0.5):
  • Ends in question mark (2):
  • Single line (0.5):
  • Low reputation (1):
Posted by: Sharan Gade

79292742

Date: 2024-12-18 23:16:50
Score: 6.5 🚩
Natty: 4
Report link

I am trying to make my own dictionary that translate from my language(Fur language) to english but not able to do because in my language there are different alphabet(A̱ ɨ ʉ ny ŋ) also we have like(a á â ă) same as of(e ,o ,i ,u,ʉ,ɨ) please help me in this project and thank so much .

#The Fur language is one of the Sudanese languages in the state of Darfur.

Reasons:
  • Blacklisted phrase (1): help me
  • Blacklisted phrase (1): I am trying to
  • RegEx Blacklisted phrase (3): please help me in this
  • No code block (0.5):
  • Low reputation (1):
Posted by: Kaskella dongo Hdid

79292741

Date: 2024-12-18 23:15:49
Score: 4
Natty:
Report link

yyyyy tttttwsedrftgbhjnhbgftrdesrdtrftvgybhnjkml,

Reasons:
  • Low length (1.5):
  • No code block (0.5):
  • Unregistered user (0.5):
  • Has no white space (0.5):
  • Low reputation (1):
Posted by: user28846139

79292736

Date: 2024-12-18 23:09:47
Score: 6 🚩
Natty: 6
Report link

Please check this : https://repost.aws/questions/QU1JLXkxMHTHi3JjctiHDxWA/aws-glue-interactive-sessions-query-iceberg-and-non-iceberg-tables

And this: https://github.com/aws-samples/dbt-glue/issues/405

I think These links may have the solution.

Reasons:
  • Blacklisted phrase (1): These links
  • Blacklisted phrase (1): Please check this
  • Probably link only (1):
  • Low length (1.5):
  • No code block (0.5):
  • Low reputation (1):
Posted by: FDS

79292706

Date: 2024-12-18 22:53:42
Score: 5.5
Natty:
Report link

Can you please check you are not overwriting (a duplicate file targeting to the same folder) a file during the unzipping process?

Reasons:
  • Low length (1):
  • No code block (0.5):
  • Ends in question mark (2):
  • Single line (0.5):
  • Starts with a question (0.5): Can you please
  • Low reputation (1):
Posted by: Shoeb Hasan

79292697

Date: 2024-12-18 22:51:41
Score: 4
Natty:
Report link

Why are you using that? I see your deployment script is really barebones, if you are a beginer I wouldn't recommend that. Try somthing like Apeworx, Hardhat or Foundry.

Reasons:
  • Low length (1):
  • No code block (0.5):
  • Contains question mark (0.5):
  • Single line (0.5):
  • Starts with a question (0.5): Why are you
  • Low reputation (1):
Posted by: Rafael Abuawad

79292688

Date: 2024-12-18 22:44:39
Score: 4
Natty:
Report link

Seems like a know issue:

RIDER-120469 Unity gets stuck on domain reload when in debug mode using Rider

Upvote it to get updates.

Reasons:
  • Blacklisted phrase (0.5): Upvote
  • Probably link only (1):
  • Low length (1.5):
  • No code block (0.5):
  • Low reputation (0.5):
Posted by: Securitron Yesman

79292625

Date: 2024-12-18 22:11:31
Score: 4.5
Natty:
Report link

I wonder if you are looking for laravel-vite-plugin? (also verified in source code: https://github.com/laravel/laravel/blob/11.x/package.json#L12)

Reasons:
  • Probably link only (1):
  • Low length (1.5):
  • No code block (0.5):
  • Contains question mark (0.5):
  • Single line (0.5):
  • Low reputation (0.5):
Posted by: Magnie Mozios

79292610

Date: 2024-12-18 22:05:28
Score: 10 🚩
Natty:
Report link

Im getting .0 is private field.. but my struct and it's values are pub..

Does anybody know how to achieve the same but outside of command and inside websocket server? I have same problem and can't handle that since 2 days..

Reasons:
  • Blacklisted phrase (1): I have same problem
  • Blacklisted phrase (1): anybody know
  • Blacklisted phrase (1): how to achieve
  • RegEx Blacklisted phrase (2): Does anybody know
  • Low length (0.5):
  • No code block (0.5):
  • Me too answer (2.5): I have same problem
  • Contains question mark (0.5):
  • Low reputation (1):
Posted by: Alex Pawelec

79292584

Date: 2024-12-18 21:56:24
Score: 4.5
Natty:
Report link

In case someone's interested, this is by design. Elaborated here: https://github.com/pytest-dev/pytest/issues/12909

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

79292510

Date: 2024-12-18 21:26:15
Score: 8 🚩
Natty: 6.5
Report link

Did you ever happen to find an answer to this? I'm running into a similar problem with istio.

Reasons:
  • Blacklisted phrase (1): answer to this?
  • RegEx Blacklisted phrase (3): Did you ever
  • Low length (1):
  • No code block (0.5):
  • Contains question mark (0.5):
  • Single line (0.5):
  • Starts with a question (0.5): Did you
  • Low reputation (1):
Posted by: Jesse Hurt

79292460

Date: 2024-12-18 21:01:09
Score: 8.5 🚩
Natty: 5.5
Report link

Have you figured out a way to display a caption below each image in a table?

Reasons:
  • RegEx Blacklisted phrase (3): Have you figured out
  • Low length (1.5):
  • No code block (0.5):
  • Ends in question mark (2):
  • Single line (0.5):
  • Low reputation (1):
Posted by: Sir Absolute 0

79292457

Date: 2024-12-18 21:00:07
Score: 6.5 🚩
Natty: 5.5
Report link

Thats fine but as in my case, I am pulling 27gb directly in the code at runtime. Is there a way session could be preserved?

Reasons:
  • Blacklisted phrase (1): Is there a way
  • 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: user28845105

79292408

Date: 2024-12-18 20:38:00
Score: 9 🚩
Natty: 6.5
Report link

did you manage to solve this? I'm currently going through the same issue...

Reasons:
  • RegEx Blacklisted phrase (3): did you manage to solve this
  • RegEx Blacklisted phrase (1.5): solve this?
  • 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: Andrés Mora

79292393

Date: 2024-12-18 20:28:57
Score: 5.5
Natty: 5
Report link

In my case I am trying to execute the script twice. So for the first time it checks the status of the API and till it does not get completed it keeps calling the GET Status API multiple times. And once the status is updated to completed, it executes the second iteration, but in second iteration it does not get in to the while loop. Any idea regarding this ?

enter image description here

Reasons:
  • Blacklisted phrase (1): I am trying to
  • Blacklisted phrase (1): enter image description here
  • No code block (0.5):
  • Ends in question mark (2):
  • Low reputation (1):
Posted by: Deepak Parmar

79292334

Date: 2024-12-18 20:00:50
Score: 5
Natty:
Report link

I have found a solution, but can't post it due to my low reputation

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

79292276

Date: 2024-12-18 19:31:43
Score: 4
Natty: 4.5
Report link

I wrote something about it, explaining about the abort controllers part in avoiding management of old data https://medium.com/@skimchi/preventing-old-data-managing-while-fetching-new-data-reactjs-ffb03772383a

Reasons:
  • Blacklisted phrase (0.5): medium.com
  • Probably link only (1):
  • Low length (1):
  • No code block (0.5):
  • Low reputation (1):
Posted by: Shai Kimchi

79292259

Date: 2024-12-18 19:24:40
Score: 6.5
Natty: 7
Report link

How can we edit #listen_addresses='localhost' to listen_addresses='*' using SED command...?

Reasons:
  • Blacklisted phrase (1): How can we
  • Low length (1):
  • No code block (0.5):
  • Ends in question mark (2):
  • Single line (0.5):
  • Starts with a question (0.5): How can we
  • Low reputation (1):
Posted by: Venkataramana Aitla

79292183

Date: 2024-12-18 18:57:33
Score: 4
Natty:
Report link

Just make sure the breakpoints are enabled

breakpoints

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

79292167

Date: 2024-12-18 18:51:31
Score: 4
Natty: 4.5
Report link

As mentioned on https://stable-baselines3.readthedocs.io/en/master/modules/ppo.html, StableBaseline3's PPO is meant to be run on the CPU.

StableBaselines3 PPO note

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

79292112

Date: 2024-12-18 18:28:24
Score: 6
Natty: 7
Report link

Can you please specify where in VS these settings are?

Thanks you.

Reasons:
  • Blacklisted phrase (0.5): Thanks
  • Low length (1.5):
  • No code block (0.5):
  • Ends in question mark (2):
  • Starts with a question (0.5): Can you please
  • Low reputation (1):
Posted by: LW73

79292070

Date: 2024-12-18 18:07:19
Score: 4
Natty:
Report link

Installing python 3.12.8 solved the issue. Before I was using 3.13

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

79292058

Date: 2024-12-18 18:02:17
Score: 5.5
Natty: 5
Report link

I am facing the same problem, I changed the datatype of column to varchar for upsert to work, not sure whether its the correct solution.

I wanted to avoid mapping, because my pipeline is parameterized for different tables.

Reasons:
  • Blacklisted phrase (1): m facing the same problem
  • Low length (0.5):
  • No code block (0.5):
  • Me too answer (2.5): I am facing the same problem
  • Low reputation (1):
Posted by: Techgirl9009

79292056

Date: 2024-12-18 18:02:15
Score: 11 🚩
Natty: 6.5
Report link

enter image description here

enter image description here

How can I resolve this error, please help us.

Reasons:
  • Blacklisted phrase (0.5): How can I
  • Blacklisted phrase (1): enter image description here
  • RegEx Blacklisted phrase (3): please help us
  • RegEx Blacklisted phrase (1): help us
  • RegEx Blacklisted phrase (1): I resolve this error, please
  • Probably link only (1):
  • Low length (1.5):
  • No code block (0.5):
  • Starts with a question (0.5): How can I
  • Low reputation (1):
Posted by: furkan

79292051

Date: 2024-12-18 18:00:14
Score: 5
Natty: 5.5
Report link

can someone help I'm trying to make my AI assistant respond to me. I have tried multiple times. here's what I have:

def interact():
while true:
res = obj.user_input
return({responses})
(input("Hello there. I'm Sofia, here to help!"))

please finish. I'm using online python.

Reasons:
  • RegEx Blacklisted phrase (3): can someone help
  • Low length (0.5):
  • Has code block (-0.5):
  • Unregistered user (0.5):
  • Starts with a question (0.5): can someone help I
  • Low reputation (1):
Posted by: Dylan

79292036

Date: 2024-12-18 17:53:11
Score: 6.5 🚩
Natty:
Report link

did you ask chat gpt or any other ai?

Reasons:
  • Low length (2):
  • No code block (0.5):
  • Ends in question mark (2):
  • Single line (0.5):
  • Starts with a question (0.5): did you as
  • Low reputation (1):
Posted by: doctor4rats

79292017

Date: 2024-12-18 17:43:07
Score: 11 🚩
Natty: 6.5
Report link

Did you find solution to this? I have same problem

Reasons:
  • Blacklisted phrase (1): I have same problem
  • RegEx Blacklisted phrase (3): Did you find solution to this
  • Low length (1.5):
  • No code block (0.5):
  • Me too answer (2.5): I have same problem
  • Contains question mark (0.5):
  • Single line (0.5):
  • Starts with a question (0.5): Did you find solution to this
  • Low reputation (1):
Posted by: Kristine Tabidze

79291957

Date: 2024-12-18 17:19:59
Score: 8.5 🚩
Natty:
Report link

Instead of creating a new account for every test, you can use the Play Billing Lab app provided by Google. Here’s how:

Download the Play Billing Lab app from Google Play. (Note: Make sure your Android device is running a recent version. For example, mine works on API 34.)

Open the app and configure the settings:

Set the region appropriately. Check the box labeled "Test free trials or promotional offers." Test your app with the same Google account:

Even if you’ve previously made a “test purchase,” this setup should now display the free trial offer correctly.

By the way, I’m facing a similar issue. Have you managed to solve this problem?

Reasons:
  • Blacklisted phrase (3): Have you managed
  • Whitelisted phrase (-1.5): you can use
  • RegEx Blacklisted phrase (1.5): solve this problem?
  • Long answer (-0.5):
  • No code block (0.5):
  • Me too answer (2.5): facing a similar issue
  • Ends in question mark (2):
  • Low reputation (1):
Posted by: Ataberk Dönmez

79291954

Date: 2024-12-18 17:18:58
Score: 7.5 🚩
Natty: 4.5
Report link

en mi caso, me paso algo similar, tengo el Intellij IDEA 2024.3, la solucion, instalar este plugin, Screeshot de plugin a instalar en el IDE

Reasons:
  • Blacklisted phrase (2): tengo
  • Blacklisted phrase (2.5): solucion
  • Low length (1):
  • No code block (0.5):
  • Single line (0.5):
  • Low reputation (1):
Posted by: jefferson cardenas