79568208

Date: 2025-04-11 07:14:54
Score: 1
Natty:
Report link

If you know the length of the vector, you can also use [T;N]'s TryFrom<Vec<T>> implementation.

let (name, score) = <[(String, i32); 1]>::try_from(items).unwrap();
Reasons:
  • Low length (1):
  • Has code block (-0.5):
  • Low reputation (0.5):
Posted by: Cyrill

79568198

Date: 2025-04-11 07:06:52
Score: 1
Natty:
Report link

The Problem This link:

<a href="/Home/FreeCoffee">

…generates a GET request to /Home/FreeCoffee, but your controller method only accepts POST:

[HttpPost]
[Route("Home/FreeCoffee")]

public async Task<IActionResult> FreeCoffee(...)

So when you click the "Coffee" link in your dropdown menu, it tries to access that URL with a GET request — and the server replies with 405 Method Not Allowed because no GET endpoint exists for /Home/FreeCoffee.

Option 1: Move the form to a separate view (recommended for better UX) If the "Coffee" dropdown item is meant to open a page with the form, then you should do this:

Create a GET action that renders a view with the phone number form:

[HttpGet]
public IActionResult FreeCoffee()

{
    return View();
}
Reasons:
  • Blacklisted phrase (1): This link
  • Long answer (-0.5):
  • Has code block (-0.5):
  • Low reputation (1):
Posted by: Rahul K Suthan

79568183

Date: 2025-04-11 06:57:50
Score: 2
Natty:
Report link

:has still doesn't work for me in jsdom 25.0.0 for complex selectors. Although, I tried a workaround that worked for me:

I faced issue with

.test-div:not(:has(.special-div))

and I replaced with

.test-div:not(:scope:has(.special-div))
Reasons:
  • Whitelisted phrase (-1): worked for me
  • RegEx Blacklisted phrase (2): doesn't work for me
  • Low length (0.5):
  • Has code block (-0.5):
  • Low reputation (1):
Posted by: Dimitris Misailidis

79568174

Date: 2025-04-11 06:52:49
Score: 2
Natty:
Report link

git diff file1, file2, file3 ... > temp.patch

and

git apply temp.patch

worked perfectly for me... thanks Enrico for the answer.

Reasons:
  • Blacklisted phrase (0.5): thanks
  • Low length (1):
  • Has code block (-0.5):
  • Low reputation (1):
Posted by: vishal-testcollab

79568165

Date: 2025-04-11 06:46:48
Score: 2.5
Natty:
Report link

Update 2025:

When you have the same problem like me and you are using property sources with user managed identity the config should look like that:

spring:
  cloud:
    azure:
      keyvault:
        enabled: true
        secret:
          property-source-enabled: true
          property-sources[0]:
            endpoint: <your-key-vault-uri>
            credential:
              managed-identity-enabled: true
              client-id: <your-azure-client-id>

If your're using a system managed identity you can remove the client-id.

Reasons:
  • Long answer (-0.5):
  • Has code block (-0.5):
  • Me too answer (2.5): have the same problem
  • Low reputation (1):
Posted by: Greg

79568153

Date: 2025-04-11 06:40:46
Score: 1
Natty:
Report link

Like I wrote in my Edit 2 my app.config somehow was not ok. I added the libraries manually into app.config assemblyBinding which resolved the "WARNING: unable to find dependency...". I have no clue why this was missing.

Resolving Warning 2:

WARNING: 'System.IO.Compression.dll' should be excluded because its source file....

I exclud all the dlls manually in my setup project by setting exclude=true. Maybe a filter to exclude this dlls is also an option, because sometimes the dlls get readded to my project and the warning shows up again. Excluding the dlls seems to be save, because those are part of the .NET Framework 4.8 runtime, which the target machine should already have.

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

79568145

Date: 2025-04-11 06:37:45
Score: 3
Natty:
Report link

You can do it with this regex

let str = '24?22?3'

digitsOnly = str.replace(/\D/g, '');

//digitsOnly='24223'

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

79568144

Date: 2025-04-11 06:36:45
Score: 0.5
Natty:
Report link

I don’t have one log() call in my code. I have 1000 different ones logging 1000 different things. How does what you are trying scale?

So you won’t need one function pointer, you need at least 2,000. Enjoy. Especially when the next developer runs to your boss and says “I can’t believe…”

There is a perfectly fine solution that works very well and doesnt produce any clutter in your source code. Why exactly don’t you want to use it?

Reasons:
  • No code block (0.5):
  • Ends in question mark (2):
  • High reputation (-2):
Posted by: gnasher729

79568143

Date: 2025-04-11 06:35:44
Score: 5
Natty: 4.5
Report link

this is my syntax

alter table p12 modify column Address char(15);

this doesnt give me an error but it doesnt work

when i change modify to alter it gives me an error what should i do

Reasons:
  • Blacklisted phrase (1): doesnt work
  • Blacklisted phrase (2): what should i do
  • Low length (0.5):
  • No code block (0.5):
  • Low reputation (1):
Posted by: Lavanya Mathur

79568138

Date: 2025-04-11 06:33:44
Score: 0.5
Natty:
Report link

I've been using visual studio since the early 90s and it used to be able to do this. You had to turn on the BSC option in your C++ compile and then you got a nice fast class hierarchy that looked similar to a folder hierarchy in file explorer. Quick and simple. I remember object orientated programming becoming absolutely second nature in that environment.

Then Microsoft introduced .net and C++ has felt like a second class citizen in visual studio ever since. Many times I've been deep in call hierarchies ever since and that easy OOP experience that I used to have is never quite there. I do jump between many more huge projects these days.

Like the OP, as soon as I was in an Eclipse environment, I thought - there it is! A nice class hierarchy viewer. If you have never lived with this, maybe you don't know what's missing as I suspect a lot of the replies indicate.

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

79568135

Date: 2025-04-11 06:31:43
Score: 0.5
Natty:
Report link
#include <iostream>
using namespace std;

int reduce(int& num, int& denom);
int gcd(int a, int b);

int main() {
        int m, n;
        char choice;
    do{
    cout << "Enter numerator: ";
    cin >> m;
    cout << "Enter denominator: ";
    cin >> n;

    if (reduce(m, n))
        cout << m << '/' << n << endl;
    else
        cout << "fraction error" << endl;
        
    cout << "Do you want to reduce another fraction? (y/n): ";
     cin >> choice;
        
    }while(choice == 'y' || choice == 'Y');

    return 0;
}

int reduce(int& num, int& denom)
{
    if (num <= 0 || denom <= 0) {
        return 0;
    }
    int divisor = gcd(num, denom);
    num /= divisor;
    denom /= divisor;
    return 1;
}
int gcd(int a, int b) 
{
    while (b != 0) {
        int temp = b;
        b = a % b;
        a = temp;
    }
    return a;
}
Reasons:
  • Long answer (-0.5):
  • Has code block (-0.5):
  • Unregistered user (0.5):
  • Low reputation (1):
Posted by: hussaan

79568133

Date: 2025-04-11 06:30:43
Score: 3
Natty:
Report link

If nothing described in other answers helped, create the file again and copy the previous contents into it, and then grant execution rights

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

79568130

Date: 2025-04-11 06:27:42
Score: 5
Natty: 5
Report link

I am also run into some similar issue with my maven project, but not normal Java project. Have you know why this happens?

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

79568123

Date: 2025-04-11 06:20:40
Score: 1
Natty:
Report link

Just to add an "edge" case for the comparison. In case you are converting bigint to number type you should use parseInt() or even Number(), because unary plus like +1n would throw an error:

Uncaught TypeError: Cannot convert a BigInt value to a number
Reasons:
  • Low length (0.5):
  • Has code block (-0.5):
  • Low reputation (1):
Posted by: Kit

79568120

Date: 2025-04-11 06:19:39
Score: 1.5
Natty:
Report link

I had the same problem when connected to a VPN. When I disconnect everything seems to work again. Not a solution, unfortunately, if you need to use a VPN. But can be a workaround for others who see this.

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

79568116

Date: 2025-04-11 06:17:39
Score: 3
Natty:
Report link

swiper.el.scrollTop = 0; tried with React

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

79568115

Date: 2025-04-11 06:17:39
Score: 3
Natty:
Report link

There is a pull request pending on this issue. Also, you can check out the docs to further debug the issue you are facing.

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

79568114

Date: 2025-04-11 06:17:39
Score: 0.5
Natty:
Report link
try this  tez:upi://pay?pa=&pn=&am=&cu=
pa = upiID
pn = payee name
am = amount
cu = currency 
Reasons:
  • Whitelisted phrase (-1): try this
  • Low length (1):
  • Has code block (-0.5):
  • Low reputation (1):
Posted by: akhilkp

79568103

Date: 2025-04-11 06:09:36
Score: 5.5
Natty:
Report link

don't jpa use jdbc template interally, too?

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

79568089

Date: 2025-04-11 05:57:34
Score: 1.5
Natty:
Report link

Step 1: Store a bool value using shared preferences like isDark or isLight.

Step 2: fetch the bool value from shared preferences on click of the button

Step 3: Change the theme as per the received boolean value.

Step 4: Define the light and dark theme data in MaterialApp widget.

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

79568069

Date: 2025-04-11 05:43:29
Score: 4
Natty: 3.5
Report link

yes that is very possible like I saw in the biggest food trade show website

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

79568064

Date: 2025-04-11 05:38:28
Score: 0.5
Natty:
Report link

As of 2025, GitHub's documentation no longer explicitly states the per-repository hard limit. However, it is safe to assume that the previously documented limit of 100 GB per repository still applies unless otherwise confirmed by GitHub Support. The current documentation only specifies the per-file hard limit of 100 MB, as shown in the excerpts below.

For developers interested in modern AI, interactive platforms can provide valuable insights and hands-on experience. These tools combine entertainment with AI-driven concepts, offering practical learning opportunities. Below are some notable resources:

  1. 1v1.LOL Unblocked: A fast-paced shooter game that demonstrates real-time decision-making algorithms.
    http://1v1lolunblockedonline.gitlab.io/

  2. Cookie Clicker Unblocked: An incremental game that highlights resource management and automation.
    https://cookieclicker-unblocked-online.github.io/

  3. Unblocked Games G Plus: A collection of games that serve as case studies for AI behavior in diverse scenarios.
    https://unblocked-games-g-plus.gitlab.io/

  4. Mario 64 Unblocked: A classic platformer that showcases AI pathfinding and interaction with environments.
    https://mario64unblocked.github.io/

  5. Obsidian Unblocked: A knowledge management tool that explores AI-driven organization techniques.
    https://obsidianunblocked.github.io/

  6. Retro Bowl Unblocked: A sports simulation game useful for analyzing AI in strategic planning.
    https://retrobowl-unblocked.neocities.org/

  7. Roblox Unblocked Online: A platform offering user-generated games that illustrate diverse AI implementations.
    https://robloxunblockedonline.gitlab.io/

  8. Spotify Unblocked: An application that demonstrates AI in music recommendation systems.
    https://spotifyunblocked.gitlab.io/

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

79568063

Date: 2025-04-11 05:38:28
Score: 2
Natty:
Report link

im a rookie, but I tired this and it works lol:

def swap(alist):
    first = alist[0]
    last = alist[-1]
    alist[0] = last
    alist[-1] = first
    return alist
Reasons:
  • Low length (1):
  • Has code block (-0.5):
  • Unregistered user (0.5):
  • Low reputation (1):
Posted by: hehe

79568061

Date: 2025-04-11 05:37:27
Score: 2
Natty:
Report link

I have found that if all target frameworks are conditional, the ios emulators do not show up. To remedy, I had to include ios as target framework without condition. This was on VS 17.12 and 17.13

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

79568059

Date: 2025-04-11 05:33:27
Score: 3
Natty:
Report link

Right Clicked on the stash file that you need to recover and click apply stash. after that you can delete the stash

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

79568042

Date: 2025-04-11 05:19:23
Score: 1.5
Natty:
Report link

I think by default this line navigator.mediaDevices.getUserMedia({ audio: true }) like fetches microphone audio , I do not actually know how to make it so that speakers audio is fetched , but ya the "issue" in ur code is this line .Hope it helps

Reasons:
  • Whitelisted phrase (-1): Hope it helps
  • Low length (0.5):
  • No code block (0.5):
  • Single line (0.5):
  • Low reputation (1):
Posted by: Dhanush Poduval

79568032

Date: 2025-04-11 05:08:21
Score: 3.5
Natty:
Report link

Try to divide each functionality into modules with their respective router.

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

79568023

Date: 2025-04-11 04:57:19
Score: 2
Natty:
Report link

I've discovered that the achievements are displayed in alphabetical order based on the ID (not achievement name) you entered for them.

Use your ID naming convention to introduce an order to the achievements (only affects the order they're displayed in on the Steam client).

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

79568021

Date: 2025-04-11 04:57:19
Score: 0.5
Natty:
Report link

Hello! 👋

You’ve installed Ruff and added linting settings in your settings.json, but VS Code is not recognizing them (the lines are dimmed), and Ruff is not working as expected. The settings like "python.linting.ruffEnabled" may be dimmed because.. VS Code’s Python extension doesn’t officially support Ruff as a linter, or The Ruff extension is missing, or You’re using settings not recognized by your current extension setup.


First, Install Required Extensions. Make sure you have the Ruff extension (charliermarsh.ruff or ruff-lsp) installed and enabled. Also install the Python extension (ms-python.python) if you want to use Ruff through Python’s linting system.

Second, Use Correct Settings. If you’re using the Ruff extension directly,

"editor.formatOnSave": true,
"editor.defaultFormatter": "charliermarsh.ruff",
"ruff.enable": true

If you’re using Ruff with the Python extension (only works if supported),

"python.linting.enabled": true,
"python.linting.lintOnSave": true,
"python.linting.ruffEnabled": true

Third, Check via Command Palette. Open Command Palette → “Python: Select Linter”. If Ruff is not listed, it means it’s not supported by the Python extension.

Finally, Some settings don’t apply until you reload or restart VS Code.


Some Example Codes

vscode/settings.json The settings.json file is used for project-specific settings in VS Code. You can configure Ruff as follows.

{
    // Enable automatic formatting on save
    "editor.formatOnSave": true,

    // Set Ruff as the default formatter
    "editor.defaultFormatter": "charliermarsh.ruff",

    // Python linting enabled (if supported by Python extension)
    "python.linting.enabled": true,
    "python.linting.lintOnSave": true,
    "python.linting.ruffEnabled": true,

    // Ruff extension enabled separately (if installed)
    "ruff.enable": true
}

pyproject.toml The pyproject.toml file defines Python project-specific settings, including Ruff-specific rules.

[tool.ruff]
# Set maximum line length
line-length = 88

# Rules Ruff will check (errors, warnings, etc.)
select = ["E", "F", "W", "C90"]

# Exclude specific files or folders
exclude = [
    ".git",
    "__pycache__",
    ".venv",
    "env",
    "venv"
]

# Ignore specific error codes
ignore = ["E501"] # Ignore long lines (example)

With these configurations, Ruff will automatically handle formatting and linting for your project code.


Thx, Have a good one!

Reasons:
  • Blacklisted phrase (1): Thx
  • Long answer (-1):
  • Has code block (-0.5):
  • Low reputation (1):
Posted by: Gabriel

79568004

Date: 2025-04-11 04:41:15
Score: 0.5
Natty:
Report link

The difference is:

SELECT * needs all the columns, not just the customer_id.

idx_state_point is good for filtering the rows but it does not include all columns, so MySQL has to do a "bookmark lookup" (i.e. "row lookup") to fetch the rest of the row from the actual table.

MySQL might decide it's faster to use just the state index to fetch all matching rows and then do lookups or it might use a full table scan depending on the row distribution and statistics.

The optimizer thinks idx_state_point is not covering, so it switches to the simpler index or access pattern (in this case, index on state only) which is causing a larger scan (122 rows).

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

79568003

Date: 2025-04-11 04:39:14
Score: 1.5
Natty:
Report link

The issue is with the Row ID. we just pass the GUID in row ID not in the format as you have specified.

remove the /budgetreports() from your Row ID and pass simple guid as string. (can be your compose.

Reasons:
  • Low length (0.5):
  • No code block (0.5):
  • Low reputation (0.5):
Posted by: Laviza Falak Naz

79568000

Date: 2025-04-11 04:37:14
Score: 0.5
Natty:
Report link

So we do splitting considering the fact that data is repeating in format 'UID' 'Date' 'Time' 'Name'. Every data is in sets of 4 values. Here's how you can extract the useful information and then use it for whatever use case.

Here's a simple flow

enter image description here

Here i have stored your data in a Compose for reference.

enter image description here

First, we use this expression to break down to sets of 4 values.

chunk(split(outputs('RawUserData'),' '),4)

enter image description here

Then we use the extracted information to parse into an array of object names. (this is optional. the main array can be accessed directly as well. This step just makes the values more accessible.

enter image description here

Here's the mapping of the select as per our case.

{
  "UID": "@item()?[0]",
  "Name": "@item()?[3]",
  "DateTime": "@{item()?[1]} @{item()?[2]}"
}

So as you see, the final array is a well extracted and structured data.

enter image description here

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

79567996

Date: 2025-04-11 04:34:13
Score: 3.5
Natty:
Report link

git installed tell me next step how can you check front end and use this

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

79567995

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

<?xml version="1.0" encoding="utf-8"?>

<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"

android:layout_width="match_parent"

android:layout_height="match_parent"

android:paddingLeft="16dp"

android:paddingRight="16dp"

android:orientation="vertical" \>

\<EditText

    android:layout_width="match_parent"

    android:layout_height="wrap_content"

    android:hint="@string/to" /\>

\<EditText

    android:layout_width="match_parent"

    android:layout_height="wrap_content"

    android:hint="@string/subject" /\>

\<EditText

    android:layout_width="match_parent"

    android:layout_height="0dp"

    android:layout_weight="1"

    android:gravity="top"

    android:hint="@string/message" /\>

\<Button

    android:layout_width="100dp"

    android:layout_height="wrap_content"

    android:layout_gravity="end"

    android:text="@string/send" /\>

</LinearLayout>

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

79567990

Date: 2025-04-11 04:25:11
Score: 0.5
Natty:
Report link

Hello! 😁

Your issue is that the plots are overlapping because you’re using the same figure for each iteration. To solve this problem, please follow these steps.

First, Create a New Figure. Inside your loop, call plt.figure() to create an independent canvas for each species.

plt.figure()

Second, Plot the Data. Filter the data for the specific species and draw your plot (for example, using error bars).

Third, Save the Figure. Use plt.savefig() to save the current figure to a file. It helps to include the species name in the filename for easy identification.

Finally, Close the Figure. Call plt.close() to close the current figure. This prevents subsequent plots from being drawn on top of it.

plt.close()

Example Code

import numpy as np
import pandas as pd
import seaborn as sns
import matplotlib.pyplot as plt

iris = sns.load_dataset('iris')

species_sum = iris['species'].value_counts().rename_axis('species').reset_index(name='counts')

for row in range(len(species_sum)):
    species = species_sum['species'].iloc[row]
    print(species)
    species_data = iris.loc[iris['species'] == species]

    # Create a new Figure
    plt.figure()

    xerror = [species_data['sepal_length'] * 0.3, species_data['sepal_length'] * 0.5]
    plt.errorbar(
        x=species_data['sepal_length'],
        y=species_data['petal_length'],
        xerr=xerror,
        fmt='o'
    )
    plt.xlabel('Sepal L')
    plt.ylabel('Petal L')

    # Save the figure with the species name in the filename
    plt.savefig(species + '.png')

    # Close the figure to free memory and avoid overlap with the next iteration
    plt.close()

Thx, Have a good one!

Reasons:
  • Blacklisted phrase (1): Thx
  • Long answer (-1):
  • Has code block (-0.5):
  • Low reputation (1):
Posted by: Gabriel

79567982

Date: 2025-04-11 04:20:10
Score: 0.5
Natty:
Report link

I was able to calculate the same hash using the rawBody using Nethereum's Sha3Keccack. The Sha3 function used by web3 (and thus Moralis) is Keccack256, not the same SHA3 used by .NET's System.Security.Cryptography. The implementation looks like:

var hashString = Sha3Keccack.Current.CalculateHash(rawBody + "<streams secret>");
Reasons:
  • Has code block (-0.5):
  • Self-answer (0.5):
  • Low reputation (0.5):
Posted by: Ethan

79567978

Date: 2025-04-11 04:14:09
Score: 3.5
Natty:
Report link

!sudo apt install msttcorefonts -qq

!rm ~/.cache/matplotlib -rf

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

79567974

Date: 2025-04-11 04:06:07
Score: 1
Natty:
Report link

Not possible right now. sorry. None of the Google Maps Platform API's are available for offline use. At most you're allowed to save a few of the data points like LatLng and Place_id, but for instance not addresses.

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

79567968

Date: 2025-04-11 03:59:06
Score: 1.5
Natty:
Report link
  1. Can you use CeleryExecutor on Kubernetes?

Yes, you can. It’s supported and works fine in k8s. You’ll just need:

But most people go with the KubernetesExecutor with KubernetesPodOperator instead, because they:

  1. Should you avoid DockerOperator in Kubernetes?

Yes, generally.

Why?

Alternatives: Use KubernetesPodOperator instead. It:

  1. Does this mean you shouldn’t use CeleryExecutor?

Not necessarily. You can continue using it, but you might consider migrating to:

It depends on your workloads. If you’re already comfortable with Celery, and need specific control over parallelism, queues, or workers—keep it.

Read more about KubernetesPodOperator.

Reasons:
  • Blacklisted phrase (0.5): Why?
  • Long answer (-1):
  • No code block (0.5):
  • Contains question mark (0.5):
  • Starts with a question (0.5): Can you use
  • Low reputation (0.5):
Posted by: enchant3dmango

79567963

Date: 2025-04-11 03:56:05
Score: 3
Natty:
Report link

The config seems fine. I've been in a stuck for a while with this setup because "Enable/Disable" control so pale colors, don't forget to turn it on in "MCP Servers" section

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

79567950

Date: 2025-04-11 03:48:02
Score: 2
Natty:
Report link

..Happy loan app CUSTOME.R. car.e. NUMBE.R -)7894720560--l · ..Happy loan app CUSTOME.R. car.e. NUMBE.R -)7894720560--l · ..Happy loan app CUSTOME.R. car.e. NUMBE.R -)7894720560--l · ..Happy loan app CUSTOME.R. car.e. NUMBE.R -)7894720560--l · ..Happy loan app CUSTOME.R. car.e. NUMBE.R -)7894720560--l · ..Happy loan app CUSTOME.R. car.e. NUMBE.R -)7894720560--l · ..Happy loan app CUSTOME.R. car.e. NUMBE.R -)7894720560--l · ..Happy loan app CUSTOME.R. car.e. NUMBE.R -)7894720560--l · ..Happy loan app CUSTOME.R. car.e. NUMBE.R -)7894720560--l · ..Happy loan app CUSTOME.R. car.e. NUMBE.R -)7894720560--l ·

Reasons:
  • Long answer (-0.5):
  • No code block (0.5):
  • Self-answer (0.5):
  • Single line (0.5):
  • Low reputation (1):
Posted by: Gunadhar Pandit

79567931

Date: 2025-04-11 03:29:58
Score: 1.5
Natty:
Report link

Shopee don't allow redirect localhost. So you need to config this redirect url in app config.
You can change this to redirectUrl="https://www.google.com/" for the test.

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

79567929

Date: 2025-04-11 03:26:57
Score: 5
Natty:
Report link

Thank you! I give it a try soon.

Reasons:
  • Blacklisted phrase (0.5): Thank you
  • Low length (2):
  • No code block (0.5):
  • Self-answer (0.5):
  • Single line (0.5):
  • Low reputation (1):
Posted by: Wayland

79567926

Date: 2025-04-11 03:22:56
Score: 2
Natty:
Report link

Update for 2025!

There's an exit button in the Chargebee portal now! Clicking it does in fact return the user to the redirect page as requested.

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

79567925

Date: 2025-04-11 03:22:56
Score: 2.5
Natty:
Report link

I'm not sure if this has been written in the doc or somewhere. Yet, I just want to share that I have just figured it out and get this worked by adding "AppDelegate.swift" file into XCode project. Not sure if it's Xcode cache or bug. I've found out this when I initiate a new RN0.78 project running on XCode.

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

79567921

Date: 2025-04-11 03:16:55
Score: 3
Natty:
Report link

<a href="#" onclick="document.body.innerHTML = '<h1>Acies loves Supriya mommy</h1>'">Click me</a>

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

79567920

Date: 2025-04-11 03:15:54
Score: 3.5
Natty:
Report link

The kirpan is a significant article of faith in Sikhism, often misunderstood. Here's how to educate someone:

_Explaining the Kirpan's Significance_

1. _Spiritual significance_: The kirpan represents a Sikh's commitment to defending their faith, standing up for justice, and protecting the weak.

2. _Symbolism_: It's a symbol of courage, self-discipline, and the struggle against evil.

3. _Not a weapon_: Emphasize that the kirpan is not meant for violence or aggression but serves as a reminder of spiritual obligations.

_Historical Context_

1. _Origins_: The kirpan was introduced by Guru Gobind Singh, the tenth Sikh Guru, as part of the Sikh identity.

2. _Role in Sikh history_: It played a significant role in Sikh history, representing resistance against oppression.

_Addressing Misconceptions_

1. _Separating fact from fiction_: Clarify that the kirpan is not used for personal defense or aggression.

2. _Respect and understanding_: Encourage respect for the kirpan as a sacred symbol.

_Promoting Understanding and Respect_

1. _Open dialogue_: Encourage open and respectful conversations about Sikhism and its practices.

2. _Education and awareness_: Share resources and information to promote a deeper understanding of Sikhism.

By sharing this information, you can help dispel misconceptions and foster greater understanding and respect for the kirpan and Sikhism.

Reasons:
  • RegEx Blacklisted phrase (3): you can help
  • Long answer (-1):
  • No code block (0.5):
  • Low reputation (1):
Posted by: M Rafeeq norani

79567917

Date: 2025-04-11 03:11:53
Score: 2.5
Natty:
Report link

Use service message!

https://www.jetbrains.com/help/teamcity/service-messages.html#Canceling+Build+via+Service+Message

No need to fail a build (causing confusion) or add a condition to dozens of build steps.

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

79567914

Date: 2025-04-11 03:09:53
Score: 2
Natty:
Report link

on vscode remote webbrowser, if you have opened a huge file in a folder like http://xxx:xxxxx/?folder=/yourfolder, next time you open this folder, it will remember opening this huge file, then crash again. the best way you can do is opening vscode with another folder like http://xxx:xxxxx/?folder=/anotherfolder, rename that huge file, then you can open your folder with http://xxx:xxxxx/?folder=/yourfolder, since it can't find that file, it will not open huge file. after everything is ok, rename that huge file back.

Reasons:
  • Long answer (-0.5):
  • No code block (0.5):
  • Contains question mark (0.5):
  • Single line (0.5):
  • Low reputation (1):
Posted by: annsar

79567913

Date: 2025-04-11 03:09:53
Score: 1
Natty:
Report link

You could also use a `delayed` job. See: Delayed Jobs

For e.g., your verify job could become:

verify:
  stage: verify
  script: echo 'Verifying ...'
  when: delayed
  start_in: 5 minutes
Reasons:
  • Low length (1):
  • Has code block (-0.5):
  • Low reputation (0.5):
Posted by: Rajiv

79567911

Date: 2025-04-11 03:06:52
Score: 2.5
Natty:
Report link

Try Emacs and https://ess.r-project.org/, which is in every way better than Rstudio in my opinion. For tons of themes, you can refer to https://emacsthemes.com/ and https://melpa.org/#/?q=theme&sort=downloads&asc=false. More importantly, the ESS package in Emacs allow you to edit R code in an extremely smooth way, once you get used to the keybindings.

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

79567903

Date: 2025-04-11 02:59:50
Score: 1
Natty:
Report link

If your Laravel version 10+ use

php artisan vendor:publish --tag=assets

in your public directory you'll see vendor folder with ass assets from packages

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

79567882

Date: 2025-04-11 02:33:45
Score: 1
Natty:
Report link
    await _sendAlbum(client, targetChannel, {
      file: [file1, file2, ...],
      caption: combinedCaption,
      forceDocument: false,
      workers: 1,
    });

Upload each media as a CustomFile, collect them into an array, then use _sendAlbum to send them as a single album with a shared caption.

Reasons:
  • Low length (0.5):
  • Has code block (-0.5):
  • Low reputation (1):
Posted by: Tiến Đạt Hoàng

79567880

Date: 2025-04-11 02:30:44
Score: 0.5
Natty:
Report link

Just use flex-wrap: wrap on the flex container to force the content to a new line, and make the title and the button fixed width to not leave any space for the content if the title is present.

https://codepen.io/Lubomyr-Pryt/pen/EaxBGNy

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

79567878

Date: 2025-04-11 02:30:44
Score: 3
Natty:
Report link

the answer is already write in github gist ,because stack overflow have not supper chinese,http address is :https://gist.github.com/Aurorxa/c975b40b3bbf98fedddefc6fdbadeec8

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

79567877

Date: 2025-04-11 02:29:43
Score: 4.5
Natty: 4.5
Report link

Did you guys end up finding a solution to this? I am facing the same exact error.

Reasons:
  • Low length (1.5):
  • No code block (0.5):
  • Contains question mark (0.5):
  • Single line (0.5):
  • Starts with a question (0.5): Did you
  • Low reputation (1):
Posted by: leapingllama

79567863

Date: 2025-04-11 02:09:39
Score: 0.5
Natty:
Report link

In any screen, wrap popBackStack() like this:

if (navController.backQueue.size > 1) {
    navController.popBackStack()
}

or

if (navController.previousBackStackEntry != null) {
    navController.popBackStack()
}
Reasons:
  • Low length (0.5):
  • Has code block (-0.5):
  • Low reputation (0.5):
Posted by: Elie Danhash

79567854

Date: 2025-04-11 01:58:37
Score: 0.5
Natty:
Report link

Here's what you need.

1.Purchase a domain name: theres a services like Namecheap, GoDaddy, or Google Domains

  1. Get Web Hosting: you'll need to move from your local XAMPP to a production hosting service.

  2. Export your Database use phpMyAdmin in XAMPP to export your MySQL databases.

  3. Transfer your files upload your website files to the hosting server using FTP or hosting control panel

  4. Configure the server: set up APACHE, PHP, and mySQL on your production server similar to your XAMPP configuration

6.Test Throughly

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

79567852

Date: 2025-04-11 01:57:36
Score: 3
Natty:
Report link

There may be a bug with Chrome.

Try disabling and enabling this:
Settings > Autofill > Password Manager > Auto sign-in

Have you tried restarting Chrome? How about a different profile?

Reasons:
  • Whitelisted phrase (-1): Have you tried
  • Low length (0.5):
  • No code block (0.5):
  • Ends in question mark (2):
  • Low reputation (1):
Posted by: user7215

79567848

Date: 2025-04-11 01:52:35
Score: 1.5
Natty:
Report link

Open an issue at https://github.com/eclipse-servertools/servertools/issues . I think I see what the problem is.

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

79567847

Date: 2025-04-11 01:50:35
Score: 1
Natty:
Report link

Yes. If you want to just test the created web pages you can host them on Git-hub or 000webhostapp.com, otherwise you can use Lonos web hosting, Hostinger web hosting, those are allow you to make your website or web application publicly accessible on the internet.

Reasons:
  • Whitelisted phrase (-1.5): you can use
  • Low length (0.5):
  • No code block (0.5):
  • Single line (0.5):
  • Low reputation (1):
Posted by: Vidzshan

79567842

Date: 2025-04-11 01:44:33
Score: 1.5
Natty:
Report link

There are a few approaches that might work, and per the comments: the best approach would be buying a system from someone else.

Google "machine vision rice sorter" and related terms and you'll find some systems that strike me as fairly inexpensive.

Canny, Sobel, Laplacian, etc and also

Those kernel-based techniques will generate edge data, but don't segment. That is, they don't separate foreground (rice) from background (everything else).

morphological operations like erosion, dilation, opening and closing.

Those algorithms can help if the overlap between grains were always much smaller than the grains themselves.

There are a bunch of other techniques that will kinda work much of the time, but presumably you want an approach that's robust and will work nearly all of the time. Pick a specific value for the acceptable percentage of recognition failures over a large number of cases.

What failure rate is acceptable? 5%? 1%? 0.1%? If you won't buy an existing system, you might still call the equipment manufacturer and ask for performance specs. Assume you won't achieve specs as good.

The rice grains aren't occupying the full width of the image. It'd help if they occupied the middle 80%, with a bit of allowance for flyaway grains. It looks to me like you might even want the long axis of the image to be vertical.

Robust pattern matching

Different vision libraries give different names to an algorithmic approach that finds objects based on edge content. This typically works well only for rigid objects of fixed outline, but with "wide open" parameter settings it might work for rice grains.

HALCON software from mvTec has this. Here's a video on the subject (which I've only skimmed, since I already know about the feature):

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

A few other companies offer similar algorithms in commercial image processing software. It's a royal pain to implement--we're talking developer-years of effort, back in the day--although there are some simpler, related techniques like "chamfer-based matching" (or some other such term with "chamfer" in it).

I'd stress: don't try this until you've work in vision at least 2+ years, and have implemented a few other algorithms from scratch.

The wonders of curve completion

OpenCV has a lot of useful image processing functions, but it doesn't offer curve fitting and curve completion, at least not that I recall, and not in the sense that you may need.

Before I go on, I want to make clear that implementing curve fitting for small, irregularly shaped objects would increase the complexity of your code enormously. There'd be more failure modes. You might make a better mechanical sorter from raw materials in less time than it would take to code up a solution based on curve completion.

If you can make a lot of assumptions about the consistency of objects in view, then when you have two or more grains of rice that are overlapping, there's a (not great) chance you could distinguish the grains of rice by fitting curves where there are overlapping grains. (You'd have to first determine which grains are overlapping. That'd take some effort.)

The best, fastest method I know about relevant to fitting curves to natural shapes is the Euler spiral a.k.a. aesthetic curve a.k.a. clothoid. And for that, and as my final comment, I'll direct you to some old replies of mine.

How to draw clothoids graphically in Qt?

Only semi-related:
How to smooth hand drawn lines?

Reasons:
  • Blacklisted phrase (1): youtube.com
  • Whitelisted phrase (-1): try this
  • RegEx Blacklisted phrase (1): I want
  • Long answer (-1):
  • No code block (0.5):
  • Ends in question mark (2):
  • High reputation (-1):
Posted by: Rethunk

79567840

Date: 2025-04-11 01:39:32
Score: 2.5
Natty:
Report link

In case anyone else comes from a search and shares my issue:
Even without anything running, having Visual Studio open gave this error. Closing it fixed it.

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

79567834

Date: 2025-04-11 01:34:31
Score: 1.5
Natty:
Report link

I'm stuck with an ancient version of gdb

No, you are not. You can build a newer version; it's (usually) not hard.

Anybody know of another method of disabling these messages?

If you really can't use newer version for some reason, you should be able to rebuild the older version and simply comment out these messages.

Reasons:
  • Blacklisted phrase (1): Anybody know
  • RegEx Blacklisted phrase (1.5): I'm stuck
  • No code block (0.5):
  • Contains question mark (0.5):
  • High reputation (-2):
Posted by: Employed Russian

79567833

Date: 2025-04-11 01:30:30
Score: 2
Natty:
Report link

This question was asked in 2024, but as of April 2025, Apire .NET 9.2 has been release and can now publish to a docker compose. the following link explains it more.

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

79567831

Date: 2025-04-11 01:28:29
Score: 2.5
Natty:
Report link

I did a brief search on libraries that could be useful to solve your problem, so I found a library called ping discover network plus, i haven't tested the library, but from what I understood from your question, it might be useful.

Reasons:
  • Low length (0.5):
  • No code block (0.5):
  • Single line (0.5):
  • Low reputation (1):
Posted by: Vinícius Bruno

79567830

Date: 2025-04-11 01:28:29
Score: 1
Natty:
Report link

$('body').on('dblclick', '.value', function(){
  $(this).attr('contenteditable', true);
  //*** this is where I need some help   
  //$(this).focus().select();
  var str = this.textContent;`enter code here`
  console.debug(str);
  console.debug(str.length);
  const match = str.match(/^.*\d/);
  console.debug(match);
  console.debug(match[0].length);
  const range = document.createRange();
  range.setStart(this.firstChild, 0);  // Start index
  range.setEnd(this.firstChild, match[0].length);   // End index
  const selection = window.getSelection();
  selection.removeAllRanges();
  selection.addRange(range);
  //How to only select the numbers, not include the "mm"?
  //or how to select (length - 2) characters?
});
$(document).mouseup(function(e){
  var element = $('body').find('.value[contenteditable="true"]');
  if (!element.is(e.target) && element.has(e.target).length === 0){
    $('.value').attr('contenteditable', false);
  }
});
$(document).keypress(function(e) {
  if($('.value[contenteditable="true"]')){
    if(e.which == 13){ //enter
      $('.value').attr('contenteditable', false);
    }
  }
});
.list{
  display: flex;
  flex-direction: column;
  gap: 10px;
  .item{
    display: flex;
    .id{
      width: 20px;
      font-weight: 600;
    }
    &:has(.value[contenteditable="true"]){
      .id{
        color: red;
      }
    }
  }
}
<script src="https://cdnjs.cloudflare.com/ajax/libs/jquery/3.7.1/jquery.min.js"></script>
<div class="list">
  <div class="item">
    <span class="id">1</span>
    <span class="value">100mm</span>
  </div>
  <div class="item">
    <span class="id">2</span>
    <span class="value">2,500mm</span>
  </div>
  <div class="item">
    <span class="id">3</span>
    <span class="value">340mm</span>
  </div>
</div>

Reasons:
  • Blacklisted phrase (0.5): I need
  • Blacklisted phrase (1): I need some help
  • Long answer (-1):
  • Has code block (-0.5):
  • Low reputation (1):
Posted by: Dave Wesson

79567821

Date: 2025-04-11 01:18:26
Score: 1
Natty:
Report link

Use readability-identifier-naming.PrivateMethodCase

Reasons:
  • Low length (1.5):
  • Has code block (-0.5):
  • Has no white space (0.5):
  • Single line (0.5):
  • High reputation (-1):
Posted by: Jeff Garrett

79567815

Date: 2025-04-11 01:09:25
Score: 2
Natty:
Report link

https://coderanch.com/t/586911/ide/Variable-references-existent-resource-workspace

I was getting similar issue for Maven project. Solution given on above site helped me.

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

79567811

Date: 2025-04-11 01:02:23
Score: 0.5
Natty:
Report link

From Xcode 16 onwards Provisioning Profiles have moved to new location which is
~/Library/Developer/Xcode/UserData/Provisioning\ Profiles

The old location was ~/Library/MobileDevice/Provisioning\ Profiles

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

79567801

Date: 2025-04-11 00:50:20
Score: 2
Natty:
Report link

import React, { useState } from 'react'; import { Link } from 'react-router-dom';

export default function LoginPage() { const [showPassword, setShowPassword] = useState(false);

return ( تسجيل الدخول البريد الإلكتروني كلمة المرور <input type={showPassword ? "text" : "password"} className="w-full px-4 py-2 border rounded-lg text-right" placeholder="********" required /> <button type="button" onClick={() => setShowPassword(!showPassword)} className="absolute left-3 top-2 text-sm text-purple-600 hover:underline" > {showPassword ? "إخفاء" : "إظهار"} دخول ليس لديك حساب؟ أنشئ حساب

); }

Reasons:
  • Long answer (-0.5):
  • No code block (0.5):
  • Contains question mark (0.5):
  • Filler text (0.5): ********
  • Low reputation (1):
Posted by: Mohamed hasan4420

79567792

Date: 2025-04-11 00:40:18
Score: 0.5
Natty:
Report link

I was able to get this working by following the "MyActivity" example given by @alex-aelenei, however, I also had to add a plugin to correctly update the AndroidManifest.xml file, otherwise I received the following error when starting the activity:

expo android.content.ActivityNotFoundException: Unable to find explicit activity class {example.com/expo.modules.mymodule.MyActivity}; have you declared this activity in your AndroidManifest.xml, or does your intent not match its declared <intent-filter>?

I added a file ./plugin/android/withAndroidCustomActivity.js that contains the following (taken from https://forums.expo.dev/t/how-to-create-a-plugin-that-writes-a-new-activity-in-manifes-xml/68257/6 and modified):

const { withAndroidManifest } = require("@expo/config-plugins");

const customActivity = {
  $: {
    "android:name": "expo.modules.mymodule.MyActivity",
  },
};

function addCustomActivityToMainApplication(androidManifest, attributes) {
  const { manifest } = androidManifest;

  // Check if there are any application tags
  if (!Array.isArray(manifest.application)) {
    console.warn(
      "withAndroidMainActivityAttributes: No application array in manifest?",
    );
    return androidManifest;
  }

  // Find the "application" called ".MainApplication"
  const application = manifest.application.find(
    (item) => item.$["android:name"] === ".MainApplication",
  );
  if (!application) {
    console.warn("addCustomActivityToMainApplication: No .MainApplication?");
    return androidManifest;
  }

  // Check if there are any activity tags
  const activities = application.activity;
  if (!Array.isArray(activities)) {
    console.warn(
      "addCustomActivityToMainApplication: No activity array in .MainApplication?",
    );
    return androidManifest;
  }

  // If we don't find the custom activity, add it
  // If we do find it, assume it's correct
  if (
    !activities.find(
      (item) => item.$["android:name"] === "expo.modules.mymodule.MyActivity",
    )
  ) {
    activities.push(customActivity);
  }

  return androidManifest;
}

module.exports = function withAndroidCustomActivity(config, attributes) {
  return withAndroidManifest(config, (config) => {
    config.modResults = addCustomActivityToMainApplication(
      config.modResults,
      attributes,
    );
    return config;
  });
};

and updating my app.config.js to include:

  plugins: [<other plugins (e.g. "expo-router")>, "./plugin/android/withAndroidCustomActivity.js"],

I also had to run npx expo prebuild -p android to correctly regenerate the AndroidManifest file

Reasons:
  • Long answer (-1):
  • Has code block (-0.5):
  • User mentioned (1): @alex-aelenei
  • Low reputation (1):
Posted by: nickreynolds

79567789

Date: 2025-04-11 00:39:18
Score: 3
Natty:
Report link

Running into similar issue when LLAMA 3.3 keeps on calling tools for no reason for simple questions such as Hello How are you? and this happens rather inconsistently. Would be interested to know if someone finds a solution to this

Reasons:
  • Low length (0.5):
  • No code block (0.5):
  • Contains question mark (0.5):
  • Single line (0.5):
  • Low reputation (1):
Posted by: Harshit Nainwani

79567780

Date: 2025-04-11 00:31:16
Score: 0.5
Natty:
Report link

The answer was very simple, I had a typo:

<plugin>
        <inherited>true</inherited>
        <groupId>org.apache.maven.plugins</groupId>
        <artifactId>maven-jar-plugin</artifactId>
        <version>3.1.1</version>
        <configuration>
          <archive>
            <manifest>
              <addDefaultImplementationEntries>true</addDefaultImplementationEntries>
              <addDefaultSpecificationEntries>true</addDefaultSpecificationEntries>
<!--              <builtBy>TESTING</builtBy>-->
<!--              <addBuildEnvironmentEntries>false</addBuildEnvironmentEntries>-->
            </manifest>
            <manifestEntries>
              <Implementation-Version>${project.version}</Implementation-Version>
              <Implementation-Build>${project.version}.${git.commit.id.abbrev}</Implementation-Build>
              <Built-By>TESTING</Built-By>
            </manifestEntries>
          </archive>
          <resources>
            <entityReference>
              <directory>src/main/java</directory>
              <includes>
                <include>**/*properties</include>
              </includes>
            </entityReference>
          </resources>
        </configuration>
      </plugin>


Looking at what I had above, I apparently had tried Built-By as it was commented out.  However, the above code now works.  I'm not sure when it started working on how the above example did not work.
Reasons:
  • Blacklisted phrase (1): did not work
  • Long answer (-1):
  • Has code block (-0.5):
  • Self-answer (0.5):
  • Low reputation (0.5):
Posted by: John Doe

79567778

Date: 2025-04-11 00:30:15
Score: 2.5
Natty:
Report link

In mine, the database user name was wrong in the Connection String, in the appsettings.json file it is in the path C:\inetpub\wwwroot\app_pasta

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

79567766

Date: 2025-04-11 00:18:12
Score: 0.5
Natty:
Report link

There are only a few things you can do in this situation:

  1. Reset the BIOS: Some laptops (keep in mind, not all laptops) let you reset the BIOS settings, which may include the password. Usually this means removing the CMOS battery from for a few minutes (keep in mind this also completely clears your RAM and Flash Memory).

  2. Using a Master Password: Acer most likely has a master password to reset the BIOS password. You'll probably need Acer support to give it to you and you'll need a laptop serial number.

  3. BIOS Recovery Tools: My only advice on this is to proceed with caution, as most of the tools do more harm than good.

  4. Professional Help: I have a festering hate of manufacture "technicians", so if you go this route prepare for your device to be wiped without notice.

  5. DON'T Reimage the Laptop: You mentioned being willing to do this, but this will not reset the BIOS password. Instead, you will just cause unnecessary data loss.

Another method I don't recommend (but that could work) is brute-forcing the password with a flipper zero or something like that. The reason I don't recommend this is because it could fry your motherboard.

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

79567763

Date: 2025-04-11 00:14:11
Score: 0.5
Natty:
Report link

You can do it with join


numbers = [int(i) for i in input().split()] #Takes Input

new_list = [num for num in numbers if num >= 0] #Removes Negatives

inputs = sorted(new_list) #Sorts Input

print(" ".join(str(num) for num in inputs))

input:
10 4 39 12 2

output:
2 4 10 12 39

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

79567761

Date: 2025-04-11 00:14:10
Score: 10.5 🚩
Natty:
Report link

Best regards to all here!

I get this message (In Spanish):

C:\PathfrmForm.scx denied access to the file.

I am using Visual FOxPro 9.0 with Service Pack 2 for the Administrative Software named profit Plus 2K8 here in Venezuela which has its database in SQL Server 2014.

This is the code that I am using in a .prg that executes when the Document like an INVOICE has been ALREADY saved:

LOCAL pforma

pforma = _screen.ActiveForm

SET DEFAULT TO "E:\Program Files (x86)\Softech Consultores\Profit Plus Administrativo\reporadi"     &&\"

DO FORM "E:\Program Files (x86)\Softech Consultores\Profit Plus Administrativo\reporadi\frmNotaRecepcion.scx"

MESSAGEBOX(MESSAGE())

********************************************************************************************* THIS COMES FROM THE FORM

** LOAD 
SET PROCEDURE TO SET DEFAULT TO "E:\Program Files (x86)\Softech Consultores\Profit Plus Administrativo\reporadi" ADDITIVE       


SET PROCEDURE TO E:\Program Files (x86)\Softech Consultores\Profit Plus Administrativo\reporadi\frmNotaRecepcion.prg ADDITIVE       

*** SET PROCEDURE TO prgs\cupertino_functions.prg ADDITIVE 
&&\"prgs\cupertino_functions.prg ADDITIVE 

MESSAGEBOX("Load!" + MESSAGE())
******************************************************************************************

LOCAL lcResult as Integer
lcResult = cupertinoYesNo("Atencion","Mensaje estilo cupertino Info","Si","No")
IF lcResult = 1
    ***ejecutar metodos
    cupertinoInfo("Atencion","Desea Crear una Nota de Recepción? 1: Si","Ok")
ELSE
    cupertinoInfo("Atencion","Cerrar 2: No","Ok")
ENDIF 
******************************************************************************************
MESSAGEBOX("Activate!" + MESSAGE())

Can anybody helpme to get a simple Messagebox with 2 options to execute. If the user clicks Yes then I must send 3 parameters to a Store Procedure that is already tested in SQL Server 2014 or even Superior?

Thank you in advance!!!
ENG. Franklin Gutiérrez.

PD: I can send any capture of the app of specific files that ANYBODY needs and asks me! Or even give him remote access to my Laptop to see how to solvie it or show him/her how it works the app and how do I work with it to solve these kind of requiriments.  I can send a TIP!
Reasons:
  • Blacklisted phrase (0.5): Thank you
  • Blacklisted phrase (0.5): Best regards
  • Blacklisted phrase (1): regards
  • Blacklisted phrase (1): how do I
  • Blacklisted phrase (2): Crear
  • RegEx Blacklisted phrase (3): Thank you in advance
  • RegEx Blacklisted phrase (3): Can anybody help
  • Long answer (-1):
  • Has code block (-0.5):
  • Low reputation (1):
Posted by: Franklin Gutiérrez

79567740

Date: 2025-04-10 23:46:04
Score: 0.5
Natty:
Report link

If you only want to obtain which page the webview has navigated to, you can add the following WKNavigationDelegate method to obtain it:


    func webView(_ webView: WKWebView, didFinish navigation: WKNavigation!) {
        print("the web view has navigated to: \(webView.url?.absoluteString ?? "")")
    }
Reasons:
  • Low length (0.5):
  • Has code block (-0.5):
  • Low reputation (0.5):
Posted by: MorganChen

79567737

Date: 2025-04-10 23:42:03
Score: 2
Natty:
Report link

Sounds like you may have an instance of a daily flight that crosses the date line.
i.e same flight number but different physical trip. the arrival you picked up was the flight from yesterdays departure.

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

79567726

Date: 2025-04-10 23:38:02
Score: 2
Natty:
Report link

I know this may be an old question, but I encountered same issue and solved it by creating a content snippet with link to the manifest file in it.

  1. Go to Power Pages Management
  2. Create Content Snippet. (I would say the only dynamic values here are the website, display name, and HTML content itself; the rest of them are fixed value: Name=Head/Bottom, Type=HTML, Content Snippet Language=English; so that power pages can detect and generate the snippet for head tag of your site).

Hope this is useful for anyone who still has the same issue.

Regards,

Jonas

https://community.powerplatform.com/forums/thread/details/?threadid=7b6c4278-4444-47da-acbc-d3cdd7c7f3c5

Reasons:
  • Blacklisted phrase (1): Regards
  • Long answer (-0.5):
  • No code block (0.5):
  • Low reputation (1):
Posted by: Jonas Bunawan

79567723

Date: 2025-04-10 23:36:00
Score: 7 🚩
Natty:
Report link

я новичок во объясните пожалуйста как убрать флаг

Reasons:
  • Low length (1.5):
  • No code block (0.5):
  • Single line (0.5):
  • No latin characters (3.5):
  • Low reputation (1):
Posted by: Alex Zherebtsov

79567720

Date: 2025-04-10 23:30:58
Score: 12 🚩
Natty: 6
Report link

i have the same issue. Do you have a solution for this?

Reasons:
  • Blacklisted phrase (1): i have the same issue
  • RegEx Blacklisted phrase (2.5): Do you have a
  • Low length (1.5):
  • No code block (0.5):
  • Me too answer (2.5): i have the same issue
  • Ends in question mark (2):
  • Unregistered user (0.5):
  • Single line (0.5):
  • Low reputation (1):
Posted by: Juqsi

79567718

Date: 2025-04-10 23:29:58
Score: 3.5
Natty:
Report link

I'm looking for this as well. This was an easy thing to see in (on-site) AD, I can't believe that this has been lost in Azure/Identity.

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

79567714

Date: 2025-04-10 23:26:56
Score: 2.5
Natty:
Report link

In Insiders edition it is now in a drop down next to choosing the LLM.

enter image description here

This was really bugging me and hardly did any coding for the last week due to the "pain" of copy paste.

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

79567708

Date: 2025-04-10 23:18:54
Score: 1
Natty:
Report link

DBML (Database Markup Language) is an open-source DSL language designed to define and document database schemas and structures. It is designed to be simple, consistent and highly-readable.

DBML was born out from dbdiagram.io, a simple database diagram visualizer. At the time (Aug 2018) we were looking for a simple tool to design database structure but couldn't come up with one we liked. So we decided to build one.

Reasons:
  • No code block (0.5):
  • Low reputation (0.5):
Posted by: Moisés Briseño Estrello

79567704

Date: 2025-04-10 23:16:54
Score: 0.5
Natty:
Report link
import numpy as np
import matplotlib.pyplot as plt

# Определяем функцию
def f(x):
    return np.exp(7 * x - 14)

# Генерируем значения x
x = np.linspace(-3, 3, 400)
y = f(x)

# Создаем график
plt.figure(figsize=(10, 6))
plt.plot(x, y, label='y = e^(7x - 14)', color='blue')
plt.axhline(0, color='black', lw=0.5, ls='--')
plt.axvline(0, color='black', lw=0.5, ls='--')
plt.title('График функции y = e^(7x - 14)')
plt.xlabel('x')
plt.ylabel('y')
plt.ylim(-1, 10)  # Ограничиваем ось y для лучшего отображения
plt.grid()
plt.legend()
plt.show()





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

79567691

Date: 2025-04-10 23:01:50
Score: 2.5
Natty:
Report link

$ pip install SomePackage # latest version

$ pip install SomePackage==1.0.4 # specific version

$ pip install 'SomePackage>=1.0.4'

Reasons:
  • Low length (1):
  • No code block (0.5):
  • Low reputation (1):
Posted by: David López

79567688

Date: 2025-04-10 22:54:48
Score: 2
Natty:
Report link

Open the debugging dropdown, hover over Script Debugging, and set it to Disabled.

This fixed the issue for me and debugging now opens in a tab using my main profile.

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

79567686

Date: 2025-04-10 22:53:47
Score: 6 🚩
Natty:
Report link

I see that this post is 6 months old, but nobody responded to it. Did you get an answer to your question? I'm in the same boat.

Reasons:
  • RegEx Blacklisted phrase (3): Did you get an answer to your
  • Low length (1):
  • No code block (0.5):
  • Contains question mark (0.5):
  • Single line (0.5):
  • Low reputation (0.5):
Posted by: Tim

79567674

Date: 2025-04-10 22:40:44
Score: 4
Natty:
Report link

Reinstallation of CS fixed everything bruh

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

79567670

Date: 2025-04-10 22:37:43
Score: 1.5
Natty:
Report link

I know this is old but it shows up as a first result for this issue.

Here you'd use a wildcard:

"anything-but": {
     "wildcard": ["database_1*", "database_2*", "*_test"]
}
Reasons:
  • Low length (1):
  • Has code block (-0.5):
  • Low reputation (1):
Posted by: user3254931

79567668

Date: 2025-04-10 22:34:42
Score: 2
Natty:
Report link

I am facing the exact same issue:

console.log(variationGroupForm.formState.isDirty, " :: is dirty"); // is true
console.log(variationGroupForm.formState.dirtyFields, " :: dirty fields"); // but has no dirty fields

I have an isEmpty function that checks the length of Object.keys of the dirtyFields object.

<Button
  loading={isUpdating}
  disabled={isEmpty(variationGroupForm.formState.dirtyFields) || !variationGroupForm.formState.isValid}
  onClick={variationGroupForm.handleSubmit(onUpdateVariationGroup)}
>
  Update
</Button>

This works.

export function isEmpty(obj: Record<string, any> | null | undefined): boolean {
  if (obj == null) return true;

  if (typeof obj !== "object") return false;

  if (Array.isArray(obj)) return obj.length === 0;

  if (obj instanceof Map || obj instanceof Set) return obj.size === 0;

  return Object.keys(obj).length === 0;
}
Reasons:
  • Long answer (-0.5):
  • Has code block (-0.5):
  • Me too answer (2.5): I am facing the exact same issue
  • Low reputation (0.5):
Posted by: emAyush56

79567665

Date: 2025-04-10 22:33:42
Score: 3.5
Natty:
Report link

import matplotlib.pyplot as plt

from matplotlib_venn import venn2

# Definir los tamaños de los grupos

satisfechos = 60

insatisfechos = 40

# Crear el diagrama de Venn

plt.figure(figsize=(8, 6))

venn2(subsets=(satisfechos, insatisfechos, 0), set_labels=('Satisfechos', 'Insatisfechos'))

# Mostrar el gráfico

plt.title("Satisfacción sobre la Rapidez en la Atención")

plt.show()

Reasons:
  • Blacklisted phrase (2): Crear
  • No code block (0.5):
  • Low reputation (1):
Posted by: Kerin Licona

79567659

Date: 2025-04-10 22:26:41
Score: 1.5
Natty:
Report link

This query yields the same results, but runs much faster (less than 0.0015s); where as the original query, with multiple sub-queries, never took less than 0.0025s.

SELECT DISTINCT `Pos Dept`, `Dept Desc` 
FROM collData JOIN depts ON collData.`Pos Dept`= depts.dept_code
WHERE collData.`Dept Desc` <> depts.dept_name
ORDER BY `Pos Dept`;

Thanks for the guidance @Barmar.

I used this page to design the JOIN-based query: https://dev.mysql.com/doc/refman/5.7/en/rewriting-subqueries.html

Reasons:
  • Blacklisted phrase (0.5): Thanks
  • Has code block (-0.5):
  • Self-answer (0.5):
  • Low reputation (1):
Posted by: J. Robert West

79567654

Date: 2025-04-10 22:21:39
Score: 4
Natty:
Report link

Use portable version of IconsExctract

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

79567653

Date: 2025-04-10 22:17:38
Score: 1
Natty:
Report link

I managed to get this working on Keycloak 26.1.4 by adding a mapper to the organization:* client scope.

I created a client scope called organization:*

Client Scope Fields

I then configured a new mapper for organization:* and chose Organization Membership for the mapping:

Client Scope Mapping Fields

I then added organization client scope as an optional type to my client, and organization:* as a default type.

Once I did this, the Organization claim appears in my access token, and multiple organizations display if my users belongs to multiple organizations.

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

79567652

Date: 2025-04-10 22:17:38
Score: 0.5
Natty:
Report link

rm -rf android

Or manually delete the android folder.

2. Recreate the Android Project

Run:

flutter create .

Reasons:
  • Low length (1):
  • No code block (0.5):
  • High reputation (-1):
Posted by: Mina Farid

79567647

Date: 2025-04-10 22:13:36
Score: 0.5
Natty:
Report link

I have found my issue. I was misunderstanding workspaces with spaces. After some investigation making a call with https://api.clickup.com/api/v2/team/ will only get the one worksapce I have created. If I wanted to see the other spaces within the the workspace I have to make this call instead https://api.clickup.com/api/v2/team/{team_id}/space.

Essentially I had to think Workspaces are like companies, while spaces are the department/teams. It made sense in my brain with that distinct comparison.

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

79567645

Date: 2025-04-10 22:09:36
Score: 1.5
Natty:
Report link

Yes the integer division in both languages needs to match and the working line is

Dim midOffset As Long = (fileLength / 2)-1

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