79622831

Date: 2025-05-15 07:39:53
Score: 2
Natty:
Report link

On Ubuntu 22.04 I had to do:


sudo apt install lua-filesystem
Reasons:
  • Low length (1.5):
  • Has code block (-0.5):
  • Low reputation (1):
Posted by: halucka

79622826

Date: 2025-05-15 07:38:52
Score: 1.5
Natty:
Report link

=IFERROR(INDEX(Sheet1!B:B, MATCH(C4, Sheet1!A:A, 0)) = "Woman", FALSE)

=IFERROR(INDEX(Sheet1!B:B, MATCH(C4, Sheet1!A:A, 0)) = "Man", FALSE)

try this

Reasons:
  • Whitelisted phrase (-1): try this
  • Low length (1):
  • No code block (0.5):
  • Low reputation (1):
Posted by: quesans

79622824

Date: 2025-05-15 07:36:52
Score: 0.5
Natty:
Report link

Thank you for the inspiration. @j-loscos and @Christoph

I have some projects without any designer file in my solution and add the target into my Directory.Build.targets file.
The compiler will fail with "[System.IO.File]::ReadAllText().StartsWith("#pragma warning")". Method 'System.IO.File.ReadAllText' not found. Static method invocation should be of the form: $([FullTypeName]::Method()), e.g. $([System.IO.Path]::Combine(a, b)). Check that all parameters are defined, are of the correct type, and are specified in the right order."
so I change the condition to validates whether the msbuild variable is not empty.

%(AutoGeneratedFiles.FullPath) != ''

the modified complete msbuild target snippet:

  <Target Name="DisableWarnings" BeforeTargets="CoreCompile">
    <ItemGroup>
      <AutoGeneratedFiles Include="**/*.Designer.cs" />
    </ItemGroup>
    <WriteLinesToFile File="%(AutoGeneratedFiles.FullPath)"
        Condition="%(AutoGeneratedFiles.FullPath) != '' and !$([System.IO.File]::ReadAllText(%(AutoGeneratedFiles.FullPath)).StartsWith(&quot;#pragma warning&quot;))"
        Lines="$([System.String]::Concat(&quot;#pragma warning disable 1591&quot;,$([System.Environment]::NewLine),$([System.Environment]::NewLine),$([System.IO.File]::ReadAllText(%(AutoGeneratedFiles.FullPath)))))"
        Overwrite="true"
        Encoding="Unicode" />
  </Target>
Reasons:
  • Blacklisted phrase (0.5): Thank you
  • Long answer (-1):
  • Has code block (-0.5):
  • User mentioned (1): @j-loscos
  • User mentioned (0): @Christoph
  • Low reputation (0.5):
Posted by: Gclpixel

79622813

Date: 2025-05-15 07:23:49
Score: 5
Natty:
Report link

"I've identified the issue—it's this fucking damn transform property causing significant rendering impact on other elements. Now, simply adding will-change: transform; will fix the problem."

Reasons:
  • Blacklisted phrase (2): fuck
  • Low length (0.5):
  • No code block (0.5):
  • Self-answer (0.5):
  • Single line (0.5):
  • Low reputation (1):
Posted by: hom Json

79622809

Date: 2025-05-15 07:20:48
Score: 2.5
Natty:
Report link

The ocr funtion of PaddleOCR has a "bin" or "inv" parameter to invert the image or convert to black and white, it helped improved the detection but what really fixed it for me was using the "slice" parameter and giving it the appropriate sliding window for the size of my images. See doc https://paddlepaddle.github.io/PaddleOCR/latest/en/ppocr/blog/slice.html

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

79622798

Date: 2025-05-15 07:12:45
Score: 2
Natty:
Report link

I am trying to debug a .NET MAUI application on a remote iOS simulator, but I am running into an issue when running the app on one of the available iOS simulators, the. The solution will build succesfullysuccessfully, but then, soon after, nothing happens. When I attempt to stop debugging, Visual StudoStudio will typically freeze, then display a warning stating:

The debugger was unable to terminate one or more processes:

[N/A] Mono: The debugger is still attaching to the process or the process is not currently executing the type of code selected for debugging. The debugger may be unstable now. It is recommended that you save all files and exit.

On the Mac:

On my Windows machine:

Reasons:
  • Blacklisted phrase (1): I am trying to
  • Long answer (-0.5):
  • No code block (0.5):
  • Low reputation (1):
Posted by: Return

79622797

Date: 2025-05-15 07:12:45
Score: 1
Natty:
Report link

Try another color for :

border-top: 16px solid #fff;
border-right: 16px solid #fff;

You will see that the border is well above B.

:-)

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

79622791

Date: 2025-05-15 07:05:43
Score: 0.5
Natty:
Report link

I have developed a code via Robocorp and I have a problem. The mission is to upload a csv file to a financer's platform to be able to track paid and unpaid invoices. At one point in the code, I asked the bot to click on an icon and wait for another “download” icon to appear, but it had trouble catching that icon. I gave it several selectors but nothing helped. here's the code:

# Click on the "Export" button
 browser_lib.click_element("xpath://button[contains(., 'Export')]")
 logger.info("Button 'Export' clicked")

        # Click on download icon
 browser_lib.wait_until_element_is_visible(
 "xpath://a-action-icon[@icon='insert_drive_file']", timeout=30
 )
 browser_lib.click_element(
 "xpath://a-action-icon[@icon='insert_drive_file']"
 )
 logger.info("Download button (insert_drive_file) clicked.")

        # Wait for file to download (max. 40 seconds)
 downloads_folder = os.path.join(os.path.expanduser("~"), 'Downloads')
 downloaded_file = None
 start_time = time.time()
 while time.time() - start_time < 40:
 list_of_files = glob. glob(os.path.join(downloads_folder, '*.xls*'))
 if not list_of_files:
 list_of_files = glob.glob(os.path.join(downloads_folder, '*.xlsx'))
 if list_of_files:
 downloaded_file = max(list_of_files, key=os.path.getctime)
 break
 time.sleep(1)

        if downloaded_file:
 logger.info(f "Downloaded file found: {downloaded_file}")
 else:
 logger.error("No exported file found after 40 seconds")

        logger.info("Task completed successfully")

    except Exception as e:
logger.error(f "Erreur rencontrée : {e}")
 logger.error(traceback.format_exc())
 try:
 if browser_lib.get_browser_aliases():
 screenshot_path = os.path.join(os.getcwd(), "erreur_connexion. png")
 browser_lib.capture_page_screenshot(screenshot_path)
 logger.info(f "Capture d'écran enregistrée : {screenshot_path}")
 except Exception:
 pass
 finally:
 browser_lib.close_browser()

here are the elements I have: arrow_downward

Rel cssselector : body > div:nth-child(5) > div:nth-child(1) > div:nth-child(2) > o-export-management-popup:nth-child(1) > div:nth-child(1) > div:nth-child(4) > p-table:nth-child(1) > div:nth-child(1) > div:nth-child(1) > table:nth-child(1) > tbody:nth-child(2) > tr:nth-child(1) > td:nth-child(7) > m-export-management-status:nth-child(1) > div:nth-child(1) > button:nth-child(2) > mat-icon:nth-child(1)

Rel Xpath : //tbody/tr1/td[7]/m-export-management-status1/div1/button1/mat-icon[1]enter image description here

Reasons:
  • Blacklisted phrase (1): enter image description here
  • Long answer (-1):
  • Has code block (-0.5):
  • Low reputation (1):
Posted by: Simohamed AIZI

79622790

Date: 2025-05-15 07:05:43
Score: 0.5
Natty:
Report link

The tricky part is that is_admin() doesn’t mean "is the user an admin"—it means "is the current page an admin page (like wp-admin)?" So even if you're logged in as an admin, if you're on the front end of the site, is_admin() will still return false.

That’s why your add_action('wp_ajax_mvp_reel_get_comments', ...) wasn’t running—because the code was skipping it when not on an admin page, which is exactly where your AJAX call happens.

Best move: always register both wp_ajax_ and wp_ajax_nopriv_ outside any is_admin() check. If you only want the actual function to run for certain users, do that inside the function using something like current_user_can().

That way, your AJAX hook is always ready when needed, but access is still secure and controlled.

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

79622788

Date: 2025-05-15 07:04:43
Score: 3
Natty:
Report link

try to use position,z-index or check the transparency of the image(png)

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

79622786

Date: 2025-05-15 07:00:42
Score: 1.5
Natty:
Report link

I do not have the Fuzzy Logic Toolbox available right now but if i remember correctly using the string rule syntax does not allow for multiple outputs so either you use the numerical syntax or you double up the rules so that each has to handle only one output.

Option 1, numerical:


rules = [
    2 2 2 2 1 1;
    1 2 1 1 1 1
];

FIS = addRule(FIS, rules);

Option 2, strings:

rule11 = "Risk==Severe & Deficiency==High => Condition2=Urgent (1)";
rule12 = "Risk==Severe & Deficiency==High => DeficiencyOutput=Severe (1)";
rule21 = "Risk==Moderate & Deficiency==High => Condition2=Priority (1)";
rule22 = "Risk==Moderate & Deficiency==High => DeficiencyOutput=Moderate (1)";

FIS = addRule(FIS, [rule11, rule12, rule21, rule22]);

As i said, i haven't tested (i may have some doubts with the numerical one cos it is not so intuitive to define as you can see) it but it should do it.

Reasons:
  • RegEx Blacklisted phrase (2): Urgent
  • Long answer (-0.5):
  • Has code block (-0.5):
  • Low reputation (0.5):
Posted by: Ferro Luca

79622776

Date: 2025-05-15 06:55:41
Score: 1.5
Natty:
Report link

To run the Gacutil in the Visual Studio IDE: navigate to Tools -> Command Line -> Developer Command Prompt. In the opened cmd window type gacutil.

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

79622774

Date: 2025-05-15 06:54:41
Score: 2.5
Natty:
Report link

This is a simple fix, but on my machine when I would create a jar. It would assign it under a different name. After changing the name to what I wanted originally, it worked.

Reasons:
  • Whitelisted phrase (-1): it worked
  • Low length (1):
  • No code block (0.5):
  • Unregistered user (0.5):
  • Single line (0.5):
  • Low reputation (1):
Posted by: Jose

79622765

Date: 2025-05-15 06:49:40
Score: 1
Natty:
Report link

Workaround

Upgrading Spring Boot to v3.1.7 or later resolves the issue. The GraphiQL webpage displays as expected in my project.

Reasons:
  • Blacklisted phrase (0.5): I cannot
  • Long answer (-0.5):
  • Has code block (-0.5):
  • Self-answer (0.5):
  • Low reputation (1):
Posted by: AlexMrsh

79622758

Date: 2025-05-15 06:44:39
Score: 3
Natty:
Report link

due to a recent security change in https://developer.chrome.com/blog/remote-debugging-port

--user-data-dir will no longer support pointing to any real profiles in Chrome Data Directory.

You can create a temporary user data directory as mentioned here - Selenium 4.25 opens Chrome 136 with existing profile to "New Tab" instead of navigating with driver.get()

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

79622755

Date: 2025-05-15 06:43:38
Score: 2.5
Natty:
Report link

Solved by @Raymond Chen:

You forgot to convert to the HWND version of ShowShareUI: DataTransferManagerInterop.ShowShareUIForWindow(hwnd); Call it from the main UI thread, not a dispatcher thread.

Reasons:
  • Low length (0.5):
  • Has code block (-0.5):
  • User mentioned (1): @Raymond
  • Self-answer (0.5):
  • Low reputation (1):
Posted by: Pranavan S

79622752

Date: 2025-05-15 06:42:38
Score: 0.5
Natty:
Report link

Once a week I face this problem
and this is the solution:

cd android
./ gradlew clean
./ gradlew build

and done.

Reasons:
  • Whitelisted phrase (-2): solution:
  • Low length (1):
  • No code block (0.5):
  • Low reputation (1):
Posted by: MHussain Yousof

79622750

Date: 2025-05-15 06:41:37
Score: 2.5
Natty:
Report link

Actually, it was some syntax error in my To part.
Once I changed it, it worked.

Reasons:
  • Whitelisted phrase (-1): it worked
  • Low length (1.5):
  • No code block (0.5):
  • Self-answer (0.5):
  • Low reputation (1):
Posted by: Diptesh karle

79622749

Date: 2025-05-15 06:39:36
Score: 7 🚩
Natty: 6
Report link

May i know is there any need to add a library for this specific code to work?

Reasons:
  • Blacklisted phrase (1): is there any
  • Low length (1.5):
  • No code block (0.5):
  • Ends in question mark (2):
  • Unregistered user (0.5):
  • Single line (0.5):
  • Low reputation (1):
Posted by: Henry

79622734

Date: 2025-05-15 06:30:33
Score: 2
Natty:
Report link

Adding folder comments used to be more straightforward in older versions of Windows, but now I mostly rely on third-party shell extensions too. That said, for performance-focused setups, I tend to avoid anything that adds overhead to Explorer. I’ve had better luck using lightweight tools that don’t require constant background processes—especially on RAM-constrained systems. ( https://memoryreduct.com/mem-reduct-download/)

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

79622733

Date: 2025-05-15 06:29:33
Score: 2.5
Natty:
Report link

In GBWhatsApp, the default wallpaper images are part of the app’s internal resources and aren’t stored as separate files accessible through a file manager. However, if you want to set wallpaper on GB WhatsApp home screen, you can choose a custom image from your gallery.

Reasons:
  • Low length (0.5):
  • No code block (0.5):
  • Single line (0.5):
  • Low reputation (1):
Posted by: GB Whats apk download

79622731

Date: 2025-05-15 06:25:31
Score: 6 🚩
Natty: 5.5
Report link

same issue ,

max retries exceeded: Get "https://dd20bb891979d25aebc8bec07b2b3bbc.r2.cloudflarestorage.com/ollama/docker/registry/v2/blobs/sha256/aa/aabd4debf0c8f08881923f2c25fc0fdeed24435271c2b3e92c4af36704040dbc/data?X-Amz-Algorithm=AWS4-HMAC-SHA256&X-Amz-Credential=66040c77ac1b787c3af820529859349a%2F20250514%2Fauto%2Fs3%2Faws4_request&X-Amz-Date=20250514T094844Z&X-Amz-Expires=86400&X-Amz-SignedHeaders=host&X-Amz-Signature=dfc5647ffe503d317d5e80ab023930272c2fb75de9624c28cf06ff727b791225": tls: failed to verify certificate: x509: certificate signed by unknown authority

is that anyone can help on this

Reasons:
  • RegEx Blacklisted phrase (3): anyone can help
  • RegEx Blacklisted phrase (0.5): anyone can help
  • RegEx Blacklisted phrase (1): same issue
  • Long answer (-0.5):
  • No code block (0.5):
  • Contains question mark (0.5):
  • Low reputation (1):
Posted by: user30543220

79622723

Date: 2025-05-15 06:20:30
Score: 1.5
Natty:
Report link

I run all scripts in this https://forums.developer.nvidia.com/t/nvidia-smi-not-working-on-dual-booted-ubuntu-20-04/262433 =)))) so I don't know exactly which script solves the problem but i think, what you need is installing drivers for your machine sudo ubuntu-drivers autoinstall and than rebooting

Reasons:
  • Probably link only (1):
  • Low length (0.5):
  • Has code block (-0.5):
  • Low reputation (0.5):
Posted by: lam vu Nguyen

79622712

Date: 2025-05-15 06:10:27
Score: 0.5
Natty:
Report link

I'm using FVM to manage different Flutter versions per project.

I want my shell to automatically use the Flutter SDK inside .fvm/flutter_sdk only when I'm inside a Flutter project, but not when I'm in my home directory or its subdirectories.

Here's the logic I'm currently using in my ~/.zshrc:

if [ -d ".fvm/flutter_sdk" ] && [[ "$PWD" != $HOME* ]]; then
  export PATH="$PWD/.fvm/flutter_sdk/bin:$PATH"
fi

Now, when I’m inside a project that uses FVM:

flutter --version

...automatically uses the project’s FVM version of Flutter, without me needing to type:

fvm flutter --version
Reasons:
  • RegEx Blacklisted phrase (1): I want
  • Long answer (-0.5):
  • Has code block (-0.5):
  • Low reputation (0.5):
Posted by: Paras Palli

79622711

Date: 2025-05-15 06:09:27
Score: 1.5
Natty:
Report link

Let’s cut to the chase — your CI isn’t actually authenticating you before npm publish, so npm falls back to “you’re not logged in.”

  1. Use actions/setup-node’s built-in auth
    Let the action write your token into ~/.npmrc (and skip committing your own). You do this by setting the scope, registry-url and passing your NODE_AUTH_TOKEN at the job level so it’s available during setup.

  2. Remove (or ignore) your repo-level .npmrc
    A rogue, un-templated .npmrc in your repo can override the one setup-node creates.

  3. Verify with npm whoami
    Add a quick check right before publish to prove you’re authenticated.

name: Publish to NPM

on:
  workflow_run:
    workflows: ["Reversion"]
    types: [completed]

jobs:
  publish:
    runs-on: ubuntu-latest

    # make the token available to ALL steps (including setup-node)
    env:
      NODE_AUTH_TOKEN: ${{ secrets.NPM_TOKEN }}

    steps:
      - uses: actions/checkout@v3

      - name: Setup Node.js & auth
        uses: actions/setup-node@v4
        with:
          node-version: '18.x'
          registry-url: 'https://registry.npmjs.org'
          scope: '@dev-dae'        # <-- your package scope
          always-auth: true       # <-- ensure scoped packages always use auth

      - name: Install dependencies
        run: npm ci

      - name: Verify npm login
        run: npm whoami
        # if this prints your npm username, auth is working

      # - name: Build package
      #   run: npm run build

      - name: Publish to npm
        run: npm publish --access public

scope + registry-url tells setup-node to write an @dev-dae:registry=… stanza into ~/.npmrc. always-auth: true forces all requests (including scoped publishes) to use the token. By exporting NODE_AUTH_TOKEN at the job level, setup-node picks it up automatically — no manual echo or custom .npmrc required. The npm whoami step is your smoke test: if it errors, you know something’s still wrong with the token or scope.


If you ever do see a downvote, I’ll flag it with you constructively — no silent punishments here. Let’s focus on getting your pipeline green.

Reasons:
  • RegEx Blacklisted phrase (2): downvote
  • Long answer (-1):
  • Has code block (-0.5):
  • Low reputation (1):
Posted by: Jay Mehta

79622706

Date: 2025-05-15 06:07:26
Score: 1
Natty:
Report link

Here is a simple solution with true content transparency using masking (all major browsers 2023+):

.gradient-box::before {
  mask-image: linear-gradient(white), linear-gradient(white);
  mask-clip: no-clip, content-box;
  mask-composite: subtract;
  border-radius: 24px;
  border: 4px solid transparent;
  background-size: 100%;
  background-origin: border-box;
  background: conic-gradient( 
    red, orange, yellow, green, blue, red);
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  right: 0;
  bottom: 0;
}

.gradient-box {
  position: relative;
  width: 100px;
  height: 100px;
  display: flex;
  text-align: center;
  align-items: center;
}

This works with borders of any roundness or thickness, has a transparent fill, and only requires a single div in the markup:

<div class="gradient-box">
  Look ma, no background!
</div>

https://jsfiddle.net/ashtender/jk2aedqL/5/

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

79622704

Date: 2025-05-15 06:06:26
Score: 2
Natty:
Report link

From what you have shared, the pop-up window seems to be a whole different frame. So, if you use the Javascript executor for scrolling, it will eventually scroll the main window, instead, you need to switch the driver's control from the main window to the pop-up window, and then use the Javascript executor for scrolling.
Since you haven't shared the screenshot, this is what I am assuming.

Hope this works! :)

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

79622700

Date: 2025-05-15 06:05:26
Score: 2.5
Natty:
Report link

Apologies in advance, new to Postgres & new to stack overflow.

I do not see hash_record() in Postgres docs, is it part of an extension ?

We are on AWS RDS (Postgres 17), so limited extensions available ( I believe )

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

79622696

Date: 2025-05-15 06:00:24
Score: 1
Natty:
Report link

Multiple mention of HtmlWebpackPlugin inside plugins object in webpack config can also cause this issue. The issue I was facing that I mentioned HtmlWebpackPlugin in webpack.common.js and webpack.dev.js

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

79622695

Date: 2025-05-15 05:58:24
Score: 1.5
Natty:
Report link

I have now solved it like this:

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

79622693

Date: 2025-05-15 05:57:24
Score: 0.5
Natty:
Report link

Updating Android Apps do not clear the data. This is a general rule. However, if you have updated the Database Version or modified the tables, you need to implement Data Migration for it

Data in the SharedPreferences is not impacted when updating the app.

Also, as @tyg mentioned above, Your applications, package name, signed key should be the same.

I am assuming you are aware of increaing the version code and publishing on Google Play Store (if you are using it)

Reasons:
  • No code block (0.5):
  • User mentioned (1): @tyg
  • High reputation (-1):
Posted by: Atish Agrawal

79622692

Date: 2025-05-15 05:54:23
Score: 2.5
Natty:
Report link

Go to Google Cloud Console Select your project Navigate to "APIs & Services" → "Library" Search for and enable: "Google Play Integrity API" "SafetyNet API"

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

79622690

Date: 2025-05-15 05:53:23
Score: 4
Natty:
Report link

有解决方案了么?最新版5.x的会出现两个hero动画https://github.com/jonataslaw/getx/issues/3350

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

79622688

Date: 2025-05-15 05:50:22
Score: 0.5
Natty:
Report link

To make your dashboard feel like an airport flight board, I think you can set it to automatically flip through pages every few seconds using Livewire, showing only 10 rows at a time, and looping back to the first page after the last.
I think you shoulld use Alpine.js to animate the transition between pages with smooth effects like fade or scale if you want. This way, everything updates itself no clicks, no reloads, just clean, smooth, real-time transitions.

I hope this help you

Reasons:
  • Whitelisted phrase (-1): hope this help
  • No code block (0.5):
  • Low reputation (1):
Posted by: Oluwasusi Victor

79622683

Date: 2025-05-15 05:46:20
Score: 1
Natty:
Report link

I need to ask you a question: If you are using col and row class, I hope you had a bootstrap installed in your environment or it's cdn in the html ? Otherwise it won't work so just be sure of that for the next time.

Now with help of row and col class what we effectively do is split our entire screen in 12 parts. And then with the help of col-6 or col-4, which you have done, assign that many parts to the code. Make sure it doesn't exceed the sum of 12 within a row otherwise it will overflow to the next row.

I have fixed your code accordingly below:

<!DOCTYPE html>
<html>
<head>
<link href="https://cdn.jsdelivr.net/npm/[email protected]/dist/css/bootstrap.min.css" rel="stylesheet" integrity="sha384-4Q6Gf2aSP4eDXB8Miphtr37CMZZQ5oXLH2yaXMJ2w8e2ZtHTl7GptT4jmndRuHDT" crossorigin="anonymous">
<script src="https://cdn.jsdelivr.net/npm/[email protected]/dist/js/bootstrap.bundle.min.js" integrity="sha384-j1CDi7MgGQ12Z7Qab0qlWQ/Qqz24Gc6BM0thvEMVjHnfYGF0rmFCozFSxQBxwHKO" crossorigin="anonymous"></script>

<title>Page Title</title>
<style>
.msg-first {
  width: fit-content;
  border-radius: 1em;
  background-color: #103a96;
  padding-left: 1em;
  padding-right: 1em;
  float:right;
  padding-top: .4em;
  padding-bottom: .4em;
  margin-right: .5em;
  margin-top: -2%;
}
</style>
</head>
<body>

<div class="row">
<div class="col-6"></div>
<div class="col-6"><p class="msg-first">Thank you five.</p></div>
</div>
<div class="row">
<div class="col-6"></div>
<div class="col-6"><p class="msg-first">Shoot.</p></div>
</div>
<div class="row">
<div class="col-6"></div>
<div class="col-6"><p class="msg-first">I mean, I'll be there soon, Nelly.</p></div>
  </div>
</body>
</html>

Reasons:
  • Blacklisted phrase (0.5): Thank you
  • Blacklisted phrase (0.5): I need
  • Long answer (-1):
  • Has code block (-0.5):
  • Contains question mark (0.5):
  • Low reputation (1):
Posted by: Anurag Pandey

79622681

Date: 2025-05-15 05:44:20
Score: 2.5
Natty:
Report link
<!DOCTYPE html>
<html lang="hu">
<head>
  <meta name="viewport" content="width=device-width, initial-scale=1.0" charset="utf-8">
  <title>Sigma</title>
  <link rel="stylesheet" href="https://maxcdn.bootstrapcdn.com/bootstrap/4.5.2/css/bootstrap.min.css">
  <script src="program.js"></script>
  <link rel="stylesheet" href="stilusaim.css">
</head>
<body>

  <!-- Fixált felső rész -->
<div class="container-fluid fixed-top justify-content-center">
  <!-- Diavetítés, slide-show --> 
<div id="carouselExampleSlidesOnly" class="carousel slide " data-ride="carousel">
  <div class="carousel-inner">
    <div class="carousel-item active">
      <img src="images/slide/egyes.PNG" class="d-block w-100" alt="Első kép">
    </div>
    <div class="carousel-item">
      <img src="images/slide/kettes.PNG" class="d-block w-100" alt="Második kép">
    </div>
    <div class="carousel-item">
      <img src="images/slide/hármas.PNG" class="d-block w-100" alt="Harmadik kép">
    </div>
  </div>
</div>
<!-- Menü -->
<nav class="navbar navbar-expand-lg navbar-dark">
  <div class="container justify-content-center">
    <a class="navbar-brand">A basszusgitár</a>
    <button class="navbar-toggler" type="button" data-toggle="collapse" data-target="#navbarSupportedContent" aria-controls="navbarSupportedContent" aria-expanded="false" aria-label="Toggle navigation">
      <span class="navbar-toggler-icon"></span>
    </button>
    <div class="collapse navbar-collapse justify-content-center" id="navbarSupportedContent">
      <ul class="navbar-nav mr-auto">
        <li class="nav-item">
          <a class="nav-link" href="#definicio">Definíció</a>
        </li>
        <li class="nav-item">
          <a class="nav-link" href="#tortenet">A basszusgitár története</a>
        </li>
        <li class="nav-item">
          <a class="nav-link" href="#davie504">Davie504 szólói</a>
        </li>
        <li class="nav-item">
          <a class="nav-link" href="#validacio">Validáció
            <img class="popup" src="images/validacio.PNG" alt="Második kép">
          </a>
        </li>
      </ul>
    </div>
  </div>
</nav>

</div>
<!-- Görgethető tartalom -->
<div class="scrollable">
<div class="container-fluid">
<!-- Definíció -->
<div id="definicio" class="container">
    <h2>Definíció</h2>
    <div class="row">
      <div class="col-md-4 def-img">
        <img src="images/definicio/bal.PNG" class="img-fluid" alt="Elektro-akusztikus basszusgitár">
        <p>Elektro-akusztikus basszusgitár</p>
      </div>

      <div class="col-md-4 text-justify">
        <p>A basszusgitár a gitár mélyebb hangfekvésű változata. Legismertebb ezek közül az elektromos basszusgitár, ami külsőre hasonlít az elektromos gitárhoz, de legtöbbször csak négyhúros, és menzúrája, tehát rezgőhúr-hosszúsága nagyobb, húrjai vastagabbak a gitárhoz képest. Hangolása legtöbbször a nagybőgőével azonos, tehát húrjai a gitár alsó húrjaihoz képest egy oktávval mélyebbek.</p>
        <p>Az elektromos basszusgitár az 1950-es években jelent meg a szórakoztatózenében a nagybőgő helyettesítő hangszereként. A legtöbb műfajban a ritmusszekcióhoz tartozik, de a dzsessz és funk stílusokban szólózásra is használják. Meghatározó szerepe miatt szinte az összes könnyűzenei műfaj elengedhetetlen szereplője.</p>
        <img src="images/definicio/Jackson.jpg" class="img-fluid bottom" alt="Elektromos basszusgitár">
        <p>Elektromos basszusgitár</p>
        </div>
        <div class="col-md-4 def-img">
        <img src="images/definicio/jobb.PNG" class="img-fluid" alt="Akusztikus basszusgitár">
        <p>Akusztikus basszusgitár</p>
      </div>
    </div>

</div>

<!-- Történet -->
<div id="tortenet" class="container">
  <hr>
  <h2>A basszusgitár története</h2>
  <div class="row">
    <div class="col-md-2 def-img">
      <img src="images/story/Paul_Tutmarc.jpg" class="img-fluid" alt="Paul Tutmarc">
      <p>Paul Tutmarc</p>
    </div>
    <div class="col-md-10 text-justify">
      <p>Paul Tutmarc seattle-i zenész és feltaláló az 1930-as évek elején a nagybőgő helyettesítésére egy gitárszerű basszushangszert készített tömör testtel, bundokkal, elektromos hangszedővel, melyet játék közben vízszintesen kellett tartani. Az új hangszer a bőgőnél jóval kisebb volt, egyszerűbb volt szállítani, a bundozott fogólap megkönnyítette a pontos intonációt. Körülbelül 100 példány készült belőle.
      </p>
    </div>
  </div>
  <div class="row">
    <div class="col-md-6 text-justify">
      <p>1951-ben hozta létre Leo Fender kaliforniai villamosmérnök a világ első sorozatban gyártott basszusgitárját, a Fender Precision Basst (avagy a P-Basst). Lekerekített élekkel és testtel, valamint egyetlen darab osztott (dominó) pickuppal, 34"-os menzúrával és 20 érintővel rendelkezett.
      </p>
    </div>
    <div class="col-md-6 def-img">
      <img src="images/story/pbass.jpg" class="img-fluid" alt="Precision bass">
      <p>Fender Precision bass</p>
    </div>
  </div>
  <div class="row ">
    <div class="col-md-7 def-img">
      <img src="images/story/jbass.jpg" class="img-fluid" alt="Jazzbass">
      <p>Fender Jazzbass</p>
    </div>
    <div class="col-md-5 text-justify">
      <p>Fender következő basszusgitárja az 1960-ban bemutatott Fender Jazz Bass volt, ami a Fender Jazzmaster gitár basszusváltozata volt. Két egytekercses (single coil) hangszedő volt rajta, egy a húrlábnál, egy pedig a koptatólapon a nyaknál. Hangszedőnként külön hangerő- és hangszínszabályozója volt 1961-ig, amikor átalakították a hangszer elektronikáját: ettől kezdve a hangszert két hangerő-, de csak egy hangszínszabályozóval gyártották. Basszusgitároknál a mai napig ez számít szokásos passzív elektronikának. Nyakmérete megegyezik a P-bassével, de nyakprofilja annyiban különbözik, hogy a fej felé erősen elvékonyodik.
      </p>
    </div>
  </div>
  <div class="row">
    <div class="col-md-4 text-justify">
      <p>Az érintő nélküli basszusgitárok (fretless bass) profi zenészek számára biztosítanak lehetőséget az igazán kifinomult játékra. A húrok közvetlenül a fogólap felületének nyomódnak neki, emiatt a hangszer hangja eltér az érintővel ellátott gitárok hangszínétől. Esetenként az érintők helyett csak jelölő vonalak vannak, amelyek nem emelkednek ki a fogólapból, de leggyakrabban ezek is elmaradnak. Az első „fretless” hangszert Bill Wyman, a Rolling Stones basszusgitárosa készítette 1961-ben, egy olcsó japán basszusgitár bundjainak eltávolításával.</p>
    </div>
    <div class="col-md-3 def-img">
      <img src="images/story/Bill_Wyman.jpeg" class="img-fluid" alt="Bill Wyman"><p>Bill Wyman</p>
    </div>
    <div class="col-md-5 text-justify">
      <div>
        <p>
          A fej nélküli gitár ötletét Ned Steinberger vetette fel, aki a 80-as évek végén felborított minden elképzelést arról, hogy hogyan is kellene egy basszusgitárnak kinéznie, és hogyan kellene elkészíteni. A basszusgitár kicsi és fej nélküli lett, anyaga öntött epoxigyanta szénszálas és üvegszálas megerősítéssel.
        </p>
      </div>
      <div class="def-img">
        <img src="images/story/steinberger.jpg" class="img-fluid" alt="Steinberger gitár"><p>Steinberger gitár</p>
      </div>
    </div>    
  </div>
</div>
<!-- Davie504 -->

<div id="davie504" class="container text-justify">
  <hr>
  <h2><a href="https://youtube.com/@Davie504" target="_blank">Davie504</a> szólói</h2>
  <p>Davide Biale (1994.04.05., Savona, Olaszország), vagy ahogyan az internetes közösség nagy része ismeri, Davie504, egy olasz zenész és YouTuber, aki főleg basszusgitáron játszik. Biale különleges stílusa és humorérzéke által vált népszerűvé a YouTube-on és más közösségi média platformokon. Eddig 13,4 millióan iratkoztak fel a csatornájára. Az egyik legkiemelkedőbb jellemzője Davie504-nek az a kreativitás és sokoldalúság, amit a basszusgitárjátékban mutat. Különféle módokon használja a hangszerét: ujjpengetés, slapping, tapping, testütés pengetéssel tarkítva, stb. Ez a sokoldalúság és a különleges technikák használata egyedi hangzást kölcsönöz a produkcióinak. Emellett humorral és öniróniával átitatott stílusa is hozzájárul az izgalmas tartalmak létrehozásához. Videóiban gyakran viccelődik a basszusgitáros sztereotípiákon és a zenei kliséken, ami könnyed hangulatot kölcsönöz műsorainak.</p>
  <div class="row">
    <div class="col-md-4">
        <audio controls>
            <source src="music/FRETLESS_BASS_SOLO.mp3" type="audio/mpeg">
            A böngésződ nem támogatja a hangfájlok lejátszását.
        </audio>
        <p class="def-img">Fretles (bund nélküli) basszusgitár szóló</p>
    </div>
    <div class="col-md-4">
        <audio controls>
            <source src="music/ACOUSTIC_BASS_SOLO.mp3" type="audio/mpeg">
            A böngésződ nem támogatja a hangfájlok lejátszását.
        </audio>
        <p class="def-img">Akusztikus basszusgitár szóló</p>
    </div>
    <div class="col-md-4">
        <audio controls>
            <source src="music/Slap_Bass_solo.mp3" type="audio/mpeg">
            A böngésződ nem támogatja a hangfájlok lejátszását.
        </audio>
        <p class="def-img">Slap basszusgitár szóló</p>
    </div>
</div>
</div>

</div>

<script src="https://ajax.googleapis.com/ajax/libs/jquery/3.5.1/jquery.min.js"></script>
<script src="https://cdnjs.cloudflare.com/ajax/libs/popper.js/1.16.0/umd/popper.min.js"></script>
<script src="https://maxcdn.bootstrapcdn.com/bootstrap/4.5.2/js/bootstrap.min.js"></script>

</body>
</html>
    body {
        background-color: #dcd2d2;
        overflow: hidden;
      }
      hr {
        background-color: rgb(77, 0, 0);
        height: 1px;
      }
      .navbar {
        background-color: rgb(77, 0, 0);
      }
      .navbar-nav .nav-link {
        color: white;
      }
      .navbar-brand {
        margin-left: 20%;
      }
      
      /* Stílus a diavetítéshez */
      .carousel-item {
        height: 10vh; /* 10% magasság */
        background-color: white;
      }
      .carousel-item img {
        margin:auto;
        max-height: 10vh;
        max-width: 33vh;        
      }

      /* Görgethető rész */
      .scrollable {
        margin-top: 17vh;
        height: 83vh;
        overflow-y: scroll;
        font-family: Georgia, 'Times New Roman', Times, serif;
      }

      .def-img {
        text-align: center;
      }

      .popup {
        display: none;
        position: absolute;
        background-color: white;
        padding: 10px;
        border: 1px solid #ccc;
        left: 50%;
        transform: translateX(-50%);
      }
      
      .nav-item:hover .popup {
        display: block;
      }
Reasons:
  • Blacklisted phrase (1): youtube.com
  • Blacklisted phrase (2): olá
  • Long answer (-1):
  • Has code block (-0.5):
  • Low reputation (1):
Posted by: babvoka

79622669

Date: 2025-05-15 05:29:17
Score: 3
Natty:
Report link

after a decade, microsoft still can't resolve this problem.

I am having problem with visual studio 2022 startup. app is freezed at loading Microsoft.VisualStudio.TeamFoundation.VersionControl.HatPackage

there is no way to resolve it.

Reasons:
  • Blacklisted phrase (1): I am having problem
  • Low length (0.5):
  • No code block (0.5):
  • Low reputation (1):
Posted by: Jiaqing Tang

79622664

Date: 2025-05-15 05:22:15
Score: 5
Natty:
Report link

I think this is a device-specific Error. We are unable to reproduce it on other devices. Could you try on different devices?

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

79622663

Date: 2025-05-15 05:17:13
Score: 1.5
Natty:
Report link

But nowhere in mdn

mdn is not the official documentation for the JavaScript language. The only source of reliable information is the ECMA specification.

The behavior described in your example will always be the same until a special case is described in the ECMA specification.

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

79622654

Date: 2025-05-15 05:09:11
Score: 5.5
Natty:
Report link

I agree with Michael, why should you not be able to have a link after a end loop activity?

I have attached a picture of an example, why should thgis not work for you?

enter image description here

Reasons:
  • Probably link only (1):
  • Low length (1):
  • No code block (0.5):
  • Ends in question mark (2):
  • Low reputation (1):
Posted by: Ralf Martin

79622653

Date: 2025-05-15 05:06:10
Score: 0.5
Natty:
Report link

To create a monthly recurring event on the first Wednesday using the Google Calendar API, the correct recurrence rule (RRULE) should be FREQ=MONTHLY;BYDAY=1WE, where 1WE explicitly indicates the first Wednesday of each month. Your previous attempts either omitted the ordinal indicator (1) or used conflicting parameters like BYMONTHDAY, which may cause the rule to be misinterpreted. The recurrence rule must be passed exactly in the format ['RRULE:FREQ=MONTHLY;BYDAY=1WE'] within the recurrence field of the event definition. This ensures that the API understands the instruction to place the event on the first Wednesday monthly, avoiding unintended weekly patterns or single occurrences.

Reasons:
  • Long answer (-0.5):
  • Has code block (-0.5):
  • Single line (0.5):
  • Low reputation (1):
Posted by: Manas Parashar

79622649

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

The cmd go mod tidy looks for the most recent go version that the packages we import use and updates go.mod accordingly. This is why we see go 1.23 revert to go 1.23.0 as mentioned here.

The reason is that when we import a module then we are forced to use a more recent Go version than the one in the go.mod file, for example we depend on golang.org/x/tools v0.25.0 which uses Go version 1.22.0, so we need to specify at least 1.22.0 ourselves.

I went through each package and identified those using go 1.23.0. I then replaced them with the version that uses go 1.xx like 1.19. After that, I ran go mod tidy and then ignite chain serve, and the error resolved.

Here’s the go.mod file

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

79622633

Date: 2025-05-15 04:51:07
Score: 4
Natty:
Report link

Windows are still the best to me

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

79622632

Date: 2025-05-15 04:49:06
Score: 1.5
Natty:
Report link

After doing some research, I found the cause of the problem. It was due to a version mismatch between the Platform and the Standard Subsystems Library (SSL).

My application was developed using Platform version 8.3.24.1819 and SSL version 3.1.10.386.

I uninstalled Platform 8.3.24.1819 and installed version 8.3.27.1508, which caused the issue I described in my initial post. From what I understand, this happened because the new platform version is not compatible with the SSL version (3.1.10.386) that was merged into my configuration.

I reinstalled Platform version 8.3.24.1819, ran my configuration again, and now everything works fine. 🙂

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

79622629

Date: 2025-05-15 04:42:04
Score: 2.5
Natty:
Report link

i dont use fire, and i run the 2 recommended script angular suggests and i still have it,

i use angular/core and angular/cli 19.2.8

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

79622623

Date: 2025-05-15 04:39:03
Score: 1.5
Natty:
Report link

use this code block in css file and it will work

.ant-btn .anticon {
  display: inline-flex;
  align-items: center;
}
Reasons:
  • Low length (1):
  • Has code block (-0.5):
  • Low reputation (1):
Posted by: 1361 CSE Tushar Kumar Soni

79622620

Date: 2025-05-15 04:34:02
Score: 0.5
Natty:
Report link

Honestly, for every reader as of today, the Chilkat Tools component is just excellent at this task, reliable and fast, as it is compiled as a COM+ component. I'm using it since 2016 without a glitch for all my works related to JSON and Classic ASP.

I'm using it on my own servers, as being specialized in Classic ASP hosting.
So if your hosting company offers it, go for this component ! It will greatly simplify things

Otherwise, yes the `aspJSON` class may be enough for simple JSON data structures (I used it in the past).

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

79622619

Date: 2025-05-15 04:34:02
Score: 1.5
Natty:
Report link

In my case I had to uninstall the app completely and clean the Project, and then it worked.

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

79622617

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

The concept of machine-independent VM is still surprisingly relevant. I've run into issues optimizing memory on mixed-architecture systems, and using lightweight RAM tools alongside smarter VM abstraction really helps spot inefficiencies faster. Especially when working with smaller memory footprints, tools that let me flush or monitor active page usage (like Mem Reduct) add practical value without needing low-level tuning.

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

79622615

Date: 2025-05-15 04:27:01
Score: 0.5
Natty:
Report link

The issue arises because both TrainA and TrainB are independently looping over the size of a shared ConcurrentLinkedDeque, and since TrainA frequently gets scheduled first, it removes all elements from the queue before TrainB can access them. This results in TrainB repeatedly seeing an empty queue and doing nothing. Additionally, the use of a for loop with station.getQueue().size() is not thread-safe in a concurrent context, as the queue size can change dynamically during iteration. To resolve this, you should consider replacing the ConcurrentLinkedDeque with a thread-safe BlockingQueue such as LinkedBlockingQueue, which naturally handles concurrent producer-consumer scenarios. This ensures that both trains block and wait when the queue is empty, leading to more balanced consumption of passengers by both TrainA and TrainB.

Reasons:
  • Long answer (-0.5):
  • Has code block (-0.5):
  • Single line (0.5):
  • Low reputation (1):
Posted by: Manas Parashar

79622614

Date: 2025-05-15 04:25:00
Score: 1.5
Natty:
Report link

I'm running into a similar issue. If you open localhost and then start the server via the terminal, the server will stay open. Still looking for a better fix, but I hope this helps.

Reasons:
  • Whitelisted phrase (-1): hope this helps
  • Low length (0.5):
  • No code block (0.5):
  • Single line (0.5):
  • Low reputation (1):
Posted by: C.harm

79622607

Date: 2025-05-15 04:19:59
Score: 0.5
Natty:
Report link

From the sandbox, the issue occurs because you're setting the state back to the prop value instead of toggling it.

So, update your state using the new value instead:

const newValue = !enabled;
setEnabled(newValue); // instead of doing setEnabled(value)
Reasons:
  • Low length (0.5):
  • Has code block (-0.5):
  • Low reputation (0.5):
Posted by: Unclebigbay

79622606

Date: 2025-05-15 04:19:59
Score: 2
Natty:
Report link

Im not 100% sure but maybe if you change

rules[i].style['grid-template-column'] = 'auto auto auto';

to

rules[i].style['grid-template-columns'] = 'auto auto auto';

then it might work. The CSS property is grid-template-columns not grid-template-column.

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

79622602

Date: 2025-05-15 04:16:58
Score: 1.5
Natty:
Report link

=INDEX(Sheet1!B:B, MATCH(C4, Sheet1!A:A, 0)) = "Woman"

=INDEX(Sheet1!B:B, MATCH(C4, Sheet1!A:A, 0)) = "Man"

try this i am sure it will work

Reasons:
  • Whitelisted phrase (-1): try this
  • Low length (1):
  • No code block (0.5):
  • Low reputation (1):
Posted by: quesans

79622599

Date: 2025-05-15 04:13:57
Score: 0.5
Natty:
Report link

If you've got a memory issue and it doesn't show up in JavaScript heap stats then there are two main possibilities that I've come across. You could have a large DOM or you could have impact from frequent GC. If the impact is from frequent GC you'll see the time spent in the Chrome Developer Tools timeline Profile. Look in the Bottom Up pane and you can search for "GC". If it's not GC then you might just have large DOM. When JavaScript adds elements to the DOM it can de-reference the elements and clean them up with GC. But the elements are still there in memory and bloating the webpage. Since Chromium uses a separate process for each tab with a 4G heap limit per tab you only can get so big.

There have been a couple times when I thought I had a memory issue but really it was an issue with a tight scripting loop that was hogging CPU. Often this is related to some part of the UI that is constantly "reflowing". Look up "how to diagnose forced reflows" to see what I mean. You might see the message "[Violation] Forced reflow while executing JavaScript took ms" in the Console logs. Other times I've found the root cause of tight scripting loops by observing the Network tool in Chrome Developer Tools and noticing a repeating request. You can inspect the call stack of the repeating transaction in the Initiator tab when you click on a particular request/response.

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

79622591

Date: 2025-05-15 04:04:55
Score: 0.5
Natty:
Report link

WLMKernel.framework should be initialized first. Try calling WlmKernel_FrameworkInit:

void WlmKernel_FrameworkInit();

// Before any calls to WLMKernel:
WlmKernel_FrameworkInit();

I'm not sure about the true signature of this method, but it just works.

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

79622586

Date: 2025-05-15 03:55:53
Score: 1
Natty:
Report link

You'll want to use NODE_CONFIG_ENV to avoid setting NODE_ENV to a value that may confuse the rest of your stack. NODE_ENV is only utilized if NODE_CONFIG_ENV is undefined.

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

79622583

Date: 2025-05-15 03:53:52
Score: 0.5
Natty:
Report link

The TS support module used by node-config is fighting with your testing tools over the extensions feature in nodejs.

https://github.com/node-config/node-config/issues/787

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

79622573

Date: 2025-05-15 03:43:50
Score: 1
Natty:
Report link

I successfully compiled ndpiReader.exe on Windows 11 using the MSYS2 MINGW64 environment, and it runs fine within the MSYS2 shell. I was able to capture live traffic and perform protocol detection without issues.

Then I tried to copy the ndpiReader.exe binary along with the two dependent DLLs (wpcap.dll and Packet.dll) to a native Windows CMD environment. However, when I executed it there, it failed to capture any packets and reported the following error:

ERROR: could not open \\Device\\NPF_{864AF10B-5D3C-4469-B3A6-C6F6644278E6}: No such file or directory

The reason I’m doing this is because I want to test integrating ndpiReader.exe as a Wireshark extcap plugin for custom protocol analysis. However, it seems that the binary compiled under MSYS2 cannot correctly access Npcap interfaces in a standard Windows environment — likely due to MSYS2-specific runtime dependencies or environmental factors.

Reasons:
  • RegEx Blacklisted phrase (1): I want
  • Long answer (-0.5):
  • Has code block (-0.5):
  • Low reputation (1):
Posted by: HsingLI

79622567

Date: 2025-05-15 03:42:50
Score: 1
Natty:
Report link

Hey i think it might be solve your problem, try to adding this expression into your onValueChange property in parent component <Select onValueChange={(value) => field.onChange(value)} value={field.value}>

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

79622566

Date: 2025-05-15 03:29:34
Score: 3.5
Natty:
Report link

qemu doesn't support no-iommu mode for the safety reason. it cannot detect if the device can DMA.

refer:
https://lists.gnu.org/archive/html/qemu-arm/2018-02/msg00226.html

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

79622565

Date: 2025-05-15 03:29:34
Score: 1
Natty:
Report link

I know it has been three years from this, but here it is how I was able to solve this using Flutter and some JavaScript:

  1. In my index.html file inside a <script> tag I added the following function that will override the behavior of navigator.geolocation.watchPosition:
(function() {
    // I am validating if the user is on Windows because I use a different package
    const isWindows = navigator.platform.indexOf("Win") > -1;

    if (isWindows) {
        console.log("Skipping geolocation override on Windows");
        return;
    }

    let watchSuccessCallback = null;

    navigator.geolocation.watchPosition = function(success, error, options) {
        watchSuccessCallback = success;

        window.flutter_inappwebview.callHandler('watchPosition')
            .catch(err => {
                error && error({ code: 1, message: err.toString() });
            });
    };

    // Listen for updates from Flutter and forward them
    window.addEventListener('flutter-position-update', function(event) {
        if (watchSuccessCallback) {
            watchSuccessCallback(event.detail);
        }
    });
})();

On the Dart side from the WebView widget:

StreamSubscription? activeWatcher;

        ...

void dispose(){
    activeWatcher?.dispose();
    super.dispose();
}

        ...

return  InAppWebView(
      onWebViewCreated: (controller) {
        void sendPosition(final Position? position){
        controller.evaluateJavascript(source: """
        window.dispatchEvent(new CustomEvent('flutter-position-update', {
          detail: {
            coords: {
              latitude: ${position?.latitude ?? 0},
              longitude: ${position?.longitude ?? 0},
              accuracy: ${position?.accuracy ?? 100}
            },
            timestamp: ${DateTime.now().millisecondsSinceEpoch}
          }
        }));
      """);
      }
      controller.addJavaScriptHandler(handlerName: 'watchPosition', callback: (final _) async{
        // Cancel existing watcher if any
        if(activeWatcher != null){
          await activeWatcher?.cancel();
        }
        // Start listening for continuous position updates
        activeWatcher = Geolocator.getPositionStream().listen(sendPosition);

        // Return current position immediately, for some reason, if I don't do this, the map doesn't load
        final position = await Geolocator.getCurrentPosition();
        sendPosition(position);
        return {
          'coords': {
            'latitude': position.latitude,
            'longitude': position.longitude,
            'accuracy': position.accuracy
          },
          'timestamp': DateTime.now().millisecondsSinceEpoch
        };
      });
      },
    );

It works for me, if there is something not working as expected, please let me know.

Reasons:
  • Whitelisted phrase (-1): works for me
  • RegEx Blacklisted phrase (2.5): please let me know
  • Long answer (-1):
  • Has code block (-0.5):
  • Low reputation (1):
Posted by: Arturo Espinosa

79622562

Date: 2025-05-15 03:23:31
Score: 3.5
Natty:
Report link

I found out that the package I had cloned had a .gitignore exclusion of *.js so these files weren't being included (facepalm)

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

79622561

Date: 2025-05-15 03:22:30
Score: 2.5
Natty:
Report link

The fix is the javascript was opening another document so just I removed that code for creating a document. The print preview window was having a different document. It worked.

Reasons:
  • Whitelisted phrase (-1): It worked
  • Low length (1):
  • No code block (0.5):
  • Self-answer (0.5):
  • Single line (0.5):
  • Low reputation (1):
Posted by: Purushottam Patil

79622556

Date: 2025-05-15 03:12:26
Score: 3
Natty:
Report link

This maybe an old post one thing u can do know is use something like florence or qwen to do object detection as (https://huggingface.co/microsoft/Florence-2-large)

Another option is to run OWL for object detection
(https://huggingface.co/docs/transformers/en/model_doc/owlv2)

You can finetune the model as well if you want to

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

79622554

Date: 2025-05-15 03:12:26
Score: 0.5
Natty:
Report link

The original get_text_value function was only considering the first and last character of the entire string rather than evaluating each individual word. To correctly calculate the sum of the values corresponding to the first and last letters of every word in the input, the string must first be converted into a list of words using split(). Then, for each word, its first and last characters are matched to the predefined letters list to find their corresponding numeric values in letter_values. These values are summed and accumulated to compute the total text_value. By modifying the loop to iterate over each word instead of each character, and by properly indexing the first and last letters of each word, the function achieves the intended behavior of computing a sum based on all words in the input text.

Reasons:
  • Long answer (-0.5):
  • Has code block (-0.5):
  • Single line (0.5):
  • Low reputation (1):
Posted by: Manas Parashar

79622549

Date: 2025-05-15 03:07:24
Score: 1
Natty:
Report link

VSCode typically looks at ./venv/bin/python which is the python interpreter in the virtual environment in the current workspace of the code editor. I previously opened a parent folder but had difficulty getting the interpreter in a nested child folder. After opening the child as the workspace root, VSCode automatically identified the interpreter

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

79622537

Date: 2025-05-15 02:49:18
Score: 3.5
Natty:
Report link

please provide vercel install command & vercel build command.

i think, @types/node is not installed when vercel is building your application.

it is better to start with vercel build command

Reasons:
  • RegEx Blacklisted phrase (2.5): please provide
  • Low length (0.5):
  • Has code block (-0.5):
  • Low reputation (1):
Posted by: nishat mazumder

79622530

Date: 2025-05-15 02:34:12
Score: 4.5
Natty: 5.5
Report link

yes author, this works. thank you people.

Reasons:
  • Blacklisted phrase (0.5): thank you
  • Low length (1.5):
  • No code block (0.5):
  • Unregistered user (0.5):
  • Single line (0.5):
  • Low reputation (1):
Posted by: user30541810

79622527

Date: 2025-05-15 02:25:08
Score: 3.5
Natty:
Report link

ahhh meh just ran the endpoint on POST-MAN to check what really was the issue and i found out that i have reached my daily limit mehh

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

79622507

Date: 2025-05-15 01:53:55
Score: 0.5
Natty:
Report link

friends. I recently encountered the same error with Robot Framework:

OSError: [WinError 216] This version of %1 is not compatible with the version of Windows you're running. Check your computer's system information and then contact the software publisher.

After some investigation, I discovered that my Chromedriver version did not match my Chrome browser version. I downloaded the Chromedriver version that exactly matches my Chrome browser and replaced the old driver in the directory where I was running my script. After that, everything worked perfectly.

Initially, I thought the problem was related to the operating system, so I downloaded a 32-bit version of Chromedriver, but the error persisted. Now, with the correct Chromedriver version, the error is gone and everything runs smoothly.

If you are using Firefox, a similar issue might occur if your GeckoDriver version does not match your Firefox browser version. Make sure to verify and download the compatible GeckoDriver for your Firefox version to avoid this error.

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

79622490

Date: 2025-05-15 01:32:46
Score: 2.5
Natty:
Report link

I would suggest reading over the documentation on this...
https://www.autohotkey.com/docs/v1/lib/IfExpression.htm
Your 'if' and 'else' statements won't work on the same line.

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

79622483

Date: 2025-05-15 01:21:41
Score: 1
Natty:
Report link

Please note that this needs to be set before importing TensorFlow and will set it for all packages in your Python runtime program.

import os
os.environ['TF_USE_LEGACY_KERAS'] = '1'
Reasons:
  • Low length (0.5):
  • Has code block (-0.5):
  • Low reputation (1):
Posted by: Azher ali

79622482

Date: 2025-05-15 01:21:41
Score: 3.5
Natty:
Report link

What version is the Android Studio?

Such as Android studio 4.1 not available for agp 7.0 above

Reasons:
  • Low length (1):
  • No code block (0.5):
  • Contains question mark (0.5):
  • Starts with a question (0.5): What
  • Low reputation (1):
Posted by: DanHolz

79622465

Date: 2025-05-15 00:55:31
Score: 2
Natty:
Report link

Not sure if you solved this yet, i wouldnt change your cart actions, you can pass line attributes via the demo add to cart component like this

<AddToCartButton
    product={product}
    lines={[
      {
        merchandiseId: selectedVariant.id,
        quantity: 1,
        attributes: 'RANDOMGENID',
      },
    ]}
>
    Add To Bag
</AddToCartButton>

If multiple lines are added in a session the will all have the same id so what be unique ? not sure if this is what you looking for ? if this is what youre wanting then why not give the cart an attribute and not every product, also unsure if this data would possibly be persistent, if you trying to track products added to cart in a single session, that attribute may presist and remain unchanged, if a user starts a new session you may have an order completed with multiple products having different session id's ?

Reasons:
  • Long answer (-0.5):
  • Has code block (-0.5):
  • Ends in question mark (2):
  • Low reputation (1):
Posted by: Jason Loeve

79622458

Date: 2025-05-15 00:46:28
Score: 2.5
Natty:
Report link

I have had the same issue many times.. Jilco's fix is correct - quick solution SFTP or SSH in and edit the /ect/manualmx file in notepad. You will notice its added the hardcoded entries. Delete those lines and save. Fixed! HTH

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

79622452

Date: 2025-05-15 00:30:21
Score: 4
Natty:
Report link

Got a response from the product team: this is a known issue—Fabric doesn't support service principals yet. The team is working on it, but there's no timeline for a fix.

So to everyone who downvoted: this is an actual limitation with the product, and your downvotes didn’t make it magically go away. I’m still not sure what the point of those downvotes was.

Reasons:
  • RegEx Blacklisted phrase (2): downvote
  • No code block (0.5):
  • Self-answer (0.5):
  • Low reputation (1):
Posted by: Ipshita

79622440

Date: 2025-05-15 00:15:15
Score: 2
Natty:
Report link

st.text() still converts some texts into markdown. Especially true if there is $ sign, which is common when the text has dollar amount. It interprets it as an equation/math in markdown.

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

79622437

Date: 2025-05-15 00:07:12
Score: 2.5
Natty:
Report link

yieldings out of services serviced in an optional locks of luktness off the wideness in hand one of the worlds hand to hand off the reasonables of this effects in my charts with the uninstallments of the usages of blood contaminations

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

79622424

Date: 2025-05-14 23:45:05
Score: 1
Natty:
Report link
<?php
$a = "38.5";
$result = bcdiv(bcadd($a, "6", 100), "2", 100);
echo $result;
?>


Solved!!. 
Reasons:
  • Low length (1):
  • Has code block (-0.5):
  • Self-answer (0.5):
Posted by: Asif Iqbal

79622415

Date: 2025-05-14 23:37:02
Score: 1
Natty:
Report link

Sometimes when you format your PC, you disable a bunch of features hoping to make it run faster. One common mistake is turning off the Media Feature Pack. That can trigger errors in other apps.

To fix it:

  1. Open the classic Control Panel.

  2. Click “Turn Windows features on or off.”

  3. Scroll down to Media Features and check the box to enable it.

  4. Click OK and let Windows reinstall those components.

Once you’ve re-enabled Media Features, the error will disappear. People often think they’re just disabling Windows Media Player, but it actually breaks other software that relies on those media libraries.

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

79622408

Date: 2025-05-14 23:33:00
Score: 2
Natty:
Report link

A copy of my answer from here: https://stackoverflow.com/a/79622236/19713874

Another solution from my experience, not a purist one but working: convert both variables to character, and with str_remove() make the formats identical. After that left_join works fine, and the variable can be converted back to date format.

Reasons:
  • Blacklisted phrase (1): stackoverflow
  • Low length (0.5):
  • Has code block (-0.5):
  • Low reputation (1):
Posted by: Yuta Tamberg

79622397

Date: 2025-05-14 23:14:52
Score: 1
Natty:
Report link

The answers given by d4Rk and kalan nawarathne are specific to the Filter Bar in Xcode - however, another way of getting to the file in the project navigator, assuming you have it open in your Editor is to type:
Shift + Command + j

and this will automatically find focus on the opened file in your navigator without you having to type in file name to the Filter Bar

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

79622386

Date: 2025-05-14 22:54:45
Score: 2
Natty:
Report link

An updated ansert tot he same problem:

I was using GetItemCommand with alike parameters as this issue (whithout Key).

The thing is that GetItem search the item by key and you are not providing it.

In my case I not even use a Key as what I want is obtain the key so ... the right answer is ise QueryItemCommand instead of GetItemCommand to query the table by index and non key properties.

Reasons:
  • RegEx Blacklisted phrase (1): I want
  • No code block (0.5):
  • Low reputation (0.5):
Posted by: Eduardo Chávez

79622382

Date: 2025-05-14 22:50:43
Score: 0.5
Natty:
Report link

Ensure that the folder parameter is not empty by adding a valid attribute.

Examples:

New-MgDriveItem -DriveId $Global:driveId -BodyParameter @{
    name = "TestFolder"
    folder = @{ "@odata.type" = "microsoft.graph.folder" }
}
New-MgDriveItem -DriveId $Global:driveId -BodyParameter @{
    name = "TestFolder"
    folder = @{ "childCount" = 1024 }
}

Why This Works

Microsoft Graph PowerShell requires at least one non-empty property inside folder = @{} to properly register the request.

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

79622365

Date: 2025-05-14 22:38:39
Score: 3.5
Natty:
Report link

This answer from Vojir was spot on! I was banging my head for days over this. Thanks a million!

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

79622364

Date: 2025-05-14 22:38:38
Score: 7.5 🚩
Natty: 4
Report link

Does this mean using SKStoreProductViewController always require to show/display modal?

I have a related question here (Registering ads in SKStoreProductViewController without showing any UI) could you help to look?

Reasons:
  • RegEx Blacklisted phrase (3): could you help
  • Low length (1):
  • No code block (0.5):
  • Ends in question mark (2):
  • Low reputation (1):
Posted by: Henry Ryu

79622355

Date: 2025-05-14 22:32:35
Score: 5.5
Natty:
Report link

I'm seeing the same issue. I added that registry key and rebooted my machine, and it did not fix the problem.

Reasons:
  • Low length (1):
  • No code block (0.5):
  • Me too answer (2.5): I'm seeing the same issue
  • Single line (0.5):
  • Low reputation (1):
Posted by: adickinson

79622352

Date: 2025-05-14 22:28:33
Score: 2
Natty:
Report link

This will also work with file names that have spaces in them. I tried to add this to the answer of L. Scott Johnson, but stackoverflow did not allow to do so.

mkdir louder
for f in *.mp3
do
  ffmpeg -i "$f" -filter:a "volume=1.5" "louder/$f"
done
Reasons:
  • Blacklisted phrase (1): stackoverflow
  • Low length (0.5):
  • Has code block (-0.5):
  • Low reputation (1):
Posted by: user279078

79622344

Date: 2025-05-14 22:16:29
Score: 2
Natty:
Report link

I figured it out! simple error on my behalf, I changed basic to Basic Membership on Stripe and views.py but not in my html file! Thank you so much!!!

Reasons:
  • Blacklisted phrase (0.5): Thank you
  • Whitelisted phrase (-2): I figured it out
  • Low length (1):
  • No code block (0.5):
  • Self-answer (0.5):
  • Single line (0.5):
  • Low reputation (1):
Posted by: Chris Harden

79622342

Date: 2025-05-14 22:15:28
Score: 3.5
Natty:
Report link

I have gotten a response from GE support, they have removed StateTime/StateCount from their REST API in the new versions of proficy. However they never removed it from their documentation.........

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

79622341

Date: 2025-05-14 22:14:27
Score: 2.5
Natty:
Report link

Found what the issue was, the size of video file was small for it to be played it video player. Checked with bigger video file size, it worked.

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

79622339

Date: 2025-05-14 22:12:26
Score: 1
Natty:
Report link

Maybe my case will be helpful to someone, I had the same problem and the solution turned out to be very strange. It was happening to me on my app with flavors. When the application before the production build was run on the dev version on the simulator then the application was stucking on the splash screen on release. When the application last run was on the production version everything worked fine after release. I know how it sounds but I tested it several times

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

79622335

Date: 2025-05-14 22:11:25
Score: 0.5
Natty:
Report link

I resolved the problem simply by downgrading the VS Code version to 1.95, because the more recent versions are not compatible with Linux 18.04. I meen you are not able to use ssh remote connection from vscode

Reasons:
  • Whitelisted phrase (-2): I resolved
  • Low length (0.5):
  • No code block (0.5):
  • Single line (0.5):
  • Low reputation (1):
Posted by: Emerson Machado

79622333

Date: 2025-05-14 22:09:24
Score: 2.5
Natty:
Report link

Stripe will automatically add a tax line to the subtotal section when automatic tax is enabled, but when the tax rate is 0% it looks like the line is excluded from the subtotal section. I haven't been able to find a way to force it to show even when the rate is 0% myself so I think this is likely a feature request to Stripe.

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

79622328

Date: 2025-05-14 22:04:22
Score: 4.5
Natty: 4.5
Report link

I don't know c#, but this may help you:

https://github.com/ebrahimraeyat/etabs_api/blob/c585087a62fd635653607e68a80518064aca92e5/design.py#L361

Reasons:
  • Probably link only (1):
  • Low length (2):
  • No code block (0.5):
  • Low reputation (1):
Posted by: Ebrahim Raeiat Roknabdi

79622327

Date: 2025-05-14 22:01:19
Score: 8 🚩
Natty: 5.5
Report link

did you found any solution for this. I also want to get this same data that you shown in pdf.

Reasons:
  • Blacklisted phrase (1.5): any solution
  • RegEx Blacklisted phrase (3): did you found any solution
  • Low length (1):
  • No code block (0.5):
  • Single line (0.5):
  • Starts with a question (0.5): did you
  • Low reputation (1):
Posted by: Tarun Od

79622325

Date: 2025-05-14 22:00:18
Score: 2.5
Natty:
Report link

Another developer emailed me that I must support 320 because of the Display Zoom mode. It’s an accessibility setting that basically makes a newer/larger phone show everything at a larger size. As far as the software is concerned, the device is 320 points wide by scaling everything up ~2.3x or ~3.5x instead of 2x or 3x. Here are some references.

Reasons:
  • Blacklisted phrase (0.5): medium.com
  • No code block (0.5):
  • Self-answer (0.5):
  • Low reputation (1):
Posted by: Chuck

79622323

Date: 2025-05-14 21:53:15
Score: 3.5
Natty:
Report link

I was a problem with Python 3.9. Python 3.10 fixed it.

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

79622321

Date: 2025-05-14 21:48:13
Score: 2
Natty:
Report link

I had a VERY similar need, except they were timesheets and I needed a page break at every Employee Name

If Left(CStr(cell.Value), 5) = "Name:" Then

Tweaked the code a smidge and Voila!

THANK YOU!

Reasons:
  • Blacklisted phrase (0.5): THANK YOU
  • Blacklisted phrase (0.5): I need
  • Low length (0.5):
  • Has code block (-0.5):
  • Low reputation (1):
Posted by: Diana Sampson