79251242

Date: 2024-12-04 13:03:23
Score: 5
Natty:
Report link

For anyone who will probably have same problem but have people like @jabaa say their question sucks instead of being truly helpful people, the issue was that the text decorations were only highlighting on the original text and not on the diff text itself since i haven't added the diff text to the file in the editor, so the fix is simply to make sure you add the diff into the file but hold context to the old text incase the user rejects the changes so you can reverse it back to the original text.

Reasons:
  • Long answer (-0.5):
  • No code block (0.5):
  • Me too answer (2.5): have same problem
  • User mentioned (1): @jabaa
  • Self-answer (0.5):
  • Single line (0.5):
  • Low reputation (0.5):
Posted by: Precious112

79251222

Date: 2024-12-04 12:53:20
Score: 9 🚩
Natty: 5.5
Report link

Did you get any update on the feature from Mastercard?

Reasons:
  • RegEx Blacklisted phrase (3): Did you get any
  • Low length (1.5):
  • No code block (0.5):
  • Ends in question mark (2):
  • Single line (0.5):
  • Starts with a question (0.5): Did you
  • Low reputation (1):
Posted by: Pradeep KK

79251203

Date: 2024-12-04 12:47:17
Score: 5.5
Natty: 4.5
Report link

enter image description here

1: https://i.sstatic.net/IDdyYdWk.jpg ( error after adding avowed code problem fixed thanks

now enter image description here

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

79251097

Date: 2024-12-04 12:15:08
Score: 6 🚩
Natty:
Report link

please provide larval livewire interview question in simple way

Reasons:
  • RegEx Blacklisted phrase (2.5): please provide
  • Low length (1.5):
  • No code block (0.5):
  • Single line (0.5):
  • Low reputation (1):
Posted by: Naveen Jaglan

79251087

Date: 2024-12-04 12:12:06
Score: 6 🚩
Natty: 5
Report link
error132920_02.xml Errors were detected in file 'D:\SHARING FOLDER\SAHIL MIS\THEFT MIS NEW FROM JAN-2023.xlsx' Excel completed file level validation and repair. Some parts of this workbook may have been repaired or discarded. Removed Part: /xl/sharedStrings.xml part with XML error. (Strings) Illegal qualified name character. Line 5, column 46898. Removed Records: Cell information from /xl/worksheets/sheet1.xml part Removed Records: Cell information from /xl/worksheets/sheet2.xml part

what can I do in this situation?

Reasons:
  • Blacklisted phrase (1): can I do
  • Blacklisted phrase (1): what can I do
  • Long answer (-0.5):
  • No code block (0.5):
  • Ends in question mark (2):
  • Looks like a comment (1):
  • Low reputation (1):
Posted by: tara chand verma

79251085

Date: 2024-12-04 12:12:05
Score: 4
Natty: 4
Report link

My App got rejected because stripe is implemented , Apple Team suggested me to implement in-App purchase.

I have created products and subscription products in Apple developer account. status is "Ready to Submit"

I want to understand how this status will be changed now, as i have submitted the products 2 days back and status is still same

shall i need to resubmit the build but i haven't applied In-App purchase yet because I am not able to fetch products.

Reasons:
  • Blacklisted phrase (0.5): i need
  • Blacklisted phrase (1): I am not able to
  • RegEx Blacklisted phrase (1): I want
  • No code block (0.5):
  • Low reputation (1):
Posted by: Karan

79250965

Date: 2024-12-04 11:30:52
Score: 7.5 🚩
Natty: 5
Report link

I'd like to create a system for myself that will allow me to lock the doors of my home، please help me، I need all the tools I need.

Reasons:
  • Blacklisted phrase (1): help me
  • Blacklisted phrase (0.5): I need
  • RegEx Blacklisted phrase (3): please help me
  • Low length (1):
  • No code block (0.5):
  • Single line (0.5):
  • Low reputation (1):
Posted by: Rebaz Abarzani

79250937

Date: 2024-12-04 11:22:50
Score: 4.5
Natty:
Report link

import openpyx1

ModuleNotFoundError: No module named 'openpyx1'

Why?! I got the following enter image description here

that confirms (?) that the module is installed ...

Reasons:
  • Blacklisted phrase (0.5): Why?
  • Blacklisted phrase (1): enter image description here
  • Low length (1):
  • No code block (0.5):
  • Contains question mark (0.5):
  • Low reputation (1):
Posted by: Giorgio Cinciripini

79250854

Date: 2024-12-04 10:59:43
Score: 4.5
Natty:
Report link

how about using this:

tbl %>%
  as_gt() %>%
  fmt(
    columns = everything(),
    fns = function(x) {
      # Convert numeric values to use comma as decimal separator
      ifelse(is.numeric(x),
             format(x, decimal.mark = ",", big.mark = "."),
             x)
    }
  )

Or even transforming the table before gt:

tbl <- tbl %>%
  mutate(across(where(is.numeric), 
                ~format(., decimal.mark = ",", big.

Or even using string replace:

tbl %>%
  as_gt() %>%
  text_transform(
    locations = cells_body(),
    fn = function(x)) {
      str_replace(as.character(x), "\\.", ",")
    }
  )

Could you provide some test data?

Reasons:
  • RegEx Blacklisted phrase (2.5): Could you provide some
  • Long answer (-0.5):
  • Has code block (-0.5):
  • Ends in question mark (2):
  • Starts with a question (0.5): how
  • Low reputation (0.5):
Posted by: G-Man

79250812

Date: 2024-12-04 10:46:39
Score: 5
Natty: 5.5
Report link

Check here - this is possible without any additional code: https://formidableforms.com/knowledgebase/automatically-populate-fields/

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: guest

79250775

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

Thanks i had just figured it out but you are right the problem was my RDWR flag as the proc files are in read-only mode.The correct flag was RDONLY.

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

79250713

Date: 2024-12-04 10:20:30
Score: 12.5
Natty: 9
Report link

same issue.....do you have any solution?

Reasons:
  • Blacklisted phrase (1.5): any solution
  • RegEx Blacklisted phrase (2.5): do you have any
  • RegEx Blacklisted phrase (1): same issue
  • RegEx Blacklisted phrase (2): any solution?
  • Low length (1.5):
  • No code block (0.5):
  • Ends in question mark (2):
  • Single line (0.5):
  • Low reputation (1):
Posted by: Remix

79250690

Date: 2024-12-04 10:14:28
Score: 4
Natty: 4.5
Report link

Ask ccAveneu team to whitelist the URL for your server as well as for localhotst. You can mail them using [email protected] Refer to this document : https://www.aravin.net/article/complete-guide-integrate-ccavenue-payment-gateway-asp-net-website-screenshot

Reasons:
  • Blacklisted phrase (1): this document
  • Probably link only (1):
  • Low length (1):
  • No code block (0.5):
  • Low reputation (0.5):
Posted by: Kunal Chikte

79250677

Date: 2024-12-04 10:10:26
Score: 4.5
Natty: 5.5
Report link

found out any solution or not. bcoz my friend have same laptop and were running into same problem.

Reasons:
  • Blacklisted phrase (1.5): any solution
  • Low length (1):
  • No code block (0.5):
  • Single line (0.5):
  • Low reputation (1):
Posted by: Shubham Rampurkar

79250614

Date: 2024-12-04 09:56:21
Score: 9.5
Natty: 7.5
Report link

Did you get any idea about it?

Reasons:
  • RegEx Blacklisted phrase (3): Did you get any
  • Low length (2):
  • No code block (0.5):
  • Ends in question mark (2):
  • Single line (0.5):
  • Starts with a question (0.5): Did you
  • Low reputation (1):
Posted by: favaz P A

79250610

Date: 2024-12-04 09:55:20
Score: 4.5
Natty: 5
Report link

wow wow wow, thanks,it really works

Reasons:
  • Blacklisted phrase (0.5): thanks
  • Low length (2):
  • No code block (0.5):
  • Single line (0.5):
  • Low reputation (1):
Posted by: 发抖喵

79250595

Date: 2024-12-04 09:49:18
Score: 5
Natty: 5
Report link

Does this fix the connection issue to eduroam networks on rooted android 11 phones? If it does, can i get an easy tutorial to where to put these codes in?

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

79250557

Date: 2024-12-04 09:39:14
Score: 4
Natty:
Report link

I have successfully pip installed and used 'oracledb' module to connect to Oracle database from python. Thanks for all the helpful answers and guidance!

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

79250551

Date: 2024-12-04 09:38:13
Score: 5.5
Natty: 4
Report link

Error: headers was called outside a request scope. Read more: https://nextjs.org/docs/messages/next-dynamic-api-wrong-context im getting this issue, i tried to use workos for login and sign up but im getting this. someone please help me

Reasons:
  • Blacklisted phrase (1): help me
  • RegEx Blacklisted phrase (3): please help me
  • Low length (1):
  • Has code block (-0.5):
  • Single line (0.5):
  • Low reputation (0.5):
Posted by: raghunath

79250514

Date: 2024-12-04 09:26:09
Score: 5.5
Natty: 5
Report link

Может кому поможет. Просто добавьте в список еще один столбец (в случае автора managers).

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

79250503

Date: 2024-12-04 09:22:07
Score: 4.5
Natty:
Report link

Figured out the WA for this: Use below config in the configmap of ingress-controller: https://kubernetes.github.io/ingress-nginx/user-guide/nginx-configuration/configmap/#proxy-ssl-location-only

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

79250421

Date: 2024-12-04 08:51:59
Score: 4
Natty: 4
Report link

Try unchecking Environment->Find and Replace->Automatically limit search to selection

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

79250386

Date: 2024-12-04 08:41:55
Score: 8.5 🚩
Natty: 5.5
Report link

I am also facing the same issue. Any Solution!

Reasons:
  • Blacklisted phrase (1): I am also facing the same issue
  • Blacklisted phrase (1.5): Any Solution
  • Low length (1.5):
  • 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: SAI MOHAN Kesapragada

79250361

Date: 2024-12-04 08:36:53
Score: 4
Natty: 4.5
Report link

I am trying to select 3 line from the text: Gesamtsortiment IT + Multimedia Smartphones + Tablets Smartphone Zubehör Smartphone Schutz Smartphone Hülle 4smarts Defend Case

I need 3 line, from the last line. example: Smartphone Zubehör Smartphone Schutz Smartphone Hülle

But I need all of those 3 lines in 3 different regex.

Because i need them to be in 3 different column.

Reasons:
  • Blacklisted phrase (0.5): I need
  • Blacklisted phrase (0.5): i need
  • Blacklisted phrase (1): I am trying to
  • No code block (0.5):
  • Unregistered user (0.5):
  • Low reputation (1):
Posted by: Sumon

79250354

Date: 2024-12-04 08:33:51
Score: 5
Natty:
Report link

Getting same issues as well but I only encounter it today while trying to build and deploy app.

Using self hosted runner as well, when one job is finished, another job is not starting until I terminated my runner and start again...

It was working fine for past ~1-2 years too :(

Seems like the only way now is to just terminate the runner & restart again

Reasons:
  • Blacklisted phrase (1): :(
  • No code block (0.5):
  • Me too answer (2.5): Getting same issue
  • Low reputation (1):
Posted by: Chiew Carol

79250338

Date: 2024-12-04 08:27:49
Score: 10.5
Natty: 7.5
Report link

hey did you manage to get the smart tap protocol working?

Reasons:
  • RegEx Blacklisted phrase (3): did you manage to get the
  • RegEx Blacklisted phrase (2): working?
  • Low length (1.5):
  • No code block (0.5):
  • Ends in question mark (2):
  • Single line (0.5):
  • Low reputation (1):
Posted by: Bas Smit

79250322

Date: 2024-12-04 08:23:47
Score: 5.5
Natty: 7.5
Report link

Do you miss Ws2_32.lib, Crypt32.lib, Wldap32.lib and Normaliz.lib?

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

79250318

Date: 2024-12-04 08:22:42
Score: 9
Natty:
Report link

anyone can help me ? it's very important for me

Reasons:
  • Blacklisted phrase (1): help me
  • RegEx Blacklisted phrase (3): anyone can help me
  • RegEx Blacklisted phrase (0.5): anyone can help
  • Low length (1.5):
  • No code block (0.5):
  • Contains question mark (0.5):
  • Self-answer (0.5):
  • Single line (0.5):
  • Low reputation (1):
Posted by: Lior Swisa

79250317

Date: 2024-12-04 08:22:40
Score: 9 🚩
Natty: 5
Report link

I have the same problem, i can't build my project. if you have the solution please provide it to me.

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

79250272

Date: 2024-12-04 08:03:34
Score: 4
Natty:
Report link

i've a question and nobody is responding to me... please take a look

the browser says the sw is "activated and running" but it never answers to any request (not working)

also, how do i know my sw is working? i tried using the network request on the application tab to filter responses from the sw, none. I also listened to the fetch event, none. Also in my network tab, it seems stuff are still coming from my server but it says "Activated and running" on the sw status

Reasons:
  • Blacklisted phrase (1): how do i
  • RegEx Blacklisted phrase (2): working?
  • Has code block (-0.5):
  • Contains question mark (0.5):
  • Low reputation (1):
Posted by: Oluwatobi Giwa

79250271

Date: 2024-12-04 08:03:32
Score: 6.5 🚩
Natty: 6
Report link

have you resolved this issue? I met he same return and I cannot locate the reason. thanks

Reasons:
  • Blacklisted phrase (0.5): thanks
  • Blacklisted phrase (0.5): I cannot
  • RegEx Blacklisted phrase (1.5): resolved this issue?
  • Low length (1.5):
  • No code block (0.5):
  • Contains question mark (0.5):
  • Unregistered user (0.5):
  • Low reputation (1):
Posted by: user28620548

79250257

Date: 2024-12-04 07:56:29
Score: 4
Natty:
Report link

Resolved, it was caused by a parsing error with my server private key.

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

79250233

Date: 2024-12-04 07:46:25
Score: 6.5 🚩
Natty: 4
Report link

sorry if I come back to this old thread. I've noticed a strange behavior. I have a server wich I can reach by the internal ip 192.168.x.x or by the netbird network 100.x.x.x

If I connect to the internal IP or the netbird IP I see the sftp browser. But if I switch to the netbird FQDN the sftp browser does not work, and I have to switch to scp.

Could anyone explain me why?

Reasons:
  • Blacklisted phrase (0.5): why?
  • RegEx Blacklisted phrase (2.5): Could anyone explain me
  • No code block (0.5):
  • Ends in question mark (2):
  • Low reputation (1):
Posted by: SKAL

79250217

Date: 2024-12-04 07:38:23
Score: 5.5
Natty:
Report link

I have the same error with .podspec with command

pod spec lint

When I run my project with Xcode or with command

npx react-native run-android

all it works.

My version of react native is 0.76.2

Reasons:
  • RegEx Blacklisted phrase (1): I have the same error
  • Low length (0.5):
  • No code block (0.5):
  • Me too answer (2.5): I have the same error
  • Low reputation (1):
Posted by: Diego Albini

79250190

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

The "postgres_attach" has been deprecated, and it has been succeeded by ATTACH, https://duckdb.org/docs/extensions/postgres.html

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

79250103

Date: 2024-12-04 06:43:07
Score: 8.5
Natty: 7.5
Report link

Whenever my ball and paddle get close and near to hit to each other it did not hit they get passed to each other. How can I fix that ?

Reasons:
  • Blacklisted phrase (0.5): How can I
  • RegEx Blacklisted phrase (1.5): How can I fix that ?
  • Contains signature (1):
  • 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: can

79250069

Date: 2024-12-04 06:23:01
Score: 4
Natty:
Report link

The reason behind header does not appear in the outgoing request is that msal factory functions were loading before APP_INITIALIZER. There are many solutions available for this issue. The following one helped me

Angular (v15) providers for Azure AD are executed before the APP_INITIALIZER promise is resolved

Reasons:
  • Blacklisted phrase (1.5): any solution
  • Low length (0.5):
  • No code block (0.5):
  • Self-answer (0.5):
  • Low reputation (1):
Posted by: kunal

79249965

Date: 2024-12-04 05:25:47
Score: 4.5
Natty: 4
Report link

How can I apply the CEIL in an ABAP SQL statement?, for example, first I want to make a SUM and then I'd like to do a CEIL in the same column.

START-OF-SELECTION.

IF so_auart[] IS INITIAL. SELECT A~Material, "A~FecCreacion, A~ClaseDoc, SUM( A~CantPedidoUMV ) AS CantPedidoUMV, SUM( B~StockLibreUMV ) AS StockLibreUMV, B~UMVenta INTO TABLE @it_data FROM ZMATITEST2 AS A LEFT JOIN ZMARDV002 AS B ON B~Material = A~Material WHERE FecCreacion IN @so_erdat GROUP BY A~Material, "A~FecCreacion, A~ClaseDoc, B~UMVenta.

Reasons:
  • Blacklisted phrase (0.5): How can I
  • RegEx Blacklisted phrase (1): I want
  • Long answer (-0.5):
  • No code block (0.5):
  • Contains question mark (0.5):
  • User mentioned (1): @it_data
  • User mentioned (0): @so_erdat
  • Starts with a question (0.5): How can I
  • Low reputation (1):
Posted by: Zanguinetti

79249912

Date: 2024-12-04 04:49:37
Score: 11.5
Natty: 7.5
Report link

Have you found any solution for android 14 ?

Reasons:
  • Blacklisted phrase (1.5): any solution
  • RegEx Blacklisted phrase (2.5): Have you found any solution for android 14
  • RegEx Blacklisted phrase (2): any solution for android 14 ?
  • Low length (1.5):
  • No code block (0.5):
  • Ends in question mark (2):
  • Single line (0.5):
  • Low reputation (1):
Posted by: Kamlesh Khatri

79249890

Date: 2024-12-04 04:39:33
Score: 5
Natty:
Report link

I've got this weird issue where the container sees /etc/avahi/services, which has the avahi-daemon.conf file in it, however, when I look at the logs in terminal, it's saying it doesn't see it.

Found user 'avahi' (UID 86) and group 'avahi' (GID 86).
Successfully dropped root privileges.
avahi-daemon 0.8 starting up.
WARNING: No NSS support for mDNS detected, consider installing nss-mdns!
Successfully called chroot().
Successfully dropped remaining capabilities.
No service file found in /etc/avahi/services.
*** WARNING: Detected another IPv4 mDNS stack running on this host. This makes mDNS unreliable and is thus not recommended. ***

Does anyone have any insight?

Reasons:
  • RegEx Blacklisted phrase (3): Does anyone have any insight
  • Long answer (-0.5):
  • Has code block (-0.5):
  • Ends in question mark (2):
  • Low reputation (1):
Posted by: Ron Ramsay

79249880

Date: 2024-12-04 04:30:30
Score: 5.5
Natty: 4
Report link

Have you try to update libssh2?

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

79249860

Date: 2024-12-04 04:15:26
Score: 4.5
Natty:
Report link

Is an optimization applied in compose. It is known as doughnut skipping. Check this article: https://www.jetpackcompose.app/articles/donut-hole-skipping-in-jetpack-compose

Reasons:
  • Blacklisted phrase (1): this article
  • Probably link only (1):
  • Low length (1):
  • No code block (0.5):
  • Single line (0.5):
  • Low reputation (0.5):
Posted by: Pablo Valdes

79249828

Date: 2024-12-04 03:50:20
Score: 6.5 🚩
Natty: 5.5
Report link

I had tried step3-4, but still not work. Any idea?

Reasons:
  • Blacklisted phrase (1): Any idea?
  • Low length (1.5):
  • No code block (0.5):
  • Ends in question mark (2):
  • Single line (0.5):
  • Low reputation (1):
Posted by: default learn

79249812

Date: 2024-12-04 03:40:16
Score: 8 🚩
Natty: 4.5
Report link

you have any luck with this? I am having the same issue

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

79249807

Date: 2024-12-04 03:34:13
Score: 10.5 🚩
Natty: 6.5
Report link

Were you able to find solution to that? I'm having the same problem in react js

Reasons:
  • Blacklisted phrase (1): I'm having the same problem
  • RegEx Blacklisted phrase (3): Were you able
  • Low length (1.5):
  • No code block (0.5):
  • Me too answer (2.5): I'm having the same problem
  • Contains question mark (0.5):
  • Single line (0.5):
  • Low reputation (1):
Posted by: Eddy Mono

79249768

Date: 2024-12-04 03:07:05
Score: 5
Natty:
Report link

I read a website that said playsinline attribute is only supported on Safari on iOS 10 and above. Do you think that's the problem?

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

79249754

Date: 2024-12-04 02:58:02
Score: 6 🚩
Natty: 6.5
Report link

This article explains what the issue is and how to solve it: https://forums.ironmansoftware.com/t/start-debugging-results-in-error/2934/11

Reasons:
  • Blacklisted phrase (1): This article
  • Blacklisted phrase (1): how to solve
  • Probably link only (1):
  • Low length (1.5):
  • No code block (0.5):
  • Low reputation (1):
Posted by: J D

79249737

Date: 2024-12-04 02:42:58
Score: 6.5 🚩
Natty: 6.5
Report link

i hope this later works, because i am in such a situation where i need to dial ussd in my flutter app and also have sequential dials. please show to do this. thank you, kindly.

Reasons:
  • Blacklisted phrase (0.5): thank you
  • Blacklisted phrase (0.5): i need
  • RegEx Blacklisted phrase (2.5): please show
  • Low length (1):
  • No code block (0.5):
  • Single line (0.5):
  • Low reputation (1):
Posted by: adedoyin fadeko

79249658

Date: 2024-12-04 01:46:45
Score: 5
Natty: 4.5
Report link

Next Step: https://link-target.net/508162/key-system1 https://link-center.net/508162/key-system Next Step: https://link-target.net/508162/key-system1Next Step: https://link-target.net/508162/key-system1Next Step: https://link-target.net/508162/key-system1Next Step: https://link-target.net/508162/key-system1

Reasons:
  • Probably link only (1):
  • Low length (2):
  • No code block (0.5):
  • Unregistered user (0.5):
  • Low reputation (1):
Posted by: Enos Alerrandro Francisco dSan

79249650

Date: 2024-12-04 01:39:43
Score: 4
Natty: 4
Report link

Deprecated since version 3.7:. Use matplotlib.colormaps[name] or matplotlib.colormaps.get_cmap() or pyplot.get_cmap() instead.

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

79249513

Date: 2024-12-04 00:01:21
Score: 9.5 🚩
Natty: 4.5
Report link

Did you ever figure this out mate I'm having the same issue Thanks

Reasons:
  • Blacklisted phrase (0.5): Thanks
  • RegEx Blacklisted phrase (3): Did you ever figure this out
  • Low length (1.5):
  • No code block (0.5):
  • Me too answer (2.5): I'm having the same issue
  • Starts with a question (0.5): Did you
  • Low reputation (1):
Posted by: Adam Ward

79249472

Date: 2024-12-03 23:39:14
Score: 9 🚩
Natty: 4.5
Report link

Did you fix the issue? Im facing the same and wondering what was it

Reasons:
  • RegEx Blacklisted phrase (3): Did you fix the
  • RegEx Blacklisted phrase (1.5): fix 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 fix the is
  • Low reputation (1):
Posted by: Enrique Pernía Garcia

79249465

Date: 2024-12-03 23:36:12
Score: 6 🚩
Natty: 5
Report link

I am running Docker Desktop for Windows on my laptop. My build will run in the detached mode but it will not start the images in foreground mode. Where should I start to troubleshoot?

Reasons:
  • Blacklisted phrase (1.5): Where should I
  • Low length (0.5):
  • No code block (0.5):
  • Ends in question mark (2):
  • Single line (0.5):
  • Low reputation (1):
Posted by: Duane Depew2

79249328

Date: 2024-12-03 22:19:53
Score: 4.5
Natty: 5
Report link

Used th bulk email validation tool . Will do up to 1million email addresses per batch. https://www.twilio.com/docs/sendgrid/ui/managing-contacts/email-address-validation/bulk-email-address-validation-overview

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

79249273

Date: 2024-12-03 21:57:47
Score: 5.5
Natty: 5.5
Report link

This does not work for me:( Can someome furnish some help?

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

79249261

Date: 2024-12-03 21:53:45
Score: 4
Natty: 4
Report link

Thanks! Works great! I guess whatever you specify in WithName will work.

Reasons:
  • Blacklisted phrase (0.5): Thanks
  • Low length (1.5):
  • No code block (0.5):
  • Single line (0.5):
  • Low reputation (1):
Posted by: Michael Harnowski

79249203

Date: 2024-12-03 21:26:37
Score: 4.5
Natty: 5
Report link

I'm a programmer and I want to create a project and at the same time I want to open the door on my cell phone، so I want to ask you what I need.

Reasons:
  • Blacklisted phrase (0.5): I need
  • RegEx Blacklisted phrase (1): I want
  • Low length (1):
  • No code block (0.5):
  • Single line (0.5):
  • Low reputation (1):
Posted by: Rebaz Abarzani

79249170

Date: 2024-12-03 21:06:31
Score: 8.5 🚩
Natty: 6.5
Report link

@Sathya, could you please share the solution? New to App Script (started today).

Reasons:
  • RegEx Blacklisted phrase (2.5): could you please share the solution
  • Low length (1.5):
  • No code block (0.5):
  • Contains question mark (0.5):
  • User mentioned (1): @Sathya
  • Single line (0.5):
  • Looks like a comment (1):
  • Low reputation (1):
Posted by: js759

79249165

Date: 2024-12-03 21:04:30
Score: 5
Natty:
Report link

I have the same issue

==> Downloading https://ghcr.io/v2/homebrew/portable-ruby/portable-ruby/blobs/sha256:720d4fb1164e600f787d656019a8e46314dc38e1885f4a8df809c180acf5e7b3 ################################################################################################# 100.0% ==> Pouring portable-ruby-3.3.6.el_capitan.bottle.tar.gz /usr/local/Homebrew/Library/Homebrew/cmd/vendor-install.sh: line 227: 11111 Killed: 9 "./${VENDOR_VERSION}/bin/${VENDOR_NAME}" --version > /dev/null Error: Failed to install ruby 3.3.6! Error: Failed to install Homebrew Portable Ruby (and your system version is too old)!

I'm running MacOS 15.1.1 6 Core Intel Core Processor

Reasons:
  • Blacklisted phrase (1): I have the same issue
  • Long answer (-0.5):
  • No code block (0.5):
  • Me too answer (2.5): I have the same issue
  • Filler text (0.5): #################################################################################################
  • Low reputation (1):
Posted by: Skills Tech Talk

79249154

Date: 2024-12-03 21:01:29
Score: 6.5
Natty: 7.5
Report link

where can i find this CANoeILNLVector.dll file?

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): where can i find this CAN
  • Low reputation (1):
Posted by: user28614066

79249104

Date: 2024-12-03 20:39:22
Score: 5
Natty: 8
Report link

What if claim follows a non-standard distribution? How can I still employ linear models for the parameters of this non-standard distribution, avoiding naming them?

Reasons:
  • Blacklisted phrase (0.5): How can I
  • Low length (1):
  • Has code block (-0.5):
  • Ends in question mark (2):
  • Single line (0.5):
  • Starts with a question (0.5): What if
  • Low reputation (1):
Posted by: AlBradley

79249044

Date: 2024-12-03 20:15:15
Score: 13.5
Natty: 7.5
Report link

I'm having the same problem. Did you manage to solve it?

Reasons:
  • Blacklisted phrase (1): I'm having the same problem
  • RegEx Blacklisted phrase (3): Did you manage to solve it
  • RegEx Blacklisted phrase (1.5): solve it?
  • Low length (1.5):
  • No code block (0.5):
  • Me too answer (2.5): I'm having the same problem
  • Ends in question mark (2):
  • Single line (0.5):
  • Low reputation (1):
Posted by: Samuel Ferreira

79249032

Date: 2024-12-03 20:11:13
Score: 4.5
Natty:
Report link

This is not an answer, but a complaint. I'm new to argparse, but a colleague was using it so, I started using it. I just wasted an HOUR trying to figure out why a bool flag wasn't working. This needs to have some kind of warning emitted if you try to just create a type bool and expect it to work OOTB

Reasons:
  • Blacklisted phrase (1): not an answer
  • RegEx Blacklisted phrase (1.5): I'm new
  • Low length (0.5):
  • No code block (0.5):
  • Single line (0.5):
  • Low reputation (0.5):
Posted by: user3735204

79249027

Date: 2024-12-03 20:08:08
Score: 6 🚩
Natty:
Report link

I have the same error with command

pod spec lint

When I run my project with Xcode or with command

npx react-native run-android

all it works.

Reasons:
  • RegEx Blacklisted phrase (1): I have the same error
  • Low length (1):
  • No code block (0.5):
  • Me too answer (2.5): I have the same error
  • Low reputation (1):
Posted by: Diego Albini

79249012

Date: 2024-12-03 20:02:05
Score: 4
Natty: 4.5
Report link

why don't you create an Enum ? it's a lot cleaner than this. You get a drop list with 3 lines of code on the view.

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 don't you
  • Low reputation (1):
Posted by: Tino

79248990

Date: 2024-12-03 19:50:00
Score: 4
Natty:
Report link

resolve npm install @reduxjs/toolkit@^1.9.6

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: MVS IT Giants

79248973

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

#2SAT is in P

this paper is on IPFS - this is the http-gateway:

https://gridsat.eth.limo/rc_images/abdelwahab_003_088_8_1.pdf

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

79248972

Date: 2024-12-03 19:42:57
Score: 4
Natty:
Report link

Turns out I needed to create an HTML folder in the root of my project and drop the vacuum.ogg file in that folder.

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

79248957

Date: 2024-12-03 19:36:54
Score: 5
Natty:
Report link

Well. But that to do in case i do not want to press so many buttons ? I just want to press Shift + Insert like i did a lot of years. Also how to use f1, f2, f3 buttons by default without necessary to press Fn + ESC first ?

I use satechi keyboard with Linux mint.

Please advice

Reasons:
  • RegEx Blacklisted phrase (2.5): Please advice
  • Low length (0.5):
  • No code block (0.5):
  • Contains question mark (0.5):
  • Low reputation (1):
Posted by: ynasida

79248954

Date: 2024-12-03 19:36:53
Score: 6 🚩
Natty: 5
Report link

I tried the one line command Get-ChildItem "." | ForEach-Object { Compress-Archive -path $.Name -destinationPath "$($.Name).zip"} it works however it keeps the previous extension as well e.g if the filename is abc.csv it is now converted to abc.csv.zip is there anyway to just get abc.zip?

Thanks!

Reasons:
  • Blacklisted phrase (0.5): Thanks
  • Blacklisted phrase (1): is there any
  • Low length (0.5):
  • No code block (0.5):
  • Ends in question mark (2):
  • Unregistered user (0.5):
  • Low reputation (1):
Posted by: Rahim S

79248904

Date: 2024-12-03 19:20:48
Score: 10 🚩
Natty: 5.5
Report link

Did you manage to find a solution on this one? I have the exact same issue that
@9_Dave_9 described.

Reasons:
  • RegEx Blacklisted phrase (3): Did you manage to find a solution
  • Low length (1):
  • No code block (0.5):
  • Me too answer (2.5): I have the exact same issue
  • Contains question mark (0.5):
  • User mentioned (1): @9_Dave_9
  • Starts with a question (0.5): Did you
  • Low reputation (1):
Posted by: Nikos Apostolopoulos

79248854

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

Thank you, the extra taking of one number of the seeded sequence explains the puzzle :-)

Reasons:
  • Blacklisted phrase (0.5): Thank you
  • Low length (1.5):
  • No code block (0.5):
  • Self-answer (0.5):
  • Single line (0.5):
  • Low reputation (0.5):
Posted by: JohnDoe

79248802

Date: 2024-12-03 18:33:34
Score: 5
Natty: 4
Report link

No‎ ‎ ‎ ‎ ‎ ‎ ‎ ‎ ‎ ‎ ‎ ‎ ‎ ‎ ‎ ‎ ‎ ‎ ‎ ‎ ‎ ‎ ‎ ‎ ‎ ‎ ‎ ‎ ‎ ‎ ‎ ‎ ‎ ‎ ‎ ‎ ‎ ‎ ‎ ‎You can't ‎ ‎ ‎ ‎ ‎ ‎ ‎ ‎ ‎ ‎ ‎ ‎ ‎ ‎ ‎ ‎ ‎ ‎ ‎ ‎ ‎ ‎ ‎ ‎ ‎ ‎ ‎ ‎ ‎ ‎ ‎ ‎ ‎ ‎ ‎ ‎ ‎ ‎ ‎ ‎ ‎

Reasons:
  • Low length (1):
  • No code block (0.5):
  • Unregistered user (0.5):
  • Single line (0.5):
  • No latin characters (0.5):
  • Low entropy (1):
  • Low reputation (1):
Posted by: Randomdude

79248699

Date: 2024-12-03 17:56:22
Score: 6.5 🚩
Natty: 5.5
Report link

did you happend to find the solution ?

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
  • Low reputation (1):
Posted by: Alex Suto

79248427

Date: 2024-12-03 16:32:56
Score: 11 🚩
Natty: 6.5
Report link

could you solve this issue? I'm having the same problem when using "as the user viewing the report" when connecting the the data source.

Reasons:
  • Blacklisted phrase (1): I'm having the same problem
  • Blacklisted phrase (2): could you solve
  • RegEx Blacklisted phrase (1.5): solve this issue?
  • Low length (1):
  • No code block (0.5):
  • Me too answer (2.5): I'm having the same problem
  • Contains question mark (0.5):
  • Unregistered user (0.5):
  • Single line (0.5):
  • Low reputation (1):
Posted by: Holster

79248261

Date: 2024-12-03 15:49:41
Score: 4.5
Natty:
Report link

Check this link out, Migrating data from MS Access(*.mdb; *.accdb) to SQLite and other SQL types

You'll need to install Access Database Engine befor doing so Microsoft Access Database Engine 2016 Redistributable. if you got error installing the Access Database Engine like the attached image, then just use cmd to install it, as follow:

  1. open cmd, and navigate to folder dir that has the .exe file.
  2. And run AccessDatabaseEngine.exe /quiet to install it.

enter image description here

Reasons:
  • Blacklisted phrase (1): enter image description here
  • Blacklisted phrase (1): this link
  • RegEx Blacklisted phrase (1): Check this link
  • No code block (0.5):
  • Low reputation (1):
Posted by: Jaffer Al-Delphi

79248234

Date: 2024-12-03 15:41:38
Score: 4.5
Natty:
Report link

this one works great

return response()->json(['message' => 'Logged in successfully']) ->cookie('access_token', $token, $expiration, '/', null, true, true, false);

whats the most secure way to pass tokens?

Reasons:
  • Low length (0.5):
  • No code block (0.5):
  • Ends in question mark (2):
  • Self-answer (0.5):
  • Low reputation (1):
Posted by: Rakib ahsan

79248133

Date: 2024-12-03 15:10:28
Score: 5
Natty: 5.5
Report link

Have you found a solution? I have currently the same problem. When create the build and open it on my external device, the requests takes soooo long. Internet ist stable and on the simulator its fast as usually... Have no clue...

Reasons:
  • RegEx Blacklisted phrase (2.5): Have you found a solution
  • Low length (0.5):
  • No code block (0.5):
  • Contains question mark (0.5):
  • Low reputation (1):
Posted by: max

79248117

Date: 2024-12-03 15:07:26
Score: 8 🚩
Natty:
Report link

could you provide more details of issue?

Reasons:
  • RegEx Blacklisted phrase (2.5): could you provide
  • Low length (1.5):
  • No code block (0.5):
  • Ends in question mark (2):
  • Single line (0.5):
  • Low reputation (1):
Posted by: Cesar

79248100

Date: 2024-12-03 15:03:24
Score: 4.5
Natty:
Report link

I just had to install the newest .NET SDK link to download .NET 9.0

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

79248082

Date: 2024-12-03 14:55:21
Score: 5
Natty: 4.5
Report link

To follow up with this, is there a way to add a sorting solution/functionality to this?

For example if you have thousands of orders and want to sort by the order count, would that be possible by adjusting the code?

Reasons:
  • Blacklisted phrase (1): is there a way
  • Low length (0.5):
  • No code block (0.5):
  • Ends in question mark (2):
  • Low reputation (1):
Posted by: Texture Heaven

79248074

Date: 2024-12-03 14:52:20
Score: 5
Natty:
Report link

I am getting the same issue! Here, I am trying to read the generated excel with python using pandas and I am getting the following error

ValueError: Unable to read workbook: could not read stylesheet from ./excelize_generated.xlsx. This is most probably because the workbook source files contain some invalid XML. Please see the exception for more details.

When I open file manually using excel it works, when I save file and retry pandas works... It's a bit of strange cause when I save file again, I can notice file size is changing from 4Mb to 2Mb...

Reasons:
  • Blacklisted phrase (1): I am trying to
  • RegEx Blacklisted phrase (1): I am getting the following error
  • Long answer (-0.5):
  • No code block (0.5):
  • Me too answer (2.5): I am getting the same issue
  • Low reputation (0.5):
Posted by: Khalil Mejdi

79248056

Date: 2024-12-03 14:47:18
Score: 4.5
Natty: 4.5
Report link

Use enterkeyhint attribute for this: https://developer.mozilla.org/en-US/docs/Web/HTML/Global_attributes/enterkeyhint

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

79248046

Date: 2024-12-03 14:45:16
Score: 6 🚩
Natty: 6
Report link

If I want to assign a color to a specific person ('[email protected]'), how can I achieve this:

{ "$schema": "https://developer.microsoft.com/json-schemas/sp/v2/column-formatting.schema.json",

"elmType": "div",

"txtContent": "@currentField.title",

"style": { "color": "=if('[email protected]' == @currentField.email, 'red', 'blue')"

} }

The above code doesn't work. Is it even possible to query a specific person?

Reasons:
  • Blacklisted phrase (0.5): how can I
  • RegEx Blacklisted phrase (1): I want
  • No code block (0.5):
  • Ends in question mark (2):
  • Looks like a comment (1):
  • Low reputation (1):
Posted by: SQLFRAGE

79248030

Date: 2024-12-03 14:41:15
Score: 5
Natty: 5
Report link

Are you getting an error "(net::ERR_UNKNOWN_URL_SCHEME)" when you try opening it from an embedded captive portal browser?

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

79248025

Date: 2024-12-03 14:41:14
Score: 8 🚩
Natty: 6
Report link

It seems to me that either I don't understand at what stage this code should be executed, or this answer is no longer valid. I already tried this at class MyAppConfig(AppConfig) as well as in migrations. @gasman, can you please explain when and where it should be executed?

Reasons:
  • RegEx Blacklisted phrase (2.5): can you please explain
  • Low length (0.5):
  • Has code block (-0.5):
  • Ends in question mark (2):
  • User mentioned (1): @gasman
  • Single line (0.5):
  • Looks like a comment (1):
  • Low reputation (1):
Posted by: totuk

79247865

Date: 2024-12-03 13:53:59
Score: 5.5
Natty:
Report link

is running pgbouncer inside docker can cause to get lower tps?

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

79247853

Date: 2024-12-03 13:50:57
Score: 4
Natty: 4.5
Report link

Wow that was driving me nuts! Thank you

Reasons:
  • Blacklisted phrase (0.5): Thank you
  • Low length (2):
  • No code block (0.5):
  • Single line (0.5):
  • Low reputation (0.5):
Posted by: VineFreeman

79247801

Date: 2024-12-03 13:37:53
Score: 5
Natty: 5
Report link

what is the current state?I am looking for related content about how to use QEMU to simulate the error of memory strips, such as ECC error/memory particles error Under Chip Bank Row Col.Is it more convenient to write "memory error detection" software based on this platform?For example, Passmark related memory error address analysis?This seems to involve CPU simulation.I learned that there is a paper called MH-QEMU MEMIRY-State-AWARE FAULT Inject Platform may be a bit connected.

Reasons:
  • Blacklisted phrase (2): I am looking for
  • No code block (0.5):
  • Contains question mark (0.5):
  • Single line (0.5):
  • Starts with a question (0.5): what is the
  • Low reputation (1):
Posted by: HuaLi

79247770

Date: 2024-12-03 13:26:49
Score: 7 🚩
Natty: 6.5
Report link

I'm currently undertaking the same course. I'm confused about line 5. Can someone please explain what f and 2f do on this line? Is it a variable I use in calculating the tip?

Reasons:
  • RegEx Blacklisted phrase (2.5): Can someone please explain what
  • Low length (1):
  • No code block (0.5):
  • Ends in question mark (2):
  • Low reputation (1):
Posted by: David Brown

79247677

Date: 2024-12-03 12:55:38
Score: 6.5 🚩
Natty: 6
Report link

here yawl go took me 3 min to make https://github.com/CCwithAi/MVP-YouTube-Transcript-Scraper

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

79247605

Date: 2024-12-03 12:33:32
Score: 5
Natty: 4
Report link

for the last 3 years, I am looking for this. It is very surprising still there is no feature/development/application like that in 2024. Do you think can it be implemented easily with some coding ? (i don't want to juggle with windows handles)

Reasons:
  • Blacklisted phrase (2): I am looking for
  • Low length (0.5):
  • No code block (0.5):
  • Contains question mark (0.5):
  • Single line (0.5):
  • Low reputation (1):
Posted by: Yuuyake

79247595

Date: 2024-12-03 12:30:31
Score: 5
Natty: 5
Report link

Depois de muito pesquisar descobrir que a solução é bastante simples. Só é necessário liberar o ip da sua maquina no firewall.

Reasons:
  • Blacklisted phrase (2): solução
  • Low length (1):
  • No code block (0.5):
  • Single line (0.5):
  • Low reputation (1):
Posted by: user28606581

79247458

Date: 2024-12-03 11:52:19
Score: 7 🚩
Natty: 6
Report link

But the issue still exists for SSR (statically rendered) pages. Anyone knows a solution?

Reasons:
  • Blacklisted phrase (1): Anyone knows
  • Low length (1.5):
  • No code block (0.5):
  • Ends in question mark (2):
  • Unregistered user (0.5):
  • Single line (0.5):
  • Low reputation (1):
Posted by: James

79247325

Date: 2024-12-03 11:10:06
Score: 7 🚩
Natty: 4
Report link

Can i get detailed steps on how to integrate the apk. I am closely following the official build guide for pixel 8a but i am stuck. Without this apk i have successfully build and flashed the OS into my device

I have mentioned MyApp in handheld_product.mk and my android.mk is as follow

LOCAL_PATH := $(call my-dir)
include $(CLEAR_VARS)
LOCAL_MODULE_TAGS := optional
LOCAL_MODULE := MDMApk
LOCAL_MODULE_CLASS := APPS
LOCAL_SRC_FILES := MDMApk.apk
LOCAL_CERTIFICATE := platform
LOCAL_MODULE_SUFFIX := $(COMMON_ANDROID_PACKAGE_SUFFIX)
include $(BUILD_PREBUILT)

I want to know that do i need to do something more like to sign this apk with grapeheneOS or anything else. Please tell me.

Reasons:
  • Blacklisted phrase (0.5): i need
  • Blacklisted phrase (1): I want to know
  • RegEx Blacklisted phrase (2.5): Please tell me
  • RegEx Blacklisted phrase (1.5): i am stuck
  • RegEx Blacklisted phrase (1): I want
  • Long answer (-0.5):
  • Has code block (-0.5):
  • Starts with a question (0.5): Can i
  • Low reputation (1):
Posted by: Niraj Kumar

79247311

Date: 2024-12-03 11:07:05
Score: 4
Natty: 4.5
Report link

check current attributes, it should be helpful https://api.rubyonrails.org/v8.0.0/classes/ActiveSupport/CurrentAttributes.html

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

79247305

Date: 2024-12-03 11:06:04
Score: 4
Natty: 4.5
Report link

Check current attributes' docs. it will help you https://api.rubyonrails.org/v8.0.0/classes/ActiveSupport/CurrentAttributes.html

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

79247222

Date: 2024-12-03 10:37:55
Score: 9.5
Natty: 7
Report link

I have ran into the same issue. I found out that this has something to do with dynamic images. Did you solve that problem?

Reasons:
  • RegEx Blacklisted phrase (3): Did you solve that problem
  • RegEx Blacklisted phrase (1.5): solve that problem?
  • Low length (1):
  • No code block (0.5):
  • Ends in question mark (2):
  • Single line (0.5):
  • Low reputation (1):
Posted by: Tomáš Lukáč

79247101

Date: 2024-12-03 10:06:46
Score: 8
Natty: 7
Report link

We have the same case, we would like pull requests opened by Snyk to automatically merge without any intervention, did you manage to achieve that?

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

79247097

Date: 2024-12-03 10:06:45
Score: 4.5
Natty:
Report link

Finaly i got it! https://confluence.atlassian.com/bitbucketserverkb/how-to-enclose-file-to-pull-request-comment-via-rest-api-952073003.html If someone need, welcome

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