79749008

Date: 2025-08-28 11:36:11
Score: 1
Natty:
Report link

Try:

project = PROJECT and issuetype = Epic and issueFunction not in hasLinkType("Epic-Story Link")
Reasons:
  • Low length (1):
  • Has code block (-0.5):
  • Low reputation (0.5):
Posted by: 0x53olution

79748993

Date: 2025-08-28 11:22:07
Score: 1
Natty:
Report link

I know this is an old question but for people stumbling across this, Canonical is at least in the works of sunsetting support for Bazaar in Launchpad and advices all users to migrate to Git workflows instead. Since Launchpad was the main Bazaar hub, I think it's safe to say that Bazaar is officially dead from september 1 2025: https://discourse.ubuntu.com/t/phasing-out-bazaar-code-hosting/62189

There is a fork, Breezy, that is keeping a form of Bazaar alive even today. (Ironically, it uses Git for version control) The last official relase of Bazaar was back in 2016.

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

79748991

Date: 2025-08-28 11:20:06
Score: 1.5
Natty:
Report link

Please try this in Pre-processor script and let me know if it works.

message = message.replace(/([^\\r])EVN\|/, '$1\rEVN|');

return message

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

79748986

Date: 2025-08-28 11:18:05
Score: 1
Natty:
Report link

IIS Configuration

1. Install Required Components

2. ARR Settings

3. Request Filtering

4. URL Rewrite Rule

5. Configuration Editor

-------------

Jenkins Configuration

1. System Configuration

2. Security Settings

-------

Notes

ref: https://stackoverflow.com/a/63146495/9082863

Reasons:
  • Blacklisted phrase (1): stackoverflow
  • Long answer (-1):
  • Has code block (-0.5):
  • Filler text (0.5): -------------
  • Low reputation (1):
Posted by: Talip ÇAKIR

79748983

Date: 2025-08-28 11:15:04
Score: 3
Natty:
Report link

Wifi password is not working

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: SOHAIL BANGASH SOHAIL BANGASH

79748974

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

Yes, I'm trying this script on my website, nothing to change anything site name fwab

Reasons:
  • Low length (1.5):
  • No code block (0.5):
  • Single line (0.5):
  • Low reputation (1):
Posted by: SandhyaToday Promo's

79748973

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

Our women’s fashion store is all about style, elegance, and confidence. We bring you a carefully curated collection of clothing that blends timeless classics with the latest trends. From chic casual wear to sophisticated evening looks, our pieces are designed to make every woman feel beautiful, empowered, and effortlessly stylish.

We focus on high-quality fabrics, modern cuts, and versatile designs that fit seamlessly into your lifestyle.

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

79748970

Date: 2025-08-28 11:07:03
Score: 1.5
Natty:
Report link

You are missing the important 'mocks initialization' statement in your before method. Adding this statement should solve the problem.

MockitoAnnotations.initMocks(this); // for below Mockito 3.4.0

MockitoAnnotations.openMocks(this); // for Mockito 3.4.0 and above

Sources :

  1. link : Initialising mock objects - Mockito

  2. link : https://www.javadoc.io/doc/org.mockito/mockito-core/3.4.0/org/mockito/MockitoAnnotations.html

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

79748956

Date: 2025-08-28 10:54:59
Score: 7
Natty: 6.5
Report link

I have also worked with pyonnate but it doesnt detect properly who is is speaking , it gets confused between different speakers. so i go for fixing the variable num_speaker but there is a usecase that we dont know total number of speaker in audio gonna be . Can you please guide on this ?

Reasons:
  • RegEx Blacklisted phrase (2.5): Can you please guide
  • Low length (0.5):
  • No code block (0.5):
  • Ends in question mark (2):
  • Single line (0.5):
  • Low reputation (1):
Posted by: Suman Bai

79748951

Date: 2025-08-28 10:50:58
Score: 1.5
Natty:
Report link

It looks like the DevOps pipeline is using the default -O2 optimization for Emscripten, which is why you’re seeing that in the build logs. To switch to -O3, you’ll need to pass it explicitly to the emcc compiler. Depending on how your pipeline is set up, this usually means adding -O3 in the Blazor WebAssembly AOT compilation settings or in the MSBuild arguments for the pipeline task. Basically, you want to override the default optimization level so Emscripten knows to use more aggressive optimizations. It might take a little trial to get the exact spot where the flag needs to be inserted, but that’s the general approach.

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

79748942

Date: 2025-08-28 10:36:54
Score: 1
Natty:
Report link

In my case there was a line in the very beginning and end of the SQL file that wasn't supposed to be there. (from the export or extraction).

I started with a .tzst file (from Plesk)

Removing the very first and last line from the .sql made the import work!

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

79748935

Date: 2025-08-28 10:29:53
Score: 2
Natty:
Report link

I have been trying to solve this issue, but I have not found any solution. I have a Laravel 12 backend and a Vue 3 frontend, separate from each other. To subscribe to the private channel, I must authenticate with the backend. For that, I have used the endpoint: "broadcasting/auth," but it always returns an exception.

Symfony\\Component\\HttpKernel\\Exception\\AccessDeniedHttpException

I have also tried to fix this, but no luck. I also added the middleware for Broadcast.

Broadcast::routes(['middleware' => ['auth:sanctum']]); 

Also tried below

Broadcast::channel('App.Models.User.{id}', function ($user, $id) {
    return (int) $user->id === (int) $id;
});
Broadcast::channel('App.Models.User.*', function () {
    return true;
});

Frontend pusher initialization

this.pusher = new Pusher(import.meta.env.VITE_PUSHER_KEY, {
                cluster: import.meta.env.VITE_PUSHER_CLUSTER,
                forceTLS: true,
                authEndpoint: `${APP_URL}/broadcasting/auth`, // localhost:8000/broadcasting/auth
                auth: {
                    headers: {
                        Authorization: BearerToken,
                        Accept: 'application/json',
                    },
                },
            })

it does make connection with the public channles but unable to do with the private

Reasons:
  • Blacklisted phrase (1.5): any solution
  • Blacklisted phrase (1): no luck
  • Long answer (-1):
  • Has code block (-0.5):
  • Low reputation (1):
Posted by: Tushar

79748923

Date: 2025-08-28 10:13:49
Score: 0.5
Natty:
Report link
a = int(input())
q = a
b = []
fheight = []
j = 0
sheight = []
jkf = []

for i in range(a):
    c = int(input())
    b.append(c)

for p in range(a-1):    
    n=p
    k=p+1 
    q -= 1

    for i in range(q):
        d = (b[n]-b[k])
        if d < 0:
            k += 1
            fheight.append(d)
            jkf.append(p)

        else:   
            k += 1
m = min(fheight)*-1
h = fheight.index(min(fheight))
s = (jkf[h]) + 1
for p in range(s, a-1):    
    n=p
    k=p+1 
    q = (a-1) - p

    for i in range(q):
        d = (b[n]-b[k])
        if d > 0:
            k += 1
            sheight.append(d)

        else:
            
            k += 1
print(max(sheight) + m)




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

79748922

Date: 2025-08-28 10:10:48
Score: 1
Natty:
Report link

A bit late with a solution/workaround but hopefully this helps someone.

TortoiseSVN seems to be determining the Windows locale in a wrong way. It seems to use the language used for the Windows date, time and number formats. When I changed the formatting language to "English (United states)" the problem was fixed for me.

If the spell check you want to use is English but you want your date to be formatted the German way you could change the formatting language to "English (German)".

Changing the Windows region fromat

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

79748914

Date: 2025-08-28 09:59:46
Score: 2.5
Natty:
Report link
         Rule       | supp  |  conf   |  lift
    -------------------------------------------
     B ->  C & E    |  50%  |  66.67% |  1.33
     E ->  B & C    |  50%  |  66.67% |  1.33
     C ->  E & B    |  50%  |  66.67% |  1.77
     B & C ->  E    |  50%  |  100%   |  1.33
     E & B ->  C    |  50%  |  66.67% |  1.77
     C & E ->  B    |  50%  |  100%   |  1.33
How to calculated the supp,can give me formula?
Reasons:
  • Has code block (-0.5):
  • Ends in question mark (2):
  • Low reputation (1):
Posted by: Landry MUGISHA

79748911

Date: 2025-08-28 09:53:44
Score: 8
Natty: 5
Report link

facing same issue

is any one have solution can you please share

Reasons:
  • RegEx Blacklisted phrase (2.5): can you please share
  • Low length (1.5):
  • No code block (0.5):
  • Me too answer (2.5): facing same issue
  • Low reputation (1):
Posted by: Nilesh Bhayani

79748910

Date: 2025-08-28 09:51:43
Score: 0.5
Natty:
Report link

So my code worked what I needed to do was add https://github.com/settings/developers → OAuth Apps → your app.

I created an app somewhere else in github

Reasons:
  • Blacklisted phrase (0.5): I need
  • Low length (1):
  • Has code block (-0.5):
  • Self-answer (0.5):
  • High reputation (-1):
Posted by: user1898829

79748909

Date: 2025-08-28 09:50:43
Score: 1
Natty:
Report link

When authenticating using Entra, rather than using Office.auth.getAccessTokenAsync use createNestablePublicClientApplication from the MSAL library

import { createNestablePublicClientApplication} from "@azure/msal-browser";

Register an app in Entra Id and use


  var pca = await createNestablePublicClientApplication({
      auth: {
        clientId: "00000000-0000-0000-0000-00000000", //APPID
        authority: "https://login.microsoftonline.com/00000000-0000-0000-0000-00000000" //TENANTID
      },
    });
    const tokenRequest = {
      scopes: [                
        "Mail.Read",
        ...
        ],
    };
      
    const userAccount = await pca.acquireTokenSilent(tokenRequest);
        var restId = Office.context.mailbox.convertToRestId(Office.context.mailbox.item.itemId, Office.MailboxEnums.RestVersion.v2_0);

    var mailContent = await fetch(
      "https://graph.microsoft.com/v1.0/me/messages/" + restId + "/$value", {
        method: "GET",
        headers: {
          "content-type": "application/json",
          "Authorization": ("Bearer " + userAccount.accessToken)
        }});

Enable single sign-on in an Office Add-in with nested app authentication - Office Add-ins | Microsoft Learn

Reasons:
  • Probably link only (1):
  • Long answer (-1):
  • Has code block (-0.5):
  • Starts with a question (0.5): When
  • Low reputation (1):
Posted by: musch

79748908

Date: 2025-08-28 09:50:43
Score: 1
Natty:
Report link

If you're using UV to manage your Python project this can be done with

uv add --dev pyright

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

79748906

Date: 2025-08-28 09:48:43
Score: 0.5
Natty:
Report link

Current Restriction in Microsoft Purview Unity Catalog Scanning

As of now, Microsoft Purview only supports scoped scans at the catalog level when working with Azure Databricks Unity Catalog. This means:

Workarounds and Recommendations

While schema-level filtering is not natively supported, here are some practical workarounds:

1. Split Catalogs Strategically

2. Use Managed Access Controls

3. Automate Filtering via Scripts

4. Leverage Lineage Tracking

5. Use Hive Metastore for Schema-Level Scans

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

79748897

Date: 2025-08-28 09:41:40
Score: 2
Natty:
Report link

Firmware is the low-level, hardware-specific code that boots, configures, and directly controls a device, whereas embedded software is broader, often layered above firmware to provide features, user logic, networking, filesystems, and apps; all firmware is embedded software, but not all embedded software is firmware. The distinction is not about using RTOS or RAM alone, but about role, coupling to hardware, update model, and where it sits in the stack

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

79748889

Date: 2025-08-28 09:36:38
Score: 2
Natty:
Report link

David Maze pointed me to this post about the same problem. The second answer:

In your Jenkins interface go to "Manage Jenkins/Global Tool Configuration"

Then scroll down to Docker Installations and click "Add Docker". Give it a name like "myDocker"

Make sure to check the box which says "Install automatically". Click "Add Installer" and select "Download from docker.com". Leave "latest" in the Docker version. Make sure you click Save.

did not work for me. I have to add that I'm new to Jenkins so I might have just failed to figure out the correct Jenkinsfile.

so I followed the first comment and made a custom Dockerfile. Although I followed this Jenkins Community post to create this Dockerfile:

Dockerfile.jenkins:

# https://github.com/jenkinsci/docker/blob/master/README.md
FROM jenkins/jenkins:lts-jdk17

USER root

# install docker cli
RUN apt-get -y update; apt-get install -y sudo; apt-get install -y git wget
RUN echo "Jenkins ALL=NOPASSWD: ALL" >> /etc/sudoers
RUN wget http://get.docker.com/builds/Linux/x86_64/docker-latest.tgz
RUN tar -xvzf docker-latest.tgz
RUN mv docker/* /usr/bin/

USER jenkins

Finally, I had problems setting permissions for the Docker socket. Because while that -v flag I mentioned in the OP does cause some docker.sock to be mapped into the Jenkins container, I can't find it on the host system or in WSL, so I can't set its permissions. If it's some virtual file that actually redirects to \\.\pipe\docker_engine, that may be impossible. There was a [post](Bind to docker socket on Windows) with a great many answers about this. The only one applicable to my case of running a Linux container on a Windows host was to start the container with --user root. I'll have to investigate whether that's okay security-wise for us.

So, the final commands to start the container are

$ docker build -f ./Dockerfile.jenkins -t jenkins-docker:latest .
$ docker run --name jenkins-docker -p 8080:8080 -v //var/run/docker.sock:/var/run/docker.sock --user root jenkins-docker:latest
Reasons:
  • Blacklisted phrase (1): did not work
  • RegEx Blacklisted phrase (1.5): I'm new
  • Long answer (-1):
  • Has code block (-0.5):
  • Self-answer (0.5):
  • Low reputation (0.5):
Posted by: LemongrabThree

79748886

Date: 2025-08-28 09:32:37
Score: 0.5
Natty:
Report link

Solving the problem through Unitask

using Cysharp.Threading.Tasks;
using DG.Tweening;
using UnityEngine;
public class WindowStartAnimation : MonoBehaviour
{
    [SerializeField] private GameObject _window;
    private UIAnimation _UIAnimation;
    [SerializeField] private float _animDuration;
    private async UniTask StartAnimationTask()
    {
        await UniTask.Yield();
        await UniTask.NextFrame();
        _UIAnimation = new();
        if(_window != null)
            _UIAnimation.UIScale(_window, new Vector3(0.4f, 0.4f), Vector3.one, _animDuration, Ease.OutBack, false);
    }
    private void Start()
    {
        StartAnimationTask().Forget();
    }
}
Reasons:
  • Long answer (-0.5):
  • Has code block (-0.5):
  • Self-answer (0.5):
  • Low reputation (1):
Posted by: Aleksey Kon

79748882

Date: 2025-08-28 09:30:36
Score: 7.5
Natty: 5.5
Report link

Веб сайт жасау:Менің сүйікті кітабым

Reasons:
  • Low length (2):
  • No code block (0.5):
  • Single line (0.5):
  • No latin characters (3.5):
  • Low reputation (1):
Posted by: Райхан Кожахова

79748879

Date: 2025-08-28 09:29:36
Score: 0.5
Natty:
Report link

The problem is not XGBoost itself, it is how the data is being represented. By one-hot encoding every email address, you have turned each unique email into its own column, which is why your model now expects 1000 inputs. That approach also doesn’t generalize, your model is just memorizing specific emails instead of learning patterns.

If the label is truly tied to individual emails (e.g. abc@gmail → high, xyz@yahoo → low), then you don’t need ML at all, you just need a lookup table or dictionary. A model will never be able to guess the label for an unseen email in that case.

If you want ML to work, you need to extract features from the email that can generalize. For example, use the domain (gmail.com, yahoo.com), the top-level domain (.com, .org), or simple stats about the username (length, numbers, special characters, etc.). That way you only have a few numeric features, and your model input is small and stable.

Another option is to use techniques like hashing (fixed-size numeric representation) or target encoding instead of one-hot encoding. And when you deploy, make sure your API does the same preprocessing step so you can just send an email string, and the server will convert it into the right features before calling the model.

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

79748875

Date: 2025-08-28 09:26:35
Score: 0.5
Natty:
Report link

Try setting your model to evalaution mode with my.eval() before writing it to tensorboard.

This reduces the randomness in your model for each pass. As the add_graph method calls the graph several times for tracing, it errors when differences happend due to the random nature of the model.

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

79748848

Date: 2025-08-28 08:59:28
Score: 1.5
Natty:
Report link

it's because your kernel expects 7 bit addressing instead of 8 bit addressing.
In 8 bit addressing you will have the slave address(7bit) + read/write bit (1bit).

In 7 bit addressing you will right shift the bit once, so that read/write bit will be removed and you'll get only the slave address which is enough to detect the device present at that address.

Read more about 7 bit addressing in linux.

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

79748847

Date: 2025-08-28 08:58:28
Score: 2.5
Natty:
Report link

Restating the Problem

You want:

  1. Accessor methods like get_<PropertyName>() to be hidden automatically when a class instance is created.

  2. If the accessor method is explicitly declared with the hidden keyword, the related ScriptProperty should also be hidden.

  3. To be able to toggle this "hidden" visibility programmatically at runtime (not just at design-time with hidden).

In short: Can you dynamically hide methods (e.g., from Get-Member) after class creation in PowerShell?


Direct Answer

No — you cannot dynamically hide methods on a PowerShell class once it has been compiled.

PowerShell classes are just thin wrappers over .NET types. Once the type is emitted, the metadata about its members (visibility, attributes, etc.) is fixed. Unlike C#, PowerShell does not expose any supported mechanism to rewrite or patch that metadata at runtime.


Why This Is the Case


What You Can Do Instead

Since you can’t change class methods at runtime, here are workarounds:

1. Use Add-Member / PSObject layer instead of class

If you attach script properties/methods dynamically:

$o = [PSCustomObject]@{}
$o | Add-Member -MemberType ScriptMethod -Name "MyMethod" -Value { "Hello" }

# Hide it later
$o.PSObject.Members["MyMethod"].IsHidden = $true

Now Get-Member won’t show MyMethod, because IsHidden works on PSObject members.

This gives you the runtime flexibility you’re asking for, but not within class.


2. Use hidden at design time

If you’re sticking with classes, the only supported way:

class MyClass {
    hidden [string] HiddenMethod() { "secret" }
}

This hides it from Get-Member, but you cannot toggle later.


3. Hybrid approach: wrap the class

You can keep your logic in a class, but expose accessors as PSObject script properties, which you can hide/unhide dynamically:

class MyClass {
    [string] Get_Secret() { "hidden stuff" }
}

$inst = [MyClass]::new()
$ps = [PSCustomObject]@{ Base = $inst }
$ps | Add-Member ScriptProperty Secret { $this.Base.Get_Secret() }
$ps.PSObject.Members["Secret"].IsHidden = $true

Now you have a class internally, but only expose dynamic script properties externally, where you can control visibility.


Limitations & Caveats


Final Summary

If you want, I can draft a POC “Use-ClassAccessors” helper that builds instances using PSObject + Add-Member, so you can keep the same API style but gain runtime hide/unhide capability.

Would you like me to sketch that?

Reasons:
  • Blacklisted phrase (1): Is it possible to
  • Long answer (-1):
  • Has code block (-0.5):
  • Ends in question mark (2):
  • Low reputation (1):
Posted by: Sona Arajyan

79748844

Date: 2025-08-28 08:55:27
Score: 0.5
Natty:
Report link

Think the question is NOT about reading an error message, and NOT about how to enable identity_insert (you can see this from the 1st code snippet of the question itself). It is also NOT about if using identity_insert is a good, bad or risky thing.
The question was: "However when I run the application..."
Or: Why does it work once, but does not work a second time.
Answer: you have to enable identity_insert per connection.
Good practice: enable it only temporarily for a single insert statement.
use it only if you really need it.

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

79748839

Date: 2025-08-28 08:48:25
Score: 3
Natty:
Report link

I use this approach, based on danielsiegl.gitsqlite - a wrapper with some additional powers for bigger databases!

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

79748838

Date: 2025-08-28 08:48:25
Score: 0.5
Natty:
Report link

To expand a bit on @BenjiWiebe answer.

One can also discard the stdout of tee with:

echo "something" | tee file1.txt file2.txt file3.txt 1>/dev/null

Although this way it is not posible to mix overwrite with append (unless piped again to other tee).

Use this to mix overwrite and append:

# overwrite file1.txt and append to file2.txt and file3.txt
echo "something" | tee file1.txt | tee -a file2.txt file3.txt 1>/dev/null
# same as
echo "something" | tee -a file2.txt file3.txt > file1.txt

In the end tee and unix pipes are quite flexible, one can then decide what combination makes more sense in a script.

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

79748837

Date: 2025-08-28 08:47:25
Score: 1
Natty:
Report link

It saves my time.

if #available(iOS 15, *) {
    self.tableView.sectionHeaderTopPadding = 0
}
Reasons:
  • Low length (1):
  • Has code block (-0.5):
  • Low reputation (0.5):
Posted by: Faraz Zafar

79748828

Date: 2025-08-28 08:41:23
Score: 7.5
Natty: 5
Report link

Do you have any more information on the solution mentioned aboved? The link does not work.

Reasons:
  • Blacklisted phrase (1): The link does not work
  • RegEx Blacklisted phrase (2.5): Do you have any
  • Low length (1):
  • No code block (0.5):
  • Contains question mark (0.5):
  • Unregistered user (0.5):
  • Single line (0.5):
  • Low reputation (1):
Posted by: ukone10

79748824

Date: 2025-08-28 08:38:22
Score: 0.5
Natty:
Report link
DATABASE_URL = "postgresql://myusername:mypassword@localhost/postgres"

This line seems weird.

If myusername and mypassword are variable,you should use format-string like below

DATABASE_URL = f"postgresql://{myusername}:{mypassword}@localhost/postgres"

Hope it works.

Reasons:
  • Whitelisted phrase (-1): Hope it works
  • Low length (0.5):
  • Has code block (-0.5):
  • Unregistered user (0.5):
  • Low reputation (1):
Posted by: Li Zihao

79748814

Date: 2025-08-28 08:25:19
Score: 1.5
Natty:
Report link

It’s not possible to change a method’s visibility at runtime in PowerShell classes. The private or hidden keywords must be used at design time. Get-Member will always show public methods defined in the class, and attributes like Browsable cannot dynamically hide them once the class is compiled.

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

79748798

Date: 2025-08-28 08:09:15
Score: 1.5
Natty:
Report link

You can try implementing visual similarity search with BilberryDB SDK: bilberrydb.com. It’s a vector database with HNSW-based similarity search and few-shot learning support.

Note though, this won’t search the entire web like Google Images instead, you would need to upload your own image collection and it will let you build a reverse / visual similarity search system over that dataset.

They also provide a visual similarity search demo app: app.bilberrydb.com/?app=3kirqgqd2b6 you can try out.

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

79748795

Date: 2025-08-28 08:08:15
Score: 2.5
Natty:
Report link

try Eclipselink 4.0.5, since 4.0.6 and now 4.0.7 fails with earlier setup and complains about missing transaction manager - what is not the case. My guess scanning order is changed starting by EL 4.0.6.

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

79748792

Date: 2025-08-28 08:02:14
Score: 1
Natty:
Report link

The command "jumpTo.lastCursor" does not exist in VSCode natively and therefore doesnt work without an unspecified additional plugin. This is the correct config:

  // allow to exit multi cursor mode with escape
  {
    "key": "escape",
    "command": "runCommands",
    "args": {
      "commands": [
        "editor.action.focusPreviousCursor",
        "removeSecondaryCursors"
      ]
    },
    "when": "editorHasMultipleSelections && textInputFocus"
  },
Reasons:
  • Blacklisted phrase (1): doesnt work
  • Has code block (-0.5):
  • Low reputation (0.5):
Posted by: LeonMueller - OneAndOnly

79748790

Date: 2025-08-28 08:01:13
Score: 2.5
Natty:
Report link

Illustrator objects cannot be positioned directly with OpenPDF. For precise placement, calculate Yline by measuring coordinates in Illustrator, then apply equivalent values in OpenPDF's coordinate system.

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

79748788

Date: 2025-08-28 08:00:13
Score: 3
Natty:
Report link

1. Do you have the same session id when the client is redirected back to your application?

2. Are your client and OAuth2 server on the same host? If not, you should be aware that Cookie shouldn't be set to Strict, because the browser will not send it back to a different domain. It should be set to Lax in this case scenario.

Reasons:
  • RegEx Blacklisted phrase (2.5): Do you have the
  • Has code block (-0.5):
  • Contains question mark (0.5):
  • Low reputation (0.5):
Posted by: Aleksander Burzec

79748785

Date: 2025-08-28 07:57:11
Score: 0.5
Natty:
Report link

It Resolved by setting AutoDirectMode to Off in App_Start/RouteConfig.cs

settings.AutoRedirectMode = RedirectMode.Off;

and if you use ScriptManager, change EnablePageMethods value to 'true':

<asp:ScriptManager ID="ScriptManager1" runat="server" EnablePageMethods="True">
    </asp:ScriptManager>
Reasons:
  • Low length (0.5):
  • Has code block (-0.5):
  • Low reputation (0.5):
Posted by: Zari Habibi

79748764

Date: 2025-08-28 07:32:05
Score: 1
Natty:
Report link

If you are using a Mac, try fastrun (https://github.com/katoken03/fastrun).

install

brew install katoken03/fastrun/fastrun 

and type this

f [Enter] 

You can filter commands with incremental fuzzy search, navigate with arrow keys, and press Enter to execute.

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

79748759

Date: 2025-08-28 07:28:04
Score: 0.5
Natty:
Report link

From the statement no. 3 you have given, it shows no clarity wether you deleted or disabled the AD user as both are different.

First case:

If the AD user is deleted in AD then you need to check it if the same user is present in local that is in /etc/passwd file or the user might be getting logged in from some where else.

Run #getent passwd <userid>

For a deleted user id above command should not return anything.

Example:

[root@linuxserver ~]# getent passwd test

test:*:1192:503:test:/QA/test:/bin/bash

If getent on the deleted user id returns his configuration means you didn't deleted it properly or user id is present locally on server. So make sure that it is deleted in both/all the places.

Second case:

If the AD user is disabled in AD but not deleted:

Then you need to check your PAM settings in sshd configuration file, PAM modules, ad_gpo_access_control settings in sssd.conf file.

Two step solution for all the cases (No need to check in all 100 servers):

  1. Make sure that same user id is not present locally on ubuntu server

  2. Go to Active Directory server -> open AD -> go to users -> search and select user id -> click on properties of user id -> go to attribute editor -> go to login shell -> change the login shell to /bin/false

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

79748755

Date: 2025-08-28 07:25:04
Score: 2
Natty:
Report link

Check if delete api is returning any response body. If not, that can be the root cause. Angular was trying to parse the DELETE response as Company (JSON) but your server likely returned 200 OK with no JSON.

Reasons:
  • Low length (0.5):
  • No code block (0.5):
  • Single line (0.5):
  • Low reputation (0.5):
Posted by: Shashank S V N

79748731

Date: 2025-08-28 06:53:56
Score: 1
Natty:
Report link
ndk {
    debugSymbolLevel 'symbol_table'
}

use this to solve a issue for me
Flutter 3.32.1 • channel stable • https://github.com/flutter/flutter.git

Framework • revision b25305a883 (3 months ago) • 2025-05-29 10:40:06 -0700

Engine • revision 1425e5e9ec (3 months ago) • 2025-05-28 14:26:27 -0700

Tools • Dart 3.8.1 • DevTools 2.45.1

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

79748725

Date: 2025-08-28 06:46:54
Score: 2
Natty:
Report link

I installed the necessary cuDNN package:

conda install -c nvidia cudnn=9.1
Reasons:
  • Low length (1.5):
  • Has code block (-0.5):
  • Low reputation (1):
Posted by: Yunus Emre

79748724

Date: 2025-08-28 06:46:54
Score: 3
Natty:
Report link

My fix was installing OEM drivers for my Samsung S24.

Android has a list of many Android manufacturers here: https://developer.android.com/studio/run/oem-usb

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

79748704

Date: 2025-08-28 06:22:48
Score: 4
Natty: 5
Report link

Try accessing the client application over HTTPS http://10.95.x.x:8080/clientappname/

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

79748697

Date: 2025-08-28 06:17:46
Score: 1
Natty:
Report link

You can add a search feature in a Nuxt.js static site with Nuxt Content by leveraging its built-in query API. Instead of using an external service, you can query your markdown/content files directly.

A typical setup is:

full information for nuxt.js

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

79748696

Date: 2025-08-28 06:17:46
Score: 1.5
Natty:
Report link

Because you haven't run

flutter pub get

it can't find

flutter-plugin-loader
Reasons:
  • Low length (1.5):
  • Has code block (-0.5):
  • Low reputation (0.5):
Posted by: Nguyễn Hữu Phú

79748682

Date: 2025-08-28 05:58:42
Score: 1
Natty:
Report link

The typst source

#set par(leading: 0.5em, spacing: 1em)

This is a Text #linebreak()
For showing the effects #linebreak()
of leading

Spacing is only for #linebreak()
empty lines in between.

Renders out like this:

rendered typst source

Depending on what your source looks like, you will probably need leading instead of spacing.

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

79748668

Date: 2025-08-28 05:30:35
Score: 1.5
Natty:
Report link
let string = "25,24,23, 22,21";
let array_int = string.split(',').map(el => {
  return parseInt(el)
});
Reasons:
  • Low length (1):
  • Has code block (-0.5):
  • Low reputation (1):
Posted by: Максим Ивченко

79748665

Date: 2025-08-28 05:19:33
Score: 2.5
Natty:
Report link

If you want a NoModuleComponent to be rendered by the router without ngModule, you should change it to a Standalone Component. This is a best practice recommended by Angular for modern development.

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

79748661

Date: 2025-08-28 05:08:31
Score: 2.5
Natty:
Report link
import sys
print(sys.builtin_module_names)
Reasons:
  • Low length (1.5):
  • Has code block (-0.5):
  • Has no white space (0.5):
  • Low reputation (1):
Posted by: Rafał Poręba

79748659

Date: 2025-08-28 05:03:29
Score: 1.5
Natty:
Report link

You can also try using findall.

re.findall(r'(\.\w+)', email_string)
Reasons:
  • Low length (1.5):
  • Has code block (-0.5):
  • Low reputation (0.5):
Posted by: Dhruv

79748656

Date: 2025-08-28 05:00:28
Score: 3.5
Natty:
Report link

Testing Java Test Case (1) - Trying to put different test cases and stuff

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

79748643

Date: 2025-08-28 04:29:23
Score: 2
Natty:
Report link

I think its because razor consumes the <script part and only passes the rest > ... <script to html.
It should use a lookahead instead of a capture.

heres some bug reports:

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

79748641

Date: 2025-08-28 04:26:22
Score: 0.5
Natty:
Report link

Another variation that I like better than using an <hr> tag is just using a div and setting the height and background color:

<div style="height: 1px; background:#dedede"></div>
Reasons:
  • Low length (1):
  • Has code block (-0.5):
Posted by: dave4jr

79748636

Date: 2025-08-28 04:20:20
Score: 1.5
Natty:
Report link

Update your next.config.ts file

import type { NextConfig } from "next";
import createNextIntlPlugin from "next-intl/plugin";

const withNextIntl = createNextIntlPlugin();
const nextConfig: NextConfig = {
  /* config options here */
};

export default withNextIntl(nextConfig);
Reasons:
  • Low length (0.5):
  • Has code block (-0.5):
  • Unregistered user (0.5):
  • Low reputation (1):
Posted by: Aadil

79748632

Date: 2025-08-28 03:58:16
Score: 3.5
Natty:
Report link

After a bunch of digging I Finally found it!enter image description here

To find the setting go to…

- Tools

- Options

- LibreOffice View

- Icon Theme

Change the theme to - Colibre (SVG) - In the drop down menu.

Or to whatever theme you happen to like.

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

79748630

Date: 2025-08-28 03:52:14
Score: 3
Natty:
Report link

When Firebase detects that you have insecure rules for a database, you are added to a queue along with other users who are using the same insecure rules, so you can be notified not to leave those rules unsecured. So you'll always get such a warning message.

If you are added to the queue and in the meantime you have changed the rules, then you'll still get the message, but you can ignore it, because your rules are secured.

If that's not the case, then it means that the message was sent due to other insecure rules. So please check if it's about this database or another one. If you want to disable such messages, as @FrankvanPuffelen already mentioned in his comment, you can disable the message directly in the Firebase Console:

Reasons:
  • Blacklisted phrase (0.5): How can I
  • Long answer (-0.5):
  • No code block (0.5):
  • Ends in question mark (2):
  • User mentioned (1): @FrankvanPuffelen
  • Starts with a question (0.5): When
  • Looks like a comment (1):
  • High reputation (-2):
Posted by: Alex Mamo

79748617

Date: 2025-08-28 03:09:01
Score: 6
Natty:
Report link

I followed up
I am still getting same error
(base) mdumar@MacBookPro circos-0.69-9 % perl bin/gddiag

Can't locate Math/VecStat.pm in @INC (you may need to install the Math::VecStat module) (@INC contains: /opt/anaconda3/lib/perl5/5.32/site_perl /opt/anaconda3/lib/perl5/site_perl /opt/anaconda3/lib/perl5/5.32/vendor_perl /opt/anaconda3/lib/perl5/vendor_perl /opt/anaconda3/lib/perl5/5.32/core_perl /opt/anaconda3/lib/perl5/core_perl .) at bin/gddiag line 119.

BEGIN failed--compilation aborted at bin/gddiag line 119.

(base) mdumar@MacBookPro circos-0.69-9 %

Reasons:
  • RegEx Blacklisted phrase (1): I am still getting same error
  • Contains signature (1):
  • Long answer (-0.5):
  • No code block (0.5):
  • Me too answer (2.5): getting same error
  • User mentioned (1): @INC
  • Low reputation (0.5):
Posted by: Umar

79748613

Date: 2025-08-28 02:59:59
Score: 4
Natty:
Report link

Issue is with Java Version 21 . Updated to jdk-24 and its all working .

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

79748611

Date: 2025-08-28 02:57:58
Score: 0.5
Natty:
Report link

Here is what I found that works. <ion-text> will not work. ionic no longer supports sanitizers, use Angular and [innerHTML]. Then insert into label, div etc..

.ts

import { DomSanitizer } from '@angular/platform-browser';
import { Component, inject } from '@angular/core';

export class HelpPage {
  sanitizer = inject(DomSanitizer);

.html

<ion-label [innerHTML]="sanitizer.bypassSecurityTrustHtml(convertTEXT)" ></ion-label>
Reasons:
  • Has code block (-0.5):
  • Self-answer (0.5):
  • Low reputation (0.5):
Posted by: Thomas Degroot

79748610

Date: 2025-08-28 02:49:56
Score: 2.5
Natty:
Report link

We can do this as a small project for you in DG Kernel https://www.dynoinsight.com/ProDown.htm. It is Windows, free, but not an open source. There are few not so easy issues with data exchange, keeping identities and references to them

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

79748608

Date: 2025-08-28 02:45:55
Score: 0.5
Natty:
Report link

i18n-ally:

Inline Annotations

github img

source: https://github.com/lokalise/i18n-ally/raw/screenshots/annotation-animated.gif?raw=true

Hover and Direct Actions

github img

source: https://github.com/lokalise/i18n-ally/raw/screenshots/hover.png?raw=true

Manage All Translations in One Place

github img

Source: https://github.com/lokalise/i18n-ally/raw/screenshots/review-sidebar.png?raw=true

Editor UI & Review System

github img

source: https://github.com/lokalise/i18n-ally/raw/screenshots/review-editor.png?raw=true

Extract Translations from Code

github img

source: https://github.com/lokalise/i18n-ally/raw/screenshots/extract.png?raw=true

Report Missing Translations

github img

source: https://github.com/lokalise/i18n-ally/raw/screenshots/problems.png?raw=true

Machine Translation

github img

source: https://github.com/lokalise/i18n-ally/raw/screenshots/quick-actions.png?raw=true

Annotations for JSON and YAML

github img

source: https://github.com/lokalise/i18n-ally/raw/screenshots/annotation-locale.png?raw=true

General Features

Multilingual Support

This extension itself supports i18n as well. It will be auto-matched to the display language you use in your VS Code editor. We currently support the following languages.

Supported Frameworks:

Supported frameworks are auto-detected when a matching dependency is found in the project.

list of frameworks

source: https://github.com/lokalise/i18n-ally/wiki/Supported-Frameworks

I am not yet using it in my Flutter project, but I'm planning to integrate it soon.

Reasons:
  • Probably link only (1):
  • Long answer (-1):
  • No code block (0.5):
Posted by: DevQt

79748607

Date: 2025-08-28 02:45:55
Score: 1.5
Natty:
Report link

I had the same issue and here is the resolution

the actual mp3 file needs to be in "bin>debug>.net (whatever version)"

and modify the path as "axWindowsMediaPlayer1.URL = System.IO.Path.Combine(Application.StartupPath, "yourmusic.mp3");"

Reasons:
  • Whitelisted phrase (-1): I had the same
  • Low length (0.5):
  • No code block (0.5):
  • Unregistered user (0.5):
  • Low reputation (1):
Posted by: Vivek

79748598

Date: 2025-08-28 02:25:50
Score: 0.5
Natty:
Report link

from pptx import Presentation

from pptx.util import Inches, Pt

from pptx.dml.color import RGBColor

# Create a presentation object

prs = Presentation()

# Title Slide

slide_layout = prs.slide_layouts[0] # Title slide layout

slide = prs.slides.add_slide(slide_layout)

title = slide.shapes.title

subtitle = slide.placeholders[1]

title.text = "Gateway to the World:\nCareer Guidance for International Education"

subtitle.text = "Organised by PSG College of Arts & Science\nDepartment of Commerce (BPS) Integrated with TCS\n18/08/2025 | Kaveri Hall"

# About the Speaker

slide_layout = prs.slide_layouts[1] # Title + Content

slide = prs.slides.add_slide(slide_layout)

title, content = slide.shapes.title, slide.placeholders[1]

title.text = "About the Speaker"

content.text = "Ms. Sasikala Mani\nFounder, Western Education Overseas, Coimbatore\n\nExpert in guiding students towards international education opportunities."

# Seminar Overview

slide = prs.slides.add_slide(prs.slide_layouts[1])

title, content = slide.shapes.title, slide.placeholders[1]

title.text = "Seminar Overview"

content.text = "The seminar focuses on providing career guidance for students aspiring to pursue higher education abroad. It explores opportunities, challenges, and the right approach to achieve academic and professional success internationally."

# Objectives

slide = prs.slides.add_slide(prs.slide_layouts[1])

title, content = slide.shapes.title, slide.placeholders[1]

title.text = "Objectives"

content.text = (

"• To understand the importance of global education\\n" 

"• To explore career opportunities abroad\\n" 

"• To provide guidance on admission and visa processes\\n" 

"• To prepare students for international challenges\\n" 

)

# Topics Covered

slide = prs.slides.add_slide(prs.slide_layouts[1])

title, content = slide.shapes.title, slide.placeholders[1]

title.text = "Topics Covered"

content.text = (

"• Choosing the right country and course\\n" 

"• Application and admission process\\n" 

"• Visa guidance and requirements\\n" 

"• Scholarships and financial planning\\n" 

"• Adapting to cultural and academic environments\\n" 

)

# Takeaways for Students

slide = prs.slides.add_slide(prs.slide_layouts[1])

title, content = slide.shapes.title, slide.placeholders[1]

title.text = "Key Takeaways"

content.text = (

"• Clarity on study abroad opportunities\\n" 

"• Understanding financial and academic planning\\n" 

"• Guidance from an expert in the field\\n" 

"• Motivation to pursue global education\\n" 

)

# Event Details

slide = prs.slides.add_slide(prs.slide_layouts[1])

title, content = slide.shapes.title, slide.placeholders[1]

title.text = "Event Details"

content.text = (

"Date: 18/08/2025\\n" 

"Time: 11:30 AM to 1:00 PM\\n" 

"Venue: Kaveri Hall\\n\\n" 

"Faculty Coordinators: Dr. S.S. Ramya, Dr. R. Vishnupriya\\n" 

"Head of the Department: Dr. S.M. Yamuna" 

)

# Thank You Slide

slide = prs.slides.add_slide(prs.slide_layouts[1])

title, content = slide.shapes.title, slide.placeholders[1]

title.text = "Thank You"

content.text = "We look forward to your participation!\nPSG College of Arts & Science\nDepartment of Commerce (BPS)"

# Save the presentation

file_path = "/mnt/data/Seminar_PSG_Career_Guidance.pptx"

prs.save(file_path)

file_path

Reasons:
  • Blacklisted phrase (0.5): Thank You
  • Long answer (-1):
  • Has code block (-0.5):
  • Unregistered user (0.5):
  • Low reputation (1):
Posted by: Naveen kumar

79748595

Date: 2025-08-28 02:07:47
Score: 1.5
Natty:
Report link

Change the option of device for preview in one of your xml layout files.

(It seems the option of orientation for preview is not memorize across xml layout files.)

enter image description here

Reasons:
  • Probably link only (1):
  • Low length (1):
  • Has code block (-0.5):
Posted by: Nor.Z

79748589

Date: 2025-08-28 01:44:41
Score: 5
Natty:
Report link

I have same question.

As my experiment, alloc_calls will decrease if the memory allocated by an API is freed.

Reasons:
  • Low length (1):
  • No code block (0.5):
  • Me too answer (2.5): I have same question
  • Low reputation (1):
Posted by: samp lin

79748584

Date: 2025-08-28 01:37:39
Score: 0.5
Natty:
Report link

fuck my arse... this was so obvious lol. like brooo... you literally hard-coded your childish workflow to only listen twice and then peace out.... mic drop. thats why your poor little SignalC never got picked up.

lets look at this chunk:

// Selects for signal A and signal C
s.Select(ctx)
s.Select(ctx)
return nil

Thats a whole crime scene right there bro

You told it: "listen two times and then just end life." So yeah. it got signal A, it was happy. then it was like: "cool, ive done my two turns, i'm out, cya" thats why your Signal C went straight into the void.

the actual fix, just loop it

for {
   s.Select(ctx)
}

Boom fixed. Your child can now sit around like a good listener forever instead of rage-quitting after two messages.

and youre welcome, honestly this was so easy it hurts my soul, you dropped this baby tier puzzle into my lap, i solved it in five seconds flat, and you dint even pre-thank me?? like come on im out here burning brain cells on "why does my code stop after i tell it to stop" and you dint even throw me a PROPER THANK YOU. Unfuckingbelievable

Reasons:
  • Blacklisted phrase (0.5): THANK YOU
  • Blacklisted phrase (2): fuck
  • Whitelisted phrase (-2): i solved
  • Long answer (-1):
  • Has code block (-0.5):
  • Contains question mark (0.5):
  • Low reputation (1):
Posted by: gerthardthydestroyer_xXxxXx_HD

79748575

Date: 2025-08-28 01:18:35
Score: 0.5
Natty:
Report link

Import pandas as pd

Import numpy as np

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

79748572

Date: 2025-08-28 01:14:34
Score: 1.5
Natty:
Report link
header 1 header 2
cell 1 cell 2
cell 3 cell 4



header 1
header 2
header 3

cell 1
cell 2

cell 3
cell 4
Reasons:
  • Low length (1):
  • Has code block (-0.5):
  • Low reputation (1):
Posted by: NAYEM UR RAHMAN

79748571

Date: 2025-08-28 01:02:31
Score: 4
Natty:
Report link

Some days ago i have same problem.At last i use background_location_tracker: ^1.6.1.It helps me a lot.In android it has param as trackingInterval.But ios has not.

@pragma('vm:entry-point')
void backgroundCallback() {
  BackgroundLocationTrackerManager.handleBackgroundUpdated((data) async {
    // do some stuff with data

  });
}
Future<void> main() async {
  

  WidgetsFlutterBinding.ensureInitialized();
  await BackgroundLocationTrackerManager.initialize(
    backgroundCallback,
    config: const BackgroundLocationTrackerConfig(
      loggingEnabled: true,

      androidConfig: AndroidConfig(
        notificationIcon: 'explore',
        trackingInterval: Duration(seconds: 30),
        distanceFilterMeters: null,
      ),
      iOSConfig: IOSConfig(
        activityType: ActivityType.FITNESS,
        distanceFilterMeters: null,
        restartAfterKill: true,
      ),
    ),
  );
}

Also flutter_background_service has limit for ios which described below:

Service terminated when app is in background (minimized) on iOS #

Keep in your mind, iOS doesn't have a long running service feature like Android. So, it's not possible to keep your application running when it's in background because the OS will suspend your application soon. Currently, this plugin provide onBackground method, that will be executed periodically by Background Fetch capability provided by iOS. It cannot be faster than 15 minutes and only alive about 15-30 seconds.

Reasons:
  • Blacklisted phrase (1): this plugin
  • Blacklisted phrase (1): i have same problem
  • Long answer (-1):
  • Has code block (-0.5):
  • Me too answer (2.5): i have same problem
  • Low reputation (1):
Posted by: Khayyam

79748568

Date: 2025-08-28 00:59:30
Score: 1.5
Natty:
Report link

THE PROBLEM (aka what you did):

you're calling:

this.service.delete3("http://localhost:4200/").subscribe({
    next: () => { console.log("test4"); },
    error: () => { console.log("error test3"); }
});

You think it should log test4. But it doesn't... WHY????

THE FACEPALM MOMENT

Let's look inside delete3 in your service:

delete3(path: string): Observable<Company> { 
    console.log("delete3");
    return this.http.delete<Company>(path);
}

You're logging "delete3" inside the function, not in the subscription. so if you never see "delete3" in console, it means..

drumroll please***

THE FUNCTION IS NEVER EVEN CALLED!!!!!! Like bro....... you thought you were calling it, but something else is broken and delete3() isn't even being triggered. So OF COURSE "test4" never shows up either.... you're not even getting to the .subscribe() block

HOW TO DEBUG THIS IS DUMB-EASY STEPS

  1. Add a log before the serice call:
console.log("about to call delete3");
this.service.delete3("http://localhost:4200/").subscribe({
    next: () => { console.log("test4"); },
    error: () => { console.log("error test3"); }
});

if you don't even see "about to call delete3" you're not reaching this part of code. Maybe some condition blocks it or user din't trigger it right.

WHY THE DELETE WORKS BUT CALLBACK DOESN'T

HTTP DELETE (and POST/PUT) will still send the request... even if you dont subscribe() to it. But unless you subscribe(), the callback like next: () => {...} won't run.

BUT WAIT... you are subscribing here. So thats not the issue

SOOOOO whats really happening is:

HOW TO CLEAN THIS MESS UP:

add some logs bro..

console.log("DELETE 1 start");
this.http.delete("http://localhost:4200/").subscribe({
    next: () => { console.log("test"); },
    error: () => { console.log("error test"); }
});

console.log("DELETE 2 start");
this.delete2("http://localhost:4200/").subscribe({
    next: () => { console.log("test2"); },
    error: () => { console.log("error test2"); }
});

console.log("DELETE 3 start");
this.service.delete3("http://localhost:4200/").subscribe({
    next: () => { console.log("test4"); },
    error: () => { console.log("error test3"); }
});

Now run it. Whichever "start" logs and whhichever domn't will tell what's actually being called.

TL;DR FOR THE LAZY Bro test4 isnt logging because youre not even calling the service methd. You thought you were, but youre not. its like saying your microwave is broken, but you never plugged it in.

so yeah... super obvs lol

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

79748561

Date: 2025-08-28 00:48:28
Score: 1
Natty:
Report link

The contrast of broken area is not good enough.

  1. Update the lighting to increase the contrast, then you can extract the area with binarization.

  2. Use a good sample as template, then a simple image sustraction could extract the area. It may need some alignment to make sure two samples are exactly at the same position.

  3. Apply some deep learning technology to find it, like object detection or image segmentation, but it's too complex for a project.

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

79748535

Date: 2025-08-27 23:34:10
Score: 3
Natty:
Report link

I made a solution that is entirely contained in a WordPress plugin and doesn't rely on Xdebug xhprof or any PHP extension. Please give the WordPress Hook Profiler Plugin a try. There's still room for improvement but the core functionality is there:

Show which plugins take the most execution time:

enter image description here

Show which individual hooks of the plugins take the most time:

Individual hook times

It's implemented by running through every hook and replacing them with a new callback that wraps the original call back to record the time it takes to execute. Also a mu-plugin adds some hooks to time the loading of the plugin files themselves. All-in-all it will show you that, that page builder you using is probably what's slowing everything down.

Reasons:
  • RegEx Blacklisted phrase (2.5): Please give
  • Long answer (-0.5):
  • No code block (0.5):
  • Low reputation (0.5):
Posted by: David Stone

79748529

Date: 2025-08-27 23:15:06
Score: 5
Natty: 5
Report link

I guess I'm a bit late in this post, but I'm currently having the same problem and I wonder if anyone figured it out.

The thing is: I don't want to expose my backend to the outside. If it's already bridged in a docker network with my frontend, why do I need to portbind it? Isn't there any way around this? I've seen some nginx solutions but it seemed way too improvised, idk.

Reasons:
  • Blacklisted phrase (0.5): I need
  • No code block (0.5):
  • Me too answer (2.5): having the same problem
  • Contains question mark (0.5):
  • Low reputation (1):
Posted by: Thiago Pereira da Silva

79748527

Date: 2025-08-27 23:09:04
Score: 3
Natty:
Report link

Create structs to represent your data types.

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

79748520

Date: 2025-08-27 22:50:00
Score: 1.5
Natty:
Report link

Using the ! character before the path to the file should work, in your .gitignore file

# Ignore all .jar files...
*.jar

# ...except gradle-wrapper.jar
!path/to/gradle-wrapper.jar

From https://git-scm.com/book/en/v2/Git-Basics-Recording-Changes-to-the-Repository#%5C_ignoring:

You can negate a pattern by starting it with an exclamation point (!).

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

79748515

Date: 2025-08-27 22:40:58
Score: 1
Natty:
Report link

    fetch("https://api.thecatapi.com/v1/images/search").then(function(r)
    {
     if (r.status != 200) {
        alert('Error: unable to load preview, HTTP response '+r.status+'.');
      return
     }
     r.text().then(txt => console.log(txt))
    }).catch(function(err) {alert('Error: '+err);});

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

79748502

Date: 2025-08-27 22:17:52
Score: 7.5
Natty: 5
Report link

I don't know the solution to your issue but I too want to implement web push functionality can you please guide me and if you got the solution to your issue

Reasons:
  • Blacklisted phrase (1): guide me
  • RegEx Blacklisted phrase (2.5): can you please guide me
  • RegEx Blacklisted phrase (1): I too want to implement web push functionality can you please
  • Low length (1):
  • No code block (0.5):
  • Single line (0.5):
  • Low reputation (1):
Posted by: Ebrahim Tayabali

79748486

Date: 2025-08-27 21:32:43
Score: 2
Natty:
Report link

pgAdmin versions in the 9.x series do not support the MERGE statement because the PostgreSQL database versions they were designed for (PostgreSQL 9.x) did not include this command. The MERGE command was not introduced into the PostgreSQL core until version 15.

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

79748468

Date: 2025-08-27 20:57:35
Score: 3.5
Natty:
Report link

I needed to calibrate the RFID printer. Before calibration, the RFID was being assigned to the next tag.

Reasons:
  • Blacklisted phrase (0.5): I need
  • Low length (1):
  • No code block (0.5):
  • Self-answer (0.5):
  • Single line (0.5):
  • Low reputation (0.5):
Posted by: user2453676

79748455

Date: 2025-08-27 20:36:30
Score: 1
Natty:
Report link

If you have two JSON files before comparison, check this React Component, it uses json-diff-kit for diff methods and it works pretty well especially for deep array comparison. There are no similar package that has minimap, virtual scroll or search ability for json diff

No other library provided me correct outputs for my specific JSON objects including several indented arrays.

virtual-react-json-diff -> (https://www.npmjs.com/package/virtual-react-json-diff)

I am still developing for new features, this is open source and I am open for any contribution. I will apply new themes soon.

Reasons:
  • Long answer (-0.5):
  • No code block (0.5):
  • Low reputation (1):
Posted by: Utku Akyüz

79748449

Date: 2025-08-27 20:27:28
Score: 3
Natty:
Report link

I discovered the issue was not actually permissions related, but was caused by line endings. I recommend vendored files be excluded from line ending correction in git using .gitattributes.

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

79748440

Date: 2025-08-27 20:14:25
Score: 2.5
Natty:
Report link

I ran into the same issue. I have 32 GB of RAM and noticed a sharp spike in Task Manager. I tried using Mem Reduct to free up memory, but it didn’t help. What caught my eye was that my virtual memory usage was at 99%, and Mem Reduct wasn’t reducing it.

After watching this video and restarting my PC, the problem was resolved.

Reasons:
  • Blacklisted phrase (1): this video
  • No code block (0.5):
  • Low reputation (1):
Posted by: Boran Göksel

79748438

Date: 2025-08-27 20:09:24
Score: 0.5
Natty:
Report link

Found the issue. Basically, its not a funky character, its that the powershell functionally is handling the command line call different like THIS post. so the correct syntax here is as follows

java -Dsun.java2d.uiScale=1 -jar "fsal jar location" -url "url"

Becomes

java '-Dsun.java2d.uiScale=1' -jar "fsal jar location" -url "url"

otherwise the PS interpreter separates on the period yielding
-Dsun
.java2d.uiscale=1

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

79748422

Date: 2025-08-27 19:51:20
Score: 2
Natty:
Report link

My replication setup got corrupted somehow, and I had to recreate it all. Even though I stripped out replication data from the database before recreation, there were still SQL Agent jobs defined for these databases that were running. I needed to delete/disable the old jobs, then everything looked good in replication monitor.

Synchronization never stopped in this case, but the manager doesn't seem to separate the status by job, just by database. So it would show an error for the jobs that couldn't connect, while running synchronization in the correct job.

Reasons:
  • Blacklisted phrase (0.5): I need
  • Long answer (-0.5):
  • No code block (0.5):
  • Unregistered user (0.5):
  • Low reputation (1):
Posted by: Cramer

79748421

Date: 2025-08-27 19:50:19
Score: 1.5
Natty:
Report link

I know this is an old question but I ran into the same issue today. I'm using the @monaco-editor/react library. I tried a variety of different config options and referred to the Monaco docs, but nothing worked for me. I was ultimately able to hide the lightbulb icon by including this CSS in my project:

.monaco-diff-editor .codicon-light-bulb {
  display: none !important;
}
Reasons:
  • Blacklisted phrase (1): but nothing work
  • Has code block (-0.5):
  • Low reputation (1):
Posted by: Emme Tuft

79748417

Date: 2025-08-27 19:45:18
Score: 4
Natty: 4.5
Report link

https://github.com/wyanarba/Qt-Keys-to-Windows-VK-Keys-convertor/tree/main

I made an implementation for this from a public one qwindowskeymapper.cpp

Reasons:
  • Probably link only (1):
  • Low length (1.5):
  • No code block (0.5):
  • Low reputation (1):
Posted by: Дима

79748415

Date: 2025-08-27 19:45:18
Score: 1.5
Natty:
Report link
//In the class you want to close the other class window from

ClassOfWindowToClose classofwindowtoclose = new ClassOfWindowToClose();

classofwindowtoclose.Close();
Reasons:
  • Low length (1):
  • Has code block (-0.5):
  • Low reputation (1):
Posted by: Dossy

79748411

Date: 2025-08-27 19:42:17
Score: 2.5
Natty:
Report link

The issue was that I was deploying using gcloud but not specifying the --function parameter.
I had sometimes deployed it using the Console and that is when it was working.

https://cloud.google.com/sdk/gcloud/reference/run/deploy#--function

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

79748410

Date: 2025-08-27 19:41:17
Score: 0.5
Natty:
Report link

Picking up after @dandavis' updated answer using the createContextualFragment(), a few people pointed out the small limitation (see here) that certain context-sensitive elements require their parent to be present otherwise this function will discard them (i.e. tr, td, thead, caption, etc).

Most realistic alternative solutions revolve around doing this through the <template> element in some fashion.

Given let htmlStr = '<td></td>'

Option 1 - Create <template>

let temp = document.createElement("template");
temp.innerHTML = htmlStr;
// temp.content = htmlStr; // don't use for setting! has same bug as default `createContextualFragment`, but fine for retrieval

let frag = temp.content;

Interesting thing about this one was that if setting HTML string via temp.content directly, then it has the same bug as the default usage of createContextualFragment(), but setting via temp.innerHTML produces the expected results.

Option 2 - Use html-fragments package

let frag = HtmlFragment(htmlStr);

This seems to be a library someone created for this exact problem (see author's comment here), likely due to the need to support browsers that don't directly support <template> I suspect. Seems to work fine, but a bit overkill for me (to pull in a separate package just for this that is).

Option 3 - createContextualFragment w/ wrapped template

let tempFrag = document.createRange()
    .createContextualFragment(`<template>${htmlStr}</template>`);
let frag = tempFrag.firstChild.content;

Kinda surprised no one found this one (so perhaps there are some limitations to it), but per my testing if you wrap the html string within a <template> tag, then use createContextualFragment(), then the browser seems to process the <td> element just fine. It's really no different that Option #1, and therefore still dependent on <template>, but I kinda prefer this option. However, if you're browser still doesn't support templates (IE), then neither option will really work reliably.


Here's a code snippet showing the issue and comparing the relevant options:

let htmlStrings = [
  '<table></table>',
  '<tr></tr>',
  '<td></td>',
  '<table><tr><td></td></tr></table>'
]

for (let htmlStr of htmlStrings) {
  // default solution
  let frag = document.createRange().createContextualFragment(htmlStr);
  let defaultResults = fragmentToHTML(frag);

  // Option 1: use <tempalte> directly
  let tmp = document.createElement("template");
  tmp.innerHTML = htmlStr;
  // tmp.content = htmlStr; // don't use for setting! has same bug as default `createContextualFragment`, but fine for retrieval
  frag = tmp.content;
  let tempResults = fragmentToHTML(frag);

  // Option 2: html-fragment package option
  frag = HtmlFragment(htmlStr);
  let hfResults = fragmentToHTML(frag);

  // Option 3: wrapped <template> option
  let tempFrag = document.createRange().createContextualFragment(`<template>${htmlStr}</template>`);  
  frag = tempFrag.firstChild.content
  let wrappedResults = fragmentToHTML(frag);

  console.log(htmlStr);  
  console.log("\t0-createContextualFragment():\t\t\t", defaultResults);
  console.log("\t1-createElement('template'):\t\t\t", tempResults);
  console.log("\t2-html-fragment:\t\t\t\t", hfResults);
  console.log("\t3-createContextualFragment() w/ wrapped template:", wrappedResults);
}

function fragmentToHTML(frag) {  
  let div = document.createElement("div");
  div.appendChild(frag);
  return div.innerHTML;
}
<script src="https://cdn.jsdelivr.net/npm/[email protected]/lib/html-fragment.min.js"></script>

->

Reasons:
  • Long answer (-1):
  • Has code block (-0.5):
  • User mentioned (1): @dandavis'using
  • Low reputation (1):
Posted by: gerneio

79748409

Date: 2025-08-27 19:39:16
Score: 0.5
Natty:
Report link

In C# I use AnyAscii library. It is very easy to use and it works very well.

using AnyAscii;
string Text = "Dimàkàtso Mokgàlo";

string LatinEquivalent = Transliteration.Transliterate(Text);

And the result is:

"Dimakatso Mokgalo"
Reasons:
  • Low length (0.5):
  • Has code block (-0.5):
  • Low reputation (0.5):
Posted by: M. Radinmehr

79748404

Date: 2025-08-27 19:32:14
Score: 3
Natty:
Report link

If anyone else finds Reddit’s API too much overhead just to publish an image + title, I found this tool that abstracts it all: hubtoolsolutios .com

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

79748385

Date: 2025-08-27 19:15:10
Score: 1.5
Natty:
Report link

It turned out that years ago I had put this configuration line into my .gitconfig that I use everywhere: symlinks = false.

Therefore git clone https://github.com/aws/aws-fpga.git had cloned the symlinks as text files. Sorry about the confusion.

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

79748370

Date: 2025-08-27 19:01:06
Score: 2.5
Natty:
Report link

I actually ended up figuring this out after being away from it for a bit. So there's 2 folders, build and buildMultiTargeting. So on SDK Projects, the nuget package creation uses the Properties specified in buildMultiTargeting, so I just ended up including the build one from there and now all is good.

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

79748369

Date: 2025-08-27 19:00:06
Score: 1
Natty:
Report link

enter image description here

The overlap is known as the Intersection, and it represents all common/matched rows from both the Tables.
INNER JOIN got its name Since it retrieves all the rows from INSIDE the Intersection and
OUTER JOIN because it retrieves rows from Inside and Outside of the Intersection (Depending on the type of JOIN)

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

79748360

Date: 2025-08-27 18:53:04
Score: 3
Natty:
Report link

The answer looks to be that the CMS framework around the site is causing the issue. I am using a HTML plugin on a wiki page to display this information. Everything has worked fine using this strategy and it didn't occur to me that the outer framework could cause this one singular problem of image resizing on mobile until I saw these suggestions confirming that previous attempts should have worked fine. I copied my HTML to a stand-alone page and it works fine. So now I have a different kind of problem to solve.

At the risk of TMI I would like to thank you for hanging in there with me to figure this out. I used to run highly technical teams in a very hand on way as a go-to sort of guy and am now in my 4th year of recovery from a brain injury. I am at a point now I am trying to make myself useful again. This may have seemed like a waste of time for you, but for me it has been more helpful, and meaningful, than one might guess. So thank you again for your help.

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