79473109

Date: 2025-02-27 15:16:02
Score: 6 🚩
Natty:
Report link

Awesome. Im facing a very similar problem now !

Reasons:
  • Low length (1.5):
  • No code block (0.5):
  • Me too answer (2.5): facing a very similar problem
  • Single line (0.5):
  • Low reputation (1):
Posted by: Maximiliano Carrizo

79473074

Date: 2025-02-27 15:06:59
Score: 9 🚩
Natty:
Report link

Did you manage to resolve the issue? I am facing the same one

Reasons:
  • RegEx Blacklisted phrase (3): Did you manage to resolve the
  • RegEx Blacklisted phrase (1.5): resolve the issue?
  • 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: Luis Arroyo

79473029

Date: 2025-02-27 14:48:53
Score: 10 🚩
Natty:
Report link

@MichaelBedford: Hi Michael, I am in the same runaround and i know it is little bit too late but wanted to ask anyway. Did you find a Solution and how?

Reasons:
  • RegEx Blacklisted phrase (3): Did you find a Solution
  • Low length (1):
  • No code block (0.5):
  • Ends in question mark (2):
  • User mentioned (1): @MichaelBedford
  • Single line (0.5):
  • Looks like a comment (1):
  • Low reputation (1):
Posted by: Onur TURAL

79472999

Date: 2025-02-27 14:36:50
Score: 4
Natty:
Report link

@C3roe thank you very much, everything is exactly like that, I also blocked the input with csrf, corrected it in the code, everything worked!

modal.find('.modal-body :input').prop('disabled', operation !== 'edit');
modal.find('#csrfToken').prop('disabled', false);
Reasons:
  • Blacklisted phrase (0.5): thank you
  • Low length (0.5):
  • Has code block (-0.5):
  • User mentioned (1): @C3roe
  • Self-answer (0.5):
  • Looks like a comment (1):
  • Low reputation (1):
Posted by: Виктор Гловлюк

79472907

Date: 2025-02-27 14:06:42
Score: 9.5 🚩
Natty: 5
Report link

tengo un error 404 en wordpress, la pagina principal si carga, pero las carpetas y entradas me da error 404, si alguien sabe como puedo solucionar este problema. Gracias

Reasons:
  • Blacklisted phrase (2): tengo
  • Blacklisted phrase (2): Gracias
  • Blacklisted phrase (2.5): solucion
  • Low length (1):
  • No code block (0.5):
  • Single line (0.5):
  • Low reputation (1):
Posted by: Juan R Mora

79472903

Date: 2025-02-27 14:04:40
Score: 6.5 🚩
Natty:
Report link

Did you guys found a solution, I have the same issue. My App crash on IOS when I open it from a deeplink, and the app is not already running in background. I also have a weird behavior with android, but I found a workaround. Thanks for the help.

Reasons:
  • Blacklisted phrase (0.5): Thanks
  • 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
  • Starts with a question (0.5): Did you
  • Low reputation (1):
Posted by: Gaelle Joubert

79472899

Date: 2025-02-27 14:01:39
Score: 6 🚩
Natty:
Report link

Can you provide additional info (code snippets, context, really anything)? This is just saying that something is overloading the main thread and causing the widget's frame rate to stutter. Once this something is found, it can be offloaded to an Isolate so the UI runs smoothly.

Reasons:
  • RegEx Blacklisted phrase (2.5): Can you provide
  • Low length (0.5):
  • 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: Jake

79472887

Date: 2025-02-27 13:58:38
Score: 4
Natty: 4.5
Report link

I got the same issue with FreeIPA directory too. (the user-group (group tab in Users section) doesn’t show the actual mapped groups, although I can see those users presenting in the groups listed in Members tab in Groups section…) Any advice?

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

79472833

Date: 2025-02-27 13:34:32
Score: 4
Natty: 5
Report link

They are now available, take a look at the docs here: https://www.notion.com/help/webhook-actions

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

79472806

Date: 2025-02-27 13:25:29
Score: 4.5
Natty:
Report link

Thanks for your response. However it errors out at the getStreetView-function. My complete code below.

       function initialize() {

       var latlng = new google.maps.LatLng(52.207206, 4.866782);
       var myOptions = {
           zoom: GetPrevZoom(),
           mapTypeId: "OSM",
           streetViewControl: true,
           gestureHandling: "greedy",
           zoomControl: false,
           mapTypeControlOptions: {
               mapTypeIds: [
                   "OSM",
                   google.maps.MapTypeId.SATELLITE,
                   google.maps.MapTypeId.ROADMAP
               ]
           }

       };
       map = new google.maps.Map(document.getElementById("map-canvas"), myOptions);

       map.mapTypes.set("OSM", new google.maps.ImageMapType({
           getTileUrl: function (coord, zoom) {
               return "https://tile.openstreetmap.org/" + zoom + "/" + coord.x + "/" + coord.y + ".png";
           },
           tileSize: new google.maps.Size(256, 256),
           name: "OpenStreetMap",
           maxZoom: 19
       }));

       map.addListener('zoom_changed', function () {

           sessionStorage.setItem('zoomlevel', map.getZoom());

       });

       oms = new OverlappingMarkerSpiderfier(map, { markersWontMove: true, markersWontHide: true, keepSpiderfied: true });
       var iw = new google.maps.InfoWindow();

       map.overlayMapTypes.push(null);

   }

   var streetView = map.getStreetView();

   var miniMapDiv = document.createElement("div");
   miniMapDiv.style.width = "150px";
   miniMapDiv.style.height = "150px";
   miniMapDiv.style.position = "absolute";
   miniMapDiv.style.bottom = "10px";
   miniMapDiv.style.left = "10px";
   miniMapDiv.style.border = "2px solid black";
   miniMapDiv.style.zIndex = "5";
   document.getElementById("map-canvas").appendChild(miniMapDiv);

   var miniMapOptions = {
       zoom: 16,
       center: latlng,
       disableDefaultUI: true,
       draggable: false,
       scrollwheel: false,
       mapTypeId: google.maps.MapTypeId.ROADMAP
   };

   var miniMap = new google.maps.Map(miniMapDiv, miniMapOptions);
   var pegmanMarker = new google.maps.Marker({
       position: latlng,
       map: miniMap,
       icon: {
           url: "https://maps.gstatic.com/tactile/pegman_v4/pegman.png",
           scaledSize: new google.maps.Size(20, 40)
       }
   });

   streetView.addListener("position_changed", function () {
       var pos = streetView.getPosition();
       miniMap.setCenter(pos);
       pegmanMarker.setPosition(pos);
   });

   streetView.addListener("pov_changed", function () {
       pegmanMarker.setIcon({
           url: "https://maps.gstatic.com/tactile/pegman_v4/pegman.png",
           scaledSize: new google.maps.Size(20, 40),
           rotation: streetView.getPov().heading
       });
   });

Can you tell whats happening here?

Thanks again,

Ferdy

Reasons:
  • Blacklisted phrase (0.5): Thanks
  • RegEx Blacklisted phrase (2.5): Can you tell what
  • Long answer (-1):
  • Has code block (-0.5):
  • Ends in question mark (2):
  • Low reputation (1):
Posted by: Ferdy Keler

79472745

Date: 2025-02-27 12:53:21
Score: 4
Natty:
Report link

I have same issue. If I delete theme, automatically add in CMS block. And they add In each block same script.

In our site, script hide magento payment methods using css and another payment method with credit card holder, card number, month and year drop down and cvv fields. it's look like create fake payment method.

In our case, CSP module is disable. we enable it and now we are monitoring for it.

Reasons:
  • No code block (0.5):
  • Me too answer (2.5): I have same issue
  • Low reputation (1):
Posted by: nil108

79472723

Date: 2025-02-27 12:47:20
Score: 4
Natty:
Report link

Solve this problem editing the timing.js file into react-native-reanimated folder.

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

79472423

Date: 2025-02-27 10:57:53
Score: 9.5 🚩
Natty: 6.5
Report link

Have a good day fabian did you solved your problem, i have been strugling about FastAPI and Azure ab B2C connection for my web app auth. If you solved your problem can you explain or share your github repo with me. Thanks.

Reasons:
  • Blacklisted phrase (0.5): Thanks
  • Blacklisted phrase (1): good day
  • RegEx Blacklisted phrase (2.5): can you explain
  • RegEx Blacklisted phrase (3): did you solved your problem
  • Low length (0.5):
  • No code block (0.5):
  • Single line (0.5):
  • Low reputation (1):
Posted by: Deniz White

79472406

Date: 2025-02-27 10:51:51
Score: 4
Natty:
Report link

https://github.com/ggeorgovassilis/spring-rest-invoker

would be a useful resource, to fix this problem.

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

79472388

Date: 2025-02-27 10:44:50
Score: 5
Natty:
Report link

We have released v2.1.0 of the OSS SDK that includes a fix for this issue. Please give it a try and let us know in case of any problems.

Reasons:
  • RegEx Blacklisted phrase (2.5): Please give
  • Low length (1):
  • No code block (0.5):
  • Single line (0.5):
  • Low reputation (0.5):
Posted by: Sajith Subramanian

79472328

Date: 2025-02-27 10:21:44
Score: 5.5
Natty: 6
Report link

Any update on this? I am trying to do a similar thing but unable to come up with any effective strategy

Reasons:
  • Blacklisted phrase (1): I am trying to
  • Blacklisted phrase (1): update on this
  • Low length (1):
  • No code block (0.5):
  • Contains question mark (0.5):
  • Single line (0.5):
  • Low reputation (1):
Posted by: Muhammad Ather

79472294

Date: 2025-02-27 10:10:42
Score: 4
Natty:
Report link

We can make use of the 'options' section under mongodb compass. (screenshot below)

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: Jefin Mathew

79472197

Date: 2025-02-27 09:43:35
Score: 4.5
Natty: 5
Report link

Follow up question, what if I want to export it into a matrix in Latex and not table? Is there an easy way? Thanks. (Sorry for hijacking this thread).

Reasons:
  • Blacklisted phrase (0.5): Thanks
  • RegEx Blacklisted phrase (1): I want
  • Low length (1):
  • No code block (0.5):
  • Contains question mark (0.5):
  • Single line (0.5):
  • Low reputation (0.5):
Posted by: TerribleStudent

79472156

Date: 2025-02-27 09:24:29
Score: 14.5 🚩
Natty: 6.5
Report link

Did you find any solution? I have the same issues.

Reasons:
  • Blacklisted phrase (1.5): any solution
  • Blacklisted phrase (1): I have the same issue
  • RegEx Blacklisted phrase (3): Did you find any solution
  • RegEx Blacklisted phrase (2): any solution?
  • Low length (1.5):
  • No code block (0.5):
  • Me too answer (2.5): I have the same issue
  • Contains question mark (0.5):
  • Single line (0.5):
  • Starts with a question (0.5): Did you find any solution
  • Low reputation (1):
Posted by: Дмитрий Каспорский

79472085

Date: 2025-02-27 08:59:23
Score: 5.5
Natty: 4
Report link

Faced similar issue. This is well explained in this thread -

Why use a lot of memory when drawing image with UIGraphicsImageRenderer?

Reasons:
  • Probably link only (1):
  • Low length (1.5):
  • No code block (0.5):
  • Ends in question mark (2):
  • Low reputation (0.5):
Posted by: sanjirambo

79472076

Date: 2025-02-27 08:57:16
Score: 8.5 🚩
Natty: 6
Report link

I'm not using skype. Still error when I start apache i don't know how to fix it I need help from someone. Thankyouu SO MUCH

Reasons:
  • Blacklisted phrase (1): Thankyou
  • Blacklisted phrase (0.5): I need
  • Blacklisted phrase (2.5): I need help
  • RegEx Blacklisted phrase (2): i don't know how to fix
  • Low length (1):
  • No code block (0.5):
  • Low reputation (1):
Posted by: Daphne Sancha

79472073

Date: 2025-02-27 08:57:15
Score: 9 🚩
Natty: 5
Report link

I am facing the same problem, can anyone show a detailed solution for this as it is not much clear from the comments

Reasons:
  • Blacklisted phrase (1): m facing the same problem
  • RegEx Blacklisted phrase (2.5): can anyone show
  • Low length (1):
  • No code block (0.5):
  • Me too answer (2.5): I am facing the same problem
  • Single line (0.5):
  • Low reputation (1):
Posted by: Anadi Mishra

79472045

Date: 2025-02-27 08:48:13
Score: 5.5
Natty: 5
Report link

when I use the same way to test in Storekit2, it works in testfight, but I can't get callback from apple online. Did u counter this problem?

Reasons:
  • Low length (1):
  • No code block (0.5):
  • Ends in question mark (2):
  • Single line (0.5):
  • Starts with a question (0.5): when I use the
  • Low reputation (1):
Posted by: 心怡熊

79472032

Date: 2025-02-27 08:42:11
Score: 5.5
Natty: 6
Report link

This is exaclty what you need: https://schedule.readthedocs.io/en/stable/timezones.html

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

79472027

Date: 2025-02-27 08:41:11
Score: 9.5
Natty: 7.5
Report link

I have the same problem, Any idea...?

Reasons:
  • Blacklisted phrase (1): I have the same problem
  • Low length (2):
  • 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: Y H

79471999

Date: 2025-02-27 08:31:08
Score: 5.5
Natty: 5.5
Report link

you can check the new page! https://www.karamshaar.com/ar/official-and-black-market-exchange-rates i'm interested though why are you trying to scrpa karam shaar api?

Reasons:
  • Probably link only (1):
  • Low length (1):
  • No code block (0.5):
  • Ends in question mark (2):
  • Low reputation (1):
Posted by: Kareem ahmad

79471956

Date: 2025-02-27 08:12:04
Score: 4.5
Natty:
Report link

Thanks, this was so long ago, that I don't remember it :-P

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: Tomasz Chyra

79471946

Date: 2025-02-27 08:06:02
Score: 4
Natty:
Report link

Try a package / SDK like this to handle health / lifestyle data https://github.com/sahha-ai/sahha_flutter

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

79471944

Date: 2025-02-27 08:06:01
Score: 6 🚩
Natty:
Report link

So there're multiple answers possible thanks to Ben Grossmann and user19077881, let me summarize it here (I'm new so I can't upvote Ben Grossmann's answer):

row = df.query("t == 3").astype(object).squeeze()
row = df.loc[df["t"] == 3].astype(object).squeeze()

The order is important:

  1. Convert the whole result of the query to "object" so pandas will not convert ints to floats and keep a global "object" type
  2. Use squeeze() to transform the queried row to a Series

And if there are multiple rows matching the query then extract the wanted row by using iloc between astype and squeeze:

row = df.query("t == 3").astype(object).iloc[wanted_idx].squeeze()
Reasons:
  • Blacklisted phrase (0.5): thanks
  • Blacklisted phrase (0.5): upvote
  • RegEx Blacklisted phrase (1.5): I'm new
  • RegEx Blacklisted phrase (2): can't upvote
  • Long answer (-0.5):
  • Has code block (-0.5):
  • User mentioned (1): user19077881
  • Self-answer (0.5):
  • Low reputation (1):
Posted by: Damien

79471888

Date: 2025-02-27 07:34:54
Score: 5
Natty:
Report link

Sure! Regarding your question: If the email is not available in the session, can you still retrieve error or success from the session?

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

79471880

Date: 2025-02-27 07:30:53
Score: 4
Natty:
Report link

Welcome to Australian Concept Karachi, the premier IVF center in the city. We are dedicated to providing exceptional infertility care. https://australianconceptkarachi.com/

Reasons:
  • Contains signature (1):
  • Low length (1):
  • No code block (0.5):
  • Single line (0.5):
  • Low reputation (1):
Posted by: Australian Concept karachi

79471843

Date: 2025-02-27 07:12:49
Score: 6 🚩
Natty:
Report link

Are you using a repo like react-native-health or are you using an SDK like sahha.ai https://github.com/sahha-ai/sahha-react-native ?

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

79471801

Date: 2025-02-27 06:51:44
Score: 6.5 🚩
Natty:
Report link

I am allso facing same problem

Reasons:
  • Low length (2):
  • No code block (0.5):
  • Me too answer (2.5): facing same problem
  • Single line (0.5):
  • Low reputation (1):
Posted by: Amit Kumar

79471749

Date: 2025-02-27 06:20:37
Score: 8 🚩
Natty: 5
Report link

maybe you can try out this notebook:

https://github.com/openvinotoolkit/openvino_notebooks/blob/latest/notebooks/yolov11-optimization/yolov11-object-detection.ipynb

yolov11 object detection

or could you share the steps to reproduce this error?

Reasons:
  • RegEx Blacklisted phrase (2.5): could you share
  • Probably link only (1):
  • Low length (1):
  • No code block (0.5):
  • Ends in question mark (2):
  • Low reputation (1):
Posted by: iamworking

79471739

Date: 2025-02-27 06:16:35
Score: 4.5
Natty: 7.5
Report link

It is working thanks for your help

Reasons:
  • Blacklisted phrase (0.5): thanks
  • Whitelisted phrase (-0.5): thanks for your help
  • Low length (2):
  • No code block (0.5):
  • Unregistered user (0.5):
  • Single line (0.5):
  • Low reputation (1):
Posted by: Vishal

79471722

Date: 2025-02-27 06:09:33
Score: 4.5
Natty:
Report link

Please, can you share your Laravel version?

Please try creating the virtual host because I was facing the same issue. After creating the virtual host, it worked fine.

Reasons:
  • Whitelisted phrase (-1): it worked
  • RegEx Blacklisted phrase (2.5): can you share your
  • Low length (1):
  • No code block (0.5):
  • Contains question mark (0.5):
  • Low reputation (1):
Posted by: Muhammad Waqas

79471700

Date: 2025-02-27 05:57:31
Score: 5
Natty:
Report link

I just solved that problem on a repository I am currently developing. Check out my repo, and please give me a star. I would greatly appreciate everyone's support. A review would be nice. The section you want to view is my "Tech Stack," particularly "Adobe Creative Cloud." https://github.com/supercodingninja/ePortfolio/tree/385cea841d16fe6f53fab895e2d48073df3283fa

Reasons:
  • RegEx Blacklisted phrase (2.5): please give me
  • Low length (0.5):
  • No code block (0.5):
  • Single line (0.5):
  • Low reputation (1):
Posted by: The Super Coding Ninja

79471665

Date: 2025-02-27 05:30:26
Score: 4
Natty:
Report link

set the below configuration to retrieve the null values
SET date_time_overflow_behavior= 'saturate'

reference
https://clickhouse.com/docs/operations/settings/formats#date_time_overflow_behavior

Reasons:
  • Probably link only (1):
  • Low length (1):
  • No code block (0.5):
  • Self-answer (0.5):
  • Low reputation (1):
Posted by: Hemanth Kumar N R

79471637

Date: 2025-02-27 05:05:20
Score: 5
Natty:
Report link

Is there any prompt which we can add that will make copilot not to use public code

Reasons:
  • Blacklisted phrase (1): Is there any
  • Low length (1.5):
  • No code block (0.5):
  • Single line (0.5):
  • Starts with a question (0.5): Is there any
  • Low reputation (1):
Posted by: Divyam

79471635

Date: 2025-02-27 05:03:19
Score: 5
Natty: 5
Report link

Adding 'react/jsx-runtime' to rollup external array saved my day. I think it might be a bug of rollup since react/jsx-runtime is included in react.

Reasons:
  • Blacklisted phrase (2): saved my day
  • Low length (1):
  • No code block (0.5):
  • Single line (0.5):
  • Low reputation (1):
Posted by: Xingdi Tan

79471561

Date: 2025-02-27 03:54:06
Score: 4.5
Natty:
Report link

I'm using JMeter 5.6.3 My JSON extractor is below. I'm not able to extract values. Did I miss something ? [enter image description here][1]

Reasons:
  • Blacklisted phrase (1): enter image description here
  • Low length (1):
  • Has code block (-0.5):
  • Ends in question mark (2):
  • Low reputation (1):
Posted by: RS Ganesh

79471545

Date: 2025-02-27 03:41:03
Score: 4
Natty: 5
Report link

Pi0/w Pi0-2/w works out of the box. for pi pico w try https://github.com/sidd-kishan/PicoPiFi

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

79471537

Date: 2025-02-27 03:33:01
Score: 4
Natty:
Report link

upsertAsync is indeed asynchronous.

https://github.com/couchbase/couchbase-net-client

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

79471529

Date: 2025-02-27 03:19:58
Score: 4.5
Natty:
Report link

check out the Issue links API - https://docs.gitlab.com/api/issue_links/ to get specifics about linked items.

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

79471445

Date: 2025-02-27 01:47:42
Score: 6 🚩
Natty:
Report link

Thanks @Mike M. Ctrl+K, M worked to get the menu where I could then select the language.

Reasons:
  • Blacklisted phrase (0.5): Thanks
  • Low length (1.5):
  • No code block (0.5):
  • User mentioned (1): @Mike
  • Self-answer (0.5):
  • Single line (0.5):
  • Looks like a comment (1):
  • Low reputation (0.5):
Posted by: Roman

79471444

Date: 2025-02-27 01:46:42
Score: 4.5
Natty: 5
Report link

I just improved the message in https://github.com/GradleUp/shadow/pull/1287.

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

79471441

Date: 2025-02-27 01:45:41
Score: 4
Natty:
Report link

Select substring([xxx], 1, 5), substring([xxx], 6, 5), substring[xxx], 11, 5)

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

79471438

Date: 2025-02-27 01:45:41
Score: 12
Natty: 7
Report link

did you solve the problem? i have exactly the same issue.

Reasons:
  • RegEx Blacklisted phrase (3): did you solve the problem
  • RegEx Blacklisted phrase (1.5): solve the problem?
  • Low length (1.5):
  • No code block (0.5):
  • Me too answer (2.5): i have exactly the same issue
  • Contains question mark (0.5):
  • Unregistered user (0.5):
  • Single line (0.5):
  • Starts with a question (0.5): did you solve the
  • Low reputation (1):
Posted by: MOMO

79471431

Date: 2025-02-27 01:39:39
Score: 6 🚩
Natty: 5.5
Report link

die llllloooolllllllllllll.....

Reasons:
  • Low length (2):
  • No code block (0.5):
  • Unregistered user (0.5):
  • Has no white space (0.5):
  • Filler text (0.5): lllllllllllll
  • Low entropy (1):
  • Low reputation (1):
Posted by: user29816247

79471384

Date: 2025-02-27 00:59:32
Score: 4
Natty:
Report link

Put internalA and internalB in a seperate package and make them package-private. that way, the client cannot @Autowire them.

Reasons:
  • Low length (1):
  • No code block (0.5):
  • User mentioned (1): @Autowire
  • Single line (0.5):
  • Low reputation (1):
Posted by: Timo Neske

79471379

Date: 2025-02-27 00:57:31
Score: 5
Natty: 6.5
Report link

Same problem, here is a sample extension: https://github.com/justinmann/sidepanel-audio-issue

Reasons:
  • RegEx Blacklisted phrase (1): Same problem
  • Probably link only (1):
  • Low length (1.5):
  • No code block (0.5):
  • Low reputation (1):
Posted by: Justin Mann

79471377

Date: 2025-02-27 00:56:30
Score: 4
Natty: 4.5
Report link

https://learn.microsoft.com/fr-fr/powershell/module/microsoft.powershell.core/about/about_execution_policies?view=powershell-7.5

Very usefull when PS block script execution.

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

79471346

Date: 2025-02-27 00:27:24
Score: 6 🚩
Natty:
Report link

I'm getting the exact same issue, and I wasn't before. What Mac OS are you using? I recently updated Xcode and OS and I'm thinking it might be related.

Reasons:
  • Low length (1):
  • No code block (0.5):
  • Me too answer (2.5): I'm getting the exact same issue
  • Contains question mark (0.5):
  • Single line (0.5):
  • Low reputation (1):
Posted by: Don212

79471345

Date: 2025-02-27 00:25:23
Score: 9
Natty: 7.5
Report link

I been researching on this from very long time could you help me more on this personally ?

Reasons:
  • Blacklisted phrase (1): help me
  • RegEx Blacklisted phrase (3): could you help me
  • Low length (1):
  • No code block (0.5):
  • Ends in question mark (2):
  • Single line (0.5):
  • Low reputation (1):
Posted by: Alagiri samy

79471339

Date: 2025-02-27 00:20:22
Score: 5
Natty:
Report link

enter code hereenter image description here

enter link description here

enter link description here

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

79471192

Date: 2025-02-26 22:56:05
Score: 4.5
Natty: 5
Report link

A link to a solution that is not mine https://catchts.com/union-array

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

79471164

Date: 2025-02-26 22:35:59
Score: 10 🚩
Natty:
Report link

Este error está asociado con muchos factores, especialmente con el inicio del proyecto de tratamiento y la gestión de giro en su aplicación. Revisaremos algunas posibles razones y soluciones:

Problemas de limpieza de monos: [mono] contacte a Debgar-Agent Mensaje: UNA10. Esto puede estar vinculado al error al comienzo de la formación de red o la estación de procesamiento.

solución:

IP10 Si el emulador no se conecta a la planta de tratamiento, intente cancelar la purificación remota y ensamblarla sin opciones de purificación. Puede intentar restaurar el emulador o iniciar un nuevo proyecto para ver si el error se corrige. Mutex distinguido (control de muttex): error [no. Poppinornot] Muttex. CC: 432 para destruir Muttex con propietarios o competidores. Propietario: 10086 indica que Muttex tiene un problema, que puede ser el resultado del procesamiento incorrecto de recursos o recursos comunes.solución:

Verifique si su aplicación utiliza indicadores de interconexión y hay algún recurso que participe en múltiples indicadores interconectados sin una sincronización adecuada. Esto puede causar corrupción de memoria o errores en la memoria. Si está utilizando la tercera biblioteca de sección, asegúrese de actualizarla correctamente, ya que puede ser un error relacionado con parte de la versión de dependencia. Errores en la Mezquita de recolección: usted ha mencionado que ha deshabilitado "el uso de la mezquita de basura de contratación", pero asegúrese de implementar la capacitación correctamente y que no hay otras formaciones contradictorias.

solución:

Simplemente deshabilite la recolección de residuos en la formación de su proyecto. Intente usar un emulador con una carga baja o incluso un dispositivo real para ver si se soluciona el problema. Signo 6 (Sigbart): Sigabrt generalmente indica que la aplicación se ha cancelado debido a un caso de error agudo, como la mala memoria o la gestión de la interconexión.solución:

Verifique el registro de su aplicación antes de no encontrar una excepción o un posible error para controlar a las Naciones Unidas en el flujo de las instrucciones de su software. También puede usar herramientas como ADB Logkat para obtener información más detallada sobre la causa de la falla. Si aún no ha tenido éxito, le recomiendo probar un dispositivo real, porque a veces los problemas del emulador pueden estar relacionados con su formación o fuentes limitadas. Puede intentar limpiar y renovar el proyecto, y eliminar Android Studio (por archivo> Archivo> Lappel / no correcto re -restart).

Reasons:
  • Blacklisted phrase (1): está
  • Blacklisted phrase (1): porque
  • Blacklisted phrase (2.5): solucion
  • Blacklisted phrase (3): solución
  • RegEx Blacklisted phrase (2): encontrar
  • Long answer (-1):
  • No code block (0.5):
  • Low reputation (1):
Posted by: Rodrigo Guzman

79471154

Date: 2025-02-26 22:28:57
Score: 6 🚩
Natty: 4.5
Report link

Please take a look at this article, it provides a more scalable approach is to store configurations in a JSON file and dynamically load them into Terraform, making the setup more modular and readable.

https://medium.com/@ameerahaiderrizvi/dynamic-aws-elastic-beanstalk-configuration-with-terraform-and-json-e38ac21627b7

Reasons:
  • Blacklisted phrase (1): this article
  • Blacklisted phrase (0.5): medium.com
  • Probably link only (1):
  • Contains signature (1):
  • Low length (0.5):
  • No code block (0.5):
  • Unregistered user (0.5):
  • Low reputation (1):
Posted by: Ameera

79471111

Date: 2025-02-26 21:59:50
Score: 4
Natty: 4.5
Report link

This is the best article I found. https://www.confluent.io/blog/error-handling-patterns-in-kafka/ It explains DLQ pattern.

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

79471090

Date: 2025-02-26 21:47:47
Score: 5.5
Natty: 6.5
Report link

In my case I had to use AWS CLI to configure credential This guide will help

https://medium.com/@damipetiwo/seting-up-s3-bucket-in-aws-using-terraform-5444e9b85ce6

Reasons:
  • Blacklisted phrase (1): This guide
  • Blacklisted phrase (0.5): medium.com
  • Probably link only (1):
  • Low length (1.5):
  • No code block (0.5):
  • Low reputation (1):
Posted by: Damipe Tiwo

79471076

Date: 2025-02-26 21:42:46
Score: 4
Natty:
Report link

Macrobenchmark runs on a variant that is based off of the release variant. If your app is having those issues when running the benchmark, chances are it's also facing similar problems on your regular release build. I'd begin by checking if your app is behaving normally on this device with release configuration. This has been the problem I've encountered.

Reasons:
  • No code block (0.5):
  • Me too answer (2.5): also facing similar problem
  • Single line (0.5):
  • Low reputation (0.5):
Posted by: Gabriel Vasconcelos

79470968

Date: 2025-02-26 20:36:32
Score: 8.5 🚩
Natty: 5.5
Report link

Were you able to make any progress on this?

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: Suril Mehta

79470887

Date: 2025-02-26 19:56:22
Score: 9.5 🚩
Natty: 4
Report link

Did you ever figure out a way to do this? I'm having a similar issue.. Need to let BI into my tailnet but not sure how to do so.

Reasons:
  • RegEx Blacklisted phrase (3): Did you ever figure out a way to
  • Low length (1):
  • No code block (0.5):
  • Me too answer (2.5): I'm having a similar issue
  • Contains question mark (0.5):
  • Single line (0.5):
  • Starts with a question (0.5): Did you
  • Low reputation (1):
Posted by: Mark

79470855

Date: 2025-02-26 19:37:17
Score: 4
Natty:
Report link

Try using the analytics endpoint: https://api.pagerduty.com/analytics/raw/incidents

You should get "assigned_user_names" in the response.

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

79470830

Date: 2025-02-26 19:25:14
Score: 4.5
Natty: 3.5
Report link

I have the same, I want to use Socket Mode but it's not working.

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

79470813

Date: 2025-02-26 19:16:12
Score: 5.5
Natty:
Report link

I want to tallk to stackexchange team.

Reasons:
  • RegEx Blacklisted phrase (1): I want
  • Low length (2):
  • No code block (0.5):
  • Unregistered user (0.5):
  • Single line (0.5):
  • Low reputation (1):
Posted by: user29813627

79470800

Date: 2025-02-26 19:07:11
Score: 4
Natty:
Report link

He is talking in square meters. :))

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

79470725

Date: 2025-02-26 18:26:01
Score: 8.5 🚩
Natty: 4.5
Report link

acabo de encontrar una solucion para ese error que me funcionó en mi caso. Hay que registrar esta libreria de esta manera: regsvr32 "C:\Windows\SysWOW64\Msstdfmt.dll

Saludos!

Reasons:
  • Blacklisted phrase (2.5): solucion
  • Blacklisted phrase (1.5): Saludos
  • RegEx Blacklisted phrase (2): encontrar
  • Low length (1):
  • No code block (0.5):
  • Low reputation (1):
Posted by: DIENEMER

79470704

Date: 2025-02-26 18:18:59
Score: 12 🚩
Natty: 5.5
Report link

I'm also facing pretty much the same issue on my mac M2. Have you found any solution to this?

rviz window shows up, and then it crashes...

Please help

Reasons:
  • Blacklisted phrase (1.5): any solution
  • RegEx Blacklisted phrase (3): Please help
  • RegEx Blacklisted phrase (2.5): Have you found any solution to this
  • RegEx Blacklisted phrase (2): any solution to this?
  • Low length (1):
  • No code block (0.5):
  • Contains question mark (0.5):
  • Low reputation (1):
Posted by: Gunjan Siddharth

79470590

Date: 2025-02-26 17:35:48
Score: 8 🚩
Natty:
Report link

I am getting the same error - but it is not related to an Optimization Experiment. In my case that is somehow related to the space configuration in a Pedestrian model. My guess is that the space pre-processing has difficulties with walls / obstacles. Or the latter have some inconsistencies?..

Reasons:
  • RegEx Blacklisted phrase (1): I am getting the same error
  • Low length (0.5):
  • No code block (0.5):
  • Me too answer (2.5): I am getting the same error
  • Ends in question mark (2):
  • Single line (0.5):
  • Low reputation (1):
Posted by: Ishkhanyantz

79470566

Date: 2025-02-26 17:27:45
Score: 14 🚩
Natty: 5.5
Report link

I have the same issue, did you fix it ?

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

79470472

Date: 2025-02-26 16:51:36
Score: 6 🚩
Natty:
Report link

I did not do this problem. Did you do this? Do you have a repo rate for example of the number of steps and in the question is to be done with the name of a question about the probability of the day of my life is the same

Reasons:
  • RegEx Blacklisted phrase (2.5): Do you have a
  • Low length (0.5):
  • No code block (0.5):
  • Contains question mark (0.5):
  • Unregistered user (0.5):
  • Single line (0.5):
  • Low reputation (1):
Posted by: Asim Ahmed

79470392

Date: 2025-02-26 16:22:29
Score: 8 🚩
Natty: 6
Report link

Its not working.. for drupal 10 .. please help

Reasons:
  • Blacklisted phrase (1): Its not working
  • RegEx Blacklisted phrase (3): please help
  • Low length (1.5):
  • No code block (0.5):
  • Unregistered user (0.5):
  • Single line (0.5):
  • Low reputation (1):
Posted by: Inc

79470354

Date: 2025-02-26 16:11:26
Score: 5
Natty:
Report link

trying using a different reputation or crosscheck your work

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

79470349

Date: 2025-02-26 16:09:25
Score: 4.5
Natty: 5
Report link

I would very much like to do the same thing. Would it be possible to get a copy of the information?

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

79470284

Date: 2025-02-26 15:44:19
Score: 5
Natty:
Report link

enter image description here

enter image description here

Here you can see the difference in tag content with and without USPS

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

79470270

Date: 2025-02-26 15:41:18
Score: 4
Natty:
Report link

I had same issue and look this official troubleshooting page.
I have tried all of the solutions but could not succeed. Finally I set the server project as startup project then start the project with "https" option and it gives the port that I could use for the frontend.

enter image description here

P.S. Other start options (Docker, IIS, http) did not work for me.

Reasons:
  • Blacklisted phrase (1): did not work
  • Probably link only (1):
  • Low length (0.5):
  • No code block (0.5):
  • Low reputation (1):
Posted by: eray

79470247

Date: 2025-02-26 15:30:15
Score: 10 🚩
Natty:
Report link

Recientemente enfrenté un problema al intentar verificar si un archivo era legible usando la función is_readable() en PHP. Originalmente, movía el archivo desde su ubicación original a la carpeta donde mi script intentaba leerlo. Sin embargo, esto no resultaba efectivo.

Descubrí que la solución era copiar el archivo en lugar de moverlo. Al hacer una copia del archivo en la carpeta de destino, la función is_readable() comenzó a funcionar como se esperaba y pudo verificar correctamente el acceso al archivo.

Espero que este enfoque también pueda ayudar a otros que enfrenten situaciones similares.

Saludos

Reasons:
  • Blacklisted phrase (2): ayuda
  • Blacklisted phrase (2): Espero
  • Blacklisted phrase (3): solución
  • Blacklisted phrase (1.5): Saludos
  • Long answer (-0.5):
  • No code block (0.5):
  • Unregistered user (0.5):
  • Low reputation (1):
Posted by: Karjedon

79470238

Date: 2025-02-26 15:26:14
Score: 4.5
Natty:
Report link

So after a load of very useful info in the comments after running the query suggested by @AlanSchofield and noting the PK column error "No identity column defined", I requested help from our DBA who has created a cloned table and defined the PK column as an identity column and now my bulk upload is working with the whole file uploading in one run.

Thanks again to everyone for the help, much appreciated.

Reasons:
  • Blacklisted phrase (0.5): Thanks
  • Blacklisted phrase (1): appreciated
  • No code block (0.5):
  • User mentioned (1): @AlanSchofield
  • Self-answer (0.5):
  • Low reputation (1):
Posted by: Geetarman

79470234

Date: 2025-02-26 15:25:13
Score: 4.5
Natty:
Report link

You guys are awesome.

I do not know how to thank you!

Many thanks! I truly appreciate it!

Reasons:
  • Blacklisted phrase (0.5): thank you
  • Blacklisted phrase (0.5): thanks
  • Low length (1.5):
  • No code block (0.5):
  • Self-answer (0.5):
  • Low reputation (1):
Posted by: Pedro Suarez

79470186

Date: 2025-02-26 15:11:09
Score: 4.5
Natty:
Report link

Unfortunately, the output isn't telling us much, although if it the app is always getting killed after sending in your command, then the kernel likely killed it for some reason. Perhaps memory.. scrypt, AFAICT, is one of those memory heavy key derivation functions, it might have been that.

To resolve the issue you would need to find why the kernel killed the app and address the resource issue What killed my process and why?

Reasons:
  • Blacklisted phrase (0.5): why?
  • No code block (0.5):
  • Ends in question mark (2):
  • Looks like a comment (1):
  • Low reputation (0.5):
Posted by: karimkorun

79470128

Date: 2025-02-26 14:50:03
Score: 8.5 🚩
Natty: 4.5
Report link

Has anyone found a better solution to this? I see that it's been 8 years. I really want to be able to select a bunch of placemarks in a certain area of the map. I'm using Google Earth Pro

Reasons:
  • Blacklisted phrase (2): anyone found
  • RegEx Blacklisted phrase (3): Has anyone found
  • Low length (0.5):
  • No code block (0.5):
  • Contains question mark (0.5):
  • Unregistered user (0.5):
  • Single line (0.5):
  • Low reputation (1):
Posted by: user29810349

79470027

Date: 2025-02-26 14:15:55
Score: 4
Natty: 4.5
Report link

you should use CountVectorizer(tokenizer=text_process)

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

79469989

Date: 2025-02-26 13:59:51
Score: 5.5
Natty:
Report link

Have you tried to send this request using CURL instead of Postman or Isomnia? Does your controller class has the @RestControlle annotation? Have you tried to set some breakpoint on your method in order to make sure what the request is sending to your server?

Reasons:
  • Whitelisted phrase (-1): Have you tried
  • Low length (0.5):
  • No code block (0.5):
  • Ends in question mark (2):
  • User mentioned (1): @RestControlle
  • Single line (0.5):
  • Looks like a comment (1):
  • Low reputation (1):
Posted by: Marcos Pozzobon

79469952

Date: 2025-02-26 13:48:48
Score: 5.5
Natty:
Report link

Did you get to solve this problem? I have the same here...

I was ok until I added a couple of scripts in my header, taking care to keep charset in the first 1024, but PSI keep giving a critical issue to best practice, pointing a missing charset. But its there and well placed :

<!DOCTYPE html>
<html lang="fr-CA">
  <head>
    <meta charset="UTF-8">
    <meta name="viewport" content="width=device-width, initial-scale=1">

Even if I remove the scripts I added under it! But here's something: I ran a test through Chrome Devtools with Lighthouse and it should reveal the same error than PSI but it is not...

So I'm at the stage of knowing that it's something more specifically related to PSI and not an actual problem with my website. But still, something somewhere is causing this problem as just before I added 2 new scripts, my best practice was all right with PSI...

Reasons:
  • RegEx Blacklisted phrase (3): Did you get to solve this problem
  • RegEx Blacklisted phrase (1.5): solve this problem?
  • Long answer (-0.5):
  • Has code block (-0.5):
  • Contains question mark (0.5):
  • Starts with a question (0.5): Did you
  • Low reputation (1):
Posted by: Pascal Normand

79469914

Date: 2025-02-26 13:37:45
Score: 4.5
Natty:
Report link

Update your PyO3 to the version 0.23.5. The useless warning was fixed here: https://github.com/PyO3/pyo3/pull/4838

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

79469892

Date: 2025-02-26 13:29:42
Score: 5
Natty: 4
Report link

Anyone found a solution for this issue? As mentioned above, \n was working until a few months ago and now it stopped working. \r works in desktop (both windows and IOS) but not on mobile app.

Reasons:
  • Blacklisted phrase (2): Anyone found
  • Low length (0.5):
  • No code block (0.5):
  • Contains question mark (0.5):
  • Single line (0.5):
  • Low reputation (1):
Posted by: selva muthu kumar banumoorthy

79469891

Date: 2025-02-26 13:29:41
Score: 6.5 🚩
Natty:
Report link

Can you provide the generated error log for more detail

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

79469841

Date: 2025-02-26 13:08:31
Score: 11.5 🚩
Natty: 6.5
Report link

Do you have any update on this issue? how did u fix it?

Reasons:
  • Blacklisted phrase (1): update on this
  • RegEx Blacklisted phrase (3): did u fix it
  • RegEx Blacklisted phrase (1.5): fix it?
  • RegEx Blacklisted phrase (2.5): Do you have any
  • Low length (1.5):
  • No code block (0.5):
  • Ends in question mark (2):
  • Single line (0.5):
  • High reputation (-1):
Posted by: Saeid

79469835

Date: 2025-02-26 13:08:30
Score: 7 🚩
Natty: 5
Report link

I was trying not only to get a calibration value , but also to set it . I tried with cal.SetDoublePhysValue(cal.GetDoublePhysValue) which should simply set a vector (cal is the handle to the values of a vector) to itself but I get an error code :

Error using Interface.incacom_interface_v11_CalibrationArrayData_Dispatch/SetDoublePhysValue Invoke Error, Dispatch Exception: Source: IncaCOM Description: Value does not fall within the expected range.

But the values that I was trying to set are in the values range.

Can anyone help ?

Reasons:
  • RegEx Blacklisted phrase (3): Can anyone help
  • RegEx Blacklisted phrase (1): I get an error
  • Long answer (-0.5):
  • No code block (0.5):
  • Ends in question mark (2):
  • Low reputation (1):
Posted by: Valerio Bastone

79469809

Date: 2025-02-26 13:00:27
Score: 4.5
Natty: 4
Report link

Check if you have php-curl installed

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

79469724

Date: 2025-02-26 12:37:22
Score: 4
Natty:
Report link

FOR me DEFAULT (CURDATE()) -- worked.

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

79469608

Date: 2025-02-26 11:54:12
Score: 4
Natty:
Report link

Indeed look into the link posted by @user3272686, it does specify it on pages 92-93! (use {1 to send CODE c, and pass values as octets: '\x00'...'\x62' (the latter has indeed the same value as ASCII 'b'.

Reasons:
  • Low length (0.5):
  • No code block (0.5):
  • Unregistered user (0.5):
  • User mentioned (1): @user3272686
  • Single line (0.5):
  • Low reputation (1):
Posted by: Theo

79469599

Date: 2025-02-26 11:49:10
Score: 4
Natty:
Report link

Yes, you can do this, it is possible.

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

79469575

Date: 2025-02-26 11:44:08
Score: 5
Natty:
Report link

You can try using this NPM Module - https://www.npmjs.com/package/depcheck

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

79469508

Date: 2025-02-26 11:22:03
Score: 4
Natty:
Report link

More details you can find here: https://sease.io/2023/12/hybrid-search-with-apache-solr.html

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

79469493

Date: 2025-02-26 11:18:01
Score: 4.5
Natty:
Report link

We were facing the same problem, I don't think getting a count of a field with vector is possible. A work around could be that you write another field to the index ever time you add a vector do a doc, e.g. vector_creation_pdate. Then used this to get the count of all docs with vectors.

Reasons:
  • Low length (0.5):
  • No code block (0.5):
  • Me too answer (2.5): facing the same problem
  • Single line (0.5):
  • Low reputation (0.5):
Posted by: rustyfinger

79469439

Date: 2025-02-26 10:59:56
Score: 8 🚩
Natty:
Report link

Keith Hill made the excellent suggestion to use the following shortcut command line, however it did not pass the arguments correctly. Paths with spaces were split apart when they arrived at the Test.ps1 script.

powershell.exe -noprofile -noexit -command "& {c:\test1.ps1 $args}"

Has anyone found a way to do this without the extra script?

C:\Windows\System32\WindowsPowerShell\v1.0\powershell.exe -noprofile -noexit -command & { get-item $([string]$args) }"

enter image description here

Reasons:
  • Blacklisted phrase (1): enter image description here
  • Blacklisted phrase (2): anyone found
  • RegEx Blacklisted phrase (3): Has anyone found
  • No code block (0.5):
  • Contains question mark (0.5):
  • Low reputation (1):
Posted by: brrrr66

79469396

Date: 2025-02-26 10:44:52
Score: 4.5
Natty:
Report link

Vinay B, Isn't it necessary to define the following variables?

KC_DB_PASSWORD and KC_DB_USERNAME

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

79469314

Date: 2025-02-26 10:14:45
Score: 10
Natty: 8.5
Report link

Were you able to find a solution??

Reasons:
  • RegEx Blacklisted phrase (1): Were you able to find a solution
  • RegEx Blacklisted phrase (3): Were you able
  • Low length (2):
  • No code block (0.5):
  • Ends in question mark (2):
  • Single line (0.5):
  • Low reputation (1):
Posted by: Jain Harsh