79497522

Date: 2025-03-10 09:20:16
Score: 0.5
Natty:
Report link

I was just troubleshooting this and your post was basically the only one I found. I was using a @mixin that scales font sizes for screen sizes and kept getting an error in my @mixin when the input variable for the list in @each loop didnt have a comma in it.

Doensn't work:

$text_sizes: 'html' 17px;

Works:

$text_sizes: 'html' 17px,;

Mixin:

@adjust_screens: 1280px 0.9, ...;

@mixin fontsizer ( $tag_and_base,$screens ) {
    @each $tag, $base in $tag_and_base {
        // got an error here: "expected selector."
        #{$tag} {
            font-size: calc( #{$base_size} *  1 );
        }
        @each $x, $y in $screens {
         ...repeats font size calculation for sizes
        }
    }
}

@include fontsizer( $text_sizes, $adjust_screens );

Not sure if this is how it's supposed to work or if this will work in every compiler, but it does work in sass-lang.com playground (https://sass-lang.com/playground/)

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

79497520

Date: 2025-03-10 09:20:16
Score: 2.5
Natty:
Report link

It looks like your script is not using the GPU properly and may be running on the CPU instead, which is why it's extremely slow. Also, your Quadro P1000 only has 4GB VRAM, which is likely causing out-of-memory issues.

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

79497510

Date: 2025-03-10 09:16:15
Score: 3.5
Natty:
Report link

Go to File from the menu and click on Save All

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

79497499

Date: 2025-03-10 09:10:14
Score: 3
Natty:
Report link

Follow this -> https://github.com/dart-lang/http/issues/627#issuecomment-1824426263

It solves the problem for me

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

79497498

Date: 2025-03-10 09:08:14
Score: 3
Natty:
Report link

This comment by aeroxr1:

you can also call sourceFile.renameTo(newPath)

– aeroxr1

Commented Nov 12, 2020 at 11:03

Please see Reliable File.renameTo() alternative on Windows?

I just had this issue, where renameTo did not work in an Azure deployment. I tried moving a file from a mounted (SMB) folder to a local folder. Apparently, people have issues with it on windows too.

Reasons:
  • Blacklisted phrase (1): did not work
  • Low length (0.5):
  • No code block (0.5):
  • Low reputation (1):
Posted by: Tamás

79497496

Date: 2025-03-10 09:06:13
Score: 1.5
Natty:
Report link

You can achieve this by running a loop that continuously checks the CPU usage and only exits when it drops below 60%. To prevent excessive CPU usage while waiting, you should use Sleep to introduce a small delay between checks and DoEvents to keep the system responsive.

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

79497486

Date: 2025-03-10 09:01:12
Score: 4
Natty:
Report link

i using myhlscloud.com for my videos

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

79497478

Date: 2025-03-10 09:00:12
Score: 1.5
Natty:
Report link

Even I faced the same issue, but when I went into Putty -> settings -> connection -> serial -> Making Flow control to none.

Worked for me

Reasons:
  • Whitelisted phrase (-1): Worked for me
  • Low length (1):
  • No code block (0.5):
  • Low reputation (1):
Posted by: sai vamshi vaddepally

79497471

Date: 2025-03-10 08:58:11
Score: 1
Natty:
Report link

Just add your own CSS:

body {
  font-size: 16px;
}

Yes, browsers do inject some default styles in popups. You can easily override them.

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

79497467

Date: 2025-03-10 08:57:11
Score: 1
Natty:
Report link

Check if all package dependencies are pulled in:
enter image description here

Also try to explicitly add all these dependencies to the application assembly (the one that generates the executable file, for example, *.exe).

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

79497464

Date: 2025-03-10 08:55:10
Score: 1
Natty:
Report link

Now i have edited my code:-

const connectDB = async () => { try { console.log("Connecting to MongoDB with URI:", process.env.MONGO_URI);

await mongoose.connect(process.env.MONGO_URI, {
  useNewUrlParser: true,
  useUnifiedTopology: true,
});

console.log("Connected to MongoDB");

// Only run seeding in development mode
if (process.env.NODE_ENV === "development") {
  await seedAdminUser();
}
Reasons:
  • Has code block (-0.5):
  • Self-answer (0.5):
  • Low reputation (1):
Posted by: saurabh keshari

79497452

Date: 2025-03-10 08:51:10
Score: 0.5
Natty:
Report link

Indeed, this is a header that is not found in browser specifications, as can also be somewhat inferred by the X- prefix.

The best documentation I could find is AVFoundation / AVPlayerItemAccessLogEvent / playbackSessionID, which states:

A GUID that identifies the playback session.

This value is used in HTTP requests.

The property corresponds to “cs-guid”.

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

79497450

Date: 2025-03-10 08:51:09
Score: 6 🚩
Natty:
Report link

did you use any additional local server environment for development?

Reasons:
  • Low length (1.5):
  • No code block (0.5):
  • Ends in question mark (2):
  • Single line (0.5):
  • Starts with a question (0.5): did you use any addit
  • Low reputation (1):
Posted by: sawankumarparida

79497449

Date: 2025-03-10 08:51:09
Score: 1
Natty:
Report link

Try double quotes:

df=spark.sql("""
             select *
             from df
             where column_a not like 'AB%'
             """)
Reasons:
  • Low length (1):
  • Has code block (-0.5):
  • Low reputation (0.5):
Posted by: Civyshk

79497445

Date: 2025-03-10 08:49:09
Score: 1.5
Natty:
Report link

when use omz plugin, just run

> omz plugin enable docker
> omz plugin enable docker-compose
Reasons:
  • Low length (1):
  • Has code block (-0.5):
  • Starts with a question (0.5): when use
  • Low reputation (0.5):
Posted by: lotosbin

79497441

Date: 2025-03-10 08:47:08
Score: 1
Natty:
Report link

So my question: is it actually a unit test if it uses the real database or is it an integration test? Am I using repository pattern wrong since I cannot unit test it with mock or in-memory database?

The end goal of writing unit or integration tests is to allow you to confidently make changes (improvements) to your code as time goes by and at the same time to be relatively confident that these newly introduced changes don't break the existing functionality by running tests that correctly indicate if the system under test behaves as expected or not (Pass or Fail). And this should be achieved with no or minimal changes on the tests themselves since frequently amending tests most likely will lead to bugs or errors in the tests. This must be your main aim when testing your app not whether your tests are pure unit test. Pure unit tests e.g. testing all (or almost all) methods in isolation with each dependency mocked or stubbed out, are normally a lot fragile the smallest code changes lead to serious changes in the tests. This is somewhat opposite to the main goal of testing which is solid and stable tests that correctly indicate if something is broken and that don't provide you with a ton of false negative or false positive results. To achieve this the best way is to take a more higher level integration approach of testing your app (especially it it is an asp.net core web application with a database) e.g. not to mock your database repositories but rather than that use sql server localdb with pre seeded data in it.

For more insights on which is the correct testing approach you should follow when writing tests for web apps/web apis I strongly recommend you to read this article TDD is dead. Long live testing.

Just one quote from it

I rarely unit test in the traditional sense of the word, where all dependencies are mocked out, and thousands of tests can close in seconds. It just hasn't been a useful way of dealing with the testing of Rails applications. I test active record models directly, letting them hit the database, and through the use of fixtures. Then layered on top is currently a set of controller tests, but I'd much rather replace those with even higher level system tests through Capybara or similar.

and this is exactly how Microsoft recommends testing Web Apis with a database Testing against your production database system

public class TestDatabaseFixture
{
    private const string ConnectionString = @"Server=(localdb)\mssqllocaldb;Database=EFTestSample;Trusted_Connection=True;ConnectRetryCount=0";

    private static readonly object _lock = new();
    private static bool _databaseInitialized;

    public TestDatabaseFixture()
    {
        lock (_lock)
        {
            if (!_databaseInitialized)
            {
                using (var context = CreateContext())
                {
                    context.Database.EnsureDeleted();
                    context.Database.EnsureCreated();

                    context.AddRange(
                        new Blog { Name = "Blog1", Url = "http://blog1.com" },
                        new Blog { Name = "Blog2", Url = "http://blog2.com" });
                    context.SaveChanges();
                }

                _databaseInitialized = true;
            }
        }
    }

    public BloggingContext CreateContext()
        => new BloggingContext(
            new DbContextOptionsBuilder<BloggingContext>()
                .UseSqlServer(ConnectionString)
                .Options);
}
public class BloggingControllerTest : IClassFixture<TestDatabaseFixture>
{
    public BloggingControllerTest(TestDatabaseFixture fixture)
        => Fixture = fixture;

    public TestDatabaseFixture Fixture { get; }
[Fact]
public async Task GetBlog()
{
    using var context = Fixture.CreateContext();
    var controller = new BloggingController(context);

    var blog = (await controller.GetBlog("Blog2")).Value;

    Assert.Equal("http://blog2.com", blog.Url);
}

In short they use a LocalDB database instance, seed data in this instance using the test fixture and executing the tests on a higher integration level i.e. calling the controller method which calls a service(repository) method that queries the Blogs dbSet on the dbContext that executes a Sql query to LocalDB that returns the seeded data.

Reasons:
  • Blacklisted phrase (1): this article
  • Blacklisted phrase (0.5): I cannot
  • Long answer (-1):
  • Has code block (-0.5):
  • Contains question mark (0.5):
  • Low reputation (0.5):
Posted by: Anton Kovachev

79497440

Date: 2025-03-10 08:47:08
Score: 1.5
Natty:
Report link
  1. Connect your phone with cable

  2. Enable USB Debugging

  3. Run the following command

sudo adb uninstall app_package_name

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

79497435

Date: 2025-03-10 08:46:08
Score: 1.5
Natty:
Report link

you need add opacity: 0.99.

<WebViewAutoHeight
      style={{
        opacity: 0.99,
      }}
      scalesPageToFit={true}
      source={{ uri: link }}
    />
Reasons:
  • Low length (1):
  • Has code block (-0.5):
  • Low reputation (1):
Posted by: Anh Huy Tran

79497425

Date: 2025-03-10 08:41:07
Score: 3.5
Natty:
Report link

you can use this javascript/typescript library https://www.npmjs.com/package/@__pali__/elastic-box?activeTab=readme

Reasons:
  • Whitelisted phrase (-1.5): you can use
  • Probably link only (1):
  • Contains signature (1):
  • Low length (1.5):
  • No code block (0.5):
  • Single line (0.5):
  • Low reputation (0.5):
Posted by: Pali

79497420

Date: 2025-03-10 08:39:06
Score: 1.5
Natty:
Report link

Our team needs more information to be able to investigate your case.
Kindly create a ticket with us at https://aps.autodesk.com/get-help ADN support. This will enable us get your personal information and be able to track the issue.

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

79497418

Date: 2025-03-10 08:38:06
Score: 2.5
Natty:
Report link

Try using position: fixed; instead of sticky (on the .header)

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

79497413

Date: 2025-03-10 08:32:05
Score: 1.5
Natty:
Report link

Thank you for your comment! I got it working now. I'm using dbt with databricks, so data_tests and using a date to filter on timestamp both work fine. I can actually pass the date to the test, but I should be using expression_is_true instead of accepted_value. And with an extra single quote around the date. All good now!

- dbt_utils.expression_is_true:
                  expression: ">= '2025-03-01'"
Reasons:
  • Blacklisted phrase (0.5): Thank you
  • Has code block (-0.5):
  • Self-answer (0.5):
  • Low reputation (1):
Posted by: Prim Pasuwan

79497412

Date: 2025-03-10 08:32:05
Score: 1.5
Natty:
Report link

Turns out this was a bug in the library itself and not just a basic misunderstanding of cmake. The problem is addressed in https://github.com/Goddard-Fortran-Ecosystem/pFUnit/pull/485

As pointed out by @Tsyvarev, the scoping of PFUNIT_DRIVER was the source of the problem. The sledgehammer solution was to cache this variablee (i.e., using the CACHE) so that the variable is visible at all scopes.

Reasons:
  • Has code block (-0.5):
  • User mentioned (1): @Tsyvarev
  • Self-answer (0.5):
  • Low reputation (0.5):
Posted by: Jared

79497402

Date: 2025-03-10 08:24:03
Score: 5.5
Natty:
Report link

I had an older and new Ubuntu installed (22.04 and 24.04) and the 22.04 was the default when opening VS Code. The issue turned out to be in the configuration of WSL as described here: How do I open a wsl workspace in VS Code for a different distro?

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

79497399

Date: 2025-03-10 08:23:03
Score: 1
Natty:
Report link
  1. Install Tailwind CSS and Dependencies - npm install -D tailwindcss postcss autoprefixer

  2. Initialize Tailwind CSS - npx tailwindcss init -p

  3. Open tailwind.config.js -

    /** @type {import('tailwindcss').Config} / export default { content: [ "./index.html", "./src/**/.{js,ts,jsx,tsx}", ], theme: { extend: {}, }, plugins: [], }

  4. Inside your main CSS file - src/index.css , add:

    @tailwind base; @tailwind components; @tailwind utilities;

  5. In App.jsx, import the CSS file: import './index.css';

  6. Now start your Vite project.

Usage -

const App=() =>{
  return (
    <div className="flex items-center justify-center">
      <h1 className="text-3xl font-bold text-blue-600">Hello, 
                   Tailwind CSS!</h1>
    </div>
  );
}
Reasons:
  • Long answer (-0.5):
  • Has code block (-0.5):
  • User mentioned (1): @type
  • User mentioned (0): @tailwind
  • User mentioned (0): @tailwind
  • User mentioned (0): @tailwind
  • Low reputation (1):
Posted by: Nancy Gupta

79497396

Date: 2025-03-10 08:21:02
Score: 1
Natty:
Report link

Thank you @Andrew B for the comment.

Yes, it’s possible that further requests from the user who was on the unhealthy instance could fail if the user is redirected to a different instance after the restart. This happens because the `ARRAffinity` cookie is tied to the unhealthy instance and will no longer be valid once the instance is restarted.

- If the session state is not persisted externally like using Azure Redis Cache, the user may lose their session or be logged out. To avoid this, consider storing session data externally so users can maintain their session even if they are redirected to another instance.

- Please refer this blog for better understanding ARRAffinity.

Application Insights doesn’t show which instance a user is on by default. You can track this by logging the instance ID (using the WEBSITE_INSTANCE_ID variable) in your telemetry.

Refer this MSDoc to know about above environment variable.

Here's the sample code :

var instanceId = Environment.GetEnvironmentVariable("WEBSITE_INSTANCE_ID");
TelemetryClient.TrackEvent("UserSessionTracking", new Dictionary<string, string>
{
{ "UserId", userId },
{ "InstanceId", instanceId }
});
`

This lets you filter and view data based on the instance the user was on.

Reasons:
  • Blacklisted phrase (0.5): Thank you
  • Blacklisted phrase (1): this blog
  • Long answer (-1):
  • Has code block (-0.5):
  • User mentioned (1): @Andrew
Posted by: Sirra Sneha

79497386

Date: 2025-03-10 08:19:02
Score: 2
Natty:
Report link

Resource registered by this uri is not recognized (Settings | Languages & Frameworks | Schemas and DTDs)
URI is not registered (Settings | Languages & Frameworks | Schemas and DTDs) how to clear the error in xml android studio

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

79497378

Date: 2025-03-10 08:14:01
Score: 4
Natty:
Report link

Check this out. https://stackoverflow.com/a/39777594. There are 25 answers maybe you find soultion for yourself.

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

79497370

Date: 2025-03-10 08:11:00
Score: 2.5
Natty:
Report link

if you have appcenter crashanalytics its override firebase crashanalytics after removed appcenter-crashanalyics its worked like charm.

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

79497355

Date: 2025-03-10 08:06:59
Score: 1
Natty:
Report link

【 X 】DXZ-x推特福利851🙅

【 X 】DXZ-x推特福利852👍39

【 X 】DXZ-x推特福利853👍39

【 X 】DXZ-x推特福利854🙅

【 X 】DXZ-x推特福利855🙅

【 X 】DXZ-x推特福利856👍38

【 X 】DXZ-x推特福利857👍39

【 X 】DXZ-x推特福利858👍33

【 X 】DXZ-x推特福利859👍35

【 X 】DXZ-x推特福利860👍38

【 X 】DXZ-x推特福利861👍32

【 X 】DXZ-x推特福利862👍31

【 X 】DXZ-x推特福利863👍39

【 X 】DXZ-x推特福利864👍34

【 X 】DXZ-x推特福利865👍36

【 X 】DXZ-x推特福利866🙅

【 X 】DXZ-x推特福利867🙅

【 X 】DXZ-x推特福利868👍41

【 X 】DXZ-x推特福利869🙅

【 X 】DXZ-x推特福利870👍13

【 X 】DXZ-x推特福利871👍37

【 X 】DXZ-x推特福利872👍43

【 X 】DXZ-x推特福利873👍44

【 X 】DXZ-x推特福利874👍37

【 X 】DXZ-x推特福利875👍41

【 X 】DXZ-x推特福利876👍45

【 X 】DXZ-x推特福利877👍48

【 X 】DXZ-x推特福利878👍42

【 X 】DXZ-x推特福利879🙅

【 X 】DXZ-x推特福利880🙅

【 X 】DXZ-x推特福利881👍40

【 X 】DXZ-x推特福利882👍46

【 X 】DXZ-x推特福利883👍45

【 X 】DXZ-x推特福利884👍40

【 X 】DXZ-x推特福利885🙅

【 X 】DXZ-x推特福利886👍38

【 X 】DXZ-x推特福利887👍43

【 X 】DXZ-x推特福利888👍45

【 X 】DXZ-x推特福利889👍45

【 X 】DXZ-x推特福利890👍40

【 X 】DXZ-x推特福利891👍42

【 X 】DXZ-x推特福利892👍41

【 X 】DXZ-x推特福利893👍45

【 X 】DXZ-x推特福利894👍40

【 X 】DXZ-x推特福利895👍46

【 X 】DXZ-x推特福利896👍45

【 X 】DXZ-x推特福利897👍45

【 X 】DXZ-x推特福利898👍46

【 X 】DXZ-x推特福利899🙅

【 X 】DXZ-x推特福利900👍48

【 X 】DXZ-x推特福利901🙅

【 X 】DXZ-x推特福利902🙅

【 X 】DXZ-x推特福利903🙅

【 X 】DXZ-x推特福利904👍43

【 X 】DXZ-x推特福利905👍40

【 X 】DXZ-x推特福利906👍39

【 X 】DXZ-x推特福利907👍49

【 X 】DXZ-x推特福利908👍41

【 X 】DXZ-x推特福利909👍43

【 X 】DXZ-x推特福利910👍42

【 X 】DXZ-x推特福利911👍43

【 X 】DXZ-x推特福利912👍40

【 X 】DXZ-x推特福利913👍42

【 X 】DXZ-x推特福利914👍4p

【 X 】DXZ-x推特福利915👍44

【 X 】DXZ-x推特福利916👍44

【 X 】DXZ-x推特福利917👍46

【 X 】DXZ-x推特福利918👍36

【 X 】DXZ-x推特福利919👍47

【 X 】DXZ-x推特福利920👍45

【 X 】DXZ-x推特福利921🙅

【 X 】DXZ-x推特福利922👍51

【 X 】DXZ-x推特福利923👍35

【 X 】DXZ-x推特福利924👍40

【 X 】DXZ-x推特福利925👍39

【 X 】DXZ-x推特福利926👍40

【 X 】DXZ-x推特福利927👍14

【 X 】DXZ-x推特福利928🙅

【 X 】DXZ-x推特福利929👍42

【 X 】DXZ-x推特福利930👍29

👍【X / group】🤝49👍44

👍【X / group】🤝50👍41

👍【X / group】🤝51👍40

👍【X / group】🤝52👍43

👍【X / group】🤝53👍41

X-Twitter HK-H89👍46

X-Twitter HK-H90🙅

X-Twitter HK-H91🙅

X-Twitter HK-H92🙅

X-Twitter HK-H93🙅

Reasons:
  • Long answer (-1):
  • No code block (0.5):
  • No latin characters (0.5):
  • Low reputation (1):
Posted by: Muhamad Yuki

79497353

Date: 2025-03-10 08:06:59
Score: 3
Natty:
Report link

I finally found a solution, and it's really, really easy. Just add the flag -Dcom.sun.webkit.useHTTP2Loader=false. Thanks to this comment.

Reasons:
  • Blacklisted phrase (0.5): Thanks
  • Low length (1):
  • Has code block (-0.5):
  • Self-answer (0.5):
  • Single line (0.5):
  • Low reputation (1):
Posted by: Casio Production

79497352

Date: 2025-03-10 08:05:58
Score: 1
Natty:
Report link

As @NelsonGon mentioned, vcov() works. Please see the below example using Swiss data.

data(swiss)

### multiple linear model, swiss data
lmod <- lm(Fertility ~ ., data = swiss)

vcov(lmod)

The covariance matrix as below:

                 (Intercept)   Agriculture   Examination    Education      Catholic Infant.Mortality
(Intercept)      114.6192408 -0.4849476484 -1.2025734658 -0.281265331 -0.0221836036    -3.2658448131
Agriculture       -0.4849476  0.0049426416  0.0043708713  0.004789532 -0.0005112844     0.0065656539
Examination       -1.2025735  0.0043708713  0.0644541409 -0.027310637  0.0051339487     0.0003482484
Education         -0.2812653  0.0047895318 -0.0273106371  0.033499469 -0.0030003666     0.0122667258
Catholic          -0.0221836 -0.0005112844  0.0051339487 -0.003000367  0.0012431162    -0.0027467320
Infant.Mortality  -3.2658448  0.0065656539  0.0003482484  0.012266726 -0.0027467320     0.1457098919
Reasons:
  • Long answer (-0.5):
  • Has code block (-0.5):
  • User mentioned (1): @NelsonGon
  • Low reputation (1):
Posted by: Ningshan Li

79497351

Date: 2025-03-10 08:05:58
Score: 1.5
Natty:
Report link

I agree with NVRM it's easier if you use grid But if u want to go with the table way try fixing the percentages. I saw that you used px for the 'th:nth-child(2), td:nth-child(2), th:nth-child(3), td:nth-child(3), th:nth-child(6), td:nth-child(6)', try using percentage on this too

(Note: If u use grid instead of table, responsive is also gonna be easier)

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

79497350

Date: 2025-03-10 08:05:58
Score: 1
Natty:
Report link

Try adding this in your code instead of using field level bean creation, use constructor based bean creation for the UserRepo in CustomerDetails class like mentioned by @M.Deinum

import lombok.RequiredArgsConstructor;

@Service("customuserdetails")
@RequiredArgsConstructor
public class CustomUserDetails implements UserDetailsService {

    private final UserRepo userrepo;
    private final PasswordEncoder bcrypt;
// rest of the code
}

and add the @Configuration annotation instead of @Component to SecurityBeans class

import org.springframework.context.annotation.Configuration;

@Configuration
public class Securitybeans {

    //rest of the code
}
Reasons:
  • Long answer (-0.5):
  • Has code block (-0.5):
  • User mentioned (1): @Configuration
  • User mentioned (0): @Component
  • Low reputation (1):
Posted by: Veeresh

79497347

Date: 2025-03-10 08:03:58
Score: 2
Natty:
Report link

If you install according to https://code.visualstudio.com/docs/cpp/config-mingw, MSYS2.exe direct install.

  1. check if your path: \msys64\mingw64\bin is empty? if it is empty, it shows the gdb is missing. Follow my step 2

  2. open this website, https://packages.msys2.org/packages/mingw-w64-x86_64-gdb, copy the installation comman: pacman -S mingw-w64-x86_64-gdb

  3. open the MSYS2 installed in your computer, past: pacman -S mingw-w64-x86_64-gdb, the comman you copied in step 2.

    if you see the path: \msys64\mingw64\bin is filled with files. You're successeful. Open a cmd window, and input: gbd --version.

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

79497344

Date: 2025-03-10 08:02:58
Score: 5.5
Natty: 4.5
Report link

Is it possible that I Can inject my custom Resolution Rule in databricks environment . Because this is working in my local open source spark , but when i run it in databricks , it doesn't register the resolution rules.

Please Help

Reasons:
  • RegEx Blacklisted phrase (3): Please Help
  • Low length (0.5):
  • No code block (0.5):
  • Starts with a question (0.5): Is it
  • Low reputation (1):
Posted by: Bhavya

79497341

Date: 2025-03-10 08:01:57
Score: 3
Natty:
Report link

For this you have to check the electron version as well as if any package giving error then install separately.

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

79497336

Date: 2025-03-10 07:58:57
Score: 1
Natty:
Report link

In Pre Execution functions you can set intervals manually, which you can take from any request:

function a(){    
    this.intervals = ["0",dashboard.getParameterValue('value2')];
} 

In 'value2' I write the result of my query. And in this way it is possible to set dynamic intervals.

Reasons:
  • Low length (0.5):
  • Has code block (-0.5):
  • Low reputation (1):
Posted by: Илья

79497334

Date: 2025-03-10 07:57:57
Score: 2.5
Natty:
Report link

Most probably problem with CORS since now web is defaulted to canvaskit. Easiest way is to use this package for images. https://pub.dev/packages/image_network

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

79497322

Date: 2025-03-10 07:51:56
Score: 2.5
Natty:
Report link

I clean solution and build again and run web api project it worked.

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

79497317

Date: 2025-03-10 07:48:55
Score: 1
Natty:
Report link

I ran into the same problem and was able to workaround it by downgrading to Python 3.12 from Python 3.13.

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

79497313

Date: 2025-03-10 07:44:54
Score: 1.5
Natty:
Report link




header 1 header 2
cell 1 cell 2
cell 3 cell 4
[email protected]
header 1
header 2


cell 1
cell 2

cell 3
cell 4

Reasons:
  • Low length (1):
  • Has code block (-0.5):
  • Low reputation (1):
Posted by: محمد المساعيد

79497305

Date: 2025-03-10 07:38:53
Score: 2.5
Natty:
Report link

If you want to changes the shown name, you can go to File - Options and in the section for the current DB you can change the title.

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

79497302

Date: 2025-03-10 07:37:52
Score: 4
Natty:
Report link

You can use this javascripy library https://www.npmjs.com/package/@__pali__/elastic-box?activeTab=readme

Reasons:
  • Whitelisted phrase (-1.5): You can use
  • Probably link only (1):
  • Contains signature (1):
  • Low length (2):
  • No code block (0.5):
  • Single line (0.5):
  • Low reputation (0.5):
Posted by: Pali

79497297

Date: 2025-03-10 07:34:52
Score: 1.5
Natty:
Report link
\COPY movie (id, name, year) FROM 'movie.txt' WITH( DELIMITER '|', NULL '');

Command like this is also works. It can have more than one option.

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

79497293

Date: 2025-03-10 07:32:51
Score: 2
Natty:
Report link

then adding the second code sample produces the same json however this time nested fields are showing {} instead on the data

do you mean WriteIndented doesn't work?Could you share an example with the model:

public class Employee
{
public string? Name { get; set; }
public Employee? Manager { get; set; }
public List<Employee>? DirectReports { get; set; }
}

If the default handler can't meet your requirement,you could create a handler follow this document:

 public class MyReferenceResolver : ReferenceResolver
{
.......
}
class MyReferenceHandler : ReferenceHandler
{
    public MyReferenceHandler() => Reset();
    private ReferenceResolver? _rootedResolver;
    public override ReferenceResolver CreateResolver() => _rootedResolver!;
    public void Reset() => _rootedResolver = new MyReferenceResolver();
}





var myReferenceHandler = new MyReferenceHandler();
builder.Services
       .AddControllers()
       .AddJsonOptions(options =>
       {
           options.JsonSerializerOptions.ReferenceHandler =myReferenceHandler;
           //options.JsonSerializerOptions.DefaultIgnoreCondition = System.Text.Json.Serialization.JsonIgnoreCondition.WhenWritingNull; // Optional
           options.JsonSerializerOptions.WriteIndented = true; // For formatting
       });
Reasons:
  • Blacklisted phrase (1): this document
  • RegEx Blacklisted phrase (2.5): Could you share
  • RegEx Blacklisted phrase (1.5): Resolver?
  • Long answer (-1):
  • Has code block (-0.5):
  • Contains question mark (0.5):
  • High reputation (-2):
Posted by: Ruikai Feng

79497292

Date: 2025-03-10 07:31:51
Score: 1
Natty:
Report link
from PIL import Image

# Load the uploaded image
image_path = "/mnt/data/WhatsApp Image 2025-02-23 at 22.24.21_eed154c8.jpg"

image = Image.open(image_path)

# Display the original image
image.show()
Reasons:
  • Low length (0.5):
  • Has code block (-0.5):
  • Low reputation (1):
Posted by: arslan ashfaq

79497290

Date: 2025-03-10 07:31:51
Score: 1.5
Natty:
Report link

enter image description here

After reading through docs and some searching, I found the above diagram, which I believe explains the hierarchy visually and to me it makes sense.
Please make corrections if the above diagram is not correct.
I am too eager to understand the correct hierarchy.

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

79497280

Date: 2025-03-10 07:27:49
Score: 4
Natty:
Report link

Thank You for Valuable Insights — From Prava Software Solutions (Mancherial)

Thank you to the amazing StackOverflow community for addressing important Python-related questions like "How to tell Python to stop writing history file?".

At Prava Software Solutions, a leading software development company based in Mancherial, we often encounter similar challenges while building custom software solutions, automation tools, and AI-driven applications for our clients. Community-driven platforms like StackOverflow are essential for finding quick, reliable solutions that help us deliver high-quality software products efficiently.

Reasons:
  • Blacklisted phrase (0.5): Thank You
  • Blacklisted phrase (0.5): Thank you
  • Blacklisted phrase (1): StackOverflow
  • RegEx Blacklisted phrase (1): help us
  • Long answer (-0.5):
  • No code block (0.5):
  • Low reputation (1):
Posted by: Raju Gundarapu

79497275

Date: 2025-03-10 07:25:49
Score: 0.5
Natty:
Report link

I have quite same issue but my case is slight different. I cannot get the base64 output

so, in my case just check the property output in <image-cropper> selector

have to ensure that we have output base64 not the SafeUrl

Reasons:
  • Blacklisted phrase (0.5): I cannot
  • Low length (0.5):
  • Has code block (-0.5):
Posted by: ninoorta

79497270

Date: 2025-03-10 07:21:48
Score: 3
Natty:
Report link

you may use the regex in your maven command e.g. clean test -DsuiteXmlFile=${suiteXmlFile} , then add a choice parameter in jenkins job.

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

79497269

Date: 2025-03-10 07:21:47
Score: 6 🚩
Natty:
Report link

I am getting the same issue in react-native:0.78.0.

Reasons:
  • Low length (1.5):
  • No code block (0.5):
  • Me too answer (2.5): I am getting the same issue
  • Single line (0.5):
  • Low reputation (1):
Posted by: GOPI KRISHNA

79497268

Date: 2025-03-10 07:21:47
Score: 3.5
Natty:
Report link

I have same issue. My solution was to update the path ownership.

sudo chown -R mysqlrouter:mysqlrouter /var/lib/mysqlrouter /etc/mysqlrouter

Then restart mysqlrouter and it works.

Reasons:
  • Low length (0.5):
  • Has code block (-0.5):
  • Me too answer (2.5): I have same issue
  • Low reputation (1):
Posted by: Hien Thai Le

79497265

Date: 2025-03-10 07:20:46
Score: 2.5
Natty:
Report link

Use this instead of http://localhost:PORT on your frontend var ip = '127.0.0.1:YOUR_PORT';

var socket = io.connect(ip);

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

79497264

Date: 2025-03-10 07:20:46
Score: 3
Natty:
Report link

Tried adding a comment but couldnt due to low rep (min 50 required). This answer (marked) and provided info is now obsolete as of Mar 2025.

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

79497263

Date: 2025-03-10 07:19:46
Score: 3
Natty:
Report link

getting error >InvalidOperationException: Can not apply markup minification to text content, that was encoded in the 'br' format.

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

79497260

Date: 2025-03-10 07:18:46
Score: 0.5
Natty:
Report link

I have fixed the issue when update packages

from

Microsoft.OpenApi from 2.0.0-preview5 to 1.6.23 and

dotnet add package Microsoft.OpenApi --version 1.6.23

Microsoft.AspNetCore.OpenApi 10.0.0-preview.1.25120.3 to 9.0.2

dotnet add package Microsoft.AspNetCore.OpenApi --version 9.0.2

If there is an error / Warning As Error: Detected package downgrade:

run the below command in terminal

dotnet nuget locals all --clear

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

79497242

Date: 2025-03-10 07:09:44
Score: 5.5
Natty: 4.5
Report link

have u resolved ur problem?i meet the same floodwait

Reasons:
  • RegEx Blacklisted phrase (1.5): resolved ur problem?
  • Low length (1.5):
  • No code block (0.5):
  • Contains question mark (0.5):
  • Single line (0.5):
  • Low reputation (1):
Posted by: 杜wm

79497240

Date: 2025-03-10 07:08:43
Score: 3.5
Natty:
Report link

I already solved. Both Header and footer, starts to hide randomly when you use EmptyViews together. You only need to change Both to Template option. then they won't hide anymore.

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

79497218

Date: 2025-03-10 06:59:41
Score: 0.5
Natty:
Report link

'''


    json_map['key3'] as key3
    .......
    ..
    .....
    ......
    json_map['key100'] as key100

from(
        select json_map
        from input_table,lateral table(json_tuple(json_str)) as T(json_map)
    )

'''

I finally solved my problem through this method。this is json_tupe func

'''

public void eval(String jsonStr, String... keys) {
    HashMap<String, String> result = new HashMap<>(keys.length);
    if (jsonStr == null || jsonStr.isEmpty()) {
        collect(result);
        return;
    }
    try {
        JsonNode jsonNode = objectMapper.readTree(jsonStr);
        for (String key : keys) {
            JsonNode valueNode = jsonNode.get(key);

            if (valueNode != null) {
                result.put(key, valueNode.asText());
            }
        }
        collect(result);
    } catch (Exception e) {
        collect(result);
    }
}

'''

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

79497216

Date: 2025-03-10 06:59:41
Score: 2.5
Natty:
Report link

If you face it in Flutter in the terminal, you can run a command like this to hide it.

`flutter run -v | grep -v "vendor.oplus.media.vpp.stutter"`

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

79497213

Date: 2025-03-10 06:56:41
Score: 2.5
Natty:
Report link

This docs seems to be outdated. The code above seems to have moved to AuthServericeProvider and there is already the original code that returns the URL in the email. That can be modified to get the desired URL.

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

79497211

Date: 2025-03-10 06:54:40
Score: 1.5
Natty:
Report link

you could try mkl rather than blas:

  1. pip uninstall numpy

  2. if you are in conda env: conda install numpy mkl or conda install numpy mkl

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

79497209

Date: 2025-03-10 06:54:40
Score: 17.5
Natty: 7.5
Report link

@Guy i am also having same issue ,on how to inject my token to my build hasuraprovider have you found any solution if yes can you post it here ,Thanks in advance

Reasons:
  • Blacklisted phrase (0.5): Thanks
  • Blacklisted phrase (1.5): any solution
  • RegEx Blacklisted phrase (2.5): can you post
  • RegEx Blacklisted phrase (3): Thanks in advance
  • RegEx Blacklisted phrase (2.5): have you found any solution if yes can you post it here
  • Low length (1):
  • No code block (0.5):
  • Me too answer (2.5): i am also having same issue
  • User mentioned (1): @Guy
  • Single line (0.5):
  • Looks like a comment (1):
  • Low reputation (1):
Posted by: Bobby

79497202

Date: 2025-03-10 06:50:38
Score: 3.5
Natty:
Report link

Yeah I know someone who knows about this hit him up on twitter https://x.com/samsixint?s=21

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

79497200

Date: 2025-03-10 06:50:38
Score: 1.5
Natty:
Report link

Set color transparent

RefreshIndicator(
color: Colors.transparent,
backgroundColor: Colors.transparent,
elevation: 0,)
Reasons:
  • Low length (1):
  • Has code block (-0.5):
  • Low reputation (1):
Posted by: Alam merdeka

79497199

Date: 2025-03-10 06:50:38
Score: 3
Natty:
Report link

Maybe you can download jdk 7u80-b15 from Huawei open source mirror site to support your project.

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

79497195

Date: 2025-03-10 06:44:38
Score: 1.5
Natty:
Report link
 Hi,

Add border in the table tag. 
 msg += "<table border='1'><tr><td>Name of Company</td><td>Code</td></tr><tr><td>Agent</td><td>ABC</td></tr></table>";
         
Reasons:
  • Low length (1):
  • Has code block (-0.5):
  • Low reputation (1):
Posted by: user2002684

79497183

Date: 2025-03-10 06:40:37
Score: 2.5
Natty:
Report link

app.get("/filter",(req,res)=>{

const type = req.query.type;

const filterjokes = jokes.filter((joke)=> joke.jokeType[] === type);

console.log(filterjokes.jokeType);

res.json(filterjokes) })

it shows only this on postman [] can some one gide me



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

79497175

Date: 2025-03-10 06:34:36
Score: 3
Natty:
Report link

I tried this scenario, it works as you mentioned workaround via the parameter -certchain, see more from https://github.com/Azure/azure-sdk-for-java/issues/44085#issuecomment-2709511157

Reasons:
  • Probably link only (1):
  • Low length (1):
  • Has code block (-0.5):
  • Single line (0.5):
  • Low reputation (1):
Posted by: Moary Chan

79497169

Date: 2025-03-10 06:29:35
Score: 2.5
Natty:
Report link

This can be done with https://pre-commit.com/ (https://github.com/pre-commit/pre-commit).
This framework appears to have been created with this very question in mind.

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

79497164

Date: 2025-03-10 06:27:34
Score: 2.5
Natty:
Report link

I’ve developed a Python based Discord bot that automates direct messages for cold outreach.

Hit me if you want it.

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

79497163

Date: 2025-03-10 06:27:34
Score: 5.5
Natty: 5.5
Report link

I also encountered this problem, how did I solve it in the end?

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

79497158

Date: 2025-03-10 06:23:33
Score: 2
Natty:
Report link

Seems like the current answer is unfortunately "you can't". Maybe in the future...

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

79497154

Date: 2025-03-10 06:21:32
Score: 4
Natty:
Report link

This can be the configuration error on php.ini on your local server. Try uncommenting relevent statement on the file. For an example, if your database is MYSqlite, you have to uncomment "extension=pdo_sqlite" in php.ini file.

This video also will help you. https://www.youtube.com/watch?v=QbX5EdD0Yok

Reasons:
  • Blacklisted phrase (1): youtube.com
  • Blacklisted phrase (1): This video
  • Low length (0.5):
  • No code block (0.5):
  • Low reputation (1):
Posted by: IDEALEMONS

79497137

Date: 2025-03-10 06:10:30
Score: 0.5
Natty:
Report link

You can rename the payload during pattern matching in the calling code:

switch getBeeper(myDeviceType) {
case .success(let isEnabled):
    
    if isEnabled {
        
    } else {
        
    }
case .failure(let error):
    
}
Reasons:
  • Low length (0.5):
  • Has code block (-0.5):
  • Low reputation (0.5):
Posted by: Kiryl Famin

79497130

Date: 2025-03-10 06:05:29
Score: 2.5
Natty:
Report link

This is wrt to your path error, try storing your dataset inside a folder and open the python script in same folder, at that time u dont need to path, u can just load ur dataset directly by calling the name of the file

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

79497127

Date: 2025-03-10 06:03:28
Score: 1
Natty:
Report link

Digital marketing is basically promoting products, services, or brands using online platforms and tech. Instead of old-school stuff like billboards or TV ads, it’s all about reaching people where they hang out—think websites, social media, emails, or search engines like Google.

if we speak about how it works. You’ve got social media (Instagram, X, etc.), SEO (getting found on Google), paid ads (like Google Ads or Facebook Ads), email campaigns, and even content like blogs or videos. It’s about grabbing attention, building interest, and turning that into sales or loyal fans—usually tracked with data like clicks or conversions.

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

79497123

Date: 2025-03-10 06:01:28
Score: 1.5
Natty:
Report link

The Hint for me was wrt a project within a project.

I was "all thumbs" I think. I had accidently copied one console app project into the main library project that is sahred in all proects in the solution! Just deleted and all is good.

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

79497115

Date: 2025-03-10 05:56:27
Score: 1
Natty:
Report link
  1. Use echo for functions that return values (e.g., esc_url(get_permalink())).

  2. Don’t use echo for functions that output directly (e.g., the_permalink()).

  3. Always escape output (e.g., esc_url(), esc_html()) to prevent XSS attacks.

  4. Prefer return functions (e.g., get_permalink()) over output functions (e.g., the_permalink()) for better control.

    Correct Example:

    <a href="<?php echo esc_url(get_permalink()); ?>">link</a>
    

    This ensures security and proper functionality. Thanks

Reasons:
  • Blacklisted phrase (0.5): Thanks
  • Has code block (-0.5):
  • Low reputation (1):
Posted by: Imran Hosain

79497104

Date: 2025-03-10 05:47:25
Score: 0.5
Natty:
Report link

"azure_pg_admi" is not the highest level role in Azure PosetgreSQL Database.

Since the "azure_pg_admi" role does not have superuser privileges, this is why you're encountering permission issues when trying to modify ownership of a database or perform other administrative tasks.

A superuser role is required to change database ownership or perform certain other high-level operations in PostgreSQL.

In Azure Database for PostgreSQL (which is a managed service), superuser access is not granted to customers under normal circumstances. Azure maintains tight control over the server-level operations and infrastructure to ensure security, stability, and consistency of the service. In reference to this, you can also check the Microsoft documentation that I've attached where this is clearly mentioned:

https://learn.microsoft.com/en-us/azure/postgresql/flexible-server/how-to-create-users

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

79497102

Date: 2025-03-10 05:45:25
Score: 1.5
Natty:
Report link

There is a limit to the size of some of the strings. I stopped getting this error when I limited the size of the ScreenTip to 254 characters.

If you delete and recreate you will get a runtime error of 1004. So depending on which method you use you will get different errors.

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

79497099

Date: 2025-03-10 05:42:24
Score: 0.5
Natty:
Report link

Have you tried manually configuring the client to use HTTPS?

Since you don't wanna modify WildFly configuration but still need the client to connect over HTTPS, you should override the connection factory settings manually in your client code.

Hope this helps

Reasons:
  • Whitelisted phrase (-1): Hope this helps
  • Whitelisted phrase (-1): Have you tried
  • Low length (0.5):
  • No code block (0.5):
  • Contains question mark (0.5):
  • Low reputation (1):
Posted by: Vembarasan Thambidurai

79497095

Date: 2025-03-10 05:39:23
Score: 3
Natty:
Report link

Additionally, if you replace the memcpyAsync (Device to Host) operation with memcpy2DAsync (Device to Host), you can confirm that it runs in parallel. This makes it more confusing for me.

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

79497093

Date: 2025-03-10 05:38:23
Score: 1
Natty:
Report link

I think the package https://pypi.org/project/nonesafe/ does what you want, full disclosure I'm the author :). I had similar problems when processing external JSON data and had tried both Pandas and Pydantic, but was not happy with either solution. Take a look at the Motivation section of the README, in particular read/modify/write example at the end of the Motivation section.

Reasons:
  • No code block (0.5):
  • Single line (0.5):
Posted by: Howard Lovatt

79497086

Date: 2025-03-10 05:35:22
Score: 1
Natty:
Report link

I filter out the Nan or Null values first and use 0 as the value for them in the new columns.

import numpy
df["min"] = df[df["values"].notnull()]["values"].map(lambda x: int(minimum) if x and (minimum:=str(x).split(" - ")[0]) else 0)df["max"] = 
df[df["values"].notnull()].map(lambda x: int(maximum) if x and " - " in str(x) and (maximum:=str(x).split(" - ")[1]) else 0)

However, the columns have a .0 decimal point. How to get rid of it?

Reasons:
  • Has code block (-0.5):
  • Ends in question mark (2):
  • Self-answer (0.5):
  • High reputation (-1):
Posted by: khteh

79497063

Date: 2025-03-10 05:14:17
Score: 7 🚩
Natty: 4
Report link

enter image description here
Hi, I opened a new terminal (it automatically entered the venv I had running), this is what pip list shows me. However, it is still not running for me.

Is there anything else i can check/correct?

Reasons:
  • Blacklisted phrase (1): Is there any
  • Probably link only (1):
  • Low length (0.5):
  • No code block (0.5):
  • Ends in question mark (2):
  • Looks like a comment (1):
  • Low reputation (1):
Posted by: Avantika Gargya

79497057

Date: 2025-03-10 05:09:16
Score: 4
Natty:
Report link

Using tsup and little configuration you can create your react or node packages easily:

https://medium.com/@sundargautam2022/creating-and-publishing-react-npm-packages-simply-using-tsup-6809168e4c86

Reasons:
  • Blacklisted phrase (0.5): medium.com
  • Probably link only (1):
  • Low length (1.5):
  • No code block (0.5):
  • Low reputation (0.5):
Posted by: Sundar Gautam

79497055

Date: 2025-03-10 05:08:15
Score: 4
Natty:
Report link

Using tsup and little configuration you can create your react or node packages easily: https://medium.com/@sundargautam2022/creating-and-publishing-react-npm-packages-simply-using-tsup-6809168e4c86

Reasons:
  • Blacklisted phrase (0.5): medium.com
  • Probably link only (1):
  • Low length (1.5):
  • No code block (0.5):
  • Low reputation (0.5):
Posted by: Sundar Gautam

79497052

Date: 2025-03-10 05:07:15
Score: 1.5
Natty:
Report link

Just need to write

 gradle signingReport
Reasons:
  • Low length (1.5):
  • Has code block (-0.5):
  • Low reputation (0.5):
Posted by: Tombstone

79497020

Date: 2025-03-10 04:34:10
Score: 2.5
Natty:
Report link

My project was running fine on the simulator, but not on the device. After some troubleshooting, I discovered that my phone's storage was full, which was causing the issue. Once I deleted some images and videos, the project started running on the device again.

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

79497012

Date: 2025-03-10 04:26:08
Score: 2.5
Natty:
Report link

Under repo Setting , Mirror Settings , Authorization. Ignore the Username , replace Password with new access token. Save setting with the Update Mirror Settings button below.

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

79497008

Date: 2025-03-10 04:21:07
Score: 5
Natty: 6.5
Report link

I got the same issue,

Try through this documentation
https://cloud.google.com/sdk/docs/install-sdk

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

79496997

Date: 2025-03-10 04:10:05
Score: 1
Natty:
Report link

It looks like your layout shifts or breaks when the SweetAlert (Swal) message appears. Here are some possible fixes:

  1. Prevent Swal from Affecting Layout:

    set " backdrop: false ".


Swal.fire({
title: "OTP Verified Successfully",
text: "You can now continue",
icon: "success",
backdrop: false // Prevents background effects
});

  1. Set Fixed Width & Height for Layout Containers:

    body{ min-height: 100vh; overflow: hidden; }


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

79496987

Date: 2025-03-10 04:04:04
Score: 0.5
Natty:
Report link

To set up disaster recovery for your Azure Data Factory (ADF) instances located in France and Germany, ensuring that both can connect and function as alternatives in case of failure, you can implement the following strategy:

Follow the below steps to setup disaster recovery for azure data factory:

Step1: Install SHIR on your On-Premises Machine and start by downloading the SHIR installation package from the Azure portal. Now Install the SHIR on your on-premises machine, to meet all system requirements.

Step2: Register SHIR with the First ADF Instance to Access the Azure portal and navigate to the first ADF instance. Now Go to Manage > Integration > Runtimes > +New and select Self-Hosted and proceed with the registration process. Copy the provided authentication key and enter it into the SHIR configuration on your on-premises machine.

Step3: Register SHIR with the Second ADF Instance and Repeat the registration process for the second ADF instance. Navigate to the second ADF instance in the Azure portal.

Go to Manage > Integration > Runtimes > +New. Click on Self-Hosted and follow the process to register the SHIR. once doe this process Configure the SHIR on your on-premises machine and create a new authentication key for the second instance.

Step4: Avoid Linked Integration Runtimes and Do not use linked IRs if you need both ADF instances to function independently. Linked IRs may fail if one IR is unavailable, which is not suitable for your disaster recovery needs.

Step5: To ensure continuous operation, implement high availability for the SHIR. This will provide redundancy and ensure that ADF instance can access the SHIR independently, even if one instance goes down.

Step6: Regularly check for updates to the SHIR installation. Keeping the SHIR up to date will help you benefit from the latest features, performance improvements, and security patches.

Note: Please refer these articles, article1, article2, article3 for more information on setting up and configuring a Self-Hosted Integration Runtime (SHIR) in Azure Data Factory.

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

79496971

Date: 2025-03-10 03:53:02
Score: 3.5
Natty:
Report link

+601115290440 call me+601115290440 call me+601115290440 call me+601115290440 call me+601115290440 call me+601115290440 call me

Reasons:
  • Low length (1):
  • No code block (0.5):
  • Unregistered user (0.5):
  • Single line (0.5):
  • Low reputation (1):
Posted by: Afiqah binti mhd nasir

79496966

Date: 2025-03-10 03:47:01
Score: 0.5
Natty:
Report link

Fix:

I ran the command suggested: openssl s_client -connect registry.npmjs.org:443 -cipher AESGCM <NUL. However, I got the error: Verify return code: 20 (unable to get local issuer certificate).

The CA certificate was missing. So, I followed these steps:

  1. I installed the certificate from here. "GTS Root R4" certificate is used by npmjs.org

  2. Added certificate path using this command setx NODE_EXTRA_CA_CERTS <path to certificate>

  3. Verified the path using this command node -p "process.env.NODE_EXTRA_CA_CERTS"

If the correct file path is displayed, the setting was applied successfully.

Reasons:
  • Long answer (-0.5):
  • Has code block (-0.5):
  • Self-answer (0.5):
  • Low reputation (1):
Posted by: Fabrez Tina

79496960

Date: 2025-03-10 03:43:00
Score: 4.5
Natty:
Report link

.admin.fcd-fcdna=" "

Reasons:
  • Low length (2):
  • No code block (0.5):
  • Has no white space (0.5):
  • Single line (0.5):
  • Low reputation (1):
Posted by: BRIAN PASSMORE

79496956

Date: 2025-03-10 03:41:00
Score: 5.5
Natty:
Report link

I am also facing this error. I have added a test user still it gives me the error.

Reasons:
  • Blacklisted phrase (1): also facing this
  • RegEx Blacklisted phrase (1): I am also facing this error
  • Low length (1.5):
  • No code block (0.5):
  • Single line (0.5):
  • Low reputation (1):
Posted by: Puspal Paul

79496948

Date: 2025-03-10 03:31:58
Score: 1.5
Natty:
Report link

By experiment, the runtime for the mainstream Go implementation seems to work with coroutines at first but then deadlocks eventually.

The deadlock cannot be prevented with GOGC=off.

Fortunately, the C code in question can be readily converted to use pthreads instead.

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