79710820

Date: 2025-07-22 16:55:47
Score: 1
Natty:
Report link

You can’t use async/await or Promises in beforeunload handlers.

Option 1: Use sendBeacon + server-side token recognition
If possible, send a token or userId as part of the payload (not header), e.g.:

navigator.sendBeacon('/api/unlock', JSON.stringify({ userId, token }));

Option 2: Use fetch with keepalive: true (limited support):

fetch('/api/unlock', {
  method: 'POST',
  headers: {
    'Content-Type': 'application/json',
    'Authorization': 'Bearer yourTokenHere'
  },
  body: JSON.stringify({ userId }),
  keepalive: true
});enter image description here

enter image description here Summary

Reasons:
  • Blacklisted phrase (1): enter image description here
  • Long answer (-0.5):
  • Has code block (-0.5):
  • Low reputation (1):
Posted by: Ruben Duarte

79710816

Date: 2025-07-22 16:50:46
Score: 0.5
Natty:
Report link

Good day. I have a solution to your problem. You need to add an empty package.json file to the project in the following format:

{ "name": "", "description": "", "version": "0.1.0", "dependencies": {}, "devDependencies": {} }

After this, Vaadin will generate all dependencies and will not delete the frontend part.

Long explanation: Vaadin assumes that if there is no customization in the application, it dynamically generates the frontend, builds it into an artifact, and deletes it. The presence of even an empty package.json is considered a sign of customization.

Reasons:
  • Blacklisted phrase (1): Good day
  • Long answer (-0.5):
  • Has code block (-0.5):
  • Low reputation (0.5):
Posted by: rastafarra

79710807

Date: 2025-07-22 16:43:43
Score: 3
Natty:
Report link

Ok, I found it :) I can't have the name of the main C file like the module name. When they differ it works fine! Looks like a noob mistake :) Thanks for help

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

79710797

Date: 2025-07-22 16:36:41
Score: 1
Natty:
Report link

let _value = key === "HiringPath" ? name : val;
Here, you're assigning the radio button's name (which is likely the same for all options, like "HiringPath") instead of the selected value. This causes unexpected behavior in setState.

let _value = val;

This ensures only the clicked radio button's value is set properly.

Reasons:
  • Has code block (-0.5):
  • Contains question mark (0.5):
  • Low reputation (1):
Posted by: Sahil Davkhar

79710784

Date: 2025-07-22 16:26:38
Score: 0.5
Natty:
Report link

The problem was that I hadn't defined i and it was fixed by just adding:


Local i
Reasons:
  • Low length (1.5):
  • Has code block (-0.5):
  • Self-answer (0.5):
  • High reputation (-1):
Posted by: Megidd

79710775

Date: 2025-07-22 16:20:37
Score: 3.5
Natty:
Report link

We are having a similar issue. CPU/IOWAIT spikes every 30 minutes, causing queries to time out obtaining locks, breaking the application. iotop confirms the MySQL process is the culprit. Enabling SQL logs:

SET GLOBAL general_log = 'ON';

did not reveal either any intensive queries nor a flood of queries.

What other logs can we look at that would identify what MySQL is doing to cause these i/o spikes?

We're running:

mysql  Ver 15.1 Distrib 10.3.36-MariaDB, for Linux (x86_64) using readline 5.1
Reasons:
  • Has code block (-0.5):
  • Me too answer (2.5): having a similar issue
  • Contains question mark (0.5):
  • Low reputation (1):
Posted by: Dave K

79710771

Date: 2025-07-22 16:18:35
Score: 12.5
Natty: 6.5
Report link

do you find any solution? I'm also facing the same problem.

Reasons:
  • Blacklisted phrase (1.5): any solution
  • RegEx Blacklisted phrase (2.5): do you find any
  • RegEx Blacklisted phrase (2): any solution?
  • Low length (1.5):
  • No code block (0.5):
  • Me too answer (2.5): I'm also facing the same problem
  • Contains question mark (0.5):
  • Single line (0.5):
  • Low reputation (1):
Posted by: Muhammad Faizan FaiZii

79710765

Date: 2025-07-22 16:13:34
Score: 1.5
Natty:
Report link

[update] for some reason (maybe spec defines this) mapping to a json column did not like the fact I annotated the entity methods and not the entity properties.
this is what failed the runtime. the error message was not on point. not sure if its a bug or not but incase you read this, to avoid issues you should annotated properties.

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

79710764

Date: 2025-07-22 16:12:34
Score: 1.5
Natty:
Report link

I'm getting a different error in .NET 8.0. Here is my code:

Microsoft.Office.Interop.Excel.Application xl = new();

Workbook wb = xl.Workbooks.Open(filepath);

dynamic noSenseLabel = xl.ActiveWorkbook.SensitivityLabel;

dynamic lblInfo = noSenseLabel.CreateLabelInfo();

lblInfo.LabelId = labelId;

lblInfo.LabelName = "Sensitive";

lblInfo.SiteId = siteId;

noSenseLabel.SetLabel(lblInfo, lblInfo);

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

79710752

Date: 2025-07-22 16:02:31
Score: 1.5
Natty:
Report link
from pptx import Presentation

# Create a new presentation
prs = Presentation()

# Slide 1: Title Slide
slide_1 = prs.slides.add_slide(prs.slide_layouts[0])
slide_1.shapes.title.text = "The Chinese Paddlefish"
slide_1.placeholders[1].text = "A Lost Giant of the Yangtze"

# Slide 2: Introduction
slide_2 = prs.slides.add_slide(prs.slide_layouts[1])
slide_2.shapes.title.text = "What is the Chinese Paddlefish?"
slide_2.placeholders[1].text = (
    "• Scientific name: Psephurus gladius\n"
    "• One of the largest freshwater fish species (up to 7 meters long)\n"
    "• Native to the Yangtze River in China\n"
    "• Distinctive for its long, paddle-shaped snout\n"
    "• Lived for over 200 million years — a “living fossil”"
)

# Slide 3: Extinction and Causes
slide_3 = prs.slides.add_slide(prs.slide_layouts[1])
slide_3.shapes.title.text = "Why Did It Go Extinct?"
slide_3.placeholders[1].text = (
    "• Declared extinct in 2022 by the IUCN\n"
    "• Main causes:\n"
    "   - Overfishing (1970s–80s)\n"
    "   - Dam construction (Gezhouba Dam blocked migration routes)\n"
    "   - Habitat loss and fragmentation\n"
    "• No sightings since early 2000s"
)

# Slide 4: Significance and Lessons
slide_4 = prs.slides.add_slide(prs.slide_layouts[1])
slide_4.shapes.title.text = "What Can We Learn?"
slide_4.placeholders[1].text = (
    "• Symbol of biodiversity loss in the Yangtze River ecosystem\n"
    "• Highlights the urgent need for conservation and habitat protection\n"
    "• Shows the long-term impacts of human activity on ancient species\n"
    "• Call to action: Support sustainable freshwater policies"
)

# Save the file
prs.save("Chinese_Paddlefish_Presentation.pptx")
Reasons:
  • RegEx Blacklisted phrase (2): urgent
  • Long answer (-1):
  • Has code block (-0.5):
  • Low reputation (1):
Posted by: Sairaj Pol

79710748

Date: 2025-07-22 15:56:29
Score: 0.5
Natty:
Report link

If you're working with PivotTables and PivotCharts in Excel and want to display the value of a specific measure (like a calculated field or aggregate) in a text box or chart label, here are some clean and dynamic options:

Option 1: Use a Linked Cell

1. Select a cell outside the Pivot Table.

2. Use a formula like:

=GETPIVOTDATA("Sales", $A$3, "Region", "East")

Replace "Sales" with your measure name.

$A$3 is a cell inside your PivotTable.

Adjust filters/fields as needed.

3. Then link your text box to this cell:

Click the text box.

In the formula bar, type:

=Sheet!B1

Press Enter.

This keeps the value dynamic and clean.

Option 2: Use a Named Range (Optional Enhancement)

Define a Named Range pointing to your GETPIVOTDATA cell (e.g., TotalSales).

Then link your chart label or text element to =TotalSales.

Helps with clarity and reuse in larger dashboards.

Bonus Tip: Avoiding GETPIVOTDATA Clutter

If Excel is auto-inserting complex GETPIVOTDATA formulas you don’t want:

Go to File > Options > Formulas.

Uncheck "Use GETPIVOTDATA functions for PivotTable references"

Avoid:

Manually copying PivotTable values into text boxes (not dynamic).

VBA for this task unless automation is required—it's overkill for a simple value fetch.

Summary:

Use GETPIVOTDATA to dynamically pull the measure value and link it to a text box. It’s clean, updates with filters, and avoids manual effort.

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

79710747

Date: 2025-07-22 15:55:29
Score: 1.5
Natty:
Report link

Can someone help me identify what’s wrong with the logic in the SNK_VERIFICA_NOME_IDX function or the way it’s being used in the procedure?

You are using COUNT to count items in the data dictionary but you are not modifying the data dictionary so when a duplicate name is checked the duplication is not found because the data dictionary has not changed.

For example:

CREATE TABLE TABCDEFGHI1 (id NUMBER PRIMARY KEY);

CREATE TABLE TABCDEFGHI2 (
  t_id NUMBER
       PRIMARY KEY,
  id   NUMBER
       REFERENCES TABCDEFGHI1(id)
);

CREATE TABLE TABCDEFGHI3 (
  id NUMBER
     REFERENCES TABCDEFGHI1(id)
     REFERENCES TABCDEFGHI2(t_id)
);

Then the output is:

CREATE INDEX TABCDEFGHI_IDX_FK_ID ON TABCDEFGHI2(ID) tablespace SANKIND;
CREATE INDEX TABCDEFGHI_IDX_FK_ID ON TABCDEFGHI3(ID) tablespace SANKIND;
CREATE INDEX TABCDEFGHI_IDX_FK_ID ON TABCDEFGHI3(ID) tablespace SANKIND;

All 3 indexes are given identical names.

If you want to track duplicates, without changing the data dictionary, then the you need to maintain the state of the number of counts you have found for each index (probably in an associative array or something similar) and increment your local data structure when you generate each index name.

fiddle

Reasons:
  • Blacklisted phrase (1): help me
  • RegEx Blacklisted phrase (3): Can someone help me
  • Long answer (-1):
  • Has code block (-0.5):
  • Contains question mark (0.5):
  • Starts with a question (0.5): Can someone help me
  • High reputation (-2):
Posted by: MT0

79710743

Date: 2025-07-22 15:52:28
Score: 1.5
Natty:
Report link

Only comment the variable, here is the explanation:

docker
#-------------------------------------------------------------------------------

#Name : FROM_LOCATION_CD_LABEL

#Datatype : String

#Description: This variable should only be used in multi-CD installations. It includes the label of the compact disk where the file "products.xml" exists. The label can be found in the file "disk.label" in the same directory as products.xml.

#Example: FROM_LOCATION_CD_LABEL = "CD Label"

#-------------------------------------------------------------------------------

FROM_LOCATION_CD_LABEL=<Value Unspecified>

Reasons:
  • Long answer (-0.5):
  • No code block (0.5):
  • Filler text (0.5): -------------------------------------------------------------------------------
  • Filler text (0): -------------------------------------------------------------------------------
  • Low reputation (1):
Posted by: Ricardo Veloz

79710738

Date: 2025-07-22 15:46:27
Score: 2
Natty:
Report link

In my case, my python was broken and some of my packages relied on it to build C++ libs (I guess). So reinstall python and it was back normal

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

79710731

Date: 2025-07-22 15:43:26
Score: 1.5
Natty:
Report link

Probably, the question has been answered here: How to turn off (or on) sounds from Visual Studio Code?

Check if your Accessibility Support is enabled, then disable it:

...
"editor.accessibilitySupport": "off",
...
Reasons:
  • Low length (1):
  • Has code block (-0.5):
  • Low reputation (1):
Posted by: Artsiom Sauchuk

79710727

Date: 2025-07-22 15:41:26
Score: 1
Natty:
Report link

You can get information about a user's current brute-force status using the admin REST API GET /admin/realms/{realm}/attack-detection/brute-force/users/{userId}.
https://www.keycloak.org/docs-api/26.1.5/rest-api/index.html#_attack_detection

You will get those data :

{
    "failedLoginNotBefore": 0,
    "numFailures": 0,
    "numTemporaryLockouts": 0,
    "disabled": false,
    "lastIPFailure": "n/a",
    "lastFailure": 0
}
Reasons:
  • Probably link only (1):
  • Has code block (-0.5):
  • Low reputation (0.5):
Posted by: bamandine

79710719

Date: 2025-07-22 15:36:24
Score: 1.5
Natty:
Report link

Ok, finally found out that it wasn't an OL nor Proj4 issue but an ESLint one.
register(proj4 as any) solved this.

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

79710711

Date: 2025-07-22 15:30:23
Score: 5
Natty:
Report link

Looks like this is a bug, per https://github.com/slackapi/python-slack-sdk/issues/1711 and https://axon.slack.com/help/requests/6286441

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

79710708

Date: 2025-07-22 15:25:21
Score: 4
Natty: 5
Report link

try
py -m pip install pypiwin32
,if it doesnt work.

Reasons:
  • Blacklisted phrase (1): doesnt work
  • Low length (1.5):
  • No code block (0.5):
  • Low reputation (1):
Posted by: Mauricio Wilneder

79710703

Date: 2025-07-22 15:21:20
Score: 1
Natty:
Report link

There is a new way to do it in Nextjs 15 using ipAddress

req.ip no longer works. NextRequest type no longers holds an ip field

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

79710689

Date: 2025-07-22 15:10:17
Score: 1
Natty:
Report link
pine_rma(src, length) =>
    alpha = 1/length
    sum = 0.0
    sum := na(sum[1]) ? ta.sma(src, length) : alpha * src + (1 - alpha) * nz(sum[1])
pine_atr(length) =>
    trueRange = na(high[1])? high-low : math.max(math.max(high - low, math.abs(high - close[1])), math.abs(low - close[1]))
    pine_rma(trueRange, length)

Simply use instead of ta.atr() the pine function pine_atr().
You also need the pine_rma() to get rid of your error message.

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

79710687

Date: 2025-07-22 15:08:15
Score: 8.5
Natty: 6.5
Report link

sipsorcery Have you fixed it??

Reasons:
  • RegEx Blacklisted phrase (1.5): fixed it??
  • Probably link only (1):
  • Low length (2):
  • No code block (0.5):
  • Ends in question mark (2):
  • Single line (0.5):
  • Low reputation (1):
Posted by: Jose Adiel Santos Guzman

79710686

Date: 2025-07-22 15:07:15
Score: 2
Natty:
Report link

It seems I may just have been a bit dumb. This is just not a very good way to do this with python a much better approach came from this post. which led me to these docs.

The previously marked correct answer is still correct, this is just a bit of bonus info.

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

79710678

Date: 2025-07-22 15:02:13
Score: 0.5
Natty:
Report link

Is this a DRY solution?


class DeviceLoggerAdapter(logging.LoggerAdapter):
    def process(self, msg, kwargs):
        kwargs["extra"] = kwargs.get("extra", {})
        if hasattr(self, "instance"):
            kwargs["extra"]["device_name"] = self.instance.name
        return msg, kwargs


class MyClass:

    def __init__( name: str = ""):
        self.name = name
        self.logger_adapter = DeviceLoggerAdapter(logger, {"device_name": name})
        self.logger_adapter.instance = self  # Riferimento all'istanza

    def method(self):
        logger.info(
            f"{self.logger_adapter.extra['device_name']}: my text from this method"
        )

Thank you very much AI, but more thanks to the one that keep pressing minus on the question without any explanation

Reasons:
  • Blacklisted phrase (0.5): Thank you
  • Blacklisted phrase (0.5): thanks
  • Long answer (-0.5):
  • Has code block (-0.5):
  • Contains question mark (0.5):
  • Self-answer (0.5):
  • Starts with a question (0.5): Is this a
  • High reputation (-1):
Posted by: user2239318

79710674

Date: 2025-07-22 14:58:12
Score: 2
Natty:
Report link

With df['data-diff'] = df["data-a"] - df["data-b"] you get another column in the dataframe with the difference. Just plot it like the others.

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

79710667

Date: 2025-07-22 14:55:11
Score: 3
Natty:
Report link

las2tin generates SHP files with MultiPatch polygons (Type 31). It seems shp2pgsql does not support this kind of polygons.

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

79710662

Date: 2025-07-22 14:53:11
Score: 1
Natty:
Report link

PostgreSQL autovacuum takes a ShareUpdateExclusiveLock on a database table, and gets cancelled when it comes across a DDL statament like ALTER etc (which takes an Access Exclusive Lock). In case you are thinking that autovacuum would affect DDL statement then that is not the case; once deadlock_timeout (default 1s) is reached, the vacuuming would get cacnelled and the DDL statement would get executed.

Other DML statements or SELECT queries do not get affected by autovacuum.

However, in case autovacuum is running in anti-wraparound mode, your DDL statements may get blocked since this kind of autovacuum does not back off. In case you have DDL statements getting frequently run on a particular table, you can turn off autovacuum for that table.

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

79710651

Date: 2025-07-22 14:43:08
Score: 2
Natty:
Report link

same here, im experiencing the same issue:

Access to XMLHttpRequest at 'https://firebasestorage.googleapis.com/v0/b/football-club-management-3c136.appspot.com/o?name=player_posts%2FPlayer%203%2FmXgAvTYvtkajBUKXvaCRH6CZUim1%2F1753194930030_arsenal-womens-post-match-team-talk-33376688.jpg.webp' from origin 'https://football-club-management-3c136.web.app' has been blocked by CORS policy: Response to preflight request doesn't pass access control check: It does not have HTTP ok status.

connection.ts:88 POST https://firebasestorage.googleapis.com/v0/b/football-club-management-3c136.appspot.com/o?name=player_posts%2FPlayer%203%2FmXgAvTYvtkajBUKXvaCRH6CZUim1%2F1753194930030_arsenal-womens-post-match-team-talk-33376688.jpg.webp net::ERR_FAILED

i am launching using the firebase hosting. FYI the Chrome without the CORS works but it doesnt solve for other users using regular Chrome.

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

79710647

Date: 2025-07-22 14:42:08
Score: 2
Natty:
Report link

I FOUND THE METHOD

To fix this you must copy the pc-bios to "qemu-bundle/usr/local/share"(inside build for export users) and rename pc-bios to qemu-firmware in the share folder. Everything should work now!

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

79710640

Date: 2025-07-22 14:37:07
Score: 2
Natty:
Report link

After all this time of ignoring the problem, I ran into a scenario that I could no longer avoid this problem, so I dug further into it and found out the problem. The MK3 device has a setting mode that either Enables or Disables external programs from updating the LED states. My MK3 had that disabled. Posting this answer now in case it helps someone later.

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

79710637

Date: 2025-07-22 14:36:05
Score: 9
Natty: 4
Report link

Were you able to solve this issue?
I am facing something similar.

Reasons:
  • Blacklisted phrase (1): you able to solve
  • RegEx Blacklisted phrase (1.5): solve this issue?
  • RegEx Blacklisted phrase (3): Were you able
  • Low length (1.5):
  • No code block (0.5):
  • Contains question mark (0.5):
  • Low reputation (1):
Posted by: Stalin Christopher Dsouza

79710632

Date: 2025-07-22 14:33:00
Score: 6
Natty:
Report link

I did uninstall and then reinstall, but the issue is still the same! It's not working for me for some reason.

Reasons:
  • RegEx Blacklisted phrase (3): not working for me
  • Low length (1):
  • No code block (0.5):
  • Single line (0.5):
  • Low reputation (1):
Posted by: SAGNIK

79710628

Date: 2025-07-22 14:29:59
Score: 1.5
Natty:
Report link

I just realised the namespaces weren't the same. And both of them are used in different documents. This solved my problem.

http://schemas.openxmlformats.org/package/2006/relationships

http://schemas.openxmlformats.org/officeDocument/2006/relationships"

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

79710610

Date: 2025-07-22 14:12:55
Score: 3
Natty:
Report link

As an addendum to Luis Lavieri's answer, and eqrakhattak's comment on said answer (which I can't leave as a comment because I don't have enough reputation yet):

You should be able to get to the virtual devices folder by opening the Device Manager window (Tools -> Device Manager), and then click the three dots to the far right for the virtual device in question, and finally selecting "Show on Disk".

At least that is current in the current Mac version of Android Studio.

Reasons:
  • RegEx Blacklisted phrase (1.5): I don't have enough reputation
  • No code block (0.5):
  • Low reputation (1):
Posted by: user21341907

79710606

Date: 2025-07-22 14:11:54
Score: 3.5
Natty:
Report link

Did I understand correctly that "veneer call" is an additional code that will be in flash? And which will eventually make the transition to RAM?

What is the problem here? Code memory consumption or execution time? In my case, the transition will be one-time, since I am going to erase the flash from the RAM.

Reasons:
  • Low length (0.5):
  • No code block (0.5):
  • Contains question mark (0.5):
  • Self-answer (0.5):
  • Starts with a question (0.5): Did I
  • Low reputation (1):
Posted by: mml

79710602

Date: 2025-07-22 14:06:53
Score: 3
Natty:
Report link

Select Distinct CITY from Station WHERE City LIKE 'A%' OR City Like 'E%' OR City Like 'I%' OR City Like 'O%' OR City Like 'U%' Order by City Asc ;

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

79710597

Date: 2025-07-22 14:03:52
Score: 2
Natty:
Report link

The flash-message must be adjusted in TYPO3 13 or earlier. It works fine within a plugin per convention. If you break the plugin-context, you have to adjust the flash messages instead. You have these options:

  1. Use a shared queue (needs adjustments in source and target plugin)

  2. Use target queue (needs adjustments in source plugin)

  3. Use source queue (needs adjustments in target plugin)

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

79710590

Date: 2025-07-22 13:58:51
Score: 1
Natty:
Report link

The SP SAML metadata are generated on disk so you should define a directory path, not a classpath.

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

79710572

Date: 2025-07-22 13:46:48
Score: 1
Natty:
Report link

Adding the following fragment helped me with both install and deploy

Code:

<configuration>
    <updatePomFile>true</updatePomFile>
</configuration>
Reasons:
  • Low length (1):
  • Has code block (-0.5):
  • Low reputation (0.5):
Posted by: Susanta

79710571

Date: 2025-07-22 13:45:47
Score: 2.5
Natty:
Report link

As of Parcel 2.14,


import myLogo from "../../assets/my_logo.png";

However this works:

<img src={new URL('../../assets/my_logo.png', import.meta.url)}>

See https://parceljs.org/languages/javascript/#url-dependencies

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

79710566

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

This will work if the number is always 16 digits long and you wish to convert to text:

Left(ToText(Truncate({Command.MyField},-2),0),14) + ToText({Command.MyField}-Truncate({Command.MyField},-2),0)

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

79710563

Date: 2025-07-22 13:40:46
Score: 2
Natty:
Report link

I have existing AXIS 1WSDL. Defining <complexType name="ArrayOf_xsd_string"> in WSDL is not working with AXIS 2 when try to generate service classes using wsdl2java. Used below code to define the element. How do I define String Array in AXIS 2 wsdl.

 <xs:element name="name" type="xs:string" nillable="true" minOccurs="0" 
            maxOccurs="unbounded"/>

Reasons:
  • Blacklisted phrase (1): How do I
  • Has code block (-0.5):
  • Unregistered user (0.5):
  • Low reputation (1):
Posted by: AXIS2Dev

79710555

Date: 2025-07-22 13:37:45
Score: 1.5
Natty:
Report link

Thanks for the note about libraries. I'll take that into account in the future.

My linker script has the following sections:

/\* The program code and other data into "FLASH" Rom type memory \*/
  
  .text :
  
  {
  
    . = ALIGN(4);
  
    \*(.text)           /\* .text sections (code) \*/
  
    \*(.text\*)          /\* .text\* sections (code) \*/
  
    \*(.glue_7)         /\* glue arm to thumb code \*/
  
    \*(.glue_7t)        /\* glue thumb to arm code \*/
  
    \*(.eh_frame)
  

  
    KEEP (\*(.init))
  
    KEEP (\*(.fini))
  

  
    . = ALIGN(4);
  
    \_etext = .;        /\* define a global symbols at end of code \*/  
  } \>FLASH  
/\* Initialized data sections into "RAM" Ram type memory \*/  
  .data :  
  {  
    . = ALIGN(4);  
    \_sdata = .;        /\* create a global symbol at data start \*/  
    \*(.data)           /\* .data sections \*/  
    \*(.data\*)          /\* .data\* sections \*/  
    \*(.RamFunc)        /\* .RamFunc sections \*/  
    \*(.RamFunc\*)       /\* .RamFunc\* sections \*/  
  
    . = ALIGN(4);  
    \_edata = .;        /\* define a global symbol at data end \*/  
  
  } \>RAM AT\> FLASH

You wrote to add the file name to section .text, maybe in my case to section .data?
Unfortunately, I am not familiar with the syntax of the linkerscript.
Could you clearly show me what needs to be written to add the file needed_name.o to the needed section.

Thank you.

Reasons:
  • Blacklisted phrase (0.5): Thank you
  • Blacklisted phrase (0.5): Thanks
  • Long answer (-1):
  • Has code block (-0.5):
  • Contains question mark (0.5):
  • Self-answer (0.5):
  • Low reputation (1):
Posted by: mml

79710552

Date: 2025-07-22 13:35:45
Score: 1
Natty:
Report link

You can create a boolean variable like a activeCamera in the camera class

boolean activecamera= false;

then iterate through a for loop to check for the active camera and then change values of the current one to false and then the next one to true.

Reasons:
  • Low length (0.5):
  • Has code block (-0.5):
  • Low reputation (1):
Posted by: Kesava Mohan Ganesh Anirudh Ch

79710545

Date: 2025-07-22 13:30:44
Score: 3.5
Natty:
Report link

Alt+Left jumps back to the previous cursor position.

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

79710535

Date: 2025-07-22 13:23:41
Score: 4
Natty: 4.5
Report link

FOLLOW IT CHANNEL JS, JAVA, PYTHON, HTML ,CSS etc..

https://whatsapp.com/channel/0029VbAXiZn0bIdrcAnkgr1T

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

79710529

Date: 2025-07-22 13:20:40
Score: 1.5
Natty:
Report link

<!-- Meta Pixel Code -->

<script>

!function(f,b,e,v,n,t,s)

{if(f.fbq)return;n=f.fbq=function(){n.callMethod?

n.callMethod.apply(n,arguments):n.queue.push(arguments)};

if(!f._fbq)f._fbq=n;n.push=n;n.loaded=!0;n.version='2.0';

n.queue=[];t=b.createElement(e);t.async=!0;

t.src=v;s=b.getElementsByTagName(e)[0];

s.parentNode.insertBefore(t,s)}(window, document,'script',

'https://connect.facebook.net/en_US/fbevents.js');

fbq('init', '4267499340200920');

fbq('track', 'PageView');

</script>

<noscript><img height="1" width="1" style="display:none"

src="https://www.facebook.com/tr?id=4267499340200920&ev=PageView&noscript=1"

/></noscript>

<!-- End Meta Pixel Code -->

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

79710526

Date: 2025-07-22 13:19:40
Score: 3
Natty:
Report link

I changed

is_official_build = true

to

is_official_build = false

and the error went away.

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

79710518

Date: 2025-07-22 13:10:38
Score: 2
Natty:
Report link

A workaround I used once when working on a WPF with tabs was that I eventually created a 'dummy' tab (it was not visible to the users). Doing this, I no longer ever had a no-tabs situation that was crushing the application.
(DevExpress v22.2.4)

Reasons:
  • Low length (0.5):
  • No code block (0.5):
  • Low reputation (1):
Posted by: Kasia Wł

79710515

Date: 2025-07-22 13:07:37
Score: 1.5
Natty:
Report link

There's a classic issue with publish profiles being ignored (.pubxml), it sometimes happened back in VS2013, it still happens in VS2022, the reason is that Microsoft hates you.

It can be easily fixed by making any arbitrary change to the .pubxml file (like a newline) and saving it.

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

79710513

Date: 2025-07-22 13:06:36
Score: 0.5
Natty:
Report link

After hours of debugging and narrowing down the issues, ended up it was because of vercel.json which unknowingly trying to rewrite all paths...

{
  "rewrites": [
    { "source": "/:path*", "destination": "/" }
  ]
}
Reasons:
  • Low length (0.5):
  • Has code block (-0.5):
  • Self-answer (0.5):
Posted by: unacorn

79710500

Date: 2025-07-22 12:59:34
Score: 3.5
Natty:
Report link

Per a/78397153, github.com/MadLittleMods/postcss-css-variables provides this:

Screenshot

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

79710498

Date: 2025-07-22 12:58:34
Score: 0.5
Natty:
Report link

I had the same question today. Regarding to the MacOS difference, those thread won't show up in ps or htop, but you can see them using lldb or sample.

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

79710492

Date: 2025-07-22 12:55:33
Score: 5.5
Natty: 4
Report link

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):
  • Low length (2):
  • No code block (0.5):
  • Low reputation (1):
Posted by: Alky527

79710484

Date: 2025-07-22 12:50:31
Score: 1
Natty:
Report link

Please use $set.

await Order.findByIdAndUpdate(
  orderId,
  {
    $set: {
      status: 'Shipped',
      statusUpdatedTime: new Date()
    }
  }
);
Reasons:
  • Low length (1):
  • Has code block (-0.5):
  • Low reputation (0.5):
Posted by: masao

79710476

Date: 2025-07-22 12:44:29
Score: 2
Natty:
Report link

I am not a flutter developer but maybe try to print every equideo in the loop to see at which point null is printed.

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

79710467

Date: 2025-07-22 12:35:27
Score: 2
Natty:
Report link
for d in /data*/PROD/datafile; do echo -n "$d: "; ls $d | wc -l; done
Reasons:
  • Low length (1.5):
  • Has code block (-0.5):
  • Single line (0.5):
  • Low reputation (0.5):
Posted by: Xingxing Gao

79710460

Date: 2025-07-22 12:30:24
Score: 6.5
Natty:
Report link

im new here but i found this article regarding having more than one comctl32.dll
It could be of help.
https://learn.microsoft.com/en-us/windows/win32/controls/common-control-versions

Reasons:
  • Blacklisted phrase (1): this article
  • RegEx Blacklisted phrase (1.5): im new here
  • Probably link only (1):
  • Low length (1):
  • No code block (0.5):
  • Unregistered user (0.5):
  • Low reputation (1):
Posted by: Scarlett

79710459

Date: 2025-07-22 12:29:24
Score: 3
Natty:
Report link

I tried this method, all that happened is the active class got added to each list element upon page load, clicking the list items did change the track, but the active class did not change? Sorry, commented before you added Alternate Solution, which I will try now.

– Grant G

CommentedJul 27, 2017 at 23:35

Reasons:
  • Low length (0.5):
  • No code block (0.5):
  • Contains question mark (0.5):
  • Unregistered user (0.5):
  • Low reputation (1):
Posted by: user31115136

79710456

Date: 2025-07-22 12:28:24
Score: 1.5
Natty:
Report link

For Microsoft.Web/connections resource type there is no assignment of managed identity. I would assume you use this resource type for Azure Logic App (Standard). In such case the managed identity is assigned to the Logic App Standard resource and when you use the connector you specify the authentication and which managed identity is used. Additionally for resource type Microsoft.Web/connections you have to specify kind to v2. Also either parameterValueType should be set to Alternative or parameterValueSet configured. You can find more information with example at ARM template for API connections and managed identities. Note that if it single-authentication or multi-authentication depends on the capabilities of the connector. You can check the capabilities by query the Rest API endpoint behind the value for managedApiId.

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

79710449

Date: 2025-07-22 12:26:23
Score: 2.5
Natty:
Report link

the web content works totally fine when i have an image but what if i also have to display a video in the slides i tried doing so the images appear fine but in case of the video it does not.

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

79710438

Date: 2025-07-22 12:20:22
Score: 0.5
Natty:
Report link

Answer to Question 79709676: How to Assert if the instance is of type, and use the instance casted to the type in the next assertions? You can use an extension method to assert if the instance is of a specific type and cast it to that type for further assertions. Here's an example implementation in C#: Alternatively, you can use the new extension members syntax in C# and .NET to achieve the same result: You can then use this method to assert the type of an instance and cast it to that type for further assertions: Question ID: 79709676 Question URL: How to Assert if the instance is of type, and use the instance casted to the type in the next assertions?

Reasons:
  • Whitelisted phrase (-1.5): You can use
  • Whitelisted phrase (-1.5): you can use
  • Long answer (-0.5):
  • No code block (0.5):
  • Ends in question mark (2):
  • Single line (0.5):
  • Low reputation (1):
Posted by: pooja mishra

79710431

Date: 2025-07-22 12:17:21
Score: 3
Natty:
Report link

in my case (python3.10) it was

  1. remove all *nmap pip packages

  2. pip install python3-nmap

Reasons:
  • Low length (1.5):
  • No code block (0.5):
  • Low reputation (1):
Posted by: Name Surname

79710428

Date: 2025-07-22 12:16:20
Score: 5
Natty: 4
Report link

Any luck with this? I have the same requirement for a standard app. Fields I extended are showing up but the search help is not.

Reasons:
  • Blacklisted phrase (1.5): Any luck
  • Low length (1):
  • No code block (0.5):
  • Contains question mark (0.5):
  • Single line (0.5):
  • Low reputation (1):
Posted by: Jared Zajdel zajde1jc

79710406

Date: 2025-07-22 12:06:16
Score: 7.5
Natty: 5.5
Report link

I’m building a desktop app using React + Electron on Linux. I want to play RTSP and UDP video streams, and I found your library gstreamer-superficial.

It looks great! But I’m not sure how to use it inside my Electron app. Could you please guide me on how to set it up?

Reasons:
  • Blacklisted phrase (1): guide me
  • RegEx Blacklisted phrase (2.5): Could you please guide me
  • RegEx Blacklisted phrase (1): I want
  • Low length (0.5):
  • Has code block (-0.5):
  • Ends in question mark (2):
  • Low reputation (1):
Posted by: Sampath

79710402

Date: 2025-07-22 12:03:15
Score: 0.5
Natty:
Report link

Make sure that the language detected by VSCode for the file you open is indeed Markdown, and not Markdown Components. (The language selector is at the bottom right of the window, in the blue bar.)

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

79710398

Date: 2025-07-22 11:58:14
Score: 3.5
Natty:
Report link

Know someone who can answer? Share a link to this question via email, Twitter, or Facebook.

Your Answer

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

79710389

Date: 2025-07-22 11:48:08
Score: 10
Natty:
Report link

Tell me, did you get anything?

Could you share with me the correct code?

Or at least the correct documentation on how to work with this printer?

Reasons:
  • RegEx Blacklisted phrase (2.5): Could you share
  • RegEx Blacklisted phrase (3): did you get
  • Low length (1):
  • No code block (0.5):
  • Ends in question mark (2):
  • Low reputation (1):
Posted by: Иван Крикунов

79710386

Date: 2025-07-22 11:44:07
Score: 3
Natty:
Report link

There is possibility of number of files and as well as you applying filter so it can take time to sort out list with filter.

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

79710383

Date: 2025-07-22 11:39:06
Score: 2
Natty:
Report link

Could narrow down the issue to SOAP_TMPLEN buffer used in stdsoap2.h file. Increasing value of this buffer solved the issue.

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

79710378

Date: 2025-07-22 11:37:05
Score: 3
Natty:
Report link

Unfortunately, there are no answers provided for this question yet. Please note that this question has not received any answers yet, and the answer count is 0.

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

79710377

Date: 2025-07-22 11:37:05
Score: 8
Natty: 8.5
Report link

Can anybody please provide me Python script to Get Data from GPRS Public Netwrok From Energy meter Secure Apex 150 ?

Reasons:
  • RegEx Blacklisted phrase (2.5): Can anybody please provide me
  • Low length (1):
  • No code block (0.5):
  • Ends in question mark (2):
  • Single line (0.5):
  • Starts with a question (0.5): Can anybody please
  • Low reputation (1):
Posted by: Devansha Shrivastava

79710373

Date: 2025-07-22 11:30:03
Score: 2.5
Natty:
Report link

To disable API access logs:

uvicorn main:app --no-access-log

OR

uvicorn.run("main:app", access_log=False)

https://www.uvicorn.org/settings/#logging

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

79710369

Date: 2025-07-22 11:29:02
Score: 0.5
Natty:
Report link

Yes, this traversal algorithm is correct and will visit all vertices in the connected component of the starting node v. It’s a variation of DFS that marks nodes as visited when they are pushed onto the stack, rather than when they are popped, which avoids pushing the same node multiple times. This makes it more memory-efficient than standard iterative DFS, but it doesn't produce a post-order traversal (which is important for algorithms like topological sort or strongly connected components). Use this approach when you simply need to visit all reachable nodes efficiently without duplicates in the stack. Use standard DFS if you need post-order properties or more control over the traversal order.

Reasons:
  • Long answer (-0.5):
  • Has code block (-0.5):
  • Single line (0.5):
  • Low reputation (1):
Posted by: Sachin Singh

79710367

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

The elegant way to fetch the the latest 10 messages and reserves them in python is:

latest_messages = list(Messages.objects.filter(since=since).order_by('-id')[:10])[::-1]

and the front end will get in ascending order.

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

79710359

Date: 2025-07-22 11:21:00
Score: 2.5
Natty:
Report link

I Just got the answer when creating a next.js project by default favicon located in /app directory what i just needed to do is move it to the /public directory

It was simple but i never thought about that

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

79710356

Date: 2025-07-22 11:17:59
Score: 0.5
Natty:
Report link

Q: "I am trying to append a "string" value to a .rules file in /etc/audit/rules.d, if it does not exist. ... System is RHEL 9.5, but it is supposed to work on all versions down to 7.0. Any suggestions as to how I can achieve this?"

A: I understand that you like to make sure that there is a certain rule within the audit.rules file finally. Therefore the question comes up What is the correct way to generate /etc/audit/audit.rules?.

Since Why are folders for configuration files always named *.d, What does the .d stand for in directory names? and Linux configuration: Understanding *.d directories in /etc, there would be no need for "editing" a config file, or appending a "string" value to an auditd rule file under the .d folder if a certain conditions is met, or even programming at all.

Just make sure that there is a file with the necessary rule if not available, like in example

#! /bin/bash

RULE='-a always,exit -F arch=b64 -S execve -F key=execve'

if [ ! -f /etc/audit/rules.d/rapid7.rules ]; then
    echo "${RULE}" > /etc/audit/rules.d/rapid7.rules
fi

and perform an augenrules --load.

Reasons:
  • Blacklisted phrase (1): I am trying to
  • RegEx Blacklisted phrase (2): Any suggestions
  • Long answer (-0.5):
  • Has code block (-0.5):
  • Contains question mark (0.5):
  • High reputation (-2):
Posted by: U880D

79710344

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

Enable Request + Response Logging

Make sure that you've enabled logging for your Azure OpenAI resource:

Reasons:
  • No code block (0.5):
  • Low reputation (1):
Posted by: dna e-Store deals

79710338

Date: 2025-07-22 11:04:56
Score: 2
Natty:
Report link

You can make the use of PyMuPDF library of python for the extraction of all the text from the document and then make the use of pure heuristics let us say isBold, isEndedWithColon, hasPadding etc. and calculate a heuristic score; whatever the score is let us say if the score is high then that portion of text can be a heading. If the score is low then there is a less chance that it will be heading.

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

79710329

Date: 2025-07-22 10:58:54
Score: 0.5
Natty:
Report link

Changing the port number didn't work for me but these steps did.

  1. Run command prompt as administrator

  2. Run the following command to disable the hypervisor
    bcdedit /set hypervisorlaunchtype off

  3. Restart your machine

  4. Try running XAMPP again and it should work.

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

79710325

Date: 2025-07-22 10:55:52
Score: 9.5
Natty: 5.5
Report link

facing same issue after upgrading to 0.75... your's solved?

Reasons:
  • RegEx Blacklisted phrase (1.5): solved?
  • Low length (1.5):
  • No code block (0.5):
  • Me too answer (2.5): facing same issue
  • Ends in question mark (2):
  • Single line (0.5):
  • Low reputation (1):
Posted by: Arpit Mishra

79710324

Date: 2025-07-22 10:55:52
Score: 0.5
Natty:
Report link

Unfortunately, there is currently no solution for this problem. However, you can bump and follow the thread with the error: https://github.com/microsoft/TypeScript/issues/28064

I already did it.

Reasons:
  • Low length (1):
  • No code block (0.5):
  • High reputation (-1):
Posted by: Mateusz Przybylek

79710322

Date: 2025-07-22 10:54:51
Score: 2.5
Natty:
Report link

After spending hours on this exact problem, here's the answer:
frame2.lift() works, frame2.tkraise() doesn't

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

79710316

Date: 2025-07-22 10:50:50
Score: 1.5
Natty:
Report link

Go to your VSCode File >> Prefrences >> Settings

In the Top Right corner there is 2 icons (Open settings and Split Editor) enter image description here

click on Open Settings icon and add this code

 "emmet.includeLanguages": {
      "twig": "html"
 }
Reasons:
  • Probably link only (1):
  • Low length (0.5):
  • Has code block (-0.5):
  • Low reputation (0.5):
Posted by: ajay_full_stack

79710312

Date: 2025-07-22 10:47:50
Score: 1
Natty:
Report link

Upgrading rxjs from 7.4.x to 7.8.x solved the issue for me.

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

79710310

Date: 2025-07-22 10:46:49
Score: 12.5
Natty: 7.5
Report link

I am also facing the same problem, is there any solution related to this problem?

Reasons:
  • Blacklisted phrase (1.5): any solution
  • Blacklisted phrase (1): is there any
  • RegEx Blacklisted phrase (2): any solution related to this problem?
  • Low length (1.5):
  • No code block (0.5):
  • Me too answer (2.5): I am also facing the same problem
  • Ends in question mark (2):
  • Single line (0.5):
  • Low reputation (1):
Posted by: raunak kumar

79710307

Date: 2025-07-22 10:45:48
Score: 1.5
Natty:
Report link

You can also suppress using following code

/*lint -e{1924} : C-style cast */
ftDCB.ByteSize = FT_BITS_8;
Reasons:
  • Low length (1):
  • Has code block (-0.5):
  • Low reputation (1):
Posted by: Bala gautum

79710302

Date: 2025-07-22 10:43:48
Score: 1.5
Natty:
Report link

As of version 0.1.13 (22 July 2025), one can insert newlines on macOS by pressing Ctrl + J (at least in zsh)

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

79710298

Date: 2025-07-22 10:42:46
Score: 6
Natty: 4
Report link

Could you share your methodology of finding common points between the frame pairs? I am implementing the same approach as you and got stuck in this part.

Reasons:
  • RegEx Blacklisted phrase (2.5): Could you share your
  • Low length (1):
  • No code block (0.5):
  • Contains question mark (0.5):
  • Single line (0.5):
  • Low reputation (1):
Posted by: Lidka

79710293

Date: 2025-07-22 10:40:46
Score: 1
Natty:
Report link

Just do

$('body').tooltip({
    selector: '[data-toggle="tooltip"]'
});

There is no need for adding an additional attribute.

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

79710292

Date: 2025-07-22 10:40:46
Score: 0.5
Natty:
Report link

I needed to pass my serviceAccount.json to Firebase Admin SDK in a serverless environment via an environment variable.

To solve this, I took the following steps:

  1. Copied the contents of serviceAccount.json

  2. Minified it to a single-line JSON string

  3. Set it as the value of the FIREBASE_ADMIN_CREDENTIALS environment variable

Then, I updated my code like this:

import { cert, initializeApp, getApps } from 'firebase-admin/app';
import { getAuth } from 'firebase-admin/auth';

const credsString = process.env.FIREBASE_ADMIN_CREDENTIALS!; 
const serviceAccount = JSON.parse(credsString);

const adminApp = getApps()[0] || initializeApp({
  credential: cert(serviceAccount),
});

export const adminAuth = getAuth(adminApp);

Build Success: This resolved the build-time issue because the cert() function expects a JavaScript object with camelCase keys like privateKey, clientEmail, etc.

⚠️ Runtime Note: It's important that the JSON string in FIREBASE_ADMIN_CREDENTIALS exactly matches the original serviceAccount.json format. Firebase internally maps the snake_case keys to the required camelCase format during cert().

Reasons:
  • Blacklisted phrase (0.5): I need
  • Long answer (-1):
  • Has code block (-0.5):
  • Self-answer (0.5):
  • Low reputation (1):
Posted by: Touseef Ahmed

79710279

Date: 2025-07-22 10:25:41
Score: 6
Natty: 6
Report link

Suppose i used \ as escape character. What will happen when i have \ in search string?

Reasons:
  • Low length (1.5):
  • No code block (0.5):
  • Ends in question mark (2):
  • Unregistered user (0.5):
  • Single line (0.5):
  • Low reputation (1):
Posted by: sahana shetty

79710278

Date: 2025-07-22 10:24:40
Score: 1.5
Natty:
Report link

1. Spring Boot Controller Example (Java)

Suppose you have a Spring Boot controller:

@RestController

@RequestMapping("/api")

public class MyController {

@GetMapping("/greet")

public String greet() {

return "Hello from the controller!";

}

@PostMapping("/submit")

public String submitData(@RequestBody String data) {

return "Received: " + data;

}

}

Reasons:
  • Has code block (-0.5):
  • User mentioned (1): @RestController
  • Low reputation (1):
Posted by: Lelixn

79710274

Date: 2025-07-22 10:21:35
Score: 6
Natty:
Report link

I'm encountering the same issue.
When I try to build and run my app in Visual Studio, I get the following error:

"Could not find SDK 'WindowsMobile, Version=10.0.26100.0'."

I'm developing for HoloLens 2 using Unity 2022.3.25f1.
Everything was working fine before I updated Visual Studio, this problem started right after the update.

Is there a known fix for this?

Reasons:
  • RegEx Blacklisted phrase (1.5): fix for this?
  • RegEx Blacklisted phrase (1): I get the following error
  • No code block (0.5):
  • Ends in question mark (2):
  • Low reputation (1):
Posted by: Farzane Gerami

79710250

Date: 2025-07-22 10:00:30
Score: 1.5
Natty:
Report link

Reading the docs could give you the answer...

migration_thread_pool (Executor | None) – A futures.ThreadPoolExecutor to be used by the Server to execute non-AsyncIO RPC handlers for migration purpose.

So if all your RPC handlers are AsyncIO then no need for the thread pool.

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

79710249

Date: 2025-07-22 10:00:30
Score: 2
Natty:
Report link

For linux:

clock_gettime()

CLOCK_PROCESS_CPUTIME_ID

(since Linux 2.6.12)

This is a clock that measures CPU time consumed by this process (i.e., CPU time consumed by all threads in the process). On Linux, this clock is not settable.

CLOCK_THREAD_CPUTIME_ID

(since Linux 2.6.12)

This is a clock that measures CPU time consumed by this thread. On Linux, this clock is not settable.

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

79710247

Date: 2025-07-22 09:57:29
Score: 1
Natty:
Report link

If the data set is like : "Name of wine", "Year", "Type" then:

library(stringr)
vino<-mutate(vino, name = str_extract(vino$title, ".*?(?=\\b\\d{4}\\b)"))
vino<-mutate(vino, year = str_extract(vino$title, "\\b\\d{4}\\b"))
vino<-mutate(vino, type = str_replace_all(str_extract(vino$title, "(?<=\\b\\d{4}\\b).*"), "\\s*\\([^()]*(\\([^()]*\\)[^()]*)*\\)", ""))

After the type probably there is an info about the manufacturing area???

To extract also this, you could use extraction methods between parentheses...

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

79710246

Date: 2025-07-22 09:57:29
Score: 1.5
Natty:
Report link

Remove the BottomSheetView and render only the ScrollView directly inside the BottomSheet (or use BottomSheetScrollView if you’re using @gorhom/bottom-sheet). This prevents conflicting layout sizing and makes scrolling work properly.

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

79710245

Date: 2025-07-22 09:57:29
Score: 1.5
Natty:
Report link

Worked after disabling Lulu app, which used to manage network usage on the Mac.

Reasons:
  • Low length (1.5):
  • No code block (0.5):
  • Single line (0.5):
  • High reputation (-1):
Posted by: B. Mohammad

79710240

Date: 2025-07-22 09:51:28
Score: 2.5
Natty:
Report link

To me, setting loop=None solved the issue.

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