79707017

Date: 2025-07-19 07:06:11
Score: 9.5
Natty: 7.5
Report link

Please help me. Are there any other methods?

Reasons:
  • Blacklisted phrase (1): help me
  • RegEx Blacklisted phrase (3): Please help me
  • Low length (1.5):
  • No code block (0.5):
  • Ends in question mark (2):
  • Single line (0.5):
  • Low reputation (1):
Posted by: maker Mr

79707015

Date: 2025-07-19 07:05:11
Score: 4
Natty: 5.5
Report link

If you have specific code or error messages, include them for better help.

Reasons:
  • Blacklisted phrase (0.5): How can I
  • Blacklisted phrase (1): How do I
  • Low length (0.5):
  • No code block (0.5):
  • Contains question mark (0.5):
  • Low reputation (1):
Posted by: Sajjad Barzegar

79706975

Date: 2025-07-19 05:50:50
Score: 3.5
Natty:
Report link

replying to umesh, that shader is still available in the form of a wayback machine search:
https://web.archive.org/web/20210617032819/http://wiki.unity3d.com/index.php?title=SkyboxBlended

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

79706974

Date: 2025-07-19 05:50:50
Score: 0.5
Natty:
Report link

add --host option to you package.json start script like

react-native start --host localhost
Reasons:
  • Low length (1):
  • Has code block (-0.5):
Posted by: Nick Allen

79706967

Date: 2025-07-19 05:42:48
Score: 2.5
Natty:
Report link

For my situation, I followed steps above, tried the whole night with Chrome. However, the json file just don't get downloaded even the console shows it "has" been downloaded. Then, the next day i switch to Safari. It works. Just try another browser if you get stuck.

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

79706964

Date: 2025-07-19 05:35:46
Score: 1.5
Natty:
Report link

For mac users(macOS tabs in 10.12 and newer), you need set "native_tabs" to "preferred".Sublime Text opens a new window, but the OS organizes them in native tabs.

The following response might be helpful to you.

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

79706960

Date: 2025-07-19 05:28:45
Score: 4.5
Natty:
Report link

SMSMobileAPI did it — if you're interested, take a look here: https://smsmobileapi.com/receive-sms/

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

79706950

Date: 2025-07-19 05:07:35
Score: 6.5
Natty:
Report link

I have kind of same problem

i have some SVG icons and i want to change the icons with default (Ant Vue Design Tree) Icons

can someone help me with that?

this is my code i am using tailwind and typescript and this is a component that will show in app.vue
how to change the default icons?

<template>
  <Toolbar class="mt-16" />
  <a-tree
    class="mt-4 rounded-3xl p-2 w-2/3 text-[#171717] bg-[#D9D9D9]"
    v-model:expandedKeys="expandedKeys"
    v-model:selectedKeys="selectedKeys"
    show-line
    :tree-data="treeData"
  >
    <template #switcherIcon="{ switcherCls }"><down-outlined :class="switcherCls" /></template>
  </a-tree>
</template>

<script lang="ts" setup>
import { ref } from 'vue'
import Toolbar from './Toolbar.vue'
import { DownOutlined } from '@ant-design/icons-vue'
import type { TreeProps } from 'ant-design-vue'
const expandedKeys = ref<string[]>(['0-0-0'])
const selectedKeys = ref<string[]>([])
const treeData: TreeProps['treeData'] = [
  {
    title: 'parent 1',
    key: '0-0',
    children: [
      {
        title: 'parent 1-0',
        key: '0-0-0',
        children: [
          {
            title: 'leaf',
            key: '0-0-0-0',
          },
          {
            title: 'leaf',
            key: '0-0-0-1',
          },
          {
            title: 'leaf',
            key: '0-0-0-2',
          },
        ],
      },
      {
        title: 'parent 1-1',
        key: '0-0-1',
        children: [
          {
            title: 'leaf',
            key: '0-0-1-0',
          },
        ],
      },
      {
        title: 'parent 1-2',
        key: '0-0-2',
        children: [
          {
            title: 'leaf',
            key: '0-0-2-0',
          },
          {
            title: 'leaf',
            key: '0-0-2-1',
          },
        ],
      },
    ],
  },
]
</script>
Reasons:
  • Blacklisted phrase (1): help me
  • RegEx Blacklisted phrase (3): can someone help me
  • RegEx Blacklisted phrase (1): i want
  • Long answer (-1):
  • Has code block (-0.5):
  • Ends in question mark (2):
  • Low reputation (1):
Posted by: Abolfazl Soheilyfar

79706943

Date: 2025-07-19 04:59:33
Score: 1.5
Natty:
Report link

Using a build tool like Maven or Gradle is the most maintainable and professional way.

There are many way of shortcut for personal rnd and uses using CMD command prompt:

javac MyApp.java // Compile

java MyApp // Run

java -jar myApp.jar // Run a JAR file

javac -d out src\my\pkg\*.java // Compile to specific folder

OR

jar cfe MyApp.jar my.pkg.MainClass -C out .

Reasons:
  • No code block (0.5):
  • Low reputation (1):
Posted by: Mrinmoy Dey

79706942

Date: 2025-07-19 04:56:32
Score: 1
Natty:
Report link

Today I finally got around to creating multiple schemes for my different environments (local, staging, prod) so I could be a real dev and stop commenting out my different server urls depending on which environment I was building for.

My previews stopped working with the error "Cannot find previews. Check whether the preview is compiled for the current scheme and OS of the device used for previewing...".

Wut.

I must have looked at every possible answer to anything related and tried dozens of "fixes" that didn't work to fix the issue.

I finally figured it out.

The mistake I made that ultimately broke the previews was that I gave each scheme a different "Product Name". If you navigate to your targets build settings: Target -> Build Settings -> Packaging -> Product Name. I wanted each scheme (local, staging, prod) to show up named differently on device. If I had 3 app logos all named MyApp I wouldn't be able to tell them apart. Previews did not like this.

My solution was to keep all "Product Names" the same. Now the previews work for all of my schemes. And the fix to having each scheme show up on device named different was actually to update the "Bundle Display Name" setting: Target -> Build Settings -> Info.plist Values -> Bundle Display Name.

Now my previews work for all schemes and each scheme's app shows up on device with a different name.

:)

cheers

Reasons:
  • Blacklisted phrase (1): cheers
  • Long answer (-1):
  • No code block (0.5):
  • Low reputation (0.5):
Posted by: BradStell

79706940

Date: 2025-07-19 04:56:32
Score: 3.5
Natty:
Report link

use do while loop in main function or use while loop in language function

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

79706937

Date: 2025-07-19 04:53:32
Score: 3
Natty:
Report link

Close your eyes and try using your app.

In other words, try getting into unsighted users' minds. Understand how do they use the web. I'd start from watching some short and sweet videos, e.g.:

Keyboard navigation

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

(!!) Screen reader:

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

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

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

https://www.youtube.com/watch?v=7Rs3YpsnfoI

Screen magnification:

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

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

79706931

Date: 2025-07-19 04:36:29
Score: 1.5
Natty:
Report link

install slugify package npm install slugify

and use like this:

var slugify = require(slugify)
//slugifying your string:
let your-slug = slugify('the article title')
Reasons:
  • Low length (1):
  • Has code block (-0.5):
  • Low reputation (1):
Posted by: Fredrick

79706926

Date: 2025-07-19 04:08:24
Score: 1
Natty:
Report link

When using the Google Maps Embed API, setting the iframe height to less than 200px will hide most of the default UI elements.

<iframe
  style={{
    border: 0,
    width: '100%',
    // Using a height under 200px hides Google Maps Embed UI elements
    height: '199px',
  }}
  tabIndex={-1}
  loading="lazy"
  referrerPolicy="no-referrer-when-downgrade"
  src="https://www.google.com/maps/embed/v1/place?key=API_KEY
    &q=Space+Needle,Seattle+WA"
/>
Reasons:
  • Has code block (-0.5):
  • Starts with a question (0.5): When
  • Low reputation (1):
Posted by: Martin Moreno

79706924

Date: 2025-07-19 04:04:23
Score: 0.5
Natty:
Report link

1 Use Doctrine’s

#[ORM\Column(name: "new_name")]:

#[ORM\Column(name: "new_name", type: "string")] private string $newName;

2. Want Deprecation Warning? → Use Custom Repository:

{
    public function findBy(array $criteria, array $orderBy = null, $limit = null, $offset = null)
    {
        if (isset($criteria['new_name'])) {
            trigger_deprecation('my-lib', '1.0', '"new_name" is deprecated. Use "newName".');
            $criteria['newName'] = $criteria['new_name'];
            unset($criteria['new_name']);
        }

        return parent::findBy($criteria, $orderBy, $limit, $offset);
    }
}

3. Register the custom repository in the entity:

#[ORM\Entity(repositoryClass: DummyEntityRepository::class)]

No breaking changes. Old keys work. Deprecation warning works. Future-safe.

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

79706922

Date: 2025-07-19 04:01:21
Score: 6
Natty:
Report link

Facing the same issues earlier, downgrading the google_sign_in to 6.3.0 fixed it, but I still curious how to use the constructor in the latest version of google_sign_in

Reasons:
  • Low length (1):
  • No code block (0.5):
  • Me too answer (2.5): Facing the same issue
  • Unregistered user (0.5):
  • Single line (0.5):
  • Low reputation (1):
Posted by: iancodez

79706910

Date: 2025-07-19 03:39:16
Score: 2
Natty:
Report link

Whitelabel Error Page

This application has no explicit mapping for /error, so you are seeing this as a fallback.

Sat Jul 19 11:31:43 HKT 2025

There was an unexpected error (type=Not Found, status=404).

No message available

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

79706898

Date: 2025-07-19 03:12:10
Score: 0.5
Natty:
Report link

Try disabling the extension “Python Environments”

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

79706893

Date: 2025-07-19 02:59:08
Score: 3.5
Natty:
Report link

I switched my isp from jio to airtel and surprisingly , it just worked

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

79706878

Date: 2025-07-19 02:29:01
Score: 2
Natty:
Report link

For eight years, I struggled with Alzheimer’s, feeling lost as it stole my memories and clarity. Conventional treatments failed, and I felt hopeless. Then, a friend recommended Earth Cure Herbal Clinic(www .earthcureherbalclinic .com), and though I was skeptical, I decided to try their natural remedies. Slowly, I began to regain my memory and mental clarity. It wasn’t an instant fix, but over time, I felt my mind clear and my sense of self return. Thanks to their treatment, I’m no longer defined by Alzheimer’s. My journey proves that even in the darkest moments, there is hope.

Reasons:
  • Blacklisted phrase (0.5): Thanks
  • Long answer (-0.5):
  • No code block (0.5):
  • Single line (0.5):
  • Low reputation (1):
Posted by: Carven Rand

79706876

Date: 2025-07-19 02:17:59
Score: 3
Natty:
Report link

The above method doesn't work in nuxt4. How to configure cross domain configuration in nuxt4?

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

79706871

Date: 2025-07-19 01:57:54
Score: 1.5
Natty:
Report link

How to switch between Light, Dark, and Tinted appearances in the Xcode Simulator (iOS 18+)

If you're looking to test your app icon or UI under different system appearances in the Xcode Simulator, here's how to toggle between modes. This is especially useful when checking how your app icons or assets behave in Light, Dark, or the new Tinted mode (iOS 18 only):

Steps:

  1. Long press on an empty space on the Home Screen or on any App Icon.

  2. Tap the Edit button in the top-left corner (occasionally appears top-right depending on Simulator version).

  3. Tap Customize.

  4. Choose between Light, Dark, Automatic, or Tinted.

📝 Note: Tinted mode is only available starting in iOS 18.

Reasons:
  • Long answer (-0.5):
  • No code block (0.5):
  • Starts with a question (0.5): How to
  • Low reputation (1):
Posted by: John Parker

79706864

Date: 2025-07-19 01:28:48
Score: 3
Natty:
Report link

There'll be some issue with version of tailwind CSS,it happened with me too, you can continue with previous version

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

79706862

Date: 2025-07-19 01:22:47
Score: 3
Natty:
Report link

Collect 3 or more thread dumps from the driver and any active executors, spacing them about 5 seconds apart. This should help identify where the Spark job is getting stuck.

Reasons:
  • Low length (1):
  • No code block (0.5):
  • Single line (0.5):
  • Low reputation (1):
Posted by: Ángel Álvarez Pascua

79706846

Date: 2025-07-19 00:37:38
Score: 2
Natty:
Report link

Found there was a similar question already answered from a few years back:

Disable Quick Help Xcode 11.5

Another way to disable key binding for it:

Xcode -> Preferences -> 'Key Bindings' Tab -> Search for 'Quick Help' -> Find associated shortcut -> Clear or change the keybinding field

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

79706840

Date: 2025-07-19 00:13:33
Score: 2.5
Natty:
Report link

In modern versions of MySQL (8.4+) you just need to wrap it in parentheses:

CREATE TABLE FOO (
  id CHAR(36) PRIMARY KEY DEFAULT (UUID())
);

See also knowledge base on UUID:
https://dev.mysql.com/blog-archive/storing-uuid-values-in-mysql-tables/

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

79706827

Date: 2025-07-18 23:25:23
Score: 3
Natty:
Report link

Well, I'll be damned... I used to send it to myself using WhatsApp web, then I just open the same chat on my phone, download the file and click it again to execute.

I tried a different method (thanks, @CommonsWare), just plugging the phone and using the file explorer and it works.

My best guess is that my PC does something to the file when sending it through WhatsApp web. Something that my work PC does not do for some reason.

Dark magic!

Reasons:
  • Blacklisted phrase (0.5): thanks
  • No code block (0.5):
  • User mentioned (1): @CommonsWare
  • Self-answer (0.5):
  • Low reputation (0.5):
Posted by: kiel814

79706826

Date: 2025-07-18 23:22:23
Score: 1.5
Natty:
Report link
Reasons:
  • No code block (0.5):
  • Contains question mark (0.5):
  • Low reputation (0.5):
Posted by: şuayip üzülmez

79706819

Date: 2025-07-18 23:05:19
Score: 0.5
Natty:
Report link
wp-content/mu-plugins/jet-wc-orders-status-callback.php
<?php

add_filter( 'jet-engine/listings/allowed-callbacks', static function ( $callbacks ) {
    $callbacks['jet_get_wc_order_status'] = __( 'WC get order status label', 'jet-engine' );

    return $callbacks;
}, 9999 );

/**
 * @param $status
 *
 * @return string
 */
function jet_get_wc_order_status( $status ) {
    if ( ! is_scalar( $status ) ) {
        return '-';
    }

    if ( ! function_exists( 'wc_get_order_statuses' ) ) {
        return $status;
    }

    $labels = wc_get_order_statuses();

    return $labels[ $status ] ?? '-';
}

enter image description here

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

79706818

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

I ended up doing it this way since "localhost" was already part of the default set...


livenessProbe:
  httpGet:
    path: /login/
    port: http
    httpHeaders:
    - name: Host
      value: localhost
Reasons:
  • Low length (0.5):
  • Has code block (-0.5):
  • Low reputation (1):
Posted by: Greg Connor

79706814

Date: 2025-07-18 22:51:16
Score: 0.5
Natty:
Report link

The CSS property box-decoration-break can be used to repeat margins and paddings on all pages.

.page {
    box-decoration-break: clone;
    padding-top: 1.5in;
    padding-bottom: 1.5in;
    page-break-after: always;
}
Reasons:
  • Low length (0.5):
  • Has code block (-0.5):
  • Low reputation (0.5):
Posted by: danbtl

79706804

Date: 2025-07-18 22:32:11
Score: 1
Natty:
Report link

For Synology DSM or other systems running Entware package manager, Miguel's answer is correct, and the specific command to install CPAN is:

opkg install perlbase-cpan
Reasons:
  • Low length (1):
  • Has code block (-0.5):
  • Low reputation (0.5):
Posted by: joshtch

79706799

Date: 2025-07-18 22:24:09
Score: 3
Natty:
Report link

Per the official GitHub for jsPDF (Support marked content #3096), as of July 2025 the ability to add accessibility tags has not been implemented yet.

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

79706786

Date: 2025-07-18 22:00:04
Score: 2
Natty:
Report link

I had a similar issue, and I think I managed to solve it by increasing the value ofnet.netfilter.nf_conntrack_udp_timeout_stream using sysctl. It defaults to 120s, so this may be the setting that causes the timeout error in spark.

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

79706783

Date: 2025-07-18 21:59:03
Score: 0.5
Natty:
Report link

Couldn't get a single command to work on WSL no nodejs so edited this from @ntshetty

#!/bin/bash
# ./monitor.sh main.py &
# $1 passes the filename
# source: @ntshetty stackoverflow.com/a/50284224/3426192
python $1 &             # start
while true
do
    mdhash1=`find $1 -type f -exec md5sum {} \; | sort -k 2 | md5sum`
    sleep 5
    mdhash2=`find $1 -type f -exec md5sum {} \; | sort -k 2 | md5sum`
    if [ "$mdhash1" = "$mdhash2" ]; then
       echo "Identical"
    else
       echo "Change Detected Restarting Web Server"
       pkill -9 -f $1   # get PID to stop
       python $1 &      # restart
    fi
done
echo "Ended"
Reasons:
  • Blacklisted phrase (1): stackoverflow
  • Long answer (-0.5):
  • Has code block (-0.5):
  • Low reputation (0.5):
Posted by: social

79706775

Date: 2025-07-18 21:46:00
Score: 2
Natty:
Report link

I believe you're looking for a window join. If you post the code to generate the above tables it's easier for others to validate

https://code.kx.com/q/ref/wj/

Reasons:
  • Low length (1):
  • No code block (0.5):
  • Low reputation (0.5):
Posted by: Alexander Unterrainer-DefconQ

79706770

Date: 2025-07-18 21:40:59
Score: 1
Natty:
Report link

gcc 7.3, ruby 2.3.7, mysql 5.7, mysql2 gem 0.3.21.. Tried all of above and many more solutions..

The main cause of Segmentation Fault error was encoding: utf8mb4 in database.yml , Once I changed it to utf8 only, the error vanished.

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

79706764

Date: 2025-07-18 21:32:58
Score: 2
Natty:
Report link

Here’s what actually fixed it:

Run npm config set legacy-peer-deps false in the terminal.

Delete node_modules and package-lock.json.

In some cases, you may also need to delete functions the firebase and set it up again.

Run firebase deploy --only functions.

Finally, don’t forget to run npm install inside the functions folder before deploying again.

See the reference where I discovered this: https://stackoverflow.com/a/77823349/23242867

Reasons:
  • Blacklisted phrase (1): stackoverflow
  • Has code block (-0.5):
  • Self-answer (0.5):
  • Low reputation (1):
Posted by: João Pedro

79706763

Date: 2025-07-18 21:30:57
Score: 1.5
Natty:
Report link

How about:

=COLUMNS(TEXTSPLIT(A1,","))

In the case where a cell might be empty, use this:

=IF(A1="",0,COLUMNS(TEXTSPLIT(A1,",")))
Reasons:
  • Low length (1):
  • Has code block (-0.5):
  • Starts with a question (0.5): How
  • Low reputation (0.5):
Posted by: Major Fifth

79706760

Date: 2025-07-18 21:26:56
Score: 1
Natty:
Report link

My reason for this error was due to me putting:-

http_method_names = ["POST", "GET"]

in my view class in app/views.py

Http methods need to be in all small characters:-

http_method_names = ["post", "get"]
Reasons:
  • Low length (0.5):
  • Has code block (-0.5):
  • Low reputation (1):
Posted by: Vishal Raj

79706759

Date: 2025-07-18 21:25:56
Score: 0.5
Natty:
Report link

In Flutter 3.32 you can set enableSplash to false to disable build in gesture and make children clickable.

CarouselView(
    enableSplash: false
)
Reasons:
  • Low length (1):
  • Has code block (-0.5):
Posted by: flutroid

79706750

Date: 2025-07-18 21:20:55
Score: 3
Natty:
Report link

If you wound up here due to having perfectly good JSON but you still get the error above, I have a question for you:

Did you transfer a file from a Windows to a WSL context?

Because if you did, that file is going to be shredded moving from the Windows Ansi /r/n context to the linux Unicode /n standard. If you are using VScode or something, copying the contents of the file over should be enough to get it to convert properly.

Reasons:
  • Blacklisted phrase (1.5): I have a question
  • No code block (0.5):
  • Contains question mark (0.5):
  • Low reputation (0.5):
Posted by: Kirbinator

79706740

Date: 2025-07-18 21:06:52
Score: 1.5
Natty:
Report link

Passing the replacement text through echo -e solved the problem...

$ echo ": HIGHLIGHT some more text   " | sed "s/: HIGHLIGHT.\\{1,\\}\$/$(echo -e $_highlight)/g"
[BLUE]
$
Reasons:
  • Low length (1):
  • Has code block (-0.5):
  • Self-answer (0.5):
  • Low reputation (0.5):
Posted by: Mike T.

79706736

Date: 2025-07-18 20:55:49
Score: 0.5
Natty:
Report link

The solution for this highly specific problem is to not install the "minidriver" part of the SafeNet Authentication Client package . If already installed, uninstall the entire package, then run the installer again, choose "Custom" install and make sure the Minidriver feature set is set to "don't install" (The SafeNet installer doesn't offer a "Modify" option).

This is apparently because the "minidrivers" are the ones that allow the badly designed Windows Smart Card logon system to talk to the SafeNet USB smart cards. With the minidrivers removed, all access is through the SafeNet extensions to the CryptoAPI 2 subsystem that is used by signing tools (including old tools based on the classic CryptoAPI 1).

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

79706721

Date: 2025-07-18 20:41:45
Score: 1
Natty:
Report link
<ul id="playlist" style="display:none;">
        <li data-path="http://99.250.117.109:8000/stream" data-thumbpath="thumbnail of whatever" data-downloadable="no" data-duration="00:00">
    </li>
</ul>
Reasons:
  • Low length (0.5):
  • Has code block (-0.5):
  • Low reputation (1):
Posted by: aboubakar keita

79706710

Date: 2025-07-18 20:28:42
Score: 3.5
Natty:
Report link

@ArcSet was on the right path but I think you want:

'raw.asset1' = Get-Item("c:\temp\lenovo.zip")
Reasons:
  • Low length (1):
  • Has code block (-0.5):
  • User mentioned (1): @ArcSet
  • Looks like a comment (1):
  • Low reputation (1):
Posted by: Orion Poplawski

79706708

Date: 2025-07-18 20:24:41
Score: 7.5
Natty: 4.5
Report link

Did you ever find a solution to this? I'm encountering the same issue.

Reasons:
  • RegEx Blacklisted phrase (3): Did you ever find a solution to this
  • 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: Hanna

79706706

Date: 2025-07-18 20:22:40
Score: 2
Natty:
Report link

You will need the Spring GraphQL plugin , see this Jetbrains article for features.

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

79706702

Date: 2025-07-18 20:18:38
Score: 12.5
Natty:
Report link

Yo I have the exact same problem on that tool, did you solve it ?

Reasons:
  • RegEx Blacklisted phrase (3): did you solve it
  • RegEx Blacklisted phrase (1.5): solve it ?
  • Low length (1.5):
  • No code block (0.5):
  • Me too answer (2.5): I have the exact same problem
  • Ends in question mark (2):
  • Single line (0.5):
  • Low reputation (1):
Posted by: Kebran Baban

79706699

Date: 2025-07-18 20:14:37
Score: 3.5
Natty:
Report link

Some one found a solution to this problem? I access a windows machine via remote desktop and the problem only show on Delphi editor. The object inspect work fine.

Reasons:
  • Low length (1):
  • No code block (0.5):
  • Contains question mark (0.5):
  • Single line (0.5):
  • Low reputation (1):
Posted by: Leonardo Póvoa

79706697

Date: 2025-07-18 20:14:37
Score: 3
Natty:
Report link

Do not use extend as it expects scalar expression not the tabular function calls so use only | myfunction("a","b").

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

79706693

Date: 2025-07-18 20:10:35
Score: 4.5
Natty:
Report link

You can adapt the following Python example

enter image description here

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

79706688

Date: 2025-07-18 20:03:34
Score: 1.5
Natty:
Report link

When VS Code created the mcp.json file, it was created as a user config file on the Windows side by default:
/C:/Users/spencer/AppData/Roaming/Code/User/mcp.json

The file needs to be in your workspace:
/{path to project}/.vscode/mcp.json

Reasons:
  • Low length (0.5):
  • Has code block (-0.5):
  • Self-answer (0.5):
  • Starts with a question (0.5): When
  • Low reputation (0.5):
Posted by: spencerready

79706669

Date: 2025-07-18 19:48:30
Score: 1
Natty:
Report link

The parameter set file .SSV of the SSP standard (a sibling standard to FMI) is intended for this (https://ssp-standard.org/)
If your importing tool supports the SSP standard, you can put the FMU together with a n .SSV parameter file in and SSP file.
The FMI project works on a Layered Standard FMI-LS-REF (https://github.com/modelica/fmi-ls-ref) you will also be able to put one or several  .SSV files in an FMU at a defined subfolder the /extra directory of an FMU.

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

79706668

Date: 2025-07-18 19:48:30
Score: 1
Natty:
Report link

Yes, lv_timer_handler() is definitely being called. But thanks to your information, I discovered that my LVGL initialization only called lv_init() but did not set a tick source.

I now also call lv_tick_set_cb([]() -> uint32_t { return (uint32_t) millis(); }) during initialization.

As a result, my image/JPEG is now drawn correctly even without calling lv_refr_now(NULL).

In the vendor demo, I couldn't find where the tick is set, but I suspect it's done via lv_conf.h.

I also had another issue: I had initialized the display with the wrong frequency (18MHz), which I had taken from another GitHub (espidf) example.

But in the official vendor demo, I saw that 14MHz is used instead.

Now, with the correct frequency, my display and slideshow run smoothly and without flickering. Great. Thanks!

Reasons:
  • Blacklisted phrase (0.5): thanks
  • Blacklisted phrase (0.5): Thanks
  • Long answer (-0.5):
  • Has code block (-0.5):
  • Self-answer (0.5):
  • Low reputation (0.5):
Posted by: ula.uvula

79706652

Date: 2025-07-18 19:39:27
Score: 0.5
Natty:
Report link

def login():

    UserName = input("Inany da Silva Serra: ")

    passw = input("Search the password: ")

    check(Inany, passw)

    return UserName, passw

def check(Inany, password):

    pword = {}

    for line in open('unames_passwords.txt','r'):

        user, password = line.split()

        pword\[user\] = password

        if user == UserName and password == passw:

           return True

           print("Thank you for logging in.")

        else:

           print("Username or password is incorrect")

def main():

    login()

main()
Reasons:
  • Blacklisted phrase (0.5): Thank you
  • Long answer (-0.5):
  • Has code block (-0.5):
  • Low reputation (1):
Posted by: malaemaudia modometan

79706650

Date: 2025-07-18 19:38:26
Score: 0.5
Natty:
Report link

As of 2025, this does seem to work as expected:

demands:
  - Agent.ComputerName -equals $(server)
Reasons:
  • Low length (1):
  • Has code block (-0.5):
Posted by: Justin

79706649

Date: 2025-07-18 19:38:26
Score: 2
Natty:
Report link

Maybe you are using the cart block on your cart page while customizing and overriding the classic cart template. If you want to customize your cart template, you'll need to replace the cart block with the cart shortcode.

[woocommerce_cart]

https://woo.com/document/woocommerce-shortcodes/

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

79706641

Date: 2025-07-18 19:31:25
Score: 0.5
Natty:
Report link

In this extended scenario, the sub-sampling is no longer over contiguous memory blocks, so the data streaming approach will also require script-level looping and will probably not be particularly efficient.

On my setup, looping over Slice2 calls is still ~20% faster than the the single call to ExprSize, but that may be because my computer has an old processor. I did notice, however, that the timing results varied a great deal and seemed to be connected to foreground activity in support of the Display floating window. For optimum and consistent timing results, I think it is important to either delay calls to ShowImage until the very end of the script, or to make sure the Display floating window is closed. Of course, these issues are side-stepped entirely if one runs the script on the foreground thread, instead of in the background, as you currently seem to do.

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

79706637

Date: 2025-07-18 19:26:24
Score: 2
Natty:
Report link

SELECT GENDER, BG, COUNT(*) AS total_count

FROM ( SELECT GENDER, BG FROM DONOR

UNION ALL SELECT GENDER, BG FROM ACCEPTOR ) AS combined

GROUP BY GENDER, BG

ORDER BY  GENDER,  BG;

Reasons:
  • Low length (0.5):
  • No code block (0.5):
  • Low reputation (1):
Posted by: 42_ CM Parishnav Thokal

79706634

Date: 2025-07-18 19:23:23
Score: 1.5
Natty:
Report link

this error because of NaN presents in your Dataframe. I got resolved this by following

df=df.fillna('')


df1 = spark.createDataFrame(df)
Reasons:
  • Low length (1):
  • Has code block (-0.5):
  • Low reputation (1):
Posted by: Anjali Dharmik

79706620

Date: 2025-07-18 19:09:20
Score: 0.5
Natty:
Report link

The other answers have adequately addressed your issue, however I would like to share a novel approach towards the goal of "cleanly acquiring a collection of mutexes". Due to the nature of the synchronized block in Java, it's not feasible to acquire several mutexes in turn (the loop would essentially need to be unrolled).

Object[] mutexes = new Object[4];
for (int i=0; i < 4; i++) mutexes[i] = new Object();
synchronized (mutexes[0]) {
    synchronized (mutexes[1]) {
        synchronized (mutexes[2]) {
            synchronized (mutexes[3]) {
                // all acquired
            }
        }
    }
}

However, if you look at the resultant bytecode, you'll see that each synchronized block is opened with a MONITORENTER instruction and explicitly closed with a MONITOREXIT instruction. If we had direct access to these operations, we could iterate once to enter each monitor and then iterate again to exit each monitor. Is it possible to compile valid Java code that does this? Sort of.

JNI exposes these methods in the form of JNIEnv::MonitorEnter and JNIEnv::MonitorExit. With this in mind, we can do the following:

public final class MultiLock {

    public static void run(Object[] mutexes, Runnable task) {
        monitorEnter(mutexes);
        try {
            task.run();
        } finally {
            monitorExit(mutexes);
        }
    }

    private static native void monitorEnter(Object[] arr);

    private static native void monitorExit(Object[] arr);

}
#include "MultiLock.h" // Header generated by javac
#include <stdlib.h>
#include <stdbool.h>

static inline bool is_valid_monitor(JNIEnv *env, jobject object) {
    return object != NULL;
}

JNIEXPORT void JNICALL Java_MultiLock_monitorEnter(JNIEnv *env, jclass ignored, jobjectArray arr) {
    jsize len = (*env)->GetArrayLength(env, arr);
    jobject next;

    for (jsize i = 0; i < len; i++) {
        next = (*env)->GetObjectArrayElement(env, arr, i);
        if (!is_valid_monitor(env, next)) continue;
        (*env)->MonitorEnter(env, next);
    }
}

JNIEXPORT void JNICALL Java_MultiLock_monitorExit(JNIEnv *env, jclass ignored, jobjectArray arr) {
    jsize len = (*env)->GetArrayLength(env, arr);
    jobject next;
    if (len == 0) return;

    for (jsize i = len - 1; i >= 0; i--) {
        next = (*env)->GetObjectArrayElement(env, arr, i);
        if (!is_valid_monitor(env, next)) continue;
        (*env)->MonitorExit(env, next);
    }
}

And use it like so:

// Load the natives somehow
Object[] mutexes = new Object[4];
for (int i=0; i < 4; i++) mutexes[i] = new Object();
MultiLock.run(mutexes, () -> {
    // all acquired
});
Reasons:
  • Blacklisted phrase (1): Is it possible to
  • Long answer (-1):
  • Has code block (-0.5):
  • Contains question mark (0.5):
  • Low reputation (0.5):
Posted by: Wasabi Thumbs

79706616

Date: 2025-07-18 19:05:18
Score: 0.5
Natty:
Report link

You can disable this rule selectively. This is how to do it in case with Ionic:

"vue/no-deprecated-slot-attribute": ["error", {
  "ignore": ["/^ion-/"],
}],

This way the rule will work for every tag but those starting with ion- .

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

79706615

Date: 2025-07-18 19:04:18
Score: 3
Natty:
Report link

I got the API to database connection to finally work by using the following tutorial

Tutorial: Connect to Azure databases from App Service without secrets using a managed identity 09/30/2024

See step 2. Create a passwordless connection. As the tutorial mentions, I used the Azure Portal to automatically create the connection for a system-assigned managed identity.

enter image description here

enter image description here

enter image description here

enter image description here

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

79706603

Date: 2025-07-18 18:45:14
Score: 1.5
Natty:
Report link

in case this happens to anyone else, strangely it was the variable names. changed PUBLIC_SUPABASE_URL and PUBLIC_SUPABASE_ANON_KEY to VITE_PUBLIC_SUPABASE_URL and VITE_PUBLIC_SUPABASE_ANON_KEY and it works. Weird bc I believe the svelte docs say that PUBLIC_... should work.

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

79706601

Date: 2025-07-18 18:43:13
Score: 0.5
Natty:
Report link

You have to bring out each segment as a cluster group and make it optional.
Each segment is self contained.

"company" \s* : \s* 
( \d+ )                       # (1), Company req'd
(?:
   .*? 
   "address1" \s* : \s* "
   ( .*? )                       # (2), Addr optional
   "
)?
(?:
   .*? 
   "country" \s* : \s* "
   ( .*? )                       # (3), country optional
   "
)?
(?:
   .*? 
   "Name" \s* : \s* "
   ( .*? )                       # (4), Name optional
   "
)?
Reasons:
  • Has code block (-0.5):
  • Ends in question mark (2):
  • High reputation (-1):
Posted by: sln

79706587

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

It is quite interesting actually the Google and Facebook uses it for faster string manipulation purposes the performance of fbstring is better so using of normal std:: string given by c++ is replaced for better performance.we create a file string and in that we include <folly/FBString.h> so when we call std:: string the backend fbstring will work it helps to boost the performance.it simple terms it is like overriding( remember don't question me not having same name and parameters) just explaining in conceptual way for std:: string we are writing our own backend code where it helps to boost our performance but be careful to placing the folder and tell the cmake to include before system include.your aim is to compiler need to give priority to your string file

Reasons:
  • Long answer (-0.5):
  • No code block (0.5):
  • Single line (0.5):
  • Low reputation (1):
Posted by: Revanth Paladugu

79706584

Date: 2025-07-18 18:20:07
Score: 2
Natty:
Report link

This was user error. In the MAC I had to set the channel number correctly in the Sniffer dialog. Once I did that then it worked fine. Also in the Wireshark->Protocol->IEEE802.1 edit decryption keys, the password along with the SSID had to be entered as follows <password>:<ssid>

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

79706581

Date: 2025-07-18 18:19:07
Score: 1
Natty:
Report link

I had the same issue, but recently found out that it is just not possible. As written in this link,

The network inspector only shows requests made through HttpURLConnection. The CIO engine, by design, communicates via TCP/IP sockets.

Requests sent through CIO will not be detectable unless the Android Studio network inspector changes

Reasons:
  • Blacklisted phrase (1): this link
  • Whitelisted phrase (-1): I had the same
  • No code block (0.5):
  • Low reputation (0.5):
Posted by: ChungJungSoo

79706573

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

total is a "reserved word" / "invalid suffix" for Prometheus, see: https://github.com/micrometer-metrics/micrometer/wiki/1.13-Migration-Guide#invalid-meter-suffixes

Reasons:
  • Probably link only (1):
  • Low length (1.5):
  • Has code block (-0.5):
  • Single line (0.5):
  • Starts with a question (0.5): is a
  • High reputation (-1):
Posted by: Jonatan Ivanov

79706568

Date: 2025-07-18 18:10:04
Score: 3
Natty:
Report link

You might want to look at prometheus-rsocket-proxy.

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

79706554

Date: 2025-07-18 17:55:00
Score: 3
Natty:
Report link

textFieldDidChangeSelection is one I use a lot

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

79706543

Date: 2025-07-18 17:41:57
Score: 3
Natty:
Report link

I think the requestMatchers have a higher priority than the method annotations.

I also encountered the same problem. I wanted to validate all resources under the /api/** path, but adding @PermitAll at the /api/abc path was ineffective, and even changing to @PreAuthorize("permitAll()") also didn't work.

Reasons:
  • Low length (0.5):
  • No code block (0.5):
  • User mentioned (1): @PermitAll
  • Low reputation (1):
Posted by: Bunny

79706542

Date: 2025-07-18 17:39:56
Score: 1.5
Natty:
Report link

Yes, absolutely. Gioui is specifically designed for cross-platform mobile development and works well with Go mobile for building Android apps. You can write your UI in Gioui and use gomobile bind or gomobile build to compile it into an Android APK. This is a fully supported and documented approach.

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

79706540

Date: 2025-07-18 17:37:55
Score: 4.5
Natty:
Report link

This is a very elegant solution but I do have one problem: although the final print generated to either the printer or to preview renders the headers/footers correctly the view of the pages in the print preview dialog shows the headers/footers upside-down.

Is there perhaps a solution?

Reasons:
  • Low length (0.5):
  • No code block (0.5):
  • Ends in question mark (2):
  • Unregistered user (0.5):
  • Low reputation (1):
Posted by: Colin

79706534

Date: 2025-07-18 17:30:53
Score: 2.5
Natty:
Report link

If you run the container once with a different password and then restart it with another password, it won’t update the existing database because it’s already initialized. Try removing the old volumes or using a different volume.

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

79706531

Date: 2025-07-18 17:27:52
Score: 1.5
Natty:
Report link

So we need to remove values from table authorization_role column gws_websites and gws_store_groups based on the deleted stores.

Hi Abbas, I do not have gws_websites and gws_store_groups columns in my autorization_role table. I am on Magento 2.4.7-p6. Would you know where this info would be in newer version of Magento. I am using Community-edition.

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

79706526

Date: 2025-07-18 17:19:51
Score: 1
Natty:
Report link

With some regex engines {-1,} is a possible "lazy" quantifier, another option sometimes is to provide a flag for the pattern, signifying that it should default to "lazy" matching, instead of "greedy".

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

79706521

Date: 2025-07-18 17:14:49
Score: 0.5
Natty:
Report link

Yes, you can absolutely create a compelling hierarchy tree from a nested <ul> structure using pure CSS! It's a common and fun challenge. Your current approach is already very close; the key is to fine-tune the positioning and dimensions of the pseudo-elements (::before and ::after) to draw those connecting lines accurately.

Here's a refined CSS solution that should give you the desired command-line tree look, along with an explanation of the adjustments.

HTML

<!DOCTYPE html>
<html lang="en">
<head>
    <meta charset="UTF-8">
    <meta name="viewport" content="width=device-width, initial-scale=1.0">
    <title>CSS Hierarchy Tree</title>
    <style>
        body {
            font-family: monospace; /* For that terminal-like feel */
            color: #333;
            padding: 20px;
        }

        ul {
            list-style: none;
            margin: 0;
            padding-left: 20px; /* Adjust as needed for initial indent */
            position: relative;
        }

        li {
            position: relative;
            padding-left: 20px; /* Space for the horizontal line and text */
            margin-bottom: 5px; /* Small space between items */
            line-height: 1.5; /* Vertical spacing for text */
        }

        /* Horizontal line for each item */
        li::before {
            content: '';
            position: absolute;
            top: 0.75em; /* Adjust to align with the text baseline */
            left: -5px; /* Pull the line slightly to the left to connect with parent's vertical line */
            width: 15px; /* Length of the horizontal line */
            height: 0;
            border-top: 1px solid #999;
        }

        /* Vertical line for connecting child branches */
        li::after {
            content: '';
            position: absolute;
            top: 0.75em; /* Start from the same height as the horizontal line */
            left: -5px; /* Align with the horizontal line start */
            height: calc(100% + 5px); /* Extend beyond the current li to connect to siblings/next parent */
            border-left: 1px solid #999;
        }

        /* Hide vertical line for the last child in a branch */
        li:last-child::after {
            height: 0.75em; /* Only extend to the horizontal line of the current li */
        }

        /* Remove the initial horizontal line for the very first item (if desired) */
        ul:first-child > li:first-child::before {
            border-top: none;
        }
        /* Remove the initial vertical line for the very first item (if desired) */
        ul:first-child > li:first-child::after {
            border-left: none;
        }


        /* Style for the nested ULs to create proper alignment */
        li > ul {
            padding-left: 20px; /* Indent for nested lists */
            margin-top: 5px; /* Adjust spacing between parent and child UL */
        }

        /* Special handling for the vertical line coming *down* from a parent */
        li:not(:last-child) > ul::before {
            content: '';
            position: absolute;
            top: -5px; /* Align with the bottom of the parent's vertical line */
            left: 0;
            height: 10px; /* Length of the connecting vertical line */
            border-left: 1px solid #999;
        }
    </style>
</head>
<body>

    <ul>
        <li>1830 Palmyra
            <ul>
                <li>1837 Kirtland
                    <ul>
                        <li>1840 Nauvoo
                            <ul>
                                <li>1841 Liverpool
                                    <ul>
                                        <li>1849 Liverpool
                                            <ul>
                                                <li>1854 Liverpool
                                                    <ul>
                                                        <li>1871 SaltLakeCity
                                                            <ul>
                                                                <li>1877 SaltLakeCity</li>
                                                            </ul>
                                                        </li>
                                                    </ul>
                                                </li>
                                            </ul>
                                        </li>
                                    </ul>
                                </li>
                                <li>1842 Nauvoo
                                    <ul>
                                        <li>1858 NewYork
                                            <ul>
                                                <li>1874 Iowa
                                                    <ul>
                                                        <li>2013 SaltLakeCity</li>
                                                    </ul>
                                                </li>
                                            </ul>
                                        </li>
                                    </ul>
                                </li>
                            </ul>
                        </li>
                    </ul>
                </li>
            </ul>
        </li>
    </ul>

</body>
</html>

What's Changed and Why?

Let's break down the key adjustments and the thought process behind them:

Tips for Customization

With these adjustments, you should achieve a much cleaner and more accurate visual representation of your timeline/tree structure using only HTML and CSS. Give it a try! You'll love the results.

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

79706520

Date: 2025-07-18 17:10:48
Score: 1.5
Natty:
Report link

this issue may persist due to leftover cached routes or client code still referencing the socket API.

Here's what to check:

1. Make sure there's no socket-related code left in your `_app.js` or components.

2. Remove any rewrites in `next.config.js` for `/api/socket`.

3. Delete `.next`, `node_modules`, and `package-lock.json`, then run:

Reasons:
  • No code block (0.5):
  • Low reputation (1):
Posted by: Aman Rohilla

79706513

Date: 2025-07-18 17:02:46
Score: 4.5
Natty:
Report link

Someone knows the theme used in the print in this post?

Reasons:
  • Low length (1.5):
  • No code block (0.5):
  • Ends in question mark (2):
  • Single line (0.5):
Posted by: Richelly Italo

79706499

Date: 2025-07-18 16:44:41
Score: 1.5
Natty:
Report link

You can find various search parameter listed in YouTube API v2.0 – API Query Parameters like license, restriction, paid_content that can help filter videos that are restricted for such specific reason. Also, if you can use YouTube API v3.0 there is one more option videoSyndicated that will restrict a search to only videos that can be played outside youtube.com.

Reasons:
  • Blacklisted phrase (1): youtube.com
  • Whitelisted phrase (-1.5): you can use
  • No code block (0.5):
  • Single line (0.5):
  • Low reputation (1):
Posted by: aung6466

79706495

Date: 2025-07-18 16:41:40
Score: 1
Natty:
Report link

It needs to be fixed on the Rest API where the double quotes are incorrectly added.

The owner(s) of the project need to change it. Contact them about it so that they are aware and can fix it.

If they cannot/don't fix the issue in a timely manner, and you are not forced to use this Rest API, try find a more stable library for Rest instead.


Its a bad idea to try cater for buggy data by modifying it with more code later on. It just adds unnecessary code, and opens the door to unexpected behavior and accidental data modification.

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

79706494

Date: 2025-07-18 16:41:40
Score: 0.5
Natty:
Report link

You cannot enforce a range on content length. The way you limit the file size is by allowing the client to specify the desired length when requesting the presigned URL, and if the desired length is unacceptable, you just don't give them the presigned URL but error out instead. If acceptable, then you create the presigned URL with "ContentLength": desired_length as a parameter instead.

Reasons:
  • Has code block (-0.5):
  • Single line (0.5):
  • Low reputation (0.5):
Posted by: Julian Mehnle

79706492

Date: 2025-07-18 16:40:39
Score: 0.5
Natty:
Report link

What about this easy to use

extension WidgetExtensions on Widget {
  Page<dynamic> Function(BuildContext, GoRouterState) get transitionPage =>
          (context, state) => CustomTransitionPage<dynamic>(
        key: state.pageKey,
        child: this,
        transitionsBuilder: (context, animation, secondaryAnimation, child) {
          const begin = Offset(1.0, 0.0);
          const end = Offset.zero;
          const curve = Curves.easeInOut;

          final tween = Tween(begin: begin, end: end).chain(CurveTween(curve: curve));
          return SlideTransition(position: animation.drive(tween), child: child);
        }
      );
}

To use

GoRoute(
  path: '/',
  pageBuilder: HomeScreen().transitionPage
),
Reasons:
  • Long answer (-0.5):
  • Has code block (-0.5):
  • Starts with a question (0.5): What
  • Low reputation (1):
Posted by: JS B

79706487

Date: 2025-07-18 16:37:39
Score: 3
Natty:
Report link

This was user error. I had to set the LWIP_TCP_KEEPALIVE in the compile options like -DLWIP_TCP_KEEPALIVE. Once I did this then I did not get any errors when setting the options.

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

79706479

Date: 2025-07-18 16:26:36
Score: 1
Natty:
Report link

A lot of years are gone but very likely the issue could led to how an https request is done using Winhttp or in general, HttpSendRequest.

After the Certificate exchange and encrypted handshake message Windows will try to verify if what has been received is valid.
To do this, it first check certificate in "Trusted Root Certification Authorities" and in case of failure will start to "retrieve Third-Party Root Certificate from Network".

So a called to DNS and external address is performed. The problem is that in some environment maybe the calls are dropped and so your https request get stacked until a timeout.

The timeout should be 15 seconds and then the request is unlocked.

This behaviors it's completely independent from the options you can set on the HttpSendRequest about ignoring certificates because this action will be execute only later in time.

Knowing the request workflow there can be multiple way to fix it.

One is discussed in these articles:

basically set at HKEY_LOCAL_MACHINE\SOFTWARE\Policies\Microsoft\SystemCertificates\AuthRoot:

Another way is to fix the certificate, maybe a self signed and add it correctly onto the windows certificate storage at "Trusted Root Certification Authorities" at machine level certificates.

The 15 seconds in real are a default value that can be override from local group policy:
enter image description here

Bonus:

to better understand the process of certificates a specific log on windows can be enabled following the instructions here https://learn.microsoft.com/en-us/previous-versions/windows/it-pro/windows-vista/cc749296(v%3dws.10)

Reasons:
  • Long answer (-1):
  • No code block (0.5):
  • Filler text (0.5): 00000000
  • Low reputation (1):
Posted by: GHA

79706471

Date: 2025-07-18 16:19:35
Score: 1
Natty:
Report link

You've described a classic case of “same code, different behavior” due to platform change—and that can be tricky to pin down. Let’s break it down and explore possibilities:


🧠 What Could Be Going Wrong?

🔴 RHEL vs. Alpine: Base Image Implications

🚦 HttpContext / Redirect Behavior


🔬 Diagnostics You Can Perform

Here are ways to isolate the issue:

ToolUse Casedotnet-countersTrack memory, GC, threadpool, HTTP counters in real-timedotnet-gcdumpSnapshot GC heap and analyze retained objectsdotnet-traceCapture traces to explore what’s allocating/proc/<pid>/smapsCheck actual memory usage per process, native vs managedK8s metrics (Prometheus + Grafana)Trend analysis over time per pod


🔍 Code-Level Things to Watch For


🧰 Suggestions


This issue isn’t likely caused by one line of code—it’s the interaction of the runtime with the new OS environment. Want help analyzing a memory dump or building test scaffolds to narrow it down? I’d be glad to collaborate.

Reasons:
  • Blacklisted phrase (1): What Could Be
  • Long answer (-1):
  • Has code block (-0.5):
  • Contains question mark (0.5):
  • Low reputation (1):
Posted by: Tanveer Hussain Khan

79706461

Date: 2025-07-18 16:10:32
Score: 1
Natty:
Report link
Yo he necesitado realizar esta adaptación:

::ng-deep {
  .make-ag-grid-header-sticky {
    .ag-root-wrapper {
      display: unset;
    }

    .ag-root-wrapper-body {
      display: block;
    }

    .ag-root {
      display: unset;

    }

    .ag-header{
      top: 0;
      background-color: var(--ag-header-background-color);
      position: sticky !important;
      z-index: 100;
    }
  }
}
Reasons:
  • Has code block (-0.5):
  • Unregistered user (0.5):
  • Low reputation (1):
Posted by: IneyCat

79706456

Date: 2025-07-18 16:08:32
Score: 2
Natty:
Report link

To install PyTorch and OpenCV using a fixed Conda channel order, you need to:

  1. Set channel priorities explicitly (so Conda doesn't auto-select from multiple sources).

  2. Use conda config to pin preferred channels.

  3. Install packages while preserving that order.

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

79706453

Date: 2025-07-18 16:06:31
Score: 1
Natty:
Report link

the answer by itzmekhokan works, but just in case you need to disable the email later than woocommerce_email hook fired:

remove_action( 'woocommerce_created_customer_notification', array( WC()->mailer(), 'customer_new_account' ), 10, 3 );
Reasons:
  • Low length (0.5):
  • Has code block (-0.5):
  • Low reputation (1):
Posted by: geminorum

79706448

Date: 2025-07-18 16:05:31
Score: 1.5
Natty:
Report link

A comprehensive, cross-platform React Native wrapper for secure key-value storage using native security features of Android and iOS. It supports biometric authentication, hardware-backed encryption, and deep platform integrations such as Android StrongBox, EncryptedSharedPreferences, and iOS Secure Enclave via the Keychain.
There are the lib:
rn-secure-keystore

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

79706440

Date: 2025-07-18 15:59:30
Score: 3
Natty:
Report link

Same for me, quasar is not adding the styles with safe insets, fixed it temporarily by just adding the iPhone inset utility class to the body, until a proper fix is out.

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

79706437

Date: 2025-07-18 15:57:29
Score: 1
Natty:
Report link
В новой версии moviepy убрали editor 
https://zulko.github.io/moviepy/getting_started/updating_to_v2.html

from moviepy import VideoFileClip
clip = VideoFileClip("my_video.mp4")
print( clip.duration )
Reasons:
  • Low length (0.5):
  • Has code block (-0.5):
  • Low reputation (1):
Posted by: Frizzi

79706433

Date: 2025-07-18 15:49:27
Score: 0.5
Natty:
Report link

Try following all your subplot-filling with something like:

ax[0,0].legend_.remove()
handles, labels = ax[0,0].get_legend_handles_labels()
fig.legend(handles, labels, loc='upper left', bbox_to_anchor=(0.9, 1))
Reasons:
  • Low length (0.5):
  • Has code block (-0.5):
  • Low reputation (0.5):
Posted by: S. Jessen

79706432

Date: 2025-07-18 15:48:27
Score: 0.5
Natty:
Report link

I finally found the root cause for ElixirLS not working for the existing project.

$ MIX_ENV=test iex -S mix
Erlang/OTP 27 [erts-15.2.3] [source] [64-bit] [smp:16:16] [ds:16:16:10] [async-threads:1] [jit:ns]

** (File.Error) could not read file "/home/jan/Workspace/project-b/config/test.exs": no such file or directory

I renamed test for that project, but ElixirLS requires it. Adding config/test.exs solved the issue for me.

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

79706431

Date: 2025-07-18 15:47:27
Score: 3
Natty:
Report link

Nested axis guides have been deprecated from ggh4x - not sure if there is another option left.

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

79706421

Date: 2025-07-18 15:38:24
Score: 2.5
Natty:
Report link

The included codes from files are macro facilities of the C language that allow both single and multiple inclusions, as can be seen in the following example. It does not necessarily to have a specific file name extension such as ".h" unless we want to indicate a code with header content, etc.

enter image description here

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

79706418

Date: 2025-07-18 15:35:24
Score: 3
Natty:
Report link

One cannot send a body with GET, it’s a limitation imposed by the HTTP protocol. Usually APIs accept data with POST, so I would try that.

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

79706415

Date: 2025-07-18 15:32:23
Score: 2
Natty:
Report link

Because using Property Let, Get and Set, we can have the same name for the read and the write method. Usually in a programming language your function identifier must be non-ambiguous. You can't use the same name in one specific scope. Using Property, the "visible" name is the same and the "context" of the code will "decide" what function is called. I believe that under the hood VBA will name the functions with different names.

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