79317987

Date: 2024-12-30 15:41:58
Score: 1
Natty:
Report link

I used wireshark to sniff the communication - ModemManager overwrites APN setup each time.

Solution was to use qmicli, which creates profiles, and you can just choose which one to connect.

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

79317985

Date: 2024-12-30 15:41:58
Score: 1
Natty:
Report link

Seems this is a known issue: https://github.com/dotnet/roslyn/issues/53120

Neither of the previous suggestions worked for me; deleting the .vs folder, or opening "with Encoding" and cancelling. On the github issue above, jimmylewis mentioned setting the default in the Options. When I created the setting and then later deleted it, the .editorconfig UI came back.

enter image description here

Reasons:
  • Whitelisted phrase (-1): worked for me
  • Probably link only (1):
  • No code block (0.5):
  • Low reputation (0.5):
Posted by: JonathanN

79317981

Date: 2024-12-30 15:40:58
Score: 2.5
Natty:
Report link

I used fn + Insert key and my problem was solved.

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

79317980

Date: 2024-12-30 15:39:57
Score: 2.5
Natty:
Report link

Just FYI because I didn't read the BAPI documentation before I tested this, running the BAPI_USER_ACTGROUPS_ASSIGN FM will DELETE all records in the table for that username and add back only the records from the ACTIVITYGROUPS table.

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

79317979

Date: 2024-12-30 15:39:57
Score: 1
Natty:
Report link

This solved the issue:

ul {
    padding: 0;
    word-wrap: break-word;
    overflow: hidden;
}
Reasons:
  • Low length (1):
  • Has code block (-0.5):
  • Low reputation (0.5):
Posted by: Eric S.

79317976

Date: 2024-12-30 15:37:57
Score: 1
Natty:
Report link
from ttkbootstrap import Style
def main():
    style = Style(theme="solar")
    root = style.master
    root.title("HiDo Machinery Rental Management System")
    root.geometry("800x600")
Reasons:
  • Low length (0.5):
  • Has code block (-0.5):
  • Low reputation (1):
Posted by: Deep Dev

79317973

Date: 2024-12-30 15:35:56
Score: 8
Natty: 7
Report link

do you know how can i find the api of resident advisor for getting events information with tickets prices being updated every time prices fluctuate/tickets go sold out?

Reasons:
  • Blacklisted phrase (0.5): how can i
  • RegEx Blacklisted phrase (2.5): do you know how
  • Low length (1):
  • No code block (0.5):
  • Ends in question mark (2):
  • Single line (0.5):
  • Low reputation (1):
Posted by: Vittorio Claudia

79317971

Date: 2024-12-30 15:35:56
Score: 1
Natty:
Report link

Like @luk2302 commented, you should think carefully about why you would want to do this.

In most cases, it is good enough to rely on the security provided by HTTPS. It keeps your application simple and provides a high level of security. A few things to note for the server side:

In cases where you anticipate greater risk, such as cases where users are more vulnerable to social engineering attacks, you should implement an additional layer of protection that significantly increases the complexity of an MitM attack. If a user installs a malicious certificate and sends traffic through a malicious proxy, an attacker could steal the user's credentials via an MitM attack. In such cases, implementing additional encryption may be necessary.

For such situations, negotiating a secure key exchange process and using public key cryptography over HTTPS should solve your needs. You can research ECDH for more information.

Reasons:
  • Long answer (-1):
  • No code block (0.5):
  • User mentioned (1): @luk2302
  • Low reputation (0.5):
Posted by: Ahmad Alfawwaz Timehin

79317969

Date: 2024-12-30 15:34:55
Score: 3.5
Natty:
Report link

I'm not used to PHP but I think somewhere in 'read_file_guts.php' causes OOM. How about using stream to read file contents?

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

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

In this way you can read big file by small chunks rather than whole into the memory I think.

Reasons:
  • Probably link only (1):
  • Low length (0.5):
  • No code block (0.5):
  • Contains question mark (0.5):
  • Low reputation (1):
Posted by: Kwonkyu Park

79317967

Date: 2024-12-30 15:32:55
Score: 1
Natty:
Report link

If you unable to find the cause,you can simply suppress the error

import android.os.StrictMode;
StrictMode.setThreadPolicy(new StrictMode.ThreadPolicy.Builder().permitAll().build() );
Reasons:
  • Low length (0.5):
  • Has code block (-0.5):
  • Low reputation (1):
Posted by: Helium Cloud Gaming

79317964

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

If you are targeting Android 15 and using Jetpack compose use this in your Activity. Top of setContent{} block

WindowCompat.getInsetsController(window, window.decorView)
            .isAppearanceLightStatusBars = isSystemInDarkTheme()
Reasons:
  • Low length (0.5):
  • Has code block (-0.5):
  • Low reputation (1):
Posted by: praveensmedia

79317961

Date: 2024-12-30 15:29:54
Score: 0.5
Natty:
Report link

Tern Systems, here is a thoughtful answer for that Stack Overflow question:


Short Answer
In modern JavaScript modules (<script type="module">), variables are scoped to the module itself and are not automatically attached to the global object (window). Consequently, code in a non-module script cannot directly access variables imported or declared in a module script. You need to explicitly export them from your module or attach them to the global object if you want to share them with non-module scripts.


Detailed Explanation

  1. Module Scope Isolation
    When you use <script type="module">, any variables, classes, or functions declared within that script are module-scoped. They do not leak into the global scope the way variables in normal <script> blocks do. This design prevents unexpected collisions and promotes better encapsulation.

  2. Why You Can’t Access Module Variables in Non-Modules

    • Non-module scripts (or the console if you’re testing directly from a browser DevTools console) look for variables on the window object, which by default only contains variables declared in global scope.
    • If your script is a module, anything declared inside remains within the module’s local scope unless explicitly exported.
  3. How to Expose Variables from a Module
    If you want non-module scripts (or the global scope) to see your module’s variables:

    • Attach to the window object
      // Inside your module:
      const myValue = 42;
      window.myValue = myValue;
      
      Now a non-module script (or even inline code in the HTML) can do:
      console.log(window.myValue); // 42
      
    • Import/Export Mechanism (for module-to-module communication)
      If both scripts are modules, you could export from one module and import in another:
      // moduleA.js
      export const myValue = 42;
      
      <!-- moduleB -->
      <script type="module">
        import { myValue } from './moduleA.js';
        console.log(myValue); // 42
      </script>
      
  4. Ensure Consistent Script Types

    • If you’re mixing module scripts and non-module scripts, be aware that variables declared in one scope aren’t automatically available in the other.
    • For certain projects, it’s simpler to keep all scripts as modules for consistent import/export patterns.

Practical Recommendations

  1. Convert Dependent Scripts to Modules
    Whenever possible, convert all <script> tags to type="module">. This way, you can leverage JavaScript’s native module system, using export and import as intended.

  2. Use the Global Object Only When Necessary
    If you genuinely need global access—like for a quick proof of concept—attaching to window is a simple approach. However, from a design standpoint, global variables can lead to naming collisions and maintenance issues. Use them judiciously.

  3. Check Browser Support
    Most modern browsers fully support <script type="module">, but you might need to transpile or use polyfills for older environments. Keep that in mind if you’re targeting legacy browsers.


Module scripts are designed to provide a more robust and encapsulated code structure. If you need to share variables with non-module scripts, explicitly assign them to the global scope or refactor your code to use only modules. By following the import/export standards, you’ll maintain cleaner, more maintainable code.

Reasons:
  • Contains signature (1):
  • Long answer (-1):
  • Has code block (-0.5):
  • Low reputation (1):
Posted by: Tern

79317960

Date: 2024-12-30 15:29:54
Score: 1
Natty:
Report link

Starting Angular 19, you can pass --define KEY=VALUE to pass values to the application at build time without going through files.

It's documented here.

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

79317953

Date: 2024-12-30 15:24:53
Score: 3.5
Natty:
Report link

Delete build folder and re-run the project again

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

79317946

Date: 2024-12-30 15:21:52
Score: 2.5
Natty:
Report link

looks to me as if the shard setup is not correct... the provided information shows a replica set named "shard2" with only one shard: 82.... also, please correct the title (typo) :-)

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

79317925

Date: 2024-12-30 15:08:50
Score: 0.5
Natty:
Report link

You has lombok dependency as optional:

<dependency>
  <artifactId>lombok</artifactId>
  <groupId>org.projectlombok</groupId>
  <version>1.18.26</version>
  <optional>true</optional>
</dependency>

Just delete optional and it'll be ok

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

79317924

Date: 2024-12-30 15:07:50
Score: 2.5
Natty:
Report link

Your script for transferring data from MySQL to ClickHouse is quite comprehensive, but issues leading to its failure can stem from several areas. Below are the potential problems and their fixes:

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

79317922

Date: 2024-12-30 15:06:49
Score: 0.5
Natty:
Report link

EGL 1.5 support surface less platforms.

PFNEGLGETPLATFORMDISPLAYEXTPROC eglGetPlatformDisplay = (PFNEGLGETPLATFORMDISPLAYEXTPROC) eglGetProcAddress("eglGetPlatformDisplay");
EGLDisplay display = eglGetPlatformDisplay(EGL_PLATFORM_SURFACELESS_MESA, NULL, NULL);
Reasons:
  • Low length (0.5):
  • Has code block (-0.5):
  • Low reputation (0.5):
Posted by: Carter Li

79317912

Date: 2024-12-30 15:02:47
Score: 4
Natty:
Report link

how to find aid like "A00000030800001000"

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

79317901

Date: 2024-12-30 14:55:45
Score: 2
Natty:
Report link

Found out that the issue was caused by the Telegraf version running on the server. The expression is running fine with version 1.8 but not with version 1.25. Downgrading to ver. 1.8 solved the issue!

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

79317899

Date: 2024-12-30 14:54:43
Score: 4.5
Natty:
Report link

Ext.getCmp('id').setDisabled(true);

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

79317877

Date: 2024-12-30 14:43:40
Score: 2
Natty:
Report link

So, the answer is even though matplotlib.org did not officially abandon %matplotlib notebook, they recommend to use %matplotlib widget for better backend compatibility and performance.

Reasons:
  • Low length (1):
  • Has code block (-0.5):
  • Self-answer (0.5):
  • Single line (0.5):
  • Low reputation (0.5):
Posted by: Malihe Mahdavi sefat

79317871

Date: 2024-12-30 14:40:40
Score: 1
Natty:
Report link

Easy way to create accent and other colored buttons in Angular Material v19 is simply to create another theme with your specific colors in a specific CSS selector. E.g.

.accent {
    @include mat.theme(
        (
          color: mat.$magenta-palette,
        )
      );
    }
    
 .warn {
      @include mat.theme(
        (
          color: mat.$red-palette,
        )
      );
    }

And then just simply apply the class to your button when you want.

<button class="accent" mat-flat-button>Accent button</button>

<button class="warn" mat-flat-button>Warn button</button>

I discussed all of this in a recent video, if you'd like more details.

https://youtu.be/5NSH8VvJH5o

Reasons:
  • Blacklisted phrase (1): youtu.be
  • Long answer (-0.5):
  • Has code block (-0.5):
  • Low reputation (1):
Posted by: Zoaib Ahmed Khan

79317866

Date: 2024-12-30 14:33:38
Score: 3
Natty:
Report link

If you’re looking for a temporary email service for anonymous online registration, tempmail 100 is a decent choice. https://tempmail100.com/

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

79317862

Date: 2024-12-30 14:32:38
Score: 1
Natty:
Report link

I installed python3-venv via apt and after immediately creating venv I didn't have activate script too. For me personally the solution was to close terminal, reopen it, delete venv folder and run

python3 -m venv venv

to create venv again. After it the ./venv/bin/activate was in place.

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

79317857

Date: 2024-12-30 14:30:38
Score: 1.5
Natty:
Report link

oui j'ai testé ce code ça marche mais depuis hier j'ai toujours ce retour "can't parse JSON. Raw result:

Erreur cURL2: OpenSSL SSL_read: OpenSSL/3.0.14: error:0A000438:SSL routines::tlsv1 alert internal error, errno 0Curl failed with error: OpenSSL SSL_read: OpenSSL/3.0.14: error:0A000438:SSL routines::tlsv1 alert internal error, errno 0null" même si le certificat n'est pas encore expiré

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

79317856

Date: 2024-12-30 14:28:37
Score: 3.5
Natty:
Report link

What if that you track the gps location of your phone and your car, so that when you're near or in your car you automatically scan for previously paired devices

Reasons:
  • Low length (1):
  • No code block (0.5):
  • Single line (0.5):
  • Starts with a question (0.5): What if that you
  • Low reputation (1):
Posted by: Leina Gray

79317851

Date: 2024-12-30 14:26:35
Score: 9 🚩
Natty: 5.5
Report link

Did you find any other ways of keeping Service Bus alive without pinging it and sending dummy messages?

Reasons:
  • RegEx Blacklisted phrase (3): Did you find any
  • Low length (1):
  • No code block (0.5):
  • Ends in question mark (2):
  • Unregistered user (0.5):
  • Single line (0.5):
  • Starts with a question (0.5): Did you find any
  • Low reputation (1):
Posted by: Ivan

79317847

Date: 2024-12-30 14:24:35
Score: 2.5
Natty:
Report link

For Using PrimeNg 16 version and its components Follow this Link

PrimeNg 16

Hope this Help,

Reasons:
  • Blacklisted phrase (1): this Link
  • Whitelisted phrase (-1): Hope this Help
  • Low length (1.5):
  • No code block (0.5):
  • Low reputation (0.5):
Posted by: M Ali Imtiaz

79317834

Date: 2024-12-30 14:19:34
Score: 1.5
Natty:
Report link

I was facing the same issue. restart the application then it normal.

Reasons:
  • Low length (1.5):
  • No code block (0.5):
  • Single line (0.5):
  • High reputation (-1):
Posted by: yu yang Jian

79317828

Date: 2024-12-30 14:18:33
Score: 4.5
Natty:
Report link

only installing tailwind css intellisense can remove the error from meenter image description here

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

79317825

Date: 2024-12-30 14:16:32
Score: 0.5
Natty:
Report link

Cause: the issue is caused by "isolatedModules": true flag in tsconfig.json.

Explanation: when isolateModules is set to true, it applies some typescript restrictions to ensure that each file can be independently transpiled. This flag prevents typescript from doing the full code analysis needed to generate metadata for tree-shaking and causes all @Injectable() services to be included in the result bundle. It's because the compiler cannot tell whether the service is used or not.

Fix: remove isolateModules from tsconfig.json or set it to false.

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

79317823

Date: 2024-12-30 14:14:32
Score: 3.5
Natty:
Report link

I have been using the same code with same pin , still MCU does not come out of sleep

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

79317822

Date: 2024-12-30 14:14:32
Score: 3.5
Natty:
Report link

You should import the active Directory module first.

Import-Module ActiveDirectory

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

79317803

Date: 2024-12-30 14:07:30
Score: 0.5
Natty:
Report link

I got it working. This is the final code.

wss.on("connection", async (ws, req) => {
  const CONTAINER_ID = req.url?.split("=")[1];
  try {
    const container = docker.getContainer(CONTAINER_ID as string);
    const exec = await container.exec({
      Cmd: ["/bin/sh"],
      AttachStdin: true,
      AttachStdout: true,
      User: "root",
      Tty: true,
    });
    const stream = await exec.start({
      stdin: true,
      hijack: true,
      Detach: false,
    });
    stream.on("data", (data) => {
      ws.send(data.toString());
    });
    ws.on("message", (msg) => {
      stream.write(msg);
    });
    ws.on("close", async () => {
      stream.write("exit\n");
    });
  } catch (error) {
    console.log(error);
    ws.close();
  }
});

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

79317799

Date: 2024-12-30 14:06:30
Score: 2.5
Natty:
Report link

worked the solution - by adding in app gradle file

apply from: "../../node_modules/react-native-vector-icons/fonts.gradle"

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

79317797

Date: 2024-12-30 14:06:30
Score: 2.5
Natty:
Report link

I'm also a fan of the built-in:

await page.waitForLoadState('load', {timeout: 5000});

https://playwright.dev/docs/api/class-page#page-wait-for-load-state

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

79317788

Date: 2024-12-30 14:02:29
Score: 0.5
Natty:
Report link

Try to increase timeout to 60 seconds

const transporter = nodemailer.createTransport({
  host: 'MAIL.MYDOMAIN.COM',
  port: 465,
  secure: true,
  auth: {
    user: '[email protected]',
    pass: 'userpassword'
  },
  connectionTimeout: 60000 // Increase to 60 seconds
});

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

79317786

Date: 2024-12-30 14:01:28
Score: 0.5
Natty:
Report link

You need to check the template == cart then add the JS redirection in the top of the theme.liquid file.

{% if template == 'cart' %}<script>window.location.href = '/';</script>{% endif %}
Reasons:
  • Low length (0.5):
  • Has code block (-0.5):
  • Low reputation (0.5):
Posted by: sachin rawat

79317783

Date: 2024-12-30 14:00:28
Score: 2
Natty:
Report link

If you don't want to use:

[Authorize(AuthenticationSchemes="your custom scheme")]

In your project add:

AppContext.SetSwitch("Microsoft.AspNetCore.Authentication.SuppressAutoDefaultScheme", false);

See https://learn.microsoft.com/en-us/dotnet/core/compatibility/aspnet-core/7.0/default-authentication-scheme for more detail. It's a breaking change from .NET 7.

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

79317781

Date: 2024-12-30 13:58:27
Score: 4
Natty:
Report link

how to missing admin files in laravel 11 project

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

79317772

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

Since you didn't provide a completed sample, I can't test for sure. But if you DataGrid can display values of "Spec_X" and "Spec_Y" correctly, just changing Trigger_X.Binding and Trigger_Y.Binding's value from your original to new Binding() should work.

Reasons:
  • Low length (0.5):
  • Has code block (-0.5):
  • Single line (0.5):
Posted by: Alex.Wei

79317767

Date: 2024-12-30 13:50:25
Score: 2
Natty:
Report link

Also, for anyone facing a similar issue, I resolved it by switching from pnpm to npm.

Reasons:
  • Whitelisted phrase (-2): I resolved
  • Whitelisted phrase (-2): for anyone facing
  • Low length (1.5):
  • No code block (0.5):
  • Me too answer (2.5): facing a similar issue
  • Single line (0.5):
  • Low reputation (1):
Posted by: RAYNARD DODZI

79317742

Date: 2024-12-30 13:40:22
Score: 8.5 🚩
Natty:
Report link

I am having the same issue. If you find a solution, please let me know

Reasons:
  • RegEx Blacklisted phrase (2.5): please let me know
  • Low length (1.5):
  • No code block (0.5):
  • Me too answer (2.5): I am having the same issue
  • Single line (0.5):
  • Low reputation (1):
Posted by: Rotimi Olumide

79317728

Date: 2024-12-30 13:35:21
Score: 1.5
Natty:
Report link

I may be very late in adding a comment, but we have used COT for many years now and have developed many medium sized business apps, especially in the newer Touch User Interface version.

The product is easy to use and allows you to develop complex secure business apps. The only downside is the lack of support for what otherwise is an excellent product.

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

79317721

Date: 2024-12-30 13:28:19
Score: 1
Natty:
Report link

The issue was that I only had the GPS permissions set to "while using the app" instead of all the time. So it would just hang indefinitely if I ever tabbed over to another app or had the screen off.

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

79317715

Date: 2024-12-30 13:24:17
Score: 6 🚩
Natty: 5
Report link

just put pageview over gridview check out my article? https://medium.com/towardsdev/build-custom-grid-with-pageview-using-flutter-c9048d06a59d

Reasons:
  • Blacklisted phrase (0.5): medium.com
  • Probably link only (1):
  • Low length (1.5):
  • No code block (0.5):
  • Ends in question mark (2):
  • Low reputation (0.5):
Posted by: kururu

79317709

Date: 2024-12-30 13:20:17
Score: 0.5
Natty:
Report link

To solve this and simplify the graph, I disable TorchDynamo by explicitly setting dynamo=False when exporting the model. Here's the updated export function:

def export_ONNX(model):
    tensor_x = torch.randn(1, 1, 32, 16, 32)
    torch.onnx.export(model, (tensor_x,), "my_model.onnx", input_names=["input"], dynamo=False)

From my understanding, torch.onnx.export() uses TorchDynamo, by default, to trace the model. This method results in additional nodes being introduced in the ONNX graph to handle dynamic aspects of the computation.

By setting dynamo=False, the exported ONNX graph aligns more closely with the original PyTorch operations, containing only the essential nodes such as MaxPool, Reshape, Gemm, and Softmax. Figure with the MaxPool, Reshape, Gemm, and Softmax nodes.

This solved the issue for me. Although, I still wonder why using Dynamo does not generate the same graph when I believe it should.

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

79317708

Date: 2024-12-30 13:19:16
Score: 1.5
Natty:
Report link
  1. Open PowerShell ISE

  2. Type the following command:

    net use X: \server\share

  3. Replace X: with a drive letter you want to assign to the network share, and \server\share with the actual network path.

  4. Then, type to get the files of the drive

    dir X:\

  5. Then, type below to get storage details:

    Get-PSDrive -Name X

This will show the available space on the network drive as below.

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

79317707

Date: 2024-12-30 13:19:16
Score: 1
Natty:
Report link

I could never find the why to this, so I fixed it by switching to Parcel v1 and no more errors. Works better and faster, at least for what I was trying to achieve.

Reasons:
  • Whitelisted phrase (-2): I fixed
  • Low length (1):
  • No code block (0.5):
  • Self-answer (0.5):
  • Single line (0.5):
  • Low reputation (0.5):
Posted by: Jh62

79317701

Date: 2024-12-30 13:17:15
Score: 1
Natty:
Report link
  1. You’re missing your 8th button in your <div id="keys"> element.

  2. In your <style> elements, you refer to the keys class, not ID — your selector should be #keys, not .keys.

  3. You use CSS property grid-template-columns, but you’ve misspelled it as grid-timeplate-columns. Correct the spelling of the middle word.

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

79317695

Date: 2024-12-30 13:15:15
Score: 2
Natty:
Report link

Not every package is compatible with JDK17 . Please do not change the gradle file with tips from ChatGPT. Go through the doc incase you need something. Please revert back to whatever that was supplied with the flutter and use the same.!

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

79317690

Date: 2024-12-30 13:14:15
Score: 3.5
Natty:
Report link

Already solved it. I had just get body from Asana docs. I was trying to send body twice, through script and postman thats why.

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

79317689

Date: 2024-12-30 13:12:14
Score: 2.5
Natty:
Report link

It is different because you have missed the number 8 in your code. Please check the images for differences.

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

79317685

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

I believe you are referring to the commands Notebook: Fold Cell and Notebook: Unfold Cell, which allow to hide or unhide the cells beneath the current markdown section.

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

79317670

Date: 2024-12-30 13:05:12
Score: 3
Natty:
Report link

In the end, if you want to configure the secret in the backend, you need to create two different clients.

Following this blog helped me a lot to understanding it: Secure Frontend (React.js) and Backend (Node.js/Express Rest API) with Keycloak

Reasons:
  • Blacklisted phrase (1): this blog
  • Blacklisted phrase (1): helped me a lot
  • No code block (0.5):
  • Self-answer (0.5):
Posted by: Faliorn

79317660

Date: 2024-12-30 12:59:11
Score: 0.5
Natty:
Report link

I also used to "role" for verification. There was the same problem. I used a different name for the ClaimType, and everything worked.

Not work: policy.RequireClaim("role", "admin").

Work: policy.RequireClaim("rl", "admin").

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

79317657

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

You can make use of FingerprintJS. This is a browser fingerprinting library. The trial version is 14-days trial.

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

79317656

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

Locate the element by ID

element = driver.find_element_by_id("element_id")

Get the background attribute

background_color = element.get_attribute("background")

Print the background color

print(f"Background color: {background_color}")

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

79317653

Date: 2024-12-30 12:56:09
Score: 5.5
Natty: 4.5
Report link

You don't need ingestion settings for self-hosted/community edition of SigNoz. This doc: https://signoz.io/docs/ingestion/signoz-cloud/keys/ mentions having a cloud account as a prerequisite.

What is your use case of using SigNoz?

Reasons:
  • Blacklisted phrase (1): What is your
  • Low length (1):
  • No code block (0.5):
  • Ends in question mark (2):
  • Low reputation (1):
Posted by: cruxaki

79317651

Date: 2024-12-30 12:54:08
Score: 1.5
Natty:
Report link

You need to encode the request parameter for Laravel to be able to handle it correctly. Also, send the request as a body not json

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

79317649

Date: 2024-12-30 12:54:08
Score: 2.5
Natty:
Report link

i guess you should move it outside the slider div that has ref={emblaRef} and give it position absolute and the main should be relative? idk i'm guesing

Reasons:
  • Low length (1):
  • Has code block (-0.5):
  • Contains question mark (0.5):
  • Single line (0.5):
  • Low reputation (1):
Posted by: Basem Sleem

79317647

Date: 2024-12-30 12:54:08
Score: 1
Natty:
Report link
<Image src={Snicker} alt="Sniker" width={200} height={80} className="rounded-xl" priority unoptimized/>

Also found that adding "unoptimized" to the Image also works. Ofcourse it is not ideal but found it to work for my case

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

79317644

Date: 2024-12-30 12:52:08
Score: 2.5
Natty:
Report link

Ok This is closed. The Issue is the Default Model for the API has a get/set on an autoincrement field. Changing the Id field to get only allowed me to save the records.

You can close this out.

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

79317625

Date: 2024-12-30 12:46:06
Score: 0.5
Natty:
Report link

the cuase of the problem was related to the flutter_launcher_icon, affter changing the configuration to the above code, everything works fine.

flutter_launcher_icons:
  android: true
  ios: false
  remove_alpha_ios: false
  image_path: "assets/images/logo.png"
  adaptive_icon_background: "#ffffff"
  adaptive_icon_foreground: "assets/images/logo.png
Reasons:
  • Has code block (-0.5):
  • Self-answer (0.5):
  • Low reputation (0.5):
Posted by: Mohammad Huseyn

79317610

Date: 2024-12-30 12:41:05
Score: 3.5
Natty:
Report link

Thanks. once time I faced the same problem . I suggest you install the Lombok plugin in your IDE's. Hope Problem will be solved

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

79317605

Date: 2024-12-30 12:39:05
Score: 0.5
Natty:
Report link

This issue still alive. I couldn't find any solution on SwiftUI but there is an workaround which can change animation type and duration. This workaround work with introspect and UIKit. You can change simple math calculation or anchor padding according to your case.

Sample code

import SwiftUI
import UIKit
import SwiftUIIntrospect

class ViewModel {
var scrollView: UIScrollView?
let anchorPadding: CGFloat = 60
private let itemHeight: CGFloat = 108 <--- item height(100) + item bottom padding(8)

func scrollTo(id: CGFloat) {
    UIView.animate(
        withDuration: 4.0, <--- You can change animation duration.
        delay: 0.0,
        options: .curveEaseInOut, <--- You can change animation type.
        animations: { [weak self] in
            guard let self else { return }
            scrollView?.contentOffset.y = (itemHeight * id) - anchorPadding <--- Simple math calculation.
        }
    )
  }
}

struct ContentView: View {
private var viewModel = ViewModel()

var body: some View {
    ZStack(alignment: .top) {
        ScrollView {
            VStack(spacing: 8) {
                ForEach(0..<100) { i in
                    Rectangle()
                        .frame(width: 200, height: 100)
                        .foregroundColor(.green)
                        .overlay(Text("\(i)").foregroundColor(.white))
                }
                .frame(maxWidth: .infinity)
            }
        }
        .introspect(.scrollView, on: .iOS(.v13, .v14, .v15, .v16, .v17, .v18)) { scrollView in
            viewModel.scrollView = scrollView  <--- Set current scroll view reference.
        }
        
        Rectangle()
            .fill(.red)
            .frame(maxWidth: .infinity)
            .frame(height: 1)
            .padding(.top, viewModel.anchorPadding)
            .ignoresSafeArea()
            .overlay(alignment: .topTrailing) {
                Button("Scroll To") {
                    viewModel.scrollTo(id: 50) <--- Scroll to item which id is 50.
                }
                .padding(.trailing, 8)
            }
    }
  }
}
Reasons:
  • Blacklisted phrase (1.5): any solution
  • Long answer (-1):
  • Has code block (-0.5):
  • Low reputation (0.5):
Posted by: Okan T.

79317601

Date: 2024-12-30 12:39:05
Score: 3.5
Natty:
Report link

you need to include servlet in your pom.xml and you have to use tomcat 10 version

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

79317562

Date: 2024-12-30 12:24:00
Score: 9.5
Natty: 7.5
Report link

Do you get exactly what was happening?? Actually I am also facing same issue. If you found, could you please share??

Reasons:
  • RegEx Blacklisted phrase (2.5): could you please share
  • Low length (1):
  • No code block (0.5):
  • Me too answer (2.5): I am also facing same issue
  • Ends in question mark (2):
  • Low reputation (1):
Posted by: Abuntu

79317548

Date: 2024-12-30 12:14:58
Score: 3
Natty:
Report link

[stringA, stringB].join(' ');

runs a bit faster than,

stringA + ' ' + stringB;

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

79317540

Date: 2024-12-30 12:11:57
Score: 1
Natty:
Report link

Your problem is that although your commands (either your first option of creating an orphan branch and pushing an initial commit, or just deleting the Git repository and creating it afresh) delete the history in git, they don’t delete it in GitHub. GitHub (the website) stores, independently of Git (the version-control system), the previous forks and branches that are no longer part of the repository.

If you look at your https://github.com/XXXXX/YYYYY/tree/c7acde... link, you'll notice a message at the top of the GitHub page saying “This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository”. This is because the commit is stored by GitHub, but isn't part of your Git repository.

As far as I know there isn’t any way of deleting permanently a Git commit from a GitHub repo, even after it’s been deleted from Git. Your only way of truly purging all history from GitHub may be to simply start a new repository, copy all the files, delete your previous one, and rename your new repository.

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

79317536

Date: 2024-12-30 12:08:57
Score: 1.5
Natty:
Report link

I had the same problem. You need to add Personal access token (base64) to your git credentials under secrets. If you need more help you are free to ask.

Happy Coding

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

79317531

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

In my case this helped me

if (event.key === 'Enter' && !event.shiftKey) {
  event.preventDefault();
  document.execCommand('insertLineBreak');
  return;
}
Reasons:
  • Low length (1):
  • Has code block (-0.5):
  • Low reputation (1):
Posted by: Andrei Putilouski

79317526

Date: 2024-12-30 12:01:55
Score: 3
Natty:
Report link

For me, I just right-clicked on my project and clicked on 'Analyse Dependencies' and it's work.

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

79317525

Date: 2024-12-30 12:01:55
Score: 1
Natty:
Report link

From the angular docs:

If you get an ECONNREFUSED error using a proxy targeting a localhost URL, you can fix this issue by updating the target from http://localhost:<port> to http://127.0.0.1:<port>.

See the http-proxy-middleware documentation for more information.

Reasons:
  • Low length (0.5):
  • Has code block (-0.5):
  • Low reputation (1):
Posted by: Προκόπης αντωνιάδης

79317517

Date: 2024-12-30 11:55:54
Score: 2
Natty:
Report link

Reverse the slash that you are using in the file path.. It worked for me....

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

79317504

Date: 2024-12-30 11:49:52
Score: 1
Natty:
Report link

I think what you are looking is a prefixIcon instead of prefixText (as it will only be visible when text field is focused on non empty).

For better understanding you can checkout prefixIcon property

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

79317502

Date: 2024-12-30 11:48:52
Score: 1.5
Natty:
Report link

Just replace The shortcode for the cart page with [woocommerce_cart]

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

79317500

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

You can add permissions for your apache/httpd user inside public folder:

cd /var/www/example/    
mkdir -p .well-known/acme-challenge  
chmod 775 -R .well-known
chown apache:apache -R .well-known
cd .well-known
setfacl -d -m u::rwx,g::rwx,o::rwx acme-challenge  
Reasons:
  • Low length (0.5):
  • Has code block (-0.5):
  • Low reputation (0.5):
Posted by: KamWebDev

79317497

Date: 2024-12-30 11:46:51
Score: 3.5
Natty:
Report link

You could try using 'password' => ['required', Password::defaults()] and then add a message for required and one for defaults like you did in the above example. Maybe this link in the docs can help: https://laravel.com/docs/8.x/validation#defining-default-password-rules. You would have a single rule defaults so just one message.

Reasons:
  • Blacklisted phrase (1): this link
  • Low length (0.5):
  • No code block (0.5):
  • Single line (0.5):
  • Low reputation (1):
Posted by: tvv3

79317487

Date: 2024-12-30 11:40:51
Score: 1.5
Natty:
Report link

I took advance of what creators of component put in their samples of usages at github repo of RichTextArea

.rich-text-area > .paragraph-list-view {
   -fx-background-color: red;
}

highlightDemo.css

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

79317486

Date: 2024-12-30 11:40:51
Score: 3
Natty:
Report link

Nevermind!

I missed this bit on the documentation: https://docs.amplify.aws/vue/build-a-backend/functions/set-up-function/

Setting up my mutation function following that guide worked. The client is properly generated in the function like that!

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

79317483

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

function main(splash, args) assert(splash:go(args.url)) assert(splash:wait(5.0)) assert(splash:runjs('document.querySelectorAll("button.btn.btn-primary.btn-show-rates")[0].click()')) assert(splash:runjs('document.querySelectorAll("button.btn.btn-primary.btn-show-rates")[1].click()')) assert(splash:runjs('document.querySelectorAll("button.btn.btn-primary.btn-show-rates")[2].click()')) splash:set_viewport_full() return { html = splash:html(), }

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

79317481

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

In the end, I just used a workaround using python3 -c 'import torch;print(torch.utils.cmake_prefix_path)', linking manually seems to be not possible.

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

79317480

Date: 2024-12-30 11:36:49
Score: 3.5
Natty:
Report link

Very well thank you for this information given this information is use to Nes Solar my website in use than very help full

Reasons:
  • Blacklisted phrase (0.5): thank you
  • Low length (1):
  • No code block (0.5):
  • Single line (0.5):
  • Low reputation (1):
Posted by: Sagar Makavana

79317479

Date: 2024-12-30 11:36:49
Score: 2
Natty:
Report link

So after multiple long and failed deployments, I finally upgraded everything to work with Python 3.12 - including github actions, packages in requirements.txt and azure web app - and it worked....

Reasons:
  • Whitelisted phrase (-1): it worked
  • Low length (0.5):
  • No code block (0.5):
  • Self-answer (0.5):
  • Single line (0.5):
  • Low reputation (1):
Posted by: Vivek Sharma

79317477

Date: 2024-12-30 11:36:49
Score: 2.5
Natty:
Report link

I run my PHP server via php -S localhost:1337.

With both the VSCode extension and the Chrome extension installed, I configured the browser extension to this:

browser extension settings

Reasons:
  • Probably link only (1):
  • Low length (1):
  • Has code block (-0.5):
  • Low reputation (1):
Posted by: Flávio Pereira

79317476

Date: 2024-12-30 11:35:49
Score: 1.5
Natty:
Report link

Solution Verifying the Webhook Signature Stripe requires the raw body of the request for signature verification. You can achieve this by ensuring the raw body is passed to stripe.webhooks.constructEvent.

Here’s how you can implement a Firebase Cloud Function to handle Stripe webhooks:`Solution Verifying the Webhook Signature Stripe requires the raw body of the request for signature verification. You can achieve this by ensuring the raw body is passed to stripe.webhooks.constructEvent.

Here’s how you can implement a Firebase Cloud Function to handle Stripe webhooks:` enter image description here

he Signing Secret is located under the "Signing secret" column, next to the "Reveal" link. To get your Stripe webhook signing secret: enter image description here

Log in to your Stripe Dashboard. Navigate to the Webhook section under Developers > Webhooks. Locate the webhook endpoint for your project. Click "Reveal" under the Signing secret column to view your secret. Make sure to keep this signing secret safe and never expose it publicly, as it is used to verify the authenticity of Stripe webhooks.

Reasons:
  • Blacklisted phrase (1): enter image description here
  • Long answer (-1):
  • No code block (0.5):
  • Low reputation (1):
Posted by: Usama Bin Qamar

79317474

Date: 2024-12-30 11:35:49
Score: 0.5
Natty:
Report link

Yes, the errors were caused by round-off error in the division.

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

79317470

Date: 2024-12-30 11:34:49
Score: 2
Natty:
Report link

By default, you have ctrl+shift+[LeftArrow] and ctrl+shift+[RightArrow] to widen and reduce your terminal, if your terminal is on the side and not at the bottom of your editor.

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

79317469

Date: 2024-12-30 11:33:49
Score: 3
Natty:
Report link

You might want to try SurveyJS. It’s a powerful JavaScript library that works well with ASP.NET MVC and supports dynamic data from databases. You can easily manage dropdown dependencies and get all the form values in your controller upon submission. Check it out here: https://surveyjs.io

Reasons:
  • Blacklisted phrase (0.5): Check it out
  • Low length (0.5):
  • No code block (0.5):
  • Single line (0.5):
  • Low reputation (1):
Posted by: ges2347

79317462

Date: 2024-12-30 11:30:48
Score: 3.5
Natty:
Report link

This post beautifully captures the essence of the topic—thank you for sharing such valuable insights and inspiration.

Reasons:
  • Blacklisted phrase (0.5): thank you
  • Low length (1):
  • No code block (0.5):
  • Single line (0.5):
  • Low reputation (1):
Posted by: Tech Solutions

79317456

Date: 2024-12-30 11:26:47
Score: 0.5
Natty:
Report link

    if (items == null || items == Enumerable.Empty<TagOrIdItem>() || !items.Any())
    {
        return Enumerable.Empty<T>().AsQueryable();
    }

Add a null check and validate items as being empty or no Any() in enumerable item Otherwise Null Exception from .Any().

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

79317455

Date: 2024-12-30 11:26:47
Score: 2
Natty:
Report link

You can also use html icons... but not all are supported as you can see in the first check symbol

Mermaid Diagram

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

79317451

Date: 2024-12-30 11:25:47
Score: 0.5
Natty:
Report link

This is an interesting question to read but something I learned today and was unable to find here is that peer authentication expects that:

A. the user is logged into the operating system as the database user B. any interactions with the database occur from within that OS user context

For example using Ansible, this requires tasks to be executed with:

become_user: postgres

or whatever user you're using to access your database. This will ensure your tasks logs in as the 'become_user' and then connects to the database server.

Looking at some of the answers, changing the authentication method to md5 allows normal password authentication for the database user and thus does not require database interactions to occur from within the context of a user logged into the OS. This will then allow you to specify host, username and password to login to PostgreSQL.

Changing the authentication method to trust seems very dangerous. Sure it will work but you will need to be absolutely sure that anyone meeting the connection criteria is trustworthy.

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

79317450

Date: 2024-12-30 11:24:46
Score: 2.5
Natty:
Report link

The answer to this problem lies in the initial state you declared and not in the input. This problem occur when at the initial state, you provided a whitespace. If the initial state is " ", then this issue occurs. It must be "", so that placeholder will be there properly. Regarding the same issue, I made a post on Twitter/X.com Here is the link, kindly visit, I explained in detail

https://x.com/Mathur128/status/1873688503000936738

Reasons:
  • Blacklisted phrase (1): Here is the link
  • No code block (0.5):
  • Low reputation (1):
Posted by: Vaibhav Mathur

79317449

Date: 2024-12-30 11:24:46
Score: 3.5
Natty:
Report link

i am afraid that th font mouhammdi on your app is not configured, i see that your are using the default font

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

79317442

Date: 2024-12-30 11:18:45
Score: 1
Natty:
Report link
sudo chown -R www-data:www-data /var/task/user/storage /var/task/user/bootstrap/cache

sudo chmod -R 775 /var/task/user/storage /var/task/user/bootstrap/cache

Run this both commands

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

79317440

Date: 2024-12-30 11:17:44
Score: 4
Natty: 5
Report link

AFTER COUNTLESS OTHER EFFORTS THIS METHOD WORKED ! thanks for this buddy !

Reasons:
  • Blacklisted phrase (0.5): thanks
  • Low length (1.5):
  • No code block (0.5):
  • Single line (0.5):
  • Low reputation (1):
Posted by: Techno is live

79317436

Date: 2024-12-30 11:15:44
Score: 2.5
Natty:
Report link

i remove the "package-lock.json",it works for me

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