79752769

Date: 2025-09-01 17:17:05
Score: 1
Natty:
Report link

I had also tried all that what you have done but nothing worked. The way i resolved it is by uninstalling NetBeans from program files, NetBeans AppData and all what NetBeans had in my system. Do not forget to check all the checkboxes on the NetBeans uninstaller. After that install it again. This won't delete your created projects and its files.

Reasons:
  • Blacklisted phrase (1): but nothing work
  • Whitelisted phrase (-2): i resolved
  • No code block (0.5):
  • Single line (0.5):
  • Low reputation (1):
Posted by: Dhairya Shah

79752761

Date: 2025-09-01 17:10:03
Score: 1
Natty:
Report link

I'm experiencing the same error. I'm also using a demo account with the XM broker. I don't know if the problem is because the account is a demo.

I implemented it in both Python and Node, but the same problem. Sometimes it works, sometimes it doesn't. When the timeout occurs, it stays for a while and then goes away. But it always comes back.

I've already sent a message to MetaAPI support, but haven't received a response.

I'm trying to see what can be done because I need a way to control my MetaTrader account with Python/Node through a Linux operating system. It's really annoying that I can't use the official MetaTrader library in Python for Linux, only Windows.

Reasons:
  • Blacklisted phrase (0.5): I need
  • Long answer (-0.5):
  • No code block (0.5):
  • Low reputation (0.5):
Posted by: Victor Nolêto

79752759

Date: 2025-09-01 17:08:02
Score: 0.5
Natty:
Report link

From the ImageMagick docs:

Use -define trim:edges={north,east,south,west} separated by commas to only trim the specified edges of the image

So you can trim only the bottom border with

magick pre-trim.png -define trim:edges=south -trim post-trim.png
Reasons:
  • Low length (0.5):
  • Has code block (-0.5):
  • Low reputation (0.5):
Posted by: DBear

79752755

Date: 2025-09-01 17:03:01
Score: 3.5
Natty:
Report link

I'm getting this and feels to me like a Microsoft bug

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

79752751

Date: 2025-09-01 16:54:59
Score: 4.5
Natty:
Report link

This is a case of performing three analyses, and looking at partial mitigations.

(1) You have a vulnerability in the package, but does it constitute a vulnerability in the system?

Versions of Log4J have vulnerabilities when used in specific ways. Do you know whether the vulnerability is detected by simply seeing the version has a CVE, or is the vulnerability exploitable in your use case? Has a penetration test been done that validates the Log4J vulnerability causes SharePoint 2013 to be vulnerable in some way?

(2) If you have a vulnerability in the system, does it constitute a risk?

This is a function of the threat that may exist. If the server is only accessible to internal users then you want to consider at least these two questions:
- Do you have an insider threat which you need to protect against?
- Could the system vulnerability realistically be exploited by an external attacker using a XSS vulnerability or other network-based attack?

(3) What is the value at risk from the vulnerability compared to the value at risk from the functionality supported?

Let's say that you quantify a potential loss (direct losses, reputation, penalties) of a million dollars from the vulnerability being exploited. If the value of the functionality exceeds this, then economically you should retain the service, potentially with mitigations in place.

Mitigations

It may be that the vulnerability can be mitigated by disabling specific features of Log4J. For example, if you do not require JNDI support (quite likely you do not) then you can delete specific classes from the .JAR file and not break the service, but prevent JNDI-based attacks.

Alternatively, can you put a WAF on the server to filter attacks?

Reasons:
  • RegEx Blacklisted phrase (1.5): reputation
  • RegEx Blacklisted phrase (2.5): Do you have an
  • Long answer (-1):
  • No code block (0.5):
  • Ends in question mark (2):
  • High reputation (-1):
Posted by: ricardkelly

79752748

Date: 2025-09-01 16:46:57
Score: 2.5
Natty:
Report link

I also faced with similar issue and found this answer on Github
https://github.com/prisma/prisma/discussions/8925#discussioncomment-1233481
and solved my problem. Basically I stopped postgres service locally in my PC and used docker container instead

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

79752744

Date: 2025-09-01 16:43:56
Score: 1
Natty:
Report link

1. Problem with null check

if (obj === 'null') { return null;} // null unchanged

✅ Fix:

if (obj === null) { return "null"; } // real null
Reasons:
  • Low length (0.5):
  • Has code block (-0.5):
  • Low reputation (1):
Posted by: Rahul Mishra

79752734

Date: 2025-09-01 16:30:53
Score: 2
Natty:
Report link

Capacitor doesn’t support 16 KB page size yet. You can just ignore this message for now. Deadline for implementation of this feature is November 2025 and it can be extended by developer to May 2026, so nothing to worry about yet.

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

79752733

Date: 2025-09-01 16:28:53
Score: 2.5
Natty:
Report link

Change the package name of the project and it will fix.

if you are using like com.example.wallpaper then change it to com.raghav.estrowallpaper. it will fix 100%.

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

79752732

Date: 2025-09-01 16:25:52
Score: 2
Natty:
Report link

I checked your code and even sampled it in the sandbox to see if you have any problems, but you should also tell me the conditions you are using, which ones have Zindex and... in what form.

I am waiting for your answer so that I can guide you completely and correctly.

example in sandbox:
https://codesandbox.io/p/sandbox/238mz2

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

79752725

Date: 2025-09-01 16:11:49
Score: 1
Natty:
Report link
protected override void WndProc(ref Message m)
{
    const int WM_NCLBUTTONDOWN = 0xA1;
    const int HTCAPTION = 0x2;

    // Chặn kéo form bằng title bar
    if (m.Msg == WM_NCLBUTTONDOWN && (int)m.WParam == HTCAPTION)
    {
        return; // không xử lý message => không di chuyển
    }

    base.WndProc(ref m);
}

block form drag => form can not resize

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

79752722

Date: 2025-09-01 16:08:48
Score: 1.5
Natty:
Report link

After doing some minor research and configuration review. I noticed that since I've recently deployed a container to my local Docker engine, the project targets.file pointed to a later updated version of some of the packages. These packages were in the 7.0.x ranges. The packages my project was referencing was 5.0.xx which means my project is behind several versions.

In reviewing both configurations and the versions I simply updated the same packages to the latest updated version 7.0.x and performed a "Clean", then "Build" and was able to successfully build the project. I'm hoping this will help anyone else who runs into this error.

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

79752719

Date: 2025-09-01 16:05:47
Score: 3
Natty:
Report link

You can test the fps by opening devtools in vs code, then show fps

Toggle Developer Tools (ctrl + shift + p from vs code) > Show FPS meter (ctrl + shift + p again from devtools)

enter image description here

enter image description here

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

79752702

Date: 2025-09-01 15:50:43
Score: 2.5
Natty:
Report link

Problem was solved by myself. I have fallback to /[lang] route if the page is not found. but at localhost my chrome dev tools during loading of /[lang]/[category] page tried to get the page \.well-known\appspecific\com.chrome.devtools.json and it was returning 404 and console always was showing double loading of /[lang] route.

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

79752701

Date: 2025-09-01 15:47:42
Score: 4
Natty:
Report link

“The problem is with the loader. On the website, the loader takes too long to disappear. I want it to be removed within just 2 seconds so the content loads immediately.”

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

79752700

Date: 2025-09-01 15:46:42
Score: 1.5
Natty:
Report link

Make sure you don't have a lower ndkVersion at build.gradle compared to the one you have set on the SDK Tools

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

79752684

Date: 2025-09-01 15:25:36
Score: 1
Natty:
Report link

Some people apparently has already mentioned Toga (see https://toga.beeware.org), the GUI framework, however I'd like to go a bit more in-depth into how all this stuff works. Also, just to add, Briefcase (https://briefcase.beeware.org) is the packaging tool that turns a Python codebase into an Xcode project, installing all dependencies in the process.

So... how is Python running on iOS in the first place? Well, Python is written in C and uses autoconf, so it's possible to compile it for iOS with a bunch of additional handling -- with things like platform identification and more annoyingly, packaging Python properly so it could be distributed through the app store. This includes using Apple's "framework" directory structure and not installing any platform-specific tools, and making each binary extension module a separate "framework" in Apple's sense. And of course, the whole lot of C APIs that Apple has helpfully disabled. References: https://docs.python.org/3/using/ios.html and the whole thread of PRs is at https://github.com/python/cpython/issues/114099 -- this part of functionality is made possible with Python 3.13 officially, and has been maintained in https://github.com/beeware/Python-Apple-support/ and -patched branches of https://github.com/freakboy3742/cpython/ before. CPython still lacks some infrastructure for iOS builds and has not added tvOS/watchOS/visionOS yet so these two repositories serve these purposes as more things gets integrated into official CPython.

Now you would have Python running on iOS, but you'd need a way to access objc APIs. Rubicon Obj-C (https://rubicon.beeware.org/) is a shim that does exactly that, created by the BeeWare project as well. Since the Objective-C runtime is all C underneath it, and Python provides ctypes to call C functions, Rubicon Objective-C thus works by calling the appropriate C functions to send the appropriate messages using the Objective-C runtime, thus being able to access all native Objective-C APIs.

To start this Python code that does all the interesting stuff, however, the Python C API is used. The template that Briefcase uses to roll out Xcode projects with Python code is found at https://github.com/beeware/briefcase-iOS-Xcode-template and consists of a bulky part of initialization as seen in the main Objective-C file.

Toga's iOS backend uses Rubicon Objective-C to access the native Objective-C classes to make a UIApplication, UIWindow, UIViews, and all the native controls.

A really good conference talk by Dr. Russell Keith-Magee, founder of Toga, explains how this all works not only on iOS as I described above but also on Android.

I'm putting this info here just in case you're curious or if you'd like to try to embed Python and access the raw Objective-C APIs by yourself. Toga, however, is getting more mature almost every day, and besides simply wrapping the iOS APIs as described above, it is significantly more Pythonic and it abstracts away all the small cross-platform differences of apps on multiple platforms, so if you write a Toga app you can also deploy it on Windows (Winforms), Linux (GTK+), macOS (Cocoa), Android -- although some functionality may not be fully available.


DISCLOSURE

I have contributed to (but am not affiliated with) this project and therefore may be biased, however I have ensured that all my statements above are truthful in terms of the current state of the project. I am NOT AFFILIATED with the BeeWare project; just trying to spread some news of it.


EDIT and if you want to interact with the Python runtime in Swift you may utilize PythonKit: https://github.com/pvieito/PythonKit -- this is not related to BeeWare nor official CPython which were projects I have been talking about earlier.

Reasons:
  • Long answer (-1):
  • No code block (0.5):
  • Contains question mark (0.5):
  • Low reputation (1):
Posted by: John

79752673

Date: 2025-09-01 15:08:32
Score: 2
Natty:
Report link

I have also encountered a situation with the keylock infinite loop, but in the end, I found that my problem was a version issue between the keylock service and the keyleak.js adapter, and I wanted to use it in an internal network environment, so HTTPS was also an issue. After downgrading both to version 21.1.5, it was resolved

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

79752662

Date: 2025-09-01 14:55:29
Score: 0.5
Natty:
Report link

As @aliaksandr-s pointed out:

No, what you are trying to do is impossible. Browsers intentionally do not allow web pages to change print dialog settings. If what you want is a PDF then use a library to generate it on the Server/Client side.

He is correct, it's not possible to change Chrome's default print margin setting using JavaScript or CSS.

The best you can do is try to minimize margins:

@media print {
  @page { margin: 0; }
  html, body { margin: 0; padding: 0; }
}

But, if you did this server-side, you could set zero margins in the PDF. A example would be:

const puppeteer = require('puppeteer');

(async () => {
  const browser = await puppeteer.launch();
  const page = await browser.newPage();
  await page.goto('https://examplecom', { waitUntil: 'networkidle0' });
  await page.pdf({
    path: 'output.pdf',
    margin: { top: 0, right: 0, bottom: 0, left: 0 },
    printBackground: true,
    format: 'A4'
  });
  await browser.close();
})();
Reasons:
  • Long answer (-0.5):
  • Has code block (-0.5):
  • User mentioned (1): @aliaksandr-s
  • Low reputation (0.5):
Posted by: 0ro2

79752652

Date: 2025-09-01 14:44:27
Score: 2.5
Natty:
Report link

I had the same Issue, but explicit cast didnt resolve it. I need to change the data type from unsigned char* to uint8_t.

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

79752648

Date: 2025-09-01 14:42:26
Score: 0.5
Natty:
Report link

These files are used in part for showing the git information above functions and classes. They are revisions of those files in order to show the revision breakdown when you hover over the revisions part.

You can disable this behavior in the options by disabling CodeLens under the Text Editor options.

If you are worried about the size these files occupy on disk you can set the folder as a symlink to another drive to store them somewhere else. Alternatively using scheduled tasks and powershell removing the contents of the folder each system start would also work, though it does mean it has to generate them again when you open a file.

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

79752640

Date: 2025-09-01 14:35:24
Score: 0.5
Natty:
Report link

I just published a package for this purpose:
https://www.npmjs.com/package/express-switchware

Usage:

const stripeHandler: express.RequestHandler = (req, res) =>
  res.send("Processed payment with Stripe");
const paypalHandler: express.RequestHandler = (req, res) =>
  res.send("Processed payment with PayPal");

app.post(
  "/checkout",
  expressSwitchware(
    (req) => req.body.provider, // e.g. { "provider": "stripe" }
    {
      stripe: stripeHandler,
      paypal: paypalHandler,
    }
  )
);

I think it is simple and elegant.

Reasons:
  • Probably link only (1):
  • Has code block (-0.5):
Posted by: Crizant

79752637

Date: 2025-09-01 14:32:23
Score: 0.5
Natty:
Report link

If I got your question well you just need sequence of the gene. Is it possible to try another parser for this purpoe, i.e. SeqIO.parse(gb_file, "genbank") and then in a cycle for record in SeqIO.parse(gb_file, "genbank"): iterates through the records. Then use another cycle as follows:

from Bio import SeqIO
from Bio.SeqFeature import FeatureLocation


def extract_gene_name_seq(gb_file):
    gene_name_seq = []
    try:
        for record in SeqIO.parse(gb_file, "genbank"):
            # The SeqIO.parse() function takes two main arguments:
            # A file handle (or filename) to read the data from.
            # The format of the sequence file.
            # It returns an iterator that yields SeqRecord objects, one for each sequence in the file.
            for feature in record.features:
                if feature.type == "CDS":
                    try:
                        name = feature.qualifiers.get('gene', [''])[0]
                        location = feature.location
                        if isinstance(location, FeatureLocation):
                            start = location.start
                            end = location.end
                            gene_sequence = location.extract(record.seq)
                            strand = location.strand
                            gene_name_seq.append((name, strand, start, end, gene_sequence))
                        else:
                            print(f"Skipping feature with non-standard location: {feature}")
                    except (KeyError, AttributeError) as e:
                        print(f"Error processing feature: {feature}. Error: {e}")
                        continue

    except Exception as e:
        print(f"Error parsing GenBank file: {e}")
        return []

    return gene_name_seq

# Example usage:
gb_file = "Capsicum_annuum.gb"  # Replace with your GenBank file name
gene_name_seq_data = extract_gene_name_seq(gb_file)
print('Length of gene_name_seq_data', len(gene_name_seq_data))

if gene_name_seq_data:
    for name, strand, start, end, gene_sequence in gene_name_seq_data:
        print(f"Gene: {name}, Strand {strand}, Start {start}, End {end}, Gene_sequence: {gene_sequence}")
else:
    print("No gene information found or an error occurred.")
Reasons:
  • Blacklisted phrase (1): Is it possible to
  • Long answer (-1):
  • Has code block (-0.5):
  • Low reputation (1):
Posted by: Vladimir

79752635

Date: 2025-09-01 14:29:23
Score: 0.5
Natty:
Report link

I've also stumbled upon this. It seems that in Hibernate 6.6 Expression.as(String.class) no longer generates an SQL CAST. It is now just an unsafe Java type cast. To use LIKE on a numeric column you must explicitly cast via JpaExpression#cast

It's part of the Migration Guide

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

79752631

Date: 2025-09-01 14:23:21
Score: 1
Natty:
Report link

ARM PMULL or PMULL2 would be the equivalent.

https://learn.microsoft.com/en-us/dotnet/api/system.runtime.intrinsics.arm.advsimd.polynomialmultiply?view=net-9.0

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

79752628

Date: 2025-09-01 14:20:20
Score: 2.5
Natty:
Report link

Okay, the problem is funny: I used adb exec-out run as ... cat to copy the files from my Pixel to my Windows. First it works fine, now not anymore. It includes bom. But on the device the files works fine. Thanks to all for helping. awkward :)

Reasons:
  • Blacklisted phrase (0.5): Thanks
  • Low length (0.5):
  • Has code block (-0.5):
  • Self-answer (0.5):
  • Single line (0.5):
  • Low reputation (1):
Posted by: Termo

79752624

Date: 2025-09-01 14:12:17
Score: 1.5
Natty:
Report link

I'm not a professional but here's what I've got.

import cv2
import numpy as np

test1=np.zeros((90,90,3))
test2=np.zeros((90,90,3))

img=cv2.imread('colors.png')
img_hsv=cv2.cvtColor(img,cv2.COLOR_BGR2HSV)

light_color=np.array([[[245,183,22]]],dtype="uint8")

test1[0:45,0:90]=cv2.cvtColor(light_color,cv2.COLOR_RGB2BGR)

# [22,232,245]
light_color=cv2.cvtColor(light_color,cv2.COLOR_RGB2HSV)

test1[45:90,0:90]=light_color

light_color=np.ravel(light_color)

dark_color=np.array([[[255,193,32]]],dtype="uint8")

test2[0:45,0:90]=cv2.cvtColor(dark_color,cv2.COLOR_RGB2BGR)

# [22,223,255]
dark_color=cv2.cvtColor(dark_color,cv2.COLOR_RGB2HSV)

test2[45:90,0:90]=dark_color

dark_color=np.ravel(dark_color)

#light_color = np.array([22,232,245])
#dark_color = np.array([32,218,255])

lc_sat=light_color[1]
light_color[1]=dark_color[1]
dark_color[1]=lc_sat

mask=cv2.inRange(img_hsv,light_color,dark_color)
#mask=cv2.inRange(img,np.array([22,232,245],np.uint8),np.array([22,223,255],np.uint8))
mask2=cv2.inRange(img,np.array([22,183,245],np.uint8),np.array([32,193,255],np.uint8))
result=cv2.bitwise_and(img_hsv,img_hsv,mask=mask)
result2=cv2.bitwise_and(img,img,mask=mask2)

cv2.imwrite("hsv_mask1_hsv.png",mask)
cv2.imwrite("hsv_mask2_bgr.png",mask2)
cv2.imwrite("hsv_result1_hsv.png",cv2.cvtColor(result,cv2.COLOR_HSV2BGR))
cv2.imwrite("hsv_result2_bgr.png",result2)
cv2.imwrite("hsv_lightc.png",test1)
cv2.imwrite("hsv_darkc.png",test2)
cv2.imwrite("hsv_colors.png",img_hsv)

enter image description here enter image description here

enter image description here. enter image description here

enter image description here. enter image description here

enter image description here. enter image description here

Reasons:
  • Blacklisted phrase (1): enter image description here
  • Probably link only (1):
  • Long answer (-1):
  • Has code block (-0.5):
  • Low reputation (1):
Posted by: Josip D

79752620

Date: 2025-09-01 14:07:16
Score: 0.5
Natty:
Report link

Here is the correct syntax:

curl -X POST \
-H "Authorization: Bearer $BOT_TOKEN" \
-H "Content-Type: application/json" \
-d '{"channel": "CXXXXXXXX", "text": "Hello, world! <@UXXXXXXXX>"}' \
https://slack.com/api/chat.postMessage

Just replace the CXXXXXXXX with the channel id you want to target and the UXXXXXXXX with the user id you want to tag (optional). To learn more on how to find these values and generate a $BOT_TOKEN, read my blog: https://ducttapecode.com/blog/slack-integration/article/

Reasons:
  • Has code block (-0.5):
  • Filler text (0.5): XXXXXXXX
  • Filler text (0): XXXXXXXX
  • Low reputation (0.5):
Posted by: Guillaume Blanchet

79752619

Date: 2025-09-01 14:07:16
Score: 0.5
Natty:
Report link

You can’t change markers in swarmplot directly—overlay them with ax.scatter instead

ax = sns.swarmplot(data=df, x="value", y="letter", hue="type")
highlight = df[df["letter"].isin(["AB","AE"])]
ax.scatter(highlight["value"], highlight["letter"], marker="*", s=200, c="black")
Reasons:
  • Low length (0.5):
  • Has code block (-0.5):
  • Low reputation (0.5):
Posted by: Sai-Programmer

79752616

Date: 2025-09-01 14:02:15
Score: 0.5
Natty:
Report link

For anyone who cares about 29/2 special handling, here is my suggestion (thx to @Gareth for the incentive):

import calendar

def add_years(d, years):
    """
    Return the same calendar date (month and day) in the destination year.
    In the case of leap years, if d.date is 29/2/xx and the target year (xx+years) is 
    not a leap year it will return 28/2.
    Conversely, if d.date is 28/2/xx and the target year is a leap year, it will 
    return 29/2.
    """
        sy, ty = d.year, d.year + years
    if all([calendar.isleap(sy), calendar.isleap(ty)]):
        ret = d.replace(year=d.year+years)
    elif all([calendar.isleap(sy), d.month == 2, d.day == 29]):
        ret = d.replace(day=d.day-1).replace(year=d.year+years)
    elif all([calendar.isleap(ty), d.month == 2, d.day == 28]):
        ret = d.replace(year=d.year+years).replace(day=d.day+1)
    else:
        ret = d.replace(year=d.year + years)

    return ret
Reasons:
  • Blacklisted phrase (1): thx
  • Long answer (-0.5):
  • Has code block (-0.5):
  • Low reputation (0.5):
Posted by: Agoun

79752587

Date: 2025-09-01 13:36:09
Score: 3
Natty:
Report link

You don't need to be a service to use SetTokenInformation. In your existing uiAccess process, duplicate its token, explicitly set TokenUIAccess to true, and you should be good to go. See also https://stackoverflow.com/a/23214997/21475517 (translate to C# as needed).

Reasons:
  • Blacklisted phrase (1): stackoverflow
  • Low length (0.5):
  • No code block (0.5):
  • Single line (0.5):
  • Low reputation (0.5):
Posted by: sixtyten

79752586

Date: 2025-09-01 13:35:08
Score: 1.5
Natty:
Report link

short answer is 'no', there is no way in DNG to do this. your export/modify/import method works but as you said you have a synchronization problem. there is a REST API for DNG and using that you could do essentially the same thing with a script, but again there is a synchronization problem. welcome to the disappointment of using DNG after DOORS. ¯\_(ツ)_/¯

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

79752584

Date: 2025-09-01 13:34:08
Score: 1.5
Natty:
Report link

Take care because whenyou want to give permission on a topic, you must not use "arn:aws:kafka:eu-west-1:123456789:cluster/test-cluster/9f4ea0a3-75bc-4ff9-a971-73efa2ef73c9-9/topic/test-topic2" but USE "arn:aws:kafka:eu-west-1:123456789:topic/test-cluster/9f4ea0a3-75bc-4ff9-a971-73efa2ef73c9-9/topic/test-topic2"

==> change :cluster by :topic

Reference : https://docs.aws.amazon.com/service-authorization/latest/reference/list_apachekafkaapisforamazonmskclusters.html#apachekafkaapisforamazonmskclusters-topic

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

79752582

Date: 2025-09-01 13:32:07
Score: 1
Natty:
Report link

You are most probably going to want to want to have separate package files as those two separate folders will have different tooling needs. That's not a must though. E.g. you may have a SSR React app that needs to be served. But... the way you explained it "client = React", "server = express" it sounds like you are building two separate integrated applications.

A more elaborated answer could include a way of working with workspaces where you may indeed want to have a root package.json

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

79752573

Date: 2025-09-01 13:26:05
Score: 1
Natty:
Report link

you have to reassign previous (and next) every iteration of the for loop.

for obj in mod do {
   po  = previous(obj)
   no  = next(obj)

you don't need the refresh.

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

79752568

Date: 2025-09-01 13:23:04
Score: 1.5
Natty:
Report link

I finally found a way to do that. Thanks to Rajeev KR answer which drive me to the solution

The hostArray string has to be converted to JSON and it can be done using with a type conversion to json https://github.com/karatelabs/karate#type-conversion

# sample of hostsArray 
* def hostsArray = '[{"hostid": "1234"},{"hostid": "4567"}, {"hostid": "9865"}]'
* json hostArrayJson = hostsArray

* def myjson =
"""
{
  "key1": "val1",
  "params" : {
     "key2": "val2",
     "hosts" : '#(hostsArrayJson)'
  }
"""

Reasons:
  • Blacklisted phrase (0.5): Thanks
  • Has code block (-0.5):
  • Self-answer (0.5):
  • Low reputation (1):
Posted by: gerfred

79752564

Date: 2025-09-01 13:20:03
Score: 2.5
Natty:
Report link

GCP has release a new version composer-2.14.0-airflow-2.10.5 that solves the above described dependency loop by pointing out (at least in my case, the conflict). You can analyze the release notes and verify that this version was added to improve PyPi dependency issues.

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

79752563

Date: 2025-09-01 13:20:03
Score: 3.5
Natty:
Report link

Checkout my Repository : https://github.com/Ujjwalbiswas09/Dae-Parser-Java-Android

I have build this totally from scratch specially for android using java

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

79752557

Date: 2025-09-01 13:17:02
Score: 0.5
Natty:
Report link

Bold Reports is a modern and robust alternative to the legacy Report Viewer control, offering full support for RDL and RDLC formats so you can continue using your existing SSRS reports without needing to rewrite them. It is fully compatible with all major browsers including Chrome, Firefox, Safari, and Edge, overcoming the limitations of older viewers that were tied to Internet Explorer. With a dedicated ASP.NET MVC Report Viewer control, Bold Reports integrates seamlessly into MVC applications using NuGet packages such as BoldReports.Web, BoldReports.Mvc5, and BoldReports.JavaScript. We also offer support for .NET Core, ensuring compatibility with modern .NET applications.

Unlike the traditional Report Viewer, Bold Reports is JavaScript-based and does not rely on ViewState, making it ideal for modern web development. It also provides extensive customization options, localization support, and the ability to extend functionality through events and APIs.

Bold Reports uses a Web API controller to load and show reports, which works well with today’s web development practices. This setup helps your app run faster and makes it easier to connect with other services. For detailed implementation guidance, refer to the official documentation: How to Add the Report Viewer to an ASP.NET MVC Application – Bold Reports.

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

79752555

Date: 2025-09-01 13:16:01
Score: 1.5
Natty:
Report link

How about this:

if ((typeof process !== 'undefined') && 
(process.release.name.search(/node|io.js/) !== -1)) {
    console.log('this script is running on the server');
} else {
    console.log('this script is running in client side');
}
Reasons:
  • Low length (0.5):
  • Has code block (-0.5):
  • Starts with a question (0.5): How
  • Low reputation (1):
Posted by: Dragos

79752548

Date: 2025-09-01 13:09:59
Score: 3
Natty:
Report link

The solution here ended up being a change of uC from the STM32L series to the STM32U series, meaning a 32 bit timer was available on the same pin.

This however also had issues as Tim 2 Chan 1 did not work, tried on x2 uC, so a short to the next pin and Tim 2 Chan 2 worked fine.

None of the suggested methods (above) using DMA worked, they suffered similar issues to those reported in the question.

Reasons:
  • Blacklisted phrase (1): did not work
  • No code block (0.5):
  • Self-answer (0.5):
  • Low reputation (1):
Posted by: Paul S

79752532

Date: 2025-09-01 13:00:56
Score: 2
Natty:
Report link

The statement: ""There is currently no theoretical reason to use neural networks with any more than two hidden layers" was made by Heaton in his 2008 work, and reflects the theoretical perspective at that time: that multilayer perceptrons (MLPs) with more than two hidden layers had no guaranteed theoretical advantage over shallower networks. However, as is often the case in a fast-evolving field like deep learning, this claim has since been overtaken by both empirical evidence and new theoretical insights.

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

79752529

Date: 2025-09-01 12:57:55
Score: 3
Natty:
Report link

I'd recommend to try my lib which adds some consistency to develop FastAPI and Socketio

https://github.com/bandirom/fastapi-socketio-handler

Lib under active development, so fill free to contribute or open an issues

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

79752524

Date: 2025-09-01 12:53:54
Score: 0.5
Natty:
Report link

Analyzer `6.0` is too old, you'll need to remove the dependency pin if you want to use more recent versions of various packages

dependency_overrides:
  analyzer: ">=6.0.0 <6.6.0"

thes dart pub get.

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

79752518

Date: 2025-09-01 12:49:53
Score: 3.5
Natty:
Report link

This issue has now been resolved. I raised an issue in the GitHub issue repo for googlecolab/colabtools and I tried the same code as above this morning, and it loaded fine.

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

79752514

Date: 2025-09-01 12:42:51
Score: 3.5
Natty:
Report link

I know it's been a while since you asked, but have a look at https://github.com/PetrVys/MotionPhoto2. You'll need to port it from python, but the files created are working in most viewers, and HEIC files are supported too - and Google Photos is the primary target.

Reasons:
  • Blacklisted phrase (1): I know it's been
  • Low length (0.5):
  • No code block (0.5):
  • Single line (0.5):
  • Low reputation (1):
Posted by: yusaku

79752500

Date: 2025-09-01 12:23:46
Score: 1
Natty:
Report link
form.append('audio', { uri: Platform.OS === 'ios' ? uri.replace('file://', '') : uri, name: name || 'upload-file', type: mime || 'application/octet-stream',

Use the correct MIME type if available, otherwise fallback to "application/octet-stream",This ensures the file always has a valid type during upload

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

79752498

Date: 2025-09-01 12:19:45
Score: 0.5
Natty:
Report link

For a notebook in VSCode, following will give you the notebook name. No need to import anything additional

notebook_name = os.path.basename(globals().get('__vsc_ipynb_file__', 'unknown_notebook')).replace('.ipynb','')
print(f"Notebook name: {notebook_name}")
Reasons:
  • Low length (0.5):
  • Has code block (-0.5):
  • Low reputation (0.5):
Posted by: Abhishek Sourabh

79752493

Date: 2025-09-01 12:16:44
Score: 3
Natty:
Report link

I have solve the problem, the problem is that when r studio first start to make a directory and create a log file in .local and have not enough permission, so it would shut down. Open the r studio in terminal can see the complete error information.

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

79752484

Date: 2025-09-01 12:09:42
Score: 4.5
Natty: 5
Report link

If anyone happens to stumble upon this post, it's a new feature in C# 14 https://learn.microsoft.com/en-us/dotnet/csharp/language-reference/proposals/csharp-14.0/null-conditional-assignment.

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

79752478

Date: 2025-09-01 12:08:41
Score: 1
Natty:
Report link

I was looking for something similar, wanting to customize the formatter. The best solution I could find was to download the Eclipse IDE itself and use the built-in Formatter Profile Editor, available under Project -> Properties, then Java Code Style -> Formatter (and perhaps -> Configure Workspace Settings)

While it is very convoluted and cumbersome, it is also a much more powerful and versatile version of the "Java Formatter Settings with Preview" available in VS Code. It offers a preview of every single setting using a fitting code example to visualize the changes. It also allows for the examples to be changed and custom code to be tested with the "View/edit raw code" option and "Custom preview contents" toggle. Once satisfied, it can be exported and the resulting file be used as the projects eclipse-formatter.xml.

While it's not a 1:1 description of every setting and their respective byte combinations, I feel that it fullfills that role very well.

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

79752477

Date: 2025-09-01 12:06:40
Score: 0.5
Natty:
Report link

Currently, nested objects are not filterable nor vectorized a per our docs:

Currently, object and object[] datatype properties are not indexed and not vectorized.

Future plans include the ability to index nested properties, for example to allow for filtering on nested properties and vectorization options.

Our team is currently working on that feature, and you can keep track of it here:
https://github.com/weaviate/weaviate/issues/3694

Thanks!

Reasons:
  • Blacklisted phrase (0.5): Thanks
  • Has code block (-0.5):
  • Low reputation (0.5):
Posted by: Duda Nogueira

79752469

Date: 2025-09-01 11:49:37
Score: 2
Natty:
Report link

To change the sync function on an App Endpoint, please use the management API https://docs.couchbase.com/cloud/management-api-reference/index.html#tag/App-Endpoints/operation/putAccessFunction

Only /_roles, /_users and /_session are allowed through through the admin port 4985 in the connect tab on App Endpoints.

For the public port 4984, these are the supported endpoints https://docs.couchbase.com/cloud/app-services/references/rest_api_public.html

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

79752467

Date: 2025-09-01 11:48:36
Score: 1
Natty:
Report link

I've done some research on this topic and i think it's only possible on the tpyescript platform and not regular js anymore with the upgrade. It's also stated in the upgraded note to switch. "If you’re using propTypes, we recommend migrating to TypeScript or another type-checking solution." hope this helps

Reasons:
  • Whitelisted phrase (-1): hope this helps
  • Low length (0.5):
  • Has code block (-0.5):
  • Unregistered user (0.5):
  • Single line (0.5):
  • Low reputation (1):
Posted by: jasper

79752439

Date: 2025-09-01 11:03:27
Score: 4
Natty:
Report link

All the Emacs Verilog-mode like indentation/vertical alignment needs are satisfied in VSCode with DVT through https://eda.amiq.com/documentation/vscode/sv/toc/code-formatting/indentation.html.

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

79752434

Date: 2025-09-01 10:56:25
Score: 3.5
Natty:
Report link

I'll post an update once I figure it out. That way, if anyone else has my problem, hopefully they will find the solution.

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

79752423

Date: 2025-09-01 10:45:22
Score: 3.5
Natty:
Report link

This was fixed for me after I upgraded my flutter version

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

79752417

Date: 2025-09-01 10:41:21
Score: 1
Natty:
Report link

Another pitfall I can see is that many articles about OAuth authorization on client side don't talk about the client's Access Token validity verification at resource/api server side. I've found some talks/doc about "introspection" endpoint, but they are rare.

It's why have asked here this question in context of Laravel Socialite.

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

79752411

Date: 2025-09-01 10:36:20
Score: 4.5
Natty: 6
Report link

Can users specify rust things be installed on D-drive and not C-drive (C:\users\xxx\.rustup)?

Reasons:
  • Low length (1):
  • No code block (0.5):
  • Ends in question mark (2):
  • Single line (0.5):
  • Starts with a question (0.5): Can u
Posted by: user3761555

79752409

Date: 2025-09-01 10:35:19
Score: 1
Natty:
Report link

You can’t directly create DataWedge profiles via Flutter APIs because Zebra doesn’t expose a Flutter plugin for that yet. The trick is to use the DataWedge intent interface.

  1. From Flutter, use MethodChannel to send an Android intent.

  2. Broadcast to DataWedge with the com.symbol.datawedge.api.CREATE_PROFILE action.

  3. Once the profile exists, push configuration with SET_CONFIG intents (scanner input, keystroke/output plugin, intent delivery to your Flutter activity).

  4. Keep the profile name consistent with your app package so you can reuse it across installs.

It’s a bit boilerplate-heavy, but once the intent channel is set up, you can manage profiles from Flutter without touching native code too much.

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

79752402

Date: 2025-09-01 10:27:18
Score: 2
Natty:
Report link

There seems to be some sort of issue with google/apiclient and a VM shared folder. I was able to install it fine via composer in a non-shared folder in the Ubuntu VM in less than a second but it always failed when trying to install it in the shared folder.

Then, even after it was installed I had trouble moving the vendor folder into a the VM shared folder.

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

79752392

Date: 2025-09-01 10:12:14
Score: 1.5
Natty:
Report link

Such performance differences are likely caused by unoptimal drivers. Before exFAT support was integrated into the Linux kernel with version 5.7 (released in May 2020), I remember achieving huge transfer speed gains by replacing the free FUSE exFAT driver with a proprietary kernel module from Samsung, which increased transfer speeds to the level I was used to from Windows.

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

79752391

Date: 2025-09-01 10:12:14
Score: 1.5
Natty:
Report link

fast adjustment can be used

p "MyTwoColumnDataFile.dat" u 1:2 w lp ls 7 ps 2 lc 2

that is meaning use the first and second columns, with line and points ("w lp"), line style 7 (this style is the line with dots at the places where data are provided, "ls 5" would be rectangles, etc.), point size is 2 (here you can adjust the size of those dots), line color is 2 (set as you wish).

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

79752386

Date: 2025-09-01 10:05:12
Score: 3
Natty:
Report link

re install the i18n plugin to version 11.1.9 or 11.1.10 better than latest , have many issues and it fixed same issue for me

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

79752374

Date: 2025-09-01 09:49:09
Score: 2.5
Natty:
Report link

OK, it was a stupid question.

In the experiment of automatic updating binaries, I mistakenly downloaded a cn.pyd to src.

Then I wasted almost a whole day trying to figure out why breakpoints in cn.py do not work trying this and that.

Finally my colleagues suggseted me to check cn._file_ and find out what I reallly imported.

Maybe this experience could save someone's time in the future when they read this.

Reasons:
  • Blacklisted phrase (1): stupid question
  • No code block (0.5):
  • Self-answer (0.5):
  • Low reputation (0.5):
Posted by: Farn Wang

79752372

Date: 2025-09-01 09:45:08
Score: 1
Natty:
Report link

It seems that at time of writing, Excel's dependency tracking functionality is only able to track spill arrays as if they were any other array, and so it cannot differentiate between a calculation that is element-wise and one that operates on the whole array input argument(s).

The only viable solutions for tasks where one column needs to take outputs from another column as input are:

  1. Use a helper row to hold the true input and then use an external (to Excel's native formulae) means to copy the reference output to the input cell. This could be VBA or, in the worst possible case, a user input with visual feedback if the value is out of date.

  2. Stack multiple (optional) calculations into a single column. So in my real-world example, I may just design for a maximum number of sequential turbine stages and stack those calculations into each column.

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

79752358

Date: 2025-09-01 09:33:05
Score: 2.5
Natty:
Report link

Old post, but perhaps this helps somebody:

You could use a top level bus structure to hold all you bus objects, as seen here:
https://de.mathworks.com/help/simulink/slref/simulink.bus.html

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

79752354

Date: 2025-09-01 09:29:03
Score: 9
Natty: 4
Report link

Was it possible to solve this issue?
I have similar issue...

Reasons:
  • Blacklisted phrase (1): I have similar
  • RegEx Blacklisted phrase (1.5): solve this issue?
  • Low length (1.5):
  • No code block (0.5):
  • Me too answer (2.5): I have similar issue
  • Contains question mark (0.5):
  • Starts with a question (0.5): Was it
  • Low reputation (1):
Posted by: Tom1632125

79752347

Date: 2025-09-01 09:08:59
Score: 1
Natty:
Report link

React does indeed handle event delegation internally through its SyntheticEvent system. However, there are still specific scenarios where manual event delegation can be beneficial.

React's Built-in Event Delegation

React automatically delegates most events to the document root, so when you write:

javascript<button onClick={handleClick}>Click me</button>

React doesn't actually attach the listener to that specific button - it uses a single delegated listener at the document level.

When Manual Event Delegation is Still Useful

Despite React's internal delegation, manual event delegation is valuable for:

  1. Performance with large dynamic lists (1000+ items)

  2. Complex nested interactions within list items

  3. Mixed event types on the same container

  4. Integration with non-React libraries

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

79752341

Date: 2025-09-01 09:05:57
Score: 0.5
Natty:
Report link

Good hint by @SmartMarkCoder

Option Explicit On

Public Class Form1
    Dim numberOfSides As Integer = 0
    Const skew As Single = Math.PI * 1.5F ' Corrects the rotation

    Private Sub Form1_Load(sender As Object, e As EventArgs) Handles MyBase.Load
        Me.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Dpi
        'MessageBox.Show(Me.Width & "," & Me.Height)
    End Sub

    Protected Overrides Sub OnPaint(e As PaintEventArgs)
        Dim centerX As Integer = Me.ClientSize.Width * 2 / 3
        Dim centerY As Integer = Me.ClientSize.Height * 1 / 2
        Dim centerPoint As New PointF(centerX, centerY)
        Dim radius As Integer = Me.ClientSize.Width / 4.5
        '
        MyBase.OnPaint(e)
        If numberOfSides < 3 Then Return
        Dim polygon = CreatePolygon(radius, numberOfSides, centerPoint)
        Using blackPen As New Pen(Color.Black, 2)
            e.Graphics.SmoothingMode = Drawing2D.SmoothingMode.AntiAlias
            e.Graphics.DrawPolygon(blackPen, polygon)
        End Using
        '
        e.Graphics.FillRectangle(Brushes.Red, centerX, centerY, 2, 2)   ' added to visualise the center point
    End Sub

    Private Sub ListBox1_SelectedIndexChanged(sender As Object, e As EventArgs) Handles ListBox1.SelectedIndexChanged
        numberOfSides = CInt(ListBox1.SelectedItem)
        Me.Invalidate()
    End Sub

    Public Function CreatePolygon(radius As Single, sides As Integer, center As PointF) As PointF()
        Dim polygon = New PointF(sides - 1) {}
        Dim angle As Single = 360.0F / sides * CSng(Math.PI / 180.0F)

        For side As Integer = 0 To sides - 1
            polygon(side) = New PointF(
            CSng(center.X + radius * Math.Cos(skew + side * angle)),
            CSng(center.Y + radius * Math.Sin(skew + side * angle)))
        Next
        Return polygon
    End Function

End Class
Reasons:
  • Long answer (-1):
  • Has code block (-0.5):
  • User mentioned (1): @SmartMarkCoder
  • Self-answer (0.5):
  • Low reputation (0.5):
Posted by: Florin Home

79752325

Date: 2025-09-01 08:46:54
Score: 2
Natty:
Report link

The solution for me was to use https://github.com/BtbN/FFmpeg-Builds with variant gpl-shared, and use that as the layer instead of john van sickle's pure static ffmpeg.

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

79752309

Date: 2025-09-01 08:34:51
Score: 2
Natty:
Report link

enter image description here

Kindly, Let me know if this works!

=SUM(SUMIF(H5:H10,FILTER(E5:E11,F5:F11=B5),I5:I10))
Reasons:
  • Low length (1.5):
  • Has code block (-0.5):
  • Low reputation (1):
Posted by: David

79752300

Date: 2025-09-01 08:22:48
Score: 0.5
Natty:
Report link

Answering here as I suspect the other answer is AI-generated.

The most likely answer is that you don't have the typescript compiler installed. If you're using npm, you can install it to use anywhere with:

npm install --global typescript

Or for short:

npm i -g typescript
Reasons:
  • Low length (0.5):
  • Has code block (-0.5):
  • Low reputation (0.5):
Posted by: Josh Brunton

79752295

Date: 2025-09-01 08:19:47
Score: 1
Natty:
Report link

For those who will be struggling to find the affected 4KB aligned packages, follow these steps-

Steps 1: Choose your debug APK from analyze APK menu-

Choose your debug APK

Steps 2: Analyzer will show affected .so library files, those need to be fixed. (In Picture Few libraries marked which is not aligned with The 16KB Page Size)

In Picture Few libraries marked which is not aligned with The 16KB Page Size

Copy keywords from affected .so files name and In terminal run the following commands-

     cd android
     ./gradlew app:dependencies

Steps 3: Search for the keywords then you will find the affected package which is using C++ native shared libraries. (In my case i am searching for droidsonroids.gif and found that its coming from Crisp Chat Package)

Affected package

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

79752294

Date: 2025-09-01 08:18:46
Score: 1
Natty:
Report link
<picture>
   <source srcset="diagram.svg" type="image/svg+xml">
   <source srcset="diagram.png" type="image/png">
   <img src="diagram.gif" width="620" height="540"
   alt="Diagram showing the data channels">
</picture>
Reasons:
  • Low length (0.5):
  • Has code block (-0.5):
  • Low reputation (1):
Posted by: Ceci Sánchez

79752292

Date: 2025-09-01 08:15:45
Score: 0.5
Natty:
Report link

So, this was a very unexpected problem, quite a goofy one.

In my application I had

@ComponentScan(basePackages = {"path.to.a.package.from.external.module.with.generic.spring.auth.components",
 "path.to.a.package.with.local.spring.security.customizations.with.typo"})

Note the part with.typo - I was completely shadowing my custom implementation, including my custom security chain from above. Interestingly, Spring did not complain about this problem. Maybe this is expected because the package might exist, but providing no components? I switched to Idea Ultimate in the meantime and now it shows me such packages, but I just wonder if this is fair tradeoff, given the fact it might cover bugs extremely well.

Reasons:
  • Long answer (-0.5):
  • Has code block (-0.5):
  • Contains question mark (0.5):
  • Self-answer (0.5):
  • Low reputation (0.5):
Posted by: Mateva

79752289

Date: 2025-09-01 08:13:45
Score: 3
Natty:
Report link

I was having a similar issue, and after updating Visual Studio to the latest version, the issue was resolved.

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

79752278

Date: 2025-09-01 07:59:41
Score: 0.5
Natty:
Report link

Thanks iroha, for your answer, and for clarifying my question. You're right, it's a problem with the interactive rendering. (The "clever but unorthodox" approach was developed by a T.A., so I can take no credit.)

Rendering from the console works just fine. I just hate having two separate files: one with the RMD and one with the code for rendering it twice.

I did try all sorts of variations on knit_print, also to no avail.

Using the editor_options in the YAML does seem to work with ciAUC(), but doesn't seem to help with describeBy(). My workaround for describeBy() has been to use the mat = TRUE argument, save it to an object, and then knitr::kable() the object, though I think I'll switch to Tim G's workaround.

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

79752274

Date: 2025-09-01 07:58:41
Score: 2
Natty:
Report link

You shoudn't have to create a package.json manually, you can run npm install to create it, install your needed packages and run npm start

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

79752271

Date: 2025-09-01 07:57:40
Score: 3.5
Natty:
Report link

the very same error message you can get on Linux, when /tmp is mounted with noexec. Last week I was installing new db on already existing system and this message appeared for me.

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

79752260

Date: 2025-09-01 07:47:38
Score: 2.5
Natty:
Report link

You absolutely can.

Just make sure that you zip the folder, then archive the file. You might have to see the GitLab configuration since the file size tends to be high

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

79752258

Date: 2025-09-01 07:44:37
Score: 1.5
Natty:
Report link

Could you check your package.json to ensure you have compatible versions?

Or you could also reopen your editor.

Reasons:
  • Low length (1):
  • Has code block (-0.5):
  • Contains question mark (0.5):
  • Low reputation (0.5):
Posted by: Emily.C

79752253

Date: 2025-09-01 07:32:34
Score: 1
Natty:
Report link

Main Problems: You're checking for params.key("king") but should check for the value

You're using @top_discard which contains the card object, not the code

The API calls for replacing the king aren't being executed properly

You need to handle the king replacement as a separate operation

Here's the corrected code: ruby

get("/discard") do
  # ... [previous code remains the same until the king section] ...

  ################################################### start of change suit with king
  @is_king = false
  if @top_discard.fetch("value") == "KING"
    @is_king = true
  end

  # Check if king parameter is present and not empty
  @in_king = false
  if params.key?("king") && !params["king"].empty?
    king_code = params["king"]
    @in_king = true

    # Remove the current king from discard pile
    deck = cookies[:deck_id]
    pile_name = "discard"
    
    # Draw (remove) the current king from discard pile
    remove_king_url = "https://deckofcardsapi.com/api/deck/" + deck + "/pile/" + pile_name + "/draw/?cards=" + @top_discard["code"]
    HTTP.get(remove_king_url)

    # Add the new king to discard pile
    add_new_king_url = "https://deckofcardsapi.com/api/deck/" + deck + "/pile/" + pile_name + "/add/?cards=" + king_code
    HTTP.get(add_new_king_url)

    # Refresh the discard pile data
    discard_list = "https://deckofcardsapi.com/api/deck/" + deck + "/pile/" + pile_name + "/list/"
    @discard_res = api_response(discard_list, "piles").fetch(pile_name).fetch("cards")
    
    # Update top discard card
    @top_discard = @discard_res.last
    @discard_arr = @discard_res.map { |card| card.fetch("image") }
  end

  # Only load kings selection if top card is king AND we haven't already chosen one
  if @is_king && !@in_king
    new_deck = "https://deckofcardsapi.com/api/deck/new/?cards=KS,KC,KH,KD"
    resp = HTTP.get(new_deck)
    raw_response = resp.to_s
    parsed_response = JSON.parse(raw_response)
    @kings_deck_id = parsed_response.fetch("deck_id")

    king_draw = "https://deckofcardsapi.com/api/deck/" + @kings_deck_id + "/draw/?count=4"
    @cards_to_add = api_response(king_draw, "cards")

    king_add = []
    @cards_to_add.each do |c|
      king_add.push(c.fetch("code"))
    end
    
    pile_name = "kings"
    cards = king_add.join(",")
    
    pile = "https://deckofcardsapi.com/api/deck/" + @kings_deck_id + "/pile/" + pile_name + "/add/?cards=" + cards
    resp = HTTP.get(pile)

    pile_list = "https://deckofcardsapi.com/api/deck/" + @kings_deck_id + "/pile/" + pile_name + "/list/"
    @kings = api_response(pile_list, "piles").fetch("kings").fetch("cards")

    @king_arr = []
    @king_codes = []
    @kings.each do |c|
      @king_arr.push(c.fetch("image"))
      @king_codes.push(c.fetch("code"))
    end
  end

  erb(:discard)
end

Key Changes: Fixed parameter checking: Use params.key?("king") && !params["king"].empty?

Use card code instead of object: @top_discard["code"] instead of @top_discard

Proper API sequence: Remove old king → Add new king → Refresh data

Conditional king loading: Only load king options if needed and not already processed

In your ERB template, make sure you have:

erb
<% if @is_king && !@in_king %>
  <form action="/discard" method="get">
    <h3>Choose a suit for the King:</h3>
    <% @kings.each do |king| %>
      <label>
        <input type="radio" name="king" value="<%= king['code'] %>">
        <img src="<%= king['image'] %>" height="100">
      </label>
    <% end %>
    <button type="submit">Change Suit</button>
  </form>
<% end %>
Reasons:
  • Long answer (-1):
  • Has code block (-0.5):
  • Contains question mark (0.5):
  • User mentioned (1): @top_discard
  • User mentioned (0): @top_discard
  • Low reputation (1):
Posted by: holk alOmari

79752251

Date: 2025-09-01 07:31:34
Score: 3
Natty:
Report link

Had the same issue. Turns out if you push the phone brightness to 100%, it works perfectly.

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

79752250

Date: 2025-09-01 07:30:33
Score: 7.5
Natty:
Report link

Thanks to @FerhatMousavi , I found a solution. I also changed the enter() function to no longer accept any input except ENTER. (Changes are all found in my original question because I didn't realize this Answer button was below the "related questions" section. Honestly, it would make more sense to place it before the "related questions" section.... As in, if your question and replies aren't helping, here are some related questions you might want to check. That's why I didn't notice the button.

Also, @HolyBlackCat , I can't checkmark my own answer for 2 days so.... How do I mark this as solved?

Reasons:
  • Blacklisted phrase (0.5): Thanks
  • Blacklisted phrase (1): How do I
  • RegEx Blacklisted phrase (1.5): solved?
  • Long answer (-0.5):
  • Has code block (-0.5):
  • Ends in question mark (2):
  • User mentioned (1): @FerhatMousavi
  • User mentioned (0): @HolyBlackCat
  • Self-answer (0.5):
  • Looks like a comment (1):
  • Low reputation (1):
Posted by: Alexander DuChaine

79752249

Date: 2025-09-01 07:29:32
Score: 1
Natty:
Report link

After some more research I found a way to access the getter by importing the store and going that way. Maybe not the correct way but it will do until we move to Pinia.

import { store } from '../..'

[GET_MERGED_ISSUES]: (state) => (position) => {
    ...
    let positionIssue = store.getters[GET_POSITION_ISSUE](position)
    ...
  }
Reasons:
  • Has code block (-0.5):
  • Self-answer (0.5):
  • Low reputation (1):
Posted by: Leo

79752246

Date: 2025-09-01 07:26:32
Score: 1
Natty:
Report link

Not much point in seeing the C++ Classes in the editor, you can't edit them from the UE editor, it would open Visual Studio if you wanted to make changes.

Better to just open the project in VS, if you are installing it just now, or haven't done this step yet, you will need these plugins so everything works without a hitch.

Needed plugins for VS

Then you build for Development editor in VS, after that you can open UE editor and you should be able to use what you made in C++

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

79752241

Date: 2025-09-01 07:21:30
Score: 1
Natty:
Report link
 app('queue')->connection('redis');

Add this in your AppServiceProvider

public function boot(): void
    {
        // Force Redis queue connection resolution early to avoid
        // 'Call to undefined method Illuminate\Queue\RedisQueue::readyNow()' error in Horizon,
        // especially in multi-tenant context.
        app('queue')->connection('redis');
        // your existing codes.......
}
Reasons:
  • Has code block (-0.5):
  • Unregistered user (0.5):
  • Low reputation (1):
Posted by: user31394163

79752235

Date: 2025-09-01 07:15:29
Score: 0.5
Natty:
Report link

With the new ::details-content pseudo-element, we no longer need hacks to force <details> blocks open in print. We can simply reveal the hidden content using CSS

@media print {
  ::details-content {
    content-visibility: visible;
    height: auto !important;
  }
}
Reasons:
  • Low length (0.5):
  • Has code block (-0.5):
  • Low reputation (0.5):
Posted by: Burhan Nasir

79752227

Date: 2025-09-01 06:53:24
Score: 2.5
Natty:
Report link

Use jwt auth http Only is a secure cookie, the MOST secure type of session. Set the token manually is not secure because you can read it by JS. You dont need to manage the token on client, Only set credentials: 'include' in all your requests and set the correct domain in cors.php. if u can, use Always https

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

79752220

Date: 2025-09-01 06:46:22
Score: 2.5
Natty:
Report link

useActionState only available stable in React 19

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

79752219

Date: 2025-09-01 06:46:22
Score: 2.5
Natty:
Report link

Add this line to the gradle.properties

org.gradle.jvmargs=-Xms1024m -Xmx4096m
Reasons:
  • Low length (1.5):
  • Has code block (-0.5):
  • Self-answer (0.5):
  • Low reputation (1):
Posted by: Razu ahmed

79752208

Date: 2025-09-01 06:19:17
Score: 3
Natty:
Report link

Not sure if this is still relevant, but it’s worth noting you can now delete a Firestore database straight from the Firebase console under Firestore Database → [your DB] → Delete

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

79752200

Date: 2025-09-01 06:08:14
Score: 4.5
Natty: 4
Report link

ik you see this skysorcerer >:)

Reasons:
  • Low length (2):
  • No code block (0.5):
  • Unregistered user (0.5):
  • Single line (0.5):
  • Low reputation (1):
Posted by: fowlest

79752194

Date: 2025-09-01 05:55:10
Score: 4
Natty:
Report link

I was able to fix it by following the code of sample app of google mobile ads flutter sdk.
https://github.com/googleads/googleads-mobile-flutter/tree/main/samples/admob/banner_example

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

79752193

Date: 2025-09-01 05:52:09
Score: 3.5
Natty:
Report link

yes my website also showing this error site live but recive 403 how to fix site url: https://fwab.co.uk/

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

79752189

Date: 2025-09-01 05:45:08
Score: 0.5
Natty:
Report link
TEMPLATES = [{
  "BACKEND": "django.template.backends.django.DjangoTemplates",
  "DIRS": [],
  "APP_DIRS": True,   # <-- must be True
  "OPTIONS": {"context_processors": [
    "django.template.context_processors.request",
    "django.contrib.auth.context_processors.auth",
    "django.contrib.messages.context_processors.messages",
  ]},
}]
courses/templates/registration/login.html
path("accounts/login/",
     auth_views.LoginView.as_view(template_name="registration/login.html"),
     name="login")
Reasons:
  • Long answer (-0.5):
  • Has code block (-0.5):
  • Unregistered user (0.5):
  • Low reputation (1):
Posted by: Umar Sherwani

79752182

Date: 2025-09-01 05:26:04
Score: 1
Natty:
Report link

When the files are only staged and you want to unstage, just use git reset for that as @neuroine answered:

git reset /path/to/file

But if you created just one commit but now want to soft reset. Using git reset --soft won't work as it will say:

$ git reset --soft HEAD~
fatal: ambiguous argument 'HEAD~': unknown
revision or path not in the working tree.
Use '--' to separate paths from revisions, like this:
'git <command> [<revision>...] -- [<file>...]'

In that case, we can use update-ref:

git update-ref -d HEAD

Keeping this extra detail here even though it was not directly asked in the question because it is a similar problem and people can stumble upon this and find solution here.

Reasons:
  • Long answer (-0.5):
  • Has code block (-0.5):
  • User mentioned (1): @neuroine
  • Self-answer (0.5):
  • Starts with a question (0.5): When the
Posted by: Meraj al Maksud

79752172

Date: 2025-09-01 04:47:57
Score: 1.5
Natty:
Report link

As most of the trading on the RI marketplace is done by bots and algos, doing it manually will never give you good data, nor can you easily sell the RIs you buy. You need to consider market depth and liquidity, but you only have good access to that data when you have a lot of different customers already under management.

So instead of figuring out the CLI yourself, use a discount automation tool (like hykell.com) for it. You free up your time and get more savings compared to doing it yourself.

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

79752164

Date: 2025-09-01 04:33:54
Score: 3.5
Natty:
Report link

Necesito seleccionar un dispositivo de audio y luego reproducir el audio en ese dispositivo, que no es el principal para hacer un pre escucha con dos tarjetas de audio

Reasons:
  • Low length (1):
  • No code block (0.5):
  • Unregistered user (0.5):
  • Single line (0.5):
  • Low reputation (1):
Posted by: Jesús