79790089

Date: 2025-10-14 10:44:06
Score: 2.5
Natty:
Report link

/nearby /grant /ban /console /gm /enderchest /donate /prefix /ag /say /mute /kick /kill /kit /advertence

Craft.pe.wed Donations /givemeranksfreemodsholiday30

Reasons:
  • Low length (1):
  • No code block (0.5):
  • Low reputation (1):
Posted by: Josué Derek Quispe

79790087

Date: 2025-10-14 10:39:05
Score: 2
Natty:
Report link

Run you app with

newArchEnabled=false

in gradle.properties

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

79790083

Date: 2025-10-14 10:36:04
Score: 3.5
Natty:
Report link

then dont embed it simple problem solved

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

79790081

Date: 2025-10-14 10:33:03
Score: 1.5
Natty:
Report link

I have a similar questing regarding Vega-lite in Power BI. I want to wrap the x-axis label after each ; but this solution didn't work for me. Even without using the Offset function.

        "labelExpr": "replace(datum.label, /;\\s*/g, '\\n')"

It removes the ; but doesn't wrap.

enter image description here

{
  "$schema": "https://vega.github.io/schema/vega-lite/v5.json",
  "data": {"name": "dataset"},
  "encoding": {
    "x": {
      "field": "Bezeichner",
      "type": "nominal",
      "axis": {
        "title": "",
        "labelAngle": 0,
        "labelAlign": "center",
        "labelBaseline": "middle",
        "labelLineHeight": 12,
        "labelFontSize": 15, 
        "labelPadding": 10,
        "labelLimit": 500,
        "labelExpr": "replace(datum.label, /;\\s*/g, '\\n')"
      }
    }
  },
  "layer": [
    {
      "mark": {"type": "bar", "opacity": 1},
      "encoding": {
        "y": {
          "field": "LCC",
          "type": "quantitative",
          "axis": {"title": "", 
          "titleColor": "#118DFF",
           "orient": "right",
          "labelFontSize": 15,
          "labelFont": "Roboto", 
          "labelPadding": 10,
          "grid": true}
        },
        "xOffset": {"value": 57
      },
        "color": {"value": "#118DFF"},
        "tooltip": [
          {"field": "Bezeichner", "type": "nominal", "title": "Bezeichner"},
          {"field": "LCC", "type": "quantitative", "title": "LCC"},
          {"field": "LCA", "type": "quantitative", "title": "LCA"}
        ]
      }
    },
    {
      "mark": {"type": "bar", "opacity":1},
      "encoding": {
        "y": {
          "field": "LCA",
          "type": "quantitative",
          "axis": {
            "title": "",
            "orient": "left",
            "titleColor": "#AAE574",
            "grid": false,
            "labelFontSize": 15,
            "labelFont": "Roboto",
            "labelPadding": 10
          }
        },
        "xOffset": {"value": 8},
        "color": {"value": "#AAE574"},
        "tooltip": [
          {"field": "Bezeichner", "type": "nominal", "title": "Bezeichner"},
          {"field": "LCC", "type": "quantitative", "title": "LCC"},
          {"field": "LCA", "type": "quantitative", "title": "LCA"}
        ]
      }
    }
  ],
  "resolve": {"scale": {"y": "independent"}},
  "config": {
    "bar": {"size": 50},
    "scale": {
      "bandPaddingInner": 0.845,
      "bandPaddingOuter": 0.5
    
    }
  }
}
Reasons:
  • Blacklisted phrase (1): enter image description here
  • RegEx Blacklisted phrase (1): I want
  • Long answer (-1):
  • Has code block (-0.5):
  • Low reputation (1):
Posted by: Amy

79790072

Date: 2025-10-14 10:25:01
Score: 2
Natty:
Report link

there is an option in the firebase console.
goto firebase console -> authentication -> settings -> Password policy
and tick all the options you want to implement

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

79790071

Date: 2025-10-14 10:23:00
Score: 4.5
Natty:
Report link

This blog post https://babichmorrowc.github.io/post/2019-03-18-alpha-hull/ explains how to do it with this package https://github.com/babichmorrowc/hull2spatial?tab=readme-ov-file. It currently outputs Spatial* class objects, but these can be easily converted to terra 'SpatVector' or to 'sf'.

Reasons:
  • Blacklisted phrase (1): This blog
  • Probably link only (1):
  • Low length (1):
  • No code block (0.5):
  • Single line (0.5):
  • Low reputation (0.5):
Posted by: AMBarbosa

79790050

Date: 2025-10-14 09:55:53
Score: 1
Natty:
Report link

According to JEP-483:

Class paths must contain only JAR files; directories in class paths are not supported because the JVM cannot efficiently check them for consistency.

To be honest, I am not sure if you even get any advantage of faster startup times during development. I might say the extra work of training and putting things together won’t be worth the effort.

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

79790049

Date: 2025-10-14 09:52:53
Score: 2.5
Natty:
Report link

I am facing similar kind of issue, i am trying to establish two way communication between my native c++ plugin and uxp plugin. I have added listeners and senders but it is not working.

I am getting this error -

❌ [UXP-COMM] Failed to register UXP message listener: 1344357988 (0x50214664)

❌ [UXP-COMM] Error details: gPlugInRef=0x11fddd028, UXPMessageHandler=0x37b306550

and similar issue when i try to send message to uxp plugin.

void SendMessageToUXPPanel(const std::string& messageType, const std::string& data) {
    if (!sUxpProcs) {
        LOG_TRACE((0, "❌ [UXP-COMM] UXP suite not available"));
        return;
    }
    
    try {
        PIActionDescriptor desc;
        SPErr err = sPSActionDescriptor->Make(&desc);
        if (err != kSPNoError) {
            LOG_TRACE((0, "❌ [UXP-COMM] Failed to create descriptor"));
            return;
        }
        
        // Set message type and data
        sPSActionDescriptor->PutString(desc, 'type', messageType.c_str());
        sPSActionDescriptor->PutString(desc, 'data', data.c_str());
        sPSActionDescriptor->PutString(desc, 'time', std::to_string(time(NULL)).c_str());
        
        // Send to UXP panel
        const char* UXP_PLUGIN_ID = "Test-v0qxnk";  // From your manifest.json
        err = sUxpProcs->SendUXPMessage(gPlugInRef, UXP_PLUGIN_ID, desc);
        
        if (err == kSPNoError) {
            LOG_TRACE((0, "✅ [UXP-COMM] Message sent to UXP panel: %s", messageType.c_str()));
        } else {
            LOG_TRACE((0, "❌ [UXP-COMM] Failed to send message to UXP panel: %d", err));
        }
        
        // Clean up descriptor
        sPSActionDescriptor->Free(desc);
    }
    catch (...) {
        LOG_TRACE((0, "❌ [UXP-COMM] Exception in SendMessageToUXPPanel"));
    }
}


if (sUxpProcs) {
        LOG_TRACE((0, "🔍 [UXP-COMM] UXP suite acquired, registering message listener..."));
        LOG_TRACE((0, "🔍 [UXP-COMM] gPlugInRef: %p, UXPMessageHandler: %p", gPlugInRef, UXPMessageHandler));
        SPErr err = sUxpProcs->AddUXPMessageListener(gPlugInRef, UXPMessageHandler);
        if (err == kSPNoError) {
            LOG_TRACE((0, "✅ [UXP-COMM] UXP message listener registered successfully"));
        } else {
            LOG_TRACE((0, "❌ [UXP-COMM] Failed to register UXP message listener: %d (0x%x)", err, err));
            LOG_TRACE((0, "❌ [UXP-COMM] Error details: gPlugInRef=%p, UXPMessageHandler=%p", gPlugInRef, UXPMessageHandler));
        }
    } else {
        LOG_TRACE((0, "❌ [UXP-COMM] UXP suite not available for message listener (suiteErr: %d)", suiteErr));
    }

In documentation, we don't have proper information regarding this feature, not sure what to do next.

Reasons:
  • Blacklisted phrase (1): i am trying to
  • Blacklisted phrase (1): I am getting this error
  • RegEx Blacklisted phrase (1): I am getting this error
  • Long answer (-1):
  • Has code block (-0.5):
  • Low reputation (1):
Posted by: Ayush Gupta

79790048

Date: 2025-10-14 09:52:53
Score: 2.5
Natty:
Report link

To handle multiple post-filters in Spring Cloud Gateway, ensure proper filter order using , modify response bodies with in a non-blocking, reactive way, and chain modifications across filters while maintaining performance and thread safety.

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

79790044

Date: 2025-10-14 09:50:52
Score: 1
Natty:
Report link

[ActiveWorkbook.BuiltinDocumentProperties("Creation Date")] is a date type. It needs to be converted to a string. Do it as follows.

Format(ActiveWorkbook.BuiltinDocumentProperties("Creation Date"), "yyyymmdd_hhnnss")

I hope this is helpful.

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

79790043

Date: 2025-10-14 09:49:52
Score: 0.5
Natty:
Report link

You can try dict.fromkeys()

list1 = [1, 2, 3, 4]
list2 = [3, 4, 5, 6]

merged = list(dict.fromkeys(list1 + list2))
print(merged) 


output

[1, 2, 3, 4, 5, 6]
Reasons:
  • Probably link only (1):
  • Low length (1):
  • Has code block (-0.5):
  • High reputation (-1):
Posted by: Bhargav

79790042

Date: 2025-10-14 09:48:51
Score: 3.5
Natty:
Report link

In my case I used the proxy pass of nginx for accessing the opensearch vpc endpoint dashboard from public
This might help:
https://repost.aws/knowledge-center/opensearch-dashboards-vpc-cognito

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

79790041

Date: 2025-10-14 09:47:45
Score: 10 🚩
Natty:
Report link

Did you ever get an answer to this?

Reasons:
  • Blacklisted phrase (1): answer to this?
  • RegEx Blacklisted phrase (3): Did you ever get an answer to this
  • Low length (2):
  • No code block (0.5):
  • Ends in question mark (2):
  • Single line (0.5):
  • Starts with a question (0.5): Did you
  • Low reputation (0.5):
Posted by: p45

79790039

Date: 2025-10-14 09:47:42
Score: 10 🚩
Natty:
Report link

Hi how or where is the title for a screenshot I had taken and downloaded with lighthouse I need for an evidence to send but I dnt seem to be able to find it can anyone help ???

Reasons:
  • Blacklisted phrase (0.5): I need
  • Blacklisted phrase (1): ???
  • RegEx Blacklisted phrase (3): can anyone help
  • Low length (1):
  • No code block (0.5):
  • Ends in question mark (2):
  • Unregistered user (0.5):
  • Single line (0.5):
  • Low reputation (1):
Posted by: S.parchment

79790035

Date: 2025-10-14 09:44:41
Score: 0.5
Natty:
Report link

Try setting nodeLinker to "hoisted" in pnpm-workspace.yaml.

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

79790033

Date: 2025-10-14 09:43:41
Score: 1.5
Natty:
Report link

just do this for full reload

window.location.reload()
Reasons:
  • Low length (1.5):
  • Has code block (-0.5):
  • Low reputation (0.5):
Posted by: Mohammad Nadr

79790028

Date: 2025-10-14 09:39:40
Score: 1.5
Natty:
Report link

the error occurs because TensorFlow 2.10.0 isn’t available as a standard wheel for macOS arm64, so pip can’t find a compatible version for your Python 3.8.13 environment. If you’re on Apple Silicon, you should replace tensorflow==2.10.0 with tensorflow-macos==2.10.0 and add tensorflow-metal for GPU support, while also relaxing numpy, protobuf, and grpcio pins to match TF 2.10’s dependency requirements. If you’re on Intel macOS, you can keep tensorflow==2.10.0 but still need to adjust those dependency pins. Alternatively, the cleanest fix is to upgrade to Python 3.9+ and TensorFlow 2.13 or later, which installs smoothly on macOS and is fully supported by LibRecommender 1.5.1

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

79790023

Date: 2025-10-14 09:34:38
Score: 1.5
Natty:
Report link

I wrote an MSc thesis a long time ago exactly about the question you asked, it is titled "Committed-Choice Programming Languages", you may find it helpful. Download link below:

https://1drv.ms/b/c/987ed5526a078e8f/EY-OB2pS1X4ggJiMEwAAAAABv08vK5GeA6Ci6F8IZ44wlA?e=GqRGM5

I thought Prolog and the 5th Generation Programming Project was dead a long time ago. I am bemused to see interest in this subject.

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

79790021

Date: 2025-10-14 09:32:38
Score: 3
Natty:
Report link

It seems like they offer the option if you do another API call to

Label Recovery

Reasons:
  • Low length (1.5):
  • No code block (0.5):
  • Low reputation (1):
Posted by: Carlos Griñán

79790019

Date: 2025-10-14 09:32:37
Score: 0.5
Natty:
Report link

It is possible to connect, like described here: https://blog.consol.de/software-engineering/ibm-mq-jmstoolbox/

The main parts are:

SET AUTHREC OBJTYPE(QMGR) PRINCIPAL('admin') AUTHADD(DSP, CONNECT, INQ)
SET AUTHREC PROFILE('SYSTEM.ADMIN.COMMAND.QUEUE') OBJTYPE(QUEUE) PRINCIPAL('app') AUTHADD(DSP, PUT, INQ)
SET AUTHREC PROFILE('SYSTEM.DEFAULT.MODEL.QUEUE') OBJTYPE(QUEUE) PRINCIPAL('app') AUTHADD(DSP, GET)
SET AUTHREC OBJTYPE(QMGR) PRINCIPAL('app') AUTHADD(DSP)
* Create a queue
DEFINE QLOCAL('MY.QUEUE.1') REPLACE
* Authorize app user
SET AUTHREC PROFILE('MY.QUEUE.1') OBJTYPE(QUEUE) PRINCIPAL('app') AUTHADD(BROWSE, GET, PUT, INQ)

Then connect with JMSToolBox:

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

79790006

Date: 2025-10-14 09:19:34
Score: 3
Natty:
Report link

For deployment: installing Rollup does not include react and react-dom. Rollup uses its own default React packages, so make sure to account for this in your setup.

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

79790005

Date: 2025-10-14 09:18:33
Score: 3
Natty:
Report link

For responsiveness in Compose, XML, and Kotlin/Java, I recommend this library:

https://github.com/bodenberg/appdimens

Reasons:
  • Low length (1.5):
  • No code block (0.5):
  • Low reputation (1):
Posted by: Jean Carlo da Silva Bodenberg

79790001

Date: 2025-10-14 09:12:32
Score: 2
Natty:
Report link

No response since 11 years. Hope you got the answer at that time.

But for now.

Origin can;t be modified in your frontend code written in React/Angular etc.

But it can be changed via API clients like postman.

Reasons:
  • Low length (0.5):
  • No code block (0.5):
  • Low reputation (1):
Posted by: karna.strikes

79789999

Date: 2025-10-14 09:10:31
Score: 2
Natty:
Report link

Use the "m"-Button on right side. In the appearing maven-Toolbar press the "Execute Maven Goal"-Button and doubleclick the "mvn install"-goal. The maven output will be printed on the left side in "run"-output panel.

Screenshot

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

79789989

Date: 2025-10-14 09:00:29
Score: 3
Natty:
Report link

Never mind. I just realized that this function doesn't need to be written into the component at all, since it doesn't depend on any component state—I can simply move it to the utils file.

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

79789988

Date: 2025-10-14 08:59:29
Score: 2.5
Natty:
Report link

If you want to convert datetime to timestamp and you are in a different timezone than UTC, you might want to look into the function CONVERT_TZ()

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

79789986

Date: 2025-10-14 08:58:28
Score: 3
Natty:
Report link

The only way out?

Change your package name and start a new app listing, like a phoenix reborn from (numeric) ashes.

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

79789973

Date: 2025-10-14 08:38:24
Score: 2.5
Natty:
Report link

Tailwind Cli tool is working for me in v4 or backward to v3 https://tailwindcss.com/docs/installation/tailwind-cli

what code on docker

RUN apt-get update && apt install nodejs npm -y
RUN npm install tailwindcss @tailwindcss/cli
npx @tailwindcss/cli -i ./src/site.css -o ./src/output.css --watch
Reasons:
  • Probably link only (1):
  • Low length (0.5):
  • Has code block (-0.5):
  • Unregistered user (0.5):
  • Low reputation (1):
Posted by: Mostafa Kamal

79789966

Date: 2025-10-14 08:29:21
Score: 2
Natty:
Report link

Never reload. It is easy to reload by key shortcut if needed. Actually this dialog should be reduced in functionality to a notication that other programs are doing stuff to the file. Devs suggest you should use version control if needed

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

79789958

Date: 2025-10-14 08:18:19
Score: 2.5
Natty:
Report link

If you use Gitea:

git push origin test_branch:refs/for/development_branch -o topic="test"

More information.

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

79789957

Date: 2025-10-14 08:16:18
Score: 1.5
Natty:
Report link

If it’s only CSS, did you try applying a transparent cursor to both the html and body elements? Sometimes just targeting body isn’t enough, especially in fullscreen mode:

Reasons:
  • Whitelisted phrase (-2): did you try
  • Low length (1):
  • No code block (0.5):
  • Contains question mark (0.5):
  • Single line (0.5):
  • Low reputation (1):
Posted by: Peshi

79789953

Date: 2025-10-14 08:07:16
Score: 0.5
Natty:
Report link

I did two steps, and it worked:

  1. !pip install -U transformers huggingface_hub
    
  2. Then restart the session. (This is important.)
Reasons:
  • Whitelisted phrase (-1): it worked
  • Low length (1):
  • Has code block (-0.5):
  • Low reputation (1):
Posted by: ANURAG SINGH BHANDARI

79789950

Date: 2025-10-14 08:06:15
Score: 1.5
Natty:
Report link

from fpdf import FPDF

# Crea

header 1 header 2
cell 1 cell 2
cell 3 cell 4

te instance of FPDF class with UTF-8 support using DejaVu font

pdf = FPDF(format='A4')

pdf.add_page()

# Add DejaVu fonts for Unicode support

pdf.add_font('DejaVu', '', '/usr/share/fonts/truetype/dejavu/DejaVuSans.ttf', uni=True)

pdf.add_font('DejaVu', 'B', '/usr/share/fonts/truetype/dejavu/DejaVuSans-Bold.ttf', uni=True)

# Title

pdf.set_font('DejaVu', 'B', 18)

pdf.multi_cell(0, 10, "सच्ची दुनिया और सच्चा इंसान", align='C')

pdf.ln(5)

# Body

pdf.set_font('DejaVu', '', 12)

content = """दुनिया को बदलने से पहले, हमें खुद को समझना सीखना चाहिए।

अक्सर हम सोचते हैं कि दुनिया बुरी है, लोग गलत हैं, किस्मत साथ नहीं देती —

लेकिन सच्चाई यह है कि दुनिया वैसी ही होती है, जैसी हमारी सोच होती है।

अल्बर्ट आइंस्टीन ने कहा था —

“जीवन का असली मूल्य इस बात में है कि हम दूसरों के लिए क्या करते हैं।”

जब हम दूसरों की मदद करते हैं, जब किसी के चेहरे पर मुस्कान लाते हैं,

तो वहीं से हमारी असली सफलता शुरू होती है।

ज्ञान या पैसा बड़ा नहीं होता — बड़ी होती है इंसानियत।

महात्मा गांधी ने भी कहा —

“सत्य और अहिंसा ही सबसे बड़ी ताकत हैं।”

उन्होंने अपने जीवन से सिखाया कि सच्चाई पर टिके रहना कठिन जरूर है,

पर अंत में वही जीतता है।

जो खुद के अंदर की बुराइयों से लड़ता है, वही सच्चा विजेता होता है।

हम सब इस दुनिया को जानना चाहते हैं —

लेकिन असली समझ तब आती है, जब हम अपने मन की दुनिया को पहचानते हैं।

जब हम गुस्से की जगह धैर्य चुनते हैं,

नफरत की जगह प्यार, और डर की जगह विश्वास —

तभी हम दुनिया को वैसा देख पाते हैं, जैसी वो सच में है — सुंदर, सच्ची और अवसरों से भरी।

इसलिए याद रखिए —

दुनिया बदलने की शुरुआत “आप” से होती है।

अगर आप थोड़ा बेहतर इंसान बन जाएं,

तो आपकी वजह से दुनिया भी थोड़ी बेहतर हो जाएगी। 🌞"""

pdf.multi_cell(0, 8, content, align='J')

pdf.ln(10)

# Author name at the bottom right

pdf.set_font('DejaVu', '', 12)

pdf.cell(0, 10, 'लेखक: P.K. Yadav 720', 0, 0, 'R')

# Save PDF

file_path = "/mnt/data/Sacchi_Duniya_aur_Saccha_Insaan.pdf"

pdf.output(file_path)

file_path

Reasons:
  • Long answer (-1):
  • No code block (0.5):
  • No latin characters (1):
  • Low reputation (1):
Posted by: Pujeet kumar

79789949

Date: 2025-10-14 08:05:15
Score: 3
Natty:
Report link

If you are working with RN cli, try to use react-native-startup-splash, this library is built using turbo modules and supports both platforms.

Reasons:
  • Low length (1):
  • No code block (0.5):
  • Single line (0.5):
  • Low reputation (1):
Posted by: Дмитрий Клоков

79789942

Date: 2025-10-14 08:01:13
Score: 3
Natty:
Report link

I found out the following way to solve the issue

__files/search-response-e.json

{{#assign 'page-size'}}20{{/assign~}}
{{#each request.query}}
  {{#if (eq @key 'size')}}
    {{#assign 'page-size}}
      {{this}}
    {{/assign~}}
  {{/if~}}
{{/each~}}

Iterating over the request.query content doesn't include the size property when it's not sent as a query parameter. So it is possible to iterate over all elements in request.query, check if any of the keys matches the parameter {{#if (eq @key 'size')}} and then assign the value replacing the default one if the parameter is present.


It is a solution but it's also very verbose and weird to understand what it's doing at first glance. I would appreciate it if anyone knows a better and cleaner way to solve this.

Reasons:
  • Blacklisted phrase (1): anyone knows
  • Blacklisted phrase (1.5): would appreciate
  • Long answer (-0.5):
  • Has code block (-0.5):
  • Self-answer (0.5):
  • Low reputation (1):
Posted by: Kodex

79789941

Date: 2025-10-14 07:59:13
Score: 3
Natty:
Report link

I'd like to know if there is a way to push an SBOM and then using Dependency track's API by getting the uuid or the url of the SBOM that was pushed automatically ?

Because after pushing the SBOM to my Dependency Track instance, and then asking for:

/api/v1/project/lookup?name=ECU3D06&version=0.0.1

I get the following response:

Access to the specified project is forbidden

probably because this SBOM is not added to my Portfolio Access Control team ... Is there a way to add it to the latter automatically in the last version of Dependency Track ?

Reasons:
  • Blacklisted phrase (1): Is there a way
  • Long answer (-0.5):
  • Has code block (-0.5):
  • Ends in question mark (2):
  • Low reputation (1):
Posted by: Nicolas Fischer

79789938

Date: 2025-10-14 07:54:11
Score: 2.5
Natty:
Report link

This topic is first on google so : official answer from isotope devs : https://github.com/metafizzy/isotope/issues/1216, remove all "transition all" for isotope item as it messes with isotope inner class.

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

79789920

Date: 2025-10-14 07:33:07
Score: 3
Natty:
Report link

Applications can regain continuity and consistency by restoring past configurations, data, and session information from the database.

Reasons:
  • Low length (1):
  • No code block (0.5):
  • Single line (0.5):
  • Low reputation (1):
Posted by: Pauls Creationids Interior Des

79789903

Date: 2025-10-14 07:19:03
Score: 2
Natty:
Report link

In How to control significant digits, ONLY when necessary, in a Thymeleaf template? they find a workaround for the case that it is an integer:

<span th:text="${user.averageScore} % 1 == 0? ${user.averageScore} :${#numbers.formatDecimal(user.averageScore, 0, 2)}"/>
Reasons:
  • Probably link only (1):
  • Low length (0.5):
  • Has code block (-0.5):
  • Low reputation (1):
Posted by: Maximilian Kias

79789886

Date: 2025-10-14 06:53:57
Score: 3.5
Natty:
Report link

Try to use react-native-startup-splash, this library is built using turbo modules and supports both platforms.

Reasons:
  • Low length (1.5):
  • No code block (0.5):
  • Single line (0.5):
  • Low reputation (1):
Posted by: Дмитрий Клоков

79789866

Date: 2025-10-14 06:26:50
Score: 2
Natty:
Report link

best secure platform for mode app download: You can find genuine mod APKs on websites such as ApkPure, APKMirror, and Uptodown. All three of these sites offer a wide selection of mod APKs for various apps and games. Additionally, you can also find mod APKs on XDA Developers, which is a great source for Android-related content.

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

79789865

Date: 2025-10-14 06:23:49
Score: 1.5
Natty:
Report link

Another option is to move your VAT calculation into a global snippet and include it in both product-template.liquid and cart-template.liquid. This ensures the same VAT-inclusive price appears site-wide.

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

79789862

Date: 2025-10-14 06:21:48
Score: 3.5
Natty:
Report link

In which world do you expect a mod app to be secure? It’s like trying to give birth in outer space.

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

79789861

Date: 2025-10-14 06:21:48
Score: 0.5
Natty:
Report link

transformToByteArray internally assumes Node-style buffers. Convert stream to ArrayBuffer safely in Deno using something like:

const byteArray = new Uint8Array(await new Response(response.Body).arrayBuffer());
Reasons:
  • Low length (0.5):
  • Has code block (-0.5):
  • Low reputation (0.5):
Posted by: Uttam Sapkota

79789844

Date: 2025-10-14 05:42:40
Score: 0.5
Natty:
Report link

Instead of using request.query.size directly, you need to access it using the lookup helper on the query parameters map:

{{#assign "page-size"}}
  {{#if (lookup request.query "size")}}
    {{lookup request.query "size"}}
  {{else}}
    20
  {{/if}}
{{/assign}}
Reasons:
  • Low length (0.5):
  • Has code block (-0.5):
  • Low reputation (0.5):
Posted by: Lavi Kumar

79789843

Date: 2025-10-14 05:42:40
Score: 1.5
Natty:
Report link

For Android UI design in Photoshop, it’s best to start with a base canvas size matching the density bucket you’re targeting like mdpi (baseline 160 dpi) for 320x480 pixels. Design your layout there at 72 dpi resolution in RGB mode. Then create scaled versions for hdpi, xhdpi, xxhdpi, etc., by multiplying the base size accordingly (e.g., 1.5x for hdpi). This approach helps keep your design sharp across different screen densities and sizes. Also, follow Material Design guidelines for consistent spacing and typography. Keep your layers organized for easier scaling and export.

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

79789837

Date: 2025-10-14 05:33:37
Score: 3
Natty:
Report link

Go to Build Phases and remove Info.plist if there is one inside "Copy Bundle Resources" as your porject knows this already exist!

enter image description here

Reasons:
  • Probably link only (1):
  • Low length (1):
  • No code block (0.5):
  • Single line (0.5):
Posted by: Shubham Kumar Gupta

79789827

Date: 2025-10-14 05:16:34
Score: 2.5
Natty:
Report link

According to https://www.jidesoft.com/history/index.php#3.7.4 the bug was fixed in this version

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

79789821

Date: 2025-10-14 05:07:32
Score: 0.5
Natty:
Report link

The correct term is a Power User Interface (or sometimes an Expert-Oriented Interface).

These interfaces are optimized for efficiency and speed, not for ease of learning. They assume users are already familiar with the system, allowing fast command entry and minimal visual overhead.

Examples include command-line tools, airline reservation terminals, and advanced editors like Vim or Emacs.

🔹 Note: This is not the same as an Expert System, which refers to an AI system that simulates human expertise in a specific domain.

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

79789818

Date: 2025-10-14 05:00:31
Score: 2
Natty:
Report link

The term you’re looking for is often called a “power user interface” or “expert interface.” These UIs are designed specifically for users who need speed and efficiency, often using shortcuts, commands, or minimal visuals to get things done faster like command-line tools or pro software. It’s different from general user-friendly interfaces meant for beginners.

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

79789814

Date: 2025-10-14 04:46:28
Score: 2
Natty:
Report link

Downgrading pylance worked for me, I downgraded it to "2024.12.1". I suspect this problem is caused by the server version being too old.

Reasons:
  • Whitelisted phrase (-1): worked for me
  • Low length (1):
  • No code block (0.5):
  • Single line (0.5):
  • Low reputation (1):
Posted by: 温折酒

79789809

Date: 2025-10-14 04:28:24
Score: 1
Natty:
Report link
function display_class_category() {
    global $post;
    
    // Make sure we are using the correct post in the loop
    setup_postdata( $post );

    $target_categories = array( 'bread', 'cake', 'brownie' );
    $categories = get_the_category( $post->ID );
    $output = '';

    if ( $categories ) {
        foreach ( $categories as $category ) {
            if ( in_array( $category->slug, $target_categories ) ) {
                $category_link = get_category_link( $category->term_id );
                $output .= '<div class="link-cat">
                    <a href="' . esc_url( $category_link ) . '">' . esc_html( $category->name ) . '</a>
                </div>';
            }
        }
    }

    wp_reset_postdata();
    return $output;
}
add_shortcode( 'class_category', 'display_class_category' );

🧠 Why this works

  1. setup_postdata( $post ) ensures that WordPress functions like has_category() or get_the_category() reference the current post in the loop — not a leftover global value.

  2. No return inside the loop — so you can correctly build $output for each category.

  3. wp_reset_postdata() cleans up after the shortcode so it doesn’t mess with the rest of the loop.


✅ Example usage

<?php while ( have_posts() ) : the_post(); ?>
    <h2><?php the_title(); ?></h2>
    [class_category]
<?php endwhile; ?>

Now each post in your archive should show the correct linked category (bread, cake, or brownie) according to its own category.

Would you like it to show only the first matching category, or all matching ones (if a post has multiple from that list)?

Reasons:
  • Long answer (-1):
  • Has code block (-0.5):
  • Ends in question mark (2):
  • Low reputation (0.5):
Posted by: suman das

79789808

Date: 2025-10-14 04:26:23
Score: 3
Natty:
Report link

I faced the same issue. What I did was: Open Xcode → Settings → Components → Others, then install the required iOS simulators. After the installation, I got the simulator with Rosetta. Now I’m able to build the iOS app and run it on the Rosetta simulator without any issues.
enter image description hereenter image description here

Reasons:
  • Blacklisted phrase (1): enter image description here
  • Low length (0.5):
  • No code block (0.5):
  • Low reputation (1):
Posted by: Vignesh Kumar

79789806

Date: 2025-10-14 04:16:22
Score: 3
Natty:
Report link

I can use iOS 26 device for debugging after changing the flutter stable version to the master version, for complete details you can check here : https://github.com/flutter/flutter/issues/163984

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

79789804

Date: 2025-10-14 04:06:20
Score: 2
Natty:
Report link

Yes! I've been using sa-token-rust, which is a lightweight, high-performance authentication and authorization framework inspired by the popular Java sa-token library.

🎯 Why sa-token-rust?

It provides everything you need in one cohesive framework:

✅ Complete authentication and authorization
✅ Multiple web framework support (Axum, Actix-web, Poem, Rocket, Warp)
✅ JWT with 8 algorithms (HS256/384/512, RS256/384/512, ES256/384)
✅ OAuth2 authorization code flow
✅ WebSocket authentication
✅ Real-time online user management and push notifications
✅ Distributed session for microservices
✅ Event listener system
✅ Security features (Nonce, Refresh Token)
✅ 7 token generation styles
✅ Production-ready with comprehensive tests

🔗 Links

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

79789803

Date: 2025-10-14 04:06:20
Score: 1
Natty:
Report link

You state that you

need to install the source version of terra to use the INLA package (the binary version is not compatible).

That is almost certainly not true. Where did you get that idea?

If I do

install.packages("terra")
install.packages("INLA",repos=c(getOption("repos"),INLA="https://inla.r-inla-download.org/R/stable"), dep=TRUE)

All works as expected.

The reason that this is not working for you is that you are using an ancient version of Rtools and probably also of R.

Reasons:
  • RegEx Blacklisted phrase (3): did you get that
  • Has code block (-0.5):
  • Contains question mark (0.5):
  • High reputation (-2):
Posted by: Robert Hijmans

79789784

Date: 2025-10-14 03:29:11
Score: 2.5
Natty:
Report link

using pysql instead of

mysql+mysqlconnector
Reasons:
  • Low length (1.5):
  • Has code block (-0.5):
  • Unregistered user (0.5):
  • Low reputation (1):
Posted by: user31683605

79789780

Date: 2025-10-14 03:23:09
Score: 3
Natty:
Report link

I got around this by creating a meeting with the e-mail using respond with an event and then adding the event to one note. This way it works even with 5000 and above notes

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

79789777

Date: 2025-10-14 03:13:07
Score: 1
Natty:
Report link

I found that create-next-app installed Tailwind 3.x here in the fall of 2025, and as such, the steps above were helpful to upgrade to Tailwind 4.x. However, that alone was not sufficient.

My ultimate fix was to remove --turboback from this line in package.json:
"dev": "next dev",

Apparently, it skips Tailwind's preprocessing stages and doesn't handle @theme, @layer, or custom directives. And it injects only raw CSS imports.

Reasons:
  • Has code block (-0.5):
  • User mentioned (1): @theme
  • User mentioned (0): @layer
  • Low reputation (0.5):
Posted by: Collierton

79789764

Date: 2025-10-14 02:41:01
Score: 2.5
Natty:
Report link

I have created an iOS app in swiftUI to handle KML/KMZ files. They work swiftly with these files format and have created certain others features which might be useful during field survey. https://apps.apple.com/in/app/we-map/id6751641623

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

79789752

Date: 2025-10-14 02:19:57
Score: 0.5
Natty:
Report link

I found solution work for me. We have to handle inside iframe, not at parent website. The idea is: listen to wheel event of iframe document, if scroll position is top or bottom then preventDefault the wheel event. In my case, only div tag id message_list is overflow-auto, so I base on it to detect whether the scroll position is top or bottom. Hope this would help you all. My app is vue3 btw.

const handleWheel = (e) => {
  try {
    const el = document.getElementById('message_list');
    if (!el) {
      return;
    }
    const delta = e.deltaY;
    const atTop = el.scrollTop === 0;
    const atBottom = el.scrollTop + el.clientHeight >= el.scrollHeight;
    if ((delta < 0 && atTop) || (delta > 0 && atBottom)) {
      e.preventDefault();
    }
  } catch {
    //
  }
};

onMounted(() => {
  document.addEventListener('wheel', handleWheel, {
    passive: false,
  });
});

onMounted(() => {
  document.addEventListener('wheel', handleWheel, {
    passive: false,
  });
});
Reasons:
  • Long answer (-0.5):
  • Has code block (-0.5):
  • Self-answer (0.5):
  • Low reputation (1):
Posted by: Van Minh FPT

79789751

Date: 2025-10-14 02:17:56
Score: 1.5
Natty:
Report link

There are a few bugs in Swift 4.2.1 (2017) with Float80:

example: Float80(2.718281828459045312) truncates to Float64 then stores the inaccurate result in Float80 give the result: $R75: Float80 = 2.7182818284590450908.

Likewise let q:Float80 = Float80(2.718281828459045312) gives the result:q: Float80 = 2.7182818284590450908

The only way to get by that bug is by giving up on the Float80() method altogether: let q:Float80 = 2.718281828459045312 correctly gives the result: q: Float80 = 2.71828182845904531197

Reasons:
  • Long answer (-0.5):
  • No code block (0.5):
  • Unregistered user (0.5):
  • Low reputation (1):
Posted by: Mr Geller

79789750

Date: 2025-10-14 02:00:53
Score: 1
Natty:
Report link

I had an underscore in my user name: user_q and that was making the making the rabbit upset.

Mustn't upset the rabbit

Reasons:
  • Low length (1):
  • Has code block (-0.5):
  • Low reputation (0.5):
Posted by: B-Tron of the Autobots

79789744

Date: 2025-10-14 01:55:51
Score: 3.5
Natty:
Report link

In my case, the issue was actually due to an incorrect keymap selected in the dropdown. You can also search for `Show Context Actions` to see what it is mapped to currently.

enter image description here

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

79789743

Date: 2025-10-14 01:53:50
Score: 3.5
Natty:
Report link

it's nice to meet you. I'm experiencing a similar issue. Have you found a solution yet?

in my case, It seems like the topology refresh is working correctly, but the connectionWatchdog keeps trying to reconnect with the old IP address.

My current settings are as follows:
enablePeriodicRefresh(true)
enableAllAdaptiveRefreshTriggers()
dynamicRefreshSources(true)
autoReconnect(true)

and, I am using DirContextDnsResolver for the dnsResolver

Reasons:
  • RegEx Blacklisted phrase (2.5): Have you found a solution yet
  • Has code block (-0.5):
  • Contains question mark (0.5):
  • Low reputation (1):
Posted by: 하성준

79789730

Date: 2025-10-14 01:01:39
Score: 0.5
Natty:
Report link

Perhaps try specifying which openssl you want to use during configure and make, i.e. to successfully install php from source on my mac I used:

# install missing requirements
brew install re2c libiconv pkg-config

# configure (you can change PATH for a single command without needing to change your ~/.bashrc or ~/.bash_profile)
PATH=/opt/homebrew/Cellar/bison/3.8.2/bin/:/opt/homebrew/opt/libiconv/bin/:/opt/homebrew/bin/:$PATH ./configure --with-openssl

# make the executable, then check you don't have any errors in the installation
PATH=/opt/homebrew/Cellar/bison/3.8.2/bin/:/opt/homebrew/opt/libiconv/bin/:/opt/homebrew/bin/:$PATH make
make test

# if there are no errors, install the software
make install

Does this approach solve your problem?

Reasons:
  • RegEx Blacklisted phrase (1.5): solve your problem?
  • Long answer (-0.5):
  • Has code block (-0.5):
  • Ends in question mark (2):
  • High reputation (-2):
Posted by: jared_mamrot

79789729

Date: 2025-10-14 00:54:38
Score: 3
Natty:
Report link

Environment variables like $POSTGRES_PASSWORD are only processed if the container initialization is running on an empty database directory; otherwise the users and passwords that were previously in the database state are kept, and no new users are created and no passwords are changed. You should clear the cache in the /data directory, I.e. the /data directory on the host; what is mounted on /var/lib/postgresql/data in the container.

PS: Thanks for @David Maze for posting the comment that finally worked as a correct answer! I’m not familiar with the community and can only pay tribute in this way :( If there’re proper ways to cite this, please inform me.

Reasons:
  • Blacklisted phrase (0.5): Thanks
  • Blacklisted phrase (1): :(
  • Long answer (-0.5):
  • Has code block (-0.5):
  • User mentioned (1): @David
  • Self-answer (0.5):
  • Low reputation (1):
Posted by: CikBDysFIn

79789722

Date: 2025-10-14 00:40:35
Score: 1
Natty:
Report link

Try disabling Extensions and seeing of one of them is ruining your day. For me it was Atomineer.

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

79789715

Date: 2025-10-14 00:14:29
Score: 4
Natty:
Report link

I was able to approve tools by using the Agents interface within VS Code as described on this page: https://learn.microsoft.com/en-us/azure/ai-foundry/how-to/develop/vs-code-agents-mcp

Never found a way to approve through the web UI.

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

79789714

Date: 2025-10-14 00:07:28
Score: 1.5
Natty:
Report link

I was unable to use the setup provided by @lightning_missile. Instead I manually wrapped the client like so:

class OpensearchAsyncClient:
    def __init__(self, endpoint, region, access_key, secret_key, session_token):
        self.endpoint = endpoint
        self.signer = AWSV4Signer(
            boto3.Session(
                aws_access_key_id=access_key,
                aws_secret_access_key=secret_key,
                aws_session_token=session_token,
            ).get_credentials(),
            region
        )
        self.session = aiohttp.ClientSession()

    async def make_request(self, method, path, params, body: Dict[str, any], timeout=30):
        url = f"https://{self.endpoint}/{path.lstrip('/')}"
        url_encoded = str(URL(url).with_query(params))
        body_str = json.dumps(body)
        headers = self.signer.sign(
            method,
            url_encoded,
            body_str,
            {'Content-Type': 'application/json'},
        )
        async with self.session.request(
            method, url,
            params=params,
            json=body,
            headers=headers,
            timeout=timeout
        ) as response:
            if response.status != 200:
                res_json = await response.json()
                raise ValueError(f"Unable to make request: {str(response)}: {res_json}")
            response = await response.json()
            return response

Unfortunate because this prevents using opensearch-py directly. Including the answer because it does make use of the constructs provided by it, and there is likely a way to inject an Http client into opensearch-py so that it works but i cannot find a method at the moment

Reasons:
  • Blacklisted phrase (1.5): i cannot find
  • Blacklisted phrase (0.5): i cannot
  • Long answer (-1):
  • Has code block (-0.5):
  • User mentioned (1): @lightning_missile
Posted by: Asad-ullah Khan

79789713

Date: 2025-10-14 00:06:27
Score: 4
Natty:
Report link

I was able to do it by using custom layers on Nivo

https://codesandbox.io/p/sandbox/nivo-line-responsive-chart-forked-49tymy?file=%2Fsrc%2Findex.js%3A76%2C1

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

79789704

Date: 2025-10-13 23:46:22
Score: 4
Natty: 6
Report link

aca el simon dice que anda piola nada que ver lo que decis

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

79789701

Date: 2025-10-13 23:41:21
Score: 3.5
Natty:
Report link

The problem is not the python script. I run the code under two different version of the same IDE, one displays perfectly fine and the newer version is distorted.

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

79789673

Date: 2025-10-13 22:19:06
Score: 3
Natty:
Report link

I think I’ve figured out the reason: the cloud mask function removes many images with clouds, which reduces the amount of available data. The availability also varies across different regions depending on cloud conditions. The code works if we retrieve one image from every two months instead of one.

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

79789668

Date: 2025-10-13 22:05:02
Score: 2
Natty:
Report link

FIGURED IT OUT. indeed, it was the matter of adding the right binary to the correct package manually (it didnt work when i just tried to add it straight to '.', i had to manually add it to casadi package).

this was done by adding the following line to .spec file under Analysis config:
binaries=[('venv/Lib/site-packages/casadi/_casadi.pyd','casadi')]

(.pyd is like a DLL designed for python)
thanks to @furas for pointing this out!

Reasons:
  • Blacklisted phrase (0.5): thanks
  • Has code block (-0.5):
  • User mentioned (1): @furas
  • Low reputation (1):
Posted by: Yahli Gilboa

79789656

Date: 2025-10-13 21:41:58
Score: 1.5
Natty:
Report link

I was having the same issue while using an JDK Alpine image in the Build stage, and solve it by changing it to a regular JDK image, I was able to generate my docker container even with the ${os.detected.classifier} in the POM.

from:

FROM maven:3.9.9-eclipse-temurin-21-alpine AS builder

to:

FROM maven:3.9.9-eclipse-temurin-21 AS builder

the same image that is used in the project repository:
https://github.com/chrisblakely01/java-spring-microservices/blob/main/billing-service/Dockerfile

for anyone interested this is the project course video
https://www.youtube.com/watch?v=tseqdcFfTUY by Chris Blakely,
awesome course.

Reasons:
  • Blacklisted phrase (1): youtube.com
  • Has code block (-0.5):
  • Low reputation (1):
Posted by: Cesar Dario Garcia

79789635

Date: 2025-10-13 21:05:48
Score: 1
Natty:
Report link

How can I update the capacity of a finetuned GPT model on Azure using Python?

The code wasn't working due to a bug on MSFT side. They fixed the bug last week, and as a result updating the capacity of a finetuned GPT model on Azure using Python is now working.

Reasons:
  • Blacklisted phrase (0.5): How can I
  • Low length (0.5):
  • No code block (0.5):
  • Contains question mark (0.5):
  • Self-answer (0.5):
  • Starts with a question (0.5): How can I
  • High reputation (-2):
Posted by: Franck Dernoncourt

79789634

Date: 2025-10-13 21:04:48
Score: 0.5
Natty:
Report link

Sometimes it's just the add-in buttons that don't appear. Try opening PowerPoint online. On the Home ribbon, click the Add-ins button. If your add-in is on the flyout that opens, select it and the buttons should appear.

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

79789626

Date: 2025-10-13 20:51:45
Score: 0.5
Natty:
Report link

When you specify a Content-Type of application/x-www-form-urlencoded, the XMLHttpRequest API is expecting that your post data be formatted just like query parameters. i.e.: ip=val1&ua=val2&country=val3. The following code should post to your script by first encoding the FormData entries into a URLSearchParams instance, then exporting that to a string.

var data = new FormData();
data.append('ip', 'val');
data.append('ua', 'val2');
data.append('country', 'val3');

var xhr = new XMLHttpRequest();
xhr.open('POST', 'visitor.php?type=visitorControl', true);
xhr.setRequestHeader("Content-Type", "application/x-www-form-urlencoded");
var params = new URLSearchParams(data);
xhr.send(params.toString());
Reasons:
  • Long answer (-0.5):
  • Has code block (-0.5):
  • Starts with a question (0.5): When you
  • Low reputation (1):
Posted by: William Merfalen

79789624

Date: 2025-10-13 20:48:45
Score: 2
Natty:
Report link

In addition to what @p-sampath mentioned, when working with Azure infrastructure, think about which layer to make changes in. If you have any infrastructure like Azure Application Gateway, Azure Front Door, or other reverse proxies/load balancers involved, it's likely they are the real and final server to the client. In that case, follow these steps [here](https://learn.microsoft.com/en-us/azure/application-gateway/hsts-http-headers-portal) to have your ApplicationGateway add a rewrite ruleset to inject the strict-transport-security header into the response for the https listener. Otherwise, any changes you make to the front end or the App Service settings directly don't even make it past the gateway to the client.

Reasons:
  • Long answer (-0.5):
  • No code block (0.5):
  • User mentioned (1): @p-sampath
  • Single line (0.5):
  • Low reputation (0.5):
Posted by: JakeMc

79789618

Date: 2025-10-13 20:38:42
Score: 1.5
Natty:
Report link

Finally found a way to exclude .js files from TypeScript checks.

You can add this rule in your settings.json file:

  "js/ts.implicitProjectConfig.checkJs": false
Reasons:
  • Low length (1):
  • Has code block (-0.5):
  • Low reputation (1):
Posted by: Nox

79789611

Date: 2025-10-13 20:18:38
Score: 2
Natty:
Report link

Looking at the examples in the docs, it seems like you should omit the BearerToken in the Route environment type when you attach the middleware.

https://ziohttp.com/reference/aop/handler_aspect/

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

79789600

Date: 2025-10-13 19:58:34
Score: 1
Natty:
Report link

The warning appears in development (where dev keys are correct) but not in production (where dev keys are the actual problem). It only triggers when you're doing things right.

Also, if you make a warning that cannot be suppressed, people will just ignore it. Warnings need to be real, actionable issues—otherwise it's just noise that trains developers to tune out your messages.

Consider detecting the actual problem case (dev keys in production builds) rather than warning during normal development work.

This issue is really bugging me because I like a clean console!

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

79789599

Date: 2025-10-13 19:57:33
Score: 1.5
Natty:
Report link

Install the GraphQL app on your store and run your query. It's likely that you are exceeding the cost limit of the query and need to break it into smaller parts. The response comes back as empty with no error when I run it from Powershell, but in their app, it will actually tell why the query isn't working.

I have never seen an API silently fail like this. This has been maddening.

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

79789585

Date: 2025-10-13 19:39:29
Score: 0.5
Natty:
Report link

I just ran into a similar issue.

Instead of having something like this on your DTO:

#[Assert\Range(min: 0)]
#[Assert\NotNull()]
public float $price = null;

You can explicitly allow integers as well:

#[Assert\Range(min: 0)]
#[Assert\NotNull()]
public float|int|null $price = null;
Reasons:
  • Low length (0.5):
  • Has code block (-0.5):
  • Low reputation (0.5):
Posted by: P. Rathje

79789575

Date: 2025-10-13 19:16:24
Score: 3
Natty:
Report link

Seems like the issue has been resolved in newer versions of React Native Executorch. You can give it a try, and if this won't work for you, please re-open the following issue on GitHub.

Reasons:
  • Low length (1):
  • No code block (0.5):
  • Single line (0.5):
  • Low reputation (1):
Posted by: Mateusz Słuszniak

79789571

Date: 2025-10-13 19:09:23
Score: 0.5
Natty:
Report link

Achieve right-to-left scroll using direction property

<ScrollView horizontal style={{direction: 'rtl'}} contentContainerStyle={{flexDirection: 'row'}}>
    <Item />
    <Item />
    <Item />
</ScrollView>
Reasons:
  • Low length (0.5):
  • Has code block (-0.5):
  • Low reputation (0.5):
Posted by: mmd amin

79789555

Date: 2025-10-13 18:39:16
Score: 0.5
Natty:
Report link

Give this a try:

from curl_cffi import requests

with requests.Session(impersonate="chrome") as session:

    session.verify = False  # Disable SSL verification
    ticker = yf.Ticker(ticker=ticker_symbol, session=session)
Reasons:
  • Low length (0.5):
  • Has code block (-0.5):
  • Low reputation (0.5):
Posted by: Jason V

79789552

Date: 2025-10-13 18:35:15
Score: 3
Natty:
Report link

This functionality has now been built into Positron: https://github.com/posit-dev/positron/pull/9324

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

79789549

Date: 2025-10-13 18:28:13
Score: 2.5
Natty:
Report link

Delete older version files from cache path. Worked for me.

Reasons:
  • Whitelisted phrase (-1): Worked for me
  • Low length (1.5):
  • No code block (0.5):
  • Single line (0.5):
  • Low reputation (1):
Posted by: M. Diana

79789542

Date: 2025-10-13 18:14:10
Score: 1
Natty:
Report link

Adding this as a help to anyone facing the same challenge:

WSO2 Identity Server supports Bcrypt from version 7.1.0 onwards. For IS 7.1.0, the support is provided through the Bcrypt Hash Provider Connector. You can find the configuration steps for this connector here: https://github.com/wso2-extensions/identity-hash-provider-bcrypt/blob/main/README.md.

Once the connector is set up, for this specific use case where the existing Bcrypt-hashed passwords need to be migrated, you can migrate the usernames and their corresponding password hashes directly into the WSO2 Identity Server user store schema using a carefully written database script. This way, users will be able to continue logging in with their existing passwords, and there’s no need to force a password reset flow.

If your migration scenario differs (eg: prompt users to reset their passwords), refer to the official WSO2 documentation for recommended migration approaches: https://is.docs.wso2.com/en/7.1.0/guides/users/migrate-users/

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

79789526

Date: 2025-10-13 17:58:06
Score: 3
Natty:
Report link

🗓️ হাঁস ও কয়েল পাখির ইনকিউবেশন ক্যালেন্ডার

তারিখ দিন কাজের বিবরণ হাঁসের অবস্থা কয়েলের অবস্থা

০৯ অক্টোবর দিন ১ হাঁসের ডিম ইনকিউবেটরে দিন শুরু —

১০–১৯ অক্টোবর দিন ২–১১ ডিম প্রতিদিন ৩–৪ বার ঘোরান, আর্দ্রতা ৫৫–৬০% রাখুন বিকাশ চলমান —

২০ অক্টোবর দিন ১২ (হাঁস) / দিন ১ (কয়েল) কয়েল পাখির ডিম ইনকিউবেটরে দিন বিকাশ চলমান শুরু

২১–২৭ অক্টোবর হাঁস দিন ১৩–১৯ / কয়েল দিন ২–৮ প্রতিদিন ডিম ঘোরান (দু’ধরনেরই) স্বাভাবিক বিকাশ বিকাশ শুরু

২৮ অক্টোবর–২ নভেম্বর হাঁস দিন ২০–২৫ / কয়েল দিন ৯–১৪ ডিম ঘোরানো অব্যাহত রাখুন ভ্রূণ সক্রিয় রক্তনালী গঠন

৩ নভেম্বর হাঁস দিন ২৬ / কয়েল দিন ১৫ কয়েলের জন্য ঘোরানো বন্ধ করুন, আর্দ্রতা ৭০% করুন ফাইনাল পর্যায় শেষ ধাপ

৪–৬ নভেম্বর হাঁস দিন ২৭–২৮ / কয়েল দিন ১৬–১৭ ইনকিউবেটর বন্ধ না করে রাখুন, পানি ট্রে পূর্ণ রাখুন বাচ্চা ফোটার সময় বাচ্চা ফোটার সময়

৬ নভেম্বর ২০২৫ — 🎉 হাঁস ও কয়েল দুটোই ফুটবে 🐣🦆 ফুটবে ফুটবে

Reasons:
  • Long answer (-0.5):
  • No code block (0.5):
  • No latin characters (2):
  • Low reputation (1):
Posted by: Face Book

79789517

Date: 2025-10-13 17:48:03
Score: 1
Natty:
Report link

import javax.cache.event.*;

import javax.cache.Cache;

public class JCachePutTraceListener

implements CacheEntryCreatedListener\<Object, Object\>,

           CacheEntryUpdatedListener\<Object, Object\> {

@Override

public void onCreated(Iterable<CacheEntryEvent<?, ?>> events) throws CacheEntryListenerException {

for (CacheEntryEvent\<?, ?\> e : events) {

  System.out.println("\[JCache\] CREATED key=" + e.getKey());

  new RuntimeException("JCache PUT caller trace").printStackTrace();

}

}

@Override

public void onUpdated(Iterable<CacheEntryEvent<?, ?>> events) throws CacheEntryListenerException {

for (CacheEntryEvent\<?, ?\> e : events) {

  System.out.println("\[JCache\] UPDATED key=" + e.getKey());

  new RuntimeException("JCache PUT caller trace").printStackTrace();

}

}

}

import javax.cache.Cache;
import javax.cache.configuration.MutableCacheEntryListenerConfiguration;
import javax.cache.configuration.FactoryBuilder;

Cache<Object,Object> cache = cacheManager.getCache("yourCache");

MutableCacheEntryListenerConfiguration<Object,Object> cfg =
    new MutableCacheEntryListenerConfiguration<>(
        FactoryBuilder.factoryOf(JCachePutTraceListener.class),
        null,          // no filter
        false,         // old value not required
        true           // **synchronous** => runs on the caller thread
    );

cache.registerCacheEntryListener(cfg);
Reasons:
  • Long answer (-1):
  • Has code block (-0.5):
  • Contains question mark (0.5):
  • User mentioned (1): @Override
  • Low reputation (1):
Posted by: Ashish S

79789506

Date: 2025-10-13 17:39:01
Score: 1.5
Natty:
Report link
from docx import Document
from docx.shared import Pt
from docx.enum.text import WD_ALIGN_PARAGRAPH
from fpdf import FPDF

# Create a Word document for the assignment
doc = Document()

# Title and header section
doc.add_heading('Assignment: Preparing an Effective Job Description for Customer Service Executives', level=1)

doc.add_paragraph("Name: Ramavatar Godara")
doc.add_paragraph("Subject: Human Resource Management")
doc.add_paragraph("College: JECRC University")
doc.add_paragraph("Date: 12-10-2025")

# Situation section
doc.add_heading("Situation:", level=2)
doc.add_paragraph(
    "A fast-growing e-commerce company is hiring new customer service executives. "
    "The management observes that many new employees leave within a few months, stating that "
    "the actual work differs from what they expected during hiring."
)

# Question section
doc.add_heading("Question:", level=2)
doc.add_paragraph(
    "As the HR Manager, how would you prepare a clear and effective Job Description for the customer service executive role "
    "to avoid such mismatches? What key elements would you include in the job description, and why?"
)

# Answer section
doc.add_heading("Answer:", level=2)

doc.add_paragraph(
    "As an HR Manager, preparing a clear and effective job description is essential to ensure that potential candidates have a "
    "realistic understanding of the role. This helps to align expectations, improve employee satisfaction, and reduce early resignations."
)

doc.add_heading("Steps to Prepare a Clear Job Description:", level=3)
steps = [
    "1. Job Analysis: Study the duties of existing executives and consult team leaders.",
    "2. Define the Purpose of the Role: Explain why the role exists and how it contributes to company goals.",
    "3. List of Key Responsibilities: Handle queries, maintain records, and meet performance targets.",
    "4. Required Skills and Qualifications: Communication skills, computer literacy, and calmness under pressure.",
    "5. Work Environment and Schedule: Mention shifts, night duties, or remote work details.",
    "6. Performance Expectations: Define measurable targets and behavioral expectations.",
    "7. Growth Opportunities: Include potential promotions and learning opportunities.",
    "8. Compensation and Benefits: State salary range, incentives, and other perks."
]
for step in steps:
    doc.add_paragraph(step, style='List Number')

# Key elements table
doc.add_heading("Key Elements Included in the Job Description and Why:", level=3)
table = doc.add_table(rows=1, cols=2)
hdr_cells = table.rows[0].cells
hdr_cells[0].text = 'Element'
hdr_cells[1].text = 'Purpose'

elements = [
    ("Job Title & Summary", "Provides a quick understanding of the role."),
    ("Duties & Responsibilities", "Clarifies what the employee will actually do."),
    ("Required Skills", "Ensures candidates assess their own suitability."),
    ("Work Conditions", "Prevents misunderstandings about shifts or work type."),
    ("Performance Metrics", "Sets clear expectations for success."),
    ("Growth & Benefits", "Motivates and retains employees.")
]

for element, purpose in elements:
    row_cells = table.add_row().cells
    row_cells[0].text = element
    row_cells[1].text = purpose

# Conclusion section
doc.add_heading("Conclusion:", level=2)
doc.add_paragraph(
    "A well-structured job description acts as a communication tool between HR and employees. "
    "It ensures that candidates fully understand the nature of their job, leading to better job satisfaction, "
    "reduced turnover, and improved organizational performance."
)

# Save as Word document
word_path = "/mnt/data/HR_Job_Description_Assignment.docx"
doc.save(word_path)

# Convert to PDF (simple typed style since true handwriting fonts require local font files)
pdf_path = "/mnt/data/HR_Job_Description_Assignment.pdf"
pdf = FPDF()
pdf.add_page()
pdf.set_font("Times", size=12)
pdf.multi_cell(0, 10, txt="""
Assignment: Preparing an Effective Job Description for Customer Service Executives

Name: Ramavatar Godara
Subject: Human Resource Management
College: JECRC University
Date: 12-10-2025

Situation:
A fast-growing e-commerce company is hiring new customer service executives. The management observes that many new employees leave within a few months, stating that the actual work differs from what they expected during hiring.

Question:
As the HR Manager, how would you prepare a clear and effective Job Description for the customer service executive role to avoid such mismatches? What key elements would you include in the job description, and why?

Answer:
As an HR Manager, preparing a clear and effective job description is essential to ensure that potential candidates have a realistic understanding of the role. This helps to align expectations, improve employee satisfaction, and reduce early resignations.

Steps to Prepare a Clear Job Description:
1. Job Analysis: Study the duties of existing executives and consult team leaders.
2. Define the Purpose of the Role: Explain why the role exists and how it contributes to company goals.
3. List of Key Responsibilities: Handle queries, maintain records, and meet performance targets.
4. Required Skills and Qualifications: Communication skills, computer literacy, and calmness under pressure.
5. Work Environment and Schedule: Mention shifts, night duties, or remote work details.
6. Performance Expectations: Define measurable targets and behavioral expectations.
7. Growth Opportunities: Include potential promotions and learning opportunities.
8. Compensation and Benefits: State salary range, incentives, and other perks.

Key Elements Included in the Job Description and Why:
- Job Title & Summary: Provides a quick understanding of the role.
- Duties & Responsibilities: Clarifies what the employee will actually do.
- Required Skills: Ensures candidates assess their own suitability.
- Work Conditions: Prevents misunderstandings about shifts or work type.
- Performance Metrics: Sets clear expectations for success.
- Growth & Benefits: Motivates and retains employees.

Conclusion:
A well-structured job description acts as a communication tool between HR and employees. It ensures that candidates fully understand the nature of their job, leading to better job satisfaction, reduced turnover, and improved organizational performance.
""")
pdf.output(pdf_path)

(word_path, pdf_path)
Reasons:
  • Blacklisted phrase (1): how would you
  • Blacklisted phrase (0.5): why?
  • Long answer (-1):
  • Has code block (-0.5):
  • Unregistered user (0.5):
  • Low reputation (1):
Posted by: user31681621

79789503

Date: 2025-10-13 17:30:59
Score: 1.5
Natty:
Report link

Adding onClick events on div's generally not recommended

try to add role="button" on the div which yo want to make as clickable.

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

79789502

Date: 2025-10-13 17:29:59
Score: 0.5
Natty:
Report link
func loginButtonClicked() {
            let loginManager = LoginManager()
            loginManager.logOut()
            loginManager.logIn(permissions: [.email], viewController: nil) { (loginResult) in
                switch loginResult {
                case .success(let grantedPermissions, _, let token):
                    self.returnUserData()
                    print("Success",token,grantedPermissions)
                    break
                case .cancelled:

                    print("Cancel")
                    break
                case .failed(let error):

                    print(error.localizedDescription)
                    break
                }
            }


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

79789498

Date: 2025-10-13 17:21:57
Score: 2
Natty:
Report link

Concurrency: execution of progressive parts of different processes through switching, where only one part can execute at the same time.

Parallelism: execution of progressive parts of different processes through switching, where multiple parts execute at the same time.

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

79789484

Date: 2025-10-13 17:05:52
Score: 0.5
Natty:
Report link

For deploying Medusa v2’s admin panel on Render, you typically need to build the admin frontend separately since it’s a React app that outputs static files like index.html. Render needs to serve these built files, so you should run the build command (usually npm run build in the admin folder) and point Render to the build folder as the static site root. If you’re only deploying the Medusa backend on Render, then yes—you’ll usually deploy the admin frontend separately (for example, on Vercel) to properly serve the React app. Your current repo likely only contains the backend, so having a separate frontend repo and deployment is recommended.

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

79789480

Date: 2025-10-13 17:01:51
Score: 2.5
Natty:
Report link

Thank you @masoudiofficial your hint was enough for me to get to a workable version for my use case, which seems to be responsive too.

  /* Position the tooltip */
  position: fixed; 
  top: 40%; 
  left: 50%; 
  transform: translate(-50%, -5%); 
  z-index: 80;
Reasons:
  • Blacklisted phrase (0.5): Thank you
  • Low length (0.5):
  • Has code block (-0.5):
  • Self-answer (0.5):
  • Looks like a comment (1):
  • Low reputation (0.5):
Posted by: Packwood

79789478

Date: 2025-10-13 16:57:50
Score: 0.5
Natty:
Report link

I had an issue while importing modules with lambda layer.
I was using macos, each time when I wanted a compressed image, I used GUI. It was the culprit in my case. When I changed to CLI, it worked like charm.

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