79117159

Date: 2024-10-23 09:03:01
Score: 6 🚩
Natty: 5.5
Report link

did you have any response for yo issue ?

Reasons:
  • 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 have any
  • Low reputation (1):
Posted by: Nicolas Bellot

79117155

Date: 2024-10-23 09:01:00
Score: 4.5
Natty:
Report link

Delete var/cache/* and it will work

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

79117059

Date: 2024-10-23 08:31:51
Score: 6.5 🚩
Natty: 5.5
Report link

excuse me, if I want resample by ISO week, is it work if setting 'W-MON'?

Reasons:
  • RegEx Blacklisted phrase (1): I want
  • Low length (1.5):
  • No code block (0.5):
  • Ends in question mark (2):
  • Single line (0.5):
  • Low reputation (1):
Posted by: user27296211

79117040

Date: 2024-10-23 08:24:47
Score: 9 🚩
Natty: 4.5
Report link

Did you fix your problem? I am running into the same issue.

Reasons:
  • RegEx Blacklisted phrase (3): Did you fix your problem
  • RegEx Blacklisted phrase (1.5): fix your problem?
  • 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 you
  • Low reputation (1):
Posted by: Yuan Zeng

79116965

Date: 2024-10-23 08:02:39
Score: 6.5 🚩
Natty: 4
Report link

I'm also experiencing some unusual behavior in my Lambda function. I've included a mime.types file to help detect the correct MIME types, but for certain files, the MIME type is being detected incorrectly. For example, a PPT file is being recognized as a application/msword hence DOC file was detected. This issue doesn't occur locally; everything works correctly with the same configuration(python version, library version except the os). Does anyone have idea why this thing is happenning?

Reasons:
  • RegEx Blacklisted phrase (3): Does anyone have
  • No code block (0.5):
  • Ends in question mark (2):
  • Low reputation (1):
Posted by: Yash Nigam

79116933

Date: 2024-10-23 07:54:35
Score: 7 🚩
Natty: 5.5
Report link

Мне ничего не помогло, уже несколько дней мучаюсь с этой проблемой!

Reasons:
  • Low length (1.5):
  • No code block (0.5):
  • Single line (0.5):
  • No latin characters (3.5):
  • Low reputation (1):
Posted by: Яро Князь

79116856

Date: 2024-10-23 07:44:30
Score: 13 🚩
Natty: 4.5
Report link

hey i am also facing the same issue , if you can help me with the same

Reasons:
  • Blacklisted phrase (1): i am also facing the same issue
  • Blacklisted phrase (1): help me
  • RegEx Blacklisted phrase (3): you can help me
  • RegEx Blacklisted phrase (2): hey i am
  • 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: Saurabh verma

79116797

Date: 2024-10-23 07:28:24
Score: 4
Natty:
Report link

Если сильно захотеть перегрузить оператор, можно сделать препроцессор для аннотации и заменять выражения a + b, a += b a.add(b), a = a.add(b) А также написать плагин для idea чтобы убрать error предупреждения в этих случаях. Вот пример: https://github.com/AxeFu/OperatorOverloadingJava

Reasons:
  • Low length (0.5):
  • No code block (0.5):
  • No latin characters (2):
  • Low reputation (1):
Posted by: AxePlay

79116723

Date: 2024-10-23 07:03:17
Score: 4
Natty:
Report link

The answer above by @A5C1D2H2I1M1N2O1R2T1 is not entirely correct due to index order in the upper.tri assignment. The answer by @Valentin_Stefan is, using the outer product. You will only see this when using four elements.

df <- data.frame(list(
    "Group" = c("A", "B", "C", "D"),
    "v.1" =   c( 1,   1,   1,   3 ),
    "v.2" =   c( 1,   1,   1,   2 )
    ))

m <- matrix(0, nrow = nrow(df), ncol = nrow(df),
            dimnames=list(df$Group, df$Group))

m[lower.tri(m)] <- combn(df$v.1, 2, FUN=diff)
m[upper.tri(m)] <- combn(df$v.2, 2, FUN=diff)
m
#   A B C D
# A 0 0 0 0
# B 0 0 1 1
# C 0 0 0 1
# D 2 2 2 0

(see the m[2,3] element which should be at m[1,4] instead)

I would transpose to correct; maybe there is an easier way?

n <- matrix(0, nrow = nrow(df), ncol = nrow(df),
            dimnames=list(df$Group, df$Group))

n[lower.tri(n)] <- combn(df$v.2, 2, FUN=diff)
n <- t(n)
n[lower.tri(n)] <- combn(df$v.1, 2, FUN=diff)

Reasons:
  • Long answer (-0.5):
  • Has code block (-0.5):
  • Ends in question mark (2):
  • User mentioned (1): @A5C1D2H2I1M1N2O1R2T1
  • Looks like a comment (1):
  • Low reputation (1):
Posted by: Falk Mielke

79116713

Date: 2024-10-23 07:02:16
Score: 4
Natty:
Report link

Many thanks to @Giovanni - a nice obvious [in retrospect] solution... and tested in Firefox, Chromium, Edge, and Polypane.

pen updated....

Reasons:
  • Blacklisted phrase (0.5): thanks
  • Low length (1):
  • No code block (0.5):
  • User mentioned (1): @Giovanni
  • Self-answer (0.5):
  • Low reputation (0.5):
Posted by: CodeGorilla

79116706

Date: 2024-10-23 07:00:14
Score: 8.5 🚩
Natty:
Report link

There is no problem in your codes but to check and review please answer these two questions to share the problem with us:

  1. Is there any bean definition for CORS in your code(a class with @Configuration annotation)?
  2. please check with @CrossOrigin without any parameter(just to review and find the reason)

please send a feed back...

Reasons:
  • Blacklisted phrase (1): Is there any
  • RegEx Blacklisted phrase (2.5): please answer
  • RegEx Blacklisted phrase (2.5): please send
  • No code block (0.5):
  • Contains question mark (0.5):
  • User mentioned (1): @Configuration
  • User mentioned (0): @CrossOrigin
  • Low reputation (0.5):
Posted by: ehsan

79116645

Date: 2024-10-23 06:40:09
Score: 4
Natty:
Report link

I used from bat file to run my python code and it executed successfully

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

79116642

Date: 2024-10-23 06:40:08
Score: 8
Natty: 7
Report link

Can I use it without provideIn: 'root' ? Meaning just @Injectable() ?

Reasons:
  • Low length (1.5):
  • No code block (0.5):
  • Ends in question mark (2):
  • User mentioned (1): @Injectable
  • Single line (0.5):
  • Starts with a question (0.5): Can I use it with
  • Looks like a comment (1):
  • Low reputation (1):
Posted by: Yustina

79116601

Date: 2024-10-23 06:24:03
Score: 4.5
Natty: 4
Report link

I wrote an article about how to install gitlab on macos , Please check https://piyushkashyap.com/install-gitlab-macos-docker/

Reasons:
  • RegEx Blacklisted phrase (1): I wrote an article about how to install gitlab on macos , Please
  • Probably link only (1):
  • Low length (1.5):
  • No code block (0.5):
  • Single line (0.5):
Posted by: Piyush Kashyap

79116455

Date: 2024-10-23 05:23:50
Score: 4
Natty:
Report link

I used same solution as mentioned by @Phil and it resolved the issue. commons-lang3-3.17.0 and commons-text-1.11.0.

Reasons:
  • Low length (1):
  • No code block (0.5):
  • User mentioned (1): @Phil
  • Single line (0.5):
  • Low reputation (1):
Posted by: S.Khanna

79116414

Date: 2024-10-23 05:23:50
Score: 5
Natty:
Report link

We have the exact same problem - it Happens on some our PC's but not all. This has only just started happening

Reasons:
  • Low length (1):
  • No code block (0.5):
  • Me too answer (2.5): have the exact same problem
  • Low reputation (1):
Posted by: Ron Schellings

79116404

Date: 2024-10-23 05:22:47
Score: 11 🚩
Natty:
Report link

I also want to merge DEM with different resolutions. Were you able to solve this?

Reasons:
  • Blacklisted phrase (1): you able to solve
  • RegEx Blacklisted phrase (1.5): solve this?
  • 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: user22376918

79116403

Date: 2024-10-23 05:22:47
Score: 5
Natty:
Report link

How did you manage to screw up such a simple task? List / array indices start at 0, so if you reach array[len(array)] returns an error, while array[len(array)-1] does not. ALSO, if you really wanted to iterate through each element of a list, use the code:

a = [1, 2, 3, 4, 5]
for i in a:
    print(i)
Reasons:
  • RegEx Blacklisted phrase (3): did you manage to
  • Low length (0.5):
  • Has code block (-0.5):
  • Contains question mark (0.5):
  • Starts with a question (0.5): How did you
  • Low reputation (1):
Posted by: I like ducks

79116394

Date: 2024-10-23 05:22:45
Score: 4
Natty:
Report link

My notebook was located within OneDrive, moved to a local folder :)

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

79116386

Date: 2024-10-23 05:22:44
Score: 4.5
Natty:
Report link

You can check out this step-by-step guide on how to run c# on Windows subsystem for Linux (wsl) and vs code: https://medium.com/@manosatvik/debugging-net-applications-in-linux-on-windows-with-wsl-8fc1e0da911a

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

79116383

Date: 2024-10-23 05:22:39
Score: 11 🚩
Natty:
Report link

yo tenia el mismo problemas y tu solución me funciono. muchas gracias.

Reasons:
  • Blacklisted phrase (2): gracias
  • Blacklisted phrase (3): solución
  • RegEx Blacklisted phrase (2.5): mismo
  • Low length (1.5):
  • No code block (0.5):
  • Single line (0.5):
  • Low reputation (1):
Posted by: Enrique Ruiz

79116373

Date: 2024-10-23 05:22:37
Score: 15 🚩
Natty:
Report link

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

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

79116343

Date: 2024-10-23 05:22:36
Score: 4
Natty:
Report link

I am looking to do something similar. I still see lot of examples in the internet on how to secure APIs for websites with UI. In my usecase I am about to provide APIs for B2B so no user logins using UI. Third parties will call my API and they are requesting that I first authenticate using a Client ID and Secret Key, issue them an access token that is valid only for few minutes, and they would be sending the access token in they request back to me, and I would have to validate it and send proper response back.

Would anyone have any sample git repos or tutorial where this is done? Should I use JWT like how it is done for APIs behind UI based websites or is there any other way?

Thanks,

Reasons:
  • Blacklisted phrase (0.5): Thanks
  • Blacklisted phrase (1): is there any
  • Long answer (-0.5):
  • No code block (0.5):
  • Ends in question mark (2):
  • Low reputation (0.5):
Posted by: Nachi

79116334

Date: 2024-10-23 05:21:33
Score: 5
Natty:
Report link

But how to config app.js To works on IIS And let’s encrypt?

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

79116323

Date: 2024-10-23 05:21:33
Score: 4
Natty:
Report link

Answer mentioned by @Shashika11 and @Martin Niederl worked. Just remove this code exclude = {MongoAutoConfiguration.class} or anything related to it.

Reasons:
  • Low length (1):
  • No code block (0.5):
  • User mentioned (1): @Shashika11
  • User mentioned (0): @Martin
  • Single line (0.5):
  • Low reputation (1):
Posted by: Ashutosh

79116321

Date: 2024-10-23 05:21:33
Score: 5
Natty:
Report link

https://dev.to/michaelcharles/fixing-the-https-developer-certificate-error-in-net-on-macos-sequoia-516h

Follow this article, for fixing the problem

Reasons:
  • Blacklisted phrase (1): this article
  • Probably link only (1):
  • Low length (1.5):
  • No code block (0.5):
  • Low reputation (1):
Posted by: amit

79116301

Date: 2024-10-23 05:21:33
Score: 4.5
Natty:
Report link

I'm having the same issue on my development machine (Ubuntu 24.04), but I don't have the issue with the live production environment (container), which seems to be related to the environment in which the machine is running

Reasons:
  • Low length (0.5):
  • No code block (0.5):
  • Me too answer (2.5): I'm having the same issue
  • Single line (0.5):
  • Low reputation (0.5):
Posted by: Yin Yicao

79116291

Date: 2024-10-23 05:21:32
Score: 5.5
Natty:
Report link

Sorry, since I don't yet have 50 reputation, I can't comment on the best answer (@maxim1000's algorithm), so I'm using the answer section to raise my question.

After trying this algorithm on an example array I came up with, it seems like the algorithm fails to correctly identify the peak in this case.

Consider the following 5x5 array:

    0   1   2   3   4
    ------------------
0 |  9   19  20  31  64
1 |  49  72  71  51  44
2 |  5   141 95  6   7
3 |  35  36  27  28  50
4 |  10  88  29  189 21

First iteration: The algorithm selects column 2 as the middle column and finds the maximum in columns 1, 2, and 3. The maximum is 189 in column 3. As a result, the algorithm proceeds to the right_side + central_column of this subarray, creating a 5x3 subarray and recursively applies the algorithm on it.

    0   1   2
    -----------
0 |  20  31  64
1 |  71  51  44
2 |  95   6   7
3 |  27  28  50
4 |  29  189 21

Second iteration: The algorithm now selects row 2 as the middle row and finds the maximum in rows 1, 2, and 3. The maximum is 95 in row 2. Since the maximum is in the middle row, the algorithm incorrectly considers 95 as the peak, even though it is not the actual peak in the array.

Thanks in advance for any clarification or suggestions!

Reasons:
  • Blacklisted phrase (0.5): Thanks
  • RegEx Blacklisted phrase (1): can't comment
  • RegEx Blacklisted phrase (3): Thanks in advance
  • RegEx Blacklisted phrase (1.5): 50 reputation
  • Long answer (-1):
  • Has code block (-0.5):
  • Low reputation (1):
Posted by: Jacky

79116261

Date: 2024-10-23 02:35:55
Score: 9 🚩
Natty: 5
Report link

en mi caso estoy en una aplicación con React native expo y obtengo el mismo problema. Error:Feching the token failed:java.util.concurrent.Execution:java.io.IOException:FIS_AUTH_ERROR,estoy usando el sdk de expo para recibir las notificaciones

Reasons:
  • Blacklisted phrase (2): tengo
  • Blacklisted phrase (2): estoy
  • RegEx Blacklisted phrase (2.5): mismo
  • Low length (0.5):
  • No code block (0.5):
  • Single line (0.5):
  • Low reputation (1):
Posted by: Mat

79116253

Date: 2024-10-23 02:26:53
Score: 5
Natty:
Report link

I saw a video on YouTube talking about this. You can have a look on it. Check: https://www.youtube.com/watch?v=M1RxKRjdsXw

Reasons:
  • Blacklisted phrase (1): youtube.com
  • Probably link only (1):
  • Low length (1.5):
  • No code block (0.5):
  • Low reputation (1):
Posted by: Gioan Le

79116234

Date: 2024-10-23 02:13:50
Score: 4.5
Natty:
Report link

even after

brew install libomp

still existed.

["dlopen(/Users/yangboz/anaconda3/envs/py312/lib/python3.12/site-packages/xgboost/lib/libxgboost.dylib, 0x0006): Library not loaded: /usr/local/opt/libomp/lib/libomp.dylib\n Referenced from: <249AD9BC-FB29-3FD9-972E-779E2749CFB2> /Users/yangboz/anaconda3/envs/py312/lib/python3.12/site-packages/xgboost/lib/libxgboost.dylib\n Reason: tried: '/usr/local/opt/libomp/lib/libomp.dylib' (no such file), '/System/Volumes/Preboot/Cryptexes/OS/usr/local/opt/libomp/lib/libomp.dylib' (no such file), '/usr/local/opt/libomp/lib/libomp.dylib' (no such file), '/usr/local/lib/libomp.dylib' (no such file), '/usr/lib/libomp.dylib' (no such file, not in dyld cache)"]

Macosx M1 14.6.1

any idea? thanks.

Reasons:
  • Blacklisted phrase (0.5): thanks
  • Blacklisted phrase (1): any idea?
  • Long answer (-0.5):
  • No code block (0.5):
  • Ends in question mark (2):
  • Low reputation (1):
Posted by: Knight.zhou

79116201

Date: 2024-10-23 01:51:43
Score: 6 🚩
Natty:
Report link

I get the same error on two different systems. I also tried the Docker version without any success. Seems to be a bug on their end...

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

79116182

Date: 2024-10-23 01:42:41
Score: 5
Natty: 5
Report link

i think the problem is fee not enought maybe we can add fee i don't know how if someone have the function ?

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

79116167

Date: 2024-10-23 01:29:37
Score: 5
Natty:
Report link

I find it pretty strange and unusual that this is such a complicated task. This is probably the first time in hundreds of open source image deployments where I'm asked to change hard-coded settings inside the image instead of simply mapping ports in docker.

I question if Fusca above actually deployed the service with the settings posted. This doesn't work for me, but neither do the other suggestions here unfortunately. The mariadb container still reports publishing to 3306 in the logs, and redmine fails to connect if i simply map the ports and provide the new port in the redmine env vars.

Unfortunately I happen to run more than one service per machine, and this port happens to already be taken!

I see a red flag like this and immediately start seeking other solutions -- if something this important and simple is missing, what else will i run into later?

Reasons:
  • RegEx Blacklisted phrase (2): doesn't work for me
  • Long answer (-0.5):
  • No code block (0.5):
  • Ends in question mark (2):
  • Low reputation (1):
Posted by: user27940277

79116165

Date: 2024-10-23 01:27:36
Score: 5
Natty: 5
Report link

are you keep getting the sign in prompt? Because now i facing this issue for me. Its work fine to browse the website with https in local, but when try browse the website with https in remote server it keep prompt the sign in alert. Anyway can help? Thanks

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

79116147

Date: 2024-10-23 01:15:33
Score: 4
Natty:
Report link

There is an official implementation from open ai, using react https://github.com/openai/openai-realtime-console

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

79116134

Date: 2024-10-23 01:08:31
Score: 7
Natty: 7.5
Report link

Is there a solution to find a similarity of two vector shapes?

Reasons:
  • Blacklisted phrase (1): Is there a solution
  • Low length (1.5):
  • No code block (0.5):
  • Ends in question mark (2):
  • Single line (0.5):
  • Starts with a question (0.5): Is there a solution to find a
  • Low reputation (1):
Posted by: Hirushi Premarathna

79116122

Date: 2024-10-23 01:00:29
Score: 6
Natty: 7.5
Report link

Please how can I apply the the path c:\app to an azure automation runbook?

Reasons:
  • Blacklisted phrase (0.5): how can I
  • Low length (1.5):
  • No code block (0.5):
  • Ends in question mark (2):
  • Single line (0.5):
  • Low reputation (1):
Posted by: Neo Aragon

79116034

Date: 2024-10-22 23:48:12
Score: 7.5 🚩
Natty: 4.5
Report link

enter image description here

What can I draw line in this area?

Reasons:
  • Probably link only (1):
  • Low length (2):
  • No code block (0.5):
  • Ends in question mark (2):
  • Single line (0.5):
  • Starts with a question (0.5): What can I
  • Low reputation (1):
Posted by: Алексей

79116024

Date: 2024-10-22 23:37:09
Score: 8
Natty: 7.5
Report link

Did you manaage to solve this?

Reasons:
  • RegEx Blacklisted phrase (1.5): solve this?
  • 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: Pablo Motnoya

79116009

Date: 2024-10-22 23:25:07
Score: 4
Natty:
Report link

Please share your full code when you are asking for help with an issue. The supabase docs state that you should not be adding await's inside of the onAuthStateChange as this can cause a dead-lock in the function. https://supabase.com/docs/reference/javascript/auth-onauthstatechange

enter image description here

Reasons:
  • RegEx Blacklisted phrase (2.5): Please share your
  • Probably link only (1):
  • Low length (0.5):
  • Has code block (-0.5):
  • Single line (0.5):
Posted by: Andrew Smith

79115907

Date: 2024-10-22 22:20:52
Score: 6.5 🚩
Natty: 5.5
Report link

About your overarching problem, as far as I know, it is in principle better to split down an AD computation into multiple components (but one must consider the overhead of passing quantities between components). But I'm trying to get more references and prove that. Did you get a better understanding of the problem in the meantime? That would help me a lot.

Reasons:
  • Blacklisted phrase (1): help me
  • RegEx Blacklisted phrase (3): Did you get a
  • No code block (0.5):
  • Contains question mark (0.5):
  • Single line (0.5):
  • Low reputation (1):
Posted by: user27739731

79115802

Date: 2024-10-22 21:40:40
Score: 13.5 🚩
Natty: 6.5
Report link

I have the same question and problem. Did you solve it? Will be very grateful for reply and help

Reasons:
  • Blacklisted phrase (1): I have the same question
  • RegEx Blacklisted phrase (3): Did you solve it
  • RegEx Blacklisted phrase (1.5): solve it?
  • RegEx Blacklisted phrase (2): Will be very grateful
  • Low length (1):
  • No code block (0.5):
  • Me too answer (2.5): I have the same question
  • Contains question mark (0.5):
  • Single line (0.5):
  • Low reputation (1):
Posted by: Javad Khalilov

79115739

Date: 2024-10-22 21:16:34
Score: 4.5
Natty:
Report link

Based on this article, this is a new UITabBarController animation in iOS 18. You can check it in the news app in any simulator running iOS 18.

enter image description here

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: Nikita Tepliakov

79115715

Date: 2024-10-22 21:02:30
Score: 4.5
Natty: 5
Report link

seems setup files is what you need https://testthat.r-lib.org/articles/special-files.html

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

79115684

Date: 2024-10-22 20:47:26
Score: 4
Natty:
Report link

Easy option is to launch Xcode and download the new simulator.

For other options see:

https://developer.apple.com/documentation/xcode/installing-additional-simulator-runtimes

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

79115677

Date: 2024-10-22 20:44:25
Score: 5
Natty:
Report link

What's about your terminal(system) encoding?

enter image description here

This mean your .py file in utf encoding.

Reasons:
  • Probably link only (1):
  • Low length (1.5):
  • No code block (0.5):
  • Contains question mark (0.5):
  • Starts with a question (0.5): What's
  • Low reputation (1):
Posted by: Inbasu

79115618

Date: 2024-10-22 20:19:19
Score: 4
Natty:
Report link

Request failed code500 wat prblm

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

79115573

Date: 2024-10-22 20:06:14
Score: 5.5
Natty: 5.5
Report link

Is possible to add strict csp or nonce header in ssg build which means static generated ?

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

79115482

Date: 2024-10-22 19:24:00
Score: 13 🚩
Natty: 4.5
Report link

Were you able to solved this? I'm facing the same problem in my project

Reasons:
  • Blacklisted phrase (1): m facing the same problem
  • Blacklisted phrase (1): you able to solve
  • RegEx Blacklisted phrase (1.5): solved this?
  • RegEx Blacklisted phrase (3): Were you able
  • Low length (1.5):
  • No code block (0.5):
  • Me too answer (2.5): I'm facing the same problem
  • Contains question mark (0.5):
  • Single line (0.5):
  • Low reputation (1):
Posted by: Juan Diego Ardila Gutiérrez

79115383

Date: 2024-10-22 18:40:48
Score: 4
Natty: 4.5
Report link

A Beginner’s Guide to Redux: Step by Step Explanation with Examples https://www.engineerstutorial.com/blog/technology/react/complete-beginners-guide-to-redux-learn-state-management-from-scratch

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

79115350

Date: 2024-10-22 18:27:44
Score: 4
Natty:
Report link

Answering my own question here. The issue was adjusting the cursor offset based on the font baseline. The default baseline is at the top, so a 0,0 works fine, but others align to the bottom, meaning you need to "push" it back onto the display. Thx!

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

79115333

Date: 2024-10-22 18:22:40
Score: 6.5 🚩
Natty: 5
Report link

I have tried every solution you told me I set the environment variables path --> restart my pc --> open and closed vs code --> but still the command shell is not executing please help me with this.

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

79115305

Date: 2024-10-22 18:13:36
Score: 4.5
Natty:
Report link

from reportlab.lib.pagesizes import letter from reportlab.pdfgen import canvas

def crear_pdf(nombre_archivo): c = canvas.Canvas(nombre_archivo, pagesize=letter) ancho, alto = letter

# Título
c.setFont("Helvetica-Bold", 16)
c.drawString(100, alto - 40, "Cuadros Sinópticos y Tablas")

# Cuadro Sinóptico de Modificadores Directos
c.setFont("Helvetica-Bold", 12)
c.drawString(100, alto - 80, "Cuadro Sinóptico de Modificadores Directos")
c.setFont("Helvetica", 10)
c.drawString(100, alto - 100, "Modificadores Directos")
c.drawString(120, alto - 120, "├── Artículos")
c.drawString(140, alto - 140, "│   ├── el")
c.drawString(140, alto - 160, "│   ├── la")
c.drawString(140, alto - 180, "│   ├── los")
c.drawString(140, alto - 200, "│   └── las")
c.drawString(120, alto - 220, "├── Adjetivos")
c.drawString(140, alto - 240, "│   ├── grande")
c.drawString(140, alto - 260, "│   ├── pequeño")
c.drawString(140, alto - 280, "│   ├── rojo")
c.drawString(140, alto - 300, "│   └── feliz")
c.drawString(120, alto - 320, "└── Posesivos")
c.drawString(140, alto - 340, "    ├── mi")
c.drawString(140, alto - 360, "    ├── tu")
c.drawString(140, alto - 380, "    ├── su")
c.drawString(140, alto - 400, "    └── nuestro")

# Tabla de Modificadores Directos
c.setFont("Helvetica-Bold", 12)
c.drawString(100, alto - 440, "Tabla de Modificadores Directos")
c.setFont("Helvetica", 10)
data = [
    ["Tipo de Modificador Directo", "Modificador", "Ejemplo de Uso"],
    ["Artículo", "el", "El perro ladra."],
    ["Artículo", "la", "La casa es grande."],
    ["Artículo", "los", "Los niños juegan."],
    ["Artículo", "las", "Las flores son bonitas."],
    ["Adjetivo", "grande", "La casa es grande."],
    ["Adjetivo", "pequeño", "El gato es pequeño."],
    ["Adjetivo", "rojo", "El coche es rojo."],
    ["Adjetivo", "feliz", "El niño está feliz."],
    ["Posesivo", "mi", "Mi libro está aquí."],
    ["Posesivo", "tu", "Tu perro es bonito."],
    ["Posesivo", "su", "Su casa es grande."],
    ["Posesivo", "nuestro", "Nuestro coche es nuevo."]
]

x_offset = 100
y_offset = alto - 460
for row in data:
    for col, text in enumerate(row):
        c.drawString(x_offset + col * 150, y_offset, text)
    y_offset -= 20

c.save()

Crear el PDF

crear_pdf("cuadros_sinopticos_y_tablas.pdf")

Reasons:
  • Blacklisted phrase (1): está
  • Blacklisted phrase (2): crear
  • Blacklisted phrase (2): Crear
  • Long answer (-1):
  • Has code block (-0.5):
  • Low reputation (1):
Posted by: Carina Sauretti

79115276

Date: 2024-10-22 18:00:33
Score: 5.5
Natty:
Report link

This code should fix the problem. enter image description here

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

79115255

Date: 2024-10-22 17:51:30
Score: 4
Natty:
Report link

SELECT DISTINCT(Policy) FROM table_name;

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: Bryce D

79115235

Date: 2024-10-22 17:44:28
Score: 12.5
Natty: 7.5
Report link

I have the same problem, have you solved it?

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

79115204

Date: 2024-10-22 17:33:24
Score: 4
Natty: 4.5
Report link

Try disabling RPC validation using isLazy:

https://docs.cosmology.zone/cosmos-kit/provider/chain-provider#islazy

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

79115159

Date: 2024-10-22 17:18:19
Score: 4.5
Natty:
Report link

Is this what you want? You can add index column from power query and then add a DAX column using 'MonthLabel = [Months]& " " & [TeamName]'. This will add separate values for each month for each team in line chart. please see result here

Reasons:
  • Probably link only (1):
  • Low length (0.5):
  • No code block (0.5):
  • Contains question mark (0.5):
  • Single line (0.5):
  • Starts with a question (0.5): Is this
  • Low reputation (1):
Posted by: BananaAI

79115149

Date: 2024-10-22 17:14:16
Score: 6 🚩
Natty:
Report link

I have similar issue. Found this: Project fail to build after update to VS 17.11.5 Look at: https://developercommunity.visualstudio.com/t/Project-fail-to-build-after-update-to-VS/10763457?sort=active&openOnly=false&closedOnly=false&topics=Database+Solution

Hope it helps

Reasons:
  • Blacklisted phrase (1): I have similar
  • Whitelisted phrase (-1): Hope it helps
  • Probably link only (1):
  • Low length (1):
  • No code block (0.5):
  • Me too answer (2.5): I have similar issue
  • Low reputation (1):
Posted by: Felo Vala

79115109

Date: 2024-10-22 17:00:12
Score: 4
Natty:
Report link

Close it. Found the problem and resolved.

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

79115056

Date: 2024-10-22 16:44:08
Score: 4.5
Natty:
Report link

Add @import "primeng/resources/primeng.css" in styles.scss

Reasons:
  • Low length (1.5):
  • No code block (0.5):
  • User mentioned (1): @import
  • Single line (0.5):
  • Low reputation (1):
Posted by: Sergey Ronmanenko

79115033

Date: 2024-10-22 16:32:04
Score: 5.5
Natty: 5
Report link

@snarkwell I know it's an old post, but would you be willing to share that language file you created? I'm looking for something with this simplicity.

Reasons:
  • Low length (1):
  • No code block (0.5):
  • Contains question mark (0.5):
  • User mentioned (1): @snarkwell
  • Single line (0.5):
  • Looks like a comment (1):
  • Low reputation (1):
Posted by: Hector Jimenez

79114962

Date: 2024-10-22 16:10:58
Score: 4.5
Natty:
Report link

Have you binded the secret to the function? If you have, you can share the part of the code where you initialized the secret?

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

79114957

Date: 2024-10-22 16:09:57
Score: 11
Natty: 7.5
Report link

How did you solve this issue ?

Reasons:
  • RegEx Blacklisted phrase (3): did you solve this
  • RegEx Blacklisted phrase (1.5): solve this issue ?
  • Low length (2):
  • No code block (0.5):
  • Ends in question mark (2):
  • Single line (0.5):
  • Starts with a question (0.5): How did you solve this is
  • Low reputation (1):
Posted by: Wesal

79114918

Date: 2024-10-22 15:59:53
Score: 5.5
Natty:
Report link

I am in search of away to hide/show app opened in task bar. I am using .NET MUAI blazor hybride ( windows)

user32.dll is possible the option but i dont know where to put import statement,

pls advise

Reasons:
  • RegEx Blacklisted phrase (2.5): pls advise
  • Low length (0.5):
  • No code block (0.5):
  • User mentioned (1): user32
  • Low reputation (1):
Posted by: Sanong Penmongkol

79114800

Date: 2024-10-22 15:27:43
Score: 4.5
Natty:
Report link

I thought of using static variables for shared data and maximum limit.

I am trying to figure out possible scenarios where this can be used in real time. Please help me for that.

Code :

#include<stdio.h>
#include<pthread.h>

pthread_mutex_t pmLock;
static int shared = 0;
static int limit = 10;

void* printEven(){
    printf("This is printEven() start.\n");
    pthread_mutex_lock(&pmLock);
    while(shared <= limit){
        if(shared%2 == 0){
            printf("Even:%d\n",shared);
            shared++;
        }
        pthread_mutex_unlock(&pmLock);
    }
    printf("This is printEven() End.\n");
}

void* printOdd(){
    printf("This is printOdd() start.\n");
    pthread_mutex_lock(&pmLock);
    while(shared <= limit){
        if(shared%2 != 0){
            printf("Odd:%d\n",shared);
            shared++;
        }
        pthread_mutex_unlock(&pmLock);
    }
    printf("This is printOdd() End.\n");
}

int main(){

    //init mutex lock.
    if (pthread_mutex_init(&pmLock, NULL) != 0) { 
        printf("\n mutex init has failed\n"); 
        return 1; 
    }

    pthread_t thread_ids[2];
    printf("Before Thread\n");

    pthread_create(&thread_ids[0], NULL, printEven, NULL);
    pthread_create(&thread_ids[1], NULL, printOdd, NULL);

    pthread_join(thread_ids[0], NULL);
    pthread_join(thread_ids[1], NULL);

    printf("After Thread\n");

    // destroy mutex
    pthread_mutex_destroy(&pmLock);
    return 0;
}
Reasons:
  • Blacklisted phrase (1): help me
  • Blacklisted phrase (1): I am trying to
  • RegEx Blacklisted phrase (3): Please help me
  • Long answer (-1):
  • Has code block (-0.5):
  • Low reputation (1):
Posted by: msankpal

79114784

Date: 2024-10-22 15:24:41
Score: 5.5
Natty:
Report link

I am also facing the same issue. Using the following libs and MySQL database:

Django==5.1.2

djangorestframework==3.15.2

django-filter==24.3

django-cors-headers==4.5.0

markdown==3.7

mysqlclient==2.2.5

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

79114756

Date: 2024-10-22 15:15:39
Score: 4
Natty:
Report link

This bug seems to be resolved in MySQL 8.0.31. Thanks Oracle

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 (0.5):
Posted by: WormyGels

79114719

Date: 2024-10-22 15:08:35
Score: 5
Natty:
Report link

We are building our own dot net core application for attendance using ZKTeco, can you please guide us the following:

  1. how to connect to the device
  2. how to register staff picture to the device

Thanks

Reasons:
  • Blacklisted phrase (0.5): Thanks
  • RegEx Blacklisted phrase (2.5): can you please guide us
  • Low length (0.5):
  • No code block (0.5):
  • Low reputation (1):
Posted by: Haroon Ahmad

79114657

Date: 2024-10-22 14:58:32
Score: 5.5
Natty:
Report link

Resolved, I needed to add an advanced parameter for the key and value and now it works. enter image description here

Reasons:
  • Blacklisted phrase (0.5): I need
  • 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: M Davie

79114654

Date: 2024-10-22 14:57:32
Score: 4
Natty:
Report link

createDecorationsCollection return interface IEditorDecorationsCollection. You call this method only one time and then work with returned object. https://microsoft.github.io/monaco-editor/typedoc/interfaces/editor.IEditorDecorationsCollection.html

Reasons:
  • Probably link only (1):
  • Low length (1):
  • No code block (0.5):
  • Single line (0.5):
  • Low reputation (1):
Posted by: Александр Галещук

79114617

Date: 2024-10-22 14:44:26
Score: 6.5 🚩
Natty: 5.5
Report link

which versions you ended up using?

Reasons:
  • Low length (2):
  • No code block (0.5):
  • Ends in question mark (2):
  • Single line (0.5):
  • Starts with a question (0.5): which
  • Low reputation (1):
Posted by: Anto Pisciolari

79114605

Date: 2024-10-22 14:42:25
Score: 4
Natty: 5
Report link

I have a similar situation, however the tab names are not sequential or numerical. In fact i extracted them in array format using "=(GET.WORKBOOK(1))&T(NOW())", and similarly to the above query I'd like to use the indirect formula to get cell C2 of each sheet.

I'm using this formula "=LET(A, "'" &A14#& "'!"&"C2", B,BYROW(A,LAMBDA(X,INDIRECT(X))), B)" However I'm getting a value! error. Strangely enough when I workout "A" named range in a separate cell and then refer to that cell using "#" since it would be a dynamic array, it works. However it is not very neat. Any help on this?

Reasons:
  • Blacklisted phrase (1): Any help
  • Long answer (-0.5):
  • No code block (0.5):
  • Ends in question mark (2):
  • Low reputation (1):
Posted by: John

79114568

Date: 2024-10-22 14:37:23
Score: 4.5
Natty: 5.5
Report link

This blows goats. I just want a wireframe draw antialiased, it's completely wasted on my texture draws. stupid d3d wants so many other settings changed between draw calls but AA can't be changed?? is there a good reason for this limitation or just another clown aspect of d3d11?

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

79114474

Date: 2024-10-22 14:18:15
Score: 7.5 🚩
Natty: 5
Report link

Similar issues but with null values. Have you already solved this issue ?

Reasons:
  • RegEx Blacklisted phrase (1.5): solved this issue ?
  • RegEx Blacklisted phrase (1): Similar issue
  • Low length (1.5):
  • No code block (0.5):
  • Ends in question mark (2):
  • Single line (0.5):
  • Low reputation (0.5):
Posted by: YuriiChmil

79114455

Date: 2024-10-22 14:13:14
Score: 11.5
Natty: 7
Report link

Did you find any solution for this? I am facing this same issue.

Reasons:
  • Blacklisted phrase (1.5): any solution
  • RegEx Blacklisted phrase (3): Did you find any solution
  • RegEx Blacklisted phrase (2): any solution for this?
  • Low length (1.5):
  • No code block (0.5):
  • Contains question mark (0.5):
  • Unregistered user (0.5):
  • Single line (0.5):
  • Starts with a question (0.5): Did you find any solution for this
  • Low reputation (1):
Posted by: Abdul

79114398

Date: 2024-10-22 13:58:09
Score: 4.5
Natty:
Report link

Here you go 👇 Congratsssssssssssssssssssss

Congrats

Reasons:
  • Probably link only (1):
  • Low length (1.5):
  • No code block (0.5):
  • Filler text (0.5): sssssssssssssssssssss
  • Low reputation (1):
Posted by: Dark_programmer

79114331

Date: 2024-10-22 13:42:02
Score: 6 🚩
Natty: 5
Report link

Unfortnately, specflow does not have extension for vs code, and we can add it through command but vs code will not be able to run those tests. If i am wrong please let me know how you run those tests.

Reasons:
  • RegEx Blacklisted phrase (2.5): please let me know how you
  • RegEx Blacklisted phrase (1): i am wrong please
  • Low length (0.5):
  • No code block (0.5):
  • Single line (0.5):
  • Low reputation (1):
Posted by: ayushpreenza

79114315

Date: 2024-10-22 13:37:58
Score: 9 🚩
Natty: 4.5
Report link

I'm also having the same issue After updating IDE to the latest version. If anyone finds a solution, post here thanks in advance

Reasons:
  • Blacklisted phrase (0.5): thanks
  • RegEx Blacklisted phrase (3): thanks in advance
  • Low length (1):
  • No code block (0.5):
  • Me too answer (2.5): I'm also having the same issue
  • Single line (0.5):
  • Low reputation (1):
Posted by: prithiviraj

79114306

Date: 2024-10-22 13:34:57
Score: 6
Natty: 7.5
Report link

With update I need ignore record with id, how to validate unique?

Reasons:
  • Blacklisted phrase (0.5): I need
  • Low length (1.5):
  • No code block (0.5):
  • Ends in question mark (2):
  • Single line (0.5):
  • Low reputation (1):
Posted by: Tuan Nguyen Jam NG

79114236

Date: 2024-10-22 13:17:52
Score: 4.5
Natty: 4
Report link

what was the solution for this

Reasons:
  • Low length (2):
  • No code block (0.5):
  • Single line (0.5):
  • Starts with a question (0.5): what was the solution for this
  • Low reputation (1):
Posted by: Ashinsana Mayuminda

79114149

Date: 2024-10-22 12:56:44
Score: 8.5 🚩
Natty: 6.5
Report link

Did you find a solution? I need it too

Reasons:
  • Blacklisted phrase (0.5): I need
  • RegEx Blacklisted phrase (3): Did you find a solution
  • Low length (2):
  • No code block (0.5):
  • Contains question mark (0.5):
  • Single line (0.5):
  • Starts with a question (0.5): Did you find a solution
  • Low reputation (1):
Posted by: ozgurozalp

79114126

Date: 2024-10-22 12:50:42
Score: 13
Natty: 9
Report link

Same issue here, did you find any solution?

Reasons:
  • Blacklisted phrase (1.5): any solution
  • RegEx Blacklisted phrase (3): did you find any solution
  • 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: Antoine Bouché

79114099

Date: 2024-10-22 12:45:38
Score: 11.5 🚩
Natty: 6
Report link

Were you able to solve this issue? Thank you!

Reasons:
  • Blacklisted phrase (0.5): Thank you
  • Blacklisted phrase (1): you able to solve
  • RegEx Blacklisted phrase (1.5): solve this issue?
  • 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: Pranil00

79114018

Date: 2024-10-22 12:24:31
Score: 4.5
Natty:
Report link

In android ladybug when i click add image asset i get this box. And i allows only icons and banners. I am unable to add an ordinary image.

enter image description here

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

79113976

Date: 2024-10-22 12:15:28
Score: 5
Natty: 2
Report link

After exhausting all other options to recover my social media accounts, I was referred to Angelina, a highly skilled professional at META. Her expertise and efficiency were impressive, as she helped me regain access to my account in under 24 hours. If you're facing similar issues with your account, I highly recommend reaching out to her. You can connect with her on Instagram at Angelina_Christopher1738 or via email at [email protected].

Reasons:
  • No code block (0.5):
  • Me too answer (2.5): facing similar issue
  • Unregistered user (0.5):
  • Single line (0.5):
  • Low reputation (1):
Posted by: Jeremy61

79113954

Date: 2024-10-22 12:09:24
Score: 8 🚩
Natty: 6.5
Report link

Can anyone post the mathematical formulas for the kurtosis and the excess kurtosis for population and the bias corrected formulas for both when using a sample?

Reasons:
  • RegEx Blacklisted phrase (2.5): Can anyone post
  • Low length (1):
  • No code block (0.5):
  • Ends in question mark (2):
  • Single line (0.5):
  • Starts with a question (0.5): Can anyone post the
  • Low reputation (1):
Posted by: Nicolai

79113857

Date: 2024-10-22 11:41:15
Score: 7 🚩
Natty: 5.5
Report link

I have a similar requirement. Has this been resolved?

Reasons:
  • RegEx Blacklisted phrase (1.5): resolved?
  • Low length (1.5):
  • No code block (0.5):
  • Ends in question mark (2):
  • Single line (0.5):
  • Low reputation (1):
Posted by: Gopi A

79113833

Date: 2024-10-22 11:36:11
Score: 6 🚩
Natty:
Report link

from an email invitation: If I follow the invitation link, the page shows I am logged in but I get a 404 error.

@ebollmann1 plus @JohnUSCartool @ebollmann1 has invited you to collaborate on the ebollmann1/USCT-V16 repository You can accept or decline this invitation. You can also visit @ebollmann1 to learn a bit more about them.

This invitation will expire in 7 days.

View invitation Note: This invitation was intended for [email protected]. If you were not expecting this invitation, you can ignore this email. If @ebollmann1 is sending you too many emails, you can block them or report abuse.

Getting a 404 error? Make sure you’re signed in as JohnUSCartool.

Button not working? Copy and paste this link into your browser: https://github.com/ebollmann1/USCT-V16/invitations

Reasons:
  • Blacklisted phrase (1): this link
  • RegEx Blacklisted phrase (2): working?
  • Long answer (-0.5):
  • No code block (0.5):
  • Contains question mark (0.5):
  • Unregistered user (0.5):
  • User mentioned (1): @ebollmann1
  • User mentioned (0): @JohnUSCartool
  • User mentioned (0): @ebollmann1
  • User mentioned (0): @ebollmann1
  • User mentioned (0): @ebollmann1
  • Low reputation (1):
Posted by: John Pasemann

79113813

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

sample request how to fetch os user name from Microsoft graph api enter image description here

Reasons:
  • Blacklisted phrase (1): enter image description here
  • Low length (1.5):
  • No code block (0.5):
  • Single line (0.5):
  • Low reputation (1):
Posted by: prashant j

79113808

Date: 2024-10-22 11:30:07
Score: 9.5 🚩
Natty: 6
Report link

did you manage to solve your problem? i Have the same one and i don't how to solve it.

Reasons:
  • Blacklisted phrase (1): how to solve
  • RegEx Blacklisted phrase (3): did you manage to solve your problem
  • RegEx Blacklisted phrase (1.5): solve your problem?
  • Low length (1.5):
  • No code block (0.5):
  • Contains question mark (0.5):
  • Starts with a question (0.5): did you
  • Low reputation (1):
Posted by: Readix

79113784

Date: 2024-10-22 11:23:03
Score: 9.5 🚩
Natty: 5.5
Report link

Did You managed with this problem?

Reasons:
  • RegEx Blacklisted phrase (3): Did You manage
  • 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: Agnieszka

79113704

Date: 2024-10-22 11:00:55
Score: 9.5 🚩
Natty: 6.5
Report link

I do currently face issue using logback within kotlin multiplatform for a desktop application running on linux and your implementation looks helpful. However, can you please share further details about the classes ContextAwareBase(), LoggerContextListener, LifeCycle?

Many thanks in advance, Claudius

Reasons:
  • Blacklisted phrase (0.5): thanks
  • RegEx Blacklisted phrase (2.5): can you please share
  • RegEx Blacklisted phrase (3): thanks in advance
  • Contains signature (1):
  • Low length (0.5):
  • No code block (0.5):
  • Contains question mark (0.5):
  • Low reputation (1):
Posted by: Claudius

79113606

Date: 2024-10-22 10:35:47
Score: 5.5
Natty:
Report link

I am looking for this solution. Is it possible to take the backup of function from global vars before it's overriden from other shared library so that I can call whichever version of function needed in the next steps

Reasons:
  • Blacklisted phrase (2): I am looking for
  • Blacklisted phrase (1): Is it possible to
  • Low length (0.5):
  • No code block (0.5):
  • Single line (0.5):
  • Low reputation (1):
Posted by: Sudarsan Bandi

79113490

Date: 2024-10-22 10:09:38
Score: 9 🚩
Natty: 6
Report link

did you solve the problem? I'm building and app using rhino and in the future I need to implement shinymanager.

Reasons:
  • Blacklisted phrase (0.5): I need
  • RegEx Blacklisted phrase (3): did you solve the problem
  • RegEx Blacklisted phrase (1.5): solve the problem?
  • Low length (1):
  • No code block (0.5):
  • Contains question mark (0.5):
  • Single line (0.5):
  • Starts with a question (0.5): did you solve the
  • Low reputation (1):
Posted by: A.Arrigo

79113447

Date: 2024-10-22 09:57:34
Score: 5.5
Natty:
Report link

Please I’m facing the same issue. My pixel and picture sizes are okay, yet I can’t upload upload to my repo and profile

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

79113441

Date: 2024-10-22 09:55:34
Score: 5
Natty:
Report link

Have you checked your python set-up again and ensured that you have a requirements.txt file?

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

79113439

Date: 2024-10-22 09:54:33
Score: 5
Natty:
Report link

looks like it's possible although tricky https://github.com/amannn/next-intl/issues/1425

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

79113413

Date: 2024-10-22 09:45:30
Score: 4
Natty:
Report link

Disable this filter. Possibly you will need to relaunch Android Studio.

Disable this

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