79141488

Date: 2024-10-30 14:25:27
Score: 1.5
Natty:
Report link

This is the smaller form I could come up with

cwd=$(cd "${0%/*}"; pwd)
Reasons:
  • Low length (1.5):
  • Has code block (-0.5):
  • Low reputation (0.5):
Posted by: izissise

79141483

Date: 2024-10-30 14:24:25
Score: 6.5 🚩
Natty:
Report link

I have the same problem, and I have also done a lot of investigations. The LinkedIn support answers are weird.

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

79141481

Date: 2024-10-30 14:24:25
Score: 2
Natty:
Report link

Just to complete what is answered: I can observe this behavior (ignore false header) on version 1.6.7 while this is not happening on version 0.19.2

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

79141479

Date: 2024-10-30 14:23:24
Score: 0.5
Natty:
Report link

You should be able to use parseFloat directly, skipping toString conversion:

const d = parseFloat(row.f0_);

Also, if you find f0_ ugly, you can rename it using AS

SELECT AVG(vs) AS 'vs'

Then this would become

const d = parseFloat(row.vs);
Reasons:
  • Low length (0.5):
  • Has code block (-0.5):
  • Low reputation (0.5):
Posted by: Paul Jurczyk

79141464

Date: 2024-10-30 14:19:24
Score: 0.5
Natty:
Report link

According to the AWS documentation, you cannot use an image tag as a condition in an IAM policy.

Reasons:
  • Low length (1.5):
  • No code block (0.5):
  • Single line (0.5):
  • High reputation (-2):
Posted by: gshpychka

79141457

Date: 2024-10-30 14:16:23
Score: 2.5
Natty:
Report link

The way to configure it. go to "/etc/ssh/sshd_config.d" uncommand "PasswordAuthentication yes".

go to inner files of "/etc/ssh/sshd_config.d". check all files if anywhere it's overriding "PasswordAuthentication no" change it to yes and save.

reload sshd

sudo systemctl reload sshd restart sshd systemctl restart sshd

Note- if permission issue apply "sudo"

verify authentication saved to yes

sudo sshd -T | grep -i passwordauthentication

You will be able to login using password auth.

enter image description here

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

79141456

Date: 2024-10-30 14:16:23
Score: 2
Natty:
Report link

This is a common ask I have seen over the years, especially for ClaimCenter. As you noted, there are some activities that are created in compiled code and are not easy (and maybe impossible) to prevent from opening. Creating a preupdate rule to complete or delete an activity of a certain pattern is not ideal either because an activity created in a preupdate rule will not trigger preupdate rules to run on that activity. See the link below (login required) and the quoted text:

https://docs.guidewire.com/self-managed/cc/1020/rules/cc/topics/c_fz16829231.html

The same behavior also applies to entities newly created in a preupdate rule. For example, if you create a new activity in a preupdate rule, ClaimCenter does not then run the Activity preupdate rules on that activity.

In the past the compromise I have suggested is to create a distributed work queue that runs on a similar interval as the Financials Escalation schedule that will look for all non-complete activities of a certain pattern and auto-complete them. It isn't the same as catching the activities before they can be committed to the DB, but I think actually catching these activities in all situations before they are committed to the DB is a fool's errand. The business and users just need to be aware that sometimes they'll see these activities, but there is a background process that handles them.

I should also note that when the documentation says to not remove OOTB entities, it is referring to not removing the eti or etx files that are shipped with ClaimCenter. You can remove rows from the DB for sure, albeit carefully and with consideration of the data you are removing.

Reasons:
  • Blacklisted phrase (1): the link below
  • RegEx Blacklisted phrase (1): See the link
  • Long answer (-1):
  • No code block (0.5):
  • Low reputation (0.5):
Posted by: SteveDripps

79141444

Date: 2024-10-30 14:11:22
Score: 1.5
Natty:
Report link

const rs = {
  previousPageCursor: null
}
try {
  console.log(JSON.parse(rs))
} catch (error) {
  console.log(error.message)
}

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

79141440

Date: 2024-10-30 14:11:22
Score: 2.5
Natty:
Report link

The issues is because of a image cropper NuGet package which is not using in the app.

I removed it and now no issues is with pushing build.

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

79141438

Date: 2024-10-30 14:10:21
Score: 3
Natty:
Report link

This question is a duplicate of XL-Deploy Parent and Child CI. [I don't have vote/close privilege yet.]

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

79141435

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

these instructions got me 99% of the way there in MAMP 7, but i was still getting an apache error when i started the server - to get it running i commented out these lines in httpd-ssl.conf:

#SSLSessionCache         "dbm:/Applications/MAMP/Library/logs/ssl_scache"
#SSLSessionCache        "shmcb:/Applications/MAMP/Library/logs/ssl_scache(512000)"
#SSLSessionCacheTimeout  300

thanks for posting.

Reasons:
  • Blacklisted phrase (0.5): thanks
  • Has code block (-0.5):
  • Low reputation (1):
Posted by: phil-evans

79141431

Date: 2024-10-30 14:09:21
Score: 3
Natty:
Report link

You can try making array2 contiguous, you can call np.ascontiguousarray on it before saving:

array2 = np.ascontiguousarray(array[:,:,[0,1,2,3,4,5]])

It will create a contiguous copy of array2, making saving faster...

You should see a performance improvement in the saving time. cheers

Reasons:
  • Blacklisted phrase (1): cheers
  • Low length (0.5):
  • No code block (0.5):
  • Low reputation (1):
Posted by: Ciprian Potor

79141425

Date: 2024-10-30 14:06:20
Score: 0.5
Natty:
Report link

I faced the following error as well, however, my integration was with Okta instead.

In our case, the token endpoint was already set to POST. Based on the Loadbalancer logs, we discovered the issue was because we had enabled DPoP (Demonstrate Proof of Possession) with the application on the Okta side.

The AWS ALB does not support DPoP and as a result, we saw the 561. We turned off DPoP and instead turned on PKCE after which everything was working.

Reasons:
  • No code block (0.5):
Posted by: Haris Nadeem

79141422

Date: 2024-10-30 14:05:20
Score: 1
Natty:
Report link

I tried many different solutions, but unfortunately with similar results to yours. Eventually, I found a solution for this problem. I hope it meets your needs.

  1. Initialize variable (string)
  2. After Search for users (V2) action add action "set variable" with dynamic content "Body" from Search for users (V2).
  3. Then add condition where you compare your variable (is equal to) with this expression: string('{"value":[]}')

If the user has not been found, the “if yes” action will be performed. However, if the result of the condition is not true (i.e. information about the user was found) the “if no” action will be executed.

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

79141421

Date: 2024-10-30 14:05:20
Score: 1.5
Natty:
Report link

This is the best way! The only way!

Guillermo Ruffino: This does not answer the question exactly, here I'm using a denormalized result set instead of the one in the question, however adapting data should not be the main issue here.

Here is how I get mine grouping, first I attach to row data bound to find groups, and also I hijack the render delegate...

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

79141415

Date: 2024-10-30 14:04:19
Score: 0.5
Natty:
Report link
  1. Is this the actual code that you are executing? Are you using any await or .Wait()? This code should execute LongRunningTask() on thread pool which will run it in another thread and it should not block your request thread.
  2. Task.Run is ok, but if this endpoint is called too frequently or LongRunningTask is too long, it may starve the thread pool, which will throttle your incoming requests. In those cases it is better to control the processing of long running tasks in a Background service using a queue.

You may also use return Accepted(); //HTTP code 202 instead of Ok() //200 (which is also fine), as Accepted indicates asynchronous operation / background task.

Reasons:
  • Long answer (-0.5):
  • Has code block (-0.5):
  • Contains question mark (0.5):
  • Starts with a question (0.5): Is this the
  • Low reputation (0.5):
Posted by: Mitko Petrov

79141413

Date: 2024-10-30 14:03:19
Score: 2.5
Natty:
Report link

for Intellij Idea - You need the Ultimate version.

Settings > Build, Executions, Deployment -> Application Servers > "+" > JBOss Server

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

79141411

Date: 2024-10-30 14:03:19
Score: 0.5
Natty:
Report link

Answer 1:

Are different purposes and can be used together to optimize your website for different languages and regions.

Answer 2:

Benefits are Broader Audience Targeting, Simplified Management and Avoiding Duplicate Content Issues

Answer 3:

Using en-gb instead of en in hreflang attributes can offer several benefits, particularly if your content is tailored for a specific regional audience:

3-1: Improved User Experience.

3-2: Better SEO Targeting.

3-3: Reduced Bounce Rates.

3-4: Avoiding Duplicate Content Issues.

3-5: Enhanced Relevance.

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

79141404

Date: 2024-10-30 14:00:19
Score: 2
Natty:
Report link

It's an Uncaught runtime errors, you dont show other detail information. You can open the devtools(Chrome, Safari, Edge...) check error stack detail log info, in there you can jump into source code, maybe you can find out what happend.

Look like this: enter image description here

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

79141385

Date: 2024-10-30 13:54:17
Score: 1.5
Natty:
Report link

I'm noticing that you set your variable results twice:

results = client.beta.threads.messages.create(
  thread_id = thread.id,
  role = "user",
  content = question
)

So the content of your first results variable should be the output you see in your second run.

Then you have:

while run.status not in ["completed", "failed"]:

But you only set a new value for results if the status is completed. That makes me fairly confident your second run had status as failed. I can't tell you why it failed because you didn't print any of the logs from the assistant. Could you try printing client.beta.threads.messages.list(thread_id=thread.id)?

Reasons:
  • Long answer (-0.5):
  • Has code block (-0.5):
  • Ends in question mark (2):
  • Low reputation (0.5):
Posted by: Marshall K

79141381

Date: 2024-10-30 13:52:17
Score: 1.5
Natty:
Report link

I encountered the same issue

  1. try re-login into Firebase.
  2. try using your proper project name instead of selecting the project.

flutterfire configure --project= your-app-name

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

79141380

Date: 2024-10-30 13:52:17
Score: 2
Natty:
Report link

I would recommend you to use both lang and hreflang because they will improve your visibility overhaul, as some search engines will target hreflang

https://www.linkedin.com/pulse/html-lang-vs-hreflang-understanding-difference-best-practices-bhor/

And in fact, it's the same for the en vs en-gb choice. Not so different, but some search engine love them better, so use en-gb. It doesn't hurt.

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

79141373

Date: 2024-10-30 13:51:17
Score: 2
Natty:
Report link

I haven't used ml-agents yet, but it's open source (Apache 2 license). I think the best starting point would be this importer for demo files.

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

79141367

Date: 2024-10-30 13:50:16
Score: 3
Natty:
Report link

I tested it using your code and it works ok, both with excel opened as when excel is not opened (so double click on the filename). See below image for code used. You can try using a DoEvents before the ActiveWorkbook.Close command.

enter image description here

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

79141363

Date: 2024-10-30 13:50:16
Score: 0.5
Natty:
Report link

The below code worked for me. Thanks @Abra.

import java.util.Date;
import javax.swing.JSpinner;
import javax.swing.SpinnerDateModel;

public class SpinnerDatesExample extends javax.swing.JFrame {

    private javax.swing.JButton jButton_Update;
    private javax.swing.JSpinner jSpinner_EndDateTime;
    private javax.swing.JSpinner jSpinner_StartDateTime;

    private SpinnerDateModel StartDateModel, EndDateModel;

    private Date StartDateTime, EndDateTime;
    //private boolean flag = false;

    public SpinnerDatesExample() {
        initComponents();
        {
            jSpinner_StartDateTime.setEditor(new JSpinner.DateEditor(jSpinner_StartDateTime, "yyyy-MM-dd hh:mm:ss.SSS"));
            jSpinner_EndDateTime.setEditor(new JSpinner.DateEditor(jSpinner_EndDateTime, "yyyy-MM-dd hh:mm:ss.SSS"));
        }
        {
            StartDateModel = (SpinnerDateModel) jSpinner_StartDateTime.getModel();
            EndDateModel = (SpinnerDateModel) jSpinner_EndDateTime.getModel();
        }
        updateDates();
    }

    private void updateDates() {
        do {
            StartDateTime = new Date((2020 + (int) Math.round(Math.random() * (2025 - 2020))),
                    (1 + (int) Math.round(Math.random() * (12 - 1))),
                    (1 + (int) Math.round(Math.random() * (27 - 1))),
                    (0 + (int) Math.round(Math.random() * (23))),
                    (0 + (int) Math.round(Math.random() * (59))),
                    (0 + (int) Math.round(Math.random() * (59))));

            EndDateTime = new Date((2020 + (int) Math.round(Math.random() * (2025 - 2020))),
                    (1 + (int) Math.round(Math.random() * (12 - 1))),
                    (1 + (int) Math.round(Math.random() * (27 - 1))),
                    (0 + (int) Math.round(Math.random() * (23))),
                    (0 + (int) Math.round(Math.random() * (59))),
                    (0 + (int) Math.round(Math.random() * (59))));
        } while (StartDateTime.after(EndDateTime));

        {
            System.out.println("StartDateTime -> " + StartDateTime);
            System.out.println("EndDateTime -> " + EndDateTime);
        }

        //  Alternatively use different methods I used that did not fulfill my requirements.
        //  This will demonstrate my issue.
        /*if (flag) {
            jSpinner_StartDateTime.setModel(new javax.swing.SpinnerDateModel(StartDateTime, StartDateTime, EndDateTime, java.util.Calendar.SECOND));
            jSpinner_EndDateTime.setModel(new javax.swing.SpinnerDateModel(EndDateTime, StartDateTime, EndDateTime, java.util.Calendar.SECOND));
            flag = false;
        } else {
            jSpinner_StartDateTime.getModel().setValue(StartDateTime);
            jSpinner_EndDateTime.getModel().setValue(EndDateTime);
            flag = true;
        }*/
        {
            StartDateModel.setStart(StartDateTime);
            StartDateModel.setEnd(EndDateTime);
            StartDateModel.setValue(StartDateTime);
        }
        {
            EndDateModel.setStart(StartDateTime);
            EndDateModel.setEnd(EndDateTime);
            EndDateModel.setValue(EndDateTime);
        }
    }

    private void initComponents() {

        jSpinner_StartDateTime = new javax.swing.JSpinner();
        jSpinner_EndDateTime = new javax.swing.JSpinner();
        jButton_Update = new javax.swing.JButton();

        setDefaultCloseOperation(javax.swing.WindowConstants.EXIT_ON_CLOSE);

        jSpinner_StartDateTime.setModel(new javax.swing.SpinnerDateModel(new java.util.Date(), null, null, java.util.Calendar.HOUR_OF_DAY));
        jSpinner_EndDateTime.setModel(new javax.swing.SpinnerDateModel(new java.util.Date(), null, null, java.util.Calendar.HOUR_OF_DAY));

        jButton_Update.setText("Update Dates");
        jButton_Update.addActionListener(new java.awt.event.ActionListener() {
            public void actionPerformed(java.awt.event.ActionEvent evt) {
                jButton_UpdateActionPerformed(evt);
            }
        });

        javax.swing.GroupLayout layout = new javax.swing.GroupLayout(getContentPane());
        getContentPane().setLayout(layout);
        layout.setHorizontalGroup(
                layout.createParallelGroup(javax.swing.GroupLayout.Alignment.LEADING)
                        .addGroup(layout.createSequentialGroup()
                                .addContainerGap()
                                .addGroup(layout.createParallelGroup(javax.swing.GroupLayout.Alignment.LEADING)
                                        .addComponent(jSpinner_StartDateTime, javax.swing.GroupLayout.DEFAULT_SIZE, 533, Short.MAX_VALUE)
                                        .addComponent(jSpinner_EndDateTime)
                                        .addGroup(javax.swing.GroupLayout.Alignment.TRAILING, layout.createSequentialGroup()
                                                .addGap(0, 0, Short.MAX_VALUE)
                                                .addComponent(jButton_Update)))
                                .addContainerGap())
        );
        layout.setVerticalGroup(
                layout.createParallelGroup(javax.swing.GroupLayout.Alignment.LEADING)
                        .addGroup(layout.createSequentialGroup()
                                .addContainerGap()
                                .addComponent(jSpinner_StartDateTime, javax.swing.GroupLayout.PREFERRED_SIZE, javax.swing.GroupLayout.DEFAULT_SIZE, javax.swing.GroupLayout.PREFERRED_SIZE)
                                .addPreferredGap(javax.swing.LayoutStyle.ComponentPlacement.RELATED)
                                .addComponent(jSpinner_EndDateTime, javax.swing.GroupLayout.PREFERRED_SIZE, javax.swing.GroupLayout.DEFAULT_SIZE, javax.swing.GroupLayout.PREFERRED_SIZE)
                                .addPreferredGap(javax.swing.LayoutStyle.ComponentPlacement.RELATED)
                                .addComponent(jButton_Update)
                                .addContainerGap(javax.swing.GroupLayout.DEFAULT_SIZE, Short.MAX_VALUE))
        );
        pack();
    }

    private void jButton_UpdateActionPerformed(java.awt.event.ActionEvent evt) {
        updateDates();
    }

    public static void main(String args[]) {
        try {
            for (javax.swing.UIManager.LookAndFeelInfo info : javax.swing.UIManager.getInstalledLookAndFeels()) {
                if ("Nimbus".equals(info.getName())) {
                    javax.swing.UIManager.setLookAndFeel(info.getClassName());
                    break;
                }
            }
        } catch (ClassNotFoundException | InstantiationException | IllegalAccessException | javax.swing.UnsupportedLookAndFeelException ex) {
            java.util.logging.Logger.getLogger(SpinnerDatesExample.class.getName()).log(java.util.logging.Level.SEVERE, null, ex);
        }

        java.awt.EventQueue.invokeLater(new Runnable() {
            public void run() {
                new SpinnerIssueExample().setVisible(true);
            }
        });
    }
}
Reasons:
  • Blacklisted phrase (0.5): Thanks
  • Whitelisted phrase (-1): worked for me
  • Long answer (-1):
  • Has code block (-0.5):
  • User mentioned (1): @Abra
  • Self-answer (0.5):
  • Low reputation (1):
Posted by: AKPuvvada

79141343

Date: 2024-10-30 13:44:15
Score: 3
Natty:
Report link

I am unable encounter the same issue. When I run your code, I do not get the issue.

Have you tried running: curl 127.0.0.1:8000/ to see if you get an a response? This could be an issue with your browser blocking HTTP sites.

Additionally, can you provide the version of uvicorn, fastapi, and python.

Reasons:
  • Whitelisted phrase (-1): Have you tried
  • RegEx Blacklisted phrase (2.5): can you provide
  • Low length (0.5):
  • Has code block (-0.5):
  • Contains question mark (0.5):
  • Low reputation (1):
Posted by: Oliver Wissett

79141336

Date: 2024-10-30 13:42:15
Score: 2.5
Natty:
Report link

Just for testing purposes:

Uninstall the react-native-reanimated library. Build the project.

or

Without installing react-native-reanimated, follow steps from: https://www.nativewind.dev/getting-started/react-native

Reasons:
  • Low length (1):
  • No code block (0.5):
  • Low reputation (1):
Posted by: Aman kumar singh

79141327

Date: 2024-10-30 13:40:14
Score: 5
Natty:
Report link

Firstly, provider correct url, select post in the postman and select body and then raw and put JSON data in it. For futher answer please provide me a actual error that is happening

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

79141324

Date: 2024-10-30 13:40:14
Score: 4
Natty:
Report link

It doesn't resolve on cloudpc.

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

79141322

Date: 2024-10-30 13:39:13
Score: 0.5
Natty:
Report link

There are a lot of examples out there, but this is what i do. I created a "Profile" model and then tied it to their User record. This prevents me from having to jack with the User record while also being able to store/track whatever i want and tied to the User account. When a user is created, it will automatically generate a Profile record setting defaults... and grant access to a group automatically. I need to refine how i'm identifying the group better than using the PK, but this works good enough for now. While this may not solve your issue specifically, i think the structure/processes could be easily adapted to accomplish what you're looking to do.

class Profile(models.Model):
    user = models.OneToOneField(User, on_delete=models.CASCADE)
    discipline_assessed = models.BooleanField(default=False, verbose_name='Assessed?')
    allow_skills = models.BooleanField(default=False, verbose_name='Allow Access To Skills Matrix Tool?')
    def __str__(self):
        return self.user.username
    class Meta:
        ordering = ['user',]
@receiver(post_save, sender=User)
    def create_user_profile(sender, instance, created, **kwargs):
        try:
            if created:
                Profile.objects.create(user=instance)
                instance.groups.add(Group.objects.get(id=1))
                instance.save()
        except Exception as err:
            print('Error creating user profile!')
@receiver(post_save, sender=User)
    def save_user_profile(sender, instance, **kwargs):
        instance.profile.save()
Reasons:
  • Blacklisted phrase (0.5): I need
  • RegEx Blacklisted phrase (1): i want
  • Long answer (-1):
  • Has code block (-0.5):
  • Low reputation (0.5):
Posted by: Eric

79141314

Date: 2024-10-30 13:36:13
Score: 3
Natty:
Report link

Given the numbers of (30, 67) and (40, 554) you can crudely fit an exponential curve to your values and get an estimate of about 38.25 hours for 99.

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

79141302

Date: 2024-10-30 13:31:11
Score: 1
Natty:
Report link

We use junit 4.12, and also have the same problem that any test which throws an exception is marked as passed, which seems illogical and dangerous.

There are several solutions suggested on various forums, which I have compiled here. Most dont work (for us). The one which requires wrapping every test in try/catch/fail is the only working solution, but this would require a lot of work to add if you have thousands of tests.

This is the suggested solution with Junit 5:

import org.junit.jupiter.api.Assertions;
public class NoExceptionTest {
    @Test
    public void testNoException() {
        assertDoesNotThrow(() -> {
            // code that is expected to not throw an exception
        });
    }
}

This is a suggested method with Junit 4:

@Test(expected = NoException.class)
public void testMethod() {
    // Code that should not throw an exception goes here
}

The above did not work for us.

Another post suggests this:

@Rule
public ExpectedException exception = ExpectedException.none();

But this did not work either.

This solution suggested by @vinay works, but requires wrapping every tests, which is a significant task if you have thousands of tests.

@Test
public void foo(){
   try{
      //execute code that you expect not to throw Exceptions.
   }
   catch(Exception e){
      fail("Should not have thrown any exception");
   }
}
Reasons:
  • Blacklisted phrase (1): did not work
  • Long answer (-1):
  • Has code block (-0.5):
  • Me too answer (2.5): also have the same problem
  • User mentioned (1): @vinay
  • High reputation (-2):
Posted by: John Little

79141299

Date: 2024-10-30 13:31:11
Score: 4.5
Natty: 6
Report link

Can we host a RAD Server on IIS using an Interbase 2020 Server Edition Trial? I am getting the license not found error while using Trial License on Windows Server.

Reasons:
  • Low length (1):
  • No code block (0.5):
  • Contains question mark (0.5):
  • Unregistered user (0.5):
  • Single line (0.5):
  • Starts with a question (0.5): Can we
  • Low reputation (1):
Posted by: Sai

79141282

Date: 2024-10-30 13:27:10
Score: 0.5
Natty:
Report link

You need to fallback all your endpoints to the index.html page. In azure using Static Web App we create this file in the root of the project:

{
  "navigationFallback": {
    "rewrite": "/index.html"
  }
}

staticwebapp.config.json

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

79141270

Date: 2024-10-30 13:23:09
Score: 1.5
Natty:
Report link
echo yes | python3 manage.py collectstaic

It looks clearer and also works in predictable way.

Reasons:
  • Low length (1):
  • Has code block (-0.5):
  • Low reputation (1):
Posted by: Максим Богомолов

79141268

Date: 2024-10-30 13:22:09
Score: 0.5
Natty:
Report link

I encountered similar issue on my rails application on the last version of Chromedriver and Google Chrome(130.0...), you need to double-check download_path:

  1. in your options, you need to set path as string:
    "download.default_directory": download_path.to_s => download_path is string and after you create your driver with your options, please check the result and output to see it got this path or not(rejected)
  2. After creating your driver, you need to set this directory again to be sure like this: @driver.download_path = download_path

My problem was resolved after completing those two steps.

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

79141267

Date: 2024-10-30 13:22:09
Score: 3.5
Natty:
Report link

I would recommend you to check if your prefab position is at 0, 0, 0.

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

79141263

Date: 2024-10-30 13:21:09
Score: 2.5
Natty:
Report link

I also faced such a problem: Emulator terminated with exit code -1073741515

Installing VC_redist.x64 helped me.

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

79141262

Date: 2024-10-30 13:21:09
Score: 3
Natty:
Report link

it's not exactly the right way to do for multiple user i think. we need to do change in /etc/ssh/sshd_config

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

79141260

Date: 2024-10-30 13:20:08
Score: 3
Natty:
Report link

its work for me thanks , cd android ./gradlew clean rm rf gradle/caches/ ./gradlew build

//Note in main terminal run rm -rf ~/.gradle/caches/

Reasons:
  • Blacklisted phrase (0.5): thanks
  • Low length (1):
  • No code block (0.5):
  • Low reputation (1):
Posted by: Muhammad Zakariya

79141258

Date: 2024-10-30 13:19:08
Score: 2.5
Natty:
Report link

Really simple. After a few hours lost.

There was never set as an API request. This was set from webhooks app inside chat not in google cloud

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

79141251

Date: 2024-10-30 13:16:08
Score: 3
Natty:
Report link

I tried rewrite send_message_on_dag_fail like only with context as input, now it works.

I don't know why, cause then I tries work with context in task with context (not **kwargs) I've failed.

Any ideas why it works this way?

def send_message_on_dag_fail(context):
    log = context['ti'].log
    log.error('DAG FINISHED WITH ERROR __________________') # this error text easier to find

    task_id = context['ti'].task_id
    dag_id = context['dag'].dag_id
    message = f"Task {task_id} from Dag {dag_id} failed."
    log.error(message)
    send_msg(bot_token, chat_id, message, 'message')
Reasons:
  • Blacklisted phrase (1): Any ideas
  • Long answer (-0.5):
  • Has code block (-0.5):
  • Ends in question mark (2):
  • Self-answer (0.5):
  • Low reputation (0.5):
Posted by: John Doe

79141243

Date: 2024-10-30 13:15:07
Score: 1
Natty:
Report link

use an IN keyword:

answer = input("what is you age?")
if "12" in answer:
    print("yes)

use a NOT keyword:

answer = input("what is you age?)
if "12" not in answer:
    print("no")
Reasons:
  • Low length (0.5):
  • Has code block (-0.5):
  • Low reputation (1):
Posted by: Moneyfactory

79141233

Date: 2024-10-30 13:12:07
Score: 1.5
Natty:
Report link

VS Code activates the environment automatically when you use Terminal. Read the documentation for more information. I had the same question, now i find the answer https://code.visualstudio.com/docs/python/tutorial-flask

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

79141232

Date: 2024-10-30 13:12:07
Score: 1.5
Natty:
Report link

You need wire:model="expanded" in your table

<x-table wire:model="expanded" expandable ...

and in you livewire component

public array $expanded = [];
Reasons:
  • Low length (1):
  • Has code block (-0.5):
  • Low reputation (1):
Posted by: gnndev

79141230

Date: 2024-10-30 13:10:06
Score: 1
Natty:
Report link

The confusion here is rooted in seeing the domain in the address bar or using urls already for whatever we’re doing as developers.

And the key distinction, the point we miss is that actually these addresses are resolved by DNS and only then the HTTP process begins.

So, we are NOT sending the domain/url to the server directly, the browser does that for us putting that into the Host header.

It is explained here in detail: https://portswigger.net/web-security/host-header#:~:text=The%20HTTP%20Host%20header%20is,the%20client%20wants%20to%20access.

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

79141224

Date: 2024-10-30 13:08:06
Score: 3
Natty:
Report link

Thanks for mentioning the tip RE: git path in node configuration settings. Mine was empty. I had checked in the container that git was installed and it was in the search path but adding the explicit path to the git binary in the image did the trick for me. Problem "solvered" (oi oi oi).

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

79141207

Date: 2024-10-30 13:03:04
Score: 3.5
Natty:
Report link

Try setting an English font for the counter specifically

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

79141195

Date: 2024-10-30 13:00:03
Score: 2
Natty:
Report link

ssh to ip of instance Elasticbeanstalk. For my case, with nginx, we change file /nginx/conf.d/elasticbeanstalk/00_application.conf proxy_pass http://127.0.0.1:8080;

we change to

proxy_pass http://127.0.0.1:3000; it sucessful when access elasticbean public address.

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

79141194

Date: 2024-10-30 13:00:03
Score: 1
Natty:
Report link

I know it's an old post, but I stumbled upon it googling for that exact question, so I figured, I'll point to a solution for anyone else in that situation. You CAN load vscode.dev in an iframe. In fact, you can load whatever you want in an iframe.

Now, I'm not saying it's trivial, just that it's doable. The trick would involve proxying it server-side. You'd have to find stategies to hide vscode.dev's context that it's running in an iframe.

(As a very inelegant PoC: the server could run it in a browser, send screenshots in a loop, listen for mouse and keyboard events and reproduce them in the browser running vscode.dev).

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

79141186

Date: 2024-10-30 12:56:03
Score: 0.5
Natty:
Report link

Inside of the TextInputField have you tried deleting all of those methods controlling the input and just spreading the field on the component?

<Controller
      name="email"
      defaultValue=""
      control={control}
      render={({ field: { value, onChange }, fieldState: { error } }) => (
        <div className={styles.container}>
          <div
            className={combineClasses(
              styles.field,
              isFocused && styles.focus,
              error && styles.error
            )}
          >
            <input
              type="email"
              placeholder={placeholder}
              className={styles.input}
              {...field}
            />
            {isLoading && <Icon icon={faSpinner} spin />}
          </div>
          {error && <p className={styles.message}>{error.message}</p>}
        </div>
      )}
    />
Reasons:
  • Whitelisted phrase (-1): have you tried
  • Long answer (-0.5):
  • Has code block (-0.5):
  • Ends in question mark (2):
  • Low reputation (0.5):
Posted by: Shakhor

79141185

Date: 2024-10-30 12:56:03
Score: 3
Natty:
Report link

Potential Causes

This sounds like you have an issue with the script not being installed into your environment. This can happen due to a number of reasons:

  1. You are not using the correct pip. This can be diagnosed using which pip, which will show you the path of the pip binary you are running.
  2. The jupyter kernel is running in a different environment. This is more likely, as you may have accidentally installed jupyter globally (very easy to do).

Steps to try and fix:

These steps are solutions to the potential causes I have listed, however, without additional information it is hard to give more detailed troubleshooting.

  1. Create a fresh conda environment. When working with notebooks I highly recommend using conda rather than venv or virtualenv. Install conda if you don't have it already: https://github.com/conda-forge/miniforge (the best flavour of conda)
$ conda create -n myenv python=3.11 jupyter pip # or change python version to whatever you need

$ conda activate myenv
  1. Double check that the pip you are using is inside the conda env
$ which pip
# /<path_to_conda_env>/bin/pip
  1. Install package
$ pip install -e .
  1. Launch jupyter

Remarks

This solution is similar to the solution given by EsmaeelE. It is hard to diagnose this issue which getting additional info. If possible can you give us:

Reasons:
  • Whitelisted phrase (-1): solution is
  • RegEx Blacklisted phrase (2.5): can you give us
  • Long answer (-1):
  • Has code block (-0.5):
  • Ends in question mark (2):
  • Low reputation (1):
Posted by: Oliver Wissett

79141181

Date: 2024-10-30 12:54:00
Score: 8.5 🚩
Natty: 5.5
Report link

have you already found the solution?

Reasons:
  • RegEx Blacklisted phrase (2.5): have you already found the solution
  • Low length (2):
  • No code block (0.5):
  • Ends in question mark (2):
  • Single line (0.5):
  • Low reputation (1):
Posted by: Paul Angelo Basilio

79141174

Date: 2024-10-30 12:51:59
Score: 4
Natty:
Report link

You can see case descriptions at https://www.npmjs.com/package/change-case

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

79141156

Date: 2024-10-30 12:47:58
Score: 5.5
Natty: 5
Report link

I am wondering if you have found any solutions? The suppressFinishActions property is deprecated, and I tried using the source property, but it doesn’t work.

Reasons:
  • Blacklisted phrase (1.5): any solution
  • RegEx Blacklisted phrase (2): any solutions?
  • Low length (1):
  • Has code block (-0.5):
  • Contains question mark (0.5):
  • Low reputation (1):
Posted by: Michael Tong

79141147

Date: 2024-10-30 12:43:56
Score: 1.5
Natty:
Report link

Something like that? enter image description here

Number of times appears Account = 

COUNTROWS(Tabla)

With this you've the number of times Account appears.

Now the MIN SORT

MIN SORT = 

var _MIN = CALCULATE(MIN(Tabla[Sort]))

RETURN

SUMX(VALUES(Tabla[Quarter Year]), CALCULATE(MIN(Tabla[Sort])))

With this you are obtaining the MIN SORT Value.

So you have a table where you can see MIN SORT and the number of times that an Account appears at the time period.

To check how appears in the case that you've more than one customer I've add customer 2.

Reasons:
  • Blacklisted phrase (1): enter image description here
  • Long answer (-0.5):
  • Has code block (-0.5):
  • Contains question mark (0.5):
  • Low reputation (1):
Posted by: Luis Miguel

79141141

Date: 2024-10-30 12:42:56
Score: 2
Natty:
Report link

Posting in case any one else is still having this issue.

If you're using the Google TV device, you can log in to Google TV and it will update the time and date settings automatically.

Using Android 14.0 ('UpsideDownCake') | Android Studio Ladybug | 2024.2.1 Patch 1

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

79141138

Date: 2024-10-30 12:41:56
Score: 1
Natty:
Report link

Key Differences Between useState and useRef

  1. Re-rendering Behavior:
  1. Persistent Value Across Renders:
  1. Why Not an Extra Parameter for useState?

When to Use useRef vs. useState?

In summary, useState and useRef are designed with different purposes in mind, and React keeps them separate to maintain clarity. By using useRef for non-reactive data, you avoid unintended re-renders, keeping your app more efficient

Reasons:
  • Long answer (-1):
  • No code block (0.5):
  • Contains question mark (0.5):
  • Low reputation (1):
Posted by: Mushfiqur Rahman Niloy

79141137

Date: 2024-10-30 12:41:56
Score: 0.5
Natty:
Report link

When you delete a file, git generates new commit to delete that, and git saves history of that file deleted. So you can't push it to remote repository.

To remove that file from history, you should run git rm --cached file

If it also doesn't work, you can consider to clear git history and generate new commits, but it can lead to losing commit history.

Good approach is to reset commit until large file is commited, and then re-generate from that.

Reasons:
  • Has code block (-0.5):
  • Starts with a question (0.5): When you
  • Low reputation (0.5):
Posted by: toygr

79141135

Date: 2024-10-30 12:39:55
Score: 4.5
Natty: 4
Report link

you can generate a mock one with the following procedure https://github.com/kamailio/kamailio/tree/master/misc/tools/kemi/python_mock

Reasons:
  • Probably link only (1):
  • Low length (1.5):
  • No code block (0.5):
  • Unregistered user (0.5):
  • Low reputation (1):
Posted by: Torrey Searle

79141133

Date: 2024-10-30 12:38:54
Score: 1
Natty:
Report link

My answer is quite practical as I do not know how to straight up connect a MySQL database to Copilot nor if there are official solutions currently available, but when I want to ask Copilot or any A.I. about a db I just copy the schema in a temporary file.

You can probably copy the text version with the headers into a file as well if you want to ask about the data (that you get using your regular SELECT in the command-line but keep in mind chatbots all have a restricted amount of tokens they can process).

Reasons:
  • RegEx Blacklisted phrase (1): I want
  • Long answer (-0.5):
  • Has code block (-0.5):
  • Low reputation (1):
Posted by: CSFML Enjoyer

79141128

Date: 2024-10-30 12:37:54
Score: 0.5
Natty:
Report link

There is nothing unusual about the supplied image nor how it is handled in MS page printing (apart from normal pixel quality issues). Thus it is the unsupplied HTML coding is causing a difference and without that code there is no problem.

enter image description here

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

79141118

Date: 2024-10-30 12:33:53
Score: 2.5
Natty:
Report link

for me the issue was, setting the spring profile in applicaton.yml and application-local.yml file. Ideally, it should be present in application.yml.

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

79141108

Date: 2024-10-30 12:30:52
Score: 0.5
Natty:
Report link

Counting the non-blanks cells

Based on your additional provided information. You can try this alternative.

=BYROW(C2:ZZZ, LAMBDA(r, IF(A2:A <> "", IF(COUNTA(r) = 0, "", COUNTA(r)), "")))

Output:

enter image description here

Reference:

Reasons:
  • Whitelisted phrase (-1): try this
  • Probably link only (1):
  • Low length (0.5):
  • Has code block (-0.5):
  • Low reputation (0.5):
Posted by: EL SRY

79141104

Date: 2024-10-30 12:28:51
Score: 3
Natty:
Report link

A quick fix for me is to use an older docker version 4.8.2 or any other where enabling "provenance" is not default

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

79141099

Date: 2024-10-30 12:27:51
Score: 1.5
Natty:
Report link

"C/C++ Intellisense" Extension: This extension supports debugging C/C++ applications with GDB or LLDB. Although it won't directly solve the logging issue, it enhances the overall debugging experience.

"C/C++ Extension Pack": This includes useful extensions that improve debugging capabilities and can help with managing logs and breakpoints.

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

79141093

Date: 2024-10-30 12:25:51
Score: 1.5
Natty:
Report link

When building fat jar with log4j2, all meta-inf subdirs (org/apache/logging/...,services, ), manifest.mf (possibly merged, if other classes also need entries) from lag4j2-core jar need to be included as a minimum in fat jar. I also included log4j-*.dtd and .xsd files from log4j2-core. Solved for me and tested on log4j2 version 2.23.1.

Reasons:
  • No code block (0.5):
  • Starts with a question (0.5): When
  • Low reputation (0.5):
Posted by: misterti

79141086

Date: 2024-10-30 12:23:50
Score: 2
Natty:
Report link

I always thought Generics meant: "Generic typeS".

At least, that's how I remember it and associate it with the actual concept.

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

79141084

Date: 2024-10-30 12:23:50
Score: 3
Natty:
Report link

set bottom: false in SageArea to fix it

SafeArea( bottom: false,

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

79141082

Date: 2024-10-30 12:22:50
Score: 1
Natty:
Report link

Please do the following,

  1. Update Credentials: Run the following command:

    git config --global credential.helper cache

    Then, try pushing to prompt for credentials.

  2. Use Personal Access Token (PAT):If using HTTPS, generate a PAT on GitHub and use it instead of a password.

  3. Check SSH Key: If using SSH, ensure your SSH key is added to your GitHub account. Test with:

    ssh -T [email protected]

  4. Verify Remote URL: Check your remote URL with:

    git remote -v

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

79141078

Date: 2024-10-30 12:22:50
Score: 1.5
Natty:
Report link

truncatewords¶ Truncates a string after a certain number of words.

Argument: Number of words to truncate after

For example:

{{ value|truncatewords:2 }} If value is "Joel is a slug", the output will be "Joel is …".

Newlines within the string will be removed.

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

79141070

Date: 2024-10-30 12:20:49
Score: 3
Natty:
Report link

I have the same problem and solved some part of it.

you might need to exclude jackson from the import

<dependency>
    <groupId>com.intuit.quickbooks-online</groupId>
    <artifactId>oauth2-platform-api</artifactId>
    <classifier>jar-with-dependencies</classifier>
    <version>${quickbook.api.version}</version>
    <exclusions>
        <exclusion>
            <groupId>com.fasterxml.jackson.core</groupId>
            <artifactId>jackson-databind</artifactId>
        </exclusion>
    </exclusions>
</dependency>

You can solve the problem from the query if you change it to specific fields i.e.

String query = "select CompanyName from companyinfo";
Reasons:
  • Blacklisted phrase (1): I have the same problem
  • Long answer (-0.5):
  • Has code block (-0.5):
  • Me too answer (2.5): I have the same problem
  • Low reputation (0.5):
Posted by: art1go

79141069

Date: 2024-10-30 12:20:49
Score: 2.5
Natty:
Report link

This macro should be Workbook_Open in the ThisWorkbook module:

enter image description here

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

79141066

Date: 2024-10-30 12:19:44
Score: 6.5 🚩
Natty:
Report link

I got no problems with UTM too, recently I switched to vmware because of better graphic support but now I have the same problem

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

79141065

Date: 2024-10-30 12:19:41
Score: 12 🚩
Natty:
Report link

I am getting the same error. Are you able to solve this error? enter image description here

Reasons:
  • Blacklisted phrase (1): you able to solve
  • Blacklisted phrase (1): enter image description here
  • RegEx Blacklisted phrase (1.5): solve this error?
  • RegEx Blacklisted phrase (1): I am getting the same error
  • Low length (1.5):
  • No code block (0.5):
  • Me too answer (2.5): I am getting the same error
  • Ends in question mark (2):
  • Low reputation (1):
Posted by: Faiza Karim

79141057

Date: 2024-10-30 12:18:41
Score: 0.5
Natty:
Report link

According to the AWS documentation, the AWS Parameters and Secrets Lambda Extension cannot be used outside of the handler function.

The extension can be invoked only in the INVOKE phase of the the Lambda and not during the INIT phase.

While top-level await occurs during INIT phase

Reference: https://docs.aws.amazon.com/systems-manager/latest/userguide/ps-integration-lambda-extensions.html

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

79141046

Date: 2024-10-30 12:14:39
Score: 4.5
Natty: 5
Report link

If there are many solution files:

Create a new editorConfig file, and set

root = true

dotnet_diagnostic.IDE0005.severity = error

Reasons:
  • Blacklisted phrase (1.5): any solution
  • Low length (1):
  • No code block (0.5):
  • Unregistered user (0.5):
  • Low reputation (1):
Posted by: Anonymous

79141042

Date: 2024-10-30 12:12:38
Score: 2
Natty:
Report link

A similar error for me occured when I connected my actual phone, a Google Pixel 5. But maybe this helps someone.

In my case, it was because my phone's USB preferences was set to "No data transfer". After changing it to "File transfer" the devices showed up normally in the drop down.

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

79141039

Date: 2024-10-30 12:11:38
Score: 2.5
Natty:
Report link

We only needed to register the number using the endpoint "https://graph.facebook.com/v20.0/[phone-number-id]/register" without associating any certificate and then the number was ready for use. Here is the documentation: https://developers.facebook.com/docs/whatsapp/cloud-api/reference/registration

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

79141037

Date: 2024-10-30 12:10:37
Score: 2.5
Natty:
Report link

use the safe block like this {{service.service_description |safe }}

Reasons:
  • Low length (1.5):
  • No code block (0.5):
  • Low reputation (0.5):
Posted by: Qadir Hassan

79141035

Date: 2024-10-30 12:10:37
Score: 4
Natty:
Report link

Qn robust estimator of scale is implemented in statsmodels.robust.scale.

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

79141030

Date: 2024-10-30 12:07:36
Score: 1.5
Natty:
Report link

I had a similar issue on a project and fixed it by reviewing manually all packages versions, did you try to downgrade react ? Maybe it could fix your issue.

Reasons:
  • Whitelisted phrase (-2): did you try
  • Low length (1):
  • No code block (0.5):
  • Contains question mark (0.5):
  • Single line (0.5):
  • Low reputation (1):
Posted by: CSFML Enjoyer

79141020

Date: 2024-10-30 12:05:35
Score: 1.5
Natty:
Report link

I solved the problem with this update

Using scaleX: 1.0001, instead of scaleX: 1 in GSAP

Reasons:
  • Whitelisted phrase (-2): I solved
  • Low length (1.5):
  • No code block (0.5):
  • Self-answer (0.5):
  • Low reputation (1):
Posted by: berki0

79141014

Date: 2024-10-30 12:03:34
Score: 1
Natty:
Report link

Thanks for spotting this. I created a JIRA ticket so this can be fixed in future Camel release https://issues.apache.org/jira/browse/CAMEL-21406

Reasons:
  • Blacklisted phrase (0.5): Thanks
  • Probably link only (1):
  • Low length (1):
  • No code block (0.5):
  • High reputation (-2):
Posted by: Claus Ibsen

79141007

Date: 2024-10-30 12:01:34
Score: 0.5
Natty:
Report link

are you sure you had the right settings there ? I would think its some thing to do with PAM

for example did you run the command

authselect select sssd with-smartcard with-mkhomedir

did you update your sssd.conf if you using active directory with the right info

[sssd]
config_file_version = 2
domains = rzview2.com
services = nss, pam, pac
 
[domain/RZVIEW2.COM]
id_provider = ad
auth_provider = ad
chpass_provider = ad
access_provider = ad
cache_credentials = true
 
[pam]
pam_cert_auth = True


Reasons:
  • Has code block (-0.5):
  • Contains question mark (0.5):
  • Low reputation (0.5):
Posted by: allamiro

79141000

Date: 2024-10-30 11:59:33
Score: 1
Natty:
Report link

1 - Change manually in database

2 - Write the migration with those changings

3 - Run flyway:repair -Dflyway.url=db_url -Dflyway.user=db_user -Dflyway.password=db_pass

4 - Test if flyway will build up the schema you suppose on an empty database

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

79140999

Date: 2024-10-30 11:58:33
Score: 0.5
Natty:
Report link

I couldn't find a way to I just wrote a component for this with katex.

// katex.component.ts
export class KatexComponent implements AfterViewInit{
  @Input({required: true}) tex?: string
  @ViewChild('ptex') texElement?: ElementRef
  
  ngAfterViewInit(){
    katex.render(this.tex || "", this.texElement?.nativeElement)
  }
}
// katex-label.component.ts
export class KatexLabelComponent {
  parts: {math: boolean, value: string}[] = [] 
  @Input({ required: true }) tex: string = "";

  ngOnInit() {
    const splitContent = this.tex.split(/(\$\$.*?\$\$)/);

    this.parts = splitContent.map(part => {
      if (part.startsWith('$$')) {
        return { math: true, value: part.slice(2, -2) };
      } else {
        return { math: false, value: part };
      }
    }); 
  }

Also, sorry for posting this late. I completely forgot about this question.

Reasons:
  • RegEx Blacklisted phrase (0.5): sorry for posting
  • Long answer (-0.5):
  • Has code block (-0.5):
  • Self-answer (0.5):
  • Low reputation (0.5):
Posted by: thecodingsage

79140996

Date: 2024-10-30 11:58:33
Score: 0.5
Natty:
Report link

I just got this error but not using Jenkins - just through the Visual Studio nuget package manager.

For me closing Visual Studio, reopening it and performing a rebuild fixed it.

Version I'm using is:

Microsoft Visual Studio Professional 2022 (64-bit) - Preview
Version 17.12.0 Preview 2.1
Reasons:
  • Low length (0.5):
  • Has code block (-0.5):
  • Low reputation (0.5):
Posted by: Alex D

79140994

Date: 2024-10-30 11:58:33
Score: 0.5
Natty:
Report link

You may try:

=arrayformula(xlookup(A2:A&B2:B,Sheet2!B:B&Sheet2!A:A,Sheet2!C:C,))

enter image description here

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

79140979

Date: 2024-10-30 11:54:32
Score: 2.5
Natty:
Report link

For me it worked repairing the Visual Studio

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

79140970

Date: 2024-10-30 11:52:29
Score: 9 🚩
Natty: 6
Report link

I have the same issue, but using IronOcr you have to pay for production environment, right?

Reasons:
  • Blacklisted phrase (1): I have the same issue
  • Low length (1):
  • No code block (0.5):
  • Me too answer (2.5): I have the same issue
  • Ends in question mark (2):
  • Unregistered user (0.5):
  • Single line (0.5):
  • Low reputation (1):
Posted by: Anonim

79140965

Date: 2024-10-30 11:50:29
Score: 3
Natty:
Report link

If you prefer not to write code, I recommend using online tools: pdf to base64

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

79140952

Date: 2024-10-30 11:47:28
Score: 1
Natty:
Report link

This works for me:)

along with the above changes need to add one more change as below:

springdoc: api-docs: path: /open-api.json

This will make swagger to pick the json file from /open-api.json as custom path instead of /v3/api-docs

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

79140945

Date: 2024-10-30 11:45:28
Score: 5.5
Natty:
Report link

Please find yaml here -yaml details

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

79140943

Date: 2024-10-30 11:45:28
Score: 1
Natty:
Report link

I can make a 2D array with all pixel_to_world coordinates in (RA, DEC), and I can make a mask on that array, then I use the mask on the original data cube.

y_height = data[0].shape[0]
x_width = data[0].shape[1]

x_indices, y_indices = np.meshgrid(np.arange(x_width), np.arange(y_height))

# Convert pixel indices to world coordinates
world_coords = wcsc.pixel_to_world(x_indices, y_indices)

# Extract the DEC values and store them in the coord_array
coord_array_dec = world_coords.icrs.dec.value
coord_array_l = world_coords.galactic.l.value
coord_array_b = world_coords.galactic.b.value
import numpy.ma as ma

mask_dec = ma.masked_greater(coord_array_dec, -13).mask
mask_l1 = ma.masked_greater(coord_array_l, 229).mask
mask_l2 = ma.masked_less(coord_array_l, 234).mask
mask_b1 = ma.masked_greater(coord_array_b, 4).mask
mask_b2 = ma.masked_less(coord_array_b, 14).mask
mask = mask_dec * mask_l1 * mask_l2 * mask_b1 * mask_b2
masked_data = data * mask[np.newaxis, :, :]

enter image description here

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

79140932

Date: 2024-10-30 11:42:27
Score: 0.5
Natty:
Report link

You should be start using "Activation event". This event is being a trigger to entry the AB test for users. Users, who triggers the activation event they will be included in measurement result and they will receive 50/50 split. If they don't trigger the activation event, they are not in AB test.

The activation event can be set in AB test detail in the section after "Targeting" section. See here on image: enter image description here

Even though the values are fetched on the mobile app start, the values are activated after activation event has been triggered (this logic is upon Firebase SDK and is not documented properly).

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

79140923

Date: 2024-10-30 11:39:26
Score: 3
Natty:
Report link

Given you're dealing with CSV, the columns order are not guaranteed, you have maybe another partition (with the old schema), so you need to update the schema for all partitions by checking theses options :

enter image description here

enter image description here

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

79140921

Date: 2024-10-30 11:39:26
Score: 5.5
Natty: 4.5
Report link

Have you tried raising this via Heroku help? I am seeing the same issue

Reasons:
  • Whitelisted phrase (-1): Have you tried
  • Low length (1.5):
  • No code block (0.5):
  • Me too answer (2.5): I am seeing the same issue
  • Contains question mark (0.5):
  • Single line (0.5):
  • Low reputation (1):
Posted by: Naveen Potnuru

79140917

Date: 2024-10-30 11:37:25
Score: 1
Natty:
Report link
POST /collections/{collection_name}/points/query
{
    "query": {
        "recommend": {
            "positive": [vector1, vector2],
            "negative": [vector3, vector4],
            "strategy": "average_vector"
        }
    }
}
Reasons:
  • Low length (0.5):
  • Has code block (-0.5):
  • Low reputation (1):
Posted by: Jenny

79140914

Date: 2024-10-30 11:37:25
Score: 1.5
Natty:
Report link

const res = (await clerkClient()).users works

docs have const res = await clerkClient().users

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