79720223

Date: 2025-07-30 15:57:04
Score: 4.5
Natty:
Report link

The issue was with device permissions.

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

79720219

Date: 2025-07-30 15:49:58
Score: 7
Natty:
Report link

Existe site que faz isso pra você

Reasons:
  • Blacklisted phrase (3): você
  • Low length (2):
  • No code block (0.5):
  • Single line (0.5):
  • Low reputation (1):
Posted by: Carol Silva

79720182

Date: 2025-07-30 15:24:51
Score: 4.5
Natty:
Report link

As @PeskyPotato pointed out, the info panel says that Event Source Mapping is only available for certain sources,

enter image description here

Which is incompatible with my use case. Looks like I will need to figure out something else.

Reasons:
  • Probably link only (1):
  • Low length (0.5):
  • No code block (0.5):
  • User mentioned (1): @PeskyPotato
  • Self-answer (0.5):
  • Low reputation (1):
Posted by: A-Abe

79720032

Date: 2025-07-30 13:33:22
Score: 5
Natty:
Report link

@Max Los Santos can you plz tell if any possible solution for it

Reasons:
  • Low length (1.5):
  • No code block (0.5):
  • User mentioned (1): @Max
  • Single line (0.5):
  • Looks like a comment (1):
  • Low reputation (0.5):
Posted by: Paresh Bhamare

79720022

Date: 2025-07-30 13:26:16
Score: 8
Natty:
Report link

Are you able to solve it i am getting same errors

Reasons:
  • Blacklisted phrase (1): you able to solve
  • RegEx Blacklisted phrase (1): i am getting same error
  • Low length (1.5):
  • No code block (0.5):
  • Me too answer (2.5): i am getting same error
  • Single line (0.5):
  • Low reputation (1):
Posted by: milind yadav

79719996

Date: 2025-07-30 13:00:08
Score: 4.5
Natty:
Report link

hi!I want to ask if this problem has been solved. I have also encountered this issue.

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

79719957

Date: 2025-07-30 12:31:01
Score: 4.5
Natty: 6
Report link

i need to required Dynamic schema for my website m-source

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

79719915

Date: 2025-07-30 12:02:52
Score: 7.5
Natty:
Report link

Please help me with this issue, I recently publish an other app and ads is showing for this app but not for the two previous app quoted in the main message.

Reasons:
  • Blacklisted phrase (1): help me
  • RegEx Blacklisted phrase (3): Please help me
  • Low length (1):
  • No code block (0.5):
  • Self-answer (0.5):
  • Single line (0.5):
  • Low reputation (1):
Posted by: Elhadj

79719907

Date: 2025-07-30 11:57:50
Score: 11.5
Natty: 7
Report link

Just curious, did you figure out any solution for this?

Reasons:
  • Blacklisted phrase (1.5): any solution
  • RegEx Blacklisted phrase (3): did you figure out any solution
  • RegEx Blacklisted phrase (2): any solution for this?
  • Low length (1.5):
  • No code block (0.5):
  • Ends in question mark (2):
  • Single line (0.5):
  • Low reputation (0.5):
Posted by: Hariharan

79719895

Date: 2025-07-30 11:50:49
Score: 4
Natty:
Report link

Try trouble-shooting or asking ChatGPT.

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

79719882

Date: 2025-07-30 11:39:45
Score: 4
Natty:
Report link

I have this script but it does not map correctly. untill i map it explicitly - Can anyone help me where it is wrong:

Goal - Read the report.json file and map the test case name with name mentioned in zyphr tool and update status as mentioned in report file.

const fs = require('fs');
const axios = require('axios');

// === CONFIGURATION ===
const REPORT_PATH = ''; 
const ZYPHR_API_TOKEN = '';
const ZYPHR_BASE_URL = 'https://api.zephyrscale.smartbear.com/v2/testexecutions'; 
const PROJECT_KEY = ['DFB', 'DFI'];
const TEST_CYCLE_KEY = ['DFB-R2', 'DFI-4'];

// === HEADERS FOR AUTH ===
const zyphrHeaders = {
  Authorization: `Bearer ${ZYPHR_API_TOKEN}`,
  'Content-Type': 'application/json'
};


function readPostmanCollection() {
  const raw = fs.readFileSync(REPORT_PATH, 'utf-8');
  const json = JSON.parse(raw);
  return json.collection.item;
}


function determineStatus(events) {
  if (!events) return 'FAILED';

  const testScript = events.find(e => e.listen === 'test');
  if (!testScript || !testScript.script || !testScript.script.exec) return 'FAILED';

  const containsSuccessCheck = testScript.script.exec.some(line =>
    line.includes('pm.test') && line.includes('Status code is 200')
  );

  return containsSuccessCheck ? 'PASSED' : 'FAILED';
}


async function getTestCaseKeyByName(testName) {
  try {
    const res = await axios.get(`${ZYPHR_BASE_URL}/testcases`, {
      params: {
        projectKey: PROJECT_KEY,
        name: testName
      },
      headers: zyphrHeaders,
proxy: false
    });

    const match = res.data.find(tc => tc.name === testName);
    return match ? match.key : null;
  } catch (error) {
    console.error(`Error fetching test case key for "${testName}":`, error.message);
    return null;
  }
}


async function updateTestExecution(testCaseKey, status) {
  const statusName = status === 'PASSED' ? 'Pass' : 'Fail'; // Map to Zyphr-compatible values

  const payload = {
    projectKey: PROJECT_KEY,
    testCaseKey,
    testCycleKey: TEST_CYCLE_KEY,
    statusName
  };

  try {
    const res = await axios.post(`${ZYPHR_BASE_URL}/testexecutions`, payload, {
      headers: zyphrHeaders
    });
    console.log(`Successfully updated test case [${testCaseKey}] to [${statusName}]`);
  } catch (error) {
    console.error(`Failed to update test execution for ${testCaseKey}:`, error.response?.data || error.message);
  }
}


async function run() {
  const items = readPostmanCollection();

  for (const test of items) {
    const testName = test.name;
    const status = determineStatus(test.event);

    console.log(`\n Processing "${testName}" | Status: ${status}`);

    const testCaseKey = await getTestCaseKeyByName(testName);
    if (!testCaseKey) {
      console.warn(`Test case not found in Zyphr: "${testName}"`);
      continue;
    }

    await updateTestExecution(testCaseKey, status);
  }

  console.log('\n All test cases processed.');
}

run();
Reasons:
  • Blacklisted phrase (1): help me
  • RegEx Blacklisted phrase (3): Can anyone help me
  • Long answer (-1):
  • Has code block (-0.5):
  • Unregistered user (0.5):
  • Low reputation (1):
Posted by: shruti

79719815

Date: 2025-07-30 10:43:31
Score: 4
Natty:
Report link

I know people mostly try to avoid using third-party apps here. However, Elfsight's Google Reviews widget provides an opportunity to pull reviews for a business without a physical address.

Just in case someone is interested, there is a guide on how to adjust that: https://help.elfsight.com/article/1056-google-reviews-how-to-add-reviews-of-a-business-with-no-physical-address

Regards,

Elfsight Team

Reasons:
  • Blacklisted phrase (1): Regards
  • Contains signature (1):
  • Low length (0.5):
  • No code block (0.5):
  • Low reputation (1):
Posted by: Elfsight

79719759

Date: 2025-07-30 10:06:21
Score: 5
Natty:
Report link

There has been a bug that evaluation metrics created by make_genai_metric_from_prompt cannot be used for mlflow.evaluate. A PR (https://github.com/mlflow/mlflow/pull/16960) has been filed to fix the issue, which should be included in the next minor release. Sorry for the inconvenience, and thank you for the report. From now one, we would appreciate it if you could file an issue at https://github.com/mlflow/mlflow/issues when you find an issue. Thank you!

Reasons:
  • Blacklisted phrase (0.5): thank you
  • Blacklisted phrase (0.5): Thank you
  • Blacklisted phrase (1.5): would appreciate
  • No code block (0.5):
  • Unregistered user (0.5):
  • Single line (0.5):
  • Low reputation (1):
Posted by: Tomu Hirata

79719756

Date: 2025-07-30 10:03:19
Score: 4
Natty: 6
Report link

For linux use "" instead " example exclude=TABLE:\""IN ('yourtable')\""

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

79719735

Date: 2025-07-30 09:53:16
Score: 5
Natty:
Report link

is there a way to automate user consent, user consert code is valid for 10min only

Reasons:
  • Blacklisted phrase (1): is there a way
  • Low length (1.5):
  • No code block (0.5):
  • Single line (0.5):
  • Starts with a question (0.5): is there a
  • Low reputation (1):
Posted by: madhu chilukuri

79719720

Date: 2025-07-30 09:39:12
Score: 9
Natty: 5
Report link

how did you solved the issue I am also having exact same issue

Reasons:
  • RegEx Blacklisted phrase (3): did you solved the
  • Low length (1.5):
  • No code block (0.5):
  • Me too answer (2.5): I am also having exact same issue
  • Single line (0.5):
  • Starts with a question (0.5): how did you solve
  • Low reputation (0.5):
Posted by: Tousif

79719715

Date: 2025-07-30 09:38:11
Score: 4
Natty:
Report link

الله الله يا بابا

اسلام مالک مرحبا

کابلِ جان، ای خانه‌ی ما

پُر از نور، پُر از صفا

الله الله، صحن مسجد

با صدای نرمِ مؤذّن‌

صبحِ جمعه، آب وضو

روی دست پدر، پر از سخن

الله الله، نان و قاق

در قفسه، با شیشه‌ی خاک

خواهرم شانه زد گیسو

در دلش بود آرزو پاک

کوچه‌ی پُر خط و خاکی

زیر باران، پُر از سرما

کودکی با کفشِ پاره

می‌کشید دستِ خود با دعا

گلدان‌های پشتِ بام

با گلِ جعفری و سلام

مادرم آب‌شان می‌داد

زیر آن آفتابِ آرام

الله الله، ظهرِ سست

برگ‌ها روی حوضِ پُر از دوست

بوی قورمه از پنجره

می‌رسید از دلِ خانه به پوست

در دلِ شب، بوی دود

قصه‌ها با چراغِ زود

هر کجایش که یاد کردم

دیدم آنجا هنوز بود

الله الله، کوه شاهی

پُر ز آواز و باد و ماهی

می‌دویدیم با دلِ سبک

می‌خندیدیم بی‌گناهی

از قنات و کوزه‌ی گِل

آبِ سرد و لبِ پر از دل

خواهرم داد جرعه‌ای

گفت: «بخور، تا بمانه این پل»

کابلِ زیبا، ای بهشت

در دلت جنگ بود و سرشت

لیک هنوزم صدایت هست

چون نوای سحر، در سرشت

الله الله، ای نگاه

در غریبی همیشه همراه

دوری‌ات زخمِ جانم است

بی‌تو خاموشم و بی‌پناه

سال‌ها رفت و من هنوز

در دلِ خاکِ غربت، سوز

هر کجا رفتم از تو دور

ریشه‌ام بود این‌جا، امروز

الله الله، گدی‌پران

پا می‌دویم بر روی شان

با خنده و ترسِ کودکی

می‌پریم از سنگ تا بان

تشله‌بازی، دست‌ها

می‌چرخید با شور و شَده

شوری که در دل می‌جوشید

در کوچه‌های کهنه‌زده

توپ‌دنده، صدای غژ

می‌خورد به سنگ و حیاطِ رُخ

بچه‌ها می‌دوند دوان دوان

دلشاد با هر پرش و کوک

دنده‌کیلک، بازی‌مان

با پا می‌زدیم ضربه‌زن

دل‌ها پر از امید و شور

در کوچه‌های خاکی و خرد

الله الله، غرسی‌بازی

یک لنگه می‌دویدیم ما

بچه‌ها غلت می‌خوردند

با خنده و شور بی‌پناه

از نانوایی، بوی نان

گرم و تازه، پر از جان

نان‌های داغ و ترد و نرم

زیر دست نانوا با جان

قصاب سر گذر ایستاده

چاقو به کتف زده، هواد

گوشت تازه می‌فروشد

با مشتری خنده‌زاده

ترکاری‌فروش هزارگی

می‌ریزد سبزی و تره‌گی

گوجه، پیاز، بادمجان

با رنگی، شاد، بی‌تکلفی

کاکا کریم دکان‌دار

ماست گاوی، ترش و بار

با لبخندی پر مهر

دوست بچه‌های زار

کاکا ایشان کنار دکان

خربزه‌های قلانی‌اش

خوش‌رنگ، شیرین و تازه

می‌بخشد بوی بهاران

الله الله، کاکا سلامی

او را همه با عشق می‌دیدی

می‌داد قیران، پول فلزی

دل‌ها را با مهربانی می‌دیدی

کودکان شرم و حیا داشتند

لبانشان پر از راز بود

در برابر نگاه‌های او

می‌خندیدند با ساز بود

کاکا دگروال، مردِ زور

کوچه از ترسش وا می‌رفت

بچه‌ها کم به آن طرف‌ها

می‌رفتند که دیده نشوند سخت

کاکا انجنیر مهربان

با کاغدپران در دست‌ها

می‌آموخت به ما بازی‌ها

نوازش می‌کرد با مهربانی‌ها

الله الله، بچه‌ها در کوچه

با خنده و ترس در آغوش

زیر سایه‌ی درختان سبز

بازی می‌کردند با گوش

کاکا سلامی می‌خندید

می‌داد قیران به دست‌های کوچک

بچه‌ها شرمنده، پنهان

می‌رفتند زیر سایه‌های خوش

کاکا دگروال، سخت و جدی

صدای پاهایش می‌آمد

کوچه‌ها تنگ و باریک بود

بچه‌ها کم راه می‌رفتند

کاکا انجنیر، مهربان

با کاغدپران در دست‌ها

می‌آموخت به ما بازی‌ها

نوازش می‌کرد با مهربانی‌ها

الله الله، روزها گذشت

کوچه‌ها هنوز یادگار است

بچه‌های دیروز بزرگ شدند

ولی دل‌ها هنوز در کنار است

الله الله، شبِ مهتاب

کوچه‌ها خاموش، ولی خواب

در دل‌ها روشنای یاد

از روزهای گرم و ناب

کابل، ای سایه‌ی مهر

با دل پر از غم و شکر

تو همیشه بودی خانه

برای هر کودک و پدر

دست‌های کوچکی که رفتند

برگشتند به دل خاک تو

با یاد تو همیشه زنده

با قلبی پر از خاکرو

الله الله، ای وطن

در دوری یا در نزدیکی

عشق تو همیشه مانده

در دل ما، در تپش تپش زنگی

---

🔹 ترجیع‌بند پایانی:

های های های

می‌زنم بوسه بر خاکت، یا بابا

هر چه دیدم، تو را دیدم، یا بابا

کابلِ جان، تویی ما را صدا

باز برگردم به کوچه‌ات، یا بابا

Reasons:
  • Long answer (-1):
  • No code block (0.5):
  • No latin characters (3.5):
  • Low reputation (1):
Posted by: Nusrat Niazi

79719711

Date: 2025-07-30 09:35:10
Score: 4.5
Natty:
Report link

I think this functionality is no more :(
GitLab changed the way it presents Compare revisions view by adding some new features.
Therefore old method for automatic file scroll using #SHA is no more.

I noticed in Gitlab version GitLab Enterprise Edition 18.3.0-pre 9aa8f0e5c6d
You can easily notice whether you have this feature in Code -> Compare revisions view by seeing this file browser. Does anyone has a way around it?
enter image description here

Reasons:
  • Blacklisted phrase (1): :(
  • RegEx Blacklisted phrase (3): Does anyone has a way
  • Has code block (-0.5):
  • Ends in question mark (2):
  • High reputation (-1):
Posted by: krzakov

79719688

Date: 2025-07-30 09:15:04
Score: 4.5
Natty: 4
Report link

pip install --only-binary :all: scrypt

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

79719684

Date: 2025-07-30 09:05:00
Score: 7
Natty: 5
Report link

It may be late (10 years lol), but I was wondering. You said you already had a list of games before using libGDX, so, what did you use before that ?

Reasons:
  • Blacklisted phrase (2): was wondering
  • Low length (1):
  • No code block (0.5):
  • Ends in question mark (2):
  • Single line (0.5):
  • Low reputation (1):
Posted by: Nathan MICONI

79719600

Date: 2025-07-30 07:39:38
Score: 5.5
Natty:
Report link

Thank you for sharing your feedback.
We encourage you to have a look at our articles on how to better configure guidelines for Junie.

Please refer to the YouTrack article about the code 400 issue. Regarding the issue with the controllers, it is known to our team, please upvote and follow the YouTrack ticket on Junie not validating all the controllers for updates regarding this issue. 
Best Regards,
Oleksandr

Reasons:
  • Blacklisted phrase (0.5): Thank you
  • Blacklisted phrase (0.5): Best Regards
  • Blacklisted phrase (1): Regards
  • Blacklisted phrase (0.5): upvote
  • Probably link only (1):
  • Low length (0.5):
  • No code block (0.5):
  • Low reputation (1):
Posted by: Oleksandr Kliushyn

79719594

Date: 2025-07-30 07:35:36
Score: 4.5
Natty: 4.5
Report link

set(CMAKE_AUTORCC ON) действительно работает!

Оба метода предложенные EL96cpp ниже рабочие.

Это лучшее решение которое я нашел в интернете!

Reasons:
  • Low length (1):
  • No code block (0.5):
  • No latin characters (2):
  • Low reputation (1):
Posted by: Coljoy

79719572

Date: 2025-07-30 07:14:30
Score: 4
Natty:
Report link

@user19685697 I think your question is spot on. You are talking about this right?

//here the function call is not a callback function like: 
//                              onChange={(e)=>updateName(e)}
import React, {useState} from 'react';
 
function MyComponent(){

    const [name, setName] = useState("Robin Hood");

    const updateName = e => setName(e.target.value); //here there is a parameter



    return(
            <>
            <input value={name} onChange={updateName}/> 


            <p>Name: {name}</p>
            </>
    );

}

export default MyComponent
Reasons:
  • Long answer (-0.5):
  • Has code block (-0.5):
  • Ends in question mark (2):
  • User mentioned (1): @user19685697
  • Looks like a comment (1):
  • Low reputation (1):
Posted by: Anjanee Wijewardana

79719549

Date: 2025-07-30 06:53:25
Score: 4.5
Natty:
Report link

Here is another straightforward answer i found about replacing the current layout

https://stackoverflow.com/a/10439207/17342169

Reasons:
  • Blacklisted phrase (1): stackoverflow
  • Probably link only (1):
  • Low length (1.5):
  • No code block (0.5):
  • Low reputation (0.5):
Posted by: Berk Efe Keskin

79719535

Date: 2025-07-30 06:35:20
Score: 5.5
Natty:
Report link

previously VMs being used in your LOADRUNNER test?

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

79719494

Date: 2025-07-30 05:59:10
Score: 7
Natty: 4.5
Report link

The code shared by @Bjorn is not compatible with WooCommerce V10.0.

Anyone care to modify the code ?

It's very useful to bulk update the product category from wordpress admin for specific SKUs.

Thanks in Advance.

Reasons:
  • Blacklisted phrase (0.5): Thanks
  • RegEx Blacklisted phrase (3): Thanks in Advance
  • Low length (0.5):
  • No code block (0.5):
  • Contains question mark (0.5):
  • Looks like a comment (1):
  • Low reputation (1):
Posted by: Maverick_27

79719474

Date: 2025-07-30 05:27:01
Score: 4
Natty: 5.5
Report link

$2y$10$gw07YqhNyQNpwDNRGs3NneAePOjGuTOZOiAr5u4UifdpxSWdxJWIW

Reasons:
  • Low length (1.5):
  • No code block (0.5):
  • Has no white space (0.5):
  • Single line (0.5):
  • Low reputation (1):
Posted by: zidane ferdiansyah

79719435

Date: 2025-07-30 04:29:46
Score: 9.5
Natty: 5
Report link

How were you able to fix this issue? I have this 101 error and cant seem to resolve it.

Reasons:
  • RegEx Blacklisted phrase (1.5): fix this issue?
  • RegEx Blacklisted phrase (3): were you able
  • Low length (1.5):
  • No code block (0.5):
  • Contains question mark (0.5):
  • Unregistered user (0.5):
  • Single line (0.5):
  • Starts with a question (0.5): How were you
  • Low reputation (1):
Posted by: Michael_Khor

79719403

Date: 2025-07-30 03:19:31
Score: 8.5
Natty:
Report link

I have the same problem but can't fix it

Đèn Led Paragon    Đèn led Philips  Đèn led MPE  Đèn led Duhal

Reasons:
  • Blacklisted phrase (1): I have the same problem
  • Probably link only (1):
  • Contains signature (1):
  • Low length (1.5):
  • No code block (0.5):
  • Me too answer (2.5): I have the same problem
  • Low reputation (1):
Posted by: MPE

79719398

Date: 2025-07-30 03:07:28
Score: 4
Natty:
Report link

Go to manage extensions, and then enable Allow User Scripts option

enter image description here

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

79719373

Date: 2025-07-30 02:17:17
Score: 4
Natty:
Report link

https://discuss.gradle.org/t/setting-jar-priority-in-android-application-plugin/49427/6

you can reset classpath before javacompiler tasks

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

79719348

Date: 2025-07-30 01:21:02
Score: 7.5
Natty:
Report link

עו"ד אילן שרקון. עו"ד שחר בן עמי. עו"ד עידן אשר.

תביעה, מכרות מעילות מרמה וגניבה מלקוחות עוה"ד אילן שרקון אופיר פוקס שחר בן עמי איתן הברמן אופיר פוקס שרקון, בן עמי, אשר ושות' cbalaw.co.il | PDF

https://www.scribd.com/document/890578161/%D7%AA%D7%91%D7%99%D7%A2%D7%94-%D7%9E%D7%9B%D7%A8%D7%95%D7%AA-%D7%9E%D7%A2%D7%99%D7%9C%D7%95%D7%AA-%D7%9E%D7%A8%D7%9E%D7%94-%D7%95%D7%92%D7%A0%D7%99%D7%91%D7%94-%D7%9E%D7%9C%D7%A7%D7%95%D7%97%D7%95%D7%AA-%D7%A2%D7%95%D7%94-%D7%93-%D7%90%D7%99%D7%9C%D7%9F-%D7%A9%D7%A8%D7%A7%D7%95%D7%9F-%D7%90%D7%95%D7%A4%D7%99%D7%A8-%D7%A4%D7%95%D7%A7%D7%A1-%D7%A9%D7%97%D7%A8-%D7%91%D7%9F-%D7%A2%D7%9E%D7%99-%D7%90%D7%99%D7%AA%D7%9F-%D7%94%D7%91%D7%A8%D7%9E%D7%9F-%D7%90%D7%95%D7%A4%D7%99%D7%A8-%D7%A4%D7%95%D7%A7%D7%A1-%D7%A9%D7%A8%D7%A7%D7%95%D7%9F-%D7%91%D7%9F-%D7%A2%D7%9E%D7%99-%D7%90%D7%A9%D7%A8-%D7%95%D7%A9%D7%95%D7%AA-cbalaw-co-il

Reasons:
  • Probably link only (1):
  • Low length (1.5):
  • No code block (0.5):
  • Unregistered user (0.5):
  • No latin characters (3):
  • Low reputation (1):
Posted by: okjhgf

79719337

Date: 2025-07-30 00:50:56
Score: 4
Natty: 4.5
Report link

DI is not fully supported on Logic apps.

Here is MS's answer: https://learn.microsoft.com/en-us/answers/questions/2121956/how-to-setup-di-in-custom-code-with-azure-logic-ap

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

79719320

Date: 2025-07-29 23:59:42
Score: 6.5
Natty:
Report link

Did you ever have to post a Payload to ERCOT MIS?
If so, how would you do this with Zeep and the request_data dictionary for retrieving notification messages?I've tried to follow the documentation in this area, I try every combo.
I just want to retrieve ResParameterSetNotifications - get notifications for the past 30m for GEN bidType

Reasons:
  • Blacklisted phrase (1): how would you
  • RegEx Blacklisted phrase (3): Did you ever
  • No code block (0.5):
  • Contains question mark (0.5):
  • Starts with a question (0.5): Did you
  • Low reputation (1):
Posted by: Peter Friedland

79719319

Date: 2025-07-29 23:59:42
Score: 4
Natty:
Report link

Nothing works for me. That code doesn't work. I cannot get adsense working again!

Reasons:
  • Blacklisted phrase (0.5): I cannot
  • Low length (1.5):
  • No code block (0.5):
  • Single line (0.5):
  • Low reputation (1):
Posted by: Carlos

79719313

Date: 2025-07-29 23:47:39
Score: 4.5
Natty: 7
Report link

Where can we see that OSX has blocked the VMWare? The screenshot you display doesn't show that. Neither my access to such screen when I got the same issue. I thought that by unlocking the access such message would appear, but it didn't. I also thought that by allowing that all apps from identified developers could make changes could solve the problem, but it didn't. Unless that OSX doesn't view VMWare as an identified developer, which is strange since I already have it installed in my system.

Please, How can I move out of this situation (to get VMWare back working)?

Reasons:
  • Blacklisted phrase (0.5): How can I
  • Long answer (-0.5):
  • No code block (0.5):
  • Ends in question mark (2):
  • Unregistered user (0.5):
  • Starts with a question (0.5): Where can we
  • Low reputation (1):
Posted by: Mario Santos

79719294

Date: 2025-07-29 22:55:27
Score: 5.5
Natty: 5.5
Report link

From what I can gather it is because the SDK gets a data plane token instead of a control token. Now, how to make the SDK use a control token when performing these tasks ... ?

Reasons:
  • 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: rent

79719269

Date: 2025-07-29 22:12:18
Score: 4
Natty:
Report link

enter image description here Had same issue, go to your extension list and search for the github copilot extension delete it totally and reload window

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

79719268

Date: 2025-07-29 22:11:17
Score: 12.5
Natty: 4.5
Report link

I am facing exact same issue, and have setup just like OP. As well tried to change to Claude Sonnet 4, same issue still.
Sameer - were you able solve to this issue?

Reasons:
  • RegEx Blacklisted phrase (1.5): solve to this issue?
  • RegEx Blacklisted phrase (3): were you able
  • RegEx Blacklisted phrase (1): same issue
  • Low length (1):
  • No code block (0.5):
  • Me too answer (2.5): I am facing exact same issue
  • Ends in question mark (2):
  • Low reputation (1):
Posted by: galaxy_beginner

79719203

Date: 2025-07-29 21:02:57
Score: 8.5
Natty: 5.5
Report link

I have the same scenario, can you pls help to post if you have achived?

Reasons:
  • RegEx Blacklisted phrase (3): can you pls help to
  • Low length (1.5):
  • No code block (0.5):
  • Ends in question mark (2):
  • Single line (0.5):
  • Low reputation (1):
Posted by: Nagabandi Neha

79719158

Date: 2025-07-29 19:55:39
Score: 7
Natty: 6.5
Report link

can you please share with us how you did setup tailwind with scss, in my situation when I do the build is taking to much time till it exit the building

Reasons:
  • Blacklisted phrase (1): share with us
  • RegEx Blacklisted phrase (2.5): can you please share
  • Low length (1):
  • No code block (0.5):
  • Single line (0.5):
  • Starts with a question (0.5): can you please share with
  • Low reputation (1):
Posted by: toufik ali bey

79719142

Date: 2025-07-29 19:43:36
Score: 4.5
Natty: 4.5
Report link

any answers? I hva same issue...

Reasons:
  • Low length (2):
  • No code block (0.5):
  • Contains question mark (0.5):
  • Single line (0.5):
  • Low reputation (1):
Posted by: Dima Freger

79719090

Date: 2025-07-29 18:45:22
Score: 6
Natty: 7.5
Report link

Check Out All Information in this blog of content://cz.mobilesoft.appblock.fileprovider/cache/blank.html

Reasons:
  • Blacklisted phrase (1): this blog
  • Probably link only (1):
  • Low length (1.5):
  • No code block (0.5):
  • Unregistered user (0.5):
  • Single line (0.5):
  • Low reputation (1):
Posted by: Umar

79718920

Date: 2025-07-29 16:12:40
Score: 6.5
Natty: 4.5
Report link

Was this ever resolved? I am now having this issue

Reasons:
  • RegEx Blacklisted phrase (1.5): resolved?
  • RegEx Blacklisted phrase (0.5): Was this ever resolved
  • Low length (1.5):
  • No code block (0.5):
  • Contains question mark (0.5):
  • Single line (0.5):
  • Starts with a question (0.5): Was this
  • Low reputation (1):
Posted by: Tom Dambra

79718865

Date: 2025-07-29 15:31:29
Score: 4
Natty: 4.5
Report link

My website Tẩu thuốc lá điếu

My site is getting too much DOM from this plugin

Reasons:
  • Blacklisted phrase (1): this plugin
  • Low length (1.5):
  • No code block (0.5):
  • Low reputation (1):
Posted by: F H

79718800

Date: 2025-07-29 14:47:15
Score: 7
Natty: 5.5
Report link

Did you manage to resolve it. I am having similar use-case.

Reasons:
  • RegEx Blacklisted phrase (3): Did you manage to resolve it
  • Low length (1.5):
  • No code block (0.5):
  • Single line (0.5):
  • Starts with a question (0.5): Did you
  • Low reputation (1):
Posted by: AnuRit

79718752

Date: 2025-07-29 14:14:05
Score: 5
Natty:
Report link

I think my code was correct, but there was some caching in place and the permalinks werent refreshing like they should have. Because it is now finding the taxonomy-blog_tags.php file. If anyone see's anything else though in the above code that could have been better to get this working earlier. please let me know.

Reasons:
  • RegEx Blacklisted phrase (2.5): please let me know
  • No code block (0.5):
  • Self-answer (0.5):
  • Single line (0.5):
  • Low reputation (1):
Posted by: stonewall2185

79718674

Date: 2025-07-29 13:19:49
Score: 4.5
Natty:
Report link

This video explains how to create a custom template library for Elementor.
It covers what you need, how it works, and the step-by-step process to set it up: https://www.youtube.com/watch?v=rkf2aTr8wg0

Reasons:
  • Blacklisted phrase (1): youtube.com
  • Blacklisted phrase (1): This video
  • Low length (1):
  • No code block (0.5):
  • Low reputation (1):
Posted by: Abdur Rahim

79718623

Date: 2025-07-29 12:47:40
Score: 4.5
Natty:
Report link

Tsx node solve my problems with path, and work in live now! Link https://www.npmjs.com/package/tsx

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

79718599

Date: 2025-07-29 12:29:34
Score: 4
Natty:
Report link

Found in a Meta documentation (link below ) that for v20.0+, the Impressions optimization goal has been deprecated for the legacy Post Engagement objective with ON_POST destination type.
https://developers.facebook.com/docs/marketing-api/reference/ad-campaign
enter image description here

Reasons:
  • Blacklisted phrase (1): enter image description here
  • Probably link only (1):
  • Low length (0.5):
  • No code block (0.5):
  • Low reputation (1):
Posted by: user1453993

79718502

Date: 2025-07-29 11:18:14
Score: 4
Natty: 4
Report link

Check this one, I've removed others till I find this:
https://marketplace.visualstudio.com/items?itemName=nick-rudenko.back-n-forth

Example Back and Forward buttons

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

79718493

Date: 2025-07-29 11:08:12
Score: 4
Natty: 4.5
Report link

Can someone pls modify the code below to work with the latest version of Woocommerce V 10.0 ?

/**
 * Use multiple sku's to find WOO products in wp-admin
 * NOTE: Use '|' as a sku delimiter in your search query. Example: '1234|1235|1236'
**/
function woo_multiple_sku_search( $query_vars ) {

    global $typenow;
    global $wpdb;
    global $pagenow;

    if ( 'product' === $typenow && isset( $_GET['s'] ) && 'edit.php' === $pagenow ) {
        $search_term = esc_sql( sanitize_text_field( $_GET['s'] ) );

        if (strpos($search_term, '|') == false) return $query_vars;

        $skus = explode('|',$search_term);

        $meta_query = array(
            'relation' => 'OR'
        );
        if(is_array($skus) && $skus) {
            foreach($skus as $sku) {
                $meta_query[] = array(
                    'key' => '_sku',
                    'value' => $sku,
                    'compare' => '='
                );
            }
        }

        $args = array(
            'posts_per_page'  => -1,
            'post_type'       => 'product',
            'meta_query'      => $meta_query
        );
        $posts = get_posts( $args );

        if ( ! $posts ) return $query_vars;

        foreach($posts as $post){
          $query_vars['post__in'][] = $post->ID;
        }
    }

    return $query_vars;
}
add_filter( 'request', 'woo_multiple_sku_search', 20 );

It's a very useful script to bulk update the 'product category' after searching multiple SKU's from the dashboard admin.

Thanks in Advance.

Reasons:
  • Blacklisted phrase (0.5): Thanks
  • RegEx Blacklisted phrase (3): Thanks in Advance
  • Long answer (-1):
  • Has code block (-0.5):
  • Contains question mark (0.5):
  • Starts with a question (0.5): Can someone
  • Low reputation (1):
Posted by: Maverick_27

79718424

Date: 2025-07-29 10:06:56
Score: 7
Natty: 5.5
Report link

فقط اثنان و ستون و عشرون ج.م لا غير

Reasons:
  • Low length (1.5):
  • No code block (0.5):
  • Single line (0.5):
  • No latin characters (3.5):
  • Low reputation (1):
Posted by: محمد حامد عبد الفتاح أحمد

79718312

Date: 2025-07-29 08:34:31
Score: 11
Natty: 4.5
Report link

I have the same issue, the callback function passed to FB.login triggers immediately and does not wait for the user to interact with the facebook popup and wait for the result either success / cancel. It just cancels immediately, i cannot find a solution for this. Please help

Reasons:
  • Blacklisted phrase (1.5): i cannot find
  • Blacklisted phrase (1): I have the same issue
  • Blacklisted phrase (0.5): i cannot
  • RegEx Blacklisted phrase (3): Please help
  • Low length (0.5):
  • No code block (0.5):
  • Me too answer (2.5): I have the same issue
  • Single line (0.5):
  • Low reputation (1):
Posted by: Andrei Alexandru

79718251

Date: 2025-07-29 07:31:15
Score: 4
Natty: 5
Report link

Starting from DBR 16.3, the "ALTER COLUMN" clause allows you to alter multiple columns at once. Please check the details here: https://docs.databricks.com/aws/en/sql/language-manual/sql-ref-syntax-ddl-alter-table-manage-column#alter-column-clause

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

79718157

Date: 2025-07-29 05:43:47
Score: 10.5
Natty: 5.5
Report link

i have a similar problem. From one day to another i get following error, while trying to build and release my app via fastlane:

exportArchive Provisioning profile "<myappbundleid>" doesn't support the External Link Account capability.

Looking in the App developer website, it seems, that the existing and valid profile includes this capability. On the other side, inspecting the profile via xcode profile download, there is no hint that this capability is enabled.

Any suggestions?

Thanks, Robert

Reasons:
  • Blacklisted phrase (0.5): Thanks
  • Blacklisted phrase (1): i have a similar problem
  • RegEx Blacklisted phrase (2): Any suggestions?
  • RegEx Blacklisted phrase (1): i get following error
  • No code block (0.5):
  • Me too answer (2.5): i have a similar problem
  • Ends in question mark (2):
  • Low reputation (1):
Posted by: zerobertel

79718094

Date: 2025-07-29 04:11:26
Score: 8.5
Natty: 7
Report link

same issue, can u help me if u found solution, plz.

Reasons:
  • Blacklisted phrase (1): help me
  • RegEx Blacklisted phrase (3): can u help me
  • RegEx Blacklisted phrase (1): same issue
  • Low length (1.5):
  • No code block (0.5):
  • Single line (0.5):
  • Low reputation (1):
Posted by: Newbi

79718055

Date: 2025-07-29 03:01:10
Score: 5
Natty:
Report link

I have similar issue.

ILNodeControlStop("Firewall");

And feedback:

[*] [System]    ILNodeControlStop: Node Firewall does not exist.

CANoe node

Reasons:
  • Blacklisted phrase (1): I have similar
  • Low length (1):
  • Has code block (-0.5):
  • Me too answer (2.5): I have similar issue
  • Low reputation (1):
Posted by: Yilu WANG

79718027

Date: 2025-07-29 01:49:55
Score: 4
Natty:
Report link

You can do it here: tinyurl.com/imagexor

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

79718024

Date: 2025-07-29 01:44:54
Score: 4.5
Natty: 4
Report link

Take a look at qlmodel.tiangolo.com/

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

79717942

Date: 2025-07-28 22:37:18
Score: 4
Natty:
Report link

I never ordered this and I don’t even know what it is. You are billing me $9.99 + tax every week. You charge through my Apple Account and I would like a refund since you started billing me.

Karen A Walen

41&9-376-7758

You can call and get my information or you can credit my Apple Account. Thank you,

Reasons:
  • Blacklisted phrase (0.5): Thank you
  • Contains signature (1):
  • Low length (0.5):
  • No code block (0.5):
  • Unregistered user (0.5):
  • Low reputation (1):
Posted by: Karen A Walen

79717909

Date: 2025-07-28 21:48:06
Score: 4.5
Natty:
Report link

Use Office.FileDialog component.

Reasons:
  • Low length (2):
  • No code block (0.5):
  • Has no white space (0.5):
  • Single line (0.5):
  • Low reputation (1):
Posted by: Glaucimar Faleiro

79717875

Date: 2025-07-28 21:03:56
Score: 4.5
Natty:
Report link

Guillaume's answer was so close that I was able to fill in the missing pieces. In case anyone finds this later, summary changes:

I have it very nearly complete in Updated DB<>Fiddle.

In the last final result, I have Alice's full access and whether it is direct or under a toplevel. But I can't have a HAVING clause to filter only those toplevel = 0. Does anyone know how to do that?

Thank you all.

Reasons:
  • Blacklisted phrase (0.5): Thank you
  • Blacklisted phrase (0.5): I need
  • RegEx Blacklisted phrase (2): Does anyone know
  • Long answer (-1):
  • Has code block (-0.5):
  • Ends in question mark (2):
  • Self-answer (0.5):
  • Low reputation (0.5):
Posted by: user26533539

79717656

Date: 2025-07-28 16:54:57
Score: 7.5
Natty: 7.5
Report link

any solution on this? addIndex is totally useless if you change the sorting. it is not added on 0 position (top row). thanks

Reasons:
  • Blacklisted phrase (0.5): thanks
  • Blacklisted phrase (1.5): any solution
  • RegEx Blacklisted phrase (2): any solution on this?
  • Low length (1):
  • No code block (0.5):
  • Contains question mark (0.5):
  • Single line (0.5):
  • Low reputation (1):
Posted by: arlosmar work

79717605

Date: 2025-07-28 16:07:43
Score: 4
Natty:
Report link

Google refresh tokens can expire for a few different reasons, you can read this documentation for more information: https://developers.google.com/identity/protocols/oauth2#expiration

Reasons:
  • Blacklisted phrase (1): this document
  • Probably link only (1):
  • Low length (1):
  • No code block (0.5):
  • Single line (0.5):
Posted by: user2705223

79717595

Date: 2025-07-28 16:03:41
Score: 10
Natty: 5.5
Report link

have you find the reason behind this issue?

I'm getting the exact same error message, could you please share the resolution if you have

Reasons:
  • Blacklisted phrase (2): have you find
  • RegEx Blacklisted phrase (2.5): could you please share
  • Low length (1):
  • No code block (0.5):
  • Me too answer (2.5): I'm getting the exact same error
  • Contains question mark (0.5):
  • Low reputation (1):
Posted by: Fernando Abel

79717540

Date: 2025-07-28 15:20:26
Score: 7
Natty: 5
Report link

How about of renaming all those tables?

Reasons:
  • Low length (2):
  • No code block (0.5):
  • Ends in question mark (2):
  • Unregistered user (0.5):
  • Single line (0.5):
  • Starts with a question (0.5): How
  • Low reputation (1):
Posted by: Zlobnyfar

79717423

Date: 2025-07-28 13:52:02
Score: 4
Natty: 5
Report link

What about bypassing importing images limits

Reasons:
  • Low length (1.5):
  • No code block (0.5):
  • Single line (0.5):
  • Starts with a question (0.5): What
  • Low reputation (1):
Posted by: SHELL

79717327

Date: 2025-07-28 12:36:41
Score: 4.5
Natty:
Report link

"Solved" by downgrading VS 2022 to Version 17.12.9

from

https://learn.microsoft.com/en-us/visualstudio/releases/2022/release-history#updating-your-installation-to-a-specific-release

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

79717313

Date: 2025-07-28 12:28:37
Score: 7.5
Natty: 4.5
Report link

I'm on Linux and I'm also curious about possible solutions, not just for Isaac, but for any GPU-intensive GUI applications. VGL feels quite slow, xpra is terrible, and options like VNC, noVNC, TurboVNC, etc., don't fit my needs because I don't want a full desktop environment.
Cloud gaming solutions are highly specialized and somewhat encapsulated.

Do you have any updates on this?

Reasons:
  • Blacklisted phrase (1): any updates on
  • RegEx Blacklisted phrase (2.5): Do you have any
  • No code block (0.5):
  • Ends in question mark (2):
  • Unregistered user (0.5):
  • Low reputation (1):
Posted by: randomdev

79717216

Date: 2025-07-28 10:55:13
Score: 4
Natty:
Report link

$('#dropdownId').val("valueToBeSelected");

Reasons:
  • Low length (1.5):
  • No code block (0.5):
  • Has no white space (0.5):
  • Single line (0.5):
  • Low reputation (1):
Posted by: Rushikesh Baravkar

79717128

Date: 2025-07-28 09:45:55
Score: 5.5
Natty:
Report link

In case of production, you won't find the test users section, it disappears, I am facing the exact same issue on production, and I can't seem to find the solution.

Reasons:
  • Low length (1):
  • No code block (0.5):
  • Me too answer (2.5): I am facing the exact same issue
  • Single line (0.5):
  • Low reputation (1):
Posted by: Ramez Shnoudi

79717121

Date: 2025-07-28 09:39:52
Score: 12.5
Natty: 7.5
Report link

H,i,can you give me some guide?

Reasons:
  • Blacklisted phrase (3): give me some
  • RegEx Blacklisted phrase (2.5): can you give me some
  • Low length (2):
  • No code block (0.5):
  • Ends in question mark (2):
  • Single line (0.5):
  • Looks like a comment (1):
  • Low reputation (1):
Posted by: Wang Shuo

79717043

Date: 2025-07-28 08:30:35
Score: 9
Natty: 5
Report link

Interesting. Stumbled into the same issue today. Did you get it running?

Reasons:
  • RegEx Blacklisted phrase (3): Did you get it
  • Low length (1.5):
  • No code block (0.5):
  • Ends in question mark (2):
  • Single line (0.5):
  • Looks like a comment (1):
  • Low reputation (0.5):
Posted by: decades

79717002

Date: 2025-07-28 07:42:24
Score: 5
Natty: 8
Report link

what to do if its an enterprise app , and in that case what should be the redirect URI? I have the homepage where i login to mircosoft and then it should redirect to login , but it throws this error.

Reasons:
  • Blacklisted phrase (1): what to do if
  • Low length (0.5):
  • No code block (0.5):
  • Contains question mark (0.5):
  • Unregistered user (0.5):
  • Single line (0.5):
  • Starts with a question (0.5): what to
  • Low reputation (1):
Posted by: user31160822

79717001

Date: 2025-07-28 07:42:24
Score: 5
Natty:
Report link

I'm a developer on SAP Cloud SDK and It indeed looks like a "missing feature" rather than "by design" decision. Are you interested in this being improved? If so, please let us know expected timeline for prioritization.

Reasons:
  • RegEx Blacklisted phrase (2.5): please let us know
  • Low length (0.5):
  • No code block (0.5):
  • Contains question mark (0.5):
  • Single line (0.5):
  • Low reputation (0.5):
Posted by: Alexander Dümont

79716979

Date: 2025-07-28 07:16:15
Score: 4
Natty: 5.5
Report link

You're absolutely right — IntelliJ's autocomplete (IntelliSense) and refactoring tools are extremely powerful and reliable for navigating and updating variable names, method signatures, class references, and more. Manually searching or editing names often increases the risk of introducing errors, especially in large codebases.

Here’s why using IntelliJ's features is a best practice:

Unless you're doing something IntelliJ can’t infer (like runtime-dependent variable usage), relying on these features is both safer and faster.

Would you like any tips for optimizing IntelliJ settings for even smoother refactoring or navigation?

Reasons:
  • Blacklisted phrase (1): any tips
  • Long answer (-1):
  • No code block (0.5):
  • Ends in question mark (2):
  • Unregistered user (0.5):
  • Low reputation (1):
Posted by: Mathan

79716918

Date: 2025-07-28 05:31:51
Score: 11.5
Natty: 6.5
Report link

enter image description here

Here is the output from the 1st code.
Is it random?
N.B: My hardware is mpu6500 + arduino nano

Can anyone help me out?

Reasons:
  • Blacklisted phrase (1): help me
  • Blacklisted phrase (1): enter image description here
  • RegEx Blacklisted phrase (3): Can anyone help me
  • RegEx Blacklisted phrase (2): help me out
  • Low length (1):
  • No code block (0.5):
  • Ends in question mark (2):
  • Low reputation (1):
Posted by: AMMAR MAHMUD

79716872

Date: 2025-07-28 04:04:32
Score: 4
Natty: 4.5
Report link

I had to create a lib/supabase/server.ts and export a createSupabase function

https://supabase.com/docs/guides/auth/server-side/nextjs

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

79716869

Date: 2025-07-28 03:57:30
Score: 4
Natty:
Report link

i have this problem, and i'm not found any solution for this issue. I've reinstalled it many times, changed the settings many times, nothing works, only a white screen appears.
enter image description here

So I temporarily solved this issue by using the ✅ Neo4J browser repository on GitHub. I can connect to my Neo4J server with this repository. It works the same as the default Neo4J browser. If anyone else has this issue, they can use this method.

Reasons:
  • Blacklisted phrase (1.5): any solution
  • Blacklisted phrase (1): i have this problem
  • No code block (0.5):
  • Low reputation (1):
Posted by: YslamB

79716845

Date: 2025-07-28 03:09:18
Score: 6.5
Natty: 5
Report link

I also want to run BlazorServer in Avalonia to achieve cross-platform functionality. Have you solved this problem?

Reasons:
  • RegEx Blacklisted phrase (1.5): solved this problem?
  • Low length (1):
  • No code block (0.5):
  • Ends in question mark (2):
  • Single line (0.5):
  • Low reputation (1):
Posted by: Wang Shuo

79716747

Date: 2025-07-27 23:03:26
Score: 4
Natty:
Report link

Did you find a solution for this?

For custom Service: 00003970-817c-48df-8db2-476a8134ede0.

#00: Custom Characteristic: (00003971-817c-48df-8db2-476a8134ede0) (Write only)

#01: Response (00003972-817c-48df-8db2-476a8134ede0) (Notify Only)

#02: PICC NOTIFY (00003973-817c-48df-8db2-476a8134ede0) (Notify Only)

If I get a card close to reader I do successfully get a notification

00003973-817c-48df-8db2-476a8134ede0 (2 bytes): hex: 50 02
So subscription seems to be correct

The prob is that no matter what I write over #00 , response back is always the same..

E.g:

BLE: write #00 62 00 00 00 00 00 00 00 00 00
Value changed for 00003972-817c-48df-8db2-476a8134ede0 (19 bytes):
utf8:   U
  ♣S       ♣ Y?
hex:    55 00 00 0A 00 00 05 53 00 00 00 00 00 00 00 05 00 59 AA
BLE: write #00 FF CA 00 00 00
Value changed for 00003972-817c-48df-8db2-476a8134ede0 (19 bytes):
utf8:   U
   S       ♣ \?
hex:    55 00 00 0A 00 00 00 53 00 00 00 00 00 00 00 05 00 5C AA
Reasons:
  • RegEx Blacklisted phrase (3): Did you find a solution
  • Long answer (-0.5):
  • Has code block (-0.5):
  • Contains question mark (0.5):
  • Starts with a question (0.5): Did you find a solution for this
  • Low reputation (1):
Posted by: raul garcia

79716694

Date: 2025-07-27 21:13:02
Score: 4
Natty:
Report link

It seems like the validation data might be getting included in the training process in your PyTorch model. That could explain why it's reaching such high accuracy so quickly. I recommend adding some console print statements to better track which data is being used at each step. Best regards!

Reasons:
  • Blacklisted phrase (0.5): Best regards
  • Blacklisted phrase (1): regards
  • Low length (0.5):
  • No code block (0.5):
  • Single line (0.5):
  • Low reputation (1):
Posted by: Gavino Geldres Pinto

79716669

Date: 2025-07-27 20:23:51
Score: 4
Natty:
Report link

I have since realized that I needed to go into the textbox properties and change the paragraph settings removing extra space from before or after a line. Some fonts also have built in white space above or below the glyphs that preclude them being set very close together.

Regards,
Gary

Reasons:
  • Blacklisted phrase (1): Regards
  • Blacklisted phrase (0.5): I need
  • Low length (0.5):
  • No code block (0.5):
  • Self-answer (0.5):
  • Low reputation (1):
Posted by: Gary VP

79716636

Date: 2025-07-27 19:30:37
Score: 4
Natty:
Report link

---------- Forwarded message ---------
From: <[email protected]>
Date: Mon, Jul 14, 2025 at 7:14 PM
Subject: Re: Bug in MATLAB R2025a MEX: internal subroutines cause segfault [ ref:!00Di00Ha1u.!500UU0SYwr4:ref ]

Dear Customer,

I am writing in reference to your Technical Support Case 07931486 regarding 'Bug in MATLAB R2025a MEX: internal subroutines cause segfault'.

Thank you for bringing this issue to our attention. We have confirmed that this is a bug and have reported it to our development team. I have attached your case to our internal records, so you will be notified by email once a fix is available.

Please note that while this service request will be closed, your case will remain open in our database for our developers to address.

In the meantime, the only available workaround is to use an earlier release or to work on Windows.

If you have any further questions, please let me know.

If you have a new technical support question, please submit a new request here:
http://www.mathworks.com/support/servicerequests/create.html

Sincerely,

MathWorks Technical Support Team

Self-Service: http://www.mathworks.com/support
File Exchange and MATLAB Answers: http://www.mathworks.com/matlabcentral/

Reasons:
  • Blacklisted phrase (0.5): Thank you
  • RegEx Blacklisted phrase (2.5): please let me know
  • Long answer (-1):
  • No code block (0.5):
  • Self-answer (0.5):
  • Filler text (0.5): ----------
  • Filler text (0): ---------
  • Low reputation (0.5):
Posted by: Nuno

79716585

Date: 2025-07-27 17:49:08
Score: 6.5
Natty:
Report link

I did it as posted above.

# Using a callback to trainer because Huggingface does not explicitly log the train accuracy
# Adding a custom callback which calls the evaluate() method with train_dataset at the end of every callback.
class CustomCallback(TrainerCallback):
    
    def __init__(self, trainer) -> None:
        super().__init__()
        self._trainer = trainer
    
    def on_epoch_end(self, args, state, control, **kwargs):
        if control.should_evaluate:
            control_copy = deepcopy(control) #If not deep copy control, the trainer would not evaluate the evaluation dataset
            self._trainer.evaluate(eval_dataset=self._trainer.train_dataset, metric_key_prefix="train")
            return control_copy

def my_compute_metrics2(eval_pred):
    metrics = ["accuracy", "bleu"] 
    metric={} 
    for i in metrics:
       metric[i] = evaluate.load(i)
    preds, labels = eval_pred
    predictions = np.argmax(preds, axis=1)
    metric_results={} # Create dictionary to store Accuracy and Bleu metrics
    for i in metrics:
       metric_results[i]=metric[i].compute(predictions=predictions, references=labels)[i]
    return metric_results


However, when running on Google Colab, the following error " out of GPU memory " occurred. Please see below: 


OutOfMemoryError: CUDA out of memory. Tried to allocate 4.10 GiB. GPU 0 has a total capacity of 14.74 GiB of which 732.12 MiB is free. Process 444503 has 14.02 GiB memory in use. Of the allocated memory 8.97 GiB is allocated by PyTorch, and 4.92 GiB is reserved by PyTorch but unallocated. If reserved but unallocated memory is large try setting PYTORCH_CUDA_ALLOC_CONF=expandable_segments:True to avoid fragmentation. 



How to fix above OutOfMemoryError ? I look forward to hearing from you! 

Thanks in advance!  It is urgent for me to fix it. 
Reasons:
  • Blacklisted phrase (0.5): Thanks
  • RegEx Blacklisted phrase (3): Thanks in advance
  • RegEx Blacklisted phrase (1.5): How to fix above OutOfMemoryError ?
  • RegEx Blacklisted phrase (2): urgent
  • Long answer (-1):
  • Has code block (-0.5):
  • Low reputation (1):
Posted by: Dingjun Chen

79716577

Date: 2025-07-27 17:34:05
Score: 4
Natty:
Report link

hi Just use =IFERROR(SUBTOTAL(9,range),AGGREGATE(9,6,range))

Reasons:
  • Low length (1.5):
  • No code block (0.5):
  • Has no white space (0.5):
  • Single line (0.5):
  • Low reputation (1):
Posted by: harsh pareek

79716564

Date: 2025-07-27 17:20:56
Score: 9
Natty:
Report link

were you ever able to solve this, im having the same problem right now

Reasons:
  • RegEx Blacklisted phrase (3): were you ever
  • Low length (1.5):
  • No code block (0.5):
  • Me too answer (2.5): having the same problem
  • Single line (0.5):
  • Low reputation (1):
Posted by: Brooks Barry

79716516

Date: 2025-07-27 15:58:34
Score: 4.5
Natty: 4.5
Report link

I think I may know the answer to your JEditorPane problem.

To correctly display HTML are you sure you are setting JEditorPane.setContentType("text/html"); ?

Reasons:
  • Low length (1):
  • No code block (0.5):
  • Ends in question mark (2):
  • Low reputation (1):
Posted by: Alex

79716515

Date: 2025-07-27 15:58:33
Score: 4.5
Natty:
Report link

An ExternalPrinter may help. See this example.

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

79716471

Date: 2025-07-27 14:39:13
Score: 4.5
Natty:
Report link

I logged in the next day, and somehow it WORKED! Thanks to everyone who tried to help me.

Reasons:
  • Blacklisted phrase (0.5): Thanks
  • Blacklisted phrase (1): help me
  • Whitelisted phrase (-1): it WORKED
  • Low length (1.5):
  • No code block (0.5):
  • Self-answer (0.5):
  • Single line (0.5):
  • Low reputation (1):
Posted by: Rakib Ahmed

79716463

Date: 2025-07-27 14:27:10
Score: 7
Natty: 9.5
Report link

What if there are no apps are listed in the local network? How do I get the apps in the list?

Reasons:
  • Blacklisted phrase (1): How do I
  • Low length (1):
  • No code block (0.5):
  • Ends in question mark (2):
  • Unregistered user (0.5):
  • Single line (0.5):
  • Starts with a question (0.5): What if the
  • Low reputation (1):
Posted by: user31156829

79716455

Date: 2025-07-27 14:08:04
Score: 9.5
Natty: 6
Report link

how u fix it ?
i have same problem

Reasons:
  • Blacklisted phrase (1): i have same problem
  • RegEx Blacklisted phrase (1.5): fix it ?
  • Low length (2):
  • No code block (0.5):
  • Me too answer (2.5): i have same problem
  • Contains question mark (0.5):
  • Starts with a question (0.5): how
  • Low reputation (1):
Posted by: user22730912

79716417

Date: 2025-07-27 13:03:47
Score: 7
Natty:
Report link

i have the same problem.have no idea why

Reasons:
  • Blacklisted phrase (1): i have the same problem
  • Low length (1.5):
  • No code block (0.5):
  • Me too answer (2.5): i have the same problem
  • Single line (0.5):
  • Low reputation (1):
Posted by: xiaohai lin

79716180

Date: 2025-07-27 06:05:04
Score: 4.5
Natty: 5
Report link

Here is online tool. MarkDown to PDF, Word, HTML. PHPBB

https://youscriptor.com/markdown-converter

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

79716159

Date: 2025-07-27 05:21:54
Score: 4
Natty: 4
Report link

how do i make my website to appear like this:

project topics

https://uniprojectmaterials.com

UNDERGRADUATE RESEARCH PROJECT TOPICS AND MATERIALS IN NIGERIA

on google search results.

Because when i searched up my competitors webistes i see their websites displayed like the above on google. Their website looks like there is a keyword on top and below their domain name as i stated above.

Reasons:
  • Blacklisted phrase (1): how do i
  • Contains signature (1):
  • No code block (0.5):
  • Starts with a question (0.5): how do i
  • Low reputation (1):
Posted by: uniproject

79716147

Date: 2025-07-27 04:56:48
Score: 5
Natty:
Report link

I don't have proguard enabled, I have it like this "minifyEnabled false"; Should I still add that to proguard?

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

79716144

Date: 2025-07-27 04:55:48
Score: 4.5
Natty: 4
Report link

If your using wamp check this URL - https://www.youtube.com/watch?v=uYSQVeaRrDQ

And if its xampp - https://techwithnavi.com/how-to-import-an-sql-file-through-command-line-in-xampp-on-windows/

Reasons:
  • Blacklisted phrase (1): youtube.com
  • Probably link only (1):
  • Low length (1.5):
  • No code block (0.5):
  • Low reputation (0.5):
Posted by: Naveen Gaur

79716106

Date: 2025-07-27 02:25:16
Score: 8
Natty:
Report link

do you have a .toml file for your nixpacks?

Reasons:
  • RegEx Blacklisted phrase (2.5): do you have a
  • Low length (1.5):
  • No code block (0.5):
  • Ends in question mark (2):
  • Single line (0.5):
  • Low reputation (1):
Posted by: Shaz Flicks

79716082

Date: 2025-07-27 01:24:00
Score: 6.5
Natty:
Report link

This issue is fixed and recorded in this video tutorial https://youtu.be/8x8ueT50Wyk?si=j6NspolnnjgBiJtq

Reasons:
  • Blacklisted phrase (1): youtu.be
  • Blacklisted phrase (1): this video
  • Probably link only (1):
  • Low length (1.5):
  • No code block (0.5):
  • Self-answer (0.5):
  • Single line (0.5):
  • Low reputation (0.5):
Posted by: BlockchainGeek