79109491

Date: 2024-10-21 09:53:56
Score: 1
Natty:
Report link

ok, I had some inspiration after posting to SO (and examining the excellent answers I received, thanks guys!). I think this solution is easy to understand and is usable in any situation like this. It should also be quite efficient because it only needs to do one lookup for each student.

Basically, the whole problem is that you can't return multiple columns in a column based subquery... Well, I can just jam all the columns I want into one JSON column and then extract them later:

select 
  topScore.name,
  topScore.topScoreJson ->> 'score' as topScore,
  topScore.topScoreJson ->> 'day' as topScoreDay
from (  
  select
    student.name,
    (
      select
        json_object(
          'score', testScore.score,
          'day', testScore.day
        )  
      from 
        testScore 
      where 
        testScore.studentId = student.id
      order by 
        score desc
      limit 1  
    ) as topScoreJson
  from
    student
) as topScore   
order by
  topScore desc;
Reasons:
  • Blacklisted phrase (0.5): thanks
  • Whitelisted phrase (-1): solution is
  • RegEx Blacklisted phrase (1): I want
  • Long answer (-0.5):
  • Has code block (-0.5):
  • Self-answer (0.5):
  • Low reputation (1):
Posted by: Bill F.

79109480

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

It seems not related to your project/IDE, what's the Sync Folders Pro used for?

Have a try to save the solution in other paths.

Reasons:
  • Low length (1):
  • No code block (0.5):
  • Contains question mark (0.5):
  • Low reputation (1):
Posted by: LuckyBricks

79109476

Date: 2024-10-21 09:47:54
Score: 2
Natty:
Report link

I ended solving this, by realizing that this wasn't a code issue. It was me being a dummy issue. I was calling sqlcmd on the remote host, but forgot to add the instance!

The variables were being declared and read correctly all along!

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

79109475

Date: 2024-10-21 09:47:54
Score: 4.5
Natty: 5
Report link

...take a look here, it will help you ! https://docs.rapidapi.com/docs/consumer-quick-start-guide

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

79109471

Date: 2024-10-21 09:45:53
Score: 4.5
Natty:
Report link

I checked this version of Python is no longer supported. enter image description here

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

79109470

Date: 2024-10-21 09:45:53
Score: 1.5
Natty:
Report link

It sounds like the bottom padding issue with your BottomAppBar might be linked to how the layout interacts with system elements like the navigation bar or gesture controls. This is a common issue when using the BottomAppBar component. Here are some practical steps you can try:

make sure your CoordinatorLayout or BottomAppBar is set up to account for system insets. You can do this by adding android:fitsSystemWindows="true" to the CoordinatorLayout:

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

79109469

Date: 2024-10-21 09:45:53
Score: 1
Natty:
Report link

There is no API that allows you to programatically create Actions. Modifying the JSON and pushing that way puts your assistant in an unsupported configuration.

Reasons:
  • Low length (1):
  • No code block (0.5):
  • Single line (0.5):
  • High reputation (-1):
Posted by: Simon O'Doherty

79109468

Date: 2024-10-21 09:44:53
Score: 2
Natty:
Report link

In my case, it was due to the .env file being Git-ignored, and the following checkbox was set in the settings:

enter image description here

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

79109459

Date: 2024-10-21 09:41:52
Score: 1
Natty:
Report link

In Angular 18, this works for me:

ng g m mymod

ng g c mymod/mycomp --standalone=false --module=mymod

Reasons:
  • Whitelisted phrase (-1): works for me
  • Low length (1):
  • No code block (0.5):
  • Low reputation (0.5):
Posted by: user1883467

79109452

Date: 2024-10-21 09:40:52
Score: 1
Natty:
Report link

render creates a static document i.e. not a running shiny app. You need to use rmarkdown::run("test.Rmd").

Reasons:
  • Low length (1):
  • Has code block (-0.5):
  • Single line (0.5):
Posted by: smartse

79109447

Date: 2024-10-21 09:39:52
Score: 1
Natty:
Report link

1st: Remove the Derivated Data of the project, and then:

2nd in Build Settings go to: 'Debug Information Format' must definitely set to 'DWARF with dSYM File' and 'Generate Debug Symbols' must be set to 'YES'.

Reasons:
  • Low length (0.5):
  • No code block (0.5):
Posted by: Leandro Ariel

79109436

Date: 2024-10-21 09:36:51
Score: 0.5
Natty:
Report link

I you are using Swashbuckle you can customize it by providing a CustomSchemaIds:

services.AddSwaggerGen(options =>
{
  // ...
  options.CustomSchemaIds(type => "your convention here");
}

You can for example inspect the flag type.IsGenericType and decide what to return.

Reasons:
  • Low length (0.5):
  • Has code block (-0.5):
  • Low reputation (0.5):
Posted by: Giacomo De Liberali

79109429

Date: 2024-10-21 09:34:50
Score: 2.5
Natty:
Report link

You need to install Visual Studio. This is different to Visual Studio Code.

https://visualstudio.microsoft.com/downloads/

Ensure that you select 'Desktop development with C++' and probably 'Mobile development with C++'

Reasons:
  • Low length (1):
  • No code block (0.5):
  • Low reputation (1):
Posted by: Roscoe - ROSCODE

79109425

Date: 2024-10-21 09:33:50
Score: 1
Natty:
Report link
@admin.register(ExampleModel)
class ExampleModel(admin.ModelAdmin):
    list_display = ('name', 'last_downloaded', 'owner','created_at')  
    ordering = ('-last_downloaded',)
Reasons:
  • Low length (1):
  • Has code block (-0.5):
  • Low reputation (0.5):
Posted by: Serkan

79109419

Date: 2024-10-21 09:32:49
Score: 0.5
Natty:
Report link

You can combine the conditions using &:

from mongoengine import Q

dt_str = "2024-01-03 4:00:00"
contains_word = "your_specific_word"

query = Q(**{f'playtime__{dt_str}__exists': True}) & Q(**{f'playtime__{dt_str}__contains': contains_word})
entries = GameDoc.objects(query)
Reasons:
  • Low length (0.5):
  • Has code block (-0.5):
  • Low reputation (0.5):
Posted by: Nova

79109408

Date: 2024-10-21 09:29:48
Score: 5.5
Natty: 5.5
Report link

completely unrelated but I saw you worked on longformers. can i speak to you about that?

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

79109404

Date: 2024-10-21 09:28:47
Score: 2
Natty:
Report link

An idea could be to slightly refactor your code to use durable functions instead. You'd start the orchestrator when the user starts the workflow, start all the child instances from the orchestrator and, if needed, cancel the workflow by terminating all the child instances.

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

79109395

Date: 2024-10-21 09:26:47
Score: 1.5
Natty:
Report link

After about 20 messages, the Google team finally sent me a screenshot of the OAuth screen they test and it turned out they have been testing a different app.

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

79109393

Date: 2024-10-21 09:25:47
Score: 2.5
Natty:
Report link

I guess currently (Oct, 2024) this is not supported. I've bypassed that by defining function in Snowflake which do the COPY INTO maneuver and then calling it from native query in java.

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

79109392

Date: 2024-10-21 09:24:46
Score: 3
Natty:
Report link

You just have to uninstall the Appium settings app, then the appium will automatically install this. This resolved my issue as I was using 2 appium 1.8.1 and 2.0.+

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

79109391

Date: 2024-10-21 09:24:46
Score: 1.5
Natty:
Report link

I think the issue is here could be with styling. You have pretty complex UI with nested Grid's. On top of that you are using ImageButton. Try to add BackgroundColor to image buttons. This will reveal the actual position of image button in the view. There is chance that Image of image button can be arranged improperly in the view.

You can also check setting the ImageButton's Source normally and still the issue persists or not ...Source="image.png"

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

79109364

Date: 2024-10-21 09:18:45
Score: 0.5
Natty:
Report link

Power Query will always stream data from source - see here for a fuller understanding.

https://www.youtube.com/watch?v=AIvneMAE50o

The only way around this is to use Table.Buffer or List.Buffer to temporarily cache the data.

For this line, then presumably you have another query named Project_List which in turn gets your data from the workbook?

Source = Project_List,
Reasons:
  • Blacklisted phrase (1): youtube.com
  • Has code block (-0.5):
  • Ends in question mark (2):
  • High reputation (-2):
Posted by: davidebacci

79109360

Date: 2024-10-21 09:17:45
Score: 2
Natty:
Report link

Failure [DELETE_FAILED_USER_RESTRICTED] Failure [DELETE_FAILED_USER_RESTRICTED] Success Failure [INSTALL_FAILED_VERSION_DOWNGRADE: Downgrade detected: Update version code 2217 is older than current 8942] ❌

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

79109355

Date: 2024-10-21 09:16:45
Score: 2.5
Natty:
Report link

I have one more question

try
{
    var batchResult = await context.CallActivityAsync<BatchResultZara>("FetchZaraProductsBatch", new BatchRequest
    {
        Limit = limit,
        Offset = input.Offset,
        Query = input.Section,
        Section = input.Section,
        CorrelationId = context.InstanceId
    }, options: options);

    isLastPage = batchResult.IsLastPage;
    input.Offset = batchResult.LastPickedPosition;

    totalClothes = await context.CallActivityAsync<int>("AccumulateTotalClothes", new AccumulateRequest
    {
        PreviousTotal = totalClothes,
        BatchTotal = batchResult.ItemsSearched
    });

    if (!isLastPage)
    {
        context.ContinueAsNew(input); // This is the important bit.
    }
}
catch (Exception ex)
{
    logger.LogError($"Failed to fetch batch after retries. Error: {ex.Message}");
    throw;
}

// After all batches are processed, log via an activity function to ensure it's called once
await context.CallActivityAsync("LogFinalProcessingResults", new ProcessingResultInput
{
    Section = input.Section,
    TotalClothes = totalClothes
});

I want to accumulate all imported results and log only once at the end of durable but right now it seems that it is logged every time, how to achive that? @Andrew B

Reasons:
  • RegEx Blacklisted phrase (1): I want
  • Long answer (-1):
  • Has code block (-0.5):
  • Contains question mark (0.5):
  • User mentioned (1): @Andrew
  • Self-answer (0.5):
  • Low reputation (1):
Posted by: Redduke

79109351

Date: 2024-10-21 09:15:44
Score: 0.5
Natty:
Report link

Make sure the file where you're calling let stream = await renderToStream(<TestPDF message={message} />) has the .tsx extension. If the file has a .ts extension, you’ll get the error: 'TestPDF' refers to a value, but is being used as a type here. Did you mean 'typeof TestPDF'?

As a rule of thumb:

  1. Use .ts for files containing only TypeScript.
  2. Use .tsx for files containing JSX.
Reasons:
  • Has code block (-0.5):
  • Contains question mark (0.5):
  • Low reputation (0.5):
Posted by: Bruno Kawka

79109341

Date: 2024-10-21 09:14:44
Score: 3.5
Natty:
Report link

I don't like these "shorthand" ways of saving a bit of typing at the cost of making the content harder to understand.

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

79109337

Date: 2024-10-21 09:13:44
Score: 1
Natty:
Report link

This error was resolved after passing access verification for the business assigned to the app. Business had already been verified by the time of getting error. The app type was Business, 'instagram_business_basic' was the only approved permission with advanced access. The integration type was 'API setup with Instagram Login'.

Reasons:
  • Low length (0.5):
  • Has code block (-0.5):
  • Single line (0.5):
  • Low reputation (0.5):
Posted by: Slava Mvv

79109334

Date: 2024-10-21 09:13:44
Score: 4.5
Natty:
Report link

rightFrame1 = tk.Frame(splitter1, bg='yellow')

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

79109326

Date: 2024-10-21 09:10:41
Score: 7.5 🚩
Natty: 6.5
Report link

@Abey Bruck brother is that eas paid or free ?

Reasons:
  • Low length (1.5):
  • No code block (0.5):
  • Ends in question mark (2):
  • User mentioned (1): @Abey
  • Single line (0.5):
  • Looks like a comment (1):
  • Low reputation (1):
Posted by: Zahid Maikan

79109321

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

I figured it out. Actually "get_stylesheet_uri()" loads ./style.css, so the path directs to the file. I would need to go to a higher hierarchy or simply use "get_template_directory_uri()".

As far as i understood, it could be a problem if someone would make a child-theme but for me it workes fine :).

Reasons:
  • Whitelisted phrase (-2): I figured it out
  • Low length (0.5):
  • No code block (0.5):
  • Self-answer (0.5):
  • Low reputation (1):
Posted by: stelifant

79109320

Date: 2024-10-21 09:08:40
Score: 3
Natty:
Report link

I had similar issue and figured out to make it work. Here are the steps:

  1. Retrieve Access Token

export access_token=$(curl -s -X POST -u "<client_id>:<client_secret>" \ https://bitbucket.org/site/oauth2/access_token \ -d grant_type=client_credentials -d scopes="repository" | jq --raw-output '.access_token')

Replace <client_id> and <client_secret> with your OAuth consumer credentials.

  1. Get Branch Restrictions

curl --request GET \ --url 'https://api.bitbucket.org/2.0/repositories///branch-restrictions' \ --header 'Authorization: Bearer '${access_token}'' \ --header 'Accept: application/json'

Replace and accordingly. It will print out JSON response of all available branch restrictions for the repository. Find the branch and restriction_id for which to make the next changes.

  1. Update Branch Restriction

curl --request PUT \ --url 'https://api.bitbucket.org/2.0/repositories///branch-restrictions/<restriction_id>' \ --header 'Authorization: Bearer '${access_token}'' \ --header 'Accept: application/json' \ --header 'Content-Type: application/json' \ --data '{ "type": "branchrestriction", "users": [ { "type": "user", "username": "" } ], "groups": [] }'

Replace , , <restriction_id>, and as needed. Funny thing here is that, in username, you can actually specify the workspace name, which will add your workspace "user" to the restrictions and pushback will work as intended. Please let me know if you made it work, I'm happy to assist you on this, as I know how pain it was for me to figure it out.

Reasons:
  • RegEx Blacklisted phrase (2.5): Please let me know
  • Long answer (-1):
  • No code block (0.5):
  • Low reputation (1):
Posted by: HannTheSolo

79109304

Date: 2024-10-21 09:03:39
Score: 2.5
Natty:
Report link

on 64 bit there are some command-size-names else. and there are asm-procedures which must be called, perhaps not for this "Less". further the variable-size-names are rAX,...

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

79109298

Date: 2024-10-21 09:01:38
Score: 3
Natty:
Report link

The defineCustomElements is no longer works during the build and must be bypassed using the www-workaround. For this reason, I have created a newer stencil-storybook-boilerplate.

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

79109294

Date: 2024-10-21 09:00:38
Score: 3.5
Natty:
Report link

It seems like it's not currently possible, there is an open issue for this feature: https://gitlab.com/gitlab-org/gitlab/-/issues/331356

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

79109292

Date: 2024-10-21 08:59:37
Score: 1
Natty:
Report link

It's possible to do this by code, you have to use "Switch" for both AppContext.SetSwitch:

AppContext.SetSwitch("Switch.System.Windows.Media.ShouldNotRenderInNonInteractiveWindowStation", false);
AppContext.SetSwitch("Switch.System.Windows.Media.ShouldRenderEvenWhenNoDisplayDevicesAreAvailable", true);

And this must be done before Initializing the Main Window! Works for .NET Framework and .NET 5++

Reasons:
  • Has code block (-0.5):
  • Unregistered user (0.5):
  • Low reputation (1):
Posted by: user27908041

79109288

Date: 2024-10-21 08:58:37
Score: 0.5
Natty:
Report link

Use a profiler like JProfiler or YourKit Java Profiler to look at the JDBC connections. IntelliJ can also be used to pause the execution and you can observe the stacks in the Hikari Threads. It depends on the constellation of you prod environment, but you might be able to setup an remote debugging session.

Reasons:
  • Low length (0.5):
  • No code block (0.5):
  • Single line (0.5):
  • High reputation (-1):
Posted by: Valerij Dobler

79109282

Date: 2024-10-21 08:56:36
Score: 0.5
Natty:
Report link

Entities should be as "simple" as possible. Avoid injecting services such as EntityManager in entities.

I would argue against the assumption that a simple service is overkill.

You may only be setting the status in one place at this moment, but what if you want to set the status elsewhere in the future? Having a service where you can simply do (from anywhere in your code);

$this->eventStatusService->setStatusDraft('draft');

Is easier, faster, better maintainable and doesn't go against best practices. As an example, it took a few seconds to write the service below, less time than it takes to open StackOverflow and write a new question.

class EventStatusService
{
    public function __construct(private EntityManagerInterface $entityManager) {}

    public function setStatusDraft(EventEntity $event): void
    {
        $draftStatus = $this->entityManager->getReference(EventStatusEntity::class, 1);
        $event->setStatus($draftStatus);
    }
}

For more info on Doctrine relations, setting-and-fetching data, see Symfony's docs: https://symfony.com/doc/current/doctrine/associations.html#more-information-on-associations

Reasons:
  • Blacklisted phrase (1): StackOverflow
  • Long answer (-1):
  • Has code block (-0.5):
  • Contains question mark (0.5):
  • Low reputation (0.5):
Posted by: Julian Koster

79109277

Date: 2024-10-21 08:55:36
Score: 3.5
Natty:
Report link

this one worked "@dotnet App.dll -r win-x86"

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

79109266

Date: 2024-10-21 08:50:35
Score: 1
Natty:
Report link

you can try it.

def encode_filename(filename:str) -> str:
    encoded_filename = base64.b64encode(filename.encode('utf-8')).decode('utf-8')
    return f'=?utf-8?B?{encoded_filename}?='

file_name = "Avent à à écouter.pdf"
print(encode_filename(file_name))    # =?utf-8?B?QXZlbnQgw6Agw6Agw6ljb3V0ZXIucGRm?=
Reasons:
  • Low length (0.5):
  • Has code block (-0.5):
  • Low reputation (1):
Posted by: KunKun Luo

79109264

Date: 2024-10-21 08:50:35
Score: 3
Natty:
Report link

You can just enter Min and Max, that worked for me

Reasons:
  • Whitelisted phrase (-1): worked for me
  • Low length (1.5):
  • No code block (0.5):
  • Unregistered user (0.5):
  • Single line (0.5):
  • Low reputation (1):
Posted by: user27907855

79109262

Date: 2024-10-21 08:49:35
Score: 2
Natty:
Report link

For me this happened because my class had only one member, which was static.

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

79109261

Date: 2024-10-21 08:49:35
Score: 1
Natty:
Report link

You can check the user's home directory using the getent passwd username command. To find a specific folder, like "ftp_folder," you can use the find command. If the directory is read-only, you may need to check the permissions and modify them if necessary.

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

79109239

Date: 2024-10-21 08:45:33
Score: 2
Natty:
Report link

Unlock the full potential of your AI models with GTS AI's premier image classification dataset. Our team delivers high-quality, accurate image classification datasets tailored to your specific needs. Enhance your machine learning projects with our scalable, efficient, and secure solutions. Partner with GTSAI to elevate your AI capabilities.

Reasons:
  • No code block (0.5):
  • Single line (0.5):
  • Low reputation (1):
Posted by: Globase Technology Solutions G

79109224

Date: 2024-10-21 08:42:32
Score: 5
Natty: 5.5
Report link

LOOKING FOR A LIFE PARTNER ? 🎉 Exciting News! 🎉

We're thrilled to share that our matrimony platform now offers personalized matchmaking services! Whether you're seeking a life partner or know someone who is, our expert team is here to assist. 🌟 Key Features:

Reasons:
  • Blacklisted phrase (0.5): Best regards
  • Blacklisted phrase (1): regards
  • Blacklisted phrase (1): the link below
  • Contains signature (1):
  • Long answer (-0.5):
  • No code block (0.5):
  • Contains question mark (0.5):
  • Low reputation (1):
Posted by: rekha

79109211

Date: 2024-10-21 08:39:31
Score: 1.5
Natty:
Report link

Vitest has a fileParallelism config setting that defaults to true. Set that to false in your vitest.config.ts file. Reference: https://vitest.dev/config/#fileparallelism

Reasons:
  • Low length (1):
  • Has code block (-0.5):
  • Single line (0.5):
  • Low reputation (0.5):
Posted by: Jacob Bowdoin

79109206

Date: 2024-10-21 08:39:31
Score: 1.5
Natty:
Report link

for dnf:

sudo dnf install chromium libXScrnSaver
Reasons:
  • Low length (1.5):
  • Has code block (-0.5):
  • Low reputation (0.5):
Posted by: Demetry Pascal

79109205

Date: 2024-10-21 08:38:31
Score: 0.5
Natty:
Report link

Starting from Python 3.12, the distutils module has been removed from the standard library. Any package that depends on it will fail to install.

You can either try installing pip install setuptools that may inlcude distutils or downgrade python to 3.11, or switch from node-sass to sass

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

79109204

Date: 2024-10-21 08:38:31
Score: 1.5
Natty:
Report link

Just give it time; Depending on your download speed it could take a while. It once took ~1 hour to do so. Very annoying that there's no progress indicator. Just grab a cup of tea and do something else in the meantime...

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

79109166

Date: 2024-10-21 08:27:28
Score: 1.5
Natty:
Report link

Laravel Horizon has a job to trim outdated jobs, but it works only after you start Horizon using the horizon Artisan command:

php artisan horizon
Reasons:
  • Low length (1):
  • Has code block (-0.5):
  • Low reputation (1):
Posted by: yburlakov

79109159

Date: 2024-10-21 08:24:28
Score: 2.5
Natty:
Report link

The answer can be found on GitHub here. The problem was following (answer from GitHub by Ladicek user):

... This is because your test sends the message and immediately stops; it doesn't wait for the processing to finish. When Quarkus stops, an exception like this can happen very easily (as well as a bunch of other exceptions). If you for example add Thread.sleep(5000) to the end of the @Test method, the exception isn't thrown. ...

Reasons:
  • No code block (0.5):
  • User mentioned (1): @Test
  • Self-answer (0.5):
  • Low reputation (0.5):
Posted by: joe_specimen

79109158

Date: 2024-10-21 08:24:27
Score: 5.5
Natty:
Report link

I have been looking for courses to learn on Clarifai

Can you help with the link to the udemy course I have searched to no avail

Reasons:
  • RegEx Blacklisted phrase (3): Can you help
  • Low length (1):
  • No code block (0.5):
  • Low reputation (1):
Posted by: Nkeiru Lois

79109153

Date: 2024-10-21 08:23:27
Score: 3
Natty:
Report link

I dont know if you want to pass the values from outside to inside by parametrizing any Non-presets values in launch.json.In my opinion, I think it's not a good idea but Hard-coding for your local paths. My projects were encountered the same situation just like your this question, and finally i found the best way to execuate my different debug versions is that set these different debug configure infos in launch.json before and choose the options just like the following picture.enter image description here

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

79109142

Date: 2024-10-21 08:18:25
Score: 6
Natty: 7.5
Report link

same problem here, any solutions !!

Reasons:
  • Blacklisted phrase (1.5): any solution
  • RegEx Blacklisted phrase (1): same problem
  • Low length (2):
  • No code block (0.5):
  • Single line (0.5):
  • Low reputation (0.5):
Posted by: TLEMCANI Abdelkadir

79109131

Date: 2024-10-21 08:16:24
Score: 3
Natty:
Report link

I see that you have sent incorrectly formatted code, but even in this part I do not understand why you compare the same ID for inequality? Such a comparison will always give you false and the code below will not be executed

Reasons:
  • Low length (0.5):
  • No code block (0.5):
  • Contains question mark (0.5):
  • Single line (0.5):
  • Low reputation (1):
Posted by: Дмитрий Кузяев

79109127

Date: 2024-10-21 08:15:24
Score: 1
Natty:
Report link

test this:

import org.springframework.data.repository.query.Param;
@Query(value = "SELECT q.id FROM question q Where q.category=:category ORDER BY radiant LIMIT :numQ")
    List<Integer> findRandomQuestionsByCategory(@Param("category")String category,@Param("numQ") int numQ);
Reasons:
  • Low length (0.5):
  • Has code block (-0.5):
  • Low reputation (1):
Posted by: matin mojgani

79109110

Date: 2024-10-21 08:09:23
Score: 0.5
Natty:
Report link

To add to the above answers - there's no need to create a PAT if your pipeline build agent has sufficient permissions.

- checkout: self
    persistCredentials: true
- bash: |
      git config --global user.email "[email protected]"
      git config --global user.name "Azure DevOps Pipeline"
    name: GitConfig
- pwsh: |
   git checkout -b MyBranch main
   New-Item test.txt //add something new
   git add test.txt
   git commit -m "Test commit"
   git push origin "HEAD:MyBranch"
   az repos pr create <INSERT ARGS HERE>
 env:
   AZURE_DEVOPS_EXT_PAT: $(System.AccessToken)

The code required comes from the following sources

Reasons:
  • Probably link only (1):
  • Long answer (-0.5):
  • Has code block (-0.5):
  • Low reputation (0.5):
Posted by: Christopher Dunderdale

79109102

Date: 2024-10-21 08:07:22
Score: 1
Natty:
Report link

You are out of RAM.

Error R14 (Memory quota exceeded)

https://docs.celeryq.dev/en/main/userguide/optimizing.html

Reasons:
  • Probably link only (1):
  • Low length (1.5):
  • No code block (0.5):
  • High reputation (-2):
Posted by: baklarz2048

79109091

Date: 2024-10-21 08:06:21
Score: 2
Natty:
Report link

I needed one more step than Imad to make it work:

sudo chmod 600 path-to-keyfile

This is because, according to the mongo doc, "On UNIX systems, the keyfile must not have group or world permissions."

Reasons:
  • Blacklisted phrase (0.5): I need
  • Low length (1):
  • Has code block (-0.5):
  • Low reputation (1):
Posted by: TheBigRoomXXL

79109086

Date: 2024-10-21 08:03:21
Score: 3.5
Natty:
Report link

can you set a tımer that expıres after the specıfıed duratıon to resume executıon or rather regıster a call cack functıon that wıll be executed when sleep ıs completed

Reasons:
  • Low length (1):
  • No code block (0.5):
  • Single line (0.5):
  • Starts with a question (0.5): can you
  • Low reputation (1):
Posted by: Mlungisi Nkomo

79109085

Date: 2024-10-21 08:03:21
Score: 2
Natty:
Report link

The previous answer is correct but the right import is

import vtk
Reasons:
  • Low length (1.5):
  • Has code block (-0.5):
  • Low reputation (1):
Posted by: Mauro Munerato

79109084

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

Now I found how to fix it. Just simply add focusRestorer to modifier can fix it like:

Box(modifier = Modifier.focusRestorer()) {...}

We can also add a focusRequester to focusRestorer, in case of using our own focus logic.

Reasons:
  • Low length (0.5):
  • Has code block (-0.5):
  • Self-answer (0.5):
  • Low reputation (1):
Posted by: Joseph Hsiao

79109082

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

mingw is not supported in this library.

it comes with the dependencies it needs, use wsl, clang-cl or msvc 2022.

for msvc 2022 there is a template project which is ready to go, you do not need to install dependencies: https://github.com/brainboxdotcc/windows-bot-template

For wsl and clang-cl there is a cmake based template project: https://github.com/brainboxdotcc/templatebot

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

79109073

Date: 2024-10-21 08:00:20
Score: 1.5
Natty:
Report link

I had the same issue, tried clearing cache, installing VSIX extension manually, and even a fresh install of VS Code.

Turns out my VPN was causing this issue for some reason.

Reasons:
  • Whitelisted phrase (-1): I had the same
  • Low length (1):
  • No code block (0.5):
  • Low reputation (1):
Posted by: Az21

79109068

Date: 2024-10-21 07:59:20
Score: 3
Natty:
Report link

Have you tried SMB over QUIC? More about it in this article by Didier Van Hoye, Microsoft MVP: https://t.ly/abJkW

Reasons:
  • Blacklisted phrase (1): this article
  • Whitelisted phrase (-1): Have you tried
  • Low length (1):
  • No code block (0.5):
  • Contains question mark (0.5):
  • Low reputation (1):
Posted by: ShakeThe.net

79109058

Date: 2024-10-21 07:58:20
Score: 1.5
Natty:
Report link

More secure cookies with Django >= 4.2:

# set cookie with **Request**:
request.get_signed_cookie("name")

# get cookie with **Response**:
response = render(request, "index.html")
response.set_signed_cookie("name", "value")
return response

refer: https://docs.djangoproject.com/en/5.1/ref/request-response/#django.http.HttpResponse.set_cookie

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

79109045

Date: 2024-10-21 07:53:19
Score: 0.5
Natty:
Report link

The @enduml tag was missing and the warning not too precise.

The following works with the vscode extension as well as the command line java app:

@startuml example

bob->anne: hello

@enduml
Reasons:
  • Low length (0.5):
  • Has code block (-0.5):
  • Self-answer (0.5):
Posted by: Sascha

79109041

Date: 2024-10-21 07:51:18
Score: 1.5
Natty:
Report link

JavaScript does not support interfaces. See for more information: Does JavaScript have the interface type (such as Java's 'interface')?

You can use TypeScript, which does support interfaces: https://www.typescriptlang.org/docs/handbook/interfaces.html

Reasons:
  • Whitelisted phrase (-1.5): You can use
  • Probably link only (1):
  • Low length (1):
  • No code block (0.5):
  • Low reputation (0.5):
Posted by: Konlanx

79109027

Date: 2024-10-21 07:48:15
Score: 7 🚩
Natty: 5.5
Report link

Oğuzhan Öztürk

I am trying to achieve exactly the same as you. I can understand your metadata sheet perfectly - what I can't get to work is the creating of the groups in the spreadsheet itself as you are missing an essential step.

You have 4 queries/groups (PROJECT, SET1, SET2, SET3)

You are using the NAME column from PROJECT group You are using TASK_COUNT column from the other 3 groups.

You are only defining the PROJECT group in your Excel sheet ?

There is a step where you highlight columns in Excel and click Publisher->Repeating Group yes? Can you explain what you did here please? Did you highlight all 4 columns and make them just the PROJECT group for example?

Thanks very much

Reasons:
  • Blacklisted phrase (0.5): Thanks
  • Blacklisted phrase (1): I am trying to
  • RegEx Blacklisted phrase (2.5): Can you explain what you
  • Long answer (-0.5):
  • No code block (0.5):
  • Ends in question mark (2):
  • Low reputation (1):
Posted by: Scott Hillier

79109021

Date: 2024-10-21 07:46:14
Score: 1
Natty:
Report link

I was facing a similar issue with a 308 permanent redirect. This is because I was hosting on Vercel, which uses a 308 redirect to route traffic from domain.com to www.domain.com. My Stripe webhook was pointing at domain.com, which meant that Vercel responded with a 308. After changing the Stripe webhook's endpoint to www.domain.com, event deliveries started succeeding.

Reasons:
  • No code block (0.5):
  • Single line (0.5):
Posted by: Badr B

79109019

Date: 2024-10-21 07:45:14
Score: 9
Natty: 7.5
Report link

Working on a similar sort of functionality. Have you found any solution? And yes server side approach is the best approach for achieving transparency and extensive logic.

Reasons:
  • Blacklisted phrase (1.5): any solution
  • RegEx Blacklisted phrase (2.5): Have you found any solution
  • RegEx Blacklisted phrase (2): any solution?
  • Low length (1):
  • No code block (0.5):
  • Contains question mark (0.5):
  • Low reputation (1):
Posted by: Osama Mughal

79109012

Date: 2024-10-21 07:44:14
Score: 2
Natty:
Report link

After a couple days of researching I would resume the possible solutions:

1) :host selector

Like @Dixit and @JSON Derulo posted, is it possible to use the :host selector to display: content, or by adding the required style we want to use in the host HTML element.

2) host {...} properties

In the Angular 18 official docs they talk about this topic pretty explicitly. I suggest also this ng-conf video which is about exactly the problem of having a DOM with too many not-required elements.

At the end the practical solution I needed was something like:

@Component({
  selector: 'helloworld',
  standalone: true,
  imports: [],
  templateUrl: './helloworld.component.html',
  styleUrl: './helloworld.component.scss',
  host: {
    '[class.hello-1]': 'toggle()', // in case a toggle is needed for the class named hello-1
    '[class]': 'hello-2',          // in case we want just to assign a class
  }
})
export class HelloWorldComponent {
  toggle = signal(false);
}

3) @HostBinding

Using the decorator @HostBinding is possible to achieve the same behavior, but per documentation

Always prefer using the host property over @HostBinding and @HostListener. These decorators exist exclusively for backwards compatibility.

Reasons:
  • Blacklisted phrase (0.5): I need
  • Blacklisted phrase (1): is it possible to
  • Long answer (-1):
  • Has code block (-0.5):
  • User mentioned (1): @Dixit
  • User mentioned (0): @JSON
  • User mentioned (0): @HostBinding
  • User mentioned (0): @HostBinding
  • User mentioned (0): @HostListener
  • Self-answer (0.5):
  • Low reputation (0.5):
Posted by: ncasteln

79109011

Date: 2024-10-21 07:43:13
Score: 1
Natty:
Report link

Go to CodeSandbox.io and then press new + and then press Node.js using DevBox then you can just run the start task which runs the app using modemon and to create an app using HTTP then use the http one and if you want to use express then use this

var express=require(‘express’)
var app=express()
app.use(‘/‘, function(req, res, next){res.send(‘hello world’);next()})
app.listen(3000, function(){})
Reasons:
  • Has code block (-0.5):
  • Unregistered user (0.5):
  • Low reputation (1):
Posted by: Belly

79109009

Date: 2024-10-21 07:43:13
Score: 3
Natty:
Report link

Never mind. I came from Python, so the reason was so stupid. '/' is a char, which does not correspond to the function signature. It expected to get a string as a second positional argument, so the method signature matched and the code worked as intended

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

79109005

Date: 2024-10-21 07:41:13
Score: 2
Natty:
Report link
  1. Click on terminal selection dropdown then click the "Configure Terminal Settings"
  2. On the setting page, find text "Terminal > Integrated > Automation Profile: Windows/Linux/Osx (choose your OS)
  3. Clik the "Edit in settings.json"
  4. Now edit the json file and remove the unused terminal
Reasons:
  • Low length (0.5):
  • No code block (0.5):
  • Low reputation (1):
Posted by: Aris Boy

79109000

Date: 2024-10-21 07:41:13
Score: 2.5
Natty:
Report link

Problem is quite simple, your pom had spring-boot-stater-security. This will force you to login first before any other work.

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

79108978

Date: 2024-10-21 07:34:11
Score: 2.5
Natty:
Report link

ERROR: Could not find a version that satisfies the requirement sqlclient (from versions: none) ERROR: No matching distribution found for sqlclient

solve plz

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

79108971

Date: 2024-10-21 07:31:09
Score: 2
Natty:
Report link

Alright after hours of hitting my head against my laptop here is the simplified solution to it.

Step 1 Open the terminal and enter the following commands:

mkdir Temp

ls

[Just check in the list if you have successfully created that 'Temp' folder

Step 2 Open environment variables and replace the values of TEMP and TMP to

<C:\Temp>

and just save it and exit out.


Do check that you've added anaconda to your path until condabin


This will resolve the error Cheers

Reasons:
  • Blacklisted phrase (1): Cheers
  • Long answer (-0.5):
  • No code block (0.5):
  • Low reputation (1):
Posted by: Abhimanyu Singh

79108967

Date: 2024-10-21 07:30:09
Score: 0.5
Natty:
Report link

Following the tutorial, helped me to find the answer:

https://commoncrawl.org/blog/index-to-warc-files-and-urls-in-columnar-format

The following SQL-Statements I used:

CREATE DATABASE ccindex

CREATE EXTERNAL TABLE IF NOT EXISTS ccindex (
  url_surtkey                   STRING,
  url                           STRING,
  url_host_name                 STRING,
  url_host_tld                  STRING,
  url_host_2nd_last_part        STRING,
  url_host_3rd_last_part        STRING,
  url_host_4th_last_part        STRING,
  url_host_5th_last_part        STRING,
  url_host_registry_suffix      STRING,
  url_host_registered_domain    STRING,
  url_host_private_suffix       STRING,
  url_host_private_domain       STRING,
  url_protocol                  STRING,
  url_port                      INT,
  url_path                      STRING,
  url_query                     STRING,
  fetch_time                    TIMESTAMP,
  fetch_status                  SMALLINT,
  content_digest                STRING,
  content_mime_type             STRING,
  content_mime_detected         STRING,
  content_charset               STRING,
  content_languages             STRING,
  warc_filename                 STRING,
  warc_record_offset            INT,
  warc_record_length            INT,
  warc_segment                  STRING)
PARTITIONED BY (
  crawl                         STRING,
  subset                        STRING)
STORED AS parquet
LOCATION 's3://commoncrawl/cc-index/table/cc-main/warc/';

MSCK REPAIR TABLE ccindex

select url
    from ccindex
   where crawl = 'CC-MAIN-2024-38'
     and subset = 'warc'
     and url_host_tld = 'de';
Reasons:
  • Probably link only (1):
  • Long answer (-1):
  • Has code block (-0.5):
  • Self-answer (0.5):
  • Low reputation (0.5):
Posted by: fass33443423

79108963

Date: 2024-10-21 07:30:09
Score: 2
Natty:
Report link

In the VS Code command palette, run the TypeScript: Select TypeScript version command. Make sure you have Use Workspace version selected.

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

79108961

Date: 2024-10-21 07:30:09
Score: 5.5
Natty:
Report link

I have this exact issue right now - did you ever figure it out?

This happens when loading Tile3DLayer from google maps, so far the only thing i've found that works is loading Tile3DLayer not as an overlay on top, but as the base interleaved.

Reasons:
  • RegEx Blacklisted phrase (3): did you ever figure it out
  • Low length (0.5):
  • No code block (0.5):
  • Contains question mark (0.5):
  • Low reputation (1):
Posted by: user27906459

79108957

Date: 2024-10-21 07:29:08
Score: 3
Natty:
Report link

If P1=P2 Than they are equal in address If P1^=P2^ Than value pointed are equal

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

79108950

Date: 2024-10-21 07:26:07
Score: 2
Natty:
Report link

Iceberg by default uses serializable isolation type, you can change that to snapshot isolation which can update concurrently to different data files.This doesn’t lock the transaction. Always make sure your not updating same data files otherwise update operation fails.

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

79108945

Date: 2024-10-21 07:24:06
Score: 1
Natty:
Report link

Just so you know, the actual fix is the "break-inside: avoid;"

<div class="masonryLayout">
   <div class"card">Hello, world!</div>
</div>

to fix the issue he had just add this to ".card"

.card {
   break-inside: avoid;
}
Reasons:
  • Low length (0.5):
  • Has code block (-0.5):
  • Low reputation (1):
Posted by: Paul Innocent

79108932

Date: 2024-10-21 07:16:05
Score: 0.5
Natty:
Report link

The error occurs because of the missing dependency on spring-boot-starter-oauth2-client. Although you specified this dependency in your question, it is missing from your project on github.com.

<dependency>
    <groupId>org.springframework.boot</groupId>
    <artifactId>spring-boot-starter-oauth2-client</artifactId>
</dependency>
Reasons:
  • Low length (0.5):
  • Has code block (-0.5):
  • Low reputation (0.5):
Posted by: Andrey Smelik

79108927

Date: 2024-10-21 07:15:05
Score: 1
Natty:
Report link

I agree with @Vivek Vaibhav Shandilya's comment.

CMD ["python3.9", "/root/framework/execute_results_testing.py", "&&", "tail", "-f", "/dev/null"]

Start .sh:

echo  "Executing Python script..."
python3.9  /root/framework/execute_results_testing.py  
echo  "Python script finished. Keeping container alive..."
tail  -f  /dev/null

Local logs:

enter image description here

After making the above changes, my container successfully stays alive without restarting.

Logs from the Azure Container Instance:

enter image description here

Reasons:
  • Blacklisted phrase (0.5): Thanks
  • Long answer (-0.5):
  • Has code block (-0.5):
  • User mentioned (1): @Vivek
  • User mentioned (0): @kodekloud
  • Low reputation (0.5):
Posted by: Sirra Sneha

79108918

Date: 2024-10-21 07:12:04
Score: 2.5
Natty:
Report link

You need to either provide the idScope on the @Path of the interface.

Or when it is a constant, in application.props:

idScope=${ID_SCOPE:123456}
quarkus.rest-client.dps-api.url=https://global.azure-devices-provisioning.net/${idScope}

Anyways, 404 indicates that your url is wrong.

Reasons:
  • Low length (0.5):
  • No code block (0.5):
  • User mentioned (1): @Path
  • Low reputation (0.5):
Posted by: Serkan

79108915

Date: 2024-10-21 07:10:03
Score: 9
Natty: 7.5
Report link

Did you get the solution to this problem?

Reasons:
  • RegEx Blacklisted phrase (3): Did you get the solution to this problem
  • 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: Amir Bashir

79108900

Date: 2024-10-21 07:06:02
Score: 0.5
Natty:
Report link

@startuml

package "Hotel Management System" {

package "Business Logic" {
    class Booking {
        +createBooking()
        +cancelBooking()
    }

    class Customer {
        +registerCustomer()
        +updateCustomer()
    }

    class Room {
        +checkAvailability()
        +bookRoom()
    }

    class Payment {
        +processPayment()
        +issueRefund()
    }
}

package "Data Access" {
    class BookingRepository {
        +saveBooking()
        +deleteBooking()
    }

    class CustomerRepository {
        +saveCustomer()
        +deleteCustomer()
    }

    class RoomRepository {
        +saveRoom()
        +deleteRoom()
    }
}

package "User Interface" {
    class BookingView {
        +displayBookingForm()
    }

    class CustomerView {
        +displayCustomerForm()
    }

    class RoomView {
        +displayRoomDetails()
    }

    class PaymentView {
        +displayPaymentForm()
    }
}

package "Notifications" {
    class EmailService {
        +sendConfirmationEmail()
    }

    class SMSService {
        +sendSMSNotification()
    }
}

' Relationships
Booking --> BookingRepository : uses
Customer --> CustomerRepository : uses
Room --> RoomRepository : uses
Payment --> Booking : processes
BookingView --> Booking : interacts with
CustomerView --> Customer : interacts with
RoomView --> Room : interacts with
PaymentView --> Payment : interacts with
Booking --> EmailService : notifies
Booking --> SMSService : notifies

}

@enduml

Reasons:
  • Long answer (-1):
  • Has code block (-0.5):
  • User mentioned (1): @startuml
  • User mentioned (0): @enduml
  • Low reputation (1):
Posted by: hassan khan

79108898

Date: 2024-10-21 07:05:01
Score: 2
Natty:
Report link

You can't. Not unless you have a Matlab coder license and generate C code from which you can actually compile a stand alone executable. You can redistribute the Matlab runtime with your current application: https://www.mathworks.com/products/compiler/matlab-runtime.html. Check the licenses to make sure they fit your use case.

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

79108894

Date: 2024-10-21 07:03:01
Score: 0.5
Natty:
Report link

In ZSH I use parameter expansion like this:

echo ${(%):-%D{%d.%m.%y-%H:%M:%S}}

Here

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

79108891

Date: 2024-10-21 07:02:01
Score: 4
Natty:
Report link

For some reason, the incorrect behavior stopped, so the error is fixed for now ;)

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

79108885

Date: 2024-10-21 06:57:00
Score: 1.5
Natty:
Report link

I had a similar problem. It seems the symbol is not defined by the gcc compiler support library that my system has, but if I tell clang to use clang's runtime library, it works:

clang --rtlib=compiler-rt ...

(I got the syntax from https://github.com/llvm/llvm-project/issues/54698#issue-1189790559 - which is handy because the manual entry for that option is extremely terse.)

Reasons:
  • Low length (0.5):
  • Has code block (-0.5):
  • Unregistered user (0.5):
  • Low reputation (1):
Posted by: Daniel

79108874

Date: 2024-10-21 06:55:59
Score: 0.5
Natty:
Report link

Iceberg cannot support concurrently updating to same table, same Partition, same data file. This is a limitation with iceberg. So you cannot have multiple streaming using merge into the same table. Although it is not elegant but you can use a retry logic in your application to have this work.

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

79108866

Date: 2024-10-21 06:54:59
Score: 1.5
Natty:
Report link

Maybe ,you can try as

  const ffmpeg = spawn('ffmpeg', [
    '-i', 'pipe:0',
    '-c:v', 'libx264',
    '-preset', 'veryfast',
    '-maxrate', '3000k',
    '-bufsize', '6000k',
    '-pix_fmt', 'yuv420p',
    '-g', '50',
    '-f', 'flv',
    'rtmp://a.rtmp.youtube.com/live2/MY_KEY'
  ]);

remove the first '-f flv'

Reasons:
  • Blacklisted phrase (1): youtube.com
  • Has code block (-0.5):
  • Low reputation (1):
Posted by: zhiwei lu

79108856

Date: 2024-10-21 06:51:58
Score: 1.5
Natty:
Report link

I had same issue and i fixed it via kubernetes guid link: https://kubernetes.io/docs/setup/production-environment/tools/kubeadm/troubleshooting-kubeadm/ first step add unset unset KUBECONFIG file and then export KUBECONFIG=/etc/kubernetes/admin.conf

Reasons:
  • Whitelisted phrase (-2): i fixed
  • Probably link only (1):
  • Low length (1):
  • No code block (0.5):
  • Low reputation (1):
Posted by: Behdin Talebi

79108854

Date: 2024-10-21 06:51:58
Score: 0.5
Natty:
Report link

For me what worked was deleting the Gemfile.lock, it will be generated anyways

Reasons:
  • Low length (1.5):
  • Has code block (-0.5):
  • Single line (0.5):
  • High reputation (-1):
Posted by: rgkobashi

79108853

Date: 2024-10-21 06:50:55
Score: 10 🚩
Natty: 4.5
Report link

Did you find a solution? I'm having the same issue.

Reasons:
  • RegEx Blacklisted phrase (3): Did you find a solution
  • Low length (1.5):
  • No code block (0.5):
  • Me too answer (2.5): I'm having the same issue
  • 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: Tik1993

79108841

Date: 2024-10-21 06:48:54
Score: 3
Natty:
Report link

Use the figma.createComponentFromNode(node) method. Learn more: https://www.figma.com/plugin-docs/api/properties/figma-createcomponentfromnode/

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

79108837

Date: 2024-10-21 06:47:54
Score: 1.5
Natty:
Report link

useThemeContext(); should be used in the client page so you need wrap the your button in to client componant ... then it will work

Reasons:
  • Low length (1):
  • Has code block (-0.5):
  • Single line (0.5):
  • Low reputation (0.5):
Posted by: Krishna Choudhari

79108825

Date: 2024-10-21 06:44:53
Score: 1.5
Natty:
Report link

chat gpt proposed by replacing "req = requests.get(url, stream=True)" with "req = requests.get(url, stream=True, verify=False)" in the site-packages\paddleocr\ppocr\utils\network.py file and that has worked for me

Reasons:
  • Whitelisted phrase (-1): worked for me
  • Low length (0.5):
  • No code block (0.5):
  • Single line (0.5):
  • Low reputation (1):
Posted by: ABDULKARIM ALBURAYH