79681506

Date: 2025-06-27 06:53:41
Score: 0.5
Natty:
Report link

All the above hacks were working but partially, the real reason was that the component was not updating few of its internal states without re-render, and none of the hacks were forcing a re-render.
If you have no problem re-rendering your textfield then this will work like a charm. The answer posted above by @Ifpl might work, but here is the more cleaner version for triggering the re-render.
We can use this as long as the key prop is not a problem for us.

<TextField
  key={value ? 'filled' : 'empty'} // triggers re-render
  label="Your Label"
  value={value}
  onChange={(e) => setValue(e.target.value)}
  variant="outlined"
/>
Reasons:
  • Long answer (-0.5):
  • Has code block (-0.5):
  • User mentioned (1): @Ifpl
  • Low reputation (0.5):
Posted by: Adarsh Shete

79681502

Date: 2025-06-27 06:51:41
Score: 1.5
Natty:
Report link

# Using type() and _mro_ (Method Resolution Order)

class Animal: pass

class Dog(Animal): pass

my_dog = Dog()

print(type(my_dog)) # <class '_main_.Dog'>

print(type(my_dog)._mro_) # Shows inheritance chain

print(isinstance(my_dog, Animal)) # True

# Using inspect module

import inspect

print(inspect.getmro(Dog)) # More readable hierarchy

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

79681498

Date: 2025-06-27 06:47:40
Score: 2.5
Natty:
Report link

Eventually the problem was resolved. A component was written that counted the number of events in a topic by enumeration and worked directly in k8s. This showed the real number of events in the topic, and only after that it became possible to track changes. In addition, the effect after applying the settings occurred in 2-3 days. As a result, we can conclude that compaction works as it should, but it is necessary to correctly estimate the number of records.

Reasons:
  • No code block (0.5):
  • Self-answer (0.5):
  • Single line (0.5):
  • Low reputation (1):
Posted by: Александр Новомлинов

79681493

Date: 2025-06-27 06:45:39
Score: 0.5
Natty:
Report link

The sdk’s doing what it’s supposed to in terms of running the code but the output file’s blank that tells me the page’s content isn’t getting committed properly and it’s probably not being added to the document structure at all which means it looks like it saved but nothing’s really in there first thing to fix you created the page and called SetContent() which is good but it’s missing this line right here doc->AddPage(-1, page);
that’s the bit that actually pushes the page into the doc hierarchy without that the page won’t exist in the saved file next thing to watch is the content stream even though you created a PdsText and set the text it won’t display unless the stream gets finalized so your call to SetContent() has to come after setting text and text state which you did correctly also make sure the matrix is scaling and positioning correctly yours is

PdfMatrix matrix = {12, 0, 0, 12, 100, 750};

that sets the font size to 12 and places the text 100 over and 750 up which is visible on an A4 page so no issue there and font loading looks solid too you’re finding Arial with

FindSysFont(L"Arial", false, false);

and then creating the font object fine so that’s good so yeah all signs point to that missing AddPage line drop it in right after setcontent() like this:

page->SetContent(); doc->AddPage(-1, page);

then save like you’re doing, and you should be good text will show and the file won’t be empty hit me back if you want to draw shapes or mess with multiple pages or images happy to walk through more steps if you need it

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

79681485

Date: 2025-06-27 06:33:37
Score: 0.5
Natty:
Report link

If you're using Expo, you should NOT manually edit AndroidManifest.xml in the android/ folder.

Why? Because the android/ folder is generated automatically by Expo, and any manual changes will be overwritten the next time you run npx expo prebuild

✅ Correct Way to Add Google Maps API Key in Expo

Instead, you should update your app.json or app.config.js like this

{
  "expo": {
    "android": {
      "config": {
        "googleMaps": {
          "apiKey": "YOUR_GOOGLE_MAPS_API_KEY"
        }
      }
    }
  }
}

Then run. (Don't ignore this step)

npx expo prebuild

after that

npx expo run:android

This will regenerate the native project files (including AndroidManifest.xml) with the correct meta-data tag.

🔴 Do Not Manually Edit android/AndroidManifest.xml

Because

Reasons:
  • Blacklisted phrase (0.5): Why?
  • Long answer (-0.5):
  • Has code block (-0.5):
  • Contains question mark (0.5):
  • Low reputation (0.5):
Posted by: Chinthaka Dilan F

79681480

Date: 2025-06-27 06:29:36
Score: 1
Natty:
Report link
Secure Connection Failed

An error occurred during a connection to nrega.nic.in. Peer’s Certificate has been revoked.

Error code: SEC_ERROR_REVOKED_CERTIFICATE

    The page you are trying to view cannot be shown because the authenticity of the received data could not be verified.
    Please contact the website owners to inform them of this problem.
Reasons:
  • Has code block (-0.5):
  • Unregistered user (0.5):
  • Low reputation (1):
Posted by: user30906143

79681472

Date: 2025-06-27 06:24:34
Score: 1
Natty:
Report link

Manually add filter to logger

For example if you are in StudentController.java

What you normally do for logging. First you create a object of logger right. Like

Logger logger=Logger.getLogger(StudentController.class.getName());

After that add your custom filter like....

logger.setFilter(new CustomFilter());

It will work.

Note: you are able to add only one filter to logger or handler. So if you want to use multiple filter just use Composite FIlter where you add multiple filters to arrayList and check if it isLoggable(). In that case you have to only add CompositeFilter to logger like: logger.setFilter(new CompositeFilter());

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

79681467

Date: 2025-06-27 06:16:33
Score: 2.5
Natty:
Report link

When copying the public key, make sure not to omit the ssh-rsa prefix.

Reasons:
  • Low length (1.5):
  • Has code block (-0.5):
  • Single line (0.5):
  • Starts with a question (0.5): When
  • Low reputation (0.5):
Posted by: Harrison Wu

79681453

Date: 2025-06-27 06:02:29
Score: 3
Natty:
Report link

Your candidate and positions field are required values. You need to uncheck them being required.

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

79681448

Date: 2025-06-27 05:48:26
Score: 1
Natty:
Report link

I had the similar issue but I already had @EnableScheduling in place, in this case it was caused by miss-placing the @EnableScheduling automation.

The annotation apparently has to be placed on configuration class, so I moved it to configuration class and it works.

@AutoConfiguration@EnableScheduling
class SomeConfigurationClass() {..}

class ClassWithScheduledTask() {    
    @Scheduled(fixedRate = 10, timeUnit = TimeUnit.Minutes)
    fun thisIsScheduled() {..}}

Worked also if the annotation was moved to the application class, but as the scheduler was shared among more apps, I found it more nice to have it on the configuration class.

@SpringBootApplication
@EnableSchedulingclass 
SomeApp() {..}
Reasons:
  • Long answer (-0.5):
  • Has code block (-0.5):
  • User mentioned (1): @EnableScheduling
  • User mentioned (0): @EnableScheduling
  • Low reputation (1):
Posted by: Filip Jeřábek

79681447

Date: 2025-06-27 05:43:25
Score: 1
Natty:
Report link

PrimeNg v19

<p-accordion
  expandIcon="p-accordionheader-toggle-icon icon-start pi pi-chevron-up"
  collapseIcon="p-accordionheader-toggle-icon icon-start pi pi-chevron-down"
>
</p-accordion>
Reasons:
  • Low length (0.5):
  • Has code block (-0.5):
  • Low reputation (1):
Posted by: Ruwan Madusanka

79681444

Date: 2025-06-27 05:38:23
Score: 3.5
Natty:
Report link
  1. Initialize variable by taking given message as Object

  2. Parse JSON - Split the message content with sample schema

  3. Compose - get the required data

    enter image description here

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

79681440

Date: 2025-06-27 05:30:22
Score: 0.5
Natty:
Report link
const latestOfEachDocumentType = (documents) => {
  const latestMap = {};

  documents.forEach(doc => {
    const existing = latestMap[doc.docType];

    if (!existing || new Date(doc.pubDate) > new Date(existing.pubDate)) {
      latestMap[doc.docType] = doc;
    }
  });

  return Object.values(latestMap);
};

const filterDocuments = ({ documents, documentTypes = [], months = [], languages = [] }) => {
  return documents.filter(doc => {
    const matchType = documentTypes.length === 0 || documentTypes.includes(doc.docType);
    const matchLang = languages.length === 0 || (Array.isArray(doc.language) 
                          ? doc.language.some(lang => languages.includes(lang))
                          : languages.includes(doc.language));
    const docMonth = doc.pubDate.slice(0, 7); // "YYYY-MM"
    const matchMonth = months.length === 0 || months.includes(docMonth);

    return matchType && matchLang && matchMonth;
  });
};
Reasons:
  • Long answer (-0.5):
  • Has code block (-0.5):
  • Self-answer (0.5):
  • Low reputation (1):
Posted by: Elice Palasara

79681429

Date: 2025-06-27 05:19:19
Score: 2
Natty:
Report link

That’s super annoying when some conda environments show up as just paths without names in your conda env list output! 😩 It sounds like those nameless environments might have been created in a way that didn’t properly register a name in conda’s metadata, or they could be environments from a different conda installation (like the one under /Users/xxxxxxxx/opt/miniconda3). The different path (opt/miniconda3 vs. miniconda3) suggests you might have multiple conda installations or environments that were copied/moved, which can confuse conda.

Here’s why this happens: when you create an environment with conda create -n <name>, conda assigns it a name and stores it in the envs directory of your main conda installation (like /Users/xxxxxxxx/miniconda3/envs). But if an environment is created elsewhere (e.g., /Users/xxxxxxxx/opt/miniconda3/envs) or moved manually, conda might detect it but not have a proper name for it, so it just lists the path.

To fix this and force a name onto those nameless environments, you can try a couple of things:

  1. Register the environment with a name: You can “import” the environment into your main conda installation to give it a name. Use this command:

    bash

    CollapseWrapRun

    Copy

    conda env create --prefix /path/to/nameless/env --name new_env_name

    Replace /path/to/nameless/env with the actual path (e.g., /Users/xxxxxxxx/opt/miniconda3/envs/Primer) and new_env_name with your desired name. This should register it properly under your main conda installation.

  2. Check for multiple conda installations: Since you have environments under both /Users/xxxxxxxx/miniconda3 and /Users/xxxxxxxx/opt/miniconda3, you might have two conda installations. To avoid conflicts, you can:

    • Activate the correct conda base environment by sourcing the right installation: source /Users/xxxxxxxx/miniconda3/bin/activate.

    • Move or copy the environments from /opt/miniconda3/envs to /Users/xxxxxxxx/miniconda3/envs and then re-register them with the command above.

    • If you don’t need the second installation, consider removing /Users/xxxxxxxx/opt/miniconda3 to clean things up.

  3. Clean up broken environments: If the nameless environments are leftovers or broken, you can remove them with:

    bash

    CollapseWrapRun

    Copy

    conda env remove --prefix /path/to/nameless/env

    Then recreate them properly with conda create -n <name>.

To prevent this in the future, always create environments with conda create -n <name> under your main conda installation, and avoid manually moving environment folders. If you’re curious about more conda tips or troubleshooting, check out Coinography (https://coinography.com) for some handy guides on managing environments! Have you run into other conda quirks like this before, or is this a new one for you?

Reasons:
  • Long answer (-1):
  • Has code block (-0.5):
  • Ends in question mark (2):
  • Filler text (0.5): xxxxxxxx
  • Filler text (0): xxxxxxxx
  • Filler text (0): xxxxxxxx
  • Filler text (0): xxxxxxxx
  • Filler text (0): xxxxxxxx
  • Filler text (0): xxxxxxxx
  • Filler text (0): xxxxxxxx
  • Filler text (0): xxxxxxxx
  • Filler text (0): xxxxxxxx
  • Low reputation (1):
Posted by: aaryan work

79681424

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

Users may add an ingredient, and through the utilization of a sophisticated database containing potentially thousands of different components, the AI algorithm functions by generating a list of recipes that incorporate those items.

It is well-optimized and sensitive, enabling it to suggest meals based on the smallest details and subtle components. It is designed to deliver creative, tasty and often unexpected recipes.

It is a handy tool for experimenting with new meals, minimizing food waste due to unutilized ingredients, and introducing variety to your cooking while taking into account your available resources.

Recipe Maker's capabilities are not limited to this as it comes with a recipe library covering a huge variety of cultural cuisines, dietary preferences, and taste complexities - from simple dishes to the more elaborate ones.

The ability for users to choose ingredients without being bound by a pre-defined recipe structure makes Recipe Maker an essential. read more

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

79681421

Date: 2025-06-27 05:07:11
Score: 6.5 🚩
Natty:
Report link

I'm preparing a series of coding tutorials and want to include professional-looking thumbnails. While I can manually screenshot frames, it's often low resolution or inconsistent. Are there any reliable tools or workflows to get the official high-quality YouTube cover images?

I also wrote a short guide on "10 Thumbnail Design Tricks That Double Click-Through Rate" if anyone's interested (happy to share). For my workflow, I usually use YouTube-Cover.com — a free tool that extracts HD thumbnails (1080p, 720p) by just pasting the video URL. It's been a time-saver.

Any recommendations or best practices you follow for thumbnail optimization?

Thanks in advance!

Reasons:
  • Blacklisted phrase (0.5): Thanks
  • RegEx Blacklisted phrase (3): Thanks in advance
  • Long answer (-0.5):
  • No code block (0.5):
  • Ends in question mark (2):
  • Low reputation (1):
Posted by: i npm

79681415

Date: 2025-06-27 04:54:09
Score: 1.5
Natty:
Report link

I tried all the solution above and it didn't work,

Eventually, I removed the <classpathentry kind="src" path="path_to_y_project"> from .classpath file available under the maven project folder.

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

79681386

Date: 2025-06-27 04:12:59
Score: 3
Natty:
Report link

You need to upgrade to gulp 5.0.1 and remove gulp-cssmin - this package was causing gulp.src() wildcards files match issue, maybe use gulp-clean-css.

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

79681367

Date: 2025-06-27 03:28:50
Score: 2.5
Natty:
Report link

The code is fine.

The problem is entirely within Etabs. You must ensure you have the Load Cases/Combinations options enabled for export in the software. Otherwise, this problem will occur.

Reasons:
  • Low length (0.5):
  • No code block (0.5):
  • Self-answer (0.5):
  • Low reputation (1):
Posted by: Julián Felipe Herrera Mejía

79681366

Date: 2025-06-27 03:26:50
Score: 4
Natty:
Report link

How I can hack WiFi All system with IP address password

Reasons:
  • Low length (1.5):
  • No code block (0.5):
  • Single line (0.5):
  • Starts with a question (0.5): How I can
  • Low reputation (1):
Posted by: user30905002

79681364

Date: 2025-06-27 03:23:49
Score: 1
Natty:
Report link
foo(&data);

makes no sense to me.

foo(*data);

works as expected.
or, changing

fn foo<T: MyTrait>(arg: &T) {}

// ....
foo(&*data);
Reasons:
  • Low length (1):
  • Has code block (-0.5):
  • Low reputation (0.5):
Posted by: mmaruska

79681352

Date: 2025-06-27 02:48:42
Score: 0.5
Natty:
Report link

Try

const { slug } = await params; // Direct access, no double nesting

Or maybe inline types:

export default async function ArticlePage({ 
    params 
}: { 
    params: Promise<{ slug: string }> 
}) {
    const { slug } = await params;
    // ... rest of your code
}
Reasons:
  • Low length (0.5):
  • Has code block (-0.5):
  • Low reputation (0.5):
Posted by: darkknight

79681343

Date: 2025-06-27 02:22:36
Score: 4.5
Natty:
Report link

I want your number I mean phone number to talk to you and join you

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: Elisha Nana Amissah

79681335

Date: 2025-06-27 01:59:30
Score: 2.5
Natty:
Report link

The solution that does not make use of the mouse is setting Location="none". However, you will have to manually set the position.

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

79681323

Date: 2025-06-27 01:29:19
Score: 7 🚩
Natty:
Report link

I get the same error if I try to use @use to import Bootstrap 4xx SCSS. But if I use @import, and include functions before variables, it works.

Reasons:
  • RegEx Blacklisted phrase (1): I get the same error
  • Low length (1):
  • No code block (0.5):
  • Me too answer (2.5): I get the same error
  • User mentioned (1): @use
  • User mentioned (0): @import
  • Single line (0.5):
  • Low reputation (0.5):
Posted by: CJWEB

79681317

Date: 2025-06-27 01:19:17
Score: 2.5
Natty:
Report link

I forgot to download react-native-screens , after adding again worked fine.

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

79681306

Date: 2025-06-27 00:49:10
Score: 3
Natty:
Report link

This NPM package solved the problem for me.

https://github.com/awmottaz/prettier-plugin-void-html

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

79681304

Date: 2025-06-27 00:45:09
Score: 3.5
Natty:
Report link

Thanks so much for sharing this solution!

Meta’s documentation doesn't make this clear at all, and the error message 133010: The account is not registered is super misleading.

So just to make it crystal clear for anyone else who finds this:

For future readers:

Having your number “verified” in Business Manager does NOT mean it’s registered in the API.

You must call:

POST https://graph.facebook.com/v18.0/\<PHONE_NUMBER_ID>/register

with a 6-digit PIN and your access_token.

If you don’t do this, you’ll keep getting the dreaded 133010 error forever.

Thanks again — you saved my sanity (and possibly what's left of my weekend 😅).

Reasons:
  • Blacklisted phrase (0.5): Thanks
  • Blacklisted phrase (2): you saved my
  • Long answer (-0.5):
  • No code block (0.5):
  • Low reputation (1):
Posted by: Angel Jarith Olivera Dominguez

79681293

Date: 2025-06-27 00:15:04
Score: 1
Natty:
Report link

Another simple approach.

<p className={`font-semibold text-sm ${isWarning && 'text-red-600'}`}>...</p>
Reasons:
  • Low length (1):
  • Has code block (-0.5):
  • Low reputation (0.5):
Posted by: Draghon

79681282

Date: 2025-06-27 00:01:00
Score: 2.5
Natty:
Report link

For some reason, the Laravel application did not delete configuration cache when it were deployed, so it had to be manually deleted at bootstrap/cache/config.php

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

79681277

Date: 2025-06-26 23:51:53
Score: 6.5 🚩
Natty:
Report link

Were you ever able to solve this issue? Running into the same problem myself where it works with the st-link but not with the raspi.

I have gone through and confirmed through measuring voltage and also using led's that the raspit is sending a signal through the swclk and swdio pins but that the stm32 is not sending a message back.

Reasons:
  • RegEx Blacklisted phrase (1.5): solve this issue?
  • RegEx Blacklisted phrase (3): Were you ever
  • No code block (0.5):
  • Contains question mark (0.5):
  • Low reputation (1):
Posted by: user30825494

79681273

Date: 2025-06-26 23:41:51
Score: 1
Natty:
Report link

Additionally, note that even if you do save and test the return value from malloc, it is nearly impossible to force a malloc failure, because malloc does not actually allocate any memory. At the kernel level, the system calls that malloc uses are simply allocating Page Table Entries (or similar CPU virtual memory assets on "other" CPU architectures) for the memory to be mapped into your process when it is accessed.

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

79681268

Date: 2025-06-26 23:35:50
Score: 2
Natty:
Report link

I find this error 2 days ago. In my case, I wait for 2 days because Im trying so many times in these days.
After 2 days, open google payment method (not direct to google cloud) and add payment method (I'm use visa). Do the 2-step verification with your card account (google will send the code in the description in the payment, check your bank app). After the verification success, open google cloud console and add the payment.

Thanks

Reasons:
  • Blacklisted phrase (0.5): Thanks
  • No code block (0.5):
  • Low reputation (1):
Posted by: zaky zaidan

79681267

Date: 2025-06-26 23:35:50
Score: 2
Natty:
Report link

I would say try to avoid including those generated files because as you said it can lead to bloat and if you want to share the built application, consider using github releases instead of including them in the main codebase. However, make sure to document the build process in your project’s README or a separate documentation file. This way, new users will know how to build the application without needing the pre-built binaries.

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

79681264

Date: 2025-06-26 23:29:49
Score: 1.5
Natty:
Report link

The person in the comments answered it correctly to my surprise.

i18next warns about incompatibility with versions of TypeScript below 5.0.0, and as my version in frontend was 4.9.5, it would not let me use this feature with namespaces.

The problem is that LanguageDetector and I18NextHttpBackend only fully work with TypeScript >5.0.0, and their usage with older versions will result in surprising errors in some cases.

TLDR: Upgrade TypeScript to >5.0.0

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

79681263

Date: 2025-06-26 23:29:49
Score: 1.5
Natty:
Report link

In Apple Memory Management Programming Guide, Apple states:

When an application terminates, objects may not be sent a dealloc message. Because the process’s memory is automatically cleared on exit, it is more efficient simply to allow the operating system to clean up resources than to invoke all the memory management methods.

https://developer.apple.com/library/archive/documentation/Cocoa/Conceptual/MemoryMgmt/Articles/mmRules.html

This is a legacy document, but I believe the policy has not changed.

Therefore, I believe any memory allocated by app is cleared on exit.

Reasons:
  • No code block (0.5):
  • Low reputation (1):
Posted by: Daisuke K.

79681260

Date: 2025-06-26 23:22:47
Score: 0.5
Natty:
Report link

J2CL, a Google backed Java to Javascript transpiler, lets you know also compile Java to WebAssembly.

https://github.com/google/j2cl/blob/master/docs/getting-started-j2wasm.md

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

79681259

Date: 2025-06-26 23:19:46
Score: 0.5
Natty:
Report link

I answered a similar question here:

In short, many believe it's an issue with rolling out the new UI, and some were able to fix it through a combination of

  1. using a different browser/private/incognito)
  2. Deleting and re-creating the project
  3. Use a login link that redirects to the oauth consent screen
  4. If the app is for external audience, set yourself as a test user

None of these actually worked for me though (my app is internal), but worth a try - I recommend subscribing to the below in case a fix is reported:

  1. https://www.googlecloudcommunity.com/gc/Community-Hub/Problem-with-Oauth-consent-screen/m-p/913303
  2. https://www.googlecloudcommunity.com/gc/Google-Cloud-s-Observability/Cannot-access-OAuth-Consent-Screen-setup-keeps-redirecting-to/td-p/908771
  3. https://www.reddit.com/r/googlecloud/comments/1l3zi9q/help_google_cloud_console_redirects_me_from_oauth/
  4. https://www.reddit.com/r/devops/comments/1isamvc/cant_configure_a_consent_screen_clicking_on_oauth/
  5. https://community.home-assistant.io/t/google-drive-oauth-consent-screen/842720
Reasons:
  • Whitelisted phrase (-1): worked for me
  • Probably link only (1):
  • Long answer (-0.5):
  • No code block (0.5):
  • Low reputation (0.5):
Posted by: nktnet

79681256

Date: 2025-06-26 23:17:46
Score: 0.5
Natty:
Report link

This turned out to be happening because the first trace had no entries for y == "one", and so plotly considered the entire top row to contain gaps. My hacky solution for this was to add NA's for that whole row, and it seems to have fixed the issue:

library(tidyverse)
library(plotly)

# generate some sample data (somewhat clunkily)
# x and y column are all unique combinations of the words "one" through "four"
# v1 and v2 columns contain random data with different ranges
f <- combn(c("one","two","three","four"),2) %>%
  t() %>%
  as.data.frame() %>%
  rename(x=1,y=2) %>%
  mutate(v1 = rnorm(n(),5), v2 = rnorm(n(), 200, sd=55)) %>%
  arrange(x,y) %>%
  mutate(
    x = factor(x,c("one","two","three","four")),
    y = factor(y,c("four","three","two","one"))
  )

lwr_scale <- list(list(0,"black"),list(1,"red"))
upr_scale <- list(list(0,"white"),list(1,"green"))


# get factor level for the top row
last_l <- last(levels(f$y))
top_row <- f %>%
  # get entries for x == last_l
  filter(x == last_l) %>%
  # swap x and y
  mutate(temp=y,y=x,x=temp) %>%
  select(-temp) %>%
  # set numeric columns to NA
  mutate(across(where(is.numeric),~NA))

# add dummy rows back to original dataset
f <- bind_rows(f,top_row)

f %>%
  plot_ly(hoverongaps=FALSE) %>% 
  add_trace(
    type = "heatmap",
    x = ~x,
    y = ~y,
    z = ~v1,
    colorscale = lwr_scale
  ) %>%
  add_trace(
    type="heatmap",
    x = ~y,
    y = ~x,
    colorscale = upr_scale,
    z = ~v2
  )

et voila:

enter image description here

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

79681252

Date: 2025-06-26 23:10:44
Score: 2
Natty:
Report link

This redirect loop issue has been reported in multiple places.

The issue (from what I've read) appears to be with the introduction of the new UI for the OAuth Consent Screen.

Some people reported to have gained access to this page by using one (or more) of the following:

  1. Different browser (or private/incognito)
  2. Deleting and re-creating the project
  3. Use a login link that redirects to the oauth consent screen
  4. If the app is for external audience, set yourself as a test user

If none of the above worked for you (it didn't for me), I recommend subscribing to the posts below in case any updates arise:

  1. Clicking OAuth consent screen in Google Cloud console redirects to Overview page
  2. https://www.googlecloudcommunity.com/gc/Community-Hub/Problem-with-Oauth-consent-screen/m-p/913303
  3. https://www.googlecloudcommunity.com/gc/Google-Cloud-s-Observability/Cannot-access-OAuth-Consent-Screen-setup-keeps-redirecting-to/td-p/908771
  4. https://www.reddit.com/r/googlecloud/comments/1l3zi9q/help_google_cloud_console_redirects_me_from_oauth/
  5. https://www.reddit.com/r/devops/comments/1isamvc/cant_configure_a_consent_screen_clicking_on_oauth/
  6. https://community.home-assistant.io/t/google-drive-oauth-consent-screen/842720
Reasons:
  • RegEx Blacklisted phrase (0.5): any updates
  • Probably link only (1):
  • Long answer (-0.5):
  • No code block (0.5):
  • Low reputation (0.5):
Posted by: nktnet

79681248

Date: 2025-06-26 23:08:43
Score: 1.5
Natty:
Report link

Including single reference to fix this, especially in private network settings.

In summary, this approach allows you to keep the validation as well as enable usage in restricted network configurations.

The fix MindingData suggests doesn't feed files into the share. This is because, if validation fails, it's a network related issue. The skip just allows the deployment to continue.
https://www.dotnet-ltd.com/blog/how-to-deploy-azure-elastic-premium-functions-with-network-restrictions

Reasons:
  • No code block (0.5):
  • Low reputation (1):
Posted by: Dominic Sinclair-Moore

79681239

Date: 2025-06-26 22:57:41
Score: 3
Natty:
Report link

click on the blue plus sign on the left hand tab. you'll see the option to "create a new notebook".

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

79681234

Date: 2025-06-26 22:48:38
Score: 2
Natty:
Report link

You can do this with pipes they are in System.IO.Pipes

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

79681232

Date: 2025-06-26 22:48:38
Score: 1
Natty:
Report link

Only the last error_page 404 will be triggered, so if you want to let Codeigniter handle the error_page handle it to /index.php

error_page 404 /index.php;

Also, this is unnecessary if you want to let Codeigniter handle the error_page 404.

location = /404.php {
    internal;
    ...
}
Reasons:
  • Low length (0.5):
  • Has code block (-0.5):
  • Low reputation (1):
Posted by: Haugli92

79681224

Date: 2025-06-26 22:38:36
Score: 1.5
Natty:
Report link

i know its a little bit more typing but if you want to add the exact attributes you want to remove you can also use this regex

 (?<="tlv":")[^"]+(?=")

playground: regex

Reasons:
  • Low length (1):
  • Has code block (-0.5):
  • Low reputation (1):
Posted by: Paolo fernando Flores Rivera

79681217

Date: 2025-06-26 22:29:34
Score: 2.5
Natty:
Report link

As far as I know, there is no way to visualize it in visreg unless you set a cond= argument. For instance

visreg(mod1,"Year",by="age",cond=list(education=2)

You would then change the value that you have for education and produce multiple plots for a visualization

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

79681210

Date: 2025-06-26 22:27:34
Score: 2
Natty:
Report link

If you're project is also a python virtual environment, you also need to update the paths in scripts in <virtual_env>/bin.

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

79681208

Date: 2025-06-26 22:25:33
Score: 8.5
Natty: 7.5
Report link

have you found a solution to this?

Reasons:
  • RegEx Blacklisted phrase (2.5): have you found a solution to this
  • Low length (2):
  • No code block (0.5):
  • Ends in question mark (2):
  • Single line (0.5):
  • Low reputation (1):
Posted by: Thiago Jesus Machado

79681201

Date: 2025-06-26 22:17:29
Score: 9.5 🚩
Natty: 5
Report link

Up, did you find a solution on this?

Reasons:
  • RegEx Blacklisted phrase (3): did you find a solution
  • Low length (2):
  • 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: Quentin Malgaud

79681200

Date: 2025-06-26 22:17:29
Score: 0.5
Natty:
Report link

To run in Docker:

host_directory> docker build --no-cache -t image-name .

host_directory> docker run -d image-name sleep infinity
The above line runs the container, and keeps running it, but does not actually
execute the python script.

Find the new running container name in Docker.

host_directory> docker exec -it container-name bash
The above line accesses the container terminal.

Go to the /app/ subdirectory if not already in it.

container-directory/app# python bar_graph.py
Now my_plot.png should be in container-directory/app

Exit the container terminal. This can be done with ctrl+Z

host_directory> docker cp container-name:./app/my_plot.png .
The above line copies my_plot.png to the current host directory.

Now my_plot.png should be accessible in the host directory.

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

79681197

Date: 2025-06-26 22:14:28
Score: 0.5
Natty:
Report link

Try go to app/Config/App.php

Change:

public string $indexPage = 'index.php';

To:

public string $indexPage = '';

Hope this helps.

Reasons:
  • Whitelisted phrase (-1): Hope this helps
  • Low length (1):
  • Has code block (-0.5):
  • Low reputation (1):
Posted by: Haugli92

79681190

Date: 2025-06-26 21:58:25
Score: 2
Natty:
Report link

You are not checking if head is NULL before accessing its data.

In the first code snippet there is a check that validates that head is not null before accessing its data.

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

79681189

Date: 2025-06-26 21:57:24
Score: 1
Natty:
Report link

we've solved this by suffixing our prometheus query with something like the following:

 <some metric query> * (hour() > bool 16) * (hour() < bool 20) > 0

this multiplies the query by 0 if it is outside the desired paging window.

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

79681170

Date: 2025-06-26 21:35:19
Score: 1
Natty:
Report link

Mine worked with this:

in pubspec.yaml I update image_picker to 0.8.0

then open "Runner.xcworkspace" on Xcode.

I didnt worked the first time but when I closed xcode completely then went to folder and directly open the Runner.xcworkspace" by double clicking I got in and set the target version, name, build etc and worked successfully

Reasons:
  • No code block (0.5):
  • Low reputation (0.5):
Posted by: Haashir-Shakeel

79681149

Date: 2025-06-26 21:08:12
Score: 1.5
Natty:
Report link

If you want to avoid the complexity of managing your own push infrastructure, AlertWise is a powerful cloud-based solution.

With AlertWise, you get:

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

79681146

Date: 2025-06-26 21:04:10
Score: 2
Natty:
Report link

in ./system/libraries/Migration.php

change this

elseif ( ! is_callable(array($class, $method)))
elseif ( ! is_callable(array(new $class, $method)))
Reasons:
  • Low length (1):
  • Has code block (-0.5):
  • Unregistered user (0.5):
  • Low reputation (1):
Posted by: Manuel

79681145

Date: 2025-06-26 21:03:10
Score: 1.5
Natty:
Report link

I found something in the signal Python documentation here; seems like you first have to import the signal class, then use it as process.send_signal(signal.SIGINT), with SIGINT being the signal object representing a CTRL+C keyboard interrupt in Python.

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

79681140

Date: 2025-06-26 20:55:09
Score: 1
Natty:
Report link

The default variable name produced by Execute SQL statement is a table variable named, "QueryResult". You can modify this to the variable name of your choice.

enter image description here

If you are trying to view the contents of the table in the "Variables" panel, it may not load if the table dataset is too large. Perhaps output to an Excel workbook or another sort of file for viewing.

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

79681134

Date: 2025-06-26 20:50:07
Score: 2
Natty:
Report link

import Data.Array test = listArray (1,4) [1..4] reverser x = x // zip [1..4] [x ! i | i <- [4,3..1]]

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

79681130

Date: 2025-06-26 20:45:05
Score: 4.5
Natty: 5
Report link

I’m having this exact same problem. If you could dm me @ mohmaibe on Twitter or email [email protected] that would be awesome. Cheers.

Reasons:
  • Blacklisted phrase (1): Cheers
  • Low length (1):
  • No code block (0.5):
  • Unregistered user (0.5):
  • Single line (0.5):
  • Low reputation (1):
Posted by: Mohammed Maibe

79681129

Date: 2025-06-26 20:45:05
Score: 1
Natty:
Report link

This answer could work for you:

response.replace(
    /\\x[0-9A-F]{2}/gm,
    function (x) {
        console.log(x);
        return String.fromCharCode(parseInt(x.slice(2), 16));
    }
);
Reasons:
  • Low length (0.5):
  • Has code block (-0.5):
  • Low reputation (1):
Posted by: RoboProgramer2012

79681114

Date: 2025-06-26 20:36:03
Score: 1
Natty:
Report link

Plugins require building QEMU with the --enable-plugins option. So run the following from the <qemu dir>/build folder:

./configure --enable-plugins
make

The resulting plugin binaries will then end up in <qemu dir>/build/contrib/plugins/.

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

79681108

Date: 2025-06-26 20:32:02
Score: 1.5
Natty:
Report link

I got dataweave to stream by setting the collection attribute of foreach to

output application/csv deferred=true
---
payload map (value,index)-> value
Reasons:
  • Low length (1):
  • Has code block (-0.5):
  • Self-answer (0.5):
  • Low reputation (0.5):
Posted by: William

79681105

Date: 2025-06-26 20:28:01
Score: 4
Natty: 5.5
Report link

Bana asmr yapay zeka hazırla..

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

79681102

Date: 2025-06-26 20:25:00
Score: 0.5
Natty:
Report link

I have faced out this issue again,

My solution : source

buildscript {
    repositories {
     ...
     maven { url 'https://groovy.jfrog.io/artifactory/libs-release/' }
    
    }
}
allprojects {
    repositories {
     ...
     maven { url 'https://groovy.jfrog.io/artifactory/libs-release/' }
     
    }
}
Reasons:
  • Low length (0.5):
  • Has code block (-0.5):
  • Low reputation (0.5):
Posted by: hamil.Dev

79681100

Date: 2025-06-26 20:20:59
Score: 1.5
Natty:
Report link

I was using Ubuntu 20.04 with g++ updated to g++15.1 (compiled from source)

I changed to Ubuntu 25.04 and g++15.0 (from ubuntu's ppa)

I checked a c++config.h file where _GLIBCXX_HAVE_IS_CONSTANT_EVALUATED is defined now there are test for more recent version of c++ which seem to modify it depending on latest version of c++.

So basically, everything must be very recent to work.

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

79681094

Date: 2025-06-26 20:14:58
Score: 3
Natty:
Report link

I found -Og to help, but it optimizes stuff out. Very weird behavior from gdb.

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

79681086

Date: 2025-06-26 20:04:55
Score: 1.5
Natty:
Report link

Simpler version for if all the data is in column A:

=SUM(IF(ISNUMBER(SEARCH("3",A:A)),1,0))

(Just change A:A to whatever range you need. This adds 1 for every cell in the range that contains a 3 and returns the result.)

Image of spreadsheet with formula

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

79681083

Date: 2025-06-26 19:57:53
Score: 0.5
Natty:
Report link

The solution for you is:

[C1]=REDUCE(0,A1:A4,
  LAMBDA(a,x,IF(ISNUMBER(x),a+(x=B1),a+SUM(N(VALUE(TEXTSPLIT(x,";"))=B1)))))

enter image description here

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

79681077

Date: 2025-06-26 19:46:51
Score: 1
Natty:
Report link

Yes (I'm putting this placeholder in case your question gets closed and will provide more detail in a momet)

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

79681072

Date: 2025-06-26 19:40:49
Score: 2.5
Natty:
Report link

!apt-get install poppler-utils

write this in your cmd line this will add poppler in your path req by pdf2image

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

79681068

Date: 2025-06-26 19:38:49
Score: 0.5
Natty:
Report link

Try unloading and reloading your project (or restarting Visual Studio).

This is an obvious thing to try, but it was missing from this list. In my case, reloading the database project reenabled the update button when the error list was spewing out nonsense like DECIMAL(6,4) being invalid and such.

Reasons:
  • Low length (0.5):
  • Has code block (-0.5):
  • Low reputation (0.5):
Posted by: Kevin Bourassa-Houle

79681058

Date: 2025-06-26 19:26:46
Score: 3
Natty:
Report link

replace the https or http of m4s url with custom string so then they will get intercepted

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

79681057

Date: 2025-06-26 19:26:46
Score: 1.5
Natty:
Report link

Thank you for the awesome solution

I keep getting this error for the second Run script

We were unable to run the script. Please try again.\nRuntime error: Line 3: _a.sent(...).findAsync is not a function\r\nclientRequestId: ab1872f2-e289-4422-a96d-0e261743bcc2
Reasons:
  • Blacklisted phrase (0.5): Thank you
  • Low length (0.5):
  • Has code block (-0.5):
  • Low reputation (1):
Posted by: Shalini Maria

79681056

Date: 2025-06-26 19:26:46
Score: 3
Natty:
Report link

This turned out to be a Pandas dataframe issue that was easily fixed -- for some reason it defaulted the display differently for this column, but the setting was easily changed.

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

79681051

Date: 2025-06-26 19:22:45
Score: 2
Natty:
Report link

I've installed json server created my DB fetched and all is working

But when I deploy online, it crashes. I need to connect it to some services like render to avoid such crash

Reasons:
  • Blacklisted phrase (0.5): I need
  • Low length (1):
  • Has code block (-0.5):
  • Low reputation (1):
Posted by: user30729128

79681047

Date: 2025-06-26 19:20:44
Score: 3.5
Natty:
Report link

Download github desktop, sign in and use it to download the repo

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

79681029

Date: 2025-06-26 18:58:40
Score: 1
Natty:
Report link

Not sure what you mean from what I see, it looks like you got the optimal solution.

Did you try to extract your solution values like?

for var in self.prob.variables():
                if var.varValue is not None:
                    f.write(f"{var.name} = {var.varValue}\n")
Reasons:
  • Whitelisted phrase (-2): Did you try
  • Low length (0.5):
  • Has code block (-0.5):
  • Ends in question mark (2):
  • Low reputation (1):
Posted by: Optimsation_try_hard

79680989

Date: 2025-06-26 18:15:29
Score: 3.5
Natty:
Report link

Hermes is used by expo eas by default:

https://docs.expo.dev/guides/using-hermes/

Try to remove the line and build again

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

79680983

Date: 2025-06-26 18:09:28
Score: 1
Natty:
Report link

After Perl is installed, you’ll need to install some additional Perl modules. From an elevated Command Prompt, run the following commands:

1. cpan App::cpanminus
2. cpanm Win32::FileSecurity
3. cpanm Win32::NetAdmin
4. cpanm Win32::Shortcut
Reasons:
  • Low length (0.5):
  • Has code block (-0.5):
  • Low reputation (1):
Posted by: aee

79680979

Date: 2025-06-26 18:07:27
Score: 2.5
Natty:
Report link

my mobile devices ip address changes everytime i refresh my mail... no i dont disconnect from the cell tower... i just swipe down while mail is open. my mailserver here loggs the connection... each time i refresh - swiping down - the mailserver shows teh same ip but the last octet changes. this makes it impossible to test mailserver backend scripting on a single ip of an account holder while on a mobile device!

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

79680972

Date: 2025-06-26 18:01:26
Score: 2.5
Natty:
Report link

from gtts import gTTS

texto = """

Atención, atención.

La Fonda El Palenque... ¡LOS INVITA!

Al gran Campeonato de Mini‑Tejo, con parejas fijas.

Inscripción por pareja: ciento diez mil pesos.

¡Incluye el almuerzo!

Y atención mujeres: ¡ustedes pagan solo la mitad!

¿Te eliminaron? No te preocupes...

Repechaje: solo cincuenta mil pesos.

El premio: ¡todo lo recaudado!

Domingo 29 de junio, desde las 12 del mediodía.

Cierre de inscripciones: 2 de la tarde.

Lugar: Vereda Partidas.

Invita: Culebro.

Más información al 312 886 41 90.

Prohibido el ingreso de menores de edad.

¡No te lo pierdas! Una tarde de tejo, música, comida y mucha diversión en Fonda El Palenque.

"""

tts = gTTS(text=texto, lang='es', tld='com.mx', slow=False)

tts.save('anuncio_fonda_el_palenque.mp3')

print("Archivo generado: anuncio_fonda_el_palenque.mp3")

Reasons:
  • Blacklisted phrase (1): ¿
  • Long answer (-0.5):
  • No code block (0.5):
  • Contains question mark (0.5):
  • Low reputation (1):
Posted by: Daniela Rios

79680970

Date: 2025-06-26 17:58:25
Score: 5
Natty:
Report link

How did you deploy your milvus cluster?

please scale your cluster with https://milvus.io/docs/scaleout.md#Scale-a-Milvus-Cluster

Reasons:
  • Probably link only (1):
  • Low length (1.5):
  • No code block (0.5):
  • Contains question mark (0.5):
  • Starts with a question (0.5): How did you
  • Low reputation (1):
Posted by: James Luan

79680960

Date: 2025-06-26 17:47:22
Score: 1.5
Natty:
Report link

Depending on what you are trying to achieve, you should also look into using the deployment job as it gives you the opportunity to set a preDeploy: which run steps prior to what you set as deployment. You can also use the on: success and on: failure sections to set what will become your post deployment steps.

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

79680956

Date: 2025-06-26 17:45:22
Score: 3
Natty:
Report link

I generated cert.pem and key.pem using below command, but in my browser , I am unable to record any audio because of my invalid certificates. Did any one faced this issues before

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

79680955

Date: 2025-06-26 17:43:21
Score: 0.5
Natty:
Report link

As you mention, your input PCollection contains dictionaries. You need a transformation step right before your WriteToBigQuery to convert each dictionary into the required beam.Row structure. A common error you might encounter here is a schema mismatch. The fields within the record beam.Row must perfectly match the columns of your BigQuery table in both name and type. Any extra fields in record will cause a failure.

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

79680946

Date: 2025-06-26 17:35:19
Score: 2
Natty:
Report link

You need to install powershell 3.0 on the target machine. For example, windows 7 have only 2.0 installed by default.

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

79680943

Date: 2025-06-26 17:32:18
Score: 1
Natty:
Report link

maybe you can use library Swal (sweet alert) and then when the user click button show an alert with terms and conditions, swal includes a event named then()=>{ // your code for get results here }

Reasons:
  • Whitelisted phrase (-1.5): you can use
  • Low length (0.5):
  • No code block (0.5):
  • Single line (0.5):
  • Low reputation (1):
Posted by: elihu sedano

79680940

Date: 2025-06-26 17:31:18
Score: 1.5
Natty:
Report link

It's not working on windows 7 while it is working on windows 8.

windows 7 doesn't have powershell 3.0 installed by default, only 2.0

Reasons:
  • Low length (1):
  • No code block (0.5):
Posted by: Denis Bakharev

79680938

Date: 2025-06-26 17:28:17
Score: 2
Natty:
Report link

Perhaps make an altered version of the macro that does not have the MsgBox and InputBox, and supply the information required by the InputBox as a parameter in your Run Excel macro action.

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

79680934

Date: 2025-06-26 17:28:17
Score: 3.5
Natty:
Report link

is there a o(n) solution only using single loop ? i was asked same question with constrain of using only one for loop..

Reasons:
  • Low length (1):
  • No code block (0.5):
  • Contains question mark (0.5):
  • Single line (0.5):
  • Starts with a question (0.5): is there a
  • Low reputation (0.5):
Posted by: Abhishek Deshpande

79680930

Date: 2025-06-26 17:25:16
Score: 2.5
Natty:
Report link

I've figured it out, you need to train and compile the model using python 3.9 and tensorflow 2.8 as the latest flutter tensorflow lite lib doesn't support some operations that are later on was added to tensorflow lite

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

79680923

Date: 2025-06-26 17:19:15
Score: 4
Natty:
Report link

nice dear i have also found but still no solution find

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

79680918

Date: 2025-06-26 17:16:13
Score: 0.5
Natty:
Report link

When you create the pivot table initially, ensure that you check the option to add it to the Data Model: Screenshot illustrating option to add to Data Model

This will facilitate the creation of a Dax measure (rather than a calculated field): Screenshot illustrating impact of measure on pivot table

which measure should be defined as follows: Screenshot illustrating definition of measure

=SUMX('Range',[volume]*[price])

Reasons:
  • Probably link only (1):
  • Low length (0.5):
  • Has code block (-0.5):
  • Starts with a question (0.5): When you
  • High reputation (-1):
Posted by: Spectral Instance

79680913

Date: 2025-06-26 17:14:13
Score: 2.5
Natty:
Report link

Here's how to solve each of the 20 C programming problems step-by-step. I’ll give brief logic for each and sample function headers. Let me know which full programs you want:


1. Sum of divisors

int sum_of_divisors(int n) {
    int sum = 0;
    for (int i = 1; i <= n; i++)
        if (n % i == 0) sum += i;
    return sum;
}

2. Merge sort

void mergeSort(int arr[], int left, int right);
void merge(int arr[], int left, int mid, int right);

Use recursive divide-and-conquer + merge logic.


3. Check if string contains digits

int count_digits(char str[]) {
    int count = 0;
    for (int i = 0; str[i] != '\0'; i++)
        if (isdigit(str[i])) count++;
    return count;
}

4. GCD using recursion

int gcd(int a, int b) {
    if (b == 0) return a;
    return gcd(b, a % b);
}

5. Insertion Sort

void insertionSort(int arr[], int n);

Loop from i=1 to n, insert arr[i] in the sorted left part.


6. Reverse words in a sentence (in-place)

Reverse the full string, then reverse each word:

void reverseWords(char* str);

7. Count vowels and consonants

void count_vowels_consonants(char str[], int *vowels, int *consonants);

Check with isalpha() and vowel comparison.


8. Check Armstrong number

int isArmstrong(int n) {
    int sum = 0, temp = n;
    while (temp) {
        int d = temp % 10;
        sum += d * d * d;
        temp /= 10;
    }
    return sum == n;
}

9. Sum of squares in array

int sum_of_squares(int arr[], int n) {
    int sum = 0;
    for (int i = 0; i < n; i++)
        sum += arr[i] * arr[i];
    return sum;
}

10. Merge two sorted arrays (in-place)

If extra space is not allowed, use in-place merge like:

void mergeSortedArrays(int a[], int b[], int m, int n);

11. Perfect square check

int isPerfectSquare(int num) {
    int root = sqrt(num);
    return root * root == num;
}

12. Rotate matrix 90 degrees

void rotateMatrix(int matrix[N][N]);

Transpose + reverse rows or columns.


13. Power of number using recursion

int power(int x, int n) {
    if (n == 0) return 1;
    return x * power(x, n - 1);
}

14. Middle element of a linked list

Use slow and fast pointers:

struct Node* findMiddle(struct Node* head);

15. Remove duplicates from array

Sort array, then shift unique values:

int removeDuplicates(int arr[], int n);

16. Longest Common Subsequence

Use 2D dynamic programming:

int LCS(char* X, char* Y, int m, int n);

17. Pascal's Triangle

void printPascalsTriangle(int n);

Use combinatorics: nCr = n! / (r!(n-r)!).


18. Sum of odd and even elements

void sumOddEven(int arr[], int n, int *oddSum, int *evenSum);

19. Reverse array in groups

void reverseInGroups(int arr[], int n, int k);

20. Valid parentheses expression

Use a stack to match ( and ):

int isValidParentheses(char* str);

Would you like me to provide full C code for all, or start with a few specific ones (e.g. 1–5)?

Reasons:
  • Blacklisted phrase (1): how to solve
  • Long answer (-1):
  • Has code block (-0.5):
  • Ends in question mark (2):
  • Low reputation (1):
Posted by: Marium Sheikh

79680905

Date: 2025-06-26 17:09:12
Score: 0.5
Natty:
Report link

I recommend using the Concatenate function to build the connection string in a Set variable action.

=Concatenate("Provider=MSDASQL;Password=",SQLpassoword,";Persist Security Info=True;User ID=",ID,";Data Source=LocalHost;Initial Catalog=LocalHost")
Reasons:
  • Low length (0.5):
  • Has code block (-0.5):
  • Low reputation (0.5):
Posted by: Degan

79680899

Date: 2025-06-26 17:04:11
Score: 0.5
Natty:
Report link

This is an old question but it pops up on Google as a top result so I'll share another answer. It has gotten simpler in newer versions of .NET. With the new hosting templates in .NET 6 you can simply use:

builder.Configuration.AddJsonFile("your/path/to/appsettings.json", false);
Reasons:
  • Low length (0.5):
  • Has code block (-0.5):
  • Low reputation (0.5):
Posted by: Christopher Rhoads

79680889

Date: 2025-06-26 16:57:09
Score: 2
Natty:
Report link

🎯 Looking for Expert Odoo Services?

We provide custom Odoo development, including:
✅ ERP/CRM Integration
✅ eCommerce & Website Solutions
✅ Custom Module Development
✅ And now – Live Sessions for Learning & Support

📌 Whether you're a business or a learner, we’ve got you covered.
🌐 Visit us: www.odoie.com
💬 Let’s automate and grow your business together!

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

79680879

Date: 2025-06-26 16:50:07
Score: 1.5
Natty:
Report link

You can modify the CSS of the status bar item like this:

statusBar()->setStyleSheet("QStatusBar::item { border-right: 0px }");

This has solved the issue for me and I do not have any borders. Not sure how this will work with mutliple labels in the status bar.

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

79680878

Date: 2025-06-26 16:49:06
Score: 4.5
Natty: 7
Report link

I am looking for some resource how to implement Write with Immediate using Network Direct API? The ndspi.h header seems to not expose the needed reference. I am currently developing a prototype to connect Linux OS based using RDMA libibverbs to post rdma write with immediate to windows using Network direct.

Thanks for your help.

Reasons:
  • Blacklisted phrase (0.5): Thanks
  • Blacklisted phrase (2): I am looking for
  • Whitelisted phrase (-0.5): Thanks for your help
  • No code block (0.5):
  • Contains question mark (0.5):
  • Unregistered user (0.5):
  • Low reputation (1):
Posted by: wil