79666548

Date: 2025-06-15 12:46:42
Score: 1
Natty:
Report link

This happens when GitLab's default GIT_CLEAN_FLAGS includes -ffdx. Override this:

variables:
  UV_CACHE_DIR: .uv-cache
  GIT_STRATEGY: fetch
  GIT_CLEAN_FLAGS: none

This will preserve untracked files like .uv-cache/ between pipeline runs.

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

79666545

Date: 2025-06-15 12:43:42
Score: 1.5
Natty:
Report link

I also encountered this issue. I tried all of the methods provided here, but nothing worked. The packages were being installed under Python 3.13, but my VS Code interpreter was set to Python 3.12. Once I changed my interpreter to Python 3.13, everything worked.

To change the interpreter, press Ctrl+Shift+P in VS Code and type Python: Select Interpreter, then select the Python 3.13 interpreter.

Reasons:
  • Blacklisted phrase (1): but nothing work
  • Has code block (-0.5):
  • Low reputation (1):
Posted by: pns

79666542

Date: 2025-06-15 12:40:41
Score: 1
Natty:
Report link

Wild guess ... If you are using SQLLite or any JDBC provider that embeds their own DLL's/.so's in the jar and exports to $TMP - That might be an issue of $TMP is set as noexec.

When the .so/.dll can't load ... It may manifest as a classnotfound since the class didn't initialize we can cause a chain reaction to other classes not loading.

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

79666541

Date: 2025-06-15 12:39:40
Score: 4.5
Natty: 4.5
Report link

https://medium.com/@paul.pietzko/trust-self-signed-certificates-5a79d409da9b

this is the best solution I could find for this issue

Reasons:
  • Blacklisted phrase (0.5): medium.com
  • Probably link only (1):
  • Low length (1.5):
  • No code block (0.5):
  • Low reputation (1):
Posted by: Hani.H

79666540

Date: 2025-06-15 12:35:39
Score: 0.5
Natty:
Report link

Solved: The 'Ghost in the Manifest' was the root cause

After an exhaustive debugging process, I have found the solution. The problem was not with the Julia installation, the network, the antivirus, or the package registry itself, but with a corrupted Manifest.toml file inside my project folder.

Why the Error was So Misleading

The error ERROR: expected package ... to be registered was a symptom, not the cause. Here is the sequence of events that led to the unsolvable loop:

  1. My very first attempt to run Pkg.instantiate() failed. This might have been due to a temporary network issue or the initial registry clone failing.

  2. This initial failure left behind a half-written, corrupted Manifest.toml file. This file is the project's detailed "lock file" of all package versions.

  3. Crucially, this corrupted manifest contained a "memory" of the package it first failed on (in my case, Arrow.jl).

  4. From that point on, every subsequent Pkg command (instantiate, up, add CSV, etc.) would first read this broken Manifest.toml. It would see the "stuck" entry for Arrow and immediately try to resolve it before doing anything else, causing it to fail with the exact same error every single time.

This explains the "impossible" behavior where typing add CSV would result in an error about Arrow. The package manager was always being forced to re-live the original failure because of the corrupted manifest.

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

79666539

Date: 2025-06-15 12:34:39
Score: 3
Natty:
Report link

Wasted days on this issue too.

See why the problem exists here:
https://github.com/nxp-imx/meta-imx/blob/styhead-6.12.3-1.0.0/meta-imx-bsp/recipes-kernel/linux/linux-imx_6.12.bb#L56-L58

Resolution here:
https://community.nxp.com/t5/i-MX-Processors/porting-guide-errors/m-p/1578030/highlight/true#M199614

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

79666530

Date: 2025-06-15 12:12:29
Score: 7 🚩
Natty:
Report link

I am beginning with Jupyter lab use and I have similar issue running on Windows (please see below).

May someone explain what does it means and how to fix it ?

C:\Users\paulb>jupyter lab
Fail to get yarn configuration. C:\Users\paulb\AppData\Local\Programs\Python\Python313\Lib\site-packages\jupyterlab\staging\yarn.js:4
(()=>{var Qge=Object.create;var AS=Object.defineProperty;var bge=Object.getOwnPropertyDescriptor;var Sge=Object.getOwnPropertyNames;var vge=Object.getPrototypeOf,xge=Object.prototype.hasOwnProperty;var J=(r=>typeof require<"u"?require:typeof Proxy<"u"?new Proxy(r,{get:(e,t)=>(typeof require<"u"?require:e)[t]}):r)(function(r){if(typeof require<"u")return require.apply(this,arguments);throw new Error('Dynamic require of "'+r+'" is not supported')});var Pge=(r,e)=>()=>(r&&(e=r(r=0)),e);var w=(r,e)=>()=>(e||r((e={exports:{}}).exports,e),e.exports),ut=(r,e)=>{for(var t in e)AS(r,t,{get:e[t],enumerable:!0})},Dge=(r,e,t,i)=>{if(e&&typeof e=="object"||typeof e=="function")for(let n of Sge(e))!xge.call(r,n)&&n!==t&&AS(r,n,{get:()=>e[n],enumerable:!(i=bge(e,n))||i.enumerable});return r};var Pe=(r,e,t)=>(t=r!=null?Qge(vge(r)):{},Dge(e||!r||!r.__esModule?AS(t,"default",{value:r,enumerable:!0}):t,r));var QK=w((GXe,BK)=>

SyntaxError: Unexpected token {
    at createScript (vm.js:56:10)
    at Object.runInThisContext (vm.js:97:10)
    at Module._compile (module.js:549:28)
    at Object.Module._extensions..js (module.js:586:10)
    at Module.load (module.js:494:32)
    at tryModuleLoad (module.js:453:12)
    at Function.Module._load (module.js:445:3)
    at Module.runMain (module.js:611:10)
    at run (bootstrap_node.js:387:7)
    at startup (bootstrap_node.js:153:9)

[W 2025-06-15 13:54:15.948 LabApp] Could not determine jupyterlab build status without nodejs
Reasons:
  • Blacklisted phrase (1): I have similar
  • RegEx Blacklisted phrase (1.5): how to fix it ?
  • Long answer (-1):
  • Has code block (-0.5):
  • Me too answer (2.5): I have similar issue
  • Ends in question mark (2):
  • Unregistered user (0.5):
  • Low reputation (1):
Posted by: Paul B

79666527

Date: 2025-06-15 12:04:27
Score: 1.5
Natty:
Report link

If you are using Github actions for deployment then you should checkout this

https://github.com/marketplace/actions/git-restore-mtime

This action step restores the timestamp very well and post that S3 sync will only upload the last updated file and not the entire directory

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

79666511

Date: 2025-06-15 11:19:18
Score: 1.5
Natty:
Report link

I was reading the 2024 spec version, which had a known inconsistency since 2022. It's been changed again to say that that ToPropertyKey is delayed on the a[b] = c construction; in reality, it is delayed on various other update expressions too. This '''specification''' is such a joke.

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

79666502

Date: 2025-06-15 11:07:15
Score: 1.5
Natty:
Report link

For anyone who finds this and still looking for help, based on the above and following this documentation from Cypress and had to customize it a bit for Task

https://docs.cypress.io/app/tooling/typescript-support#Types-for-Custom-Commands

Ended up with a cypress.d.ts file in my root with the following to dynamically set response types for the specific custom task name and not override all of "task".

declare global {
    namespace Cypress {
        interface Chainable {
            task<E extends string>(
                event: E,
                ...args: any[]
            ): Chainable<
                E extends 'customTaskName'
                    ? CustomResponse
                    : // add more event types here as needed
                      unknown
            >
        }
    }
}

Probably a chance for a cleaner approach if you have a large number of custom tasks, maybe a value map or something of the like. For now i am moving on cause way too much time wasted on this.

Reasons:
  • Blacklisted phrase (1): this document
  • Blacklisted phrase (1): looking for help
  • Long answer (-0.5):
  • Has code block (-0.5):
  • Low reputation (0.5):
Posted by: sean6bucks

79666488

Date: 2025-06-15 10:42:10
Score: 2
Natty:
Report link

I had the same issue with windows (11) security blocking python from writing files inside my OneDrive Documents folder. Had to override the setting.

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

79666482

Date: 2025-06-15 10:32:08
Score: 1
Natty:
Report link

Alternatively in modern Excel, you can keep the VBA function as is and rely on Excel function MAP:

=SUM(1 * (MAP(AC3:AD3; LAMBDA(MyCell; GetFillColor(MyCell))) = 15))

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

79666479

Date: 2025-06-15 10:25:06
Score: 1
Natty:
Report link

When the key is null the default partitioner will be used. This means that, as you noted, the message will be sent to one of the available partitions at random. A round-robin algorithm will be used in order to balance the messages among the partitions.

After Kafka 2.4, the round-robin algorithm in the default partitioner is sticky - this means it will fill a batch of messages for a single partition before going onto the next one.

Of course, you can specify a valid partition when producing the message and it will be respected.

Ordering will not differ - messages will get appended to the log in the same order by their arrival time regardless if they have a key or not.

Reasons:
  • Long answer (-0.5):
  • No code block (0.5):
  • Starts with a question (0.5): When the
  • Low reputation (0.5):
Posted by: pyordanov11

79666468

Date: 2025-06-15 10:15:03
Score: 4.5
Natty: 4.5
Report link

Thankyou for the help. I want to change the comment border on the workspace, because when choosing the recommended settings from dart I feel the comment border takes up too much space.

Reasons:
  • Blacklisted phrase (1): Thankyou
  • RegEx Blacklisted phrase (1): I want
  • Low length (0.5):
  • No code block (0.5):
  • Single line (0.5):
  • Low reputation (1):
Posted by: JIM Mataram

79666458

Date: 2025-06-15 10:00:59
Score: 2
Natty:
Report link

Temporarily return 'Text.From(daysDiffSPLY)' instead of the first null and you'll understand: You are comparing daysDiffSPLY and not daysDiffTY so you should compare it to [0, 6], [7, 34], ... instead of [365, 371], [372, 399], etc.

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

79666456

Date: 2025-06-15 09:57:58
Score: 3.5
Natty:
Report link

Take a look at this repository: https://github.com/VinamraVij/react-native-audio-wave-recording. I've implemented a method for recording audio with a waveform display and added animations that sync with the waveform and audio during recording. You may need to adjust the pitch values to improve the waveform visualization, as the pitch settings vary between Android and iOS.

Checkout this video demo https://www.youtube.com/watch?v=P3E_8gZ27MU

Reasons:
  • Blacklisted phrase (1): youtube.com
  • Blacklisted phrase (1): this video
  • No code block (0.5):
  • Low reputation (1):
Posted by: Vinamra Vij

79666450

Date: 2025-06-15 09:46:56
Score: 1
Natty:
Report link

Suggestion to reinstall SELinux, for me it's always PERMISSIVE by default. If you reboot and after booting in in config says it's DISABLED that means the system itself stops this mode from doing this try: chown $USER:$USER /etc/selinux/config, and if that does not help try: chmod +x /etc/selinux/config.

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

79666449

Date: 2025-06-15 09:43:55
Score: 2.5
Natty:
Report link

Formatnumber is to do the opposite i.e. number to string,

The best would be FINDDECIMAL which will convert the first occurring numeric to number from the string field

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

79666448

Date: 2025-06-15 09:41:55
Score: 3
Natty:
Report link

If you’ve been exploring the world of crypto lately, you’ve probably seen people talk about NXRA crypto. But what exactly is it—and why does it matter?

In this friendly, step-by-step guide, we’ll explore what NXRA is, how it works, where it fits in the future of finance, and why people are investing in it right now. Whether you’re a total beginner or a seasoned crypto fan, this article will help you understand the real value behind NXRA crypto—in simple terms.

Read more

Reasons:
  • Blacklisted phrase (1): this article
  • No code block (0.5):
  • Contains question mark (0.5):
  • Low reputation (1):
Posted by: Husnain Ansari

79666437

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

here is a simple option, just add these two lines to your CSS

details > div {
   border-radius: 0 0 10px 10px;
   box-shadow: 3px 3px 4px gray;
}

see a working example on my test site

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

79666433

Date: 2025-06-15 09:20:50
Score: 2
Natty:
Report link

You're trying to use config API that does not exist. I couldn't find documentations for that section.

Solution for your case - write your custom plugin and modify gradle settings as string there. It is described here https://github.com/expo/eas-cli/issues/2743

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

79666430

Date: 2025-06-15 09:09:47
Score: 0.5
Natty:
Report link

Modifying privacy settings in section "Global" applies to the current Windows session (and thus requires that every guy using this file applies the same setting). I would suggest to keep "Combine data according to each file's Privacy level settings" here.

If data handled by this one file are purely internal, then you can go to privacy settings in section "Current workbook" and select "Ignore the Privacy levels...". This will apply to all its users provided that they kept the "global" setting mentioned here above.

This is safer as you might have some other files using the web connector (now or in the future).

Now if your "PartNumber" comes from an Excel range, you could right click on its query and create a function "GetPartNumber" (without any input parameter). Then use "GetPartNumber()" instead of PartNumber in your query step "Query"; the firewall should not be triggered.

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

79666417

Date: 2025-06-15 08:46:42
Score: 2
Natty:
Report link

Just got the same error on Visual Studio 2022 using PowerShell Terminal. Fixed by switching the terminal from "Developer PowerShell" to "Developer Command Prompt".

enter image description here

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

79666415

Date: 2025-06-15 08:41:40
Score: 4
Natty: 5
Report link

I just found this. Thank you for your explanation.

Reasons:
  • Blacklisted phrase (0.5): Thank you
  • Low length (1.5):
  • No code block (0.5):
  • Single line (0.5):
  • Low reputation (1):
Posted by: Bill Ritzel

79666414

Date: 2025-06-15 08:39:40
Score: 2
Natty:
Report link

$host_name = 'db5005797255.hosting-data.io';

$database = 'dbs4868780';

$user_name = 'xxxxxxxxx';

$password = 'xxxxxxxxxxxxxxxxxxxx';

$link = new mysqli($host_name, $user_name, $password, $database);

if ($link->connect_error) {

die('\<p\>Failed to connect to MySQL: '. $link-\>connect_error .'\</p\>');

} else {

echo '\<p\>Connection to MySQL server successfully established.\</p\>';

}

?>

Reasons:
  • Has code block (-0.5):
  • Contains question mark (0.5):
  • Unregistered user (0.5):
  • Filler text (0.5): xxxxxxxxx
  • Filler text (0): xxxxxxxxxxxxxxxxxxxx
  • Low reputation (1):
Posted by: Neil

79666402

Date: 2025-06-15 08:13:34
Score: 3
Natty:
Report link

Just finished programming related to C++ and SFML today..Maybe you can try CmakeLists and some configuration files😝

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

79666396

Date: 2025-06-15 08:03:32
Score: 3
Natty:
Report link

I my case it was because of goAsync(). If you take resultCode before goAsync() call it contains RESULT_OK. But if you take if after goAsync() call it contains 0

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

79666395

Date: 2025-06-15 07:57:31
Score: 1
Natty:
Report link

There was nothing wrong with perspective projection matrix. There was small issue in clipping algorithm. z-near should be zero because I was using vulkan's canonical view volume. An other issue was that P2.x > P2.w & P2.x < -P2.w wasn't impossible because viewing frustum is inverted when z < 0. So I just needed to clip from near plane first and the from other planes.

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

79666385

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

num = 1234

return [ int(x) for x in str(num) ]

Convert num to str, iterates and converts each int to str and adds to a list.

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

79666382

Date: 2025-06-15 07:34:25
Score: 2
Natty:
Report link

I my case, it was because I failed to set the correct value in the.plist file for each flavor or environment. I accidentally set the value to the project Info.plist intead of the OneSignalNotificationServiceExtension/Info.plist.

Screenshot of my xcode settings

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

79666381

Date: 2025-06-15 07:34:24
Score: 4.5
Natty:
Report link

We're having the same issue on Xcode 26 beta 1.

It is hidden on Xcode 16.4 but not on 26 beta 1. I did not see any changes in the API in the new update So I think this is a bug related to the OS or Xcode.

I'm submitting a bug for Apple about it.

Reasons:
  • Low length (0.5):
  • No code block (0.5):
  • Me too answer (2.5): having the same issue
  • Low reputation (1):
Posted by: Bar Malka

79666377

Date: 2025-06-15 07:19:21
Score: 1.5
Natty:
Report link

I would go for outlining the polygon with line-to's first, then fill them with pixels, then check if my point is inside them. I know that it may go slower than the algorithm that suppose to run but however I prefer being comfortable with my code when dealing with such problems. To be honest, that algorithm is not something like an idea that comes very quick then implement very clearly.

The line-to is here and fill function is here. Fill will not work with a concave polygon. It may need some update.

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

79666353

Date: 2025-06-15 06:35:11
Score: 4
Natty:
Report link

Docker desktop shows the sizes of layers in the image:

enter image description here

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

79666341

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

I am also experiencing the same issue, and looking for someone to resolve my issue.

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

79666333

Date: 2025-06-15 05:59:02
Score: 1
Natty:
Report link

Vertically centered and horizontally centered

.parent div {
  display: flex;
  height: 300px;
  width: 100px;
  background-color: gainsboro;
  align-items: center;
  justify-content: center:
}
Reasons:
  • Low length (0.5):
  • Has code block (-0.5):
  • Low reputation (1):
Posted by: Sumit Paul

79666332

Date: 2025-06-15 05:57:02
Score: 1.5
Natty:
Report link

To vertically center the text inside the div's you need to give display: flex and align-items: center to .parent div this will make their text vertically center, you can also give justify-content: center to horizontally center them.

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

79666322

Date: 2025-06-15 05:30:56
Score: 1
Natty:
Report link

You can check if the e.HasMorePages is true and get all the pages from an array and print it. Something like this.

if(e.HasMorePages)
{
    for(int i =0; i < PagesArray.Length; i++)
    {
      YouPrintMethod(PagesArray[i]);
    }
}

Hope my tip can help you.

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

79666319

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

Possible Causes

1. File Path or Name Issue: Ensure the file path and name match the item registry name (`chemistrycraft:items\bottle_of_air.json`).

2. JSON Syntax Error: Verify the JSON syntax is correct (yours appears to be).

3. Missing Model Key: Although your file structure looks standard for item models, some model types might require a "model" key. Consider checking Minecraft Forge documentation or examples.

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

79666318

Date: 2025-06-15 05:24:55
Score: 3.5
Natty:
Report link

I install node.js 16 and other required packages but I don't know what to do with package manager

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

79666315

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

With the StringContent we have to read it

using System.Net.Http;
using System.Text;
using System.Threading.Tasks;

public async Task ReadStringContentAsync()
{
  
    string contentString = await theStringContent.ReadAsStringAsync();

    //do something with the string
}
Reasons:
  • Low length (0.5):
  • Has code block (-0.5):
  • Low reputation (0.5):
Posted by: FSO931s

79666310

Date: 2025-06-15 05:11:51
Score: 4
Natty:
Report link

Same problem after long long time, I got exact same opinion with you I could not deal with child_pricess and all of the other packages, it is so frustrating. Now I want to use c++/py to print labels for product. But there is another way, if you are using electron then you can print the window, use mvc to create pop-up window and use window.print() to print this window, using by usb001 port, not file print.

Reasons:
  • RegEx Blacklisted phrase (1): I want
  • RegEx Blacklisted phrase (1): Same problem
  • No code block (0.5):
  • Single line (0.5):
  • Low reputation (1):
Posted by: Barkamol Valiyev

79666309

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

I had this table doesn't exist error. It went away when I reran after quitting SQLiteStudio. I suspect the table can't be created if the .db file is open.

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

79666305

Date: 2025-06-15 04:56:47
Score: 1.5
Natty:
Report link

What you describe is called a JSON schema.

For example the JSON schema for the following JSON:

{
        "first" : "Fred",
        "last" : "Flintstone"
}

Would be something like this:

{
  "type": "object",
  "properties": {
    "first": { "type": "string" },
    "last": { "type": "string" },
  }
}

You can then use the jsonschema package for validation:

from jsonschema import validate


validate(
    instance=json_to_validate, schema=json_schema,
)
Reasons:
  • Contains signature (1):
  • Has code block (-0.5):
  • Starts with a question (0.5): What you
  • Low reputation (0.5):
Posted by: scr

79666304

Date: 2025-06-15 04:52:47
Score: 2.5
Natty:
Report link

<div class="youtube-subscribe">

<div class="g-ytsubscribe"

   data-channelid="UCRzqMVswFRPwYUJb33-K88A"

   data-layout="full"

   data-count="default"

   data-theme="default"\>

</div>

</div>

<script src="https://apis.google.com/js/platform.js"></script>

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

79666299

Date: 2025-06-15 04:32:42
Score: 2
Natty:
Report link

use awsCredentials inside of your inputs with your service connection name to access the credentials

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

79666295

Date: 2025-06-15 04:21:39
Score: 1.5
Natty:
Report link

I was able to solve the issue by adding an account in the Xcode settings under "accounts".

In the signing and capabilities menu, it looked like I was under my personal developer account (which looked correct) instead of my work account. It said My Name (Personal Team). Then when I added my personal developer account in the settings, it showed up as another item in the team dropdown but without "Personal Team".

It then worked because it was finally pulling the certs using the correct team id.

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

79666293

Date: 2025-06-15 04:19:39
Score: 3
Natty:
Report link

It can be caused by your active VPN session. Just disconnect your VPN and try again.

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

79666291

Date: 2025-06-15 04:16:38
Score: 2
Natty:
Report link

It's because you create a specified function for one object only.
To improve your work you can create a constructor then reuse the constructor's code to applies it to a specific object.

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

79666287

Date: 2025-06-15 03:57:35
Score: 0.5
Natty:
Report link

To understand better it is advisable to look into the dependency tree of the pom. It will show the included transitive dependencies which got pulled in by the dependencies declared . So , with that we can understand why this results in any conflicts. For example, I had jackson-core(2.19.0) and then added jackson-binding(2.19.0). It started showing conflict saying issue with jackson-binding 2.19.0 having conflict with 2.18.3 . But I had no where jackson-binding 2.18.3 . So , when I looked at the dependency tree, I saw jackson-binding 2.19.0 was including transitive dependency jackson-core 2.18.3 . Hence, it resulted in conflict . Hope it helps to understand . P.S. the transitive dependencies can be excluded or we can tell our ide which version to be effective.

Reasons:
  • Whitelisted phrase (-1): Hope it helps
  • Long answer (-0.5):
  • No code block (0.5):
  • Single line (0.5):
  • Low reputation (1):
Posted by: Amrita Kundu

79666284

Date: 2025-06-15 03:47:32
Score: 3
Natty:
Report link

I have the exact same problem, and in my case npx tsx script works but the IDE Typescript service throws the above error. I gave up trying to solve this, I don't think it's worth the time. Instead, a simple built-in alternative in JS is:

let arr = [1, 2, 3];
Math.max(...arr);
Reasons:
  • Low length (0.5):
  • Has code block (-0.5):
  • Me too answer (2.5): I have the exact same problem
  • Low reputation (0.5):
Posted by: forumulator

79666282

Date: 2025-06-15 03:40:31
Score: 12.5
Natty: 7.5
Report link

Have you find any solution for it. I'm getting same error and verified everything?

Reasons:
  • Blacklisted phrase (1.5): any solution
  • Blacklisted phrase (2): Have you find
  • RegEx Blacklisted phrase (1): I'm getting same error
  • Low length (1.5):
  • No code block (0.5):
  • Me too answer (2.5): I'm getting same error
  • Ends in question mark (2):
  • Single line (0.5):
  • Low reputation (1):
Posted by: Abdul Qavi Memon

79666281

Date: 2025-06-15 03:39:30
Score: 1.5
Natty:
Report link

You need to keep moving the player with velocity, but also call MovePosition on top of it if the player is on the platform. And MovePosition will only receive the delta of the platform, while the user inputted movement will still go into velocity.

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

79666278

Date: 2025-06-15 03:30:28
Score: 1
Natty:
Report link

For Xcode 16.4 use this AppleScript:

tell application "Xcode"
    activate
    
    set targetProject to active workspace document
    build targetProject
    run targetProject
end tell
Reasons:
  • Low length (0.5):
  • Has code block (-0.5):
  • Low reputation (1):
Posted by: Makoto Niijima

79666271

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

Thank you for your answer, and I appreciate it.

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

79666268

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

For Yarn users

yarn build

yarn start

should achieve the same thing as npm run build

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

79666253

Date: 2025-06-15 02:07:11
Score: 1.5
Natty:
Report link

If using pnpm try adding the snippet below to `.npmrc` file

publicHoistPattern:
  - '*expo-modules-autolinking'
  - '*expo-modules-core'
  - '*babel-preset-expo'
Reasons:
  • Low length (1):
  • Has code block (-0.5):
  • Low reputation (1):
Posted by: Tekipeps

79666245

Date: 2025-06-15 01:49:07
Score: 2.5
Natty:
Report link

You may have set your keys in keybindings.json

For me it was s, so anytime I pressed the letter s, it showed the message

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

79666229

Date: 2025-06-15 00:20:50
Score: 1.5
Natty:
Report link

It's ugly, but it should work for anything that format-table works with, which means any sort of object, not just predefined types (though you'll get a lot of output for unknowns).


$($($($obj[0] | format-table | Out-string).split('-')[0]).split(" ").trim() | WHERE { $_.length -gt 0 })
Reasons:
  • Low length (0.5):
  • Has code block (-0.5):
  • Unregistered user (0.5):
  • Low reputation (1):
Posted by: mallwitt

79666227

Date: 2025-06-15 00:11:48
Score: 4
Natty: 4.5
Report link

I think you mean running code in the search engine? Just turn on dev settings.

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

79666225

Date: 2025-06-15 00:07:47
Score: 2
Natty:
Report link

I put the equal sign in a pair of double quotes, and when passed to the command file, which runs the FINDSTR command, the command completely ignores the double quotes, and treats the equal sign as a normal parameter.

E.G. the command line 'runfindstr.cmd if @string "=" *.txt, returns all *.txt files with text "if @string =" in any of the lines.

If the command you are using doesn't ignore the double quotes, you can always put multiple versions of the command in the command file, one of which is preceded with 'if %n equ "="' (where n is the relative position of the parameter) then carry out command with a hard coded = character.

Reasons:
  • Long answer (-0.5):
  • No code block (0.5):
  • User mentioned (1): @string
  • User mentioned (0): @string
  • Low reputation (1):
Posted by: Joe Boyle

79666223

Date: 2025-06-14 23:56:44
Score: 4.5
Natty:
Report link

was the observer set?

AdaptyUI().setObserver(your_implementation_of_the_AdaptyUIObserver)
Reasons:
  • Low length (1.5):
  • Has code block (-0.5):
  • Ends in question mark (2):
  • Starts with a question (0.5): was the
  • Low reputation (1):
Posted by: m-spiridon

79666220

Date: 2025-06-14 23:48:42
Score: 4
Natty: 5
Report link

Killing Dock did not work for me but restarting the Mac did

Reasons:
  • Blacklisted phrase (1): did not work
  • Low length (1.5):
  • No code block (0.5):
  • Single line (0.5):
  • Low reputation (0.5):
Posted by: Haru Lee

79666215

Date: 2025-06-14 23:31:38
Score: 0.5
Natty:
Report link

I ran into the same issue. I tried using golang:1.24.4-bullseye and golang:1.24.4-alpine3.22, but neither worked - both failed during compilation due to missing libraries required by V8. Fortunately, golang:1.24.3-bookworm worked for me as the builder stage, and I used ubuntu:22.04 as the final stage.

Reasons:
  • Whitelisted phrase (-1): worked for me
  • Low length (0.5):
  • Has code block (-0.5):
  • Single line (0.5):
  • Low reputation (1):
Posted by: Mohannad Abdulaziz

79666209

Date: 2025-06-14 23:16:35
Score: 1.5
Natty:
Report link

I had the same issue, and I asked Ai. but its response was not satisfying, saying "You cannot read or change the current page number" due to security .. if you got the answer please prode it to me.

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

79666205

Date: 2025-06-14 23:05:32
Score: 4.5
Natty: 4
Report link

the-woody-woodpecker-show-1957_meta.sqlite

Reasons:
  • Low length (1.5):
  • No code block (0.5):
  • Unregistered user (0.5):
  • Has no white space (0.5):
  • Single line (0.5):
  • Low reputation (1):
Posted by: Bridgett Jones

79666184

Date: 2025-06-14 22:01:18
Score: 2.5
Natty:
Report link

Its really strange when your favorite app does not full fill your demands, Same is the case of instagram but you can try honista with far better privacy and with better display options. Ghost mode is real game changer just give a try

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

79666178

Date: 2025-06-14 21:52:16
Score: 0.5
Natty:
Report link

I faced the same issue, after googling it I found that

https://github.com/dotnet/maui/issues/25648

where you can simply create another new emulator, and it worked for me

Reasons:
  • Whitelisted phrase (-1): it worked
  • Whitelisted phrase (-1): worked for me
  • Low length (1):
  • No code block (0.5):
  • Low reputation (1):
Posted by: Saya

79666177

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

The issue could also be due to a version mismatch between Kafka Connect and the Kafka API used in your connector. I encountered the same problem and resolved it by changing the Kafka API version.

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

79666176

Date: 2025-06-14 21:47:14
Score: 1.5
Natty:
Report link

In my case I had a wrong name in android/app/build.gradle.kts under signingConfigs

signingConfigs {
    create("upload") { //<--- make sure to set upload here
Reasons:
  • Low length (1):
  • Has code block (-0.5):
  • Low reputation (1):
Posted by: Ahmad Chomary

79666173

Date: 2025-06-14 21:37:12
Score: 0.5
Natty:
Report link

Downside of NOT using quotes for keys of associative array?

No downside.

What is the purpose of this,

The purpose is to visually represent what is a string and what is a command, and to differentiate between associative and non-associative array. It's cosmetics.

does it guard against something I am not foreseeing with literals?

No.

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

79666168

Date: 2025-06-14 21:30:09
Score: 1.5
Natty:
Report link

Indeed that was an issue and it got fixed in v9.2.0 via this Slickgrid-Universal PR

You can see an animated gif in the PR or via this link

Reasons:
  • Blacklisted phrase (1): this link
  • Contains signature (1):
  • Low length (1):
  • No code block (0.5):
  • High reputation (-2):
Posted by: ghiscoding

79666165

Date: 2025-06-14 21:29:08
Score: 6.5 🚩
Natty: 4.5
Report link

@johneh93 answer worked for me. I'll upvote it, but don't have enough reputation points

Reasons:
  • Blacklisted phrase (0.5): upvote
  • Whitelisted phrase (-1): worked for me
  • RegEx Blacklisted phrase (1.5): don't have enough reputation points
  • Low length (1.5):
  • No code block (0.5):
  • User mentioned (1): @johneh93
  • Single line (0.5):
  • Looks like a comment (1):
  • Low reputation (1):
Posted by: avantegardeoriginals

79666163

Date: 2025-06-14 21:28:07
Score: 9 🚩
Natty: 5.5
Report link

I want to find all the servers someone is in, but I don't know how to do what you said on mobile. Can you show me?

Reasons:
  • RegEx Blacklisted phrase (2.5): Can you show me
  • RegEx Blacklisted phrase (1): I want
  • Low length (1):
  • No code block (0.5):
  • Ends in question mark (2):
  • Unregistered user (0.5):
  • Single line (0.5):
  • Low reputation (1):
Posted by: Jay

79666157

Date: 2025-06-14 21:19:05
Score: 2
Natty:
Report link

I installed different emulator and this works for me

Reasons:
  • Whitelisted phrase (-1): works for me
  • Low length (1.5):
  • No code block (0.5):
  • Single line (0.5):
  • Low reputation (0.5):
Posted by: Rose G

79666156

Date: 2025-06-14 21:18:04
Score: 1
Natty:
Report link

In the Apps Script IDE, you may want to use breakpoints instead of the debugger statement.

See Use the debugger and breakpoints.

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

79666127

Date: 2025-06-14 20:14:51
Score: 0.5
Natty:
Report link

The error message is telling you what's wrong:

"failed to create containerd task: failed to create shim task: OCI runtime create failed: runc create failed: unable to start container process: exec: "driver": executable file not found in $PATH: unknown"

The message is telling you that the driver pod's container is trying to run the command "driver" but it can't find the exec file in the container's path.

You mentioned that --deploy-mode cluster is being used. Spark is trying to launch the driver inside a K8s pod using the Docker image.

This error usually happens when the following occurs:

Double check the configuration files (i.e YAML files), the entrypoint is correctly set and the Dockerfile is correct with the CMD.

I have found another StackOverflow that looks similar to help resolve the issue, if not, I'd recommend:

Also giving us more information helps us help you, providing any logs from Docker or kubectl will give us more context/root cause of the issue.

Reasons:
  • Blacklisted phrase (1): StackOverflow
  • Long answer (-1):
  • Has code block (-0.5):
  • Low reputation (1):
Posted by: John Crawley

79666126

Date: 2025-06-14 20:13:50
Score: 0.5
Natty:
Report link

If you want to manipulate which files are put in the .tar.gz, you need to create a MANIFEST.in file and configure it as so:

prune .gitignore
prune .github

Then run this to build:

python pyproject.toml sdist

Examine the tar created under /dist

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

79666125

Date: 2025-06-14 20:11:49
Score: 3
Natty:
Report link

Today, for those who are experiencing this issue, you can download it from the Downloads section on Apple’s Developer page: https://developer.apple.com/download/all/?q=command

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

79666120

Date: 2025-06-14 20:05:48
Score: 3.5
Natty:
Report link

I did a similar setup, everything was fine using nodeport until I had to use my apis in FE angular app which requires SSL certificate to be configured which requires domain to be mapped to the Ip, where nodeport doesnt work. You need to use the default 443 port.

Reasons:
  • Blacklisted phrase (1): doesnt work
  • Low length (0.5):
  • No code block (0.5):
  • Single line (0.5):
  • Low reputation (1):
Posted by: Swapnil

79666110

Date: 2025-06-14 19:48:44
Score: 1
Natty:
Report link

After finding this thread, it seems like one of the answers there works for my case as well (as long as (0,0) is changed to (0, -1) ):

window.scrollTo(0, -1);
setTimeout(() => { window.scrollTo(0, -1); }, 100);
Reasons:
  • Low length (0.5):
  • Has code block (-0.5):
  • Self-answer (0.5):
  • Low reputation (0.5):
Posted by: shibel

79666107

Date: 2025-06-14 19:41:43
Score: 1.5
Natty:
Report link

All these suggestions are helpful, thank you!

I came up with a solution like this. Using typeid was not really necessary, so I decided to index each Wire by name. I tried using the std::any to eliminate WireBase but could not get the right cast magic to work.

The (templated) Meyers singleton would work too, except that I want to be able to delete a Hub and make everything go away. I am effectively using a bunch of singletons, but want the application to be able to reset to the initial state.

class Hub
{
    public:

        template<class T>
        Wire<T>* get_wire (std::string name)
        {
            WireBase *result = wires[name];
            if (result == nullptr)
            {
                result = new Wire<T>();
                wires[name] = result;
            }
            return static_cast<Wire<T>*>(result);
        }

    private:

        std::map<std::string, WireBase*> wires;
};

The Wire class looks something like this:

template<typename T>
class Wire: public WireBase
{
    public:

        void publish (const T &message)
        {
            for (std::function<void (const T& message)> &handler : subscribers)
            {
                handler(message);
            }
        }

        void subscribe (std::function<void (const T&)> &handler)
        {
            subscribers.push_back(handler);
        }

    private:
        std::vector<std::function<void (const T&)>> subscribers;
};


With a Demo function:


void Demo::execute ()
{
    std::cout << "Starting demo" << std::endl;
    Hub hub;

    std::cout << "Hub " << hub << std::endl;

    Wire<Payload1> *w1 = hub.get_wire<Payload1>("w1");
    Wire<Payload2> *w2 = hub.get_wire<Payload2>("w2");

    std::cout << "W1 " << w1 << std::endl;
    std::cout << "W2 " << w2 << std::endl;

    std::function<void (const Payload1&)> foo1 = [] (const Payload1 &p)
    {
        std::cout << "Foo1 " << p.get() << std::endl;
    };

    std::function<void (const Payload2&)> foo2 = [] (const Payload2 &p)
    {
        std::cout << "Foo2 " << p.get() << std::endl;
    };

    w1->subscribe(foo1);
    w2->subscribe(foo2);
    Payload1 p1;
    Payload2 p2;
    w1->publish(p1);
    w2->publish(p2);

    std::cout << "Ending demo" << std::endl;
}

Starting demo
Hub #[Hub]
W1 #[Payload1>]
W2 #[Payload2>]
Foo1 Payload1
Foo2 Payload2
Ending demo
Reasons:
  • Blacklisted phrase (0.5): thank you
  • RegEx Blacklisted phrase (1): I want
  • Long answer (-1):
  • Has code block (-0.5):
  • Self-answer (0.5):
  • Low reputation (1):
Posted by: C. Eliot

79666106

Date: 2025-06-14 19:40:41
Score: 10.5 🚩
Natty: 6
Report link

have you solved it in anyway? Right now i'm participating at the same hackathon as you do, but i'm having the same problem or something near it

Reasons:
  • Blacklisted phrase (1): i'm having the same problem
  • Blacklisted phrase (2): have you solved it
  • RegEx Blacklisted phrase (1.5): solved it in anyway?
  • Low length (1):
  • No code block (0.5):
  • Me too answer (2.5): i'm having the same problem
  • Contains question mark (0.5):
  • Single line (0.5):
  • Low reputation (1):
Posted by: Khaos

79666103

Date: 2025-06-14 19:34:39
Score: 11.5 🚩
Natty:
Report link

Did you manage to fix this? Facing the same issues...

Reasons:
  • RegEx Blacklisted phrase (3): Did you manage to fix this
  • RegEx Blacklisted phrase (1.5): fix this?
  • Low length (1.5):
  • No code block (0.5):
  • Me too answer (2.5): Facing the same issue
  • Contains question mark (0.5):
  • Single line (0.5):
  • Starts with a question (0.5): Did you
  • Low reputation (1):
Posted by: Ionut Ciochinaru

79666099

Date: 2025-06-14 19:33:39
Score: 3.5
Natty:
Report link
header 1 header 2
cell 1 cell 2
cell 3 cell 4
Reasons:
  • Low length (1.5):
  • No code block (0.5):
  • Unregistered user (0.5):
  • Low reputation (1):
Posted by: Sameer Khan

79666097

Date: 2025-06-14 19:30:38
Score: 0.5
Natty:
Report link

Hopefully I'm not wrong on all of this information but this does appear to be a build-in feature with lifecycle policy in ECR as it automatically cleans up artifacts (including your metadata) that are orphaned or no longer used by any images. I would like to mention that all artifacts are considered images to ECR's lifecycle policy.

The documentation on [1] lifecycle policies mention the following about once a lifecycle policy is applied:

Once a lifecycle policy is applied to a repository, you should expect that images become expired within 24 hours after they meet the expiration criteria

and mentioning that these artifacts will be cleaned up after 24 hours:

When reference artifacts are present in a repository, Amazon ECR lifecycle policies automatically clean up those artifacts within 24 hours of the deletion of the subject image

under [2] considerations on image signing

When reference artifacts are present in a repository, Amazon ECR lifecycle policies will automatically clean up those artifacts within 24 hours of the deletion of the subject image.

Now, hopefully to accurately answer your questions

Why did it decide that my artifacts were orphaned?

As I don't know your full lifecycle policy rules. The rule provided determined that your artifacts were orphaned because it mentions "Any" and treated the metadata non-image as unused and eligible for cleanup.

How can I avoid that?

From the provided rule in this post, let me break it down what's happening:

                "tagStatus": "Any",
                "tagPrefixList": [],
                "tagPatternList": [],
  1. "tagStatus": "Any" means that the rule applies to all artifact, tagged or untagged

  2. "tagPrefixList": [] and "tagPatternList": [] indicates that no specific tag filtering is happening, therefore applying it to any tagged or non-tagged

Recommendations:

Change:

"tagStatus": "Any"

to:

"tagStatus": "untagged"

I'd say [3] tagging your non-image artifacts properly will prevent this from happening and once tagged, the "cleanup orphan artifacts" rule wont consider them as orphaned, they will be considered referenced and active preventing the aforementioned rule to consider them as 'orphaned'.

Changing it to "untagged" will ensure the rule only targets untagged artifacts

References:

[1] - https://docs.aws.amazon.com/AmazonECR/latest/userguide/LifecyclePolicies.html

[2] - https://docs.aws.amazon.com/AmazonECR/latest/userguide/image-signing.html

[3] - https://docs.aws.amazon.com/AmazonECR/latest/userguide/lifecycle_policy_parameters.html

Reasons:
  • Blacklisted phrase (0.5): How can I
  • Long answer (-1):
  • Has code block (-0.5):
  • Contains question mark (0.5):
  • Low reputation (1):
Posted by: John Crawley

79666091

Date: 2025-06-14 19:17:35
Score: 1
Natty:
Report link

I had that same issue, where it was loading some CSS I had entered a day ago, but not new CSS. I have not tried Gmuliu Gmuni's suggestion to run django-admin collectstatic (as defined by docs). Instead, I did a hard reload in Firefox to get rid of cache, and it worked fine.

The Django documentation states that,

ManifestStaticFilesStorage

class storage.ManifestStaticFilesStorage

A subclass of the StaticFilesStorage storage backend which stores the file names it handles by appending the MD5 hash of the file’s content to the filename. For example, the file css/styles.css would also be saved as css/styles.55e7cbb9ba48.css.

The purpose of this storage is to keep serving the old files in case some pages still refer to those files, e.g. because they are cached by you or a 3rd party proxy server. Additionally, it’s very helpful if you want to apply far future Expires headers to the deployed files to speed up the load time for subsequent page visits.

The storage backend automatically replaces the paths found in the saved files matching other saved files with the path of the cached copy (using the post_process() method). The regular expressions used to find those paths (django.contrib.staticfiles.storage.HashedFilesMixin.patterns) cover:

  • The @import rule and url() statement of Cascading Style Sheets.

  • Source map comments in CSS and JavaScript files.

According to that same link (further up the page):

On subsequent collectstatic runs (if STATIC_ROOT isn’t empty), files are copied only if they have a modified timestamp greater than the timestamp of the file in STATIC_ROOT. Therefore if you remove an application from INSTALLED_APPS, it’s a good idea to use the collectstatic --clear option in order to remove stale static files.

So, django-admin collectstatic only works with an updated directory (if I'm reading this right), and my VSCode addition to the CSS file didn't update the directory timestamp when it did so for the file.

I'm new to Django, myself, so please correct me if I'm wrong.

Reasons:
  • Whitelisted phrase (-1): it worked
  • RegEx Blacklisted phrase (1.5): I'm new
  • Long answer (-1):
  • Has code block (-0.5):
  • User mentioned (1): @import
  • Low reputation (1):
Posted by: Josh Borthick

79666090

Date: 2025-06-14 19:15:34
Score: 2
Natty:
Report link

Yes,

For parsing a name into it's constituent parts: Python Human Name Parser.
https://nameparser.readthedocs.io/en/latest/

For fuzzy matching similar names:
https://rapidfuzz.github.io/RapidFuzz/

It goes without saying that normalizing names is a difficult endeavor, probably pointless if you don't have additional fields to identify the person on.

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

79666089

Date: 2025-06-14 19:13:34
Score: 0.5
Natty:
Report link
// models/product_model.dart
class ProductModel {
  final int id;
  final String title;
  final double price;
  // ...

  factory ProductModel.fromJson(Map<String, dynamic> json) {
    return ProductModel(
      id: (json['id'] as num).toInt(),
      title: json['title'] as String,
      price: (json['price'] as num).toDouble(),
      // other fields...
      rating: RatingModel.fromJson(json['rating'] as Map<String, dynamic>),
    );
  }
}

class RatingModel {
  final double rate;
  final int count;

  factory RatingModel.fromJson(Map<String, dynamic> json) {
    return RatingModel(
      rate:  (json['rate'] as num).toDouble(),
      count: (json['count'] as num).toInt(),
    );
  }
}
Reasons:
  • Long answer (-0.5):
  • Has code block (-0.5):
  • Self-answer (0.5):
  • Low reputation (1):
Posted by: محمود ريحانية

79666084

Date: 2025-06-14 19:10:32
Score: 1
Natty:
Report link

Ages old question, but seems still valid and I can come up with a situation not described by other answers.

Consider that you have two packages A and B, A depends on a specific version of B.

Now, you are developing a new feature that unfortunately needs changes in both packages. What do you do? You want to pin A to the new version of B, but you are also actively modifying B so there is no known working version to pin at.

And somehow in this case, an editable installation of both A and B, ignoring that A -> B dependency, is the easiest way out.

Reasons:
  • Long answer (-0.5):
  • No code block (0.5):
  • Contains question mark (0.5):
  • Low reputation (0.5):
Posted by: Yì Yáng

79666078

Date: 2025-06-14 19:05:31
Score: 5
Natty: 5
Report link

Great small hint, made my day. Thx

Reasons:
  • Blacklisted phrase (1): Thx
  • Low length (2):
  • No code block (0.5):
  • Single line (0.5):
  • Low reputation (1):
Posted by: Max Mustermann

79666073

Date: 2025-06-14 18:53:28
Score: 2.5
Natty:
Report link

You have really bad grammar. I noticed that on multiple occassions, you misspelled words such as "if", a very simple word, and wrote "ff".

As for the code, I have no idea. I couldn't read anything you wrote because of your terrible grammar.

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

79666063

Date: 2025-06-14 18:30:23
Score: 0.5
Natty:
Report link

If you have enumerable you can split it:

static var client = new HttpClient();

string[] urls = { "http://google.com", "http://yahoo.com", ... };

foreach (var urlsChunk in url.Chunk(20))
{
    var htmls = await Task.WhenAll(urlsChunk.Select(url => client.GetStringAsync(url));
}
Reasons:
  • Low length (0.5):
  • Has code block (-0.5):
  • Low reputation (0.5):
Posted by: mariusz96

79666062

Date: 2025-06-14 18:28:23
Score: 0.5
Natty:
Report link

When we say new Date() we are essentially creating a new instance/object of the class Date using Date() constructor method. When we call the Date() method without the use of new keyword it actually returns a String not an instance/object of the class Date. And a string will not contain the method getFullYear();. Hence we get an error

Now consider the below code snippet:

let dateTimeNowObj = new Date(); // returns a object of class Date
console.log(dateTimeNowObj) // Sat Jun 14 2025 23:48:27 GMT+0530 (India Standard Time)
console.log(dateTimeNowObj.getFullYear()); // 2025

let dateTimeNowStr = Date(); // returns a string 
console.log(dateTimeNowStr) // Sat Jun 14 2025 23:47:32 GMT+0530 (India Standard Time)
console.log(dateTimeNowStr.getFullYear()); // TypeError: dateTimeNowStr.getFullYear is not a function
Reasons:
  • Long answer (-0.5):
  • Has code block (-0.5):
  • Starts with a question (0.5): When we
  • Low reputation (1):
Posted by: Shrivatsa Shetty

79666061

Date: 2025-06-14 18:27:22
Score: 3
Natty:
Report link

I actually managed to fix this using Beehiiv, the difference, I guess? Is that you have to submit to an e-mail newsletter first. Not thought about how to make this user specific, but in a sense you can embed an Iframe into the Beehiiv e-mail and send this (without being flagged as spam) to subscribers.

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

79666055

Date: 2025-06-14 18:13:19
Score: 2.5
Natty:
Report link

Callback URLs need to be first registered with the M-Pesa APIs, ensure you do that first. When registering, you might want to change the API versions because the default ones given might fail sometimes. So, if v1 fails to register your callback URL, try using v2...

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

79666047

Date: 2025-06-14 17:57:15
Score: 7.5 🚩
Natty: 5
Report link

Did you find a solution? I am facing the same issue.

Replacing DocumentEventData with EntityEventData is not a solution unfortunately.

File "/workspace/main.py", line 12, in hello_firestore
    firestore_payload = firestore.EntityEventData()
AttributeError: module 'google.events.cloud.firestore' has no attribute 'EntityEventData'
Reasons:
  • RegEx Blacklisted phrase (3): Did you find a solution
  • Has code block (-0.5):
  • Me too answer (2.5): I am facing the same issue
  • Contains question mark (0.5):
  • Unregistered user (0.5):
  • Starts with a question (0.5): Did you find a solution
  • Low reputation (1):
Posted by: user30803183

79666046

Date: 2025-06-14 17:57:15
Score: 1
Natty:
Report link
<link href="https://cdn.jsdelivr.net/npm/[email protected]/dist/summernote-bs5.min.css" rel="stylesheet">
<script src="https://cdn.jsdelivr.net/npm/[email protected]/dist/summernote-bs5.min.js"></script>

use summernote-bs5 for bootstrap 5

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

79666033

Date: 2025-06-14 17:42:11
Score: 5.5
Natty:
Report link

I'm also having a trouble on migrating from old autocomplete to new one in my Angular project. There are big gaps between documentation and reality. For example, on documentation google.maps.places.PlaceAutocompleteElement() does not accept any parameters but compiler complaining that constructor expects options: PlaceAutocompleteElementOptions parameter.
I'm now wondering if you found already any solution yet?

Reasons:
  • Blacklisted phrase (1.5): any solution
  • RegEx Blacklisted phrase (2): any solution yet?
  • Has code block (-0.5):
  • Ends in question mark (2):
  • Low reputation (0.5):
Posted by: Ali Alizade

79666030

Date: 2025-06-14 17:39:10
Score: 5
Natty:
Report link

I found the answer in below post : You will get the explaination there as well. Thanks

Kendo Editor on <textarea> creates iframe, so cant bind any javascript events inside it

Reasons:
  • Blacklisted phrase (0.5): Thanks
  • Probably link only (1):
  • Low length (1.5):
  • No code block (0.5):
  • Self-answer (0.5):
  • Low reputation (1):
Posted by: SachinD

79666024

Date: 2025-06-14 17:34:08
Score: 2
Natty:
Report link

I think problem with memory leaks that originally its compiled on RHEL system, that means its uses architecture that RHEL server uses on Oracle linux, Oracle linux have different configuration compared to RHEL. I need more information about what architecture and GPU, CPU RHEL server uses and what GPU, CPU, architecture Oracle linux uses(x86 bit; x64 bit; x32 bit)

Reasons:
  • Blacklisted phrase (0.5): I need
  • No code block (0.5):
  • Low reputation (1):
Posted by: ScriptScorpion