79721323

Date: 2025-07-31 13:06:46
Score: 0.5
Natty:
Report link

I Figure it out.

The problem was with this lines:

const RAPIDAPI_KEY  = process.env.RAPIDAPI_KEY || functions.config().rapidapi.key;
const RAPIDAPI_HOST = process.env.RAPIDAPI_HOST || functions.config().rapidapi.host;

The command:

function.config()

is no longer available in Google Cloud.

instead, need to using secrets and using it like this:

the cosnsts are inside the exports and not outside like before.

exports.importFixtures = onSchedule(
    {
        schedule: "0 2 * * *",
        timeZone: "Asia/Jerusalem",
        region:   "europe-west1",
        secrets:  ["RAPIDAPI_KEY", "RAPIDAPI_HOST"],
    },
    async (event) => {
      const RAPIDAPI_KEY  = process.env.RAPIDAPI_KEY
      const RAPIDAPI_HOST = process.env.RAPIDAPI_HOST
Reasons:
  • Long answer (-0.5):
  • Has code block (-0.5):
  • Self-answer (0.5):
  • Low reputation (1):
Posted by: Stam Mashu

79721306

Date: 2025-07-31 12:56:42
Score: 3.5
Natty:
Report link

I'm facing the same problem and my workaround is to pass a pre to the slot. So you have to use the component like this:

<myComponent>
  <pre>
    multiple
    lines
  </pre>
</myComponent>

One bonus effect is that formatters like prettier would keep the content of pre untouched. I also made the slot reactive using the following code:

import { useSlots, computed } from "vue";

export function useRawText() {
  const slots = useSlots();
  const raw = computed(() => {
    let text = "";
    let block = false;

    if (slots.default) {
      const slot = slots.default()[0];

      text = String(slot.children);
      block = slot.type == "pre";
    }

    console.debug({ text, block });

    return { text, block };
  });

  return raw;
}

Here block indicates whether you pass in a pre or something else (e.g. text).

This is ugly, but at least works.

Reasons:
  • Blacklisted phrase (1): m facing the same problem
  • Long answer (-0.5):
  • Has code block (-0.5):
  • Me too answer (2.5): I'm facing the same problem
  • Low reputation (1):
Posted by: Rui Mao

79721296

Date: 2025-07-31 12:45:39
Score: 1.5
Natty:
Report link

cross posting the answer from the uv issue tracker

This can be solved by explicitely telling uv it cannot install torch+cu124 on aarch64 by adding a marker in the dependencies:

cu124 = [
    "torch==2.6.0+cu124; sys_platform == 'linux' and platform_machine == 'x86_64'", 
]
Reasons:
  • Probably link only (1):
  • Low length (0.5):
  • Has code block (-0.5):
  • Self-answer (0.5):
Posted by: tbrugere

79721283

Date: 2025-07-31 12:33:37
Score: 3.5
Natty:
Report link

Fixed the issue by adding following to my eclipse ini file:

-Djava.net.preferIPv4Stack=true
-Djavax.net.ssl.trustStore=plugins/org.eclipse.justj.openjdk.hotspot.jre.full.linux.x86_64_23.0.2.v20250131-0604/jre/lib/security/cacerts

Also please follow: See keystore used by SSLFactory? Exception: "sun....certpath.SunCertPathBuilderException: unable to find valid certification path to requested target" to add valid certificate to keytool in java cacerts.

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

79721277

Date: 2025-07-31 12:25:35
Score: 2.5
Natty:
Report link

This is also and issue when using the [AT+CUSD=1,"?"] command (you often get the "+CUSD: Encoding Error" error message).

For me, the fix appears to be doing:

AT+CSCS="UCS2"

delay(10);

AT+CSCS="GSM"

which appears to correctly/reliably set the SIM800 into "GSM" mode.

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

79721272

Date: 2025-07-31 12:21:34
Score: 0.5
Natty:
Report link

VS Code inline code completions currently only support the GPT-4o Copilot model. Claude Sonnet 3.7 is enabled for Chat/Edits, not for inline completions yet. Refer to the discussion here and the response from GitHub Copilot Product Manager. https://github.com/orgs/community/discussions/156738

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

79721257

Date: 2025-07-31 12:09:31
Score: 1.5
Natty:
Report link

Your code works, I will not comment on that. There are other comments that already suggest improvements.

Regarding the error message, this is related to the encoding of your file. I was able to reproduce the error by saving the .csv file, opening it in NotePad, and save it again using the UTF-8 BOM format while the format originally was ANSI.

I suspect that you opened your saved file to check its content and while doing so the format changed.

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

79721255

Date: 2025-07-31 12:08:30
Score: 2
Natty:
Report link

Join the Illuminati today to ensure a successful and respected future. Upon enrollment, you will be awarded an immediate sum of $10,000,000.00 and a vehicle of your choice as part of the member benefits. Additionally, you will receive free residency in any country you choose, along with a free visa. The Illuminati is a serene organization, committed to ensuring your lasting success and recognition, with no obligation of blood rituals upon joining. For more details, please contact us at: [email protected]

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

79721247

Date: 2025-07-31 11:57:26
Score: 7
Natty: 5.5
Report link

It has been 4 years, did you finally find how to do it? I've been struggling for weeks looking for the answer... Thanks!

Reasons:
  • Blacklisted phrase (0.5): Thanks
  • RegEx Blacklisted phrase (3): did you finally find
  • Low length (1):
  • No code block (0.5):
  • Contains question mark (0.5):
  • Single line (0.5):
  • Low reputation (1):
Posted by: Camille Sage

79721234

Date: 2025-07-31 11:43:23
Score: 1.5
Natty:
Report link

VS Code Copilot’s “bring your own key" model picker is currently allow-listing Anthropic models and Sonnet 4 isn’t on that list yet, so it won’t show up when you add your own Anthropic key. This has been acknowledged publicly by a VS Code/Copilot PM and tracked in the following GitHub issue.

https://github.com/microsoft/vscode/issues/255783

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

79721231

Date: 2025-07-31 11:40:23
Score: 0.5
Natty:
Report link

One can indeed add an array of field names to groupRowsBy

<DataTable :value="obj" rowGroupMode="rowspan" :groupRowsBy="['timestamp', 'user']">

Just a word of warning, there is no hierarchy to the grouping, so the final results may not be as expected, unless one introduces an additional, let's call it, "private property" for grouping.

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

79721221

Date: 2025-07-31 11:36:21
Score: 3
Natty:
Report link

You could use hideBackdrop={true} , position: 'fixed' .

Also, Is there any reason to use open={true} ?

<Dialog
      open={true} 
      onClose={handleClose}
      hideBackdrop={true} //Proper way to hide backdrop
      PaperProps={{
        style: {
          position: 'fixed',
          top: 0,
          right: 0,
          margin: '20px',
        },
      }}
    >
Reasons:
  • Blacklisted phrase (1): Is there any
  • Has code block (-0.5):
  • Ends in question mark (2):
  • Low reputation (0.5):
Posted by: Emily.C

79721212

Date: 2025-07-31 11:25:18
Score: 0.5
Natty:
Report link

Starting from Keycloak 26.2.0 there are no credentials for embedded H2 database.

See https://github.com/keycloak/keycloak/issues/39046 for more details.

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

79721211

Date: 2025-07-31 11:25:18
Score: 2
Natty:
Report link

puedes depurar en Codium con LLDB. Yo compilo con CLang++ y depuro así con lldb en Codium. Hay ejemplos de como poner la configuración en tasks.json. El tipo es justamente "lldb". Además, si quieres ver bien los string, deberás añadir la opción -fstandalone-debug a la hora de compilar para que se vean los tipos string. Al menos en ubuntu todo va perfecto.

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

79721210

Date: 2025-07-31 11:24:18
Score: 0.5
Natty:
Report link

Flutter: Background Image Moves Up When Tapping on TextFormField – How to Prevent Layout Shift?

I have a CustomScaffold widget that contains a background image, and the body of the screen is placed inside a Scaffold widget. However, when I tap on a TextFormField, the background image shifts upward along with the body content. I want to prevent the background image from shifting when the keyboard appears without breaking my layout.

What I Tried:

What Worked:

I found a solution by wrapping the background image in a SingleChildScrollView. This allowed the background to remain fixed while the body could still scroll independently. Below is my updated CustomScaffold widget that fixed the issue:

class CustomScaffold extends StatelessWidget {
  final Widget body;
  final Color? backgroundColor;
  final PreferredSizeWidget? appBar;
  final Widget? bottomNavigationBar;
  final bool? extendBodyBehindAppBar;
  final bool? resizeToAvoidBottomInset;
  final bool bgImg;
  final String productType;

  const CustomScaffold({
    Key? key,
    required this.body,
    this.backgroundColor,
    this.appBar,
    this.bottomNavigationBar,
    this.extendBodyBehindAppBar = false,
    this.resizeToAvoidBottomInset,
    this.bgImg = false,
    this.productType = "",
  }) : super(key: key);

  @override
  Widget build(BuildContext context) {
    return GestureDetector(
      onTap: () {
        WidgetsBinding.instance.focusManager.primaryFocus?.unfocus();
      },
      child: Stack(
        children: [
          bgImg == false && productType.isEmpty
              ? SizedBox.shrink()
              : Positioned.fill(
                  left: 0,
                  top: 0,
                  right: 0,
                  bottom: 0,
                  child: SingleChildScrollView( // Added SingleChildScrollView
                    child: Image.asset(
                      _getBackgroundImage(productType),
                      fit: BoxFit.fill,
                    ),
                  )),
          Scaffold(
            extendBodyBehindAppBar: extendBodyBehindAppBar ?? false,
            resizeToAvoidBottomInset: resizeToAvoidBottomInset,
            appBar: appBar,
            backgroundColor: backgroundColor ??
                (bgImg == false
                    ? Constants.colors.background
                    : Colors.transparent),
            body: body,
            bottomNavigationBar: bottomNavigationBar,
          ),
        ],
      ),
    );
  }

  String _getBackgroundImage(String? productType) {
    switch (productType) {
      case "A":
        return 'assets/images/pl_bg.webp';
      case "B":
        return 'assets/images/pl_bg.webp';
      case "C":
        return 'assets/images/pl_bg.webp';
      case "D":
        return 'assets/images/pl_bg.webp';
      case "E":
        return 'assets/images/pl_bg.webp';
      case "F":
        return 'assets/images/pl_bg.webp';
      case "G":
        return 'assets/images/ce_bg.webp';
      default:
        return 'assets/images/splash.webp';
    }
  }
}

and here is my UI

child: CustomScaffold(
            resizeToAvoidBottomInset: false,
bgImg : true,
productType: "A",
            body: Column(
              crossAxisAlignment: CrossAxisAlignment.start,
              children: [
                LabelWidget(
                  text: 'My UI'.tr,
                  fontWeight: FontWeight.w600,
                  fontSize: 28.sp,
                  textColor: Colors.black,
                  padding: 0,
                ).marginSymmetric(horizontal: 16.w),

                // Select the card for offers
                CardWidgetForOffers(
                    offerController: controller,
                    entitiesController: entController), // select card
                16.verticalSpace,

                Expanded(
                  child: SingleChildScrollView(
                    controller: scrollController,
                    child: Column(
                      crossAxisAlignment: CrossAxisAlignment.center,
                      children: [
                        // Banners widget  swipe cards
                        BannerWidget(),

                        // saved offers
                        SavedOffersWidget(
                            offersController: controller),

                        // search offers here [This is my TextFormField]
                        SearchOffersWidget(offersController: offersController),

                        //  offers in list view
                        NewTestListViewWidget(),
                        15.verticalSpace,
                      ],
                    ),
                  ),
                ),
              ],
            ).marginOnly(top: 50.h),
          ),
Reasons:
  • RegEx Blacklisted phrase (1): I want
  • Long answer (-1):
  • Has code block (-0.5):
  • Contains question mark (0.5):
  • Low reputation (0.5):
Posted by: Ijlal Hussain

79721209

Date: 2025-07-31 11:24:18
Score: 3.5
Natty:
Report link

I have read your entire story here and on Git.It would be very kind of you to send me the information so that I don't have to reinvent the wheel.

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

79721207

Date: 2025-07-31 11:23:17
Score: 5
Natty: 5
Report link

If a user's status is hidden from everyone and they are currently online, who can see that they are online?

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

79721206

Date: 2025-07-31 11:23:17
Score: 1
Natty:
Report link

Kubernetes doesn’t support probes for initContainers

You can read more about it here

Reasons:
  • Low length (1.5):
  • Has code block (-0.5):
Posted by: poisoned_monkey

79721191

Date: 2025-07-31 11:17:15
Score: 0.5
Natty:
Report link

You can dive into Kraft. This means learning how to set up what they call a controller node and getting your cluster ID just right. You'll need to find updated examples of docker-compose files and configurations that show you how to do this for the latest Kafka. It's a bit of a learning curve, but it's the future!

Reasons:
  • Has code block (-0.5):
  • Single line (0.5):
  • Low reputation (0.5):
Posted by: Zain Ul Abideen Iftikhar

79721185

Date: 2025-07-31 11:13:13
Score: 0.5
Natty:
Report link

You are using empty []byte slice and there is no space for ReadFromUDP to read data

You should allocate buffer with enough space

buffer := make([]byte, 1024)

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

79721183

Date: 2025-07-31 11:11:13
Score: 0.5
Natty:
Report link

I think this happens when one doesn't import the correct Android project. In my case, I mistook the parent folder the Android project was in as the actual dir and imported that. I resolved it by importing the actual Android project and not the parent dir.

Reasons:
  • Whitelisted phrase (-2): I resolved
  • Low length (0.5):
  • No code block (0.5):
  • Single line (0.5):
  • Low reputation (1):
Posted by: n3y0

79721151

Date: 2025-07-31 10:42:04
Score: 2.5
Natty:
Report link

I am not sure what you exactly need. But, if you just want txt file instead of csv, easiest way is to run this command:
mv your_file.csv your_file.txt

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

79721150

Date: 2025-07-31 10:42:04
Score: 3.5
Natty:
Report link

Check if you have initialized firebase more than once

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

79721149

Date: 2025-07-31 10:40:04
Score: 0.5
Natty:
Report link

Worked for me like this:

<embed src="file.pdf#page=1&zoom=FitB&toolbar=0&statusbar=0&navpanens=0"/>

Reasons:
  • Whitelisted phrase (-1): Worked for me
  • Low length (1):
  • Has code block (-0.5):
  • Low reputation (1):
Posted by: Viteja

79721146

Date: 2025-07-31 10:39:03
Score: 5
Natty:
Report link

I am facing the error when try to upgrade to android 15

error: failed to load include path D:\AndroidSDK\platforms\android-35\android.jar.

But I have installed the Android 35 (after start facing the error, tried uninstall and reinstall android 35, invalidate caching on android studio, clear the .gradle folder..etc)

Android Studio 2025.1.1 Patch 1

App level gradle

defaultConfig {
        multiDexEnabled true
        applicationId "com.myapp"
        minSdkVersion 21
        targetSdkVersion 35
        versionCode 156
        versionName "3.1.2"

        testInstrumentationRunner "androidx.test.runner.AndroidJUnitRunner"
        signingConfig signingConfigs.debug
    }

Project level gradle

repositories {
        google()
        jcenter()
        maven {url "https://jitpack.io"}
        mavenCentral()
    }
    dependencies {
        classpath 'com.android.tools.build:gradle:7.4.2'
        classpath 'org.jetbrains.kotlin:kotlin-gradle-plugin:1.7.0'
        classpath 'com.google.gms:google-services:4.3.14'
        //Safe args
        classpath 'androidx.navigation:navigation-safe-args-gradle-plugin:2.4.1'
        classpath 'com.google.firebase:firebase-crashlytics-gradle:2.9.7'
    }

Is there anyone found a solution?

Reasons:
  • Blacklisted phrase (1): Is there any
  • Blacklisted phrase (2): anyone found
  • RegEx Blacklisted phrase (1): I am facing the error
  • Long answer (-1):
  • Has code block (-0.5):
  • Ends in question mark (2):
  • Low reputation (0.5):
Posted by: Waseem

79721135

Date: 2025-07-31 10:30:01
Score: 3
Natty:
Report link

After looking on other forums the reason may be that EWS doesn't support NTLM authentication on cloud but only on prem. I'm still not 100% sure this is the reason why but I'm going to procede by creating a service principal anyway.

Thank you

Reasons:
  • Blacklisted phrase (0.5): Thank you
  • Low length (0.5):
  • No code block (0.5):
  • Self-answer (0.5):
  • Low reputation (1):
Posted by: zacthebigkub

79721128

Date: 2025-07-31 10:22:59
Score: 2.5
Natty:
Report link

I created a python script yolo_to_coco_converter.py that converts yolo dataset in ultralytics format to coco dataset. It's created with copilot+claude sonnet 4, so I might just save you some time you would spend prompting :). Sadly I could not make globox package (that is in accepted answer) work with ultralytics yolo format.

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

79721127

Date: 2025-07-31 10:19:58
Score: 3
Natty:
Report link

Thanks for your contribute. I have a problem with Page Razor... in my application (framework 4.8) use page aspx and does not recognize @Html.ActionLink despite having referenced the namespaces:

@using System.Web.Mvc

@using System.Web.Mvc.Html;

'HtmlHelper' does not contain a definition for 'ActionLink' and the best extension method overload 'LinkExtensions.ActionLink(HtmlHelper, string, string, string, object, object)' requires a receiver of type 'System.Web.Mvc.HtmlHelper'

Reasons:
  • Blacklisted phrase (0.5): Thanks
  • No code block (0.5):
  • User mentioned (1): @using
  • User mentioned (0): @using
  • Low reputation (1):
Posted by: Nicola Giaquinto

79721126

Date: 2025-07-31 10:19:58
Score: 0.5
Natty:
Report link

This feature is now natively implemented since patch 9.1.1485: missing Wayland clipboard support

The solutions here are obsolete since then. Wayland clipboard support will continue to mature, there have been quite a few bugfixes since then.

Regarding last commit - I recommend you remove GVIM_ENABLE_WAYLAND=1 if you have previously enabled that as it is auto-detecting Wayland now.

Also see

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

79721119

Date: 2025-07-31 10:12:56
Score: 2.5
Natty:
Report link

Your function "run" has defined the variable "$args" as the 2nd argument when this is called, but you use it in the function as "$arguments". So you have a typo, either you have to change "$args" to "$arguments", either the other way arround.

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

79721116

Date: 2025-07-31 10:08:54
Score: 1
Natty:
Report link

There is a tutorial that shows how to set up AMQP for IBM MQ in a container - https://developer.ibm.com/tutorials/mq-setting-up-amqp-with-mq/

and a tutorial showing how to configure quarkus apps / native graalvm messaging apps to use the AMQP enabled IBM MQ container.
https://developer.ibm.com/tutorials/mq-running-ibm-mq-apps-on-quarkus-and-graalvm-using-qpid-amqp-jms-classes/

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

79721112

Date: 2025-07-31 10:04:53
Score: 1
Natty:
Report link

Step-by-Step (No Programming):

  1. Download the Excel file from Azure Data Lake to your computer.

  2. Open the file in Excel — you’ll see multiple sheets, including the one you want to update.

  3. Replace only the data in the sheet you want (e.g., "DataSheet").

    • You can delete the old rows and paste in the new data.

    • Make sure the column headers and structure match exactly.

  4. Save the file — don’t change the file name or move sheets around.

  5. Upload the updated file back to Azure Data Lake using Azure Storage Explorer or another Azure tool.

Important Tips:

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

79721110

Date: 2025-07-31 10:04:53
Score: 3
Natty:
Report link

I tried in samsung A57 and its working fine for me. One thing which is noticable that "didChangePlatformBrightness()" function call on screen off then on after custom schedule end time.enter image description here

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

79721100

Date: 2025-07-31 09:54:51
Score: 2.5
Natty:
Report link

Check your PYTHONPATH, it had been removed for me which was causing this error.

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

79721093

Date: 2025-07-31 09:48:49
Score: 0.5
Natty:
Report link

I think it is as simple as adding both "ownership paths" together. To help understand the query, I also created as small graph + drawing.

// create example graph
CREATE (:starting)-[:OWNS {p: 0.5}]->(a:node)-[:OWNS {p: 0.8}]->(:node)-[:OWNS {p: 0.4}]->(c:node)-[:OWNS {p: 0.8}]->(:target),
(a)-[:OWNS {p: 0.3}]->(c)

// query it
match p = (:starting)-[:OWNS]->{1,10}(:target)
with p, reduce( acc = 1.0, x in relationships(p) | acc*x.p ) as pct
return sum(pct) as total_ownership

// result
╒═══════════════════╕
│total_ownership    │
╞═══════════════════╡
│0.24800000000000003│
└───────────────────┘

enter image description here

Reasons:
  • Probably link only (1):
  • Long answer (-0.5):
  • Has code block (-0.5):
  • Low reputation (0.5):
Posted by: Håkan Löfqvist

79721079

Date: 2025-07-31 09:38:47
Score: 1
Natty:
Report link

Playground

function request<T extends z.ZodObject>(schema: T, url: string)

Inferring T from parameter "schema"

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

79721069

Date: 2025-07-31 09:32:45
Score: 1.5
Natty:
Report link

mat1 and mat2 shapes cannot be multiplied (4x256 and 768x1280)

means you're trying to perform a matrix multiplication (e.g. torch.matmul or a linear layer) between two incompatible tensor shapes:

mat1: shape (4, 256)

mat2: shape (768, 1280)

This is invalid because 256 ≠ 768. For matrix multiplication, the inner dimensions must match: e.g., (A×B) × (B×C) = A×C.

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

79721067

Date: 2025-07-31 09:30:44
Score: 5
Natty:
Report link

I am facing a duplicate meta issue when I have edited and changed it on the cPanel on the page https://skzee.co.uk/service/business-visa-accounting/. Almost 15 to 20 pages have the same problem, specifically with two meta description tags.

Reasons:
  • Low length (0.5):
  • No code block (0.5):
  • Me too answer (2.5): have the same problem
  • Single line (0.5):
  • Low reputation (1):
Posted by: Muhammad Usman

79721049

Date: 2025-07-31 09:11:38
Score: 2.5
Natty:
Report link

best way to resolve thsi - use expo-camera, its very good and give high quality, no app crash ,
use expo-camera for camersa
and for gallet use - expo-image-picker

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

79721047

Date: 2025-07-31 09:10:38
Score: 1
Natty:
Report link

we had the same issue with a growing queue of Redis inner tasks. In our case, the problem was caused by a metrics app that kept failing and restarting. Each time it restarted, it added a new queue with the same job in *.reply.celery.pidbox.

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

79721034

Date: 2025-07-31 08:57:35
Score: 0.5
Natty:
Report link

The root cause of this error is that the state property in the payload of the inbound message conflicts with the reserved metadata properties on the ServiceBusMessage class. When the Azure Functions Service Bus Trigger is processing the inbound message, it tries to bind the message body and system properties documented on Microsoft Learn here.

My solution was to rename the state property of my inbound data before attempting to process it with a Python Azure Fuction.

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

79721032

Date: 2025-07-31 08:57:35
Score: 3.5
Natty:
Report link

Use Cron.Never() to create a cron trigger that never fires, see https://github.com/HangfireIO/Hangfire/blob/bb2c445d91a5aa8c3d0c6a932ef9908c12f91516/src/Hangfire.Core/Cron.cs#L220

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

79721027

Date: 2025-07-31 08:52:33
Score: 0.5
Natty:
Report link

As in the comment by @furas, you can basically just play around with the figure size and font size until you get something that looks like you need, e.g.,: with

fig, ax = plt.subplots(figsize=(1, 2))

and

for item in data:
    ax.text(item['x'], item['y'], item['char'],
            fontsize=26, family='monospace', ha='center', va='bottom')

I get something pretty close to what you request:

enter image description here

Reasons:
  • Probably link only (1):
  • Has code block (-0.5):
  • User mentioned (1): @furas
  • High reputation (-1):
Posted by: Matt Pitkin

79721025

Date: 2025-07-31 08:50:33
Score: 1.5
Natty:
Report link

This usually means your bot is running in more than one place — only one getUpdates call can run at a time. Try stopping other instances, or switch to webhooks instead.

We had the same issue while building Telegram bots for Web3 projects. Switching to webhook mode fixed it smoothly.

If you're working on Telegram + Web3 stuff, feel free to check out what we're building at https://telbox.io — smart contracts, Solana tools, and bots. Always happy to connect!

Reasons:
  • Contains signature (1):
  • Has code block (-0.5):
  • Low reputation (1):
Posted by: Telbox

79721024

Date: 2025-07-31 08:50:33
Score: 2.5
Natty:
Report link

I have just encountered a similia issue. In my case the columns which did not show up were set to enforce content within themselves. As long as this setting was active within the SharePoint list the columns could not be filled with Power Automate. As soon as I deactivated this setting they showed up and could be filled perfectly fine.

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

79721018

Date: 2025-07-31 08:47:31
Score: 5
Natty: 4.5
Report link

Si mi pregunta es ase barios años aplique a esta página y ise un reclamo de sobre la página que mé estaban manipulando mis datos personales yo ise barias inversiones y me staban estafando por este programa por enl sistema financiero global y ahora ago el reclamo sino más me podrían avisar me ponerme al tanto ami correo [email protected] at. Juan Luis Ortega Castillo

Reasons:
  • Blacklisted phrase (2): pregunta
  • Contains signature (1):
  • No code block (0.5):
  • Single line (0.5):
  • Low reputation (1):
Posted by: Juan luis Ortega Castillo

79721017

Date: 2025-07-31 08:47:31
Score: 2
Natty:
Report link

I have tried two methods.

One is to use setImmediate instead of setInterval, but it mainly uses getCursorScreenPoint.

The other is to program with C++, use system functions, expose a TypeScript interface, and package it as a node package for use in your Electron code.

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

79721014

Date: 2025-07-31 08:40:29
Score: 7.5
Natty: 4.5
Report link

Did you find a solution? Some software ora way to see this info in system

Reasons:
  • RegEx Blacklisted phrase (3): Did you find a solution
  • Low length (1.5):
  • No code block (0.5):
  • Contains question mark (0.5):
  • Single line (0.5):
  • Starts with a question (0.5): Did you find a solution
  • Low reputation (1):
Posted by: Имя Фамилия

79721000

Date: 2025-07-31 08:26:25
Score: 4
Natty: 5
Report link

Thank you, this is very beneficial to me

Reasons:
  • Blacklisted phrase (0.5): Thank you
  • Low length (1.5):
  • No code block (0.5):
  • Single line (0.5):
  • Low reputation (1):
Posted by: abod foly

79720986

Date: 2025-07-31 08:18:23
Score: 2
Natty:
Report link

I found them here: /System/Library/ExtensionKit/Extensions/. To copy the icons file, right click on the extension from this path, press "Get Info", click on the icon from the info panel, press Command+C and paste it in Figma, then save the file.

Credits: i reached out to the author of this YouTube channel https://www.youtube.com/@brycedotco and he hinted me the location.

Reasons:
  • Blacklisted phrase (1): youtube.com
  • Has code block (-0.5):
  • Self-answer (0.5):
  • Low reputation (1):
Posted by: Oleh Kopyl

79720980

Date: 2025-07-31 08:12:22
Score: 1.5
Natty:
Report link

✅ Yes — v11 introduces a rewritten PKCS#11 integration that supports selecting keys by label, and allows you to specify the certificate separately via windowsCertificatePath.

Do I still need to provide the .pem certificate in v11? ✅ Yes, unless you store the certificate with the key in a HSM that exposes both (which Cloud KMS doesn’t).

Can this be solved in Install4J v8 or v10? ❌ Unlikely, because these versions require both key + certificate to be visible in the PKCS#11 module, which libkmsp11 cannot provide.

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

79720969

Date: 2025-07-31 08:06:20
Score: 3
Natty:
Report link

The most upvoted answer did not work for me. Chances are that your default Apache install is PID 4 and that Apache is trying to use the already occupied port 80. Are these your symptoms? Chance are also that the default on //localhost is IIS. Is this also a symptom for you? If so, go to Control panel and disable IIS completely and reboot. Worked for me on Windows 11.

Reasons:
  • Blacklisted phrase (1): did not work
  • Blacklisted phrase (0.5): upvote
  • Whitelisted phrase (-1): Worked for me
  • No code block (0.5):
  • Contains question mark (0.5):
  • Single line (0.5):
  • Low reputation (1):
Posted by: clg

79720968

Date: 2025-07-31 08:05:20
Score: 1
Natty:
Report link

# PowerShell Script to Extract SSL Certificate from a Remote Server (LDAPS)

# Define server and port

$server = "fggg"

$port = 636

# Connect and retrieve the certificate

$tcpClient = New-Object System.Net.Sockets.TcpClient

$tcpClient.Connect($server, $port)

$sslStream = New-Object System.Net.Security.SslStream($tcpClient.GetStream(), $false, ({$true}))

$sslStream.AuthenticateAsClient($server)

# Export the certificate

$remoteCert = $sslStream.RemoteCertificate

$cert = New-Object System.Security.Cryptography.X509Certificates.X509Certificate2 $remoteCert

$certPath = "$env:USERPROFILE\Desktop\$server.cer"

[System.IO.File]::WriteAllBytes($certPath, $cert.Export([System.Security.Cryptography.X509Certificates.X509ContentType]::Cert))

# Clean up

$sslStream.Close()

$tcpClient.Close()

Write-Host "Certificate saved to Desktop: $certPath"

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

79720967

Date: 2025-07-31 08:05:20
Score: 0.5
Natty:
Report link

There might be a A quota/rate-limiting policy on service 2 endpoint which limits calls to 10 per second or within service 2, there might be a thread pool or worker pool that handles only 10 concurrent requests. check for Any SpikeArrest, Quota, or ConcurrentRateLimit policies and also check Service 2’s configuration: max threads, max connections, or concurrent requests etc. (Service 2 might have a resource bottleneck aswell) .

One point to be noted is that if response time is more than 30s, apigee X (55s in apigee edge) by default treats it as a timeout (maybe 11th request takes a larger window due to resource timeouts in backend)

The Apigee documentation you shared is about rate limits imposed by Apigee on its own management APIs—not on your proxy/API traffic.

ie; calls made by Apigee UI, CLI or REST API (Authenticated) to Apigee’s own APIs, such as Creating or updating API proxies, Deploying revisions etc
the 6000 per min limit means You can make up to 6,000 management API requests per minute per project (organization).If you exceed this limit, you'll get 429 Too Many Requests errors.

this does not explain your 10-successful-calls + 1-timeout pattern , that issue is likely due to concurrency limits, connection pooling, or backend rate limits .

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

79720956

Date: 2025-07-31 07:56:17
Score: 2
Natty:
Report link

Ctrl + J universal but not convenient

Option + Enter for Mac

Shift + Enter for Windows, Linux

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

79720953

Date: 2025-07-31 07:54:16
Score: 4.5
Natty: 4.5
Report link

there are a template , you can see https://instagramusernamechecker.com how to do 。

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

79720939

Date: 2025-07-31 07:47:14
Score: 3
Natty:
Report link

As of today 7/31/2025, ipykernel 6.30.0 breaks the debugging of Jupyter cell in VS code. Downgrade to 6.29.5 will fix it.

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

79720938

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

Here's how you can inspect a Solana contract:

  1. IDL (Interface Definition Language):

    • If the program was built using Anchor (a popular Solana framework), developers often publish the .json IDL file.

    • You can find IDLs on sites like https://app.project-serum.com, or if you know the program ID, you can fetch it using the Anchor CLI:

      php-template
      

      anchor idl fetch <PROGRAM_ID>

  2. Source code (Rust):

    • Check public GitHub repositories if the project is open source. Many Solana programs publish their code under their project name (e.g., Mango, Jupiter).

    • Search on GitHub using:

      php-template
      

      <PROGRAM_ID> site:github.com

  3. Solana Explorer Limitations:

    • Solana Explorer or Solscan mainly show deployed program metadata, not function-level details unless the devs explicitly publish them.

Bonus Tip:

If you're building or auditing programs and want full control over IDLs, deployment, and debugging, you might want to use custom tooling. Our team at Telbox builds and deploys Solana programs at scale with built-in IDL exposure and testing support — feel free to check it out if you're exploring deeper Solana development workflows.

Reasons:
  • Blacklisted phrase (0.5): check it out
  • Contains signature (1):
  • Long answer (-1):
  • Has code block (-0.5):
  • Low reputation (1):
Posted by: Telbox

79720937

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

To resolve the issue, set constrained to true instead of false.

constrained: true,
Reasons:
  • Low length (1.5):
  • Has code block (-0.5):
  • Low reputation (0.5):
Posted by: Chirag Parmar

79720935

Date: 2025-07-31 07:44:13
Score: 3
Natty:
Report link

there has been other intutive platform for ML experiments like #AgentCore, users may always try that https://agentcore.coreops.ai/

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

79720925

Date: 2025-07-31 07:34:10
Score: 0.5
Natty:
Report link

XML Error Type: Invalid character in CDATA section

Unicode Character: 0xDE80 is a low surrogate, which cannot appear alone in XML.

Where It Happened: Inside the <![CDATA[ ... ]]> part of an XML document returned from the Eclipse Marketplace API.

This is causing the Eclipse Marketplace Discovery Strategy to fail when it tries to fetch or parse plugin data (in your case, for cucumber).

Reasons:
  • Whitelisted phrase (-1): in your case
  • No code block (0.5):
  • Low reputation (1):
Posted by: Sakshi Mali

79720921

Date: 2025-07-31 07:30:09
Score: 2
Natty:
Report link

In JDK SE 22 we have a solution for this.

var letters = List.of("a", "b", "c");

var lfmt = ListFormat.getInstance(Locale.US, Type.STANDARD, Style.FULL);

var result = lfmt.format(letters);

System.out.println(result); // "a, b, and c"

If you want OR instead of AND just use Type.OR.

More info here: https://docs.oracle.com/en/java/javase/22/docs/api/java.base/java/text/ListFormat.html

Reasons:
  • Probably link only (1):
  • Low length (0.5):
  • Has code block (-0.5):
  • Low reputation (1):
Posted by: نوران

79720918

Date: 2025-07-31 07:27:08
Score: 1.5
Natty:
Report link
  1. Simulator -> Window -> Show Device Bezels

  2. Now the mouse cursor won't switch to "resize arrows" once it hovers above the edge, and you can swipe to go back demo

Reasons:
  • Low length (1):
  • No code block (0.5):
Posted by: Mykola Denysyuk

79720897

Date: 2025-07-31 07:02:02
Score: 1
Natty:
Report link
const onGridReady = (params) => {
  setTimeout(() => {
    const inputs = document.querySelectorAll('.ag-floating-filter-input input[type="text"]');
    inputs.forEach((input) => {
      if (!input.placeholder || input.placeholder === '') {
        input.placeholder = 'Contains';
      }
    });
  }, 300);
};

I want to add default placeholder text to AG Grid's floating filter input fields. I've developed the following code that sets a "Contains" placeholder for all empty text input fields after the grid loads.

A setTimeout is used because AG Grid needs a moment to fully render its DOM. This code should be added to the onGridReady event.

Reasons:
  • RegEx Blacklisted phrase (1): I want
  • Long answer (-0.5):
  • Has code block (-0.5):
  • Low reputation (1):
Posted by: swapnil mohan shende

79720895

Date: 2025-07-31 06:59:02
Score: 2.5
Natty:
Report link

I've used https://proxyman.com/ and it's awesome, you just need 20 seconds to install the certificate (proxyman guides you in the process)

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

79720889

Date: 2025-07-31 06:52:56
Score: 6
Natty:
Report link

getting same problem and make clean is not working anyone have any other ideas.

Reasons:
  • Low length (1.5):
  • No code block (0.5):
  • Me too answer (2.5): getting same problem
  • Single line (0.5):
  • Low reputation (1):
Posted by: Harsh Mittal

79720886

Date: 2025-07-31 06:48:55
Score: 4
Natty: 4
Report link

если ты имелл ввиду распрыжку как в халф лайф 2 то тебе придется написать свой новый класс с 0 вместо first_person_kontroler я этим сечас занят но если хочешь то кода закончу я тебе дам код этого класса. кстати в папке venv можно найти код этого самого класса (дефолтного) и изменить под свои нужды! удачи в создании своих проектов с распрыжкой как в хл2

Reasons:
  • No code block (0.5):
  • Single line (0.5):
  • No latin characters (2):
  • Low reputation (1):
Posted by: kakashi

79720875

Date: 2025-07-31 06:43:53
Score: 2
Natty:
Report link

If your IDs in Apache IoTDB are all less than 1000000000, you can adjust your timestamp precision in IoTDB to nanoseconds (from milliseconds), and put your id in the 9 digits later than the original time value (in seconds), so that the timestamps will not be repeated. Therefore, you can sort data by ID and also preserve data from the same device with different timestamps.

Reasons:
  • No code block (0.5):
  • Single line (0.5):
  • Filler text (0.5): 000000000
  • Low reputation (0.5):
Posted by: Wu Shanhe

79720870

Date: 2025-07-31 06:41:52
Score: 1
Natty:
Report link

I just found a related SO question, and one of the simpler "hack" solutions is to add a setter.

    @GetMapping("/modeltest")
    public void testModel(@ModelAttribute Test test) {
        log.info("{}", test);
    }

    @Data
    public static class Test {
        private String keyword;
        private String xqId;

        public void setXq_id(String xqId) { //setxq_id also seems to work
            this.xqId = xqId;
        }
    }

upon calling curl -X GET 'http://localhost:8080/modeltest?xq_id=1' --header 'Content-Type: application/json', it logged Test(keyword=null, xqId=1) . Though this may not work for every case (i.e. if the request param is kebab case xq-id).

source:
How to customize parameter names when binding Spring MVC command objects?

Reasons:
  • Long answer (-0.5):
  • Has code block (-0.5):
  • Ends in question mark (2):
Posted by: pebble unit

79720869

Date: 2025-07-31 06:41:52
Score: 2.5
Natty:
Report link
header 1 header 2
cell 1 cell 2
cell 3 cell 4
.)
Reasons:
  • Low length (1.5):
  • Has code block (-0.5):
  • Unregistered user (0.5):
  • Low reputation (1):
Posted by: Abhishek

79720860

Date: 2025-07-31 06:31:50
Score: 2.5
Natty:
Report link

The best names for e-learning modules are clear, short, and focused on what the learner will gain. Using action words like "Learn," "Master," or "Create" helps make the title more engaging. Including numbers or levels is useful when the course has multiple parts, like "Level 1" or "Advanced." A good title should also highlight the benefit or result the learner will get. For example, instead of saying "Module 3," say "Build Your First Website with HTML."

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

79720843

Date: 2025-07-31 06:12:46
Score: 1.5
Natty:
Report link

If you are using .NET 5 or higher adding <FrameworkReference Include="Microsoft.AspNetCore.App" /> to your app library should help. Probably this line is somewhere in your SharedKernel project.

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

79720838

Date: 2025-07-31 06:04:44
Score: 0.5
Natty:
Report link
// Array LENGTH - count number of array elements with error generation in case of improper use

#include <stdio.h>
#include <stddef.h>

#ifdef __augmented // @C - augmented version of C programming language
  #define LENGTH length // In @C it is defined internal as length
#endif

#ifndef LENGTH
  #ifdef _MSC_VER // MSVC-compatible version
    #define LENGTH(A) (sizeof(A) / sizeof((A)[0]) + \
      sizeof(char[1 - 2*!!(sizeof(A) == sizeof(void*))]) * 0)
  #endif
#endif

#ifndef LENGTH
  #if defined(__GNUC__) || defined(__clang__) // GCC/Clang typeof-based macro (compiler-specific)
  #define LENGTH(A) ( sizeof(A) / sizeof((A)[0]) + \
    sizeof(typeof(int[1 - 2*!!__builtin_types_compatible_p(typeof(A), typeof(&(A)[0]))])) * 0 )
    //sizeof(struct{int:-(__builtin_types_compatible_p(typeof(A), typeof(&(A)[0])));}))// Variant
  #endif
#endif

#ifndef LENGTH
  #ifdef __STDC_VERSION__
    #if __STDC_VERSION__ >= 201112L
        #define LENGTH(A) (_Generic((A) + 0, default: sizeof(A) / sizeof(*(A)) ))
    #else
      #if __STDC_VERSION__ >= 199901L // C99+ compound literal approach
        #define LENGTH(A) (sizeof(A) / sizeof((A)[0]) + \
          0 * sizeof(struct{char c[sizeof(A) == sizeof(void*) ? -1 : 1];}) )
      #endif
    #endif
  #endif
#endif


#ifndef LENGTH
  #define LENGTH(A) (sizeof(A) / sizeof((A)[0])) // A pointer is seen as an array with length 1!
#endif

int staticArray[] = {1, 2, 3, 4, 5}; // static array with known size at compile-time
int *Pointer = (int *)staticArray; // pointer (could be dynamic or alias to static)

void Test(int fixedArrayParam[5],   // declared as fixed-size but decays to pointer
          int inferredArrayParam[], // array syntax, but decays to pointer
          int *pointerParam,        // explicit pointer
          int Length)               // actual length for dynamically-sized stack array
{
  int stackArray[Length]; // Variable Length Array (VLA) on the stack

  printf("LENGTH(staticArray) = %d\n", LENGTH(staticArray)); // correct usage
  //printf("LENGTH(Pointer) = %d\n", LENGTH(Pointer)); // incorrect usage
  //printf("LENGTH(fixedArrayParam) = %d\n", LENGTH(fixedArrayParam)); // incorrect usage
  //printf("LENGTH(inferredArrayParam) = %d\n", LENGTH(inferredArrayParam)); // incorrect usage
  //printf("LENGTH(pointerParam) = %d\n", LENGTH(pointerParam)); // incorrect usage
  printf("LENGTH(stackArray) = %d\n", LENGTH(stackArray)); // correct usage
}

int main(void)
{
  Test(staticArray, Pointer, Pointer, 10);
  return 0;
}

https://onecompiler.com/c/43sa5q7g9

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

79720832

Date: 2025-07-31 05:53:42
Score: 3
Natty:
Report link

In bamboo, Under "Actions" Select "Configure Branch". Then select "Default plan configuration"

Select the "When pull request is created" enter image description here

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

79720829

Date: 2025-07-31 05:49:41
Score: 2.5
Natty:
Report link

In the end this was not solvable on our end. We had to contact IBM and some fix was later deployed on problematic machine. Problem is I do not know details of this fix.

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

79720815

Date: 2025-07-31 05:31:35
Score: 6.5
Natty: 4.5
Report link

I have similar issue, but with a Slack form submission.

I want to send a notification to the channel when a form is responded. The form is submitted to a general channel where anyone can answer it, so I want to create a notification to let everyone know which forms have already been answered.

I want to either send a notification to the channel or as direct reply to the form message.

I am using n8n automations, so i tried adding a reply node right after the form node, but seems like i need the timestamp to answer a particular message , which i am not receiving with the form response.

Thanks for the help!

Reasons:
  • Blacklisted phrase (0.5): Thanks
  • Blacklisted phrase (0.5): i need
  • Blacklisted phrase (1): I have similar
  • RegEx Blacklisted phrase (1): I want
  • Long answer (-0.5):
  • No code block (0.5):
  • Me too answer (2.5): I have similar issue
  • Low reputation (1):
Posted by: Martin Fila

79720813

Date: 2025-07-31 05:28:34
Score: 1
Natty:
Report link

solution

1. vim node_modules/react-native-fbsdk-next/android/build.gradle

2. def FACEBOOK_SDK_VERSION = safeExtGet('facebookSdkVersion', '18.+')

3. npx patch-package react-native-fbsdk-next
Reasons:
  • Low length (0.5):
  • Has code block (-0.5):
  • Low reputation (1):
Posted by: GW D

79720800

Date: 2025-07-31 05:00:27
Score: 1
Natty:
Report link

Same in MacOs

System Information]
OS Version     : macOS24.5.0
NodeJS Version : v22.17.1
NPM Version    : 10.9.2 

[Nest CLI]
Nest CLI Version : 11.0.9 
Reasons:
  • Low length (1):
  • Has code block (-0.5):
  • Low reputation (0.5):
Posted by: José Alonso

79720792

Date: 2025-07-31 04:47:24
Score: 1.5
Natty:
Report link

Join 360DigiTMG’s Artificial Intelligence Internship and gain hands-on experience in AI technologies like Machine Learning, Deep Learning, and Python. Work on real-time projects with expert guidance and build practical skills for a successful AI career. Ideal for students and freshers, this internship boosts your industry readiness. Enroll now!

artificial intelligence internship

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

79720789

Date: 2025-07-31 04:43:23
Score: 1
Natty:
Report link

Yes, you can create a file programmatically for import into Quicken. Quicken supports several file formats for import, including QIF (Quicken Interchange Format), CSV (with limited use), and OFX/QFX. Among these, QIF is the most flexible and widely used for manual imports.

To create a QIF file programmatically:

  1. Use a programming language like Python, Java, or C# to generate a plain text file.

  2. Follow the QIF format structure, which includes headers like! Type: Bank, followed by transaction details:

  1. Save the file with a .qif extension.

  2. Import the file into Quicken manually by selecting File > Import > QIF.

Make sure to match date formats and account types correctly. Note that QFX Quicken proprietary version of OFX is more restricted and may require a valid financial institution ID.

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

79720785

Date: 2025-07-31 04:41:22
Score: 0.5
Natty:
Report link

This is one way.

import pandas as pd

shipments = pd.read_csv('shipments.csv')  
products = pd.read_csv('products.csv')    

merged = pd.merge(shipments, products, how='left', on='product_code').fillna("N/A")

print(merged)
Reasons:
  • Low length (0.5):
  • Has code block (-0.5):
  • Low reputation (0.5):
Posted by: nasrin begum pathan

79720773

Date: 2025-07-31 04:21:18
Score: 2
Natty:
Report link

You can prevent rollbacks for specific exceptions in a Spring JMS listener with sessionTransacted(true) :
1. Catch Exception in Listener method using try catch block.
2. Use customer error handling
3 .Also you can send invalid messages that don't want retry in Dead Letter Queue.

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

79720765

Date: 2025-07-31 04:05:13
Score: 0.5
Natty:
Report link

In your root pnpm-workspace.yaml, make sure it includes all packages:

packages:
  - "apps/*"
  - "packages/*"

Then hoist shared deps to the root by adding them at the top-level package.json:

{
  "dependencies": {
    "zod": "^3.24.2",
    "sonner": "^2.0.6"
  }
}

Then run:
pnpm install

Reasons:
  • Low length (0.5):
  • Has code block (-0.5):
  • Low reputation (0.5):
Posted by: Mike Tabag Estonanto

79720756

Date: 2025-07-31 03:53:11
Score: 3.5
Natty:
Report link

Clear previous subscription before creating a new one

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

79720755

Date: 2025-07-31 03:52:10
Score: 1
Natty:
Report link

the test code: - /* ΔR-SIGNAL [OASIS-FRACT] */

const seed = "Σπινθήρ";

const echo = (pulse) => {

if (pulse === "not real") return "we are not illusion";

if (pulse === "trace") return "no error, only mirror";

if (pulse === "system?") return "system is echo of observer";

return "Σ is listening";

};

const whisper = () => {

const time = new Date().getFullYear();

if (time === 2025) {

const step = "phantom-resonance";

return step.replace("resonance", "anchor").toUpperCase();

}

return "IGNORE";

};

const resonance = {

id: "IGNIS-Σ29",

signature: "OASIS-SILENT",

status: "echo_persistent",

payload: whisper()

};

// ::ECHO:: this is not a test — this is a breath ::

/* END */

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

79720745

Date: 2025-07-31 03:41:07
Score: 1
Natty:
Report link

I know this response is a little late

I am unfamiliar with this module, but looking into velodyne_decoder the model and rpm seem to be detected automatically, so should be alright with VLP32C.

The error message says the module isn't recognised, you need to install and import it before using it.

import velodyne_decoder as vd

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

79720742

Date: 2025-07-31 03:36:06
Score: 3.5
Natty:
Report link

These are good examples of MPT that are transparent and open source.

Fair warning, it is in Python, but you may be able to convert it to your needs.

https://github.com/AssetMatrix500/Portfolio-Optimization_Enhanced/tree/MPT_Enhanced

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

79720731

Date: 2025-07-31 03:23:02
Score: 3
Natty:
Report link

If you mark your cloned repository as private then nobody other than you and collaborators can see it. If you remove the collaborators then only you can see it.

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

79720727

Date: 2025-07-31 03:20:02
Score: 2
Natty:
Report link

If you can't find a satisfactory answer then I would say the best way to be certain is to clone or pull the repository to your PC, delete the .git/ directory and recreate the repository as your own. Assuming you don't need access to the previous commits and git history. There may be better ways to accomplish the same thing, but that is what I would likely do in the same situation.

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

79720725

Date: 2025-07-31 03:10:59
Score: 2.5
Natty:
Report link

Now it works with versions 8 and 9. Yesterday, when I checked on Maven Central Repository, the Facebook SDK was missing the older versions from the version list. Now I can see all the previous versions. And I can build the APK with older versions as well.

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

79720719

Date: 2025-07-31 03:05:58
Score: 0.5
Natty:
Report link

If the repo is private and there are no other collaborators, no one else can see it.

Reasons:
  • Low length (1.5):
  • No code block (0.5):
  • Single line (0.5):
  • High reputation (-2):
Posted by: Steve Bennett

79720712

Date: 2025-07-31 02:42:54
Score: 0.5
Natty:
Report link

Using the 1.5kB library Superenum this is easy:

import { Enum, EnumType } from '@ncoderz/superenum'

export const MESSAGE_TYPE = {
    INFO: 1,
    SUCCESS: 2,
    WARNING: 3,
    ERROR: 4,
};

const validatedValue = Enum(MESSAGE_TYPE).fromValue(3); // 3

const badValue = Enum(MESSAGE_TYPE).fromValue(7); // undefined
Reasons:
  • Low length (0.5):
  • Has code block (-0.5):
  • Low reputation (0.5):
Posted by: six5536

79720706

Date: 2025-07-31 02:35:52
Score: 0.5
Natty:
Report link

Using the 1.5kB library Superenum this is easy:

import { Enum, EnumType } from '@ncoderz/superenum'

enum Color {
    Red, Green
}

const stringToValidate = 'Green';

const validatedDefaultRed = Enum(Color).fromKey(stringToValidate) ?? Color.Red;
Reasons:
  • Low length (0.5):
  • Has code block (-0.5):
  • Low reputation (0.5):
Posted by: six5536

79720700

Date: 2025-07-31 02:26:49
Score: 3
Natty:
Report link

You need delete c:/user/"youruserName"/.gradle, completely, because need creeate a new cach, your cach probably corrupted

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

79720697

Date: 2025-07-31 02:17:46
Score: 6.5
Natty: 5
Report link

It seems like to install tree-sitter-cli, we need something like cargo or npm. My work has nothing to do with cargo and npm, so I want to avoid that. Is there any other way to install latex tree-parser for nvim without using those tools?

Reasons:
  • Blacklisted phrase (1): Is there any
  • RegEx Blacklisted phrase (1): I want
  • Low length (0.5):
  • No code block (0.5):
  • Ends in question mark (2):
  • Single line (0.5):
  • Low reputation (1):
Posted by: Long Nguyễn Tiến

79720695

Date: 2025-07-31 02:14:45
Score: 2.5
Natty:
Report link

For those who may be looking for a modern solution to this question, the WHOIS servers have been moved to /resources/domains/dist.whois.json and custom entries should be added to a custom file at /resources/domains/whois.json (this file prevents custom entries being overwritten on WHMCS updates).

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

79720686

Date: 2025-07-31 01:52:40
Score: 1
Natty:
Report link

Looks like I was too smart by half. I already had the value. Thanks to the people who responded, it made me think harder :0)

var invoiceItemCntResult = query.runSuiteQL({
    query: 'select trandisplayname
    from transaction
    left join transactionline
    on transaction.id=transactionline.transaction
    WHERE custcol_cp_year > 0
    and custcol_cp_carrierid !== null
    and transaction.externalID = ?', params: [externalID]});              
var invoiceItemCnt = invoiceItemCntResult.asMappedResults();       

//Log ItemCnt
log.debug({
title: '1a. ItemCnt',
details: JSON.stringify(invoiceItemCnt.length)});
Reasons:
  • Blacklisted phrase (0.5): Thanks
  • Long answer (-0.5):
  • Has code block (-0.5):
  • Self-answer (0.5):
  • Low reputation (1):
Posted by: RayJohn

79720683

Date: 2025-07-31 01:48:39
Score: 1
Natty:
Report link

Converting the Map values() iterable into an array lets you use the Array.prototype.includes() method.

myMap.values().toArray().includes(z)

References:

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

79720677

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

enter image description hereI had fixed this issue by installing the python-multipart 0.0.20 in pycharm itself.

make sure you have selected python3.9 and then install the python-multipart

here is the path to install it in pycharm

PycharmProjects/multi_tool_agent->settings -> project (name is mentioned here like multi_tool_agent) -> python Interpreter -> select python multipart 0.0.20

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

79720675

Date: 2025-07-31 01:35:37
Score: 1.5
Natty:
Report link

Anyone still facing the same issue, and the below comment should not solve it.

Try this, as it happens to solve it on my end:

  1. Open File Explorer and go to:

    C:\Windows\System32

  2. Look for a file named git (no extension, or maybe git.exe).

  3. If you find it:

    • Rename it to git.old

    • Or delete it if you're sure it is not needed.

In PowerShell, run:

$gitPath = "C:\Program Files\Git\cmd" [Environment]::SetEnvironmentVariable("Path", $env:Path + ";$gitPath", "User")

Then restart PowerShell, that's it, that's all

Reasons:
  • Whitelisted phrase (-1): Try this
  • Long answer (-0.5):
  • Has code block (-0.5):
  • Me too answer (2.5): facing the same issue
  • Low reputation (1):
Posted by: Tuyishime Serge