79528981

Date: 2025-03-23 13:04:11
Score: 0.5
Natty:
Report link

All depends on what device you testing on. A few steps that could help you to find the issue:

  1. Inspect your app in Safari to see the console logs, that could tell you if there is a runtime error. You can check your xcode logs too
  2. If you don't see any console error or you get something that is not interpretable eg.:SyntaxError: Unexpected token '{'. Possible that your web app bundle is not supporting older webkit engine. You need to rebuild your web app with a different target so that it can run on older browser.
Reasons:
  • Long answer (-0.5):
  • No code block (0.5):
  • Low reputation (0.5):
Posted by: Gergő Kajtár

79528972

Date: 2025-03-23 12:54:10
Score: 2
Natty:
Report link

I hope this helps you.

https://en-designetwork.daichi703n.com/entry/2025/03/22/tshark-capture-with-display-filter-tcp-payload

Reasons:
  • Whitelisted phrase (-1): hope this helps
  • Probably link only (1):
  • Contains signature (1):
  • Low length (0.5):
  • Has code block (-0.5):
  • Low reputation (1):
Posted by: daichi703n

79528968

Date: 2025-03-23 12:52:09
Score: 2.5
Natty:
Report link

did you look into bunster, I posted a about this long ago.

Link: https://bunster.netlify.app

And much more features. I guess it is what you're looking for

Reasons:
  • Low length (0.5):
  • No code block (0.5):
  • Starts with a question (0.5): did you
  • Low reputation (1):
Posted by: YASSINE BENAID

79528960

Date: 2025-03-23 12:45:08
Score: 0.5
Natty:
Report link

Invalidate Android Studio Cache and running the Gradle build again worked for me

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

79528947

Date: 2025-03-23 12:35:06
Score: 1
Natty:
Report link

so after a lot of trial and error and hours spent, here is the correct formula, so many hours spent on a simple formula, but it gave me so much dofamine when it started working

zx = -(mandelbrot.get_x_offset() - (mouse.x / mandelbrot.get_zoom_x()));

zy = -(mandelbrot.get_y_offset() - (mouse.y / mandelbrot.get_zoom_y()));
Reasons:
  • Has code block (-0.5):
  • Self-answer (0.5):
  • Low reputation (1):
Posted by: NeKon

79528945

Date: 2025-03-23 12:34:06
Score: 1
Natty:
Report link

When using the app router the structure should look like this app/login/page.tsx. You can read up on the official docs

app
| --login
    |----page.tsx
| -- components
page.tsx
Reasons:
  • Low length (1):
  • Has code block (-0.5):
  • Starts with a question (0.5): When
Posted by: X8inez

79528942

Date: 2025-03-23 12:32:05
Score: 2.5
Natty:
Report link

You should install the ARM/Apple Silicon version of the Flutter SDK: https://flutter-ko.dev/development/tools/sdk/releases?tab=macos

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

79528927

Date: 2025-03-23 12:21:03
Score: 7.5 🚩
Natty:
Report link

i am also having same issue with geolocator package

please reply if found solution

thanks

Reasons:
  • Blacklisted phrase (0.5): thanks
  • Blacklisted phrase (1.5): please reply
  • Low length (1.5):
  • No code block (0.5):
  • Me too answer (2.5): i am also having same issue
  • Low reputation (1):
Posted by: Brijesh Gangwar

79528926

Date: 2025-03-23 12:20:02
Score: 2
Natty:
Report link

Looks looks like Visual studio launches 3 processes "Windows form thing (1900), Windows form thing (7644), Windows form thing (26568)".
Please try to close process with pid (1900, 7644, 26568).
Retry after that.

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

79528923

Date: 2025-03-23 12:17:02
Score: 1
Natty:
Report link

Your bot is probably being restarted in this 24-hour period. When the bot is restarted, all running views are lost.

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

79528918

Date: 2025-03-23 12:13:01
Score: 1.5
Natty:
Report link

Simply changing "postcss": "7.0.39" to "postcss": "8" in package.json file and than Doing a npm install fixed it for me .

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

79528917

Date: 2025-03-23 12:13:01
Score: 5
Natty:
Report link

Its damn annoying when having to compile codes from different sources to run as one project and some dipstick written his bit in rust. Now we have to spend all the time again trying to convert it to c++ so it matches all the other code so not having to run multiple OS. Just why do idiots do this? Oh its rust, its easy, well, fuck you, you were supposed to write it in c++ not some stupid other code then do a runner.

Reasons:
  • Blacklisted phrase (2): fuck
  • No code block (0.5):
  • Contains question mark (0.5):
  • Unregistered user (0.5):
  • Single line (0.5):
  • Low reputation (1):
Posted by: Jan DJures

79528914

Date: 2025-03-23 12:12:00
Score: 0.5
Natty:
Report link

After I posted I found the Mahmoud answer and I was able to implement it. Thank you!

BatchConfig.java

@Configuration
@EnableAutoConfiguration(exclude = {DataSourceAutoConfiguration.class})
public class BatchConfig {

  @Bean
  public PlatformTransactionManager transactionManager() {
    return new ResourcelessTransactionManager();
  }

  @Bean
  public JobRepository jobRepository() {
    return new ResourcelessJobRepository();
  }

  @Bean
  public JobLauncher jobLauncher(JobRepository jobRepository) {
    TaskExecutorJobLauncher jobLauncher = new TaskExecutorJobLauncher();
    jobLauncher.setJobRepository(jobRepository);
    return jobLauncher;
  }
}

JobConfig.java

@Configuration
public class JobConfig {

  @Bean
  public Job taskletJob(JobRepository jobRepository, Step step) {
    return new JobBuilder("taskletJob", jobRepository)
      .start(step)
      .build();
  }

  @Bean
  public Step sampleStep(JobRepository jobRepository, PlatformTransactionManager transactionManager) {
    return new StepBuilder("sampleStep", jobRepository)
      .tasklet(new SampleTasklet(), transactionManager)
      .build();
  }
}
Reasons:
  • Blacklisted phrase (0.5): Thank you
  • Long answer (-1):
  • Has code block (-0.5):
  • Self-answer (0.5):
  • Low reputation (1):
Posted by: Lucas Guima

79528902

Date: 2025-03-23 12:04:59
Score: 1
Natty:
Report link

Below is the simplest working code for angular 19:

const intializeAppFn = () => {
  const configService = inject(ConfigService);
  console.log("Initializing app");
  return configService.loadConfig();
};

providers: [provideAppInitializer(intializeAppFn)];
Reasons:
  • Low length (0.5):
  • Has code block (-0.5):
  • Low reputation (1):
Posted by: Rashid Anwar

79528901

Date: 2025-03-23 12:04:59
Score: 2.5
Natty:
Report link

Your problem its not to write python before. U can take your enviroment in anaconda and its fine, but in the moment to write "import torch, print bla bla bla" just before write "python", simple, now use python raw and its fine.

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

79528897

Date: 2025-03-23 11:58:58
Score: 0.5
Natty:
Report link

This sidebar widget is a list of your open documents and shows the actual name of the documents (or as by an option) the path of it, too. For a more file system like apporach try out the treeviewer plugin. Some other plugins (as the project one) are also including some context

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

79528894

Date: 2025-03-23 11:56:57
Score: 2
Natty:
Report link

Starting from django 5.0, GenericPrefetch class has been provided to explicitly declare prefetched items from generic relationship.

https://docs.djangoproject.com/en/5.1/ref/contrib/contenttypes/#django.contrib.contenttypes.fields.GenericRelation

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

79528887

Date: 2025-03-23 11:49:56
Score: 3
Natty:
Report link

I take the same error.What could I do?"sqlalchemy.exc.OperationalError: (psycopg2.OperationalError) could not translate host name "db" to address: nodename nor servname provided, or not known"

Reasons:
  • Low length (0.5):
  • No code block (0.5):
  • Contains question mark (0.5):
  • Single line (0.5):
  • Low reputation (1):
Posted by: Feyza Erdoğan

79528885

Date: 2025-03-23 11:48:56
Score: 2
Natty:
Report link

Easiest: Put the regex result in that slash.

Example

~ $ testtext='hello i want to go to school'; [[ $testtext =~ go ]]; rp=${testtext//$BASH_REMATCH/walk}; echo $rp

Result

hello i want to walk to school
Reasons:
  • RegEx Blacklisted phrase (1): i want
  • Low length (0.5):
  • Has code block (-0.5):
  • Low reputation (1):
Posted by: Hamed M

79528883

Date: 2025-03-23 11:47:56
Score: 0.5
Natty:
Report link

<!DOCTYPE html>

<html lang="so">

<head>

\<meta charset="UTF-8"\>

\<meta name="viewport" content="width=device-width, initial-scale=1.0"\>

\<title\>Dalbo Internet - EVC Plus\</title\>

\<style\>

    body {

        font-family: 'Arial', sans-serif;

        background: linear-gradient(to right, #00c6ff, #0072ff);

        text-align: center;

        color: white;

        padding: 20px;

    }

    .container {

        background: white;

        max-width: 400px;

        margin: auto;

        padding: 20px;

        border-radius: 10px;

        box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.2);

        text-align: left;

        color: black;

    }

    h2 {

        color: red;

    }

    .tab-buttons {

        display: flex;

        justify-content: space-around;

        margin-bottom: 10px;

    }

    .tab-buttons button {

        background: red;

        color: white;

        padding: 10px;

        border: none;

        cursor: pointer;

        border-radius: 5px;

        flex: 1;

        margin: 0 5px;

    }

    .tab-buttons button.active {

        background: darkred;

    }

    .tab-content {

        display: none;

    }

    .tab-content.active {

        display: block;

    }

    input, select, button {

        width: 100%;

        padding: 10px;

        margin-top: 5px;

        border: 1px solid #ccc;

        border-radius: 5px;

        font-size: 16px;

    }

    button {

        background: red;

        color: white;

        font-weight: bold;

        border: none;

        cursor: pointer;

        margin-top: 15px;

        transition: background 0.3s ease;

    }

    button:hover {

        background: darkred;

    }

    .payment-info {

        background: #f8f9fa;

        padding: 10px;

        border-radius: 5px;

        margin-top: 10px;

        font-size: 14px;

    }

    .company-logo {

        display: block;

        width: 100px;

        margin: 10px auto;

    }

    .error {

        color: red;

        font-size: 14px;

    }

\</style\>

</head>

<body onload="greetUser()">

\<h2\>Dalbo Internet\</h2\>

\<div class="container"\>

    \<div class="tab-buttons"\>

        \<button class="active" onclick="openTab('dalbo')"\>📩 Dalbo\</button\>

        \<button onclick="openTab('payment')"\>💳 Xaqiiji Payment\</button\>

    \</div\>

    \<div id="dalbo" class="tab-content active"\>

        \<form id="orderForm"\>

            \<label\>👤 Magacaaga:\</label\>

            \<input type="text" id="name" onfocus="askQuestion('What is your name?')"\>

            \<p class="error" id="nameError"\>\</p\>

            \<label\>📞 Lambarkaaga:\</label\>

            \<input type="tel" id="number" onfocus="askQuestion('What is your phone number?')"\>

            \<p class="error" id="numberError"\>\</p\>

            \<label\>🏢 Shirkadda:\</label\>

            \<select id="company" onchange="updatePackages(); updateLogo(); announceSelection('company')"\>

                \<option value="Somtel"\>Somtel\</option\>

                \<option value="Somnet"\>Somnet\</option\>

                \<option value="Amtel"\>Amtel\</option\>

                \<option value="Somlink"\>Somlink\</option\>

                \<option value="Hormuud"\>Hormuud\</option\>

            \</select\>

            \<img id="companyLogo" class="company-logo" src="somtel.png" alt="Shirkadda Logo"\>

            \<label\>📦 Xirmada Internetka:\</label\>

            \<select id="package" onchange="announceSelection('package')"\>\</select\>

            \<button type="button" onclick="validateForm()"\>💳 U Gudub Payment\</button\>

        \</form\>

    \</div\>

    \<div id="payment" class="tab-content"\>

        \<div class="payment-info"\>

            \<p\>💳 \<b\>Lacagta u dir:\</b\> \<span style="color: green;"\>616656880\</span\>\</p\>

            \<p\>✅ Kadibna geli lambarka internet-ka:\</p\>

        \</div\>

        \<label\>📞 Lambarka Internet-ka:\</label\>

        \<input type="tel" id="transaction" onfocus="askQuestion('Enter your internet number for payment confirmation.')"\>

        \<p class="error" id="transactionError"\>\</p\>

        \<button onclick="sendToWhatsApp()"\>📩 Xaqiiji\</button\>

        \<button onclick="sendMoney()"\>📤 Dir Lacagta\</button\>

    \</div\>

\</div\>

\<script\>

    let companyPrefixes = {

        "Somtel": "62",

        "Somnet": "68",

        "Somlink": "64",

        "Hormuud": "61",

        "Amtel": "71"

    };

    function greetUser() {

        speak("Welcome! Please enter your details to order internet.");

    }

    function openTab(tabName) {

        document.querySelectorAll(".tab-content").forEach(tab =\> tab.classList.remove("active"));

        document.querySelectorAll(".tab-buttons button").forEach(button =\> button.classList.remove("active"));

        document.getElementById(tabName).classList.add("active");

        document.querySelector(\`\[onclick="openTab('${tabName}')"\]\`).classList.add("active");

    }

    function validateForm() {

        let name = document.getElementById("name").value;

        let number = document.getElementById("number").value;

        let validPrefixes = \["61", "62", "64", "68", "71"\];

        document.getElementById("nameError").innerText = name === "" ? "Magaca waa in la buuxiyaa!" : "";

        document.getElementById("numberError").innerText = number === "" ? "Lambarka waa in la buuxiyaa!" : "";

        if (number && !validPrefixes.some(prefix =\> number.startsWith(prefix))) {

            document.getElementById("numberError").innerText = "Lambarkaagu sax ma ahan!";

            speak("Your phone number is incorrect!");

            return;

        }

        if (name && number) {

            speak("Your order has been submitted, please proceed to payment.");

            openTab("payment");

        }

    }

    function speak(text) {

        let msg = new SpeechSynthesisUtterance(text);

        msg.lang = "en-US";

        window.speechSynthesis.speak(msg);

    }

    function askQuestion(text) {

        speak(text);

    }

    function announceSelection(type) {

        let text = type === "company" ? "You selected " + document.getElementById("company").value : "You chose the " + document.getElementById("package").value + " package";

        speak(text);

    }

    function sendToWhatsApp() {

        let name = document.getElementById("name").value;

        let number = document.getElementById("number").value;

        let company = document.getElementById("company").value;

        let packageText = document.getElementById("package").selectedOptions\[0\].text;

        let packageType = document.getElementById("package").selectedOptions\[0\].getAttribute("data-type"); // Get type from data-type attribute

        let transaction = document.getElementById("transaction").value;

        let prefix = companyPrefixes\[company\];

        if (transaction.length !== 9) {

            document.getElementById("transactionError").innerText = "Lambarka internetka waa inuu noqdaa 9 lambar!";

            speak("The internet number must be 9 digits!");

            return;

        }

        if (!transaction.startsWith(prefix)) {

            document.getElementById("transactionError").innerText = \`Lambarka internetka waa inuu ku bilaabmaa ${prefix}\`;

            speak("The internet number must start with " + prefix);

            return;

        }

        if (!transaction) {

            document.getElementById("transactionError").innerText = "Lambarka internetka waa in la buuxiyaa!";

            return;

        }

        // Extract the price from the package text

        let price = packageText.split(" - ")\[1\];

        // Haddii qiimaha uu yahay "undefined", isticmaal qiimaha default

        if (!price) {

            price = "0.00"; // Qiimaha default haddii aan la helin qiimaha

        }

        let message = \`📩 \*Dalab Cusub!\* %0A\`

                    + \`👤 \*Magaca:\* ${name} %0A\`

                    + \`📞 \*Numberka:\* ${number} %0A\`

                    + \`🏢 \*Shirkadda:\* ${company} %0A\`

                    + \`📦 \*Xirmada:\* ${packageText} %0A\`

                    + \`💾 \*Nooca:\* ${packageType} %0A\` // Use packageType instead of type

                    + \`💲 \*Qiimaha:\* ${price} %0A\`

                    + \`📡 \*Numberka Internetka:\* ${transaction}\`;

        window.open(\`https://wa.me/616656880?text=${message}\`, "\_blank");

        speak("Payment verification sent.");

    }

    function sendMoney() {

        let packageSelect = document.getElementById("package");

        let price = packageSelect.value; // Qiimaha xirmada la doortay

        let ussdCode = \`\*712\*616656880\*${price}#\`;

        // U dir USSD code-ka

        window.location.href = \`tel:${encodeURIComponent(ussdCode)}\`;

    }

    function updateLogo() {

        let company = document.getElementById("company").value;

        document.getElementById("companyLogo").src = \`${company.toLowerCase()}.png\`;

    }

    function updatePackages() {

        let company = document.getElementById("company").value;

        let packageSelect = document.getElementById("package");

        packageSelect.innerHTML = "";

        let packages = \[\];

        switch (company) {

            case "Somtel":

                packages = \[

                    { name: "Unlimited (24 saac)", price: "0.65", type: "Unlimited" },

                    { name: "1.2GB", price: "0.50", type: "GB" },

                    { name: "450MB", price: "0.25", type: "MB" },

                    { name: "2.5GB", price: "0.95", type: "GB" }

                \];

                break;

            case "Somnet":

                packages = \[

                    { name: "Unlimited (24 saac)", price: "0.65", type: "Unlimited" },

                    { name: "425MB", price: "0.25", type: "MB" },

                    { name: "1.2GB", price: "0.47", type: "GB" },

                    { name: "2.5GB", price: "0.95", type: "GB" }

                \];

                break;

            case "Amtel":

                packages = \[

                    { name: "Unlimited (36 saac)", price: "0.48", type: "Unlimited" },

                    { name: "3GB", price: "1.00", type: "GB" }

                \];

                break;

            case "Somlink":

                packages = \[

                    { name: "Unlimited (24 saac)", price: "0.48", type: "Unlimited" },

                    { name: "6GB", price: "1.00", type: "GB" }

                \];

                break;

            case "Hormuud":

                packages = \[

                    { name: "Unlimited", price: "0.75", type: "Unlimited" },

                    { name: "2GB", price: "0.95", type: "GB" }

                \];

                break;

            default:

                packages = \[

                    { name: "Unlimited", price: "0.75", type: "Unlimited" },

                    { name: "2GB", price: "0.95", type: "GB" }

                \];

        }

        packages.forEach(pkg =\> {

            let option = document.createElement("option");

            option.textContent = \`${pkg.name} - $${pkg.price}\`;

            option.value = pkg.price; // Set value to price for payment processing

            option.setAttribute("data-type", pkg.type); // Add data-type attribute

            packageSelect.appendChild(option);

        });

    }

    window.onload = function() {

        greetUser();

        updatePackages();

        updateLogo();

    };

\</script\>

</body>

</html>

Reasons:
  • Blacklisted phrase (1): What is your
  • Long answer (-1):
  • Has code block (-0.5):
  • Low reputation (1):
Posted by: PUBG Global

79528878

Date: 2025-03-23 11:44:55
Score: 2.5
Natty:
Report link

save() is deprecated meanwhile and presumably simply calling persist, why your test behaves the same (see https://docs.jboss.org/hibernate/stable/core/javadocs/org/hibernate/Session.html#save(java.lang.Object))

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

79528873

Date: 2025-03-23 11:40:54
Score: 2.5
Natty:
Report link

The current Dart SDK version is 3.0.6.

Because chatapp depends on firebase_core >=3.2.0 which requires SDK version >=3.2.0 <4.0.0, version solving failed.

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

79528870

Date: 2025-03-23 11:38:54
Score: 3.5
Natty:
Report link

Well, after adding Thunar to xdg, I had to reboot my pc. It fixed my problem

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

79528868

Date: 2025-03-23 11:34:53
Score: 2
Natty:
Report link

There is a tool called bunster, it does exactly what you desire.

It compiles bash scripts to static binaries, supports a lot of other features like modules, native .env files support, static assets embedding and a lot more.

Link: https://bunster.netlify.app

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

79528865

Date: 2025-03-23 11:32:52
Score: 10.5 🚩
Natty: 5.5
Report link

I am looking for a solution to synchronize the attendance data from my ZKTECO K40 kits to my private online server. If someone can help me understand how the ADMS protocol works, I would be very grateful. I have already tried everything without a solution. I have configured my K40 KITS on the ADMS protocol with the parameters of my online server, I used WIRESHARK to analyze the traffic but I realize that my kits do not send communication as one might expect.

Thank you for your help.

Reasons:
  • Blacklisted phrase (0.5): Thank you
  • Blacklisted phrase (1): help me
  • Blacklisted phrase (2): I am looking for
  • Blacklisted phrase (1): I have already tried
  • Whitelisted phrase (-0.5): Thank you for your help
  • RegEx Blacklisted phrase (3): someone can help me
  • RegEx Blacklisted phrase (2): I would be very grateful
  • No code block (0.5):
  • Low reputation (1):
Posted by: Gaston Yomatcha

79528850

Date: 2025-03-23 11:20:49
Score: 4
Natty:
Report link

Turning off the brave shields fixed it for me

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

79528834

Date: 2025-03-23 11:03:46
Score: 0.5
Natty:
Report link

Yevhens answer works great! You can also use JS filters:

const obj = {a:1, b:2, c:null, d: ''},

result = Object.fromEntries(
    Object.entries(obj).filter(([,v]) => v)
);

console.log(result)

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

79528824

Date: 2025-03-23 10:54:44
Score: 3
Natty:
Report link

As of end of March-2023, there is an additional networking option for Azure API Management (APIM), i.e. Private Endpoint for APIM is generally available.

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

79528817

Date: 2025-03-23 10:47:42
Score: 4.5
Natty:
Report link

Since the big boys in blue wanna lock down MY system, heres how you tell them to get fucked and stay winning

echo 0 | sudo tee /proc/sys/net/ipv4/ip_unprivileged_port_start

begone demons

Reasons:
  • Blacklisted phrase (2): fuck
  • Low length (0.5):
  • No code block (0.5):
  • Self-answer (0.5):
  • Low reputation (1):
Posted by: Ashley Smith

79528804

Date: 2025-03-23 10:40:41
Score: 4.5
Natty:
Report link

Turns out, you can create a new QtQuickView instead of reusing the one. it's prolly inefficient but it works.
enter image description here

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

79528800

Date: 2025-03-23 10:38:40
Score: 1.5
Natty:
Report link

I take the same error.What could I do?

Traceback (most recent call last):
  File "/Users/feyzaerdogan/Downloads/gorev-yonetimi-api/.venv/lib/python3.12/site-packages/sqlalchemy/engine/base.py", line 146, in __init__
    self._dbapi_connection = engine.raw_connection()
                             ^^^^^^^^^^^^^^^^^^^^^^^
  File "/Users/feyzaerdogan/Downloads/gorev-yonetimi-api/.venv/lib/python3.12/site-packages/sqlalchemy/engine/base.py", line 3298, in raw_connection
    return self.pool.connect()
           ^^^^^^^^^^^^^^^^^^^
  File "/Users/feyzaerdogan/Downloads/gorev-yonetimi-api/.venv/lib/python3.12/site-packages/sqlalchemy/pool/base.py", line 449, in connect
    return _ConnectionFairy._checkout(self)
           ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
  File "/Users/feyzaerdogan/Downloads/gorev-yonetimi-api/.venv/lib/python3.12/site-packages/sqlalchemy/pool/base.py", line 1264, in _checkout
    fairy = _ConnectionRecord.checkout(pool)
            ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
  File "/Users/feyzaerdogan/Downloads/gorev-yonetimi-api/.venv/lib/python3.12/site-packages/sqlalchemy/pool/base.py", line 713, in checkout
    rec = pool._do_get()
          ^^^^^^^^^^^^^^
  File "/Users/feyzaerdogan/Downloads/gorev-yonetimi-api/.venv/lib/python3.12/site-packages/sqlalchemy/pool/impl.py", line 179, in _do_get
    with util.safe_reraise():
         ^^^^^^^^^^^^^^^^^^^
  File "/Users/feyzaerdogan/Downloads/gorev-yonetimi-api/.venv/lib/python3.12/site-packages/sqlalchemy/util/langhelpers.py", line 146, in __exit__
    raise exc_value.with_traceback(exc_tb)
  File "/Users/feyzaerdogan/Downloads/gorev-yonetimi-api/.venv/lib/python3.12/site-packages/sqlalchemy/pool/impl.py", line 177, in _do_get
    return self._create_connection()
           ^^^^^^^^^^^^^^^^^^^^^^^^^
  File "/Users/feyzaerdogan/Downloads/gorev-yonetimi-api/.venv/lib/python3.12/site-packages/sqlalchemy/pool/base.py", line 390, in _create_connection
    return _ConnectionRecord(self)
           ^^^^^^^^^^^^^^^^^^^^^^^
  File "/Users/feyzaerdogan/Downloads/gorev-yonetimi-api/.venv/lib/python3.12/site-packages/sqlalchemy/pool/base.py", line 675, in __init__
    self.__connect()
  File "/Users/feyzaerdogan/Downloads/gorev-yonetimi-api/.venv/lib/python3.12/site-packages/sqlalchemy/pool/base.py", line 901, in __connect
    with util.safe_reraise():
         ^^^^^^^^^^^^^^^^^^^
  File "/Users/feyzaerdogan/Downloads/gorev-yonetimi-api/.venv/lib/python3.12/site-packages/sqlalchemy/util/langhelpers.py", line 146, in __exit__
    raise exc_value.with_traceback(exc_tb)
  File "/Users/feyzaerdogan/Downloads/gorev-yonetimi-api/.venv/lib/python3.12/site-packages/sqlalchemy/pool/base.py", line 897, in __connect
    self.dbapi_connection = connection = pool._invoke_creator(self)
                                         ^^^^^^^^^^^^^^^^^^^^^^^^^^
  File "/Users/feyzaerdogan/Downloads/gorev-yonetimi-api/.venv/lib/python3.12/site-packages/sqlalchemy/engine/create.py", line 646, in connect
    return dialect.connect(*cargs, **cparams)
           ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
  File "/Users/feyzaerdogan/Downloads/gorev-yonetimi-api/.venv/lib/python3.12/site-packages/sqlalchemy/engine/default.py", line 622, in connect
    return self.loaded_dbapi.connect(*cargs, **cparams)
           ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
  File "/Users/feyzaerdogan/Downloads/gorev-yonetimi-api/.venv/lib/python3.12/site-packages/psycopg2/__init__.py", line 122, in connect
    conn = _connect(dsn, connection_factory=connection_factory, **kwasync)
           ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
psycopg2.OperationalError: could not translate host name "db" to address: nodename nor servname provided, or not known


The above exception was the direct cause of the following exception:

Traceback (most recent call last):
  File "/Users/feyzaerdogan/Downloads/gorev-yonetimi-api/backend/app.py", line 130, in <module>
    db.create_all()
  File "/Users/feyzaerdogan/Downloads/gorev-yonetimi-api/.venv/lib/python3.12/site-packages/flask_sqlalchemy/extension.py", line 900, in create_all
    self._call_for_binds(bind_key, "create_all")
  File "/Users/feyzaerdogan/Downloads/gorev-yonetimi-api/.venv/lib/python3.12/site-packages/flask_sqlalchemy/extension.py", line 881, in _call_for_binds
    getattr(metadata, op_name)(bind=engine)
  File "/Users/feyzaerdogan/Downloads/gorev-yonetimi-api/.venv/lib/python3.12/site-packages/sqlalchemy/sql/schema.py", line 5907, in create_all
    bind._run_ddl_visitor(
  File "/Users/feyzaerdogan/Downloads/gorev-yonetimi-api/.venv/lib/python3.12/site-packages/sqlalchemy/engine/base.py", line 3248, in _run_ddl_visitor
    with self.begin() as conn:
         ^^^^^^^^^^^^
  File "/Library/Frameworks/Python.framework/Versions/3.12/lib/python3.12/contextlib.py", line 137, in __enter__
    return next(self.gen)
           ^^^^^^^^^^^^^^
  File "/Users/feyzaerdogan/Downloads/gorev-yonetimi-api/.venv/lib/python3.12/site-packages/sqlalchemy/engine/base.py", line 3238, in begin
    with self.connect() as conn:
         ^^^^^^^^^^^^^^
  File "/Users/feyzaerdogan/Downloads/gorev-yonetimi-api/.venv/lib/python3.12/site-packages/sqlalchemy/engine/base.py", line 3274, in connect
    return self._connection_cls(self)
           ^^^^^^^^^^^^^^^^^^^^^^^^^^
  File "/Users/feyzaerdogan/Downloads/gorev-yonetimi-api/.venv/lib/python3.12/site-packages/sqlalchemy/engine/base.py", line 148, in __init__
    Connection._handle_dbapi_exception_noconnection(
  File "/Users/feyzaerdogan/Downloads/gorev-yonetimi-api/.venv/lib/python3.12/site-packages/sqlalchemy/engine/base.py", line 2439, in _handle_dbapi_exception_noconnection
    raise sqlalchemy_exception.with_traceback(exc_info[2]) from e
  File "/Users/feyzaerdogan/Downloads/gorev-yonetimi-api/.venv/lib/python3.12/site-packages/sqlalchemy/engine/base.py", line 146, in __init__
    self._dbapi_connection = engine.raw_connection()
                             ^^^^^^^^^^^^^^^^^^^^^^^
  File "/Users/feyzaerdogan/Downloads/gorev-yonetimi-api/.venv/lib/python3.12/site-packages/sqlalchemy/engine/base.py", line 3298, in raw_connection
    return self.pool.connect()
           ^^^^^^^^^^^^^^^^^^^
  File "/Users/feyzaerdogan/Downloads/gorev-yonetimi-api/.venv/lib/python3.12/site-packages/sqlalchemy/pool/base.py", line 449, in connect
    return _ConnectionFairy._checkout(self)
           ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
  File "/Users/feyzaerdogan/Downloads/gorev-yonetimi-api/.venv/lib/python3.12/site-packages/sqlalchemy/pool/base.py", line 1264, in _checkout
    fairy = _ConnectionRecord.checkout(pool)
            ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
  File "/Users/feyzaerdogan/Downloads/gorev-yonetimi-api/.venv/lib/python3.12/site-packages/sqlalchemy/pool/base.py", line 713, in checkout
    rec = pool._do_get()
          ^^^^^^^^^^^^^^
  File "/Users/feyzaerdogan/Downloads/gorev-yonetimi-api/.venv/lib/python3.12/site-packages/sqlalchemy/pool/impl.py", line 179, in _do_get
    with util.safe_reraise():
         ^^^^^^^^^^^^^^^^^^^
  File "/Users/feyzaerdogan/Downloads/gorev-yonetimi-api/.venv/lib/python3.12/site-packages/sqlalchemy/util/langhelpers.py", line 146, in __exit__
    raise exc_value.with_traceback(exc_tb)
  File "/Users/feyzaerdogan/Downloads/gorev-yonetimi-api/.venv/lib/python3.12/site-packages/sqlalchemy/pool/impl.py", line 177, in _do_get
    return self._create_connection()
           ^^^^^^^^^^^^^^^^^^^^^^^^^
  File "/Users/feyzaerdogan/Downloads/gorev-yonetimi-api/.venv/lib/python3.12/site-packages/sqlalchemy/pool/base.py", line 390, in _create_connection
    return _ConnectionRecord(self)
           ^^^^^^^^^^^^^^^^^^^^^^^
  File "/Users/feyzaerdogan/Downloads/gorev-yonetimi-api/.venv/lib/python3.12/site-packages/sqlalchemy/pool/base.py", line 675, in __init__
    self.__connect()
  File "/Users/feyzaerdogan/Downloads/gorev-yonetimi-api/.venv/lib/python3.12/site-packages/sqlalchemy/pool/base.py", line 901, in __connect
    with util.safe_reraise():
         ^^^^^^^^^^^^^^^^^^^
  File "/Users/feyzaerdogan/Downloads/gorev-yonetimi-api/.venv/lib/python3.12/site-packages/sqlalchemy/util/langhelpers.py", line 146, in __exit__
    raise exc_value.with_traceback(exc_tb)
  File "/Users/feyzaerdogan/Downloads/gorev-yonetimi-api/.venv/lib/python3.12/site-packages/sqlalchemy/pool/base.py", line 897, in __connect
    self.dbapi_connection = connection = pool._invoke_creator(self)
                                         ^^^^^^^^^^^^^^^^^^^^^^^^^^
  File "/Users/feyzaerdogan/Downloads/gorev-yonetimi-api/.venv/lib/python3.12/site-packages/sqlalchemy/engine/create.py", line 646, in connect
    return dialect.connect(*cargs, **cparams)
           ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
  File "/Users/feyzaerdogan/Downloads/gorev-yonetimi-api/.venv/lib/python3.12/site-packages/sqlalchemy/engine/default.py", line 622, in connect
    return self.loaded_dbapi.connect(*cargs, **cparams)
           ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
  File "/Users/feyzaerdogan/Downloads/gorev-yonetimi-api/.venv/lib/python3.12/site-packages/psycopg2/__init__.py", line 122, in connect
    conn = _connect(dsn, connection_factory=connection_factory, **kwasync)
           ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
sqlalchemy.exc.OperationalError: (psycopg2.OperationalError) could not translate host name "db" to address: nodename nor servname provided, or not known

(Background on this error at: https://sqlalche.me/e/20/e3q8)
Reasons:
  • Long answer (-1):
  • Has code block (-0.5):
  • Ends in question mark (2):
  • Low reputation (1):
Posted by: Feyza Erdoğan

79528798

Date: 2025-03-23 10:38:40
Score: 1.5
Natty:
Report link

For me in Intellij IDEA, able see getter() and setter() methods After below Steps
It is a combination of

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

79528785

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

Please see union types, if you are using Scala 3

https://docs.scala-lang.org/scala3/book/types-union.html

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

79528773

Date: 2025-03-23 10:13:36
Score: 2
Natty:
Report link

I had the same problem until I moved my expect functions files from the "generated" packages onto somewhere else in the common main. I don't face that problem anymore.

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

79528771

Date: 2025-03-23 10:12:36
Score: 4
Natty: 4.5
Report link

If none of this works, this reddit thread helped me solve my issue.

https://www.reddit.com/r/nextjs/comments/1hnnbem/help_with_ariahidden_issue_in_dropdown_menu_and/?rdt=38956

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

79528765

Date: 2025-03-23 10:08:35
Score: 2.5
Natty:
Report link

Since your id is auto-generated in Account.java, you should not pass it manually in Postman.

Why? Your entity is defined as:

@Id

@GeneratedValue(strategy = GenerationType.IDENTITY)

private Long id;

How to Fix It?

Correct JSON request (without id):

{ "accountHolderName": "Piyush", "balance": 1000.00 }

This allows Spring Boot and JPA to handle id generation.

Possible Issues If You Pass id Manually

  1. Spring Boot might not bind the request properly, leading to 404 Not Found.

  2. JPA may throw an error if it expects an auto-generated value but receives one manually.

  3. If your database is empty, id = 1 does not exist, causing your GET requests to fail.

Reasons:
  • Blacklisted phrase (0.5): Why?
  • RegEx Blacklisted phrase (1.5): How to Fix It?
  • Long answer (-0.5):
  • Has code block (-0.5):
  • Contains question mark (0.5):
  • Low reputation (1):
Posted by: Pushpendra gour

79528761

Date: 2025-03-23 10:07:34
Score: 1
Natty:
Report link

The solution was setting ServeUnknownFileTypes to true, like so:

var builder = WebApplication.CreateBuilder(args);
var app = builder.Build();

app.UseStaticFiles(new StaticFileOptions {ServeUnknownFileTypes = true});
app.MapFallbackToFile("index.html");

app.Run();
Reasons:
  • Low length (0.5):
  • Has code block (-0.5):
  • Self-answer (0.5):
  • Low reputation (0.5):
Posted by: Jasper

79528757

Date: 2025-03-23 10:05:34
Score: 0.5
Natty:
Report link

I really made a gross mistake in the python implementation by not first copying the source list, which I am modifying. After adding the copy, the python implementation started to run noticeably slower. Many times slower than the c++ implementation, as expected.

corrected python implementation:

from typing import List
from copy import copy


def find_smallest_element(arr: list) -> int:
    smallest_item = arr[0]
    smallest_idx = 0

    for idx in range(1, len(arr)):
        item = arr[idx]
        if item < smallest_item:
            smallest_item = item
            smallest_idx = idx

    return smallest_idx


def selection_sort(arr: list) -> list:
    sorted_arr = []
    work_arr = copy(arr)  # <-- !!!

    while len(work_arr) != 0:
        smallest_idx = find_smallest_element(work_arr)
        sorted_arr.append(work_arr.pop(smallest_idx))

    return sorted_arr

Thanks, jérôme-richard

updated benchmark result for python:

------------------------------- benchmark: 1 tests ----------------------------------
Name (time in s)                     Min     Max    Mean  StdDev  Median     IQR  
-------------------------------------------------------------------------------------
test_selection_sort_benchmark     1.1131  1.1131  1.1131  0.0000  1.1131  0.0000       
-------------------------------------------------------------------------------------
Reasons:
  • Blacklisted phrase (0.5): Thanks
  • Long answer (-1):
  • Has code block (-0.5):
  • Self-answer (0.5):
  • Low reputation (1):
Posted by: Gwinkamp

79528753

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

I also have such a problem for 2025, it generates from my meme from the address, or writes an incorrect meme, although it is correct and in the code too.

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

79528748

Date: 2025-03-23 10:01:33
Score: 1
Natty:
Report link

I used PyTorch-suggested pip3 instead of conda and had no trouble on a Windows 11 machine.

First of all, even though conda is a package manager, when you activate an environment and conda install python, it would install pip as well. So, after creating and activating an environment, you would go to https://pytorch.org/get-started/locally/, do your selection, and copy the command recommended there. Lastly, while still in a conda-activated environment, paste and issue the recommended command, which uses pip3 instead of conda.

I tested the above in a PowerShell terminal and in a terminal in VS code.

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

79528747

Date: 2025-03-23 10:01:32
Score: 9.5 🚩
Natty: 5.5
Report link

did you manage to resolve this issue back then? Im having exactly the same problem. The quality that I get with WIA scan corresponds to a quality that I get when selecting "scan document" in a scanning app... as opposed to a "scan photo" preset. And it looks as if some brightness or gamma has been preapplied on the image.

Reasons:
  • RegEx Blacklisted phrase (3): did you manage to resolve this
  • RegEx Blacklisted phrase (1): solve this issue back then?
  • No code block (0.5):
  • Me too answer (2.5): having exactly the same problem
  • Contains question mark (0.5):
  • Single line (0.5):
  • Starts with a question (0.5): did you
  • Low reputation (1):
Posted by: Michael

79528746

Date: 2025-03-23 10:01:32
Score: 1.5
Natty:
Report link

The easiest way I found is to just uninstall the Jetbrains AI plugin. To do so:

  1. Open "plugins" (by shift + shift, then search for "plugins")
  2. Search for "JetBrains AI Assistant", then choose "uninstall"
  3. Restart your IDE, and you're good to go :)
Reasons:
  • Low length (0.5):
  • No code block (0.5):
  • Low reputation (0.5):
Posted by: Olivér Raisz

79528742

Date: 2025-03-23 09:59:32
Score: 2.5
Natty:
Report link

Removing folder C:\Users\[user]\.gradle\caches\8.9\transforms worked for me.

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

79528731

Date: 2025-03-23 09:49:30
Score: 0.5
Natty:
Report link

Import plugin like this:

@plugin "daisyui" {
    themes: false;
}
@plugin "daisyui/theme" {
    name: "light";
    default: true; /* here */
    prefersdark: false;
    color-scheme: light;
    --color-error: red;
}
Reasons:
  • Low length (0.5):
  • Has code block (-0.5):
  • Low reputation (0.5):
Posted by: Subhan Shamsoddini

79528726

Date: 2025-03-23 09:36:28
Score: 3.5
Natty:
Report link

i have same issue. I fixed it by removing merchant-id from sdk url. I keep the payee object with merchant email.

Reasons:
  • Whitelisted phrase (-2): I fixed
  • Low length (1):
  • No code block (0.5):
  • Me too answer (2.5): i have same issue
  • Single line (0.5):
  • Low reputation (1):
Posted by: Bxmax

79528718

Date: 2025-03-23 09:28:26
Score: 1.5
Natty:
Report link
import { OrderList } from 'primereact/orderlist';
auto="false"
showUploadButton="false"
Reasons:
  • Low length (1.5):
  • Has code block (-0.5):
  • Low reputation (0.5):
Posted by: SIAMWEBSITE

79528711

Date: 2025-03-23 09:23:25
Score: 3
Natty:
Report link

Solution 1st:enter image description here

Go to your project target -> Click on Build Phases -> Under Build Phases Open Compile Bundle Assets -> Check ( For install builds only ) in Run script.

Solution 2nd:

enter image description here

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

79528706

Date: 2025-03-23 09:21:25
Score: 1
Natty:
Report link

Based on the version of Angular Material Slider you are using the invert can be used. More details under Angular Material 15: Vertical/inverted slider

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

79528702

Date: 2025-03-23 09:19:24
Score: 4.5
Natty:
Report link

good day everyone! I am so proud and happy to be out here sharing Dr. OGBO work. My ex Husband is really back to me on his knees presenting a ruby rose to beg me to take him back and he was feeling regretful and sorry for leaving me and for causing me pains after the divorce which occurred last year. And this whole miracle happened within 48 hours of Contacting the Great Love Psychic. I am the happiest woman today in this whole wide world. Dr. OGBO you really did it , Yes It's a miracle and everlasting pleasure and cheerfulness for me and my family today. I am so happy now and I don't know how much to convey my thankfulness and appreciation to you sir. To the whole world, contact him if you need urgent help to get your Ex back or if you wanna fix your broken relationship. Dr. OGBO spells are guaranteed and effective. WhatsApp number: +2349057657558

Reasons:
  • Blacklisted phrase (1): good day
  • RegEx Blacklisted phrase (2): urgent
  • Long answer (-0.5):
  • No code block (0.5):
  • Single line (0.5):
  • Low reputation (1):
Posted by: Helen Queen

79528694

Date: 2025-03-23 09:10:22
Score: 2
Natty:
Report link

Go to window->Rendering ->rendering pipe line converter

On the top click "built into URP "then check mark the option material upgrade click "initialize and convert" you will get all colors back.

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

79528692

Date: 2025-03-23 09:08:22
Score: 1
Natty:
Report link

Your issue occurs because get_highest_resolution() only downloads progressive streams, which contain both video and audio but are limited in resolution. The highest-quality videos on YouTube are available only as separate video and audio streams (adaptive streaming).

To get the best quality, you need to download the video and audio separately and merge them using ffmpeg. Here’s the fixed version of your code:

from pytubefix import YouTube
import subprocess

video_url = "https://youtu.be/NI9LXzo0UY0?si=_Jy_CzN-QwI4SOkC"

def Download(link):
    youtube_object = YouTube(link)

    # Get highest quality video and audio separately
    video_stream = youtube_object.streams.filter(adaptive=True, file_extension="mp4", only_video=True).order_by("resolution").desc().first()
    audio_stream = youtube_object.streams.filter(adaptive=True, file_extension="mp4", only_audio=True).order_by("abr").desc().first()

    if not video_stream or not audio_stream:
        print("No suitable streams found.")
        return

    # Define output filenames
    video_file = "video_temp.mp4"
    audio_file = "audio_temp.mp4"
    output_file = "final_video.mp4"

    # Download video and audio separately
    video_stream.download(filename=video_file)
    audio_stream.download(filename=audio_file)

    # Merge using ffmpeg
    ffmpeg_command = ["ffmpeg", "-y", "-i", video_file, "-i", audio_file, "-c", "copy", output_file]
    subprocess.run(ffmpeg_command, stdout=subprocess.DEVNULL, stderr=subprocess.DEVNULL)

    print("Download completed: " + output_file)

Download(video_url)

Why This Works?

  1. Downloads the highest quality video and audio separately instead of a low-quality combined stream.

  2. Uses ffmpeg to merge them, preserving quality without re-encoding.

Requirements: Install ffmpeg

Since YouTube provides high-quality video and audio separately, ffmpeg is required to merge them. Install it via:

Now, you’ll always get the best quality available!

Reasons:
  • Blacklisted phrase (1): youtu.be
  • Long answer (-1):
  • Has code block (-0.5):
  • Contains question mark (0.5):
  • Low reputation (1):
Posted by: Vsevolod

79528684

Date: 2025-03-23 08:59:20
Score: 0.5
Natty:
Report link

Finally, this query worked to get tokens created 2800 days ago:

 const sqlStr = `SELECT *
                FROM OAuthToken
                WHERE OAuthToken.bInactive = 'F'
                AND OAuthToken.dCreated < CURRENT_DATE - 2800`;
                
              const tokens = query.runSuiteQL({
                query: sqlStr,
                }).asMappedResults();
                
Reasons:
  • Has code block (-0.5):
  • Self-answer (0.5):
  • Low reputation (0.5):
Posted by: Maira S

79528680

Date: 2025-03-23 08:53:19
Score: 2.5
Natty:
Report link

This can be due to Use Web Server Rewrites are set to yes,

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

79528671

Date: 2025-03-23 08:39:17
Score: 1
Natty:
Report link

TypeScript is not able to infer the type of the profil prop in your function, so it assumes it has the 'any' type. You should either define an interface or type for the profil prop.

type Profil = {
  name: string;
};

interface Profil {
  name: string;
}
Reasons:
  • Low length (0.5):
  • Has code block (-0.5):
  • Low reputation (1):
Posted by: Shub4am

79528662

Date: 2025-03-23 08:35:16
Score: 1
Natty:
Report link

I debugged by scaling down the pods to 1 and replacing Task.Run with await, but the issue persisted. After an hour of troubleshooting, we found the real culprit—an active trigger on the table.

With .NET 8.0, triggers need explicit handling, or they cause silent exceptions logged only at the console, not in DB or files. This also highlighted gaps in our error logging.

So, Task.Run wasn’t the issue.

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

79528649

Date: 2025-03-23 08:24:14
Score: 2.5
Natty:
Report link

Yes i am getting same issue here on my Mac

FAILURE: Build failed with an exception.

* Where:
Settings file '/Users/murthivirajamana/Desktop/Abans/Service-App%20Revamp/android/settings.gradle' line: 20

* What went wrong:
Error resolving plugin [id: 'dev.flutter.flutter-plugin-loader', version: '1.0.0']
> A problem occurred configuring project ':gradle'.
   > Could not read workspace metadata from /Users/murthivirajamana/.gradle/caches/8.9/kotlin-dsl/accessors/9d228781591634ac2df1315f1a5a82fe/metadata.bin

* Try:
> Run with --stacktrace option to get the stack trace.
> Run with --info or --debug option to get more log output.
> Run with --scan to get full insights.
> Get more help at https://help.gradle.org.

BUILD FAILED in 420ms
Error: Gradle task assembleDebug failed with exit code 1

Exited (1).
Reasons:
  • Long answer (-0.5):
  • Has code block (-0.5):
  • Me too answer (2.5): i am getting same issue
  • Low reputation (1):
Posted by: SriVira

79528648

Date: 2025-03-23 08:22:14
Score: 1
Natty:
Report link

<table>

<tr>

\<th\>Farming Method\</th\>

\<th\>Annual Soil Loss (tons/hectare)\</th\>

\<th\>Reference\</th\>

</tr>

<tr>

\<td\>Conventional Tillage\</td\>

\<td\>20 - 30\</td\>

\<td\>\[20\]\</td\>

</tr>

<tr>

\<td\>Cover Cropping\</td\>

\<td\>5 - 10\</td\>

\<td\>\[8\]\</td\>

</tr>

<tr>

\<td\>Reduced Tillage\</td\>

\<td\>10 - 15\</td\>

\<td\>\[16\]\</td\>

</tr>

\<tr\>

\<td\>Terracing\</td\>

\<td\>2 - 5\</td\>

\<td\>\[6\]\</td\>

</tr>

<tr>

\<td\>No-Till Farming with Cover Crops\</td\>

\<td\>1 - 3\</td\>

\<td\>\[8\]\</td\>

</tr>

</table>

Reasons:
  • Long answer (-0.5):
  • Has code block (-0.5):
  • No latin characters (1):
  • Low reputation (1):
Posted by: Dj creation Sahoo

79528644

Date: 2025-03-23 08:19:13
Score: 2
Natty:
Report link

Basically 404 error indicated that requested resources is not found, please check /nuget/v3/index.json. Please check that endpoint has been setup properly and missing middleware. Please double check it on your end.

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

79528643

Date: 2025-03-23 08:19:13
Score: 5.5
Natty:
Report link

same error for me, i need same usecase

Reasons:
  • Blacklisted phrase (0.5): i need
  • RegEx Blacklisted phrase (1): same error
  • Low length (2):
  • No code block (0.5):
  • Single line (0.5):
  • Low reputation (1):
Posted by: Bxmax

79528631

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

I appreciate this is quite an old post but I stumbled across it when writing a tutorial on how to set up a python webserver on the Pi.

Another option could be to use virtual environments for your applications dependencies ie venv.

If its of any use I've put all the steps on my tutorial https://websonic.co.uk/blog/setting-up-a-python-secure-web-server-on-raspberry-pi

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

79528627

Date: 2025-03-23 08:05:10
Score: 2.5
Natty:
Report link

If any Extensions are enabled, the Webhook will enter "Standby" mode, while Active mode will be managed within Extensions. Please check the menu in the LINE Official Account: Extensions > Extensions Settings.

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

79528623

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

Try checking the locations of ninja with where from cmd.exe, if you find something other than an executeble file (like ninja.bat, ninja.py, etc.), remove their locations from Path. See https://stackoverflow.com/a/79528495/11484080 for the explanation.

Reasons:
  • Blacklisted phrase (1): stackoverflow
  • Low length (0.5):
  • Has code block (-0.5):
  • Single line (0.5):
  • Low reputation (1):
Posted by: Lycheenut

79528615

Date: 2025-03-23 07:54:08
Score: 0.5
Natty:
Report link

Finally, this query worked to get tokens created 2800 days ago:

 const sqlStr = `SELECT *
                FROM OAuthToken
                WHERE OAuthToken.bInactive = 'F'
                AND OAuthToken.dCreated < CURRENT_DATE - 2800`;
                
              const tokens = query.runSuiteQL({
                query: sqlStr,
                }).asMappedResults();
                
Reasons:
  • Has code block (-0.5):
  • Self-answer (0.5):
  • Low reputation (0.5):
Posted by: Maira S

79528614

Date: 2025-03-23 07:54:07
Score: 4.5
Natty:
Report link

I`s a matter of scope. See example from Mark Murphy

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

79528605

Date: 2025-03-23 07:46:06
Score: 2.5
Natty:
Report link

OpenCV's fisheye distortion model uses 4 distortion coefficients, so it expects D to be of size 4.

In your code D has 5 elements. Remove the trailing '0' and it should work.

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

79528597

Date: 2025-03-23 07:42:05
Score: 1.5
Natty:
Report link

2025 Update:

plugins {
    kotlin("kapt") version "2.1.20"
}
Reasons:
  • Low length (1.5):
  • Has code block (-0.5):
  • Low reputation (0.5):
Posted by: Mamedov

79528584

Date: 2025-03-23 07:23:01
Score: 1.5
Natty:
Report link

Change Flutter versions, try to downgrade.eg from 3.24 >> 3.22 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):
  • Single line (0.5):
  • Low reputation (1):
Posted by: Bob Dozzo

79528568

Date: 2025-03-23 07:01:58
Score: 2
Natty:
Report link
ksh93 -c 'A=( ${ kstat -p unix:0:system_misc:boot_time; } ) && printf "%T\n" 10#${A[1]}'
Reasons:
  • Low length (1.5):
  • Has code block (-0.5):
  • Single line (0.5):
  • Low reputation (0.5):
Posted by: jelmd

79528567

Date: 2025-03-23 07:00:58
Score: 1
Natty:
Report link

Requires -Xjvm-default=all compile option, for interoperation with Java(MapStruct).

Reasons:
  • Probably link only (1):
  • Low length (1.5):
  • Has code block (-0.5):
  • High reputation (-1):
Posted by: DEWA Kazuyuki - 出羽和之

79528565

Date: 2025-03-23 06:56:57
Score: 2.5
Natty:
Report link

Dim btn = New DataGridViewButtonColumn()

btn.FlatStyle = FlatStyle.Flat

btn.InheritedStyle.BackColor = Color.Green

btn.InheritedStyle.ForeColor = Color.White

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

79528564

Date: 2025-03-23 06:56:57
Score: 4
Natty:
Report link

this is not an answet but just a comment but the comment thing does not work. Ok i understamd .I forgot to come back here and correct my mistake same day i posted it should have been written:

(ma:ident(3),ma[1,1]:%i/2,ma[1,3]:sqrt(3)/2,ma[3,1]:sqrt(3)/2,ma[3,3]:%i/2,ma)

Then do conjugate(transpose(ma)).ma; and get unit matrix

Unfortunately is not hermetian which is what is wanted also want not in the form of cst times a unit matrix. So i did

(ma:ident(3),ma[1,1]:%i/2,ma[1,3]:sqrt(3)/2,ma[3,1]:sqrt(3)/2,ma[3,3]:%i/2,ma[1,1]:-1/2,ma[3,3]:1/2,disp(["ma init"=ma,"ma aft"=ma,"ma.ma"=ma.ma]));(ma[1,1]:-1/2,ma[3,1]:1/2,ma[1,3]:%i*ma[3,1],ma.ma )

Yea i know i have noticed that before but still guess that is one of the most stubborn and inconvenient characteristics of matrices - as far as i can tell the diagonal entries of a hermetian must be real or it's not Hermetian ? Thankyou

Reasons:
  • Blacklisted phrase (1): Thankyou
  • Long answer (-0.5):
  • No code block (0.5):
  • Ends in question mark (2):
  • Self-answer (0.5):
  • Low reputation (0.5):
Posted by: user158293

79528555

Date: 2025-03-23 06:42:55
Score: 3.5
Natty:
Report link

/storage/emulated/0/Download/user-history (2)/3932d6d0-6ea5-4482-a9a8-b35b2adc21bc/searched_queries/file1.json

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

79528554

Date: 2025-03-23 06:41:54
Score: 5.5
Natty:
Report link

This is why I tried to avoid htaccess. But I was wondering if there was a tweak I could do to make it work in functions.php

Reasons:
  • Blacklisted phrase (2): was wondering
  • Low length (1):
  • No code block (0.5):
  • Self-answer (0.5):
  • Single line (0.5):
  • Low reputation (1):
Posted by: Bjorn Joossen

79528541

Date: 2025-03-23 06:24:49
Score: 6 🚩
Natty:
Report link

I came across this video regarding Hash set

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

hope it might be helpful

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

79528535

Date: 2025-03-23 06:18:48
Score: 0.5
Natty:
Report link

[...]

You could probably get creative and try to implement the Singleton pattern or some other construct that limits the number of objects created, but doing so would mean the constructors would need to be private/hidden, which prevents extension by other classes. Use of a static field to track number of creations might prevent the error, but then you'd lose all the references without having a place to keep track of them all, and lastly, you'd never have a "perfect" composition, because one class would be missing its component.

[...]

-- Ryan J (accepted answer)

I randomly found this and just for fun I thought of the following structure to make it work:

public class A{
    private B myB; // ensure nobody can set this to an instance that does not reference back to here (or null after construction)
    String name = "A";

    public A(int num){
        this.name += num;
        this.myB = new B(num, this);
    }
    public A(int num, B lnk){
        if(lnk.getMyA() != null) throw new java.security.InvalidParameterException("B already has an A");
        this.name += num;
        this.myB = lnk;
    }

    public B getMyB(){ return this.myB; }
    public String getName(){ return this.name; }
}

and

public class B{
    private A myA; // ensure nobody can set this to an instance that does not reference back to here (or null after construction)
    String name = "B";

    public B(int num){
        this.name += num;
        this.myA = new A(num, this);
    }
    public B(int num, A lnk){
        if(lnk.getMyB() != null) throw new java.security.InvalidParameterException("A already has a B");
        this.name += num;
        this.myA = lnk;
    }

    public A getMyA(){ return this.myA; }
    public String getName(){ return this.name; }
}

and testing with

public class CycleRefTest{
    public static void main(String[] args){
        A myA = new A(1);
        B myB = new B(2);

        try{ A errA = new A(3,myB); }catch(Exception e){ System.err.println(e.getMessage()); }
        try{ B errB = new B(4,myA); }catch(Exception e){ System.err.println(e.getMessage()); }

        System.out.println(myA == myA.getMyB().getMyA());
        System.out.println(myB == myB.getMyA().getMyB());
        System.out.println(myA.getMyB() == myA.getMyB().getMyA().getMyB());
        System.out.println(myB.getMyA() == myB.getMyA().getMyB().getMyA());

        System.out.println("A = " + myA.getName());
        System.out.println("A>B = " + myA.getMyB().getName());
        System.out.println("A>B>A = " + myA.getMyB().getMyA().getName());

        System.out.println("B = " + myB.getName());
        System.out.println("B>A = " + myB.getMyA().getName());
        System.out.println("B>A>B = " + myB.getMyA().getMyB().getName());
    }
}

will output

B already has an A
A already has a B

true
true
true
true

A = A1
A>B = B1
A>B>A = A1

B = B2
B>A = A2
B>A>B = B2

Both are part of each other; the connection is made within each constructor and can't be artificially created or modified (from outside).

But I don't know what the garbage collector thinks of this. There might be some edge cases I'm not aware of since I'm new to Java.

Reasons:
  • RegEx Blacklisted phrase (1.5): I'm new
  • Long answer (-1):
  • Has code block (-0.5):
  • Low reputation (0.5):
Posted by: MAZ

79528530

Date: 2025-03-23 06:11:47
Score: 0.5
Natty:
Report link

Answered my own question: of course after trying to get it to work for an hour or two, just minutes after posting this question I got it working:

    #[test_log::test(tokio::test)]
    async fn test_dynamic_logging3() {
        debug!("This will be ignored");

        let debug_subscriber = tracing_subscriber::fmt::Subscriber
            ::builder()
            .with_max_level(tracing::Level::DEBUG)
            .with_test_writer()
            .finish();
        tracing::subscriber::with_default(debug_subscriber, || {
            debug!("This will be logged");
        });
        debug!("This will be ignored");
    }
Reasons:
  • Long answer (-0.5):
  • Has code block (-0.5):
  • Self-answer (0.5):
  • Low reputation (1):
Posted by: Niels Reijers

79528527

Date: 2025-03-23 06:08:46
Score: 0.5
Natty:
Report link

<span title="Test title" style="display: inline-block" tabindex="0">
  <button disabled>Test</button>
</span>

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

79528521

Date: 2025-03-23 06:02:45
Score: 0.5
Natty:
Report link

@Aakash - The warning shows up because the device’s kobject is being initialized twice.

The first initialization occurs on platform_device_alloc() and again with platform_device_register().

Essentially, it's trying to reinitialize an already set-up object.

Even though the warning appears, it doesn’t affect the functionality. The module loads and unloads fine since the kernel handles this extra initialization without issues.

Hope that helps clarify things!

Reasons:
  • Whitelisted phrase (-1): Hope that helps
  • Has code block (-0.5):
  • User mentioned (1): @Aakash
  • Low reputation (1):
Posted by: CoderLuii

79528518

Date: 2025-03-23 06:00:45
Score: 3
Natty:
Report link

For all people, Importance of physical and mental health are a crucial part, it promotes the quality of sleep, energy level improve in keeping a healthy weight.

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

79528517

Date: 2025-03-23 05:59:45
Score: 3
Natty:
Report link

1- First you have go to vs code SETTING

2- Then TEXT EDITOR

3-Then FILES

4- add that in place [ item downside *.css and

Value downside css]

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

79528516

Date: 2025-03-23 05:57:44
Score: 0.5
Natty:
Report link
cur.execute("SELECT * FROM channals")
rows = cur.fetchall()
con.close()
board = InlineKeyboardBuilder()
    try:
        for row in rows:
            board.add(types.InlineKeyboardButton(text=f"{row[2]}", callback_data=f"chan:{row[0]}"))
            board.add(types.InlineKeyboardButton(text="➕Добавить канал➕", callback_data="channal_plus"))
            board.add(types.InlineKeyboardButton(text="➖Удалить канал➖", callback_data="channal_minus"))
            board.add(types.InlineKeyboardButton(text="↪️В начало↩️", callback_data="ok"))
            board.adjust(*[1] * len(rows), 2, 1)

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

79528499

Date: 2025-03-23 05:31:41
Score: 1.5
Natty:
Report link

In the terminal, I entered
clear cache
This eliminated the problem, regardless of which file was open in VSCode.

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

79528497

Date: 2025-03-23 05:30:40
Score: 1
Natty:
Report link

I'm not sure if you are facing the same problem as I did, but I had this issue when I was trying to use Ulid type for IDs.

After an hour of debugging I found out that HotChocolate automatically creates lots of Id serializers, but they do not provide Ulid ID serializer.

But you can register yours:

#1 Create class

using System.Diagnostics.CodeAnalysis;

namespace SocialMediaMonitor.GraphQL.Types;

internal sealed class UlidNodeIdValueSerializer: INodeIdValueSerializer
{
    public bool IsSupported(Type type) => type == typeof(Ulid) || type == typeof(Ulid?);

    public NodeIdFormatterResult Format(Span<byte> buffer, object value, out int written)
    {
        if (value is Ulid u)
        {
            return System.Text.Encoding.UTF8.TryGetBytes(u.ToString(), buffer, out written)
                ? NodeIdFormatterResult.Success
                : NodeIdFormatterResult.BufferTooSmall;
        }

        written = 0;
        return NodeIdFormatterResult.InvalidValue;
    }

    public bool TryParse(ReadOnlySpan<byte> buffer, [NotNullWhen(true)] out object? value)
    {
        var conversion = Ulid.TryParse(buffer, out var result);
        value = result;
        return conversion;
    }
}

#2 Register it

builder.Services.AddSingleton<INodeIdValueSerializer>(sp => new UlidNodeIdValueSerializer());

Hope it will help!

Reasons:
  • Whitelisted phrase (-1): Hope it will help
  • Long answer (-1):
  • Has code block (-0.5):
  • Me too answer (2.5): facing the same problem
  • Low reputation (1):
Posted by: Kirill Makhonin

79528496

Date: 2025-03-23 05:28:40
Score: 4
Natty: 4.5
Report link

What manoj said is tried and seems to be the correct solution in my personal at home lab of various Java servers . Tried and tested. If you are still facing issue You can document the user scenario with screenshots and send to me via this platform

Warm Regards

Reasons:
  • Blacklisted phrase (1): Regards
  • Low length (0.5):
  • No code block (0.5):
  • Unregistered user (0.5):
  • Starts with a question (0.5): What
  • Low reputation (1):
Posted by: Hemant

79528494

Date: 2025-03-23 05:26:39
Score: 2.5
Natty:
Report link

For me it was that I did not add the project as maven project so it was not able to find proper folder structure even after adding the data.sql file to /resources -> click add as maven project In Intellij

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

79528492

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

Find:
<option value="([^"]+)">([^<]*)<\/option>

Replace:
$1

If you need line brakes after an option,

Replace:
$1\n

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

79528484

Date: 2025-03-23 05:13:36
Score: 1
Natty:
Report link

I myself use the solution provided by @rsenna et al, but I post this just to suggest an alternative, which people might be interested in.

This project

https://github.com/p-ranav/glob

provides a glob library. As an example, it also provides a very simple stand-alone command for globbing. Out of the box, it doesn't work like glob <pattern> but it's a very short simple C++ program that can be easily modified.

So, here I report I just modified the source code in a trivial way, compiled everything using the provided make script, and successfully obtained a command line tool that can be an alternative to the fish-shell function shown in other messages.

If I'm very much bored (which wouldn't happen in the near future), I might turn this glob command into a Homebrew package . . .

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

79528482

Date: 2025-03-23 05:12:31
Score: 9 🚩
Natty:
Report link

https://apps.apple.com/us/app/lans/id6462944161

..................................................................................

Reasons:
  • Probably link only (1):
  • Contains signature (1):
  • Low length (1.5):
  • No code block (0.5):
  • Has no white space (0.5):
  • No latin characters (3):
  • Filler text (0.5): ..................................................................................
  • Low reputation (1):
Posted by: LANS

79528481

Date: 2025-03-23 05:12:31
Score: 1.5
Natty:
Report link
  1. online dating the name the app is extra
    

header 1
header 2

cell 1xxx
cell 2xx

cell 3xxx
cell 4xxx

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

79528480

Date: 2025-03-23 05:12:30
Score: 10 🚩
Natty: 4.5
Report link

Hi Xiangjie Li

Were you able to resolve this ?

Reasons:
  • RegEx Blacklisted phrase (1.5): resolve this ?
  • RegEx Blacklisted phrase (3): Were you able
  • Low length (2):
  • No code block (0.5):
  • Ends in question mark (2):
  • Low reputation (1):
Posted by: userint

79528472

Date: 2025-03-23 05:03:28
Score: 0.5
Natty:
Report link

Turns out the problem was that I accidentally created two different Treeview widgets.

One Treeview was created and packed into the GUI (which is the one actually visible), and then a second salary_tree was defined later in the code — this second one was used for all .insert() calls.

So while the data was being inserted, it was going into a different Treeview instance that wasn’t displayed on screen.

Once I deleted the second (duplicate) salary_tree = ttk.Treeview(...) line, and made sure all insertions went into the original Treeview, the rows displayed correctly.

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

79528463

Date: 2025-03-23 04:52:26
Score: 2.5
Natty:
Report link

The error on my end was only running npm build locally, as i was using vercel - after hours trying to fix with claude - i just tried to straight run vercel --prod and it build on vercel correctly

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

79528449

Date: 2025-03-23 04:35:23
Score: 3
Natty:
Report link

3156403-Zip archive data, at least v2.0 to extract, compressed size: 9738, uncompressed size: 11491, name: secret.jpg

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

79528445

Date: 2025-03-23 04:31:23
Score: 3
Natty:
Report link

Today I made some changes and was able to fetch the data successfully.

What changes I made?

1. Add the site "https://api.openweathermap.org" in Setup > Security > Remote Site Settings.

2. Add the site in Setup > Trusted URLs and also Enable the CSP directive "connect-src (scripts)"

Reasons:
  • Low length (0.5):
  • No code block (0.5):
  • Contains question mark (0.5):
  • Self-answer (0.5):
  • Low reputation (1):
Posted by: Abhinav Kashyap

79528443

Date: 2025-03-23 04:25:21
Score: 1.5
Natty:
Report link

The solution is probably to index the messages according to the time created which you will need another field added to your Message object.

Reasons:
  • Whitelisted phrase (-1): solution is
  • Low length (1):
  • No code block (0.5):
  • Single line (0.5):
  • Low reputation (0.5):
Posted by: livenlearnaday

79528442

Date: 2025-03-23 04:25:21
Score: 3
Natty:
Report link

asdfas. asdf sad asdf sadf sdf. saf saf sdaf sadf sadfdssadfasdfsadf. af sda s f sad

asdfsadf
sdfsadfsadfs

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

79528433

Date: 2025-03-23 04:11:19
Score: 3.5
Natty:
Report link

You need to sign in on kaggle website and join the competition & accept rules

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

79528425

Date: 2025-03-23 04:03:18
Score: 1.5
Natty:
Report link

Add this css

lightning-input .slds-input-has-icon_left-right .slds-input__icon {  
    right: 12px;
    left: auto;
}
Reasons:
  • Low length (1):
  • Has code block (-0.5):
  • Low reputation (1):
Posted by: J. Macias

79528422

Date: 2025-03-23 04:02:18
Score: 2
Natty:
Report link

using pip install get-key worked for me too. Thanks for the solution. :)

Reasons:
  • Blacklisted phrase (0.5): Thanks
  • Whitelisted phrase (-1): worked for me
  • Low length (1.5):
  • Has code block (-0.5):
  • Single line (0.5):
  • Low reputation (1):
Posted by: Ahmed AL-MAMUN

79528421

Date: 2025-03-23 04:01:17
Score: 2.5
Natty:
Report link

You can't avoid including Vapor, it's a dependency of Fluent. So even if you don't add it to your package, it's coming at you anyway.

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