79821436

Date: 2025-11-16 11:59:08
Score: 1.5
Natty:
Report link

If you programming language has functions like max - min, it's easy to do it in that way

def abs(a, b):
  return max(a, b) - min(a, b)
Reasons:
  • Low length (1):
  • Has code block (-0.5):
  • Low reputation (1):
Posted by: Fatih Erikli

79821434

Date: 2025-11-16 11:52:06
Score: 11.5 🚩
Natty: 5.5
Report link

Did you have any luck with this djack109? I'm facing a very similar problem. Thanks.

Reasons:
  • Blacklisted phrase (0.5): Thanks
  • Blacklisted phrase (1.5): any luck
  • RegEx Blacklisted phrase (3): Did you have any luck
  • Low length (1.5):
  • No code block (0.5):
  • Me too answer (2.5): I'm facing a very similar problem
  • Contains question mark (0.5):
  • Single line (0.5):
  • Starts with a question (0.5): Did you have any
  • Low reputation (0.5):
Posted by: Warren

79821432

Date: 2025-11-16 11:51:05
Score: 1.5
Natty:
Report link

You can do offline positioning using Bluetooth beacons. With the Web Bluetooth API, a web app can scan nearby beacons, read their signal strength (RSSI), and estimate your position on a pre-made map, while combining barometer and motion sensors to track floor level and movement for (x, y, z) coordinates. Accuracy depends on beacon placement, calibration, and environmental factors like walls or interference, and RSSI-based positioning is inherently noisy, typically only accurate to a few meters. Web Bluetooth also has browser and platform limitations, and sensor-based tracking can drift over time without recalibration, so while this approach works in principle, it is not highly precise.

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

79821429

Date: 2025-11-16 11:48:04
Score: 4.5
Natty: 5.5
Report link

Many thanks - been tearing my hair out over this!

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

79821426

Date: 2025-11-16 11:43:02
Score: 1
Natty:
Report link

There is only one index on the table which is a primary key. There is nothing else.

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

79821416

Date: 2025-11-16 11:33:00
Score: 2.5
Natty:
Report link

I think that you asked 2 distinct questions:

Is there a way to implement fonts not existing in Google fonts into Google Slides/Docs/…?

Answer: No.

... how we could solve this problem without completely switching to Microsoft?

Answer: LibreOffice will allow you to use "external" fonts (that do not exist in Google Fonts) in your presentations and documents.

Reasons:
  • Blacklisted phrase (1): Is there a way
  • No code block (0.5):
  • Contains question mark (0.5):
  • Low reputation (0.5):
Posted by: jaimet

79821412

Date: 2025-11-16 11:25:58
Score: 3.5
Natty:
Report link

I think you have ONLY 8 branches!

Reasons:
  • Low length (2):
  • No code block (0.5):
  • Single line (0.5):
  • Low reputation (0.5):
Posted by: A.Zidan

79821406

Date: 2025-11-16 11:14:56
Score: 1
Natty:
Report link

The best practice is to use COPY, which you did. You should investigate the slowness, which looks abnormal. Do you have 57 GIN indexes or a slow trigger on the table?

Reasons:
  • Low length (1):
  • Has code block (-0.5):
  • Ends in question mark (2):
  • Single line (0.5):
  • High reputation (-2):
Posted by: Laurenz Albe

79821402

Date: 2025-11-16 11:00:52
Score: 2
Natty:
Report link

Why aren't you using the PostgreSQL built-in COPY funktion? I would expect it to be an order of magnitude faster than what you are doing.

Reasons:
  • Low length (1):
  • No code block (0.5):
  • Contains question mark (0.5):
  • Single line (0.5):
  • Starts with a question (0.5): Why aren't you
  • High reputation (-1):
Posted by: Jonathan Willcock

79821381

Date: 2025-11-16 10:06:41
Score: 0.5
Natty:
Report link

For anyone reaching here - The problem was that the logstsash.db file was stuck and somehow corrupted. I deleted it, and then it was automatically created again correctly and logs started flowing.

For anyone debugging this kind of issue:

There was no error indication on this problem in my application logs or in the different ELK components logs. All the logs I looked at had no errors or warnings. Only after following all the pipeline carefully and understanding the flow I learned about this file that is used for synchronization and I noticed in my environment it was not being updated at all. Sadly, I have lost all the logs from the gap between the time it stopped and until I deleted it. I think there probably is some way to re-scan the files with the data to index them (but I will leave this issue for a different question)

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

79821361

Date: 2025-11-16 09:31:33
Score: 1
Natty:
Report link
using System.Collections.ObjectModel;
using System.Net.Http;
using System.Text.Json;
using System.Text.Json.Serialization;

using Future.UX;

public partial class VMMeetman
{
    // Declared an HttpClient instance?
    private static readonly WBSMeeto? _apiService;

    //is now bindable to the UI as Meetmans property
    private ObservableCollection<Meetman>? __meetmans;

    // Creating instances of Meetman entity attributes for further binding?
    public async Task GetDataAsync__()
    {
        // Connect to HttpClient and retrieve data from the API?
        // Observable collection is now a property which can be Bound to the UI
        Meetmans = new ObservableCollection<Meetman>(await _apiService!.GetMeetmanAsync());

        // Trying to serialize the received data?
        string json = JsonSerializer.Serialize(Meetmans, options: new JsonSerializerOptions { WriteIndented = true });


        // Am I doing it right, and what should I do next?
    }
}

//class representing the Meetman entity with __field notifiaction
//Once built, this class can be bound to the UI as Properties i.e. Meetman.Iname, Meetman.Sname, etc.
public partial class Meetman
{
    #region Entity Attributes
    private int __MeetmanId;
    private string? __Iname;
    private string? __Sname;
    private string? __Tname;
    private string? __Phnumb;
    private string? __Datebirth;
    private string? __Location;
    private string? __Email;
    private string? __IsMan;
    private string? __IsWooman;
    #endregion
};


public class WBSMeeto
{

    private readonly HttpClient _httpClient;
    private readonly JsonSerializerOptions _jsonOptions;

    public WBSMeeto()
    {
        _httpClient = new HttpClient()
        {
            BaseAddress = new Uri("http://my connection string")
        };

        _jsonOptions = new JsonSerializerOptions
        {
            PropertyNameCaseInsensitive = true,
            DefaultIgnoreCondition = JsonIgnoreCondition.WhenWritingNull,
            WriteIndented = true
        };
    }

    public async Task<List<Meetman>>? GetMeetmanAsync()
    {
        var response = await _httpClient.GetAsync(_httpClient.BaseAddress);
        response.EnsureSuccessStatusCode();
        var json = await response.Content.ReadAsStringAsync();
        return JsonSerializer.Deserialize<List<Meetman>>(json, _jsonOptions);
    }
}
Reasons:
  • Blacklisted phrase (2): what should I do
  • Long answer (-1):
  • Has code block (-0.5):
  • Low reputation (0.5):
Posted by: Richard Harrison

79821357

Date: 2025-11-16 09:21:30
Score: 3
Natty:
Report link

A tip - use print(df.columns) before trying df.usecols. This shows the headers, more importantly it shows any leading spaces which may not be obvious.

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

79821354

Date: 2025-11-16 09:13:28
Score: 3.5
Natty:
Report link

Sorry for the extremely late answer :-)
see example in this
infinite image carousel

Reasons:
  • Contains signature (1):
  • Low length (1.5):
  • No code block (0.5):
  • Low reputation (0.5):
Posted by: shlomoa

79821353

Date: 2025-11-16 09:10:28
Score: 2.5
Natty:
Report link

It could happen if you are using delete by query or update by query. Are you using them ?

Reasons:
  • Low length (1.5):
  • No code block (0.5):
  • Ends in question mark (2):
  • Single line (0.5):
  • High reputation (-2):
Posted by: dadoonet

79821346

Date: 2025-11-16 08:52:23
Score: 0.5
Natty:
Report link

Simply remove EnableSession = true since you're not actually using session data:

[WebMethod]
[ScriptMethod(ResponseFormat = ResponseFormat.Json)]
public static string SayHello(string name)
{
    return "Hello " + name;
}
Reasons:
  • Low length (0.5):
  • Has code block (-0.5):
  • Low reputation (0.5):
Posted by: Mina Golzari Dalir

79821343

Date: 2025-11-16 08:41:21
Score: 1
Natty:
Report link

I could fix it by manually removing the proxy settings from the global gradle.properties file which is located in C:\Users\YouUserName\.gradle\gradle.properties

enter image description here

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

79821334

Date: 2025-11-16 08:02:11
Score: 7 🚩
Natty:
Report link

using Flask men !!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!

Reasons:
  • Low length (1.5):
  • No code block (0.5):
  • Has no white space (0.5):
  • Single line (0.5):
  • No latin characters (1.5):
  • Filler text (0.5): !!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!
  • Low entropy (1):
  • Low reputation (1):
Posted by: Miron933

79821333

Date: 2025-11-16 08:01:11
Score: 1
Natty:
Report link

As of 16th of November 2025, looks like setting SOCS cookie to CAI does the job: you then get Set-Cookie response headers which you should include in the next request to bypass the screen.

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

79821330

Date: 2025-11-16 07:52:08
Score: 5
Natty: 6.5
Report link

I have explained all the details about how to use the Dynamics 365 free trial in this blog:
https://medium.com/@imtejassingh/how-to-set-up-and-explore-microsoft-dynamics-365-free-trial-baa39a57d09f?postPublishedType=initial

Reasons:
  • Blacklisted phrase (1): this blog
  • Blacklisted phrase (0.5): medium.com
  • Probably link only (1):
  • Low length (1):
  • No code block (0.5):
  • Low reputation (1):
Posted by: Tejas singh

79821329

Date: 2025-11-16 07:51:08
Score: 1.5
Natty:
Report link

You can just add the below line in settings.json file:

"renderValidationDecorations": "off"
Reasons:
  • Low length (1):
  • Has code block (-0.5):
  • Low reputation (1):
Posted by: G.Govardhan

79821322

Date: 2025-11-16 07:19:02
Score: 1.5
Natty:
Report link

the most common causes of OpenContexts spikes in Elasticsearch 6.8, even if you’re not using Scroll Queries or Point-in-Time (PIT).
In Elasticsearch, an “Open Context” is created whenever a search requires a point-in-time snapshot of the data. Scroll and PIT make this obvious, but regular searches can also create contexts depending on how they are executed.

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

79821316

Date: 2025-11-16 06:48:55
Score: 3
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):
  • Low reputation (1):
Posted by: Lwin Ko

79821314

Date: 2025-11-16 06:35:53
Score: 2.5
Natty:
Report link

Ek 3D racing kar bnao jismein infinity sadak Ho sadak ke donon taraf hariyali Ho ped paudhe Ho mountain Ho dhimi dhimi Surya ki Roshani Ho aur sadak ke bich mein safed line ho left side se traffic jaen aur right side se rah paye Aisa 3D game ka HTML code do

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

79821305

Date: 2025-11-16 05:56:44
Score: 1.5
Natty:
Report link

Open cmd in your script's folder (as before: in File Explorer, click the address bar, type "cmd", and press Enter).

Instead of typing just scriptname.py, type this exactly (replace scriptname.py with your actual file name):

python scriptname.py

Press Enter. The script should now run directly in the current cmd window, without popping up a new one that disappears

Reasons:
  • No code block (0.5):
  • Low reputation (1):
Posted by: Eric Håkansson

79821289

Date: 2025-11-16 05:02:33
Score: 1.5
Natty:
Report link

I use Ubuntu 24.04 LTS and solved it by adding an allow rule in my firewall using the below command

sudo ufw allow 8081/tcp
Reasons:
  • Low length (1):
  • Has code block (-0.5):
  • Low reputation (1):
Posted by: SR_Warrier

79821267

Date: 2025-11-16 03:53:18
Score: 13.5 🚩
Natty: 6.5
Report link

@BrightLights I am running into same issue, were you able to solve it? Please help me.

See this for details: https://www.reddit.com/r/reactnative/s/hQQ5EfO1VR

Reasons:
  • Blacklisted phrase (1): help me
  • Blacklisted phrase (1): you able to solve
  • RegEx Blacklisted phrase (3): Please help me
  • RegEx Blacklisted phrase (1.5): solve it?
  • RegEx Blacklisted phrase (3): were you able
  • Low length (1):
  • No code block (0.5):
  • Contains question mark (0.5):
  • User mentioned (1): @BrightLights
  • Low reputation (1):
Posted by: Mihir Patel

79821264

Date: 2025-11-16 03:36:14
Score: 1.5
Natty:
Report link

The real answer is to reinstall git for windows, but this time check the box for ASLR exclusion (currently the last setting before the actual "install" button). Unlike the accepted answer, it actually worked for my use case and will work for all other use cases.

Why? The ASLR security feature breaks all these unix functions and everything built on top of them.

Reasons:
  • Blacklisted phrase (0.5): Why?
  • No code block (0.5):
  • Contains question mark (0.5):
Posted by: Dirk Bester

79821263

Date: 2025-11-16 03:35:14
Score: 3
Natty:
Report link

Hey guys I was battling with the same issue for hours. If you are using typescript, you need to set “noEmit”: false in the tsconfig.json compilerOptions property. This will make sure that when we run “npm run build” or “npm run build:watch” in the firebase project directory, it converts the type script code to java code.

Reasons:
  • RegEx Blacklisted phrase (1): Hey guys
  • No code block (0.5):
  • Single line (0.5):
  • Low reputation (1):
Posted by: Olise

79821262

Date: 2025-11-16 03:33:14
Score: 1
Natty:
Report link

This is what fixed it for me.

If you're using a messaging service, which you have to now for A2P, then the FROM variable in the REST call should be the Messaging SID, not a phone number...

This solution is burried in the documentation and not mentioned anywhere in tutorials...

https://help.twilio.com/articles/17894300978843-FAQ-Why-Does-the-Send-Wait-for-Reply-Widget-Stop-Collecting-the-Users-Response-and-Creates-a-New-Execution-for-US-A2P-Registered-10DLC-Numbers

Reasons:
  • Whitelisted phrase (-1): solution is
  • Probably link only (1):
  • Low length (0.5):
  • No code block (0.5):
Posted by: timh

79821256

Date: 2025-11-16 03:06:08
Score: 1.5
Natty:
Report link

The issue is that the windows security feature ASLR prevents these unix commands from working. They are not written with ASLR in mind so they break.

The simple fix is to reinstall git for windows. The final setting before you can click install is a checkbox for disabling ASLR for all the commands. Check it. Now the underlying fork will work. Thus all of git once again works.

You can also laboriously do it manually like @Gabriel Bercea above, but this is simpler and will not miss some use case.

Reasons:
  • No code block (0.5):
  • User mentioned (1): @above
Posted by: Dirk Bester

79821251

Date: 2025-11-16 02:59:06
Score: 0.5
Natty:
Report link

Have you checked out this answer?

Disclosure: I am the author

Reasons:
  • Low length (1.5):
  • No code block (0.5):
  • Contains question mark (0.5):
  • High reputation (-2):
Posted by: ray

79821245

Date: 2025-11-16 02:14:57
Score: 0.5
Natty:
Report link

It is a strange habit to delete postings without any reason. Happy to repeat that use of PyWin32 and COM wrapping is a solution. Then you can use the normal EXCEL interface (and object methods) directly like you do in VBA. Of course you need to have an EXCEL installation for this to work.

To support such tasks I wrote an EXCEL wrapper that allows to use the EXCLE API even in a pythonic way i. e. you may call the saveas method of a workbook as SaveAs as defined, as saveas or as save_as. All done automatically. Same should work for the parameters. If you consequently use this, one may even won't notice you are using pure EXCEL API in your Python code. With that you only have the overhead of COM interfacing but not all internal file formattingt logic in openPyXL in Python. I think this has a substantial impact on runtime.

https://github.com/dornech/utils-msoffice

Reasons:
  • Whitelisted phrase (-1.5): you can use
  • Contains signature (1):
  • Long answer (-0.5):
  • No code block (0.5):
  • Low reputation (1):
Posted by: dornech

79821241

Date: 2025-11-16 01:52:52
Score: 0.5
Natty:
Report link
<!--
Source - https://stackoverflow.com/q
Posted by corrieg
Retrieved 2025-11-16, License - CC BY-SA 4.0
-->

{
    "editor.accessibilitySupport": "off",
    "window.zoomLevel": 0,
    "liveServer.settings.donotShowInfoMsg": true,
    "liveServer.settings.donotVerifyTags": true,
    "[html]": {
        "editor.defaultFormatter": "HookyQR.beautify"
    },
    "[javascript]": {
        "editor.defaultFormatter": "HookyQR.beautify"
    },
    "workbench.iconTheme": "material-icon-theme",
    "editor.minimap.enabled": false,
    "javascript.updateImportsOnFileMove.enabled": "always",
    "workbench.colorTheme": "Night Owl",
    "[json]": {
        "editor.defaultFormatter": "vscode.json-language-features"
    },
    // "python.jediEnabled": false,
    "[python]": {

    },
    "editor.fontFamily": "Input",
    "editor.fontSize": 16,
    "[php]": {
        "editor.defaultFormatter": "kokororin.vscode-phpfmt"
    },
    "liveSassCompile.settings.autoprefix": [],
    "liveSassCompile.settings.formats": [
        {
            "format": "compact",
            "extensionName": ".css",
            "savePath": "/dist/assets/css"
        }
    ],
    "liveSassCompile.settings.generateMap": false
}
Instagram id men its me tiki
Reasons:
  • Blacklisted phrase (1): stackoverflow
  • Long answer (-1):
  • Has code block (-0.5):
  • Low reputation (1):
Posted by: Sabya Kumar

79821237

Date: 2025-11-16 01:46:51
Score: 1.5
Natty:
Report link

In addition to using the like expression there is another similar way:

.join( b.alias("b"), col("a.city").contains(col("b.city")) )

because the contains function also works as a join condition.

Reasons:
  • Low length (0.5):
  • Has code block (-0.5):
  • Unregistered user (0.5):
  • Low reputation (1):
Posted by: Jol Blazey

79821232

Date: 2025-11-16 01:26:47
Score: 3.5
Natty:
Report link

its now re-posted here: Calculating the percent of time spent in a country

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

79821230

Date: 2025-11-16 01:23:46
Score: 2
Natty:
Report link

sure, I will repost it - I will make a new question

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

79821227

Date: 2025-11-16 01:14:44
Score: 4.5
Natty:
Report link

thank you! I think moving in_country might be beneficial in case this situation comes up?

Reasons:
  • Blacklisted phrase (0.5): thank you
  • Low length (1.5):
  • No code block (0.5):
  • Ends in question mark (2):
  • Self-answer (0.5):
  • Single line (0.5):
  • High reputation (-1):
Posted by: stats_noob

79821225

Date: 2025-11-16 01:11:42
Score: 2.5
Natty:
Report link

A,B,C,D,E,F,G,,...

AA,AB,AC,AD,AE,AF..

AAA,AAB,AAC,AAD,AAE,AAF,AAH

This sequence would contain every possible word to be said, everything in jibberish.

This dictionary would be unforgiving, as the stuff that made sense would be distributed over a extremely long scale.//dictionary_of_sequencing_last_letters//

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

79821217

Date: 2025-11-16 00:50:38
Score: 1
Natty:
Report link

Ah, you're missing self in your update() method! That's why Python can't find your instance variables.

Your method should look like this:

def update(self):
    self.velocity = self.velocity.add(self.acceleration)
    self.position = self.position.add(self.velocity)
Reasons:
  • Low length (0.5):
  • Has code block (-0.5):
  • Low reputation (1):
Posted by: EchoOverflow

79821205

Date: 2025-11-16 00:05:29
Score: 0.5
Natty:
Report link

I'd start by opening the pdf in Word, which would likely preserve the formatting of the tables and then, assuming that the pdf tables were rendered as Word tables, use VBA to iterate them and copy them into an Excel worksheet.

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

79821204

Date: 2025-11-16 00:04:29
Score: 2.5
Natty:
Report link

Shoutout to the ethical hackers (jbee spy team, who saved me from a scam, they recovered my money, thay brought my account back, and handled the police/bank calls. Real lifesavers. you can contact them via email [email protected], Telegram +447456058620.

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

79821203

Date: 2025-11-16 00:03:28
Score: 2
Natty:
Report link

Problem was caused by other folder with same name, for some reason VS Code can distinguish modules only by names. To solve this, i just deleted other /core directory and it does work properly now,

Reasons:
  • Low length (0.5):
  • Has code block (-0.5):
  • Self-answer (0.5):
  • Single line (0.5):
  • Low reputation (1):
Posted by: Иван Чернецов

79821196

Date: 2025-11-15 23:38:23
Score: 5
Natty:
Report link

I have... 04-Nov-2025 19:43:36 UTC ...and cannot convert that to a date that Excel recognizes. Not an Excel expert so can you provide simple instruction to get rid of the UTC. Flash fill doesn't work and I'm a baby with formulas but learning!

Reasons:
  • RegEx Blacklisted phrase (2.5): can you provide
  • Low length (0.5):
  • No code block (0.5):
  • Single line (0.5):
  • Low reputation (1):
Posted by: Krista Simonetti

79821194

Date: 2025-11-15 23:30:21
Score: 2.5
Natty:
Report link
  1. Replace this line:

    rng.Case= wdTitleSentence 'wdUpperCase works; this doesn't; something else I could put here?

  2. With the following:

    rng.Text = UCase(Left(rng.Text, 1)) & LCase(Right(rng.Text, Len(rng.Text) - 1))

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

79821192

Date: 2025-11-15 23:17:18
Score: 0.5
Natty:
Report link

Remove the root_folder from all of the imports. Example:

from root_folder.package2.script2 import example_func

Becomes:

from package2.script2 import example_func

Also, run your app with

python main.py

instead of

python -m root_folder.main

This should solve your issue.

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

79821191

Date: 2025-11-15 23:17:18
Score: 9.5 🚩
Natty: 4.5
Report link

I am facing the same issue - did you ever find a solution to this? :)

Reasons:
  • RegEx Blacklisted phrase (3): did you ever find a solution to this
  • Low length (1.5):
  • No code block (0.5):
  • Me too answer (2.5): I am facing the same issue
  • Contains question mark (0.5):
  • Single line (0.5):
  • Low reputation (1):
Posted by: devofuiapps

79821185

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

If you already have the BIND zone files, you can import them into cPanel automatically using this open-source tool:

https://github.com/mansourjabin/cpanel-zone-importer

It reads a standard BIND zone file and creates the corresponding DNS records in cPanel through its API, so you don't need to add everything manually.
It works on regular cPanel accounts and does not require WHM root access.

Reasons:
  • No code block (0.5):
  • Low reputation (1):
Posted by: Mansour Jabin - منصور جبین پور

79821183

Date: 2025-11-15 23:01:14
Score: 0.5
Natty:
Report link

The question is where Hashicorp Vault on MacOS stores by default the configuration file when initialised, without providing any flags.

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

79821181

Date: 2025-11-15 22:58:13
Score: 0.5
Natty:
Report link

You can use the replace directive to point to a local copy of the module. As you modify the module code locally, the compiler just uses the current state of that code. No fussing with versions.

Similar question:

https://stackoverflow.com/a/74891220

The official docs offer a more robust description.

https://go.dev/doc/modules/managing-dependencies#local_directory

Reasons:
  • Blacklisted phrase (1): stackoverflow
  • Whitelisted phrase (-1.5): You can use
  • Low length (0.5):
  • No code block (0.5):
Posted by: Brian Wagner

79821177

Date: 2025-11-15 22:49:11
Score: 1.5
Natty:
Report link

Used Node.js v16 (via nvm use 16), then ran npm install griddb-node-api — Node 18/20 failed because the package still depends on legacy native bindings.
After switching to v16, the install completes even with engine warnings, and the client works normally on WSL.

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

79821176

Date: 2025-11-15 22:44:10
Score: 1.5
Natty:
Report link

One build one user.
Does it even make sense? Are several people working on one remote brunch?

In general there is a repository (git) and a build server (Jenkins) remote. Every checks out the source localy and after finishing work it should be merged on the remote git server and remote build and tested on Jenkins.

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

79821174

Date: 2025-11-15 22:43:09
Score: 0.5
Natty:
Report link
  1. Where is 'Sub sys_PrepareToSend()' code located? It may be that your code is located on in your local hard drive under your profile similar to the following 'C:\Users\user_name\AppData\Roaming\Microsoft\AddIns\' rather than in the workbook?

  2. I have something that does something similar, except that it copies and paste the content of the used range over the top of itself. Not exactly what you want, but may help. Careful as this wipes out all formulas so you must save the workbook to a different file before running.

    'Step 3
    private Sub copy_and_paste_values_in_order()
        Dim sht_order As Variant
        sht_order = Array("Sum2", "SPaint", "FPaint", "Supt", "Prod", "Pile", "Conc", "PipUG", "Steel", "Equip", "PipShp", _
                          "PipFld", "Insul", "Trace", "FirePrf", "EI", "Bldg", "Demo", "SpSub", "Indir", "Conting", "Owner", "KeyQty")
    
        'Dim variables used in the loop
        Dim ws As Worksheet
        Dim usedRange As Range
        Dim sht As Variant
    
        For Each sht In sht_order
            on Error Resume Next
            ' Set the worksheet object
            Set ws = ThisWorkbook.Sheets(sht)
    
            ' Define the used range
            Set usedRange = ws.usedRange
    
            ' Copy the used range
            usedRange.Copy
    
            ' Define the destination range (e.g., starting at cell A1 in a different location)
            ws.Range("A1").PasteSpecial Paste:=xlPasteValues
    
            ' Clear Clipboard (Optional)
            Application.CutCopyMode = False
    
            'Activate current Sheet, Select Cell A2, Scoll Up -> True
            ws.Activate
            ws.[a2].Select
            Application.Goto Worksheets(Sht).Range("A2"), True
    
        Next sht
    
        'cleanup delete ws object
        Set ws = Nothing
    End Sub
    
Reasons:
  • Long answer (-1):
  • Has code block (-0.5):
  • Contains question mark (0.5):
  • Starts with a question (0.5): Where is
  • Low reputation (1):
Posted by: Tony Sciple

79821162

Date: 2025-11-15 22:11:03
Score: 1.5
Natty:
Report link

i solved it here but this issue for database domain name
using aioodbc engine and sqlalchemy

https://stackoverflow.com/a/79821137/17470890

Reasons:
  • Blacklisted phrase (1): stackoverflow
  • Whitelisted phrase (-2): i solved
  • Low length (1):
  • No code block (0.5):
  • Low reputation (1):
Posted by: Mohanad Gadallah

79821156

Date: 2025-11-15 22:00:00
Score: 3.5
Natty:
Report link

The issue was that Ionicons was imported incorrectly.

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

79821154

Date: 2025-11-15 21:56:59
Score: 2.5
Natty:
Report link

Ended up using pointermove event and elementFromPoint

https://developer.mozilla.org/en-US/docs/Web/API/Document/elementFromPoint

Reasons:
  • Probably link only (1):
  • Low length (1.5):
  • Has code block (-0.5):
  • Self-answer (0.5):
Posted by: Pytan

79821153

Date: 2025-11-15 21:52:58
Score: 3.5
Natty:
Report link

Nope. Nope. Nope. I am just very dumb and stupid and added the persistence feature to egui instead of eframe. This is so very stupid. The question is solved.

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

79821152

Date: 2025-11-15 21:51:57
Score: 0.5
Natty:
Report link

If you are using bootstrapApplication() in Angular, you can modify the global configuration of Ionic using provideIonicAngular() like this in main.ts file

bootstrapApplication(AppComponent, {
  providers: [
    // other providers
    provideIonicAngular({ mode: 'ios' }),
  ]
});
Reasons:
  • Low length (0.5):
  • Has code block (-0.5):
  • Low reputation (0.5):
Posted by: Sergio Ponce Domínguez

79821150

Date: 2025-11-15 21:47:56
Score: 0.5
Natty:
Report link

I found a solution for realtime report refresh (behind proxy):

Pass folowing argument to the goaccess

--ws-url=wss://yourdomain.com:443/ws

The port part is crucial, otherwise goaccess will trying to connect to its default port (7890)

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

79821134

Date: 2025-11-15 21:32:53
Score: 1
Natty:
Report link

For me, on SSMS 21, the files were located in:

C:\Users\[YourUserName]\AppData\Local\Microsoft\SSMS\BackupFiles\Solution1\
Reasons:
  • Low length (1):
  • Has code block (-0.5):
  • Low reputation (0.5):
Posted by: James

79821112

Date: 2025-11-15 21:03:44
Score: 2
Natty:
Report link

You should do like that:

embedding: "VECTOR(768)",

https://sequelize.org/docs/v7/other-topics/extending-data-types/

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

79821101

Date: 2025-11-15 20:40:38
Score: 7 🚩
Natty: 6
Report link

really cool; just it doesnt work for me; it compiles but at the moment i add the widget CreateWidget isn;t called (console app does start); any idea how to troubleshoot?

Reasons:
  • Blacklisted phrase (1): doesnt work
  • RegEx Blacklisted phrase (2): doesnt work for me
  • Low length (1):
  • No code block (0.5):
  • Ends in question mark (2):
  • Single line (0.5):
Posted by: Dave Smits

79821098

Date: 2025-11-15 20:33:37
Score: 2.5
Natty:
Report link

I couldn't find this setting so I had to do this instead fmt.Print(" " + uuid.New().String())

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

79821091

Date: 2025-11-15 20:11:32
Score: 1
Natty:
Report link

For me, the error was "An error occurred while installing mysql2 (0.5.4), and Bundler cannot continue"

I just had to run this command with explicit version that is the same as in my Gemfile:

gem install mysql2 -v '0.5.6' -- --srcdir=/usr/local/mysql/include

After that bundle install worked again

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

79821086

Date: 2025-11-15 19:58:29
Score: 2
Natty:
Report link

I found this,
it might help
super simple - no code required
Down side is that the site needs the tab to open to track your curler bots
whisp-crm.tech

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

79821081

Date: 2025-11-15 19:49:27
Score: 3
Natty:
Report link

As newprogrammer said, Dash is Mac OS only. However, the Dash extension for VS Code also supports Zeal, which is available on Windows

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

79821080

Date: 2025-11-15 19:46:26
Score: 0.5
Natty:
Report link

I found the error. It is in the case of left-justifying the last line. My available spaces are getting to negative, and I'm getting stuck there until memory exhausts.

updated portion of the code:

                if(isLastLine){
                    for(String word: mapping.words){
                        sb.append(word);
                        currentWordCount++;
                        if(currentWordCount < wordcount){
                            sb.append(" ");
                        }
                      }
                      int remaining = availableSpaces - minSpaces;  
                      while(remaining > 0){
                        sb.append(" ");
                        remaining -= 1;
                      }
                }
Reasons:
  • Long answer (-0.5):
  • Has code block (-0.5):
  • Self-answer (0.5):
  • Low reputation (1):
Posted by: satya

79821063

Date: 2025-11-15 19:23:20
Score: 2
Natty:
Report link

Most likely I was getting this error because the root module and a submodule shared the same name. When I changed the root module name I was able to aggregate jacoco report.

Related: Projects with same name lead to unintended conflict resolution #847

Reasons:
  • Low length (0.5):
  • No code block (0.5):
  • Self-answer (0.5):
  • Low reputation (0.5):
Posted by: Yevhen Vasyliev

79821056

Date: 2025-11-15 19:13:17
Score: 4.5
Natty:
Report link

Please, re-ask the question as regular one instead of "best practices". The variant "best practices" is intended for questions which are not enough objective for regular Q/A library. But your question is definitely suited for Q/A format. See also What should I do about "opinion-based" questions that should be regular Q&A posts?

Reasons:
  • Blacklisted phrase (2): What should I do
  • Low length (0.5):
  • No code block (0.5):
  • Ends in question mark (2):
  • Single line (0.5):
  • Looks like a comment (1):
  • High reputation (-2):
Posted by: Tsyvarev

79821050

Date: 2025-11-15 19:02:14
Score: 1.5
Natty:
Report link

If you want to have this feature, you should use one of the services like Appsflyer or any other that you can find on the WWW, or implement your own for this purpose.

There are nuances when you use services, they have Privacy Rules. For you, this meant that you can’t send more than 10 parameters in URL and all of them can’t have custom names( with custom names, you will be unable to handle these params during all edge cases ), at least Appsflyer has this rule, named UDL privacy protection.

I'm not sure how this mechanism works inside services, but I think it's based on the IP address, because if you open your deep link in one network and then change networks and install and open the app, services will be unable to deliver to your client params. I saw this problem during the implementation of Appsflyer.

This mechanism works in the following manner:

1 - You must implement Universal Link, with details needed for you.
2 - Server side should detect when a user visits your Universal Link, fetch all the needed data for you, user will have some IP address.
3 - You should have a client-side mechanism that will detect launching and make a request to your server side when you match a request by some unique parameter to detect that it was the same user, it will be the IP address, or something else.
4 - Server should return these params to the client side for further processing, or your own logic.

As an example of how this logic works, if you use AppsFlyer:

1 - You create a deep link.
2 - Define rules and params that should be in your UniversalLink using the web client.
3 - Integrate the SDK on the client side and listen response of these params from Appsflyer SDK.

Also, in this case, you should implement the logic of IDFA, it’s needed to catch some params, + you will not have data from SDK if the user changes the network where the link was opened and where the app was installed.

If your application, already installed, it will be handled normally, you will just be redirected to the app by clicking on Universal Link.

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

79821029

Date: 2025-11-15 18:39:07
Score: 2
Natty:
Report link

Must be something with the new "Visual studio 2026", if that's the case and you updated to a newer version then make sure to use the older 2022 version, if not then search for visual studio installer in task bar and head to the version you're using (probably visual studio entreprise 2022) in this case, and click on "More" -> Repair
if that doesn't work, reinstall and/or update correlating apps eg: mysql

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

79821027

Date: 2025-11-15 18:34:06
Score: 3
Natty:
Report link

Thank you to those who responded, I really appreciate it.

Others, please take out some time and fill the survey.

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

79821017

Date: 2025-11-15 18:24:03
Score: 4
Natty:
Report link

On the code pane, just below where the tabs for the files are displayed, there is a checkbox to toggle Source on Save. Is that checked?

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

79821013

Date: 2025-11-15 18:03:59
Score: 3
Natty:
Report link

For the device, click on the three dots > Edit > "Additional Settings" tab > Change "Default boot" to "Cold"

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

79821010

Date: 2025-11-15 18:02:58
Score: 0.5
Natty:
Report link

Just in case someone comes across this, i had the same problem - the fix was to change browser. In Chrome i had no error, while on Arc, it didn't work - seems like the chrome identity API has some problems when other browsers have some custom Headers.
View this issue thread for more context: https://github.com/brave/brave-browser/issues/7693#issuecomment-3015322687

I understand browsers like Brave & Arc do not support chrome.identity.getAuthToken() because of how Google has designed it.

Reasons:
  • Whitelisted phrase (-1): i had the same
  • No code block (0.5):
  • Low reputation (1):
Posted by: imdipp

79821001

Date: 2025-11-15 17:45:54
Score: 1
Natty:
Report link

I had to build something similar recently while working on internal tools for Ellipticlean. AlarmManager with ELAPSED_REALTIME_WAKEUP was the only reliable method that continued to run during device sleep.

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

79820997

Date: 2025-11-15 17:40:53
Score: 5.5
Natty:
Report link

rtrim($viewPath, '/') . '/'; // Ensure trailing slash <--- Have you tried rtrim on the /?

Also, do you have a .htaccess file that could be overwriting what your code is trying to accomplish?

Reasons:
  • Whitelisted phrase (-1): Have you tried
  • RegEx Blacklisted phrase (2.5): do you have a
  • Low length (0.5):
  • No code block (0.5):
  • Ends in question mark (2):
  • Low reputation (1):
Posted by: Gregory B

79820991

Date: 2025-11-15 17:32:50
Score: 2
Natty:
Report link

If anyone still needs an Android solution for controlling USB relay modules:
I’ve created app (Host + Remote) that handle USB relay control, including remote access. It’s now available on Google Play if you want to try it - https://play.google.com/store/apps/details?id=com.separdsoft.relaycontroller

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

79820988

Date: 2025-11-15 17:29:50
Score: 1.5
Natty:
Report link

@phd sorry, my bad and yes you are right. the Contributions only count from default or gh-pages branches. You can use squash merges and commit daily in feature branches, then git merge --squash to main for clean history. Each squashed merge counts as one contribution.I hope that answer your question.

Reasons:
  • Whitelisted phrase (-1.5): You can use
  • Low length (0.5):
  • Has code block (-0.5):
  • User mentioned (1): @phd
  • Single line (0.5):
  • Looks like a comment (1):
  • Low reputation (0.5):
Posted by: Jared McCarthy

79820985

Date: 2025-11-15 17:26:49
Score: 4.5
Natty: 4.5
Report link

# Source - https://stackoverflow.com/a/8415155

# Posted by Jonathan Levison

# Retrieved 2025-11-15, License - CC BY-SA 3.0

http://m.foursquare.com/venue/VENU

E_ID

Reasons:
  • Blacklisted phrase (1): stackoverflow
  • Probably link only (1):
  • Low length (1):
  • No code block (0.5):
  • Low reputation (1):
Posted by: Shahnawaz Lone

79820980

Date: 2025-11-15 17:18:46
Score: 5
Natty:
Report link

I wonder if you can throttle a process that pushes to SQS queue?

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

79820964

Date: 2025-11-15 17:02:42
Score: 3
Natty:
Report link

There is apparently no way to know which page is open by a particular user.
As someone said on a forum

How would the server know if HTML code is "opened" in a browser?

I couldn't find a solution, so I chose to do it differently.
All the code for SignalR is placed in the Layout.

Upon receiving a message, I want to know if the recipient is currently checking their messages or not.
I create a condition with an element of the document that only exists on the messaging page.

connection.on("ReceiveMessage", function(userexp, userdest, topic, message, refresh_status) {
   var contf = document.querySelector(".fiche"); // fiche only exists on my "Messaging" page
     if(contf != null)
      {
         //code for the Messaging page
      }
      else
      {
        //code for any other page (Notification PopUp in main menu)
      }

Consequently, by also placing the notification message template in the _Layout, I can notify the user at any time and anywhere on the site.

Reasons:
  • Blacklisted phrase (1): I want to know
  • RegEx Blacklisted phrase (1): I want
  • Long answer (-0.5):
  • Has code block (-0.5):
  • Contains question mark (0.5):
  • Self-answer (0.5):
  • Low reputation (1):
Posted by: AMP59

79820944

Date: 2025-11-15 16:04:30
Score: 1
Natty:
Report link

I know the interface doesn't make it clear but "General Advice/Other" is for questions that seek opinionated advice, not for factual questions like yours. You should probably delete this post and post it with the correct question type as changing the type is currently not supported.

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

79820939

Date: 2025-11-15 15:57:29
Score: 2
Natty:
Report link

Garena liên quân

UID 1231245858374769 Tên trong Game ☞๖ۣۜTασ๖ۣۜTύ☜

ls -l /path/to/your/file
Reasons:
  • Low length (1):
  • Has code block (-0.5):
  • Unregistered user (0.5):
  • Low reputation (1):
Posted by: Hoàng Chung

79820928

Date: 2025-11-15 15:39:25
Score: 1.5
Natty:
Report link

i believe you should use transaction in your exemple since you don't want to update one and the other throw an error and to answer your question i think it's better if you put taxProfileService.update inside the first service since it's kinda related to investorProfile

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

79820927

Date: 2025-11-15 15:38:24
Score: 5
Natty: 4.5
Report link

That’s a very helpful explanation of building a scalable TCP/IP server architecture. When planning to scale, it's important not just to think about CPU and memory, but also network infrastructure for example, leasing extra IPs or considering IP rent from cloud providers when you need more external endpoints. Thanks for sharing the code sample and design considerations.

Reasons:
  • Blacklisted phrase (0.5): Thanks
  • Blacklisted phrase (2): Thanks for sharing
  • No code block (0.5):
  • Unregistered user (0.5):
  • Single line (0.5):
  • Low reputation (1):
Posted by: Avena Cloud

79820923

Date: 2025-11-15 15:29:22
Score: 2
Natty:
Report link

I suspect the error is caused by a permission issue.

Add the js file in “Jimdo” under “Custom Layout”/“Files.” Then copy the link (right-click - copy link) and paste it under "Settings"/“Edit Header” in HTML format (<script scr="..."></script>).

An example of a link: https://u.jimcdn.com/cms/o/abc...123/userlayout/js/script.js?t=123....890

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

79820916

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

your initialFormData is just the ID (338) it should be the whole list of experiences.

when you delete one each other LiveComponent sees "old data = 338" vs "new data = 2 items" then thinks everything is gone so deletes all.

Set initialFormData to the full form array, not the ID.

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

79820915

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

I've have had to change

try writer.print("A number please: ");

to

try writer.print("A number please: ", .{});

to compile it with zig-0.15.2

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

79820913

Date: 2025-11-15 15:11:18
Score: 2
Natty:
Report link

Well, depending on the python version you use, you should set up a venv environment and install all your packages (including Django) in there again. Every time you want to run your Django project, you activate the venv (some IDEs may do this automatically). Here are the docs: https://docs.python.org/3/library/venv.html.

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

79820904

Date: 2025-11-15 14:56:14
Score: 4
Natty:
Report link

For anyone who was wondering, the problem is the return value in bh_entry_hook: with a non-zero value the Kprobes leaves the return address as is, and the kretprobe has no further effect for that particular function instance, from the docs https://docs.kernel.org/trace/kprobes.html

Reasons:
  • Blacklisted phrase (2): was wondering
  • Low length (0.5):
  • Has code block (-0.5):
  • Self-answer (0.5):
  • Single line (0.5):
  • Low reputation (1):
Posted by: Damiano De Orazi

79820900

Date: 2025-11-15 14:49:13
Score: 0.5
Natty:
Report link

Well, the detour via pandas may work but seems less than perfect. I would use PyWin32 and COM wrapping. Then you can use the normal EXCEL interface directly.

To support such tasks I wrote an EXCEL wrapper that allows to use the EXCLE API even in a pythonic way i. e. you may call the saveas method of a workbook as SaveAs as defined, as saveas or as save_as. All done automatically. Same should work for the parameters. If you consequently use this, one may even won't notice you are using pure EXCEL API in your Python code. With that you only have the overhead of COM interfacing but not all internal file formattingt logic in openPyXL in Python. I think this has a substantial impact on runtime. However, you need to have an EXCEL installation for this to work.

https://github.com/dornech/utils-msoffice

Reasons:
  • Whitelisted phrase (-1.5): you can use
  • Contains signature (1):
  • Long answer (-0.5):
  • No code block (0.5):
  • Low reputation (1):
Posted by: dornech

79820897

Date: 2025-11-15 14:44:11
Score: 1
Natty:
Report link

This works great for UK counties, but if I select Ireland as the Country for shipping I get an error saying:

Oops!
Unexpected error in: woocommerce/checkout-shipping-address-block
Error: Node.removeChild: The node to be removed is not a child of this node

The code I tried was:

add_action( 'wp_footer', 'ag_force_ni_shipping_counties_js', 20 );

function ag_force_ni_shipping_counties_js() {
  if ( ! function_exists( 'is_checkout' ) || ! is_checkout() ) {
      return;
  }
  ?>
  <script>
      (function () {
          // Our allowed counties for shipping
          const agNiCounties = [
              { value: 'ANT', label: 'Co Antrim' },
              { value: 'ARM', label: 'Co Armagh' },
              { value: 'DOW', label: 'Co Down' },
              { value: 'FER', label: 'Co Fermanagh' },
              { value: 'LDY', label: 'Co L/derry' },
              { value: 'TYR', label: 'Co Tyrone' }
          ];

          function agReplaceShippingStateOptions() {
              const select = document.getElementById('shipping-state');
              if (!select) {
                  return;
              }
              

              // Clear all existing options
              while (select.options.length > 0) {
                  select.remove(0);
              }

              // Placeholder option
              const placeholder = document.createElement('option');
              placeholder.value = '';
              placeholder.disabled = true;
              placeholder.selected = true;
              placeholder.textContent = 'Select a county';
              placeholder.setAttribute('data-alternate-values', '[Select a county]');
              select.appendChild(placeholder);

              // Add our NI counties
              agNiCounties.forEach(function (item) {
                  const opt = document.createElement('option');
                  opt.value = item.value;
                  opt.textContent = item.label;
                  opt.setAttribute('data-alternate-values', '[' + item.label + ']');
                  select.appendChild(opt);
              });
          }

          // Initial runs
          document.addEventListener('DOMContentLoaded', agReplaceShippingStateOptions);
          window.addEventListener('load', agReplaceShippingStateOptions);

          // Watch for Woo Blocks / dynamic updates
          const observer = new MutationObserver(function (mutations) {
              mutations.forEach(function (mutation) {
                  mutation.addedNodes.forEach(function (node) {
                      if (!(node instanceof HTMLElement)) {
                          return;
                      }
                      if (node.id === 'shipping-state' || node.querySelector?.('#shipping-state')) {
                          agReplaceShippingStateOptions();
                      }
                  });
              });
          });

          if (document.body) {
              observer.observe(document.body, { childList: true, subtree: true });
          }
      })();
  </script>
  <?php
}


Reasons:
  • RegEx Blacklisted phrase (1): I get an error
  • Long answer (-1):
  • Has code block (-0.5):
  • Self-answer (0.5):
  • Low reputation (1):
Posted by: Richard McClung

79820891

Date: 2025-11-15 14:34:09
Score: 2
Natty:
Report link

You cannot call a localhost URL leading from app on a phone to website running on a computer, because they are local URLs and cannot communicate with each other. You should ngrok or a tunneling service (get a constant URL if possible, works really well) and then use that URL instead.

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

79820887

Date: 2025-11-15 14:28:07
Score: 4.5
Natty:
Report link

i think it will handle yes check this : https://station.railway.com/questions/are-there-limits-on-total-transfer-size-3c991de1

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

79820876

Date: 2025-11-15 13:58:00
Score: 2
Natty:
Report link

Check for the webpage if it contains ad elements overlying your element you want to click. I had the similar problem occuring with an webpage. To solve you have multiple options:

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

79820870

Date: 2025-11-15 13:45:57
Score: 2
Natty:
Report link

You can try removing the part com.apple.developer.in-app-purchase from your *.entitlements file

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

79820869

Date: 2025-11-15 13:44:57
Score: 4.5
Natty:
Report link

thanks, this solution works great!!

Reasons:
  • Blacklisted phrase (0.5): thanks
  • Low length (2):
  • No code block (0.5):
  • Self-answer (0.5):
  • Single line (0.5):
  • Low reputation (0.5):
Posted by: A H Bensiali

79820867

Date: 2025-11-15 13:41:56
Score: 1.5
Natty:
Report link

I had a similar issue and my best bet is that it is linked to this issue with the ::: .

The current workaround seems to add blank lines around ::: to circumvent the issue (not great with readability).

Reasons:
  • Low length (1):
  • Has code block (-0.5):
  • Low reputation (1):
Posted by: Clément Calauzènes

79820865

Date: 2025-11-15 13:34:54
Score: 3
Natty:
Report link

Check out noip they have some free domains you can link to an ip

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

79820846

Date: 2025-11-15 13:01:46
Score: 2
Natty:
Report link

I changed the order of points of the polygon and it worked. If you have some weird issue, be sure to try that : )

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