79450586

Date: 2025-02-19 07:53:54
Score: 4
Natty:
Report link

After a day on it, I just noticed this was only happening when debugging, when in production there is no problem anymore.

I suspect that due to some bugs later in the code, the script was exiting before publishing on the MQTT, although I am curious as to why a breakpoint did not make the eventBus publish?

A good tip in such a situation is to place a good old setTimeout for 2 second to check if it is the cause.

Hope that helps if other people have the same issue.

Reasons:
  • Whitelisted phrase (-1): Hope that helps
  • No code block (0.5):
  • Me too answer (2.5): have the same issue
  • Contains question mark (0.5):
  • Self-answer (0.5):
  • Low reputation (1):
Posted by: Sciid

79450582

Date: 2025-02-19 07:52:54
Score: 4.5
Natty:
Report link

@workspace can help. @workspace will make the whole project as the context and answer your question.

https://code.visualstudio.com/docs/copilot/workspace-context

Reasons:
  • Probably link only (1):
  • Low length (1):
  • No code block (0.5):
  • User mentioned (1): @workspace
  • User mentioned (0): @workspace
  • Low reputation (1):
Posted by: Vincent Guo

79450532

Date: 2025-02-19 07:38:49
Score: 6 🚩
Natty: 5.5
Report link

Did you "Run bundle install to install missing gems" per instructions?

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

79450509

Date: 2025-02-19 07:27:46
Score: 4.5
Natty: 6.5
Report link

jdbc:cassandra://localhost:9042/spring_cassandra?localdatacenter=datacenter1

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

79450422

Date: 2025-02-19 06:55:39
Score: 4
Natty: 5
Report link

What is the smallest integer between -5 and 37

Reasons:
  • Low length (1.5):
  • No code block (0.5):
  • Single line (0.5):
  • Starts with a question (0.5): What is the
  • Low reputation (1):
Posted by: Aaron Rangi-huri-nuku

79450321

Date: 2025-02-19 06:02:28
Score: 4.5
Natty:
Report link

Show

You have the Accept and Content-Type headers both set to application/json

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

79450312

Date: 2025-02-19 05:58:27
Score: 6
Natty: 7
Report link

Why then it is written that s.back() gives the reference to the last character? Rather it should say that s.back() will return the last character.

I am little confuse in this help me out.

Reasons:
  • Blacklisted phrase (1): help me
  • RegEx Blacklisted phrase (2): help me out
  • Low length (0.5):
  • No code block (0.5):
  • Contains question mark (0.5):
  • Starts with a question (0.5): Why the
  • Low reputation (1):
Posted by: 107_Sagar Kumar

79450310

Date: 2025-02-19 05:57:26
Score: 5
Natty: 4.5
Report link

Is the above mentioned steps applicable for any azure devops project TFVC migration between the organisation?

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

79450258

Date: 2025-02-19 05:25:18
Score: 6 🚩
Natty:
Report link

Why don't you change android:tint in ic_brightness_low.xml?

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

79450128

Date: 2025-02-19 03:48:00
Score: 5
Natty: 4.5
Report link

Learn more about HTML CSS Interview Question

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

79450124

Date: 2025-02-19 03:45:59
Score: 5
Natty: 7
Report link

I just want to say thank you for the answer, it help me get to my solution.

Reasons:
  • Blacklisted phrase (0.5): thank you
  • Blacklisted phrase (1): help me
  • Low length (1.5):
  • No code block (0.5):
  • Single line (0.5):
  • Low reputation (1):
Posted by: AKK

79450081

Date: 2025-02-19 02:58:50
Score: 4
Natty:
Report link

Here is with username and password

var localHostElasticURL= "http://localhost:9200";
  string indexFormat = "stackOverFlowTestindex";
  Log.Logger = new LoggerConfiguration()
      .Enrich.FromLogContext()
      .Enrich.WithExceptionDetails()
      .Enrich.WithProperty("Environment", environment)
      .WriteTo.Elasticsearch(new[] { new Uri(localHostElasticURL) },
      options =>
      {
          options.DataStream = new DataStreamName(indexFormat);
          options.TextFormatting = new EcsTextFormatterConfiguration();
          options.BootstrapMethod = BootstrapMethod.Failure;
          options.ConfigureChannel = channelOptions =>
          {
              channelOptions.BufferOptions = new BufferOptions();
          };
      },
      configureTransport =>
      {
            configureTransport.Authentication(new BasicAuthentication("username", "password"));
            configureTransport.ServerCertificateValidationCallback((_, _, _, _) => true);
      })
      .ReadFrom.Configuration(configuration)
      .CreateLogger();

  host.UseSerilog(Log.Logger, true);

but anyone can help with indexFormat like be-logs-{0:yyyy.MM} to always create new index each month and have alias like be-logs.

Reasons:
  • Blacklisted phrase (1): stackOverFlow
  • RegEx Blacklisted phrase (3): anyone can help
  • RegEx Blacklisted phrase (0.5): anyone can help
  • Long answer (-1):
  • Has code block (-0.5):
  • Low reputation (1):
Posted by: Ros Sokcheanith

79450072

Date: 2025-02-19 02:51:48
Score: 4
Natty:
Report link

please provide more details: a) what is the rule to choose the end_date? For the 1st record in your output, why did you choose "9/20/2024" instead of "5/17/2024" which is the date associated with "Seatle" (2nd row from input)? b) why does your output return the 3rd record, with "Dalas" and "Dalas"? considering that for "Las Vegas"(as physical) you didn't create a similar record (LA and LA). I believe that the 3rd record should not exist.

Reasons:
  • RegEx Blacklisted phrase (2.5): please provide
  • No code block (0.5):
  • Contains question mark (0.5):
  • Low reputation (0.5):
Posted by: Idoneus

79450046

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

if ((res = SMTManagerAPIFactory.Initialize(null)) != MTRetCode.MT_RET_OK)
Here res=not fount.The DLLs are 64 bit and they placed in lib folder. Reference is also added.Any other solution?

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

79450041

Date: 2025-02-19 02:19:42
Score: 7 🚩
Natty: 6
Report link

i have same problem missing imports of IonicModule. Fixed add this line in provider's main

importProvidersFrom(IonicModule.forRoot({})),

see official guide:

https://github.com/ionic-team/ionic-angular-standalone-codemods/blob/main/apps/angular/ionic-angular-standalone/src/main.ts

Reasons:
  • Blacklisted phrase (1): i have same problem
  • Probably link only (1):
  • Low length (1):
  • No code block (0.5):
  • Me too answer (2.5): i have same problem
  • Low reputation (1):
Posted by: Franco Emanuel Crisci

79449919

Date: 2025-02-19 00:31:21
Score: 6.5 🚩
Natty: 6
Report link

I came across this article as I am also looking to use automation for Analytics and Data Connectors. https://charbelnemnom.com/update-microsoft-sentinel-analytics-rules/#:~:text=In%20this%20step%2C%20you%20create,the%20Runbook%20into%20Azure%20Automation.

Reasons:
  • Blacklisted phrase (1): this article
  • Blacklisted phrase (2): I am also looking
  • Probably link only (1):
  • Low length (1):
  • No code block (0.5):
  • Low reputation (1):
Posted by: TheDonanator

79449879

Date: 2025-02-18 23:54:12
Score: 6 🚩
Natty: 5.5
Report link

Any idea about this question, please?

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

79449804

Date: 2025-02-18 22:56:00
Score: 5
Natty: 4
Report link

GAY GAY GAY GAY GAY GAY GAY GAYG AYG AYGA YAG A

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

79449751

Date: 2025-02-18 22:28:54
Score: 4
Natty: 4.5
Report link

In integration URI you must use the qualifier_invoke_arn value. https://registry.terraform.io/providers/hashicorp/aws/latest/docs/resources/lambda_function#qualified_invoke_arn-1

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

79449725

Date: 2025-02-18 22:12:50
Score: 4.5
Natty: 5
Report link

A description or link is enough https://rapef.info/code_201/

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

79449709

Date: 2025-02-18 22:02:48
Score: 4.5
Natty:
Report link

Replacing http://java.sun.com with https://jakarta.ee in wsdl_bindings.xml worked as shown in the screenshot below:

enter image description here

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

79449703

Date: 2025-02-18 22:00:46
Score: 9.5 🚩
Natty: 4
Report link

Did you ever figure out a resolution to this? Having the same problem. Tokens randomly showing as "Unregistered" even on my test devices. But doesn't always happen.

Reasons:
  • RegEx Blacklisted phrase (3): Did you ever figure out a
  • Low length (1):
  • No code block (0.5):
  • Me too answer (2.5): Having the same problem
  • Contains question mark (0.5):
  • Single line (0.5):
  • Starts with a question (0.5): Did you
  • Low reputation (1):
Posted by: datasci1987

79449657

Date: 2025-02-18 21:32:40
Score: 5
Natty: 5
Report link

Thank you for updating your post with the answer. Much appreciated :)

Reasons:
  • Blacklisted phrase (0.5): Thank you
  • Blacklisted phrase (1): appreciated
  • Low length (1.5):
  • No code block (0.5):
  • Single line (0.5):
  • Low reputation (1):
Posted by: Muscleflex

79449617

Date: 2025-02-18 21:10:34
Score: 7 🚩
Natty:
Report link

Was this issue resolved, as i am facing the same issue

Reasons:
  • RegEx Blacklisted phrase (0.5): Was this issue resolved
  • Low length (1.5):
  • No code block (0.5):
  • Me too answer (2.5): i am facing the same issue
  • Single line (0.5):
  • Starts with a question (0.5): Was this is
  • Low reputation (1):
Posted by: binoj cherian

79449563

Date: 2025-02-18 20:49:28
Score: 4
Natty: 5.5
Report link

The answer posted by EricI uses both "\n\r" in the regular expression search. Do you need to use both? The other answers recommend searching for just "\n". Thanks

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

79449472

Date: 2025-02-18 20:14:20
Score: 4
Natty:
Report link

Since Joomla 5 you can create an override for the emails. Here is a short description: https://docs.joomla.org/J5.x:Managing_Mail_Template_Layout

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

79449470

Date: 2025-02-18 20:12:19
Score: 6 🚩
Natty:
Report link

If I understand correctly, you made component A depend on component B and now the test for A is failing because of resources needed by component B? Can you just mock component B in A's test?

This was covered before: Angular Unit Testing - Mock Child Component using Stub

or see something like: https://ng-mocks.sudo.eu/api/MockComponent/

Or can you post your test?

Reasons:
  • RegEx Blacklisted phrase (2.5): can you post your
  • Low length (0.5):
  • No code block (0.5):
  • Ends in question mark (2):
  • Low reputation (0.5):
Posted by: Randy

79449460

Date: 2025-02-18 20:07:17
Score: 4
Natty: 5
Report link

Thank you!, i was facing the same problem

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

79449434

Date: 2025-02-18 19:54:14
Score: 15 🚩
Natty: 6.5
Report link

Did you solve this issue? I am having the same issue here. The weird thing is that the change report worked. The server responded with a 202 code, but the device's status never got updated.

Everything else works perfectly, except for the Change Report.

Any help would be appreciated.

Reasons:
  • Blacklisted phrase (1): appreciated
  • Blacklisted phrase (1): Any help
  • RegEx Blacklisted phrase (3): Did you solve this
  • RegEx Blacklisted phrase (1.5): solve this issue?
  • RegEx Blacklisted phrase (3): Any help would be appreciated
  • Low length (0.5):
  • No code block (0.5):
  • Me too answer (2.5): I am having the same issue
  • Contains question mark (0.5):
  • Starts with a question (0.5): Did you solve this is
  • Low reputation (1):
Posted by: Bruno Martins

79449310

Date: 2025-02-18 18:56:00
Score: 4.5
Natty: 4.5
Report link

Here is a screen shot link:

Sort Order Lexicographic Options Setting

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

79449219

Date: 2025-02-18 18:05:48
Score: 5
Natty: 4.5
Report link

For me it turned out to be an exclamation mark (!) in a

element. Rookie error. Anyway, thanks to @atazmin for the suggestion to comment out different sections in the root layout component.

Reasons:
  • Blacklisted phrase (0.5): thanks
  • Blacklisted phrase (1): to comment
  • Low length (0.5):
  • No code block (0.5):
  • User mentioned (1): @atazmin
  • Single line (0.5):
  • Low reputation (1):
Posted by: thetada

79449182

Date: 2025-02-18 17:52:44
Score: 5
Natty: 6
Report link

This article resolved the issue for me:

https://learn.microsoft.com/en-us/dotnet/maui/migration/secure-storage?view=net-maui-9.0

Reasons:
  • Blacklisted phrase (1): This article
  • Probably link only (1):
  • Low length (2):
  • No code block (0.5):
  • Low reputation (0.5):
Posted by: Ron

79449156

Date: 2025-02-18 17:43:41
Score: 4.5
Natty: 5
Report link

https://repost.aws/knowledge-center/backup-assign-resources. The conditions in list of tags is OR'ed

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

79449139

Date: 2025-02-18 17:34:39
Score: 14.5
Natty: 7.5
Report link

@saurabh060 did you find the solution? I am facing the same issue. Please help.

Reasons:
  • RegEx Blacklisted phrase (3): Please help
  • RegEx Blacklisted phrase (3): did you find the solution
  • Low length (1.5):
  • No code block (0.5):
  • Me too answer (2.5): I am facing the same issue
  • Contains question mark (0.5):
  • User mentioned (1): @saurabh060
  • Single line (0.5):
  • Looks like a comment (1):
  • Low reputation (1):
Posted by: Vidhi Jain

79449077

Date: 2025-02-18 17:10:32
Score: 9 🚩
Natty:
Report link

I tried the same example https://github.com/tdlib/td/blob/master/example/cpp/td_example.cpp but below lambda section didn't work in my building at all.

if (o->get_id() == td_api::error::ID) {
      return;
    }

    auto chat = td::move_tl_object_as<td_api::chat>(o);
    offset_order_ = chat->order_;
    offset_chat_id_ = chat->id_;
    update_chats_ = true;

Had you the same problem? How did you fix it?

Reasons:
  • Blacklisted phrase (1): How did you fix
  • RegEx Blacklisted phrase (3): did you fix it
  • RegEx Blacklisted phrase (1.5): fix it?
  • Probably link only (1):
  • Has code block (-0.5):
  • Ends in question mark (2):
  • Low reputation (1):
Posted by: Katya Orlova

79449070

Date: 2025-02-18 17:09:31
Score: 7.5 🚩
Natty: 5.5
Report link

I'm using version 7.4.5.

As for the colors example, I think I understand what is written here in the answer (and in the documentation), but I can't figure out how to do it...

Let's suppose we have a simple "Car" entity with an "id" field and a "color" field. I want to show in the form a combo loaded with some colors added programmatically (red, yellow and so on..)

My question is: "where" should I write the getView().addValidValue() statements? Directly in the entity class "Car"?

Thanks in advance.

Reasons:
  • Blacklisted phrase (0.5): Thanks
  • RegEx Blacklisted phrase (3): Thanks in advance
  • RegEx Blacklisted phrase (1): I want
  • Long answer (-0.5):
  • No code block (0.5):
  • Ends in question mark (2):
  • Low reputation (1):
Posted by: Lorenzo Morini

79449062

Date: 2025-02-18 17:05:30
Score: 7 🚩
Natty: 4
Report link

I came across your LHA Decompressor code a week or two back and have integrated it into my application - it's been quite useful and very much appreciated. What I've found however, is that with some archives, looking at the moment like LHZ ones, during the initial "MakeEntryMap" stage where the code is reading the header, it iterates through all the entries without issue, but continues on even though there's none left and then throws an exception - I've only just started to take a look at it and see if I can figure out how to sort it, but I was wondering if you'd come across this issue? This doesn't happen with all the archives that I have, but with quite a few. It's LH5 encoded, with an extended header (1). If you have any insight, I'd be grateful for any advice - I'm not great with compression code!

Reasons:
  • Blacklisted phrase (1): appreciated
  • Blacklisted phrase (2): was wondering
  • RegEx Blacklisted phrase (2): I'd be grateful
  • Long answer (-0.5):
  • No code block (0.5):
  • Contains question mark (0.5):
  • Single line (0.5):
  • Low reputation (1):
Posted by: Joe 90

79449053

Date: 2025-02-18 17:00:28
Score: 4.5
Natty: 5.5
Report link

hey so help me my compass is just not connecting it just tries and stops after 30 seconds

Reasons:
  • Blacklisted phrase (1): help me
  • Low length (1.5):
  • No code block (0.5):
  • Single line (0.5):
  • Low reputation (1):
Posted by: Aditya Raj

79449052

Date: 2025-02-18 16:59:27
Score: 11.5 🚩
Natty: 6.5
Report link

Did you manage to make the adjustment?. I have the same application, but I have not managed to make it work, I also need it to ask only for the mail on the initial screen.

Can you help me?

Reasons:
  • Blacklisted phrase (1): help me
  • RegEx Blacklisted phrase (3): Did you manage to
  • RegEx Blacklisted phrase (3): Can you help me
  • Low length (0.5):
  • No code block (0.5):
  • Ends in question mark (2):
  • Starts with a question (0.5): Did you
  • Low reputation (1):
Posted by: user29698890

79449047

Date: 2025-02-18 16:58:26
Score: 5.5
Natty:
Report link

Installing lib32z1 library fixed my problem. Thanks @Anon Coward.

Reasons:
  • Blacklisted phrase (0.5): Thanks
  • Low length (1.5):
  • No code block (0.5):
  • User mentioned (1): @Anon
  • Self-answer (0.5):
  • Single line (0.5):
  • Low reputation (1):
Posted by: Smruti Dash

79449039

Date: 2025-02-18 16:54:25
Score: 8.5
Natty: 7.5
Report link

coming in 2025, i need the same thing, did you find a solution for that? Without using powershell?

Reasons:
  • Blacklisted phrase (0.5): i need
  • RegEx Blacklisted phrase (3): did you find a solution
  • Low length (1):
  • No code block (0.5):
  • Ends in question mark (2):
  • Single line (0.5):
  • Low reputation (1):
Posted by: Vic

79448980

Date: 2025-02-18 16:35:19
Score: 7 🚩
Natty:
Report link

Did you find a solution to the problem? I am reading "1.817133" with "uint" when I should be reading 109.

Reasons:
  • RegEx Blacklisted phrase (3): Did you find a solution to 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 find a solution to the
  • Low reputation (1):
Posted by: Bahadir Suzen

79448968

Date: 2025-02-18 16:27:16
Score: 6.5 🚩
Natty:
Report link

também apresenta a mesma mensagem {"error_type": "OAuthException", "code": 400, "error_message": "Invalid platform app"}

alguém consegue auxiliar para solução?

Reasons:
  • Blacklisted phrase (2): solução
  • Low length (1):
  • No code block (0.5):
  • Ends in question mark (2):
  • Low reputation (1):
Posted by: lucas rossini

79448956

Date: 2025-02-18 16:24:15
Score: 4.5
Natty: 4
Report link

OSS Trino, and vendors such as Starburst, usually leverage CPU utilization as the determining fractor to scale up/down instead of memory. This article talks a bit about this approach; https://medium.com/bestsecret-tech/maximize-performance-the-bestsecret-to-scaling-trino-clusters-with-keda-c209efe4a081

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

79448939

Date: 2025-02-18 16:18:13
Score: 5.5
Natty:
Report link

I'm facing same problem.

Can't believe NestJS doesnt have a built-in validator for this.

Checking against database is a very basic stuff. I ended with a solution similar to yours, however, I'm stuck with PUT requests.

When you apply a IsUnique validation in a PUT request, you must 'ignore' the affected row from database check.

For example: The user with id 'some-id' does a PUT to users/some-id With data:

{
  name: 'some-edited-name', // modified data
  email: '[email protected]', // didn't modify email
}

Here the validator will fails because it's detecting '[email protected]' already exists in database. In this case, validator should ignore the id with 'some-id' value. But I don't know how to achieve it :(

I would like to have something like this:

export class UpdateExerciseTypeDto {
  /* identity data */
  @ApiProperty()
  @IsNotEmpty()
  @IsString()
  @IsUnique(ExerciseType, { ignore: 'id' }) // something like this
  name: string;
}
Reasons:
  • Blacklisted phrase (1): :(
  • Blacklisted phrase (1): how to achieve
  • RegEx Blacklisted phrase (1.5): I'm stuck
  • Long answer (-0.5):
  • Has code block (-0.5):
  • Me too answer (2.5): I'm facing same problem
  • Low reputation (0.5):
Posted by: Zalo

79448853

Date: 2025-02-18 16:04:09
Score: 8
Natty: 7.5
Report link

Could you please let me know why you are looking for this feature? or Elaborate on how this would be helpful to you so that I can help you according to that?

Reasons:
  • RegEx Blacklisted phrase (2.5): Could you please let me know
  • 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: user29698206

79448852

Date: 2025-02-18 16:04:08
Score: 4
Natty: 4
Report link

looking for this too i cant find an example

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

79448738

Date: 2025-02-18 15:17:54
Score: 11.5 🚩
Natty:
Report link

I have the same issue with React16+webpack5.94.0; updating the sass-loader doesn't help. Did you find a solution for that?

Reasons:
  • Blacklisted phrase (1): I have the same issue
  • RegEx Blacklisted phrase (3): Did you find a solution
  • Low length (1):
  • No code block (0.5):
  • Me too answer (2.5): I have the same issue
  • Ends in question mark (2):
  • Single line (0.5):
  • Low reputation (1):
Posted by: Aleksey Semenkov

79448648

Date: 2025-02-18 14:49:46
Score: 5.5
Natty: 5.5
Report link

In 2025 is this still the best approach? mat-input doesnt handle this on its own?

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

79448608

Date: 2025-02-18 14:38:42
Score: 11 🚩
Natty:
Report link

Did you manage to solve this problem?

Reasons:
  • RegEx Blacklisted phrase (3): Did you manage to solve this problem
  • RegEx Blacklisted phrase (1.5): solve this problem?
  • 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: ρman

79448576

Date: 2025-02-18 14:27:38
Score: 5
Natty: 4
Report link

free my boys oboma and 21 savige and 22 is in the rong block cus I will make u a swish cheesed man, I'm not into mn btw, just in case you was wondering, I'm a straight man, not woman.... and I am ice I will come for u. ;] I strick again.

Reasons:
  • Blacklisted phrase (2): was wondering
  • Low length (0.5):
  • No code block (0.5):
  • Unregistered user (0.5):
  • Single line (0.5):
  • Low reputation (1):
Posted by: lil johnny

79448521

Date: 2025-02-18 14:10:33
Score: 7 🚩
Natty: 5
Report link

can any one send me this file please

Reasons:
  • RegEx Blacklisted phrase (2.5): can any one send me
  • Low length (2):
  • No code block (0.5):
  • Single line (0.5):
  • Starts with a question (0.5): can any one
  • Low reputation (1):
Posted by: Call Little

79448452

Date: 2025-02-18 13:43:25
Score: 4.5
Natty:
Report link

You can simply add an Empty Constructor or use lombok @NoArgsConstructor

Reasons:
  • Low length (1.5):
  • No code block (0.5):
  • User mentioned (1): @NoArgsConstructor
  • Single line (0.5):
  • Low reputation (1):
Posted by: Hamza Naceur

79448446

Date: 2025-02-18 13:41:23
Score: 7 🚩
Natty: 5.5
Report link

I tried your method and it looks like works. But I found that most of the code in the compiler directory were not counted. For example, the code coverage rate of rustc_abi is 55/86. But rustc_abi actually has more than 2k lines of code.

Is this because the code is not linked into the binary? Is there any solution?

Reasons:
  • Blacklisted phrase (1.5): any solution
  • Blacklisted phrase (1): Is there any
  • RegEx Blacklisted phrase (2): any solution?
  • Has code block (-0.5):
  • Ends in question mark (2):
  • Low reputation (1):
Posted by: Sparrow Li

79448430

Date: 2025-02-18 13:34:20
Score: 6 🚩
Natty: 6.5
Report link

what about 3rd party library like this https://github.com/kumgold/compose-pdf-maker

Reasons:
  • Probably link only (1):
  • Contains signature (1):
  • Low length (2):
  • No code block (0.5):
  • Starts with a question (0.5): what
  • Low reputation (1):
Posted by: GOLD

79448415

Date: 2025-02-18 13:29:19
Score: 4
Natty:
Report link

use this package

https://github.com/Chronos2500/CustomNavigationTitle

👆CustomNavigationTitle

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

79448405

Date: 2025-02-18 13:26:17
Score: 5
Natty: 5
Report link

Question:

Can you do the same using Query instead of Indirect function?

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

79448270

Date: 2025-02-18 12:39:05
Score: 7 🚩
Natty: 4
Report link

Have you found a way to do this? I'm looking for a solution to the exact same scenario

Reasons:
  • RegEx Blacklisted phrase (2.5): Have you found a way to do this
  • Contains signature (1):
  • Low length (1.5):
  • No code block (0.5):
  • Contains question mark (0.5):
  • Single line (0.5):
  • Low reputation (0.5):
Posted by: Sam

79448233

Date: 2025-02-18 12:27:01
Score: 8.5 🚩
Natty:
Report link

Can you share the flutter doctor output?

Reasons:
  • RegEx Blacklisted phrase (2.5): Can you share
  • Low length (1.5):
  • No code block (0.5):
  • Ends in question mark (2):
  • Single line (0.5):
  • Starts with a question (0.5): Can you share the
  • Low reputation (1):
Posted by: Benokan Kafkas

79448202

Date: 2025-02-18 12:13:58
Score: 5.5
Natty: 4.5
Report link

I am also using pkpass and I want to enable NFC to that, can you please provide a way or approach to access this, I am already using a certificate with NFC check, that I have downloaded via developer portal. Can you please confirm that, do we have to approach apple to access NFC, or we can do it only by enabling NFC in pkpass certificate, as for now I have enabled that but now the pass is not even opening.

Reasons:
  • RegEx Blacklisted phrase (2.5): can you please provide
  • RegEx Blacklisted phrase (1): I want
  • No code block (0.5):
  • Single line (0.5):
  • Low reputation (1):
Posted by: Yash Singh

79448201

Date: 2025-02-18 12:13:56
Score: 10 🚩
Natty:
Report link

@Michael ilkanayev, hello. Were you able to solve the problem? I am experiencing a similar issue with React Native 0.76 and Axios/Fetch. In my case, the photos were also loading slowly. I managed to achieve a significant speedup in photo uploads by adding the parameter "maxRedirects: 0" to Axios. As for the Network Error issue, I have only resolved it by resending the photos in case of an error.

Reasons:
  • Blacklisted phrase (1): you able to solve
  • RegEx Blacklisted phrase (1.5): solve the problem?
  • RegEx Blacklisted phrase (3): Were you able
  • No code block (0.5):
  • Contains question mark (0.5):
  • User mentioned (1): @Michael
  • Single line (0.5):
  • Looks like a comment (1):
  • Low reputation (1):
Posted by: JustCurious4

79448154

Date: 2025-02-18 11:54:50
Score: 4
Natty:
Report link

"Lead developer, career guide" is a very good read, focused in the personal abilities, it helped me a lot.

Reasons:
  • Blacklisted phrase (1): helped me a lot
  • Probably link only (1):
  • Low length (1.5):
  • No code block (0.5):
  • Single line (0.5):
  • Starts with a question (0.5): is a
  • High reputation (-1):
Posted by: DanielV

79448150

Date: 2025-02-18 11:52:49
Score: 5.5
Natty: 4
Report link

How did you do to solve this problem? I have it too (when i wanted to build the game(under an executable), it displayed me the exact same error)

Reasons:
  • RegEx Blacklisted phrase (1.5): solve this problem?
  • Low length (1):
  • No code block (0.5):
  • Contains question mark (0.5):
  • Single line (0.5):
  • Starts with a question (0.5): How did you
  • Low reputation (1):
Posted by: Celian Cohen

79448128

Date: 2025-02-18 11:46:47
Score: 4
Natty:
Report link

Thank you very much for both of your replies. I will try out both, but so far both fulfill my requirements. This helps me a lot.

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

79448108

Date: 2025-02-18 11:39:45
Score: 6
Natty: 7
Report link

Can you do so for in-app purchasing as well?

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): Can you
  • Low reputation (1):
Posted by: eugenekoiner

79448099

Date: 2025-02-18 11:36:43
Score: 6.5 🚩
Natty: 6.5
Report link

In Talend can we differentiate the data as different tables like indicating that this data from this file, if we took data from different files into single output file...????

Reasons:
  • Blacklisted phrase (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: Ayesha

79448096

Date: 2025-02-18 11:36:42
Score: 4
Natty:
Report link

The lxml approach doesn't work for a schematron from the ConnectingEurope repository. A validation attempt fails with following message:

Fail: This implementation of ISO Schematron does not work with schemas using the "xslt2" query language.

It seems there are several people searching for such a solution, as also in this request, but there is no answer so far. Is there anyone able/willing to sched some light onto this, maybe with a code example in Python or C/C++?

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

79448070

Date: 2025-02-18 11:29:40
Score: 4.5
Natty:
Report link

thanks for the freaking question.... im here to tell you that,

it is because you ran out of token so you have nothng to give but u still be able to get the token using real money and exchange it to current envoirement or state of living

any reply?

Reasons:
  • Blacklisted phrase (0.5): thanks
  • Low length (0.5):
  • No code block (0.5):
  • Ends in question mark (2):
  • Low reputation (1):
Posted by: Audi Aimin

79448053

Date: 2025-02-18 11:20:37
Score: 10.5 🚩
Natty: 5.5
Report link

I am facing the same issue. Could you share your solution here?

Reasons:
  • RegEx Blacklisted phrase (2.5): Could you share your solution
  • Low length (1.5):
  • No code block (0.5):
  • Me too answer (2.5): I am facing the same issue
  • Ends in question mark (2):
  • Single line (0.5):
  • Low reputation (1):
Posted by: user2552712

79448028

Date: 2025-02-18 11:13:34
Score: 4
Natty:
Report link

I uninstall Docker Desktop and reinstall docker: https://smallsharpsoftwaretools.com/tutorials/use-colima-to-run-docker-containers-on-macos/

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

79447968

Date: 2025-02-18 10:54:29
Score: 4.5
Natty:
Report link

From what I found

  1. Apple Pay and Google Pay are not available in the Sandbox environment.
  2. Apple Pay or Google Pay depends on the customer's browser or device. I was testing it from Google Chrome.
Reasons:
  • Probably link only (1):
  • Low length (1.5):
  • No code block (0.5):
  • Self-answer (0.5):
  • Low reputation (1):
Posted by: Genry Wood

79447922

Date: 2025-02-18 10:42:24
Score: 9 🚩
Natty: 4
Report link

I'm experiencing a functional issue in my application, which is composed of several containers, including 10 instances (called app-java) for scaling purposes. When I perform REST requests which interact with the cache using Hazelcast, all other containers become unavailable and do not respond to requests during the start of the new instance (app-java). Is this behavior normal? If not, could you provide some insights or suggestions on how to address this issue? Is there any configurations to do in hazelcast.xml? thank you in advance.

Reasons:
  • Blacklisted phrase (0.5): thank you
  • Blacklisted phrase (1): Is there any
  • RegEx Blacklisted phrase (2.5): could you provide some
  • RegEx Blacklisted phrase (3): thank you in advance
  • Long answer (-0.5):
  • No code block (0.5):
  • Contains question mark (0.5):
  • Single line (0.5):
  • Low reputation (1):
Posted by: Simo

79447857

Date: 2025-02-18 10:20:17
Score: 7 🚩
Natty: 5
Report link

when any column configured as Dropdown List

Sheet.getPhysicalNumberOfRows()

or

sheet.getLastRowNum() 

gives all the rows number (22463 / 22462) . User provides only 5 rows but due to dropdown list configured on 1st column, it assumes all the rows are available and return blank values for configured dropdown list value.

Is there any solution to read only 5 rows which user has added and skip the rest ?

Reasons:
  • Blacklisted phrase (1.5): any solution
  • Blacklisted phrase (1): Is there any
  • RegEx Blacklisted phrase (2): any solution to read only 5 rows which user has added and skip the rest ?
  • Has code block (-0.5):
  • Ends in question mark (2):
  • Starts with a question (0.5): when any
  • Low reputation (0.5):
Posted by: Chirag Shah

79447800

Date: 2025-02-18 09:58:11
Score: 5
Natty:
Report link

Take a look at this github repo: https://github.com/acaliaro/MauiAppTestNfcAndroid

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

79447793

Date: 2025-02-18 09:56:09
Score: 6.5 🚩
Natty:
Report link

@Cheok Yan Cheng I'm using EntityStringQuery is there any other way

Reasons:
  • Blacklisted phrase (1): is there any
  • Low length (1.5):
  • No code block (0.5):
  • User mentioned (1): @Cheok
  • Single line (0.5):
  • Looks like a comment (1):
  • Low reputation (1):
Posted by: Brian Nguyen

79447786

Date: 2025-02-18 09:53:07
Score: 4.5
Natty:
Report link

I am having to the same problem. I’ve tried everything.

Reasons:
  • Blacklisted phrase (1): ve tried everything
  • Low length (1.5):
  • No code block (0.5):
  • Single line (0.5):
  • Low reputation (1):
Posted by: dvadri

79447769

Date: 2025-02-18 09:46:05
Score: 4.5
Natty: 5
Report link

How can achive like health endpoint similar functionaly with env endpoint. I mean how can we customize the springbootadmin which also enable env endpoints by default like health

Reasons:
  • Blacklisted phrase (1): how can we
  • Low length (1):
  • No code block (0.5):
  • Single line (0.5):
  • Starts with a question (0.5): How can
  • Low reputation (1):
Posted by: vijay choudhary

79447737

Date: 2025-02-18 09:37:02
Score: 4
Natty:
Report link

I am setting up a CDC system that includes Kafka and Debezium to capture changes on the source table (mysql). Then, I will use pyspark to clean the data and finally insert the data into the destination table. Suppose I need to stop the pyspark script for 2 days. When I turn it back on, it will no longer capture the data that appeared during those 2 days. Is there a solution for this issue? `

df = spark.readStream \
    .format("kafka") \
    .option("kafka.bootstrap.servers", kafka_bootstrap_servers) \
    .option("subscribe", topic) \
    .option("startingOffsets", "latest") \
    .option("group.id", consumer_group_id) \
    .load()

`

Reasons:
  • Blacklisted phrase (3): Is there a solution
  • Blacklisted phrase (0.5): I need
  • Long answer (-0.5):
  • Has code block (-0.5):
  • Contains question mark (0.5):
  • Low reputation (1):
Posted by: Hảo Nguyễn Thị Phương

79447705

Date: 2025-02-18 09:26:59
Score: 4
Natty:
Report link

Install the client and check the official site, this documentation:

https://learn.microsoft.com/en-us/entra/identity/managed-identities-azure-resources/how-to-configure-managed-identities?pivots=qs-configure-cli-windows-vm#assign-a-user-assigned-managed-identity-during-the-creation-of-an-azure-vm

Hope this help.

Reasons:
  • Blacklisted phrase (1): this document
  • Whitelisted phrase (-1): Hope this help
  • Probably link only (1):
  • Low length (1.5):
  • No code block (0.5):
  • Low reputation (1):
Posted by: Fernando Maya

79447570

Date: 2025-02-18 08:36:46
Score: 10.5 🚩
Natty: 4.5
Report link

I have a similar problem to this one, but if I try to subscribe the phone number using phone id I get the following error:

Unsupported post request. Object with ID 'ID_HERE' does not exist, cannot be loaded due to missing permissions, or does not support this operation.

So, basically, I've successfully subscribed the app first and I did not receive any webhooks. Then I found your solution and tried to subscribe the phone number, but it seems that it is not working.

When I debug the token in the Access Token Debugger, it is clear that it has both WhatsApp permissions, but this is not the only endpoint for which I get the 'missing permissions' error, which is weird to me. Do you have an idea what could the issue be here? Thanks

Reasons:
  • Blacklisted phrase (0.5): Thanks
  • Blacklisted phrase (1): I have a similar problem
  • RegEx Blacklisted phrase (1): I get the following error
  • RegEx Blacklisted phrase (2.5): Do you have an
  • Long answer (-0.5):
  • No code block (0.5):
  • Me too answer (2.5): I have a similar problem
  • Ends in question mark (2):
  • Low reputation (1):
Posted by: jmes

79447387

Date: 2025-02-18 07:11:26
Score: 5.5
Natty:
Report link

check this video on How to fix vercel/path0/node_modules/.bin/vite: Permission denied "npm run build" exited with 1

[https://www.youtube.com/watch?v=ZjbNT02xE-Q][2]t/pBk3vI8f.png

[1]: [2]: https://www.youtube.com/watch?v=ZjbNT02xE-Q

Reasons:
  • Blacklisted phrase (1): youtube.com
  • Blacklisted phrase (1): check this video
  • Blacklisted phrase (1): this video
  • Low length (0.5):
  • No code block (0.5):
  • Contains question mark (0.5):
  • Low reputation (1):
Posted by: Samwel Monda

79447380

Date: 2025-02-18 07:07:25
Score: 4.5
Natty:
Report link

Here you can try the steps to install

https://github.com/smvinay/Flutter-and-Android-SDK-Setup-on-Ubuntu

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

79447309

Date: 2025-02-18 06:35:17
Score: 4
Natty: 5
Report link

We have an application which server side is AIX and we download and install the application on Windows VM. When I migrate the application on the server side, and try to start the application on windows, the application update gets stuck and the error says this ERROR: org.eclipse.equinox.p2.artifact.repository code=0 Public key not found for 8074478291308066379.

How can I deal with this in this situation?

Reasons:
  • Blacklisted phrase (0.5): How can I
  • No code block (0.5):
  • Ends in question mark (2):
  • Low reputation (1):
Posted by: Amit Patil

79447287

Date: 2025-02-18 06:20:13
Score: 6 🚩
Natty: 4.5
Report link

Is it solved? I've encountered the same problem

Reasons:
  • RegEx Blacklisted phrase (1.5): solved?
  • Low length (1.5):
  • No code block (0.5):
  • Contains question mark (0.5):
  • Single line (0.5):
  • Starts with a question (0.5): Is it solve
  • Low reputation (1):
Posted by: zhihua chen

79447279

Date: 2025-02-18 06:17:11
Score: 8.5 🚩
Natty:
Report link

Has anyone been able to solve this problem of LinkedIn 999 Non-standard. I am also facing the same problem.

Reasons:
  • RegEx Blacklisted phrase (3): Has anyone been
  • Low length (1):
  • No code block (0.5):
  • Me too answer (2.5): I am also facing the same problem
  • Single line (0.5):
  • Low reputation (1):
Posted by: Rewriter Tools

79447261

Date: 2025-02-18 06:04:06
Score: 7.5 🚩
Natty: 5.5
Report link

are you fixed this problem? and how ?

Reasons:
  • RegEx Blacklisted phrase (1.5): fixed this problem?
  • Low length (2):
  • No code block (0.5):
  • Ends in question mark (2):
  • Single line (0.5):
  • Low reputation (1):
Posted by: يوسف محمود

79447234

Date: 2025-02-18 05:46:02
Score: 11.5
Natty: 8
Report link

@tashoyan HI!

After some time, how did you solve this problem?

Reasons:
  • RegEx Blacklisted phrase (3): did you solve this problem
  • RegEx Blacklisted phrase (1.5): solve this problem?
  • Low length (1.5):
  • No code block (0.5):
  • Ends in question mark (2):
  • User mentioned (1): @tashoyan
  • Looks like a comment (1):
  • Low reputation (1):
Posted by: Ivanov Ivan

79447183

Date: 2025-02-18 05:12:53
Score: 6 🚩
Natty: 6
Report link

hahahahahahahahaha butts haha butts

Reasons:
  • Contains signature (1):
  • Low length (2):
  • No code block (0.5):
  • Unregistered user (0.5):
  • Has no white space (0.5):
  • Single line (0.5):
  • Low reputation (1):
Posted by: haha butts

79447145

Date: 2025-02-18 04:44:47
Score: 4.5
Natty:
Report link

i think here u get your answer your auth header is not properly created please read the docs https://bybit-exchange.github.io/docs/v5/ws/connect

and check once again u need to generate API key from this URL https://www.bybit.com/app/user/api-management

Reasons:
  • RegEx Blacklisted phrase (1): i think here u get your answer your auth header is not properly created please
  • Probably link only (1):
  • Low length (1):
  • No code block (0.5):
  • Low reputation (1):
Posted by: Jigar Suthar

79447044

Date: 2025-02-18 03:26:31
Score: 4
Natty:
Report link

how to prevent other app play sounds, when I am playing a music.

Reasons:
  • Low length (1.5):
  • No code block (0.5):
  • Single line (0.5):
  • Starts with a question (0.5): how to
  • Low reputation (1):
Posted by: MY J

79446999

Date: 2025-02-18 02:50:22
Score: 4
Natty:
Report link

Sadly, there's no "fix" for this problem yet. But there are workarounds under this github issue.

https://github.com/angular/components/issues/16671

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

79446857

Date: 2025-02-18 00:16:54
Score: 4.5
Natty:
Report link

Github Comment works and resolve my issue.

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

79446839

Date: 2025-02-17 23:54:49
Score: 5
Natty: 4
Report link

I'm looking for this kind of app exactly on android, any suggestions? An app that would work just as normal cam but would only take a still image while recording sound and outputting all of it into a normal video file.

Reasons:
  • RegEx Blacklisted phrase (2): any suggestions?
  • Low length (0.5):
  • No code block (0.5):
  • Contains question mark (0.5):
  • Single line (0.5):
  • Low reputation (1):
Posted by: MuchToKnow

79446827

Date: 2025-02-17 23:39:46
Score: 4.5
Natty:
Report link

Yes, according to wiki it is normal. The compiler also points out that i may not be initialized. However, this is incorrect in this case, as i is a local variable that was initialized at the start of the for loop, even if the end value was specified as the start value. I pointed this out because it is handled differently in other programming languages, which has the advantage that the value following the loop end value is directly available. Here you can help yourself by calculating end value+1 yourself and using it in the 2nd log. if the loop is exited prematurely, for example, you do not know up to which value the loop was run through.

Hannes

Reasons:
  • RegEx Blacklisted phrase (3): you can help
  • Long answer (-0.5):
  • No code block (0.5):
  • Self-answer (0.5):
  • Low reputation (1):
Posted by: Hannes Brockmann

79446820

Date: 2025-02-17 23:35:44
Score: 4
Natty:
Report link

I found my problem, I am not sure why there is a string "url" in the filter blank, then I removed it and Chrome could run successfully.

enter image description here

Reasons:
  • Blacklisted phrase (1): enter image description here
  • Low length (1):
  • No code block (0.5):
  • Self-answer (0.5):
  • Low reputation (1):
Posted by: Yanjian Shen

79446819

Date: 2025-02-17 23:34:43
Score: 4.5
Natty:
Report link

Files::write writes bytes to a file

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

79446805

Date: 2025-02-17 23:24:40
Score: 4.5
Natty:
Report link

Você pode colocar no próprio Excel um botão e atribuir essa macro. Para criar um botão, basta desenhar uma forma dentro do Excel e atribuir uma macro nessa forma. Ela pode inclusive conter um texto como por exemplo: clique aqui ou executar. O usuário só precisará clicar no botão dentro do Excel e ele chamará a Macro.

Reasons:
  • Blacklisted phrase (3): Você
  • No code block (0.5):
  • Low reputation (1):
Posted by: Carlos Eduardo Bruzadin

79446732

Date: 2025-02-17 22:36:29
Score: 4.5
Natty: 5
Report link

Maybe it's better to use django-fast-treenode and not suffer?

Reasons:
  • Low length (1.5):
  • Has code block (-0.5):
  • Ends in question mark (2):
  • Single line (0.5):
  • Low reputation (1):
Posted by: Timur Kady

79446707

Date: 2025-02-17 22:19:24
Score: 6.5 🚩
Natty: 5.5
Report link

S3EventNotification.parseJson doesn't exist in the aws-lambda-java-event-3.11.1.jar. Is there another way to do this?

Reasons:
  • Low length (1):
  • No code block (0.5):
  • Ends in question mark (2):
  • Unregistered user (0.5):
  • Single line (0.5):
  • Looks like a comment (1):
  • Low reputation (1):
Posted by: user29686231

79446691

Date: 2025-02-17 22:12:22
Score: 4.5
Natty:
Report link

Thank you all for replying and helping me. I found a better and newer script!

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 (1):
Posted by: user29650719