79739003

Date: 2025-08-18 16:22:01
Score: 0.5
Natty:
Report link

I really do not like that new trend about "soundness", because it is largely pointless.

By definition - the "sound" language is a promise that a language does not have "undefined behavior" at all. If you have at least one example of undefined behavior, then the language is "unsound".

I would say: there is no real language which is "sound".

Reasons:
  • No code block (0.5):
Posted by: White Owl

79739002

Date: 2025-08-18 16:21:01
Score: 1.5
Natty:
Report link

The given query selects 10 random rows and then returns the unique_id of the row with the highest price among them. However, using ORDER BY RAND() is very expensive when the table has a large number of rows.

To optimize this, we can:

  1. Pick a random offset within the table.

  2. Retrieve 10 consecutive rows starting from that offset.

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

79738995

Date: 2025-08-18 16:12:59
Score: 1.5
Natty:
Report link

There was a change in python>=3.12.10 which changed the behaviour of the venv-prompt variable: https://github.com/python/cpython/issues/132361

Unfortunately this was not noticed until after 3.12.10 was released and python3.12 is no longer accepting bug-fixes. The only workaround is to move to a different python version.

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

79738988

Date: 2025-08-18 16:01:56
Score: 3.5
Natty:
Report link

feature is not yet available , only SSL settings are working for the moment in registryConfigs

https://issues.apache.org/jira/browse/FLINK-33045

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

79738977

Date: 2025-08-18 15:45:53
Score: 3
Natty:
Report link

I tried everything, but nothing worked. I found an old backup, and too bad for everything I lost, so I started a restore with All-in-One WP Migration, which remained stuck at 89%. So I refreshed and broke everything.

Now, via FTP, I delete everything and redo a clean installation, even if it takes time, whether via FTP or the OVH 1-Click module.

I hope I didn't make any mistakes.

Reasons:
  • Blacklisted phrase (1): but nothing work
  • No code block (0.5):
  • Self-answer (0.5):
  • Low reputation (1):
Posted by: Valentin Grtz

79738973

Date: 2025-08-18 15:42:52
Score: 1.5
Natty:
Report link

Make sure that the correct Content-Type response header is being set. On our CDN it was defaulting to text/plain rather than text/javascript which was causing the issue.

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

79738970

Date: 2025-08-18 15:38:51
Score: 4
Natty:
Report link

I'm not sure if this will help you or not, but please don't downvote my answer if it's not helpful.

You can try using swiperjs to achieve the same behavior.

Reasons:
  • RegEx Blacklisted phrase (2): downvote
  • Low length (1):
  • No code block (0.5):
  • Low reputation (0.5):
Posted by: Ahmed Radi

79738967

Date: 2025-08-18 15:36:50
Score: 0.5
Natty:
Report link

With upgrades in general the following series of commands are recommended.

git clean -xdf
gwb clean
gwb cleanIdea
gwb Idea

Review the upgrade instructions carefully for any manual steps needed to accept the new version.

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

79738966

Date: 2025-08-18 15:36:50
Score: 1.5
Natty:
Report link

update the lint-baseline.xml was Help to me by the command

./gradlew app:lintReportDebug updateLintBaseline
Reasons:
  • Low length (1):
  • Has code block (-0.5):
  • Low reputation (1):
Posted by: Михаил Кузнецов

79738965

Date: 2025-08-18 15:35:50
Score: 0.5
Natty:
Report link
<!DOCTYPE html>
<html>
<head>
  <meta charset="UTF-8">
  <meta name="viewport" content="width=device-width, initial-scale=1">
  <style>
    body {
      margin: 0;
      padding: 20px;
      display: flex;
      justify-content: center;
      align-items: center;
      height: 100vh;
      background: #f0f0f0;
      font-family: sans-serif;
    }

    .flip-card {
      width: 300px;
      max-width: 90%;
      aspect-ratio: 3 / 2;
      perspective: 1000px;
    }

    .flip-card-inner {
      position: relative;
      width: 100%;
      height: 100%;
      transition: transform 0.6s;
      transform-style: preserve-3d;
    }

    .flip-card:hover .flip-card-inner {
      transform: rotateY(180deg);
    }

    .flip-card-front,
    .flip-card-back {
      position: absolute;
      width: 100%;
      height: 100%;
      backface-visibility: hidden;
    }

    .flip-card-front img,
    .flip-card-back img {
      width: 100%;
      height: 100%;
      object-fit: cover;
      display: block;
      border-radius: 10px;
    }

    .flip-card-back {
      transform: rotateY(180deg);
    }
  </style>
</head>
<body>

  <div class="flip-card">
    <div class="flip-card-inner">
      <div class="flip-card-front">
        <img src="https://www.w3schools.com/html/img_girl.jpg" alt="Front Image">
      </div>
      <div class="flip-card-back">
        <img src="https://www.w3schools.com/html/pic_trulli.jpg" alt="Back Image">
      </div>
    </div>
  </div>

</body>
</html>

Test here :
https://www.w3schools.com/tags/tryit.asp?filename=tryhtml_image_test

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

79738950

Date: 2025-08-18 15:26:46
Score: 4
Natty:
Report link

For more information, refer to the following SurveyJS support thread: https://surveyjs.answerdesk.io/ticket/details/t24552/using-angular-outputting-stock-questions-but-in-our-specific-format

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

79738939

Date: 2025-08-18 15:19:43
Score: 2
Natty:
Report link

install pipewire

sudo pacman -S pipewire

also for good fun RTFM

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

79738927

Date: 2025-08-18 15:05:40
Score: 0.5
Natty:
Report link

As there is seemingly no answer to this yet. I decided to debug a little (version: Hibernate 6.6).

The default value for enableDirtyTracking in hibernate-enhance-maven-plugin is true (and OP also explicitly set it).

This enhances your Entity classes to implement ExtendedSelfDirtinessTracker which indirectly contains the method $$_hibernate_getDirtyAttributes which will be implemented by the enhancer.

For me, this generated implementation omitted the Auditable fields from the possible dirty fields. This seemed to be especially problematic if hibernates generates a Dynamic Update and will only generate a query which updates fields it considers to be dirty.

Which fields are considered for the dirty check for Entities implementing SelfDirtinessTracker is implemented in static DefaultFlushEntityEventListener.getDirtyPropertiesFromSelfDirtinessTracker (which will embellish the FlushEvent with the dirty fields to be used downstream)

At this point i explicitly turned enableDirtyTracking off (note, if you use the plugin it is on by default) since I did not plan to use it anyway.

If you need this option I would advise you inspect/debug the source code for the generation of $$_hibernate_getDirtyAttributes since that at least, seemed to be the culprit to me here.

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

79738909

Date: 2025-08-18 14:50:36
Score: 0.5
Natty:
Report link

I have managed to fix this issue in Chrome with the help of @Karim. I was using React with the 'styled-components' package, and I needed to add CSS only.
It needs only -webkit-autofill, but I have also added the focus pseudo-class

:focus ~ label, :-webkit-autofill ~ label {
    // your css style change for the label input
}
Reasons:
  • Blacklisted phrase (0.5): I need
  • Has code block (-0.5):
  • Low reputation (0.5):
Posted by: Tanya Dolgopolova

79738905

Date: 2025-08-18 14:45:34
Score: 2.5
Natty:
Report link

You shouldn’t subclass Spark’s Join directly because it’s a case class and final by design. Instead, wrap it in a custom logical plan node or attach extra info via metadata on expressions to safely extend functionality without breaking Spark’s optimizations.

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

79738897

Date: 2025-08-18 14:41:33
Score: 0.5
Natty:
Report link

Your issue is not due to running in a container but because you are using a java agent. You should use MODULE_OPTS env variable to deine your agent so that the LogManager is properly configured when your agent starts.

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

79738885

Date: 2025-08-18 14:35:30
Score: 0.5
Natty:
Report link

Please make sure that Localize is installed in your Angular project and that it is included in the angular.json configuration.

  "dependencies": {
    "@angular/cdk": "^20.1.5",
    "@angular/common": "^20.0.0",
    "@angular/compiler": "^20.0.0",
    "@angular/core": "^20.0.0",
    "@angular/forms": "^20.0.0",
    "@angular/localize": "^20.0.0",
    "@angular/platform-browser": "^20.0.0",
    "@angular/router": "^20.0.0",

angular.json:

            "polyfills": [
              "zone.js",
              "@angular/localize/init"
            ],

Feel free to also check the official documentation:
https://www.telerik.com/kendo-angular-ui/components/troubleshooting/general-issues#missing-angular-localize-package-for-i18n-support

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

79738870

Date: 2025-08-18 14:30:28
Score: 0.5
Natty:
Report link

The real configuration is to set up ? for your args but also add nullable: false (FALSE, NOT TRUE) in order to get your arg to be string or undefined but NOT null.

import { Args, ID } from "@nestjs/graphql";

// ...
@Args("id", { type: () => ID, nullable: false }) id?: string; // type: string | undefined.
Reasons:
  • Low length (0.5):
  • Has code block (-0.5):
  • Low reputation (0.5):
Posted by: Hugo Bayoud

79738852

Date: 2025-08-18 14:21:26
Score: 3
Natty:
Report link

This problem is usually the location of the nextauth URL, in my case it was in src/api, but it is src/app/api

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

79738842

Date: 2025-08-18 14:11:23
Score: 2
Natty:
Report link

I found the problem. Using "allowImportingTsExtensions": true broke things. After removing the flag, it actually built.

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

79738837

Date: 2025-08-18 14:09:22
Score: 2
Natty:
Report link

The issue is apparently similar to https://github.com/nodejs/node/issues/59364

Running tests using the "--no-experimental-strip-types" flag seems to solve the problem.

node --test --no-experimental-strip-types
Reasons:
  • Low length (1):
  • Has code block (-0.5):
  • Self-answer (0.5):
  • Low reputation (1):
Posted by: buggyCode

79738830

Date: 2025-08-18 14:06:21
Score: 2.5
Natty:
Report link

try downgrading the Firebase SDK versions

this will be your best bet sorry I cant help more

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

79738825

Date: 2025-08-18 14:00:20
Score: 2
Natty:
Report link

with cmd prompt execute as admin

C:\Program Files\Blender Foundation\Blender 4.3\4.3\python\bin>

and copy this line:

python.exe -m pip install --target="C:\Program Files\Blender Foundation\Blender 4.3\4.3\python\lib\site-packages" pandas

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

79738816

Date: 2025-08-18 13:56:19
Score: 2
Natty:
Report link

If you want Firebase Hosting rewrites and CDN, use Cloudflare in front for caching and passive failover, but true multi-region Cloud Run failover isn’t fully possible. If multi-region failover is top priority and you can skip Firebase Hosting, use Google Cloud Load Balancer directly to route traffic to Cloud Run. Use Full (strict) SSL with Cloudflare.

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

79738807

Date: 2025-08-18 13:48:16
Score: 0.5
Natty:
Report link

The objective of the search was to identify prior arts both patents and non-patent literature that top-load washer uses the flexibility of both manual and automatic detergent dosing, providing users with adaptable washing options. It incorporates advanced features such as algorithms, sensors, actuators, and/or mechanical components to control the automatic dispensing process. The auto-dispensing mechanism is not limited to a traditional pump system but can utilize various technologies, including positive displacement pumps or principles like the Bernoulli effect. Additionally, the washer features a removable detergent reservoir that allows for easy cleaning without impacting the function of the powder detergent dispenser. The search focused on identifying prior arts that disclose the following features:

Feature 1: A top-load washer that comprises the flexibility of using both manual and auto dosing.

Feature 1a: The washer uses an algorithm, sensor, actuator and/or mechanical/ hardware components.

Feature 1b: The auto mechanism to dispense the detergent is not limited to the pump only, it can utilize various technologies, including positive displacement pumps or principles like the Bernoulli effect.

Feature 2: Removable reservoir for easy cleaning without effect on powder detergent dispenser.

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

79738803

Date: 2025-08-18 13:45:15
Score: 0.5
Natty:
Report link

This can be achieved with:

include:
  - component: $CI_SERVER_FQDN/$CI_COMPONENTS/container/build@0
    inputs:
      as: "Build container image"
      destinations:
        - "-t $DESTINATION:$CI_COMMIT_SHORT_SHA"

Build container image:
  parallel:
    matrix:
      - !reference [.COMPONENTS, matrix]
  rules: !reference [.build_rules, rules]
  artifacts:
    paths:
      - $COMPONENT/build.env 
Reasons:
  • Has code block (-0.5):
  • Self-answer (0.5):
  • Low reputation (0.5):
Posted by: Erik

79738798

Date: 2025-08-18 13:44:15
Score: 0.5
Natty:
Report link

for me the issue was for generating using dart-dio i got the URI not generated
fixed it by running

dart run build_runner build --delete-conflicting-outputs

inside the generated pkg folder

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

79738786

Date: 2025-08-18 13:34:12
Score: 0.5
Natty:
Report link
const grouped = Object.groupBy(employeeRecords, r => 
  `${r.empID}|${r.company}|${r.date}`
);
const merged = Object.values(grouped).map(records => {
  if (records.length === 1) return records[0];
  return {  ...records[0], group: records.map(r => r.group).join("-") };
});
Reasons:
  • Low length (0.5):
  • Has code block (-0.5):
  • Low reputation (0.5):
Posted by: Mourad Qqch

79738783

Date: 2025-08-18 13:33:12
Score: 0.5
Natty:
Report link

onComplete gives you everything you listed, including the donor’s custom message (cm). You just grab it and POST it to your PHP endpoint. Here’s a clean, working example.

Frontend (JS)

<div id="paypal-donate-button-container"></div>

<script src="https://www.paypalobjects.com/donate/sdk/donate-sdk.js" charset="UTF-8"></script>
<script>
  PayPal.Donation.Button({
    env: 'sandbox',                       // switch to 'production' when live
    hosted_button_id: 'YOUR_SANDBOX_HOSTED_BUTTON_ID',
    image: {
      src: 'https://www.paypalobjects.com/en_US/i/btn/btn_donateCC_LG.gif',
      title: 'PayPal - The safer, easier way to pay online!',
      alt: 'Donate with PayPal button'
    },
    onComplete: function (params) {
      // params contains: tx, st, amt, cc, cm, item_number, item_name
      // Send it to your server
      fetch('/paypal-complete.php', {
        method: 'POST',
        headers: { 'Content-Type': 'application/json' },
        body: JSON.stringify({
          tx: params.tx,
          st: params.st,
          amt: params.amt,
          cc: params.cc,
          cm: params.cm,                 // <-- donor’s custom message
          item_number: params.item_number,
          item_name: params.item_name
        })
      })
      .then(() => location.href = '/thank-you.html')
      .catch(() => location.href = '/thank-you.html'); // show thanks either way
    }
  }).render('#paypal-donate-button-container');
</script>

Backend (PHP)

Receives the JSON, stores it, and (recommended) verifies the payment.

<?php
// /paypal-complete.php

// 1) Read JSON payload
$raw = file_get_contents('php://input');
$data = json_decode($raw, true) ?: [];

// 2) Pull fields (with basic safety)
$tx  = $data['tx']  ?? '';
$st  = $data['st']  ?? '';
$amt = $data['amt'] ?? '';
$cc  = $data['cc']  ?? '';
$cm  = $data['cm']  ?? '';           // donor message
$item_number = $data['item_number'] ?? '';
$item_name   = $data['item_name']   ?? '';

// 3) Persist immediately (DB/log) so nothing is lost
// Example log (replace with real DB insert):
file_put_contents(__DIR__ . '/paypal_donations.log',
  date('c') . " | tx=$tx st=$st amt=$amt $cc | item=$item_number/$item_name | cm=" . str_replace(["\n","\r"], ' ', $cm) . PHP_EOL,
  FILE_APPEND
);

// 4) (Recommended) Verify the transaction server-to-server
// Option A: PDT (Payments Data Transfer)
$useSandbox = true; // false in production
$pdtIdentityToken = 'YOUR_PDT_IDENTITY_TOKEN';

if ($tx && $pdtIdentityToken) {
  $endpoint = $useSandbox
    ? 'https://ipnpb.sandbox.paypal.com/cgi-bin/webscr'
    : 'https://ipnpb.paypal.com/cgi-bin/webscr';

  $payload = http_build_query([
    'cmd' => '_notify-synch',
    'tx'  => $tx,
    'at'  => $pdtIdentityToken
  ]);

  $ch = curl_init($endpoint);
  curl_setopt_array($ch, [
    CURLOPT_POST => true,
    CURLOPT_POSTFIELDS => $payload,
    CURLOPT_RETURNTRANSFER => true,
    CURLOPT_HEADER => false,
    CURLOPT_SSL_VERIFYPEER => true,
  ]);

  $res = curl_exec($ch);
  curl_close($ch);

  if ($res !== false && strncmp($res, "SUCCESS", 7) === 0) {
    // Parse key=value lines after the first line
    $lines = explode("\n", $res);
    array_shift($lines);
    $pdt = [];
    foreach ($lines as $line) {
      $parts = explode("=", $line, 2);
      if (count($parts) === 2) $pdt[urldecode($parts[0])] = urldecode($parts[1]);
    }

    // Sanity checks (examples):
    // if (($pdt['payment_status'] ?? '') === 'Completed'
    //   && ($pdt['mc_gross'] ?? '') == $amt
    //   && ($pdt['mc_currency'] ?? '') == $cc
    //   && ($pdt['txn_id'] ?? '') == $tx) { /* mark as verified */ }

    http_response_code(204); // all good
    exit;
  }
}

// If verification isn’t configured yet, still return 202 so your JS can move on.
// (But do not mark donation as "confirmed" in your DB until verified.)
http_response_code(202);

Notes you’ll care about

If you want, I can add a tiny MySQL table + insert snippet so you can save the donation and message cleanly.

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

79738774

Date: 2025-08-18 13:23:09
Score: 2
Natty:
Report link

I had this problem before. Go to the Selection tab — if Column Selection Mode is ticked, untick it.
If it’s not ticked, try ticking it and then unticking it again.

That worked fine for me.

Reasons:
  • Low length (0.5):
  • No code block (0.5):
  • Low reputation (1):
Posted by: Mohammad amin Orojloo

79738766

Date: 2025-08-18 13:16:07
Score: 3.5
Natty:
Report link

Unknown right knee has a ratchet sound and feel.

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

79738764

Date: 2025-08-18 13:12:06
Score: 0.5
Natty:
Report link

However, regarding this trouble

a. fit_transform -- The mean() and std () -- they are learned parameters and are directly applied to the initial data

b. transform -- This is applied to new data, i.e, the previously learned parameters applied to new data, usually test data

Why couldn't you use it?

The fit_transform() functions in two ways:

The transform() fails due to the following

Check official documentation for more https://scikit-learn.org/stable/modules/generated/sklearn.preprocessing.StandardScaler.html

Reasons:
  • Long answer (-0.5):
  • Has code block (-0.5):
  • Contains question mark (0.5):
  • Low reputation (1):
Posted by: WizHabasi

79738760

Date: 2025-08-18 13:11:06
Score: 0.5
Natty:
Report link

The problem was related to the compiler.

When specifying the targeted platform of the compilation, one must specify both the virtual target and the real target. The former is related to the PTX version, and the latter, to the SASS version. So, what might happened is that the compiler has defaulted to an old PTX version when I only specified -arch in the compilation command:

nvcc cuda_test.cu -o cuda_test -arch=sm_121a

Now that I also specify the -code, the compilation has succeeded. The command is as follows:

nvcc cuda_test.cu -o cuda_test --generate-code arch=compute_121a,code=sm_121a

In which the arch and code are parameters of the --generate-code.

The compute_XX is about the virtual target, and the sm_XX, the real target.

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

79738756

Date: 2025-08-18 13:07:05
Score: 1.5
Natty:
Report link

That is how JWT works. There are pros and cons with JWT's you just noticed the largest "con" imho.

I wrote some remedies in a similar question here: How to revoke an accesstoken?

Reasons:
  • Low length (1):
  • No code block (0.5):
  • Ends in question mark (2):
  • High reputation (-2):
Posted by: Andreas Lundgren

79738745

Date: 2025-08-18 12:58:02
Score: 2
Natty:
Report link

If you cannot find danger Zone via scrolling down:

and you are in Danger zone

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

79738735

Date: 2025-08-18 12:54:01
Score: 3.5
Natty:
Report link

Aleksandr Medvedev response let me understand better how virtual works. Solved. Thanks all.

Reasons:
  • Blacklisted phrase (0.5): Thanks
  • Low length (1):
  • No code block (0.5):
  • Self-answer (0.5):
  • Low reputation (1):
Posted by: Infofly

79738732

Date: 2025-08-18 12:53:01
Score: 2.5
Natty:
Report link

In Safari, when using private browsing each tab is "isolated" so even though they are on the same origin they don't share context with each other.

So the BroadcastChannel API wont work :\

https://help.apple.com/safari/mac/8.0/en.lproj/ibrw1069.html

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

79738725

Date: 2025-08-18 12:47:59
Score: 1
Natty:
Report link

you can do with

    {
        "key": "alt+p",
        "command": "workbench.action.pinEditor",
        "when": "!activeEditorIsPinned"
    },
    {
        "key": "alt+p",
        "command": "workbench.action.unpinEditor",
        "when": "activeEditorIsPinned"
    }
Reasons:
  • Low length (0.5):
  • Has code block (-0.5):
  • Low reputation (1):
Posted by: kubosuke

79738719

Date: 2025-08-18 12:44:58
Score: 0.5
Natty:
Report link

After all, upgrading from Nuxt v3.10.0 to v4.0.3 fixed it.

My package.json

{
  "name": "nuxt",
  "private": true,
  "type": "module",
  "scripts": {
    "build": "nuxt build",
    "dev": "nuxt dev",
    "generate": "nuxt generate",
    "preview": "nuxt preview",
    "postinstall": "nuxt prepare"
  },
  "devDependencies": {
    "nuxt": "^4.0.3",
    "vue": "^3.4.20",
  },
  "dependencies": {
    "@pinia/nuxt": "^0.11.1",
    "pinia": "^3.0.3"
  }
}
Reasons:
  • Has code block (-0.5):
  • Self-answer (0.5):
  • Low reputation (0.5):
Posted by: p_duthoit

79738710

Date: 2025-08-18 12:37:56
Score: 2
Natty:
Report link

You need to use the raw type Set rather than the specific Generic version. See also https://www.eclipse.org/forums/index.php/t/1103966/

Reasons:
  • Probably link only (1):
  • Low length (1.5):
  • Has code block (-0.5):
  • Self-answer (0.5):
  • Single line (0.5):
  • High reputation (-1):
Posted by: simonalexander2005

79738702

Date: 2025-08-18 12:31:55
Score: 1.5
Natty:
Report link

You can’t detect it with pure Python — you need JavaScript for browser events (focus, blur, mouseenter) and then pass that state to Python. For automation, Selenium can check driver.switch_to.active_element, and on desktop you’d need OS APIs (pywin32, PyAutoGUI, etc.).

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

79738680

Date: 2025-08-18 12:10:49
Score: 1
Natty:
Report link
weekdays = {1: 'Monday', 2: 'Tuesday', 3: 'Wednesday', 4: 'Thursday', 5: 'Friday', 6: 'Saturday', 7: 'Sunday'}
n = int(input("enter the number in between 1 and 7: "))
weekdays.get(n)

I'm not getting any output for the above code, what's the issue here

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

79738679

Date: 2025-08-18 12:06:48
Score: 2.5
Natty:
Report link

Firebse Hosting is for public access, if authorization is needed then you should consider a server (Cloud Run, Cloud Functions... etc.) where access to those servers can be managed by IAM or implement an authorization middleware yourself with basic auth or something else

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

79738675

Date: 2025-08-18 12:06:48
Score: 3
Natty:
Report link

If you’re looking for a UI/UX design tool with custom styling options, Figma is one of the best choices as it allows flexible component design, real-time collaboration, and easy prototyping. For a detailed comparison of the top tools, check this guide: Best UI/UX Design Tool in 2025 – Figma vs Adobe XD vs Sketch. Adobe XD and Sketch are also strong alternatives, depending on your workflow and team needs.

Reasons:
  • Blacklisted phrase (1): this guide
  • No code block (0.5):
  • Single line (0.5):
  • Low reputation (1):
Posted by: Arisu

79738672

Date: 2025-08-18 12:03:47
Score: 3
Natty:
Report link

This happened to me when using docker from WSL, you need to install npm to the WSL machine

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

79738670

Date: 2025-08-18 12:00:46
Score: 5
Natty:
Report link

Just checking something if it wrks okay else i will delete
https://www.youtube.com/watch?v=kGo0AxoOQYw

Reasons:
  • Blacklisted phrase (1): youtube.com
  • Probably link only (1):
  • Low length (1.5):
  • No code block (0.5):
  • Low reputation (1):
Posted by: Nitin Kumar

79738647

Date: 2025-08-18 11:41:41
Score: 1.5
Natty:
Report link

Issue for me was my sshd config was overridden by the configuration files in /etc/sshd/sshd_config.d/

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

79738645

Date: 2025-08-18 11:40:41
Score: 1
Natty:
Report link

MacOS solution for podman

  1. create docker file

    sudo nano /usr/local/bin/docker
    
    
  2. add to file

    #!/bin/sh
    exec podman "$@"
    
  3. add perms to run

    sudo chmod +x /usr/local/bin/docker
    
  4. test docker command

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

79738643

Date: 2025-08-18 11:39:40
Score: 2.5
Natty:
Report link

You should use caching and save the prices to cache at the time of updating the pricelist. This way, the frontend won’t need to fetch prices directly from the database, which will significantly improve performance.

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

79738631

Date: 2025-08-18 11:21:36
Score: 3.5
Natty:
Report link

When struggling with App Store payments I always find the Revenue Cat documentation a great go-to resource - https://www.revenuecat.com/docs/test-and-launch/sandbox/apple-app-store#:~:text=Sandbox%20Considerations%E2%80%8B&text=In%20sandbox%2C%20StoreKit%20Test%2C%20and,regions%20set%20for%20devices/accounts.

There's some mention in there of making sure you're on a different / new account. Testing IAP on Apple has always been a nightmare!

Reasons:
  • Probably link only (1):
  • Low length (0.5):
  • No code block (0.5):
  • Starts with a question (0.5): When
  • Low reputation (1):
Posted by: Gareth Reese

79738622

Date: 2025-08-18 11:13:34
Score: 2
Natty:
Report link

Unfortunately no, without an additional column the aggregation described by you is not possible in SQL. The physical storage doesn't care about the sequence data was inserted in the first place. The engine of your dbms will store the data in any form it prefers concerning performance.

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

79738613

Date: 2025-08-18 11:06:32
Score: 0.5
Natty:
Report link

When you’re testing with Twilio, it works well for small-scale sending and receiving, but it doesn’t really offer a simple way to simulate hundreds of users replying back at the same time. Most of the SMS testing tools you’ll find are built for bulk outbound sending only and don’t handle 2-way traffic simulation in bulk, which is why you’re hitting a limit with your current setup.

If you want to properly test at scale (like 500+ users sending replies), you generally need either:

This is where an aggregator platform makes sense. Instead of building a custom simulator, you can use a provider that’s designed for high volume and 2-way SMS flows. One of the better options out there is Africala. It’s built specifically for bulk messaging at scale, supports 2-way SMS, and gives you delivery reports and analytics that mimic production usage. That way you don’t just test sending, but also realistically test how your system processes hundreds of replies at once.

So in short: Twilio is fine for initial dev, but if your goal is bulk user simulation with both sending and receiving, a service like Africala is going to be much more practical.

Reasons:
  • Whitelisted phrase (-1.5): you can use
  • Contains signature (1):
  • Long answer (-1):
  • No code block (0.5):
  • Starts with a question (0.5): When you
  • Low reputation (1):
Posted by: Africala

79738596

Date: 2025-08-18 10:42:26
Score: 2
Natty:
Report link

You could try to run it using xvfb-run from the Xvfb project. It starts your application(s) under a fully compatible X Window server without any hardware and not a lot of overhead.

I've used this a few times to run UI tests and for an X11 desktop app that had command line arguments for use on the command line.

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

79738592

Date: 2025-08-18 10:36:24
Score: 1
Natty:
Report link

Or if you want to load it with the base query, you should use method `with`.

Here's an example:

$model_2 = Model2::query()
    ->where('name', $name)
    ->with('categories')
    ->get(); // Returns the Collection of Model2 with loaded relation of category 
Reasons:
  • Low length (0.5):
  • Has code block (-0.5):
  • Low reputation (1):
Posted by: yeashy

79738591

Date: 2025-08-18 10:36:24
Score: 3.5
Natty:
Report link

Please do pod update and pod install inside the ios folder

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

79738588

Date: 2025-08-18 10:33:23
Score: 0.5
Natty:
Report link

Use This key in info.plist file to get rid of this.

<key>ITSAppUsesNonExemptEncryption</key>
<false/>

enter image description here

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

79738586

Date: 2025-08-18 10:30:22
Score: 2
Natty:
Report link

If z-order is not defined, the most recently opened window will appear on top based on the order in which the windows were opened.

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

79738583

Date: 2025-08-18 10:27:21
Score: 1
Natty:
Report link

I have the same problem with

<parent>
        <groupId>org.springframework.boot</groupId>
        <artifactId>spring-boot-starter-parent</artifactId>
        <version>2.1.0.RELEASE</version>
    </parent>

This gives me the warning.

WARNING: TestEngine with ID 'junit-vintage' failed to discover tests
java.lang.NoClassDefFoundError

For me, this is important because I have to run both JUnit 4 and JUnit 5 tests. And this warning makes me not able to read JUnit 4 tests.

I tried solutions from all over the internet and I found the solution from

https://youtrack.jetbrains.com/issue/IDEA-257728/TestEngine-with-ID-junit-vintage-failed-to-discover-tests-failed-to-parse-version-of-junitjunit-4.13.1

Basically, we need to add

<dependencyManagement>
    <dependencies>
        <dependency>
            <groupId>org.junit</groupId>
            <artifactId>junit-bom</artifactId>
            <version>5.8.1</version> <!-- Adjust this with your case -->
            <type>pom</type>
            <scope>import</scope>
        </dependency>
    </dependencies>
</dependencyManagement>

And don't forget to make the build plugin just like this

<plugin>
                <groupId>org.apache.maven.plugins</groupId>
                <artifactId>maven-surefire-plugin</artifactId>
                <version>3.1.2</version>
            </plugin>

This makes me able to run both JUnit 4 and JUnit 5 tests 👍

Hope you all don't waste your time like I did. Spent like all day for this 😅

Reasons:
  • Blacklisted phrase (1): I have the same problem
  • Whitelisted phrase (-2): I found the solution
  • Long answer (-1):
  • Has code block (-0.5):
  • Me too answer (2.5): I have the same problem
  • Low reputation (1):
Posted by: Muhammad Aulia Adil Murtito

79738564

Date: 2025-08-18 10:13:17
Score: 0.5
Natty:
Report link

A different approach-

=UNIQUE(HSTACK(A2:A8,COUNTIFS(A2:A8,A2:A8,B2:B8,"<6")))

enter image description here

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

79738561

Date: 2025-08-18 10:08:16
Score: 3.5
Natty:
Report link

It could be because of your CPU or how fast your PC is, if it takes hours, restart.

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

79738559

Date: 2025-08-18 10:06:15
Score: 1
Natty:
Report link
I've actually run into similar headaches with domain validation on other platforms, so I totally get why this is so annoying, especially since it was working before!

The problem here almost certainly comes down to a recent, unannounced change on Google's end. What's happening is that their security team has likely updated their list of "public suffixes."

So, what's a public suffix?

Think of it like this: blogspot.com or github.io. Those are domains where anyone can create their own subdomain (like your-blog.blogspot.com). Google's rules for OAuth are designed to prevent security vulnerabilities, and they've gotten a lot stricter about not allowing public suffixes in their Authorized JavaScript origins field.

The reason it's failing is that Google's system is now seeing up.railway.app as one of those "public suffixes," even though it might not have been on their list a few months ago. The generic "invalid argument" error is just their way of saying, "Hey, that domain doesn't pass our new validation check."

The fact that up.railway.com works and up.railway.app doesn't is a huge clue. It tells me Google's list has been updated to specifically flag the .app suffix, likely because it's so widely used for different apps.


Honestly, the most reliable and secure way to solve this is to get a custom domain for your project.it's the better for production apps and will prevent this kind of problem from ever happening again.

1.Buy a domain: Grab a simple domain name, something like my-awesome-app.com. It's a small investment that adds a ton of professionalism.

2.Add it to Railway: Railway makes this super easy. Just follow their guide to add the custom domain and update your DNS settings (usually by adding a CNAME record).

3.Update Google Cloud: Once your domain is configured on Railway, just go back to your OAuth client settings and replace https://your-app.up.railway.app with https://my-awesome-app.com.

4.Change Your Code: Don't forget to update your app's redirect_uri and any other hardcoded URLs to use your new custom domain.
Reasons:
  • RegEx Blacklisted phrase (1.5): fix?
  • Long answer (-1):
  • Has code block (-0.5):
  • Low reputation (1):
Posted by: iann

79738558

Date: 2025-08-18 10:05:14
Score: 0.5
Natty:
Report link

After some more tests and digging, I found the issue: MySQL considers that WKT with EPSG=4326 are given in lat-long while PostGIS considers that they are given in long-lat. This behavior can be customized using the axis-order option for the ST_GeomFromText function in MySQL.

The MySQL query

SELECT ST_AsText(ST_Transform(ST_GeomFromText('POINT(5 45)', 4326, 'axis-order=long-lat'), 2154));

returns a result very close to the one with the initial query in PostGIS.

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

79738537

Date: 2025-08-18 09:50:10
Score: 2.5
Natty:
Report link

Version 7.3.0 of the module fixed this bug.

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

79738534

Date: 2025-08-18 09:46:09
Score: 0.5
Natty:
Report link

I have solved this problem and can now support the merging of coverage data from different exec files. see this
https://github.com/chen524266/jacoco-enhanced

Reasons:
  • Whitelisted phrase (-2): I have solved
  • Low length (1):
  • No code block (0.5):
  • Low reputation (1):
Posted by: user31296663

79738532

Date: 2025-08-18 09:46:09
Score: 1.5
Natty:
Report link

As an addition to Lucas's answer:
Rust strings handle both Unicode and UTF-8, but at different layers.
In Unicode, one lowercase character doesn't always map to a single uppercase character.

For example:
'ß' (German sharp S) becomes "SS" when uppercased.

This makes Rust's approach more intuitive and reliable by using iterators rather than returning a single character.

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

79738522

Date: 2025-08-18 09:39:07
Score: 4
Natty: 5
Report link

Hi look into this project, could be usefull:

https://github.com/Nukepayload2/VbWinUI3Demos

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

79738503

Date: 2025-08-18 09:34:05
Score: 6
Natty: 7
Report link

How can I build a seamless charting system with both real-time and full historical OHLCV data using my own chain data and external APIs?

Reasons:
  • Blacklisted phrase (0.5): How can I
  • Low length (1):
  • No code block (0.5):
  • Ends in question mark (2):
  • Single line (0.5):
  • Starts with a question (0.5): How can I
  • Low reputation (1):
Posted by: M.WAHAJ KHAN

79738490

Date: 2025-08-18 09:27:02
Score: 1.5
Natty:
Report link

How to log-in gh CLI needless of password

1. make sure you installed gh cli via homebrew (easiest)

2. then, gh auth login which you will need to answer few questions. Follow them closely.

3. After it said, "You were already logged in to this account", do some action immediately about git. This will confirm you are logged in. Also, it will log you in surely.

Troubleshooting: restart Terminal once, sometimes it helps.

Reasons:
  • Blacklisted phrase (0.5): I need
  • Has code block (-0.5):
  • Starts with a question (0.5): How to
  • Low reputation (1):
Posted by: Sukit Roongapinun

79738488

Date: 2025-08-18 09:26:02
Score: 1.5
Natty:
Report link

From the documentation:

Move the whole .build/release folder to your desired destination and run with path_to_release_folder/sourcery

most likely the problem was in the incorrect movement of files and we will do everything carefully through the terminal, everything worked out for me

Reasons:
  • Low length (0.5):
  • Has code block (-0.5):
  • Self-answer (0.5):
  • Low reputation (1):
Posted by: Соня Кудрявцева

79738482

Date: 2025-08-18 09:23:01
Score: 1.5
Natty:
Report link

With recent versions of scikit-learn (e.g. 1.7.1), the answer of @piman314 can be greatly simplified.

def get_activations(mlp, x):
    activations = [x] + [None] * (mlp.n_layers_ - 1)
    activations = mlp._forward_pass(activations)
    return activations
Reasons:
  • Low length (0.5):
  • Has code block (-0.5):
  • User mentioned (1): @piman314
  • Low reputation (0.5):
Posted by: Donshel

79738478

Date: 2025-08-18 09:15:58
Score: 7
Natty:
Report link

I have the same problem, cannot enter an .up.railway.app domain...

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

79738476

Date: 2025-08-18 09:14:58
Score: 0.5
Natty:
Report link

We had the same problem. Somehow the default vhost '/' was not existing anymore. After opening the management console and adding the vhost '/' under Admin -> Virtual Hosts -> Add a new virtual host, everything was working again. RabbitMQ even recovered all queues, exchanges and messages.

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

79738474

Date: 2025-08-18 09:12:57
Score: 1
Natty:
Report link

A complement (after years) : If you are using a fake certificate like snakeoil with virtualhosts (sure at development time!) you have to use 'verify_peer_name'=>false like :

'ssl' => [
    //'verify_peer' => false, <- not needed with "allow_self_signed=true"
    'verify_peer_name' => false, // <- this one is mandatory
    'allow_self_signed' => true
],

Cheers.

Reasons:
  • Blacklisted phrase (1): Cheers
  • Has code block (-0.5):
  • Low reputation (0.5):
Posted by: Cyrille37

79738469

Date: 2025-08-18 09:09:56
Score: 2.5
Natty:
Report link

Thanks a lot! it worksforme

isMidButtonUp(e) {
      return (e.buttons & 4) === 0;
    },
Reasons:
  • Blacklisted phrase (0.5): Thanks
  • Low length (1.5):
  • Has code block (-0.5):
  • Low reputation (1):
Posted by: Yue Zhang

79738431

Date: 2025-08-18 08:30:47
Score: 0.5
Natty:
Report link

It looks like a false positive (?!)
If I write this code, prefixing each option with "T1 " to check that I'm really using it, I and that I put it as an image for you to see the highlighted error on communes: enter image description here

You can see that Type Commune[] must have a [Symbol.iterator]() method that returns an iterator. is really considered as an error,

enter image description here

But what is troublesome, is that it doesn't prevent Angular 20 to compile the application and is working, whatever.
enter image description here

Reasons:
  • Probably link only (1):
  • Has code block (-0.5):
  • Contains question mark (0.5):
  • Self-answer (0.5):
  • High reputation (-1):
Posted by: Marc Le Bihan

79738424

Date: 2025-08-18 08:18:44
Score: 1
Natty:
Report link

When using NIO connectors, it appears that the contextDestroyed method is not invoked. Tested on Apache Tomcat 9.0.104 and 10.1.44.

Configuration (server.xml – Connector tag):

Reasons:
  • Has code block (-0.5):
  • Starts with a question (0.5): When
  • Low reputation (1):
Posted by: Yuta Takeda

79738420

Date: 2025-08-18 08:11:41
Score: 3
Natty:
Report link

You need a DLP solution to prevent Capture screen, save, copy n paste, and etc.

https://coworkshop.com/

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

79738419

Date: 2025-08-18 08:11:41
Score: 0.5
Natty:
Report link

This is a false positive warning from the compiler's static analysis.

The compiler is pointing out a theoretical problem that can't actually happen when the code runs.

What the Warning Means:

The compiler is analyzing the memcpy function call and sees a potential for overflow based on the data types involved.

The variable l has the type size_t. On a 64-bit system, size_t is an unsigned 64-bit integer. Its maximum value is 2^64-1, which is 18,446,744,073,709,551,615.

The C standard effectively limits the maximum size of any single object in memory to PTRDIFF_MA. On a 64-bit system, this is the maximum value of a signed 64-bit integer, which is 2^63−1, or 9,223,372,036,854,775,807.

The compiler sees that l (an unsigned type) could theoretically hold a value that is larger than the maximum possible object size. This is the value in your warning, 18446744073709551614 which is 2*PTRDIFF_MA. The compiler is warning you that if l were this large, memcpy would be instructed to copy more data than can possibly exist in a single memory object.

Why It's Not a Real Bug

The compiler's analysis is too simplistic and misses a crucial piece of context from the line before the memcpy.

char *b = prepbuffsize(B, l, -1);
memcpy(b, s, l * sizeof(char));

The prepbuffsize function's job is to prepare a buffer of at least size l.

An attempt to allocate a buffer of a size that large (e.g., more than 9,223,372,036,854,775,807 bytes) is guaranteed to fail on a real-world scenario.

When prepbuffsize fails to allocate the memory, it will raise a Lua error.

This error stops the execution of the C function and propagates up to the Lua script.

Therefore, the memcpy line is unreachable with a dangerously large value for l. The program will have already aborted due to the allocation failure. The compiler isn't smart enough to deduce this inter-procedural logic and only sees the potential problem within the local scope of the luaL_addlstring function.

You can safely ignore this warning. It is a known type of false positive when compiling large, mature codebases like Lua with aggressive warning flags.

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

79738417

Date: 2025-08-18 08:09:40
Score: 2.5
Natty:
Report link

Maybe not an answer but probably still a way to achieve what you want: I would usually use a python virtual environment and pip instead of anaconda. Never had a problem with that. This should be able to help: https://www.geeksforgeeks.org/python/using-mkvirtualenv-to-create-new-virtual-environment-python/

Generally speaking, when working with various versions of python, you must create a virtual environment (with conda or pip, both have that feature). Otherwise, things can get very messy.

Reasons:
  • Blacklisted phrase (1): not an answer
  • No code block (0.5):
  • Low reputation (1):
Posted by: ZeSeb

79738410

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

with ready docker images, here are the details of my docker-compose file having 2 apps

  1. dapr binding feature

  2. dapr chat completion

chat completion endpoint is erroring out as mentioned below after implenting above suggestion,

{"errorCode":"ERR_DIRECT_INVOKE","message":"failed getting app id either from the URL path or the header dapr-app-id"}

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

79738409

Date: 2025-08-18 08:02:38
Score: 1
Natty:
Report link

Please add after ax.plot(a).

To remove horizontal padding

ax.margins(x=0)

To remove padding in both x and y

ax.margins(0)

Or to remove horizontal padding

ax.set_xlim(0, len(a)-1)

Output:

enter image description here

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

79738400

Date: 2025-08-18 07:48:34
Score: 7.5
Natty: 5
Report link

Please check this link also for more explanation https://usingaspdotnet.blogspot.com/2025/08/adult-validation-using-javascript.html

Reasons:
  • Blacklisted phrase (1): Please check this
  • Blacklisted phrase (1): this link
  • RegEx Blacklisted phrase (1): check this link
  • Probably link only (1):
  • Low length (1.5):
  • No code block (0.5):
  • Single line (0.5):
  • Low reputation (1):
Posted by: Dench Designs

79738387

Date: 2025-08-18 07:37:30
Score: 1.5
Natty:
Report link

archive-hocr-tools has hocr-text

hocr-text -f src.hocr >dst.txt
Reasons:
  • Probably link only (1):
  • Low length (2):
  • Has code block (-0.5):
  • High reputation (-1):
Posted by: milahu

79738385

Date: 2025-08-18 07:36:30
Score: 1
Natty:
Report link
var sql = "Select * from table b left join Lkp_table2 a on a.col=b.col";

// Regex to find first table name starting with Lkp_
var match = sql.match(/(Lkp_[a-zA-Z0-9_]+)/i);

var lkp_table = "";
if (match != null && match.length > 1) {
    lkp_table = match[1];
}

// return the lookup table name
lkp_table;
Reasons:
  • Low length (0.5):
  • Has code block (-0.5):
  • Low reputation (1):
Posted by: worldgreatestyoutuber FE

79738384

Date: 2025-08-18 07:33:29
Score: 2
Natty:
Report link

It is definitely useful (this is why I was looking up the subject in the first place) when a part of your table rows are dynamic and you want to change the content dynamically without recreating fixed rows.

Reasons:
  • Low length (0.5):
  • No code block (0.5):
  • Single line (0.5):
  • Low reputation (0.5):
Posted by: Jean-Xavier Bardant

79738378

Date: 2025-08-18 07:23:27
Score: 0.5
Natty:
Report link

Yes, the mappings just provide an interface between the parameters that a user provides, and the values that the internal functions expect. Is it necessary? Absolutely not.

We can't say for certain what the actual reason was for this design choice. There isn't anything particularly complex in any of the options, or some other convenience like expanding acronyms where required. The constants and mapping below probably provide the best hint (copied verbatim from https://github.com/dhan-oss/DhanHQ-py/blob/main/src/dhanhq/dhanhq.py and https://github.com/TradeHull/Dhan-Tradehull/blob/3753bf42de1918236288555e1f753285c5c798ec/Dhan_Tradehull.py#L171C1-L172C1):

NSE = 'NSE_EQ'
BSE = 'BSE_EQ'
CUR = 'NSE_CURRENCY'
MCX = 'MCX_COMM'
FNO = 'NSE_FNO'
NSE_FNO = 'NSE_FNO'
BSE_FNO = 'BSE_FNO'
INDEX = 'IDX_I' 

script_exchange = {
    "NSE":self.Dhan.NSE, 
    "NFO":self.Dhan.FNO, 
    "BFO":"BSE_FNO", 
    "CUR": self.Dhan.CUR, 
    "BSE":self.Dhan.BSE, 
    "MCX":self.Dhan.MCX
}

The user is expected to provide one of the keys in script_exchange to select which exchange they want to make their order on. Rather than expect a user to input NSE_EQ, which is rather unintuitive, they just enter NSE, which is much more familiar. That being said, this code is pretty low quality. The BFO key doesn't use the Dhan.BSE_FNO value, despite it being available. These values should also be created as values in an Enum or some other class, rather than just as constants in the top-level class. All this is to say, don't look at this repository too hard for tips or ideas on good practices.

Reasons:
  • Long answer (-1):
  • Has code block (-0.5):
  • Contains question mark (0.5):
  • Looks like a comment (1):
  • Low reputation (0.5):
Posted by: Stitt

79738376

Date: 2025-08-18 07:19:26
Score: 3.5
Natty:
Report link

For version 4, just reinstall the Tailwind CSS extension in VS Code.

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

79738370

Date: 2025-08-18 07:12:24
Score: 2.5
Natty:
Report link

In case someone is having same problem with storybook 9 for angular project.
Include styles setting into builder options for storybook inside angular.json

"storybook": {
    "builder": "@storybook/angular:start-storybook",
    "options": {
        ...
        "styles": ["src/styles/styles.scss"]
    }
}
"build-storybook": {
    "builder": "@storybook/angular:build-storybook",
    "options": {
        ...
        "styles": ["src/styles/styles.scss"]
    }
}
Reasons:
  • Has code block (-0.5):
  • Me too answer (2.5): having same problem
  • Low reputation (0.5):
Posted by: blazkovicz

79738367

Date: 2025-08-18 07:09:23
Score: 2.5
Natty:
Report link

Go to ultralytics/nn/modules/block.py in the Yolov12 folder. Add the following line of code to the Attn class: self.qkv = self.qk
your problem should be solved.

Reasons:
  • Low length (1):
  • No code block (0.5):
  • Low reputation (1):
Posted by: Ömer Faruk Tokoğlu

79738365

Date: 2025-08-18 07:08:22
Score: 4.5
Natty:
Report link

so after going through everything, python versions, jdk versions etc. I finally found the solution. All thanks to @samkart, for providing the link for the similar question. there I got to know that it works with python 3.11.8 and I gave it a try and it works now. In browser as well as in vscode.
Thanks man

Reasons:
  • Blacklisted phrase (0.5): thanks
  • Blacklisted phrase (0.5): Thanks
  • Low length (0.5):
  • No code block (0.5):
  • User mentioned (1): @samkart
  • Self-answer (0.5):
  • Low reputation (1):
Posted by: supinebeing

79738348

Date: 2025-08-18 06:42:17
Score: 1
Natty:
Report link

Turns out you need an Info.plist with CFBundleIdentifier key (this is the only key required),

then

clang++ -std=c++20 -O2 -o hello -sectcreate __TEXT __info_plist Info.plist main.cpp

Otherwise you'll need an app bundle if you're not embedding Info.plist into your binary.

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

79738321

Date: 2025-08-18 06:02:08
Score: 2
Natty:
Report link
MSA.கார்த்தி
header 1 header 2
cell 1 cell 2
cell 3 cell 4
Reasons:
  • Low length (1.5):
  • Has code block (-0.5):
  • Low reputation (1):
Posted by: bose Kartik

79738315

Date: 2025-08-18 05:56:07
Score: 1.5
Natty:
Report link

I created a small script for solving conflicts in changelogs:

https://gitlab.com/salekpawel/cf_changelog

I believe that changelog should not be created from commits, because commit comments are targeted rather for other developers.

Git union will not work when you would like to group changelog entries (like new features, bugfixes, etc.) from multiple sources. This is not a simple union.

That's why I created my own tool.

Reasons:
  • No code block (0.5):
  • Low reputation (1):
Posted by: Paweł Sałek

79738313

Date: 2025-08-18 05:54:06
Score: 0.5
Natty:
Report link

Scaffold resizes its body when the keyboard opens, which causes the back button to move up.

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

79738311

Date: 2025-08-18 05:48:05
Score: 1
Natty:
Report link

The keyName prop has been dropped in a major version release.

a screenshot from the react-hook-form doc

An alternative is by setting a unique field key yourself in your form data aside id.

{ dbId: 'abc123', ...otherFields, id: 'generatedId' }

Then before submitting, you can structure it any how you like.

const submitData = fields.map(({ dbId, ...rest }) => ({ id: dbId, ...rest }));
Reasons:
  • Probably link only (1):
  • Has code block (-0.5):
  • Low reputation (0.5):
Posted by: UncleBigBay

79738295

Date: 2025-08-18 05:25:00
Score: 2
Natty:
Report link

if the object holds a logic True clause, return the trueValue Else return falseValue

he say:logic true,so if (true,trueValue as Double, falseValue as Double) As Double)

Public Function If(trueValue as Double, falseValue as Double) As Double

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

79738293

Date: 2025-08-18 05:22:59
Score: 1.5
Natty:
Report link

<html>

<head>

<meta http-equiv="Content-Type" content="text/html; charset=utf-8">

<meta name="Generator" content="Microsoft Exchange Server">

<!-- converted from rtf -->

<style><!-- .EmailQuote { margin-left: 1pt; padding-left: 4pt; border-left: #800000 2px solid; } --></style>

</head>

<body>

<font face="Times New Roman" size="3"><span style="font-size:12pt;"><a name="BM_BEGIN"></a></span></font>

</body>

</html>

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

79738284

Date: 2025-08-18 05:08:57
Score: 2
Natty:
Report link

I was also getting the same error on Expo. I tried using useFetchStreams and changing the database name, but the issue got resolved by switching from simulator 18.4 to 18.3.

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

79738277

Date: 2025-08-18 04:55:54
Score: 2.5
Natty:
Report link

If you just need a quick online tool, [FormaX CSV Converter](https://formattx.com/tools/csv-converter) can handle CSV ⇄ JSON conversions.

It's free, works client-side, and supports custom delimiters.

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

79738276

Date: 2025-08-18 04:50:52
Score: 2.5
Natty:
Report link

A good workaround would be to give data for each time interval (as shown below). Then do the following:

enter image description here

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