79136682

Date: 2024-10-29 10:07:34
Score: 6.5 🚩
Natty:
Report link

Can you deploy the code to codesandbox?

Reasons:
  • Low length (2):
  • 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: Windoo

79136669

Date: 2024-10-29 10:03:33
Score: 0.5
Natty:
Report link

Even simpler, i guess:

public static void main(String[] args) {
        ConfigurableApplicationContext context = SpringApplication.run(SchemaStoreApplication.class, args);
        context.getEnvironment().getPropertySources().forEach(propertySource -> System.out.println(propertySource));
Reasons:
  • Low length (0.5):
  • Has code block (-0.5):
  • Low reputation (0.5):
Posted by: Joel Mata

79136665

Date: 2024-10-29 10:02:32
Score: 1
Natty:
Report link

The best way to regain memory footprint for collections like HashSet and List in .NET 6 and above is to utilize the Clear() method for the collection to remove all elements, which allows the collection to release references to those elements. However, if you want to reclaim the memory immediately, you can also consider creating a new instance of the collection instead of just clearing it, as this forces garbage collection of the old instance.

Another approach is to set the collection to null if it is no longer needed, which allows the garbage collector to reclaim memory when it determines that the collection is no longer referenced. Finally, for large collections, you may also want to consider using the GC.Collect() method, although this should be used sparingly as it forces garbage collection and can impact performance.

For mastering visualization, memory, reading, and research skills, KeyToStudy offers valuable resources and tools!

Reasons:
  • Long answer (-0.5):
  • No code block (0.5):
  • Low reputation (1):
Posted by: MWasim Tariq

79136652

Date: 2024-10-29 10:00:32
Score: 10.5
Natty: 7.5
Report link

I have the same question with you.Have you solved this problem now?

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

79136647

Date: 2024-10-29 09:59:31
Score: 1
Natty:
Report link

you can use the action object which you can use to send the data to your flow.

Refer to the section of Sample request where you can get the sample data object.

https://developers.facebook.com/docs/whatsapp/flows/guides/sendingaflow

Reasons:
  • Whitelisted phrase (-1.5): you can use
  • Low length (1):
  • No code block (0.5):
  • Low reputation (1):
Posted by: Deeraj N

79136640

Date: 2024-10-29 09:57:31
Score: 3.5
Natty:
Report link

I had similar problem because I used "Pull" option instead of "Merge". So be sure you use "Merge".

enter image description here

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

79136633

Date: 2024-10-29 09:56:31
Score: 3
Natty:
Report link

Had the same issue (on osx 15.0.1, Xcode 16/16.1RC, iOS 18.0.1). I upgraded to osx 15.1 yesterday and the issue seems to be solved now.

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

79136613

Date: 2024-10-29 09:52:29
Score: 3
Natty:
Report link

pd.read_excel(file_name, dtype="object") => 0011 it work with pandas version 2.0.3

Reasons:
  • Low length (1.5):
  • No code block (0.5):
  • Low reputation (1):
Posted by: Nguyễn Thanh Thùy

79136611

Date: 2024-10-29 09:52:29
Score: 2.5
Natty:
Report link

In solution explorer you can just add "filters", they are like a virtual directories i.e. changes only what you see, not your physical layout. You can construct trees anyway you want, so you can group them the way you like.

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

79136610

Date: 2024-10-29 09:52:29
Score: 1.5
Natty:
Report link

This code alone is not sufficient to achieve what you're aiming for. You'll need to implement and adjust a few things here:

  1. Change the button to a submit button: This way, the form's built-in validation will check all fields before submission.

  2. Add JavaScript validation: Here, you can run validations and handle redirection according to your logic.

There are many resources available on JavaScript validation. Good luck!"

Reasons:
  • No code block (0.5):
  • Low reputation (1):
Posted by: ZihamZuhair

79136607

Date: 2024-10-29 09:51:29
Score: 1.5
Natty:
Report link

I have found a smooth solution, thanks to @JanBína, using Size.Exact

class AppWidget : GlanceAppWidget() {

override val sizeMode = SizeMode.Exact

override suspend fun provideGlance(context: Context, id: GlanceId) {
    provideContent {
        MyContent(context)
    }
}

@Composable
private fun MyContent(context: Context) {
    val size = LocalSize.current

    Log.d("WidgetContent", "Size: $size")
    
    WidgetContent()
}
}

Log while resizing the widget:

WidgetContent D Size: 160.0.dp x 176.0.dp

WidgetContent D Size: 248.0.dp x 176.0.dp

WidgetContent D Size: 336.0.dp x 176.0.dp

WidgetContent D Size: 336.0.dp x 272.0.dp

Reasons:
  • Blacklisted phrase (0.5): thanks
  • Long answer (-0.5):
  • Has code block (-0.5):
  • User mentioned (1): @JanBína
  • Self-answer (0.5):
  • Low reputation (0.5):
Posted by: Yazan

79136605

Date: 2024-10-29 09:50:29
Score: 2
Natty:
Report link

Add the plugin.png file to the <plugin root>/src/Resources/config folder.

The structure of the plugin is shown in the screenshot.

After this, the plugin image should appear in the admin panel.

The result is displayed in the screenshot.

Reasons:
  • Probably link only (1):
  • Low length (1):
  • Has code block (-0.5):
  • Low reputation (0.5):
Posted by: Yehor Samoilenko

79136603

Date: 2024-10-29 09:49:29
Score: 3
Natty:
Report link

In Android Studio: Build -> Generate Signed App Bundle/APK Then I installed the release APK on my phone and worked.

Reasons:
  • Low length (1):
  • No code block (0.5):
  • Self-answer (0.5):
  • Low reputation (1):
Posted by: Abeer Mustafa

79136602

Date: 2024-10-29 09:49:27
Score: 9.5 🚩
Natty: 6
Report link

I have met the same problem, have you solved it?

Reasons:
  • Blacklisted phrase (2): have you solved it
  • RegEx Blacklisted phrase (1.5): solved it?
  • Low length (1.5):
  • No code block (0.5):
  • Ends in question mark (2):
  • Unregistered user (0.5):
  • Single line (0.5):
  • Low reputation (1):
Posted by: htt

79136598

Date: 2024-10-29 09:48:26
Score: 2
Natty:
Report link

Failure [DELETE_FAILED_USER_RESTRICTED] Failure [DELETE_FAILED_USER_RESTRICTED] Success Failure [INSTALL_FAILED_VERSION_DOWNGRADE: System app: com.bbk.theme cannot be downgraded to older than its preloaded version on the system image. Update version code 2217 is older than current 8723] ❌

Reasons:
  • Low length (0.5):
  • No code block (0.5):
  • Low reputation (1):
Posted by: Zy Baclay

79136588

Date: 2024-10-29 09:45:26
Score: 2.5
Natty:
Report link

I know this question is very old, but since it is the first question you will find on this topic. I will link to the answer, which includes a workaround (not a good one, but better than nothing) https://stackoverflow.com/a/78205185/22264456

Reasons:
  • Blacklisted phrase (1): stackoverflow
  • Low length (0.5):
  • No code block (0.5):
  • Low reputation (0.5):
Posted by: user22264456

79136584

Date: 2024-10-29 09:44:23
Score: 7 🚩
Natty: 6.5
Report link

Посмотрите реализацию здесь, я воспользовался данным классом и все работает https://github.com/OxMohsen/validating-data/blob/main/src/Validate.php

Reasons:
  • Probably link only (1):
  • Low length (1.5):
  • No code block (0.5):
  • No latin characters (3):
  • Low reputation (1):
Posted by: paungire

79136582

Date: 2024-10-29 09:44:23
Score: 1.5
Natty:
Report link

We used to use a different option available built in VS Code and I think its a better solution here.(Given that you already have the Hashicorp Terraform extension. If not Just install it). Later you can enable format on save following this guide: https://medium.com/nerd-for-tech/how-to-auto-format-hcl-terraform-code-in-visual-studio-code-6fa0e7afbb5e

This is something we followed in my previous workplace and hope this helps. Maybe because this question is older it might have not been a feature back then.

Reasons:
  • Blacklisted phrase (1): this guide
  • Blacklisted phrase (0.5): medium.com
  • Whitelisted phrase (-1): hope this helps
  • No code block (0.5):
  • Low reputation (0.5):
Posted by: Ihsan Izwer

79136581

Date: 2024-10-29 09:43:23
Score: 4
Natty: 5
Report link

what the mean of intel_iommu=off , why add this parameter

Reasons:
  • Low length (1.5):
  • No code block (0.5):
  • Single line (0.5):
  • Starts with a question (0.5): what the mean of in
  • Low reputation (1):
Posted by: user27943739

79136579

Date: 2024-10-29 09:42:22
Score: 0.5
Natty:
Report link

By checking blanks in ConsolCodes first:

=IF(ISBLANK(ConsolCodes),0, IFERROR(INDEX(Jul2024Totals,XMATCH(ConsolCodes,Jul2024Codes,0)), 0))

Result

Reasons:
  • Probably link only (1):
  • Low length (1):
  • Has code block (-0.5):
  • High reputation (-1):
Posted by: nkalvi

79136571

Date: 2024-10-29 09:40:22
Score: 0.5
Natty:
Report link

For Windows IntelliJ 2024 the path to maven is

C:\Program Files (x86)\JetBrains\IntelliJ IDEA Community Edition 2024.2.4\plugins\maven\lib\maven3
Reasons:
  • Low length (1):
  • Has code block (-0.5):
Posted by: Chinmoy

79136566

Date: 2024-10-29 09:39:21
Score: 3.5
Natty:
Report link

So i have this exact problem only the file path it is moaning about is 152 characters not even close to the 256 limit and i have also enabled long path so it is 100% NOT the file path that is too long. Has anyone experianced the issue where it is NOT the file path that is the issue. It's starting to grate now as every answer everywhere on the internet says "it must be the file path" but i have enabled long path and checked the file path length and CAN NOT make the file path shorter so i'm a bit stuck??

Reasons:
  • Long answer (-0.5):
  • No code block (0.5):
  • Ends in question mark (2):
  • Single line (0.5):
  • Low reputation (1):
Posted by: James Rogers

79136562

Date: 2024-10-29 09:39:21
Score: 3
Natty:
Report link
  1. go to Task Manager
  2. Tab on Users > click end task your simulator
Reasons:
  • Low length (1.5):
  • No code block (0.5):
  • Low reputation (1):
Posted by: max dev

79136561

Date: 2024-10-29 09:38:21
Score: 0.5
Natty:
Report link

You can add something like this CSS code to the inner divs, or perhaps you need to add another nested div for this. Here's the code:

.flex-long {
  overflow: hidden;
  display: -webkit-box;
  -webkit-line-clamp: 6;
  -webkit-box-orient: vertical;
}
Reasons:
  • Low length (0.5):
  • Has code block (-0.5):
  • Low reputation (0.5):
Posted by: Rahmani

79136560

Date: 2024-10-29 09:38:21
Score: 1.5
Natty:
Report link

Had the same issue, basically the gallery images are uploading perfectly whether in avif or webP format, however, the Product Image wouldn't upload in .avif no matter what plugin I would deactivate or whatnot...

What worked for me, in Settings, changing the Modern Image Formats Image output format from Avif to WebP. And magically (though it's likely a regression), it works again :)

enter image description here

Reasons:
  • Blacklisted phrase (1): enter image description here
  • Whitelisted phrase (-1): worked for me
  • No code block (0.5):
  • Low reputation (1):
Posted by: Alexandre Cartier

79136556

Date: 2024-10-29 09:38:21
Score: 0.5
Natty:
Report link

Just use file_get_contents

It's a core php function that works on urls. No need for curl.

https://www.php.net/manual/en/function.file-get-contents.php

<?php
if($_SERVER["REQUEST_METHOD"] == "POST") {

  //GET THE HTML SOURCE CODE
  $html_source = file_get_contents($_POST["url"]);

  // Display the HTML source code with syntax highlighting
  echo "<pre><code class='language-html'>" . htmlspecialchars($html_source) . "</code></pre>"; 
}
?>

<form method="post">
  <label for="url">Enter URL:</label><br>
  <input type="text" id="url" name="url" size="50"><br><br>
  <input type="submit" value="Load HTML Source">
</form>
Reasons:
  • Probably link only (1):
  • Long answer (-0.5):
  • Has code block (-0.5):
  • Low reputation (0.5):
Posted by: dvicemuse

79136555

Date: 2024-10-29 09:37:21
Score: 2
Natty:
Report link

Stop the service: kubectl delete svc my-service and try again

Reasons:
  • Low length (1.5):
  • Has code block (-0.5):
  • Single line (0.5):
  • Low reputation (0.5):
Posted by: Vincent Agnes

79136548

Date: 2024-10-29 09:36:20
Score: 0.5
Natty:
Report link

I found that if I change class MainActivity: FlutterActivity() instead of class MainActivity: FlutterFragmentActivity() {} The navigation works PERFECT. The problem is that I need my app to use FlutterFragmentActivity since I'm using STRIPE.

This is a solution that is working for me for now is to create custom onNavigationNotification in MaterialApp.router constructor.

bool _defaultOnNavigationNotification(NavigationNotification _) {
  switch (WidgetsBinding.instance.lifecycleState) {
    case null:
    case AppLifecycleState.detached:
    case AppLifecycleState.inactive:
    // Avoid updating the engine when the app isn't ready.
      return true;
    case AppLifecycleState.resumed:
    case AppLifecycleState.hidden:
    case AppLifecycleState.paused:
      SystemNavigator.setFrameworkHandlesBack(true); /// This must be `true` instead of `notification.canHandlePop`, otherwise application closes on back gesture.
      return true;
  }
}

And then:

MaterialApp.router(
  onNavigationNotification: _defaultOnNavigationNotification,
);
Reasons:
  • Blacklisted phrase (0.5): I need
  • Long answer (-1):
  • Has code block (-0.5):
  • Self-answer (0.5):
  • Low reputation (1):
Posted by: Liam Marega

79136544

Date: 2024-10-29 09:35:19
Score: 5
Natty:
Report link

The actual correct answer is to add a @Contract annotation to the method checking for null.

See: https://blog.jetbrains.com/idea/2013/10/better-control-flow-analysis-with-contract-annotations-and-intellij-idea-13/

Credits: How can I make IntelliJ IDEA understand my null-checking method?

Reasons:
  • Blacklisted phrase (0.5): How can I
  • Probably link only (1):
  • Low length (1):
  • Has code block (-0.5):
  • Ends in question mark (2):
  • Low reputation (1):
Posted by: Christian Kern

79136541

Date: 2024-10-29 09:35:19
Score: 2.5
Natty:
Report link

When you create a StreamHandler without arguments, it will output to stderr. That being a Standard Error stream, causes Azure to show its output as errors.

https://docs.python.org/3/library/logging.handlers.html#logging.StreamHandler

Reasons:
  • Probably link only (1):
  • Low length (1):
  • Has code block (-0.5):
  • Starts with a question (0.5): When you
  • Low reputation (0.5):
Posted by: Osman-pasha

79136537

Date: 2024-10-29 09:34:19
Score: 1.5
Natty:
Report link

To locate the Registration class:

  1. Check References: In Solution Explorer, look under "References" for Plural.CoreLib. If it’s there, the class is likely from that library.

  2. NuGet Packages: Go to Tools > NuGet Package Manager and check if Plural.CoreLib is listed under installed packages.

  3. Object Browser: Open the Object Browser (View > Object Browser) and search for Plural.CoreLib to confirm the class is defined there.

Reasons:
  • No code block (0.5):
  • Low reputation (1):
Posted by: Rushi

79136533

Date: 2024-10-29 09:34:19
Score: 9.5
Natty: 7.5
Report link

Hi may I ask what if I only want to load the index.html but I having a problem is that the router I use in web enviroment the app can not reach that. Are there any solution about this situation?

Reasons:
  • Blacklisted phrase (1.5): any solution
  • Blacklisted phrase (1): may I ask
  • RegEx Blacklisted phrase (2): any solution about this situation?
  • Low length (0.5):
  • No code block (0.5):
  • Ends in question mark (2):
  • Unregistered user (0.5):
  • Single line (0.5):
  • Low reputation (1):
Posted by: jing liu

79136517

Date: 2024-10-29 09:27:17
Score: 0.5
Natty:
Report link

Same logic as @Black Cat, just find the first entry less than 50:

=BYROW(B2:G7,LAMBDA(r,XMATCH(TRUE,HSTACK(r,0)<50)-1))

enter image description here

Reasons:
  • Probably link only (1):
  • Low length (1):
  • Has code block (-0.5):
  • User mentioned (1): @Black
  • High reputation (-2):
Posted by: Tom Sharpe

79136512

Date: 2024-10-29 09:26:16
Score: 2
Natty:
Report link

Tempo stores worklog data in a separate DB on their servers. It is later synced with Atlassian DB. I assume that you use Tempo API for a PUT method, but Jira API for a GET request. Use Tempo API for validation if your PUT request succeeded.

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

79136506

Date: 2024-10-29 09:25:16
Score: 0.5
Natty:
Report link
        $nested = [];
        if(isset($DBobject->nested)) {
            $nested = $DBobject->nested;
        }

        $nested['nested_key'] = 'nested_value';
        $DBobject->nested = $nested;
        $DBobject->save();

That's how I've done it

Reasons:
  • Low length (0.5):
  • Has code block (-0.5):
  • Low reputation (0.5):
Posted by: Yoan

79136503

Date: 2024-10-29 09:23:16
Score: 0.5
Natty:
Report link

As the error said, flutter_cli need null safety support. To enable null safety you should update your minimum sdk to 2.12.0. Open your pubspec.yaml then set the sdk constraints to:

environment:
  sdk: '>=2.12.0 <3.0.0'

From official documentation:

From Dart 2.12 to 2.19, you need to enable null safety. You cannot use null safety in SDK versions earlier than Dart 2.12.

To enable sound null safety, set the SDK constraint lower-bound to a language version of 2.12 or later.

Reference: Sound null safety | Dart

Reasons:
  • Blacklisted phrase (0.5): i need
  • Has code block (-0.5):
  • Low reputation (0.5):
Posted by: gopelkujo

79136500

Date: 2024-10-29 09:21:15
Score: 2.5
Natty:
Report link

After examining the VS Code application and conducting various tests, the conclusion was that if the application is installed in the USER/AppData/Local/Programs/ directory, it runs at optimal speed, especially after restarting Windows.

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

79136497

Date: 2024-10-29 09:21:15
Score: 1
Natty:
Report link

You can get the project id from the context. Then check if the received id matches the expected one.

    $(document).ready(function () {
      const projectId = uiscripts.context.project.id;
      
      
      if (projectId == '1') {
     // something
     }
Reasons:
  • Low length (0.5):
  • Has code block (-0.5):
  • Low reputation (1):
Posted by: Bio BoJlk

79136495

Date: 2024-10-29 09:20:13
Score: 7 🚩
Natty: 5
Report link

Hi im trying to do this in my html and js app to make offline routing available any tips on where to start please help

Reasons:
  • Blacklisted phrase (1): any tips
  • RegEx Blacklisted phrase (3): please help
  • Low length (1):
  • No code block (0.5):
  • Single line (0.5):
  • Low reputation (1):
Posted by: waseem

79136486

Date: 2024-10-29 09:16:11
Score: 11.5
Natty: 7.5
Report link

i am looking for the similar solution, could you please share how you have resolved it?

Reasons:
  • Blacklisted phrase (2): i am looking for
  • RegEx Blacklisted phrase (2.5): could you please share how you
  • RegEx Blacklisted phrase (1.5): resolved it?
  • Low length (1.5):
  • No code block (0.5):
  • Ends in question mark (2):
  • Single line (0.5):
  • Low reputation (1):
Posted by: TA01

79136482

Date: 2024-10-29 09:16:11
Score: 2
Natty:
Report link
=BYROW(B2:G5,LAMBDA(r, XMATCH(TRUE,r<50)-1))

Result

Reasons:
  • Probably link only (1):
  • Low length (1.5):
  • Has code block (-0.5):
  • Has no white space (0.5):
  • Single line (0.5):
  • High reputation (-1):
Posted by: nkalvi

79136476

Date: 2024-10-29 09:14:11
Score: 2
Natty:
Report link

Put that to redirect_uri: postmessage

Ref: https://stackoverflow.com/a/78014032/2132069

I don't know why but this worked in my project. Interesting.

Reasons:
  • Blacklisted phrase (1): stackoverflow
  • Low length (1):
  • Has code block (-0.5):
  • Low reputation (0.5):
Posted by: kodmanyagha

79136475

Date: 2024-10-29 09:13:11
Score: 2
Natty:
Report link

Put that to redirect_uri: postmessage

Ref: https://stackoverflow.com/a/78014032/2132069

I don't know why but this worked in my project. Interesting.

Reasons:
  • Blacklisted phrase (1): stackoverflow
  • Low length (1):
  • Has code block (-0.5):
  • Low reputation (0.5):
Posted by: kodmanyagha

79136473

Date: 2024-10-29 09:13:11
Score: 2
Natty:
Report link

Put that to redirect_uri: postmessage

Ref: https://stackoverflow.com/a/78014032/2132069

I don't know why but this worked in my project. Interesting.

Reasons:
  • Blacklisted phrase (1): stackoverflow
  • Low length (1):
  • Has code block (-0.5):
  • Low reputation (0.5):
Posted by: kodmanyagha

79136471

Date: 2024-10-29 09:12:10
Score: 1
Natty:
Report link

Pyyaml may not be installing correctly

Run this command pip install "cython<3.0.0" && pip install --no-build-isolation pyyaml==5.4.1

Reasons:
  • Low length (1):
  • Has code block (-0.5):
  • Low reputation (0.5):
Posted by: joseph Ofori Tenkorang

79136468

Date: 2024-10-29 09:11:10
Score: 1
Natty:
Report link

@magallanes script on PHP 8.3.13 (built: Oct 22 2024)

arrays: 0.079897880554199
memory: 428536

Array
(
    [aaa] => aaa
    [bbb] => bbb
    [ccc] => aaabbb
)

-------------------------

arrays: 0.059076070785522
memory: 148128

SomeClass Object
(
    [aaa] => aaa
    [bbb] => bbb
    [ccc] => aaabbb
)

-------------------------

arrays: 0.06840991973877
memory: 468032

stdClass Object
(
    [aaa] => aaa
    [bbb] => bbb
    [ccc] => aaabbb
)

But what i have noticed, if i add types and add Setters and Getters to the class. If i use them instead of the direct variable calls, there is a drastic increase of time.

arrays: 0.085529804229736
memory: 148128

SomeClass Object
(
    [aaa] => aaa
    [bbb] => bbb
    [ccc] => aaabbb
)

-------------------------

arrays: 0.29699301719666
memory: 148032

SomeClass Object (Getters and Setters)
(
    [aaa] => aaa
    [bbb] => bbb
    [ccc] => aaabbb
)
Reasons:
  • Long answer (-0.5):
  • Has code block (-0.5):
  • User mentioned (1): @magallanes
  • Low reputation (1):
Posted by: MSBluhm

79136463

Date: 2024-10-29 09:11:10
Score: 3.5
Natty:
Report link

Here is an official solution on the testing library website:

https://testing-library.com/docs/svelte-testing-library/faq/#why-isnt-onmount-called-when-rendering-components

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

79136462

Date: 2024-10-29 09:10:09
Score: 1.5
Natty:
Report link

I faced the exact same issue. Before enabling the plugins follow the below steps. Make sure you are running the commands in RabbitMQ Command Prompt using Administrator privilege. Hope your issue will be resolved.

Command 1 (By this existing service will remove) --> rabbitmq-service remove

Command 2 (By this new service will add) --> rabbitmq-service install

Command 3 (By this you can enable the RabbitMQ management UI plugins) --> rabbitmq-plugins enable rabbitmq_management

click here to see the image

Reasons:
  • No code block (0.5):
  • Low reputation (1):
Posted by: Thiwanka Gunasinghe

79136461

Date: 2024-10-29 09:10:09
Score: 2
Natty:
Report link

Here are the steps:

... et voilà.

Reasons:
  • Low length (0.5):
  • No code block (0.5):
  • Low reputation (1):
Posted by: neomaniacs

79136455

Date: 2024-10-29 09:09:07
Score: 7.5 🚩
Natty: 4.5
Report link

did you find a solution? i got a similar problem

Reasons:
  • RegEx Blacklisted phrase (3): did you find a solution
  • Low length (1.5):
  • No code block (0.5):
  • Contains question mark (0.5):
  • Single line (0.5):
  • Starts with a question (0.5): did you find a solution
  • Low reputation (1):
Posted by: HeroDennis

79136453

Date: 2024-10-29 09:09:07
Score: 4.5
Natty:
Report link

Please try Regular Expression Threat Protection for API Gateway

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

79136437

Date: 2024-10-29 09:06:06
Score: 1.5
Natty:
Report link

Thanks to (https://www.geeksforgeeks.org/how-to-convert-base64-to-file-in-javascript/), I found this solution.


openFile: function(){
            var base64String = "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";
            
            const mimeType = "application/vnd.openxmlformats-officedocument.spreadsheetml.sheet"; 
          
            const base64Data = base64String.replace(/^data:.+;base64,/, '');
            const byteCharacters = atob(base64Data); // Decode Base64 string
            const byteNumbers = new Array(byteCharacters.length);
    
            for (let i = 0; i < byteCharacters.length; i++) {
                byteNumbers[i] = byteCharacters.charCodeAt(i);
            }
    
            const byteArray = new Uint8Array(byteNumbers);
            const blob = new Blob([byteArray], { type: mimeType });
            
            sap.ui.core.util.File.save(blob, 'test', 'xlsx', mimeType, null, null);
          
        }

Reasons:
  • Blacklisted phrase (0.5): Thanks
  • Probably link only (1):
  • Long answer (-1):
  • Has code block (-0.5):
  • Self-answer (0.5):
  • Low reputation (1):
Posted by: Pablo Sinder

79136426

Date: 2024-10-29 09:03:05
Score: 1
Natty:
Report link

If these values are not constant (and they are dynamic as they are running through a main loop, for example) as it would appear, static const will not allow them to ever be changed. These definitions save memory and errors in cases where the variable does not ever change throughout the life of the program.

Defining these variables as uns does not seem to be appropriate to me in this circumstance. Defining them as unsigned int may save you a few bits in the long run, and int would more than likely suffice. Further, defining the variable in the header and assigning value in the cpp files, as necessary, is better practice. Your errors will disappear, if you follow these few guidelines which are better practice than what you have presented.

Reasons:
  • Long answer (-0.5):
  • No code block (0.5):
  • Low reputation (1):
Posted by: ndtech

79136425

Date: 2024-10-29 09:02:04
Score: 2
Natty:
Report link

In my case, these were the things I had to do ;

Reasons:
  • Low length (0.5):
  • No code block (0.5):
  • Low reputation (1):
Posted by: Ömer Faruk Gürbüz

79136418

Date: 2024-10-29 08:58:03
Score: 1.5
Natty:
Report link

I hit this issue as well. Wow does memory usage go out of control with 24 threads (Ryzen 5900X). Looking in the setup.py file for Triton, I saw that it uses MAX_JOBS on Linux, so, in the Triton source directory:

MAX_JOBS="6" pip3 install .

That keeps the maximum number of threads to 6. It seems each thread will use 1-2.5GB of RAM, so for 32 threads which I see in your question, you'd need at least 80Gb of RAM.

I was following instructions here when I hit this issue: https://docs.vllm.ai/en/latest/getting_started/amd-installation.html

Modify your step #6 to include MAX_JOBS="[maximum number of parallel jobs]", which I think with 48GB of RAM, not to go past 16. Maybe try 8 to be conservative.

Reasons:
  • Long answer (-0.5):
  • No code block (0.5):
  • Unregistered user (0.5):
  • Low reputation (1):
Posted by: Lem

79136401

Date: 2024-10-29 08:51:02
Score: 2.5
Natty:
Report link

My projects were located on a network drive, even though it was a connection to a local drive. After using paths to the projects relative to the Windows logical drive or using SUBST instead of connecting to the network drive, the problem was solved.

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

79136399

Date: 2024-10-29 08:50:01
Score: 2
Natty:
Report link

On Android, ExpansionTile containers can sometimes appear larger than expected due to platform-specific differences in padding or margins. To create a consistent appearance across platforms, you can explicitly set constraints on the Container and make sure there’s no unexpected padding or margin in the ExpansionTile or child widgets

Reasons:
  • No code block (0.5):
  • Single line (0.5):
  • Low reputation (1):
Posted by: Oghenemaro Ojekudo

79136397

Date: 2024-10-29 08:49:01
Score: 2.5
Natty:
Report link

tu peux mettre dossier assets sous le dossier public et ca résolu le problème: <img src="assets/image1.png"

Reasons:
  • Low length (1):
  • No code block (0.5):
  • Low reputation (1):
Posted by: khaled

79136393

Date: 2024-10-29 08:48:01
Score: 4
Natty: 5
Report link

Thanks for your idea Bob, it helps me a lots. I've solved it successfully ^^

Reasons:
  • Blacklisted phrase (0.5): Thanks
  • Low length (1.5):
  • No code block (0.5):
  • Single line (0.5):
  • Low reputation (1):
Posted by: Trần Anh

79136382

Date: 2024-10-29 08:42:59
Score: 0.5
Natty:
Report link

For this specific error you can fix by installing dependency via forge and that will populate your /lib dir.

forge install OpenZeppelin/openzeppelin-contracts

docs:

Reasons:
  • Low length (1):
  • Has code block (-0.5):
Posted by: salah-1

79136381

Date: 2024-10-29 08:42:59
Score: 1
Natty:
Report link

sir i have the same problome i using php version 8.2.12

i have this message how fix it C:\xampp\htdocs\Ghazniwal\pages>composer require mpdf/mpdf v8.1.0 -w ./composer.json has been created Running composer update mpdf/mpdf --with-dependencies Loading composer repositories with package information Updating dependencies Your requirements could not be resolved to an installable set of packages.

Problem 1 - Root composer.json requires mpdf/mpdf v8.1.0 -> satisfiable by mpdf/mpdf[v8.1.0]. - mpdf/mpdf v8.1.0 requires php ^5.6 || ^7.0 || ~8.0.0 || ~8.1.0 -> your php version (8.2.12) does not satisfy that requirement.

Installation failed, deleting ./composer.json.

Reasons:
  • Long answer (-0.5):
  • No code block (0.5):
  • Low reputation (1):
Posted by: abdulrahman

79136378

Date: 2024-10-29 08:41:58
Score: 0.5
Natty:
Report link

In ten years, no proper answer has been provided. Here is how to get rid of that message:

TMyObject = class(TObject)
  public
{$WARNINGS OFF}
    property AsJson: ISuperObject read GetAsJson;
{$WARNINGS ON}
  end;
Reasons:
  • Low length (0.5):
  • Has code block (-0.5):
  • Low reputation (0.5):
Posted by: Atys

79136376

Date: 2024-10-29 08:40:58
Score: 0.5
Natty:
Report link

adb restart works, but the device should be unplugged while restarting

  1. disconnect the device
  2. adb kill-server
  3. adb start-server
  4. reconnect the device

I hope this helps

Reasons:
  • Whitelisted phrase (-1): hope this helps
  • Low length (1):
  • Has code block (-0.5):
  • Low reputation (1):
Posted by: tomlopaton

79136348

Date: 2024-10-29 08:31:56
Score: 1.5
Natty:
Report link

To quickly reduce the memory footprint of collections like HashSet or List in .NET 6 and above, the best approach is:

a. Clear the collection and assign null.

This approach releases references to the elements, allowing for garbage collection to reclaim that memory. In summary, clear the collection and then assign null for the best result. .from other two i think option c) Set Capacity to Zero and assign null is also efficent but not necessary in most scenario

Reasons:
  • No code block (0.5):
  • Low reputation (1):
Posted by: Aliabdullah

79136335

Date: 2024-10-29 08:27:55
Score: 3
Natty:
Report link

I found out what caused this error. In one of my projects (Qit.QUniversal.Controls) I still had a reference to: Xamarin.Controls.SignaturePad.Forms

enter image description here

After I removed this reference this error didn't occur anymore. This solved this specific error.

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

79136327

Date: 2024-10-29 08:25:54
Score: 1.5
Natty:
Report link

I know this is old as this is gold for the intrepid. Yes it is possible, perhaps a little trickier on recent VS C++. What you need is a "MFC Extension DLL". Just select this "extension mode" when creating your DLL using the Visual Studio wizard.

If you create (or adapt from a project) a regular MFC DLL you won't be able to create CDialogs when using recent VS C++, i.e. VS C++ 2015. It will work on VS C++ 6.0 tho.

Reasons:
  • No code block (0.5):
  • Low reputation (1):
Posted by: ERic

79136323

Date: 2024-10-29 08:23:54
Score: 2
Natty:
Report link

This will be an unsatisfying answer: No.

I'm currently searching for the same question and came across this comment Can clang-format tell me if formatting changes are necessary? from a alleged programmer of clang-format.

The answer of the question

Hey @MyDeveloperDay, could you (guys) please also add a message specifically referring to the actual rule that was violated? You know, like normal compiler errors that tell what's wrong, not just f* off. :) It would be immensely helpful e.g. when quickly looking at GH lint action failure logs with supposedly compliant (but still apparently problematic) lines etc.

was

@Sz this I'm afraid is highlight unlikely, it would effectively require tracking of every space and likely character and what cause it to move, which could be multiple rules.

I'm happy to be proved wrong. I would love to change my answer.

Reasons:
  • Long answer (-0.5):
  • No code block (0.5):
  • Contains question mark (0.5):
  • User mentioned (1): @MyDeveloperDay
  • Low reputation (0.5):
Posted by: Cutyno

79136320

Date: 2024-10-29 08:22:53
Score: 1.5
Natty:
Report link

Лично у меня ошибка была в написании 'product_files'. Users.ts Было 'products_files'

{
            name: 'product_files',
            label: 'Products files',
            admin: {
                condition: () => false,
            },
            type: 'relationship',
            relationTo: 'product_files',
            hasMany: true,
        },
Reasons:
  • Has code block (-0.5):
  • No latin characters (1):
  • Low reputation (1):
Posted by: Егор Косинцев

79136316

Date: 2024-10-29 08:20:53
Score: 4
Natty: 4
Report link

in iOS Xcode swift , how to redirect users after they completed google sign_in . I used oauth. I want to redirect the users to my app's tabbar page. give me solutions for what I need to update in app delegate to handle the url , and what I need to write in @inbound action google sign in button . I updated the info.plist .

Reasons:
  • Blacklisted phrase (0.5): I need
  • RegEx Blacklisted phrase (1): I want
  • No code block (0.5):
  • User mentioned (1): @inbound
  • Low reputation (1):
Posted by: kumaran

79136315

Date: 2024-10-29 08:19:52
Score: 2.5
Natty:
Report link

what about your App.vue ? is there ? <script setup></script> || <script>export default{}</script> no matter it's empty || no, it should be there...

Reasons:
  • Low length (1):
  • Has code block (-0.5):
  • Contains question mark (0.5):
  • Starts with a question (0.5): what
  • Low reputation (1):
Posted by: bee

79136308

Date: 2024-10-29 08:17:52
Score: 2.5
Natty:
Report link

My projects were located on a network drive, even though it was a connection to a local drive. After using paths to the projects relative to the Windows logical drive or using SUBST instead of connecting to the network drive, the problem was solved.

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

79136303

Date: 2024-10-29 08:15:51
Score: 2
Natty:
Report link

You could use BYROW and SCAN:

=BYROW(SCAN(0,A1:D4,LAMBDA(a,b,IF(b>50,a+1,a*0))),LAMBDA(y,MAX(y)))

ByrowScan

Reasons:
  • Probably link only (1):
  • Low length (1):
  • Has code block (-0.5):
  • Low reputation (0.5):
Posted by: Excellor

79136296

Date: 2024-10-29 08:13:50
Score: 4
Natty:
Report link

I am getting what i am looking for by : mapper.readTree(json).path("paths").path( "/v1/test/anySales").path("post").path("requestBody").path("content")

any better approach use path expression

Reasons:
  • Blacklisted phrase (2): i am looking for
  • Low length (0.5):
  • No code block (0.5):
  • Self-answer (0.5):
  • Low reputation (0.5):
Posted by: Mak

79136284

Date: 2024-10-29 08:10:49
Score: 0.5
Natty:
Report link

MappedIn may fulfill your needs for indoor map creation, navigation, highlighting polygons, displaying user location using beacons, and more. The full functionality of this is used in The Dubai Mall application, check it once (This may work inside the mall, I presume).

I checked this application when I visited mall, it was working efficiently with all of its functionalities.

Here is a link for Mappedin In

https://www.mappedin.com/

Check this and share your thoughts. I have some ideas for this integration and working concept, and would like to share them with you.

Reasons:
  • Long answer (-0.5):
  • No code block (0.5):
  • Low reputation (0.5):
Posted by: khirish

79136264

Date: 2024-10-29 08:03:48
Score: 3
Natty:
Report link

First, try to dd

from torchvision.models import ResNet50_Weights

Reasons:
  • Low length (1.5):
  • No code block (0.5):
  • Low reputation (1):
Posted by: blue

79136257

Date: 2024-10-29 08:00:46
Score: 4
Natty:
Report link

In the past it was trivial to edit formula - you didn't even need to "Show Formulas" (I have been building spreadsheets over four decades, since well before Microsoft introduced Office (Word, Excel, etc.).

- Background (not necessary to read this, but some may find it helpful to understand what I am doing...) I am pulling data from an unstructured data souce with variable number of items per record but I need to process the data in fixed arrays. Anyway, I have parsed each record into a tab "1" "2" "3" and so on.

The sheet I am creating is full of matrix arrays of data and the data is fetched from arrays of data in the worksheet tabs '1' '2' '3' etc. - so there is a massive duplication of arrays of formulae.

I am analyising the data from each record and cross adding for each record.

In each repetition of these arrays I am refrencing the same cell coordinates (such as B3, B4, B5 ... C3, C4, C5 ... etc.

However, they are fetched from different tabs and so after I copy an array, I need to search and replace the worksheet tab names.

So, for example, I need to do search and replace for a block (9 x 16) - 144 elements):

=IF('1'!B$3="","n/a",'1'!B$3)   ...  =IF('1'!J$3="","n/a",'1'!J$3)
           ...                                   ...
=IF('1'!B$18="","n/a",'1'!B$18) ...  =IF('1'!J$18="","n/a",'1'!J$18)

There are sixteen such blocks (actually 32, for weighting)

If I copy this array and paste 15 times (making 16 identical arrays, each of 144 cells = 2,304 cells.

So, for the second block, I want to do a global search and replace of the part of the forulae that calls up sub-worksheet 2, 3, 4, 5 ... 16 for each of the 16 blocks.

So, the string I am searching for is '1' - to be replaced by '2' for the second block - by '3' for the third block, and so on.

I have done this kind of mass replacement of elements within a formula - but this does not seem to be possible anymore - not at least any method I have tried so far.

In the past it was possible to do this without clicking on [Show Formulas] - but I have tried to do it without showing formulas and when showing formulas - but it makes no difference - I always get the same response:

This spreadsheet is not protected in any way.

Can anyone suggest a soliution to replace '1' with (say) '9' in the above arrays of formulae?
🤔
~~

Reasons:
  • Blacklisted phrase (0.5): I need
  • RegEx Blacklisted phrase (2.5): Can anyone suggest
  • RegEx Blacklisted phrase (1): I want
  • Long answer (-1):
  • Has code block (-0.5):
  • Contains question mark (0.5):
  • Low reputation (1):
Posted by: Enquire

79136256

Date: 2024-10-29 08:00:44
Score: 7 🚩
Natty: 6.5
Report link

@Jeremy - From where this "useGLTF" is imported. I am also stuck in the same scenario.

Reasons:
  • RegEx Blacklisted phrase (1.5): I am also stuck
  • Low length (1.5):
  • No code block (0.5):
  • User mentioned (1): @Jeremy
  • Single line (0.5):
  • Looks like a comment (1):
  • Low reputation (1):
Posted by: Jai

79136255

Date: 2024-10-29 07:59:44
Score: 1
Natty:
Report link

Faker is using PHP's DateTime class and doesn't use Carbon (which extends DateTime) in any way.

As the model factory is only used in the test suites, you can add a parameter to withApprovedPermit() where you can provide a DateTime object.

Or you can set the Date of the objects manually after creation (provided you have the required setters)

Reasons:
  • No code block (0.5):
  • Low reputation (0.5):
Posted by: ikyuchukov

79136254

Date: 2024-10-29 07:59:44
Score: 1.5
Natty:
Report link
db.collection.find({desired_conditions}).limit(postive_int)

here you just need to replace positive_int with number of results you want returned

Reasons:
  • Low length (1):
  • Has code block (-0.5):
  • Low reputation (1):
Posted by: Dylan Fernandes

79136253

Date: 2024-10-29 07:58:43
Score: 2.5
Natty:
Report link

After i took 2 days to catch the issue :( Finally : check your drawable file and delete any svg image (xml images) that exceed 50Kb its work for me :)

Reasons:
  • Blacklisted phrase (1): :(
  • Low length (1):
  • No code block (0.5):
Posted by: Osama Ibrahim

79136248

Date: 2024-10-29 07:56:43
Score: 3.5
Natty:
Report link

In git 17.5 web UI, you will find the MAX push size option under Settings/Repository/Push_Rules. It is the very last option.

https://docs.gitlab.com/17.5/ee/user/project/repository/push_rules.html

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

79136246

Date: 2024-10-29 07:54:42
Score: 1
Natty:
Report link

Yes, I cannot believe why is it complicated with DRF. Just use the django view.

from django.http import JsonResponse
from django.views import View


class PayloadSignatureVerifier(View):
    @staticmethod
    def post(request):
        # This here is raw binary content
        print(request.body)

        return JsonResponse({'message': 'Successful.'})
Reasons:
  • Blacklisted phrase (0.5): I cannot
  • Has code block (-0.5):
  • Low reputation (1):
Posted by: Sudantha Athauda

79136244

Date: 2024-10-29 07:53:42
Score: 0.5
Natty:
Report link

I had a similar problem regarding the white page in the browser, but solved it by clearing the browser's cache. Then it worked. I hope it helps you.

Reasons:
  • Whitelisted phrase (-1): hope it helps
  • Whitelisted phrase (-1): it worked
  • Low length (1):
  • No code block (0.5):
  • Single line (0.5):
  • Low reputation (0.5):
Posted by: mikal

79136237

Date: 2024-10-29 07:51:41
Score: 1.5
Natty:
Report link

Try adding this to the release branch configuration:

prevent-increment-of-merged-branch-version: true
Reasons:
  • Low length (1):
  • Has code block (-0.5):
  • Low reputation (1):
Posted by: Jody Agana

79136235

Date: 2024-10-29 07:50:41
Score: 5.5
Natty:
Report link

Why are you setting value of "pref.biometric_enable" in onNavigationItemSelected? Aren't you already doing it in setOnToggledListener?

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

79136229

Date: 2024-10-29 07:48:40
Score: 1
Natty:
Report link

In my case I updated gradle from 7.5 to 8.9 when this occured.

Adding this line to the android\app\proguard-rules.pro file helped:

-dontwarn com.google.android.play.core.splitcompat.SplitCompatApplication
Reasons:
  • Low length (0.5):
  • Has code block (-0.5):
  • Low reputation (1):
Posted by: Vojta Maiwald

79136223

Date: 2024-10-29 07:46:40
Score: 1.5
Natty:
Report link

Yesterday I was trying to install PostgreSQL 17, the latest version. There I could not find the EDB Language Pack. I looked up around for the solution, didn't find the solution anywhere. Then I emailed the author Anthony DeBarros, of the book I'm following "Practical SQL, 2nd edition". He suggested to install the previous version, or wait until the developers add EDB Language Pack to PostgreSQL 17. So, I installed the previous version, PostgreSQL 16.4.2. And guess what, the package was there in the Stack Builder.

Thanks to this wonderful author, Mr. Anthony DeBarros.

Reasons:
  • Blacklisted phrase (0.5): Thanks
  • Long answer (-0.5):
  • No code block (0.5):
  • Low reputation (1):
Posted by: Sifat

79136218

Date: 2024-10-29 07:44:40
Score: 2.5
Natty:
Report link

it works for me change vesrion of solc in truffle-config.js to 0.8.19 and solidity file

Reasons:
  • Whitelisted phrase (-1): works for me
  • Low length (1.5):
  • No code block (0.5):
  • Single line (0.5):
  • Low reputation (1):
Posted by: Khairul Aswad

79136213

Date: 2024-10-29 07:42:39
Score: 2
Natty:
Report link

This is Zornitsa from BALKAN App technical support team.

It is still impossible, but now we are working on the new implementation, where you will be able to see all the nodes.

Reasons:
  • Low length (1):
  • No code block (0.5):
  • Low reputation (0.5):
Posted by: Zorry

79136195

Date: 2024-10-29 07:36:38
Score: 1.5
Natty:
Report link

try by adding 'e.Handled=true;' the following at Form_KeyDown event

private void Form_KeyDown(object sender, KeyEventArgs e)
    {
        if (e.Control && e.KeyCode == Keys.S)
        {
            e.Handled=true;
            e.SuppressKeyPress = true;
            SaveChanges();
        }
    }
Reasons:
  • Low length (0.5):
  • Has code block (-0.5):
  • Unregistered user (0.5):
  • Low reputation (1):
Posted by: Abhisheka Sharma P

79136189

Date: 2024-10-29 07:33:37
Score: 3.5
Natty:
Report link

Solved on version 8.0.2 via issue #118

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

79136188

Date: 2024-10-29 07:33:37
Score: 1.5
Natty:
Report link
audio = IPython.display.Audio(waveform, rate=sample_rate, autoplay=True)
with open(f"{output_wav}.wav", "wb") as f:
   f.write(audio.data)
Reasons:
  • Low length (1):
  • Has code block (-0.5):
  • Low reputation (1):
Posted by: Rafael

79136187

Date: 2024-10-29 07:32:37
Score: 1
Natty:
Report link

I got the same error message for "please make sure that outDir in your tsconfig is neither '' or '.'. You can also configure Jest config option transformIgnorePatterns to inform ts-jest to transform"

Hope to share how I solved this for Fastify and Typescript users.

Reasons:
  • Blacklisted phrase (1): How to solve
  • Whitelisted phrase (-2): I solved
  • RegEx Blacklisted phrase (1.5): How to solve?
  • Long answer (-0.5):
  • Has code block (-0.5):
  • Contains question mark (0.5):
  • Low reputation (1):
Posted by: ann ann

79136184

Date: 2024-10-29 07:32:37
Score: 3
Natty:
Report link

You might want to check out this complete tutorial on Image Upload to Strapi. Happy reading 💪.

https://strapi.io/blog/image-upload-to-strapi-via-rest-api-with-nextjs-and-postman

Reasons:
  • Probably link only (1):
  • Low length (1):
  • No code block (0.5):
  • Low reputation (0.5):
Posted by: Onyejiaku Theodore Kelechukwu

79136183

Date: 2024-10-29 07:31:34
Score: 7 🚩
Natty: 4
Report link

Did you find a solution? In my case the "{ASSEMBLY NAME}.styles.css" is generated, but it is an html file instead of a css file.

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

79136182

Date: 2024-10-29 07:30:34
Score: 3
Natty:
Report link

You might want to check out this complete tutorial on Image Upload to Strapi. Happy reading 💪.

https://strapi.io/blog/image-upload-to-strapi-via-rest-api-with-nextjs-and-postman

Reasons:
  • Probably link only (1):
  • Low length (1):
  • No code block (0.5):
  • Low reputation (0.5):
Posted by: Onyejiaku Theodore Kelechukwu

79136174

Date: 2024-10-29 07:28:33
Score: 0.5
Natty:
Report link

The reason was a malformed bearer token.

This is because I read the token from a file using

let master_key_file = env::var("MEILI_MASTER_KEY_FILE").expect("MEILI_MASTER_KEY_FILE must be set");
let mut master_key = String::new();
File::open(master_key_file).await.unwrap().read_to_string(&mut master_key).await.unwrap();

which magically appends a newline to the end of the string in the file. This needs to be stripped off.

Reasons:
  • Has code block (-0.5):
  • Self-answer (0.5):
  • Low reputation (0.5):
Posted by: NoBullsh1t

79136168

Date: 2024-10-29 07:26:33
Score: 1.5
Natty:
Report link

Connecting api management with ingress controller with private ip

It's not always mandatory to have public IP for Ingress Controller.

Instead, you can integrate your APIM instance into same kind of vnet as the cluster and configure it for private communication.

As per the Microsoftdoc using the Standard v2 or Premium tier of APIM, which supports virtual network (VNet) integration necessary for private communication is possible.

Refer:

https://learn.microsoft.com/en-us/azure/aks/concepts-network-ingress?source=recommendations

https://github.com/MicrosoftDocs/azure-docs/blob/main/articles/api-management/api-management-kubernetes.md

How to connect api management with ingress controller with private ip? - Microsoft Q&A

Reasons:
  • Probably link only (1):
  • No code block (0.5):
Posted by: Vinay B

79136163

Date: 2024-10-29 07:24:32
Score: 0.5
Natty:
Report link

When I tried to analyze my website pages, the same error occurred on the pagespeed.web.dev online analyzer.

However, after looking at the above comment Pham Tung, I checked my SSL certificate. Interestingly, the SSL cert showed AVG as the provider.

I disabled AVG anti-virus Web Shield, the original SSL Cert loaded after page refresh, and used the Chrome Lighthouse to analyze the page and online tool too, it worked fine.

Reasons:
  • Whitelisted phrase (-1): it worked
  • No code block (0.5):
  • Starts with a question (0.5): When I
  • Low reputation (0.5):
Posted by: Iqtidar Ali

79136156

Date: 2024-10-29 07:19:31
Score: 3.5
Natty:
Report link

i USES THE gunicorn workers for restarting every 1000 requests. so every worker running on kernel level and assign a unique pid for every worker. so when worker is restarted after a 1000 request then before restart it checks any background task is running or not if not then it will be restart. so my question is

if they check the background task then why he closed the db object for previous requests ??

my memory consumption issue is fix by gunicorn but i face this new issue !!!

some error

(psycopg2.DatabaseError) error with status PGRES_TUPLES_OK and no message from the libpq

(psycopg2.OperationalError) server closed the connection unexpectedly This probably means the server terminated abnormally before or while processing the request.

any suggestion for this issue (guvicorn related)

Reasons:
  • RegEx Blacklisted phrase (2): any suggestion
  • Long answer (-0.5):
  • No code block (0.5):
  • Contains question mark (0.5):
  • Low reputation (1):
Posted by: softtech_yadu