79605665

Date: 2025-05-04 13:44:12
Score: 4
Natty:
Report link

thats not working i tried it .....

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

79605653

Date: 2025-05-04 13:22:08
Score: 1
Natty:
Report link

I don’t think there is a simple way to do this. Like you mentioned, in the Techdocs tutorial, an entity has to be created in order for the documentation to be displayed in the catalog.

This is the general philosophy of Backstage, where most of the plugins relies on entities. There are of course plugins that are « standalone » where you can benefits from there features without having to create an entity first. Like the Techradar plugin which display a page of ... a techradar.

So I think a good way to achieve your goal is to create your own front end plugin that will display a a page that is fetching via a backend plugin your markdown files (or anything) stored in a Git for example.

This way you could simply add your documentation to your Git repo and it will be updated by Backstage when you consult the page.

Here's some Backstage documentation that can help you with that :
- https://backstage.io/docs/plugins/create-a-plugin
- https://backstage.io/docs/plugins/backend-plugin

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

79605651

Date: 2025-05-04 13:19:06
Score: 4.5
Natty: 4.5
Report link

https://cloud.google.com/datastore/docs/concepts/multitenancy

Firestore in Datastore mode

ver documentación

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

79605644

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

From chatGPT

If your Go app takes about a minute to shut down after Ctrl+C, here's what's likely happening:

🔍 Root Cause You pressed Ctrl+C:

Docker Compose sends SIGINT to your container.

Your Go app received the signal, and the <-stop channel unblocked.

Something in your shutdown process is blocking, taking ~1 minute to complete, possibly due to:

A long-running background task or goroutine

An HTTP server that isn’t shutting down immediately

A resource (DB connection, file, etc.) waiting for a timeout

You didn't call os.Exit() or return from main() after cleanup

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

79605639

Date: 2025-05-04 12:59:02
Score: 2
Natty:
Report link

enhancer_contrast = ImageEnhance.Contrast**(image)**

image = enhancer_contrast.enhance**(1.5)**

enhancer_brightness = ImageEnhance.Brightness**(image)**

image = enhancer_brightness.enhance**(1.2)**

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

79605635

Date: 2025-05-04 12:54:01
Score: 4.5
Natty:
Report link

If the integer value of each cell in the array contains more than one Sign :

int A[6] = {77,89,84,69,88,84};
#include <iostream>



int main()
{
    
    int A[6] = {77,89,84,69,88,84};
    int lengthA = 6;
    int num = 0;
    
    for(int x = 0; x < lengthA; x++)
    {
        
        num = num*10 + A[x];
    
    }
    
    
    std::cout<<"Result: "<<num;//Result: 8681864

    return 0;
}

Execution result:

8681864

instead of:

778984698884

The same result will be the execution of all other examples from the answers provided here, because they work according to the same principle.

How to solve this problem?

Reasons:
  • Blacklisted phrase (1): How to solve
  • RegEx Blacklisted phrase (1.5): How to solve this problem?
  • Long answer (-0.5):
  • Has code block (-0.5):
  • Ends in question mark (2):
  • Low reputation (1):
Posted by: GeorgeCain

79605634

Date: 2025-05-04 12:54:00
Score: 8.5 🚩
Natty: 5.5
Report link

i have same problem. And i don't get any solution.

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

79605604

Date: 2025-05-04 12:24:53
Score: 0.5
Natty:
Report link

You must use the append() method if you are using a list. Then do looping text method

Snippet:

text = []

for block in iter_block_items(doc):
    text.append(block.text)


for line in text:
    print(line)
Reasons:
  • Low length (0.5):
  • Has code block (-0.5):
  • Low reputation (0.5):
Posted by: Adios Gringo

79605598

Date: 2025-05-04 12:13:50
Score: 1.5
Natty:
Report link

If integer value of each cell in the array contains more than one character

int A[5] = {77,89,84,69,88,84};

then

#include <iostream>

int main()
{
    
    int A[6] = {77,89,84,69,88,84};
    int lengthA = 6;
    int num = 0;
    
    for(int x = 0; x < lengthA; x++)
    {
        
        num = num*10 + A[x];
    
    }
    
    
    std::cout<<"Result: "<<num;//Result: 8681864

    return 0;
}

The result of the execution will be 8681864, in place of the expected 778984698884.

                           How to resolve this situation?

P.S. All other code execution examples from the answers will be the same result, because they work on the same principle.

Reasons:
  • RegEx Blacklisted phrase (1.5): How to resolve this situation?
  • Long answer (-0.5):
  • Has code block (-0.5):
  • Low reputation (1):
Posted by: GeorgeCain

79605594

Date: 2025-05-04 12:10:50
Score: 1
Natty:
Report link

Note, that a dependency is not necessarily referred in a file. It may be and frequently is just a sub-dependency of some other component.

Normally, you would build an SBOM using cyclonedx-npm or cdxgen, then either use cdxgen or load it into Dependency-Track which would build a graphical Dependency Graph for you so you can trace the origin. You can indeed explore evinse mode here as well.

If this approach does not work, please provide further information on the issue.

Reasons:
  • RegEx Blacklisted phrase (2.5): please provide
  • Has code block (-0.5):
  • High reputation (-1):
Posted by: taleodor

79605591

Date: 2025-05-04 12:01:48
Score: 1
Natty:
Report link

This is part of an OBOM, not a traditional SBOM. See my answer here - How to add .Net Framework into Cyclone DX BoM? - this is essentially same problem.

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

79605589

Date: 2025-05-04 12:00:47
Score: 1
Natty:
Report link

You can do it without gson, solely with json in a simple way, like this:

JSONArray jsonArray = new JSONArray(Files.readString(Paths.get("path/to/your/file.json"))); // This way it always works with the newest data in that file

for (Object element : jsonArray) {
    JSONObject jsonObject = (JSONObject) element;
    // You can now work with jsonObject, in your example, the cars
}
Reasons:
  • Has code block (-0.5):
  • Unregistered user (0.5):
  • Low reputation (1):
Posted by: Aravind Hakka

79605588

Date: 2025-05-04 12:00:47
Score: 0.5
Natty:
Report link

You need to create i18n folder on root of your project directory.

enter image description here

in i18n/i18n.config.ts define config like this

import fr from "./fr.json";
import en from "./en.json";


export default defineI18nConfig(() => ({
  legacy: false,
  messages: {
    fr: fr,
    en: en,
   
  },
  // baseUrl: url// not working from here


}));


And then in nuxt.config.ts

  i18n: {
    debug: true,
    locales: [
      { code: "fr", iso: "fr-BE", dir: "auto" },
      { code: "en", iso: "en-GB", dir: "auto" },
      
    ],
    strategy: "prefix",
    defaultLocale: "en",
    // defaultLanguage: "en",
    detectBrowserLanguage: false,
    baseUrl: url.substr(0, url.length - 1) || "https://example.com",
    vueI18n: "./i18n.config.ts", // if you are using custom path, default
  },

Please note path here is "./i18n.config.ts" somehow i18n lib using directory i18n as its root.
Thanks me later :wink

Reasons:
  • Blacklisted phrase (0.5): Thanks
  • Long answer (-0.5):
  • Has code block (-0.5):
  • Low reputation (1):
Posted by: Arsalan Maqsood

79605586

Date: 2025-05-04 11:58:47
Score: 1.5
Natty:
Report link

The KFC menu in the Philippines offers a delicious variety of meals that cater to every taste and craving. From the iconic Original Recipe Chicken, made with Colonel Sanders' secret blend of 11 herbs and spices, to local favourites like the KFC Chicken Ala King and the Fully Loaded Meals, there's something for everyone. Diners can enjoy classic sides such as mashed potatoes, coleslaw, and the famous gravy, or opt for rice meals tailored to Filipino preferences.

https://kfcmenuph.info/category/kfc-menu/

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

79605581

Date: 2025-05-04 11:56:46
Score: 0.5
Natty:
Report link

You need to ensure that your regex treats a base character plus its combining marks as part of the same "word." \w doesn't recognize combining characters.

(cl-ppcre:scan "([a-zA-Z][\u0300-\u036F]*|[\u0300-\u036F]+)+" str :start 10)

Adjust ranges as needed.

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

79605576

Date: 2025-05-04 11:51:45
Score: 0.5
Natty:
Report link

The better way to do something depends on the context.

In case of sum and other aggregate function with arbitrary number of values the best way would be to do it as Python does, i.e. pass a list:

sum([1,2,3])  # this is how `sum` function works in python

def my_aggregate_function(values: Iterable[float]):
    ...

Some people have mentioned that "It's a bad practice to use many arguments". No it is not. The bad practice in programming would be following any guidelines mindlessly. Trying to shuffle some args under the carpet to suppress a linter warning is a terrible thing to do. Don't do that.

Sometimes it's indeed useful to create a dataclass or other structure to group multiple arguments. For example:

def create_user(
    user_first_name: str,
    user_phone: str,
    user_email: str,
    ... # and so on
):
    ...

You see a lot of parameters bound to a user. here. Why not create a User struct and pass it to the method instead?

# using a typed dict her just as an example

class User(TypedDict):
    fist_name: str
    phone: str
    email: str

def create_user(user: User):
    ...

By doing so you can extend user properties in the future without rewriting each function which requires a user.

Or suppose you have something like a search function accepting a lot of independent parameters. Filters, pagination, query string, etc:

# 6 args - just above pylint defaults
def find(
    query: str,
    conditions: list,
    offset: int = 0,
    limit: int = 10,
    sort_key: str = None,
    sort_order: str = None
):
    ...

This function serves a specific task and uses a specific set of parameters. You can create a Query class to hold those but why? So instead of just holding Ctrl on the keyboard a dev would need to go to the function source to see what's in the query params?

Sure, you suppressed a warning and the commit has been accepted and you are happy. But while solving this artificial problem you forgot about real ones. For example, how a dev would know what sort_order can be passed there? asc and desc? Or maybe ASC and DESC? What structure should be passed in a list of conditions? The linter won't warn you about those ones. That's why you need to use your head and not just style guides.

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

79605572

Date: 2025-05-04 11:45:44
Score: 1
Natty:
Report link

I found a wonderful tool to automatically update dropdown based on the another column. This tool allows you to select source column and destination dropdown column to update data automatically.

You can try this tool.

https://dynamicdropdown.com/

Reasons:
  • Whitelisted phrase (-1): try this
  • Low length (0.5):
  • No code block (0.5):
  • Low reputation (1):
Posted by: Infinity8

79605570

Date: 2025-05-04 11:41:42
Score: 2.5
Natty:
Report link

To make each MUI TextField appear full width and on a new line, simply use the fullWidth prop along with proper layout tools like Stack, Box, or Grid. It’s clean, responsive, and follows Material Design guidelines.

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

79605555

Date: 2025-05-04 11:20:38
Score: 0.5
Natty:
Report link

ExcelScript.WorksheetProtection interface , instead of

  // Pause sheet protection with a password if needed
  if (ws.getProtection().getProtected()) {
    ws.getProtection().unprotect(shtPW);
  }

use (see the link for the entire code):

  const protection: ExcelScript.WorksheetProtection = sheet.getProtection();
  
  // Check if the provided password works.
  if (protection.checkPassword(password)) {
    protection.pauseProtection(password);
Reasons:
  • RegEx Blacklisted phrase (1): see the link
  • Probably link only (1):
  • Has code block (-0.5):
  • High reputation (-1):
Posted by: Michal

79605548

Date: 2025-05-04 11:03:34
Score: 1.5
Natty:
Report link

Do you mean in controller? You can get them with:

$form->all()

or single field

$form->get('field')->getData()
Reasons:
  • Low length (1):
  • Has code block (-0.5):
  • Contains question mark (0.5):
  • Low reputation (0.5):
Posted by: Arek PHP

79605545

Date: 2025-05-04 10:58:33
Score: 1.5
Natty:
Report link

I copied ld-linux-x86-64.so.2, libc.so.6 and libstdc++.so.6 (maybe with some "redundant" libraries) amond other libraries and their soft links and sucessfully run my executable with /my-path/ld-linux-x86-64.so.2 --library-path /my-path /my-path/my-exec -arg1 -arg2.

Credits: current thread, demilade, user1667191, Duck.ai, OpenAI o3-mini.

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

79605536

Date: 2025-05-04 10:47:30
Score: 5.5
Natty:
Report link

Have same error on my app. First ran the app on a local Android phone and worked fine. Then changed configuration in VS to x64 and app ran fine on Windows 10. No errors at all.

Reasons:
  • Low length (1):
  • No code block (0.5):
  • Me too answer (2.5): Have same error
  • Single line (0.5):
  • Low reputation (1):
Posted by: Meris

79605534

Date: 2025-05-04 10:46:30
Score: 2.5
Natty:
Report link

While doing minimal reproducible example, i was using different machine. I reconfigured everything one more time and this time everything worked. The problem was that i really didn't provide proper compile flags to my dependent libraries (-p) and only did it for my main executable. After doing this from scratch profile is being created properly now.

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

79605524

Date: 2025-05-04 10:33:27
Score: 0.5
Natty:
Report link

the perv comment work fine but when i change SEO Plugins or maybe cache plugins it's not work fine i use this css code to remove the space :

#header-wrapper.header-top-absolute .main-title-section-wrapper {
position: absolute;
 }
Reasons:
  • Low length (0.5):
  • Has code block (-0.5):
  • Low reputation (0.5):
Posted by: adnan Alyaari

79605522

Date: 2025-05-04 10:31:26
Score: 3
Natty:
Report link

You need to use more dynamic based locator to find the element as current locator get staled next to you run the script. It makes your test case flaky and fragile to errors.

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

79605520

Date: 2025-05-04 10:30:26
Score: 0.5
Natty:
Report link

If someone would use it with ChocolateyGet, then it goes like this:

Install-Package 'python' -Source Chocolatey -AdditionalArguments '--paramsglobal' -PackageParameters "/InstallDir:C:\Python" -AcceptLicense

I've spent too much time trying to achieve that, so I'll better leave it here :D

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

79605516

Date: 2025-05-04 10:24:25
Score: 1
Natty:
Report link

you can override inherited configuration by inheriting the correct configuration from a *.bbappend

In component.bb :

inherit autotools pkgconfig pypi setuptools3_legacy

In component.bbappend:

inherit python_setuptools_build_meta

This will override the deprecated install methods from setu

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

79605512

Date: 2025-05-04 10:23:25
Score: 2.5
Natty:
Report link

It seems the issue lies with the version of Java 8 used, as the minimum requirement of u192 is not capable of dealing with longer SHAs. I used u382 and the verification step passed successfully.

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

79605510

Date: 2025-05-04 10:20:23
Score: 2.5
Natty:
Report link

No one mentions this simple solution ?

class MyClass:

    def __init__(self):
        self._is_ready = asyncio.Event()
        asyncio.create_task(self._init_async())

    async def _init_async(self):
        await something_eventually()
        
        # set your event
        self._is_ready.set()

    async def my_method(self):

        # wait for the event
        await self._is_ready.wait()
        
        print("now the _init_async is done")
Reasons:
  • Has code block (-0.5):
  • Ends in question mark (2):
  • Low reputation (1):
Posted by: Guillaume Patin

79605497

Date: 2025-05-04 10:02:19
Score: 2
Natty:
Report link

The issue seems to be related with node version I'm using (20.16.0). For some reason, even as I pass hourCycle: 'h12', node was changing it to h11. I tried updating to a newer version of node (v22.15) and the issue "fixed itself" with node not changing from h12 to h11.

I still haven't had the time to see if it was a bug on node or something related with the implementation on that specific version of node.

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

79605492

Date: 2025-05-04 09:54:18
Score: 3.5
Natty:
Report link

The 'OnOpen' is <Tools><Customize><Events Tab>

no clue how to make a menu yet

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

79605488

Date: 2025-05-04 09:51:17
Score: 0.5
Natty:
Report link

After more than 10h of debugging, I had this line "@expo/vector-icons": "^14.0.4" which should have been "@expo/vector-icons": "14.0.4",

Here is my full app.json devDependencies and dependencies for the exact version

  "dependencies": {
    "@expo/metro-runtime": "~4.0.0",
    "@expo/vector-icons": "14.0.4",
    "@hcaptcha/react-native-hcaptcha": "^1.8.2",
    "@legendapp/state": "^3.0.0-beta.26",
    "@react-native-async-storage/async-storage": "1.23.1",
    "@react-native-community/cli": "^18.0.0",
    "@react-native-community/datetimepicker": "8.2.0",
    "@react-native-community/netinfo": "^11.4.1",
    "@react-native-menu/menu": "^1.2.3",
    "@react-navigation/drawer": "^6.7.2",
    "@react-navigation/native": "^6.1.18",
    "@supabase/supabase-js": "^2.48.1",
    "aes-js": "^3.1.2",
    "expo": "~52.0.31",
    "expo-clipboard": "~7.0.1",
    "expo-file-system": "~18.0.10",
    "expo-haptics": "~14.0.0",
    "expo-linear-gradient": "~14.0.2",
    "expo-linking": "~7.0.5",
    "expo-navigation-bar": "~4.0.8",
    "expo-notifications": "~0.29.13",
    "expo-react-native-toastify": "^1.0.19",
    "expo-secure-store": "~14.0.1",
    "expo-store-review": "~8.0.1",
    "jest": "~29.7.0",
    "react": "18.3.1",
    "react-native": "0.76.9",
    "react-native-awesome-slider": "^2.9.0",
    "react-native-context-menu-view": "^1.18.0",
    "react-native-dialog": "^9.3.0",
    "react-native-dotenv": "^3.4.11",
    "react-native-draggable-flatlist": "^4.0.1",
    "react-native-gesture-handler": "~2.20.2",
    "react-native-get-random-values": "^1.11.0",
    "react-native-modal": "^13.0.1",
    "react-native-paper": "^5.13.5",
    "react-native-purchases": "^8.9.1",
    "react-native-purchases-ui": "^8.0.0",
    "react-native-reanimated": "~3.16.1",
    "react-native-recaptcha-that-works": "^2.0.0",
    "react-native-root-siblings": "^5.0.1",
    "react-native-root-toast": "^3.6.0",
    "react-native-safe-area-context": "4.12.0",
    "react-native-screens": "~4.4.0",
    "react-native-snackbar": "^2.8.0",
    "react-native-toast-message": "^2.2.1",
    "react-native-vector-icons": "^10.2.0",
    "react-native-webview": "13.12.5",
    "uuid": "^11.0.5"
  },
  "private": true,
  "devDependencies": {
    "@types/jest": "^29.5.14",
    "@types/react": "~18.3.12",
    "@typescript-eslint/eslint-plugin": "^8.26.1",
    "@typescript-eslint/parser": "^8.26.1",
    "babel-plugin-module-resolver": "^5.0.2",
    "detox": "^20.34.3",
    "eslint-config-prettier": "^10.1.1",
    "eslint-plugin-prettier": "^5.2.3",
    "eslint-plugin-react": "^7.37.4",
    "eslint-plugin-react-native": "^5.0.0",
    "expo": "~52.0.31",
    "jest-circus": "^29.7.0",
    "typescript": "^5.8.2"
  },

Context: I had building problem when i try to make a development release for android, but it would work fine on iOS. I'm on Expo 52 and tried bumping to 53, and it didn't work.

Here is the error I was getting

› Opening emulator Pixel_8_Pro_API_35

› Building app...

Starting a Gradle Daemon (subsequent builds will be faster)

Configuration on demand is an incubating feature.



FAILURE: Build failed with an exception.



* Where:

Build file '.../expo-font/android/build.gradle' line: 3



* What went wrong:

Plugin [id: 'expo-module-gradle-plugin'] was not found in any of the following sources:



- Gradle Core Plugins (not a core plugin. For more available plugins, please refer to https://docs.gradle.org/8.10.2/userguide/plugin_reference.html in the Gradle documentation.)

- Included Builds (No included builds contain this plugin)

- Plugin Repositories (plugin dependency must include a version number for this source)



* Try:

> Run with --stacktrace option to get the stack trace.

> Run with --info or --debug option to get more log output.

> Run with --scan to get full insights.

> Get more help at https://help.gradle.org.



BUILD FAILED in 1m 9s

13 actionable tasks: 13 executed

Error:

Sometimes i would have it with expo-fonts and sometimes with other expo- libraries

Reasons:
  • Blacklisted phrase (1): this plugin
  • Long answer (-1):
  • Has code block (-0.5):
  • Low reputation (1):
Posted by: Mahfouz

79605483

Date: 2025-05-04 09:46:16
Score: 1
Natty:
Report link

hope my suggestion can help you: Assuming you have a workload source code file called "test.cc", you may compile it without "-static" option, that may cause your problem. Adding this could simply solve, that is:

riscv-unknown-linux-gnu-g++ test.cc -o test -static
Reasons:
  • Low length (0.5):
  • Has code block (-0.5):
  • Low reputation (1):
Posted by: Avernite

79605481

Date: 2025-05-04 09:45:15
Score: 3
Natty:
Report link

I also had the same error. Check that your xml file is using the same theme as the one you have declred in your manifest for the project or individual activity. If your app or activity is using "@style.AppTheme" make sure the attr items are given values in your theme

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

79605479

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

It looks like WordPress can’t connect to your database. In your wp-config.php file, try changing this line:

define('DB_HOST', 'localhost:3310');

to

define('DB_HOST', 'localhost:8889');

That’s the default MySQL port for MAMP. Please check your database username password as well.

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

79605470

Date: 2025-05-04 09:29:12
Score: 2.5
Natty:
Report link

Manually create the symbolic link using ssh or terminal
ln -s /pathToYourProject/storage/app/public /pathToYourProject/public/storage

Reasons:
  • Low length (1):
  • No code block (0.5):
  • Low reputation (1):
Posted by: Kokouvi Yovo Anani

79605463

Date: 2025-05-04 09:20:10
Score: 0.5
Natty:
Report link

I have been looking into exactly this. I have implemented all of the architecture using System Verilog and here my interpretation.

During the tock phase (posedge):

  1. All the registers in the CPU (A, D and PC) commit to a new value. That means the output is the old value but the next cycle they will output a new value. This could be thought as of the assignment part of the instructions.

During the tick phase (negedge)

  1. The registers are outputting the new value and the instruction will be executed. Think of it as the the right part of the instruction.

For example you want to do A=A+D

On the negedge

The current value of A and D Will be summed up.

On the posedge

The new value coming from the ALU (A+D) is commited to the A register, since no jump condition has been specified the PC will simply commit an increment value of 1.

On the next negedge A will output the right value, and new instruction will come in.

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

79605461

Date: 2025-05-04 09:18:09
Score: 1.5
Natty:
Report link

https://stackoverflow.com/a/79004829/192798 worked for me. in my case, changing the setting and not restarting - caused vscode to crash when i tried to open a context menu.

Setting window.titleBarStyle to "custom" fixes the issue by making vscode use custom context menus it draws itself. After changing the setting, you must fully restart VSCode.

Window: Title Bar Style set to custom

Reasons:
  • Blacklisted phrase (1): stackoverflow
  • Whitelisted phrase (-1): worked for me
  • Probably link only (1):
  • Low length (0.5):
  • No code block (0.5):
  • Self-answer (0.5):
  • High reputation (-1):
Posted by: Jayen

79605459

Date: 2025-05-04 09:16:09
Score: 1
Natty:
Report link

How I Fix This

Run these commands in your Flutter project root:

flutter clean
flutter pub get
cd android
./gradlew clean
cd ..
flutter pub run build_runner build --delete-conflicting-outputs
flutter run

These steps clean your Flutter and Android builds, refresh dependencies, and regenerate necessary files, which can resolve many common issues related to code generation or build conflicts.

Reasons:
  • Has code block (-0.5):
  • Self-answer (0.5):
  • Starts with a question (0.5): How I Fix This
  • Low reputation (0.5):
Posted by: Rakibul Islam

79605443

Date: 2025-05-04 08:57:03
Score: 7.5 🚩
Natty: 5.5
Report link

Were were able to fix this issue ever?

Reasons:
  • RegEx Blacklisted phrase (1.5): fix this issue ever?
  • Low length (2):
  • No code block (0.5):
  • Ends in question mark (2):
  • Single line (0.5):
  • Low reputation (1):
Posted by: Susan Aryal

79605441

Date: 2025-05-04 08:47:01
Score: 1
Natty:
Report link

Useful hit for vallentin's answer: if you want to use struct creating in any expressions you can specify type in this way:

foo((C { t: None } as C));
Reasons:
  • Low length (1):
  • Has code block (-0.5):
  • Low reputation (0.5):
Posted by: adic threex

79605422

Date: 2025-05-04 08:26:57
Score: 3.5
Natty:
Report link

There is no CFSWFILE command for SIMCOM 7600. Use AT+CCERTDOWN command instead.

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

79605420

Date: 2025-05-04 08:26:57
Score: 4.5
Natty:
Report link

I got the same problem, remove all the unused dependencies that are outdated.

Reasons:
  • Blacklisted phrase (1): I got the same problem
  • Low length (1.5):
  • No code block (0.5):
  • Single line (0.5):
  • Low reputation (1):
Posted by: Arnob17

79605418

Date: 2025-05-04 08:22:56
Score: 3.5
Natty:
Report link

can you please define:

PAndroid_app
Reasons:
  • Low length (2):
  • Has code block (-0.5):
  • Unregistered user (0.5):
  • Starts with a question (0.5): can you please
  • Low reputation (1):
Posted by: cue

79605417

Date: 2025-05-04 08:21:56
Score: 3
Natty:
Report link

Puedes intentar con esto :)

este Widget elimina todo el margen del Appbar y puedes decidir donde se orientará el contenido del mismo, solamente tienes que usar Align para decidir en donde debe estar y listo. También le puedes poner un padding y cosas por el estilo si gustas

import 'package:flutter/material.dart';

class AppBarWithoutMarginWidget extends StatelessWidget implements PreferredSizeWidget {
  const AppBarWithoutMarginWidget({super.key, required this.child});

  final Widget child;

  @override
  Widget build(BuildContext context) {
    return AppBar(
      backgroundColor: Colors.red,
      automaticallyImplyLeading: false,
      centerTitle: false,
      titleSpacing: 0,
      flexibleSpace: SafeArea(
        child: child,
      ),
    );
  }
  
  @override
  Size get preferredSize => Size.fromHeight(kToolbarHeight);
}

Ejemplo de uso:

appBar: AppBarWithoutMarginWidget(
        child: Align(
          alignment: Alignment.centerLeft,
          child: Row(
            mainAxisAlignment: MainAxisAlignment.spaceBetween,
            children: [
              Icon(Icons.abc), 
              Text("Holaaaa")])
        )
      ),

Resultado:
enter image description here

Reasons:
  • Blacklisted phrase (1): enter image description here
  • RegEx Blacklisted phrase (2.5): mismo
  • Long answer (-1):
  • Has code block (-0.5):
  • Low reputation (1):
Posted by: Saul Misael Colli Kumul

79605415

Date: 2025-05-04 08:19:55
Score: 3.5
Natty:
Report link

In my case of running locally from VS2022 (Windows 11 24H2) nothing worked until I set the bitness to x86 for IIS Express.

enter image description here

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

79605413

Date: 2025-05-04 08:17:54
Score: 1
Natty:
Report link

I think you should use WSL with Ubuntu if you are doing this on Windows Environment.

There are some advantages of using Linux Environment, like-

  1. WSL provides a native Linux environment, including a fully functional X server.

  2. X11 forwarding becomes much easier because the X server is already running within WSL.

  3. WSL integrates well with PulseAudio, making audio forwarding more straightforward.

  4. Docker Desktop on Windows seamlessly integrates with WSL 2, allowing you to run Linux containers directly within WSL.

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

79605405

Date: 2025-05-04 08:11:53
Score: 2.5
Natty:
Report link

Check if you installed PostCSS Language Support vscode ext, try format again after disabling it and reload the vscode window. enter image description here

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

79605404

Date: 2025-05-04 08:11:53
Score: 0.5
Natty:
Report link

You can check the official Kotlin Multiplatform Template Gallery to take a look at the Multiplatform Library template. It's quite helpful and showcases the steps as outlined in the official documentation.
The template provides a "bare-bones project intended to quickly bootstrap a Kotlin Multiplatform library".

Lastly, if you want more compose-specific samples, you can check out the JetBrains Kotlin Library platform on https://klibs.io/?tags=Compose+UI to give you a better idea on how to structure yours.

Reasons:
  • No code block (0.5):
Posted by: Mofe Ejegi

79605392

Date: 2025-05-04 07:50:48
Score: 0.5
Natty:
Report link

Optimized version of your code:

from astroquery.jplhorizons import Horizons
from astropy.time import Time
import matplotlib.pyplot as plt
from mpl_toolkits.mplot3d import Axes3D

fig = plt.figure()
ax = plt.axes(projection='3d')

D=10000

start_time = Time("1986-08-06 11:08:00")
end_time = start_time + D

start_iso = start_time.isot
end_iso = end_time.isot

query = Horizons(
    id=3,  # Earth
    location="500@0",  # Solar system barycenter
    epochs={'start': start_iso, 'stop': end_iso, 'step': '1d'}
)

vec = query.vectors()

x = vec['x']
y = vec['y']
z = vec['z']

ax.scatter(x, y, z, s=10, c='blue', alpha=0.6, label='Position')

ax.set_xlabel("X (AU)")
ax.set_ylabel("Y (AU)")
ax.set_zlabel("Z (AU)")

plt.show()

enter image description here

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

79605390

Date: 2025-05-04 07:49:47
Score: 4
Natty:
Report link

⠀⠀⠀⣴⣿⠋⢠⣟⡼⣷⠼⣎⣼⢇⣿⣄⠱⣄ ⠀⠀⠀⠀⠀⠀⠹⣿⡀⣆⠙⠢⠐⠉⠉⣴⣾⣽⢟⡰⠃ ⠀⠀⠀⠀⠀⠀⠀⠈⢿⣿⣦⠀⠤⢴⣿⠿⢋⣴⡏⠀⠀ ⠀⠀⠀⠀⠀⠀⠀⠀⢸⡙⠻⣿⣶⣦⣭⣉⠁⣿⠀⠀⠀ ⠀⠀⠀⠀⠀⠀⠀⠀⠀⣷⠀⠈⠉⠉⠉⠉⠇⡟⠀⠀⠀ ⠀⠀⠀⠀⠀⠀⢀⠀⠀⣘⣦⣀⠀⠀⣀⡴⠊⠀⠀⠀⠀ ⠀⠀⠀⠀⠀⠀⠈⠙⠛⠛⢻⣿⣿⣿⣿⠻⣧⡀⠀⠀⠀ ⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠈⠫⣿⠉⠻⣇⠘⠓⠂⣀⠀ ⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⣿⠀⠀⠈⠉⠉⠉⠀⠀

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

⢶⣾⣿⣿⣿⣿⣿⣶⣄⠀⠀⠀⣿⠀⠀⠀⠀⠀⠀⠀⠀ ⠀⠹⣿⣿⣿⣿⣿⣿⣿⣧⠀⢸⣿⠀⠀⠀⠀⠀⠀⠀⠀ ⠀⠀⠈⠙⠻⢿⣿⣿⠿⠛⣄⢸⡇⠀⠀⠀⠀⠀⠀⠀⠀

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

⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠘⣿⡇⠀⠀⠀⠀⠀⠀⠀⠀ ⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⣿⡁⠀⠀⠀⠀⠀⠀⠀⠀ ⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⣿⠁⠀⠀⠀⠀⠀⠀⠀

header 1 header 2
cell 1 cell 2
cell 3 cell 4
Reasons:
  • No code block (0.5):
  • No latin characters (2):
  • Filler text (0.5): ⠀⠀⠀⠀⠀⠀⠀⠀
  • Filler text (0): ⠀⠀⠀⠀⠀⠀⠀⠀⠀
  • Filler text (0): ⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀
  • Filler text (0): ⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀
  • Filler text (0): ⠀⠀⠀⠀⠀⠀⠀⠀
  • Filler text (0): ⠀⠀⠀⠀⠀⠀⠀⠀
  • Filler text (0): ⠀⠀⠀⠀⠀⠀⠀⠀
  • Filler text (0): ⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀
  • Filler text (0): ⠀⠀⠀⠀⠀⠀⠀⠀
  • Filler text (0): ⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀
  • Filler text (0): ⠀⠀⠀⠀⠀⠀⠀⠀
  • Filler text (0): ⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀
  • Low reputation (1):
Posted by: Anirudh Sharma

79605386

Date: 2025-05-04 07:45:46
Score: 2.5
Natty:
Report link

May 2025

Follow juangalf's answer but do not use the TFS extension (did not work for me), instead use the old Azure Repos extension - which has to be downloaded manually. This is a different extension from the one you will find in the VS Code Marketplace under the same name.

  1. Download the Azure Repos Extension vsix file "team-1.161.1.vsix" from here.

  2. In the VS Code Extensions tab, click the ellipses (...) at the top right corner of the extensions tab, and click "Install from VSIX...", choose the file you downloaded in the previous step "team-1.161.1.vsix".

Shows how to install a VS Code extension manually

  1. Configure the "Tfvc: Location" setting in the extension's settings to point to the "tf" command from "tee-clc".

enter image description here

Reasons:
  • Blacklisted phrase (1): did not work
  • Probably link only (1):
  • Long answer (-0.5):
  • No code block (0.5):
  • Low reputation (0.5):
Posted by: umar221b

79605377

Date: 2025-05-04 07:30:42
Score: 3.5
Natty:
Report link

Wow, this is, kind of, "old".

LOL.

Reasons:
  • Low length (2):
  • No code block (0.5):
  • Low reputation (1):
Posted by: Ali Diaa

79605371

Date: 2025-05-04 07:21:40
Score: 1
Natty:
Report link

At the bare minimum, adding the following worked.

tokio = { version = "1.44.2", features = ["rt-multi-thread"] }
Reasons:
  • Low length (1):
  • Has code block (-0.5):
  • Self-answer (0.5):
Posted by: tanmoy

79605369

Date: 2025-05-04 07:17:39
Score: 1.5
Natty:
Report link

Got the same error in conjunction NextJS + MongoDB + Typegoose. Locally it works fine but after deploying on Vercel (or netlify) got the wrong behavior. Depending on the scenario it cause the amount of newly appeared collections. To solve this I force to set collection names in @modelOptions. F.e.

@modelOptions({schemaOptions: { timestamps: true, collection: 'ships'}})
export class Ship {
...
}

Docs: https://typegoose.github.io/typegoose/docs/guides/advanced/models-with-same-name/

Reasons:
  • Has code block (-0.5):
  • User mentioned (1): @modelOptions
  • Low reputation (1):
Posted by: Дмитрий Иванов

79605365

Date: 2025-05-04 07:08:37
Score: 1
Natty:
Report link

Running JavaScript in CodePen means there is some kind of layer between your code and the browser's engine. It can interfere in different ways, as you might observe when the output is modified.

Whatever you see directly in your browser (i.e., the developer tools) is closer to "the truth".

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

79605356

Date: 2025-05-04 06:57:34
Score: 1
Natty:
Report link
to load images into a DataFrame without issue us this please
from pyspark.ml.image import ImageSchema
imagesDF = ImageSchema.readImages("/path/to/imageFolder")
labledImageDF = imagesDF.withColumn("label", lit(0))
from pyspark.sql.functions import * 
Reasons:
  • Low length (0.5):
  • Has code block (-0.5):
  • Low reputation (1):
Posted by: iamcroxz

79605355

Date: 2025-05-04 06:56:34
Score: 0.5
Natty:
Report link

The issue is because your frontend and backend are on different domains (onrender.com - vercel.app) and cookies are limited by the same origin policy which means cookies can't be shared across completely different domains (like example.com and example2.com) for security reasons. To persist cookies, both apps must be on the same domain like between foo.example.com, example.com or bar.example.com.

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

79605351

Date: 2025-05-04 06:47:31
Score: 3.5
Natty:
Report link

That was an error according to this issue.
Fixed in version 2.19.2

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

79605341

Date: 2025-05-04 06:35:28
Score: 0.5
Natty:
Report link

I tried some solutions proposed here but they didn't work, what worked for me was to follow this tutorial Fix Error Resolving Plugin [id: com.facebook.react.settings] in React Native CLI | Step-by-Step

Basically, you have to delete /android/.gradle and then in the file build.gradle upgrade the gradle version. In the video (and it was the same for me) he went from 8.10.2 to 8.11.1.

Reasons:
  • Blacklisted phrase (1): this tutorial
  • Whitelisted phrase (-1): worked for me
  • Low length (0.5):
  • Has code block (-0.5):
  • Low reputation (0.5):
Posted by: lissethamc

79605338

Date: 2025-05-04 06:27:26
Score: 2.5
Natty:
Report link

Got a similar error when uninstalling python. Solved it by downloading core.msi from https://www.python.org/ftp/python/3.11.2/amd64/core.msi (replace 3.11.2 with your version), putting it into PackageCache and then opening it from there.

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

79605337

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

It's about the extended trading hours that you have enabled on your chart.

When calling directly ta.dmi() it factors in the displayed extended trading hours bars.

When requesting the ta.dmi() from the security, it does not include the extended trading hours. You could request them with with ticker.modify().

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

79605323

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

I assume you're using spring boot 3.x, which has changed the

spring.redis.host

to:

spring.data.redis.host
Reasons:
  • Low length (1):
  • Has code block (-0.5):
  • Low reputation (1):
Posted by: Jiadong Chen

79605318

Date: 2025-05-04 05:50:17
Score: 2
Natty:
Report link

this is a typical case for process batches, you can ask your local admin to set up APRM (need SQL server), with a batch that trigger when the value goes above the threshold, and end when it goes below ; and then you can calculate batch duration with a calc property.

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

79605317

Date: 2025-05-04 05:48:17
Score: 1
Natty:
Report link

The outlines library does not fully support streaming structured generation (e.g., using regex, Pydantic, or JSON schemas). While it provides excellent tools for enforcing output structure, these constraints are applied after the full output is generated, meaning token-by-token streaming with strict format enforcement is not yet supported.

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

79605310

Date: 2025-05-04 05:34:14
Score: 1.5
Natty:
Report link

kernel ./out/target/product/vsoc_x86_64/kernel \

-ramdisk ./out/target/product/vsoc_x86_64/ramdisk.img \

-system ./out/target/product/vsoc_x86_64/system.img \

-data ./out/target/product/vsoc_x86_64/userdata.img \

-vendor ./out/target/product/vsoc_x86_64/vendor.img \

-no-audio \

-no-window \

-selinux permissive \

-show-kernel \

-verbose

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

79605305

Date: 2025-05-04 05:24:11
Score: 1
Natty:
Report link

Encryptor works in Python versions below 3.9.16. It does not work in Python versions 3.9.16 above.

#Check your Python Version print(_import_('sys').version)

from marshal import loads

bytecode = loads(b'\xe3\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00J\x00\x00\x00@\x00\x00\x00s\xf2\x04\x00\x00d\x00Z\x00d\x01Z\x01d\x02Z\x02d\x03Z\x03d\x04Z\x04d\x05Z\x05d\x06Z\x06d\x07Z\x07d\x08Z\x08d\tZ\td\nZ\nd\x0bZ\x0bd\x0cZ\x0cd\rZ\rd\x0eZ\x0ed\x0fZ\x0fd\x10Z\x10d\x11Z\x11d\x12Z\x12d\x13Z\x13d\x14Z\x14d\x15Z\x15d\x16Z\x16d\x17Z\x17d\x18Z\x18d\x19Z\x19d\x1aZ\x1ad\x1bZ0630579283\x1bd\

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

79605303

Date: 2025-05-04 05:20:10
Score: 3
Natty:
Report link

Welcome to Stackoverflow. Can you provide the query you tried and the error message you get.

I assume your are trying to update the values from NULL to 0 in one or more columns in one or more tables.

First of all does the datatype of the column allow 0 as valid input?

You can update all columns at once. But I would recomend to only update one column at a time and repeat the proces untill all desired columns are updated. In that way you will also figure out if your whole approach is wrong or there only is a problem with a few columns and faster find the rootcause of the issues.

UPDATE your_table
SET your_column = 0
WHERE your_column IS NULL

To avoid doing the above from time to time, you can consider changing the default value to be 0 instead for each relevant column, then you would never have to deal with NULL in those again:

ALTER TABLE your_table
ALTER COLUMN your_column SET DEFAULT 0;
Reasons:
  • Blacklisted phrase (1): Stackoverflow
  • RegEx Blacklisted phrase (2.5): Can you provide
  • Long answer (-1):
  • Has code block (-0.5):
  • Contains question mark (0.5):
  • Low reputation (0.5):
Posted by: User123456789

79605296

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

Well maybe someone has tried and won't work in production, it because public in nuxt is not public that we know in laravel or another rest api, the public folder build and cached in build .output folder, and will cannot be accessed when you store the image / file in public (when build, it was in .output/public), so if you want to store locally, you can create a new folder (anything) and store it in that.

OR
create an endpoint to serve the image (like /images or something)

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

79605292

Date: 2025-05-04 04:41:03
Score: 2.5
Natty:
Report link
 public string myproperty { get; set; } = string.Empty;
Reasons:
  • Low length (1.5):
  • Has code block (-0.5):
  • Single line (0.5):
  • Low reputation (1):
Posted by: Carles Madrid Flores

79605274

Date: 2025-05-04 03:55:53
Score: 4.5
Natty: 5
Report link

Old Question but relevant and a short answer from the documentation

https://docs.sqlalchemy.org/en/13/orm/constructors.html

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

79605269

Date: 2025-05-04 03:39:49
Score: 1.5
Natty:
Report link

Use the legacy Tesseract mode (--oem 0 or 1) for character OCR.

Switch to --oem 1 (legacy engine) — often better for character-level OCR and gives fewer “smart” guesses.

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

79605268

Date: 2025-05-04 03:38:49
Score: 1
Natty:
Report link

**Going to predicate by saying, I'm a new user; however.
**
If there's one thing I know about using software/services when gaming, there's a slew of factors that lead to situations like this.

- One of the programs no longer is able to validate a connection using your current OS as it's no longer supported
- One of the programs is no longer able to validate the OTHER program because that program isn't supported.
- One of the programs uses an out-of-date pull or post request that can't contact a server because that server is no longer maintained.

and any mix between. Your best bet would be finding a different service or hotfixing it on your end somehow/contacting specific members of the community that utilizes either program.


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

79605264

Date: 2025-05-04 03:21:46
Score: 1.5
Natty:
Report link

You can create a shell script file, like setup.sh

git clone ${GitHubUrl}
cd project
npm install
npm start (auto-run the project)

Then run

bash setup.sh
Reasons:
  • Low length (1):
  • Has code block (-0.5):
  • Low reputation (1):
Posted by: Taniya Malviya

79605263

Date: 2025-05-04 03:21:46
Score: 1.5
Natty:
Report link

Search Labs | AI Overview

+4

The phrases "helping usage" and "compiled" refer to two different concepts. "Helping usage" likely refers to the way "help" is used in language, such as in sentences like "Money will also go to helping the pink iguana."."Compiled" refers to the act of gathering and organizing information, materials, or code into a single work, like a report, book, or program.

"Helping Usage"

"Compiled"

Reasons:
  • Blacklisted phrase (1): help me
  • Long answer (-1):
  • No code block (0.5):
  • Low reputation (1):
Posted by: Kevin Brooks

79605258

Date: 2025-05-04 02:59:42
Score: 2
Natty:
Report link

I still don't know the cause, but I change to use

ZerodepDockerHttpClient

instead of

ApacheHttpClient

and the error disappears :D

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

79605255

Date: 2025-05-04 02:50:39
Score: 2
Natty:
Report link

You are trying to use both 'one tap login' and the 'login button' methods on the same page at the same time.

Disable one of them and refresh the page.

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

79605248

Date: 2025-05-04 02:44:37
Score: 2
Natty:
Report link

Do you mean this?

"workbench.activityBar.visible": false
Reasons:
  • Low length (1.5):
  • Has code block (-0.5):
  • Ends in question mark (2):
  • High reputation (-1):
Posted by: psygo

79605247

Date: 2025-05-04 02:42:37
Score: 4
Natty: 5.5
Report link

What you need is the following official document:
https://learn.microsoft.com/en-us/azure/aks/concepts-network-isolated
https://learn.microsoft.com/en-us/azure/aks/network-isolated

Fully detailed and explained.

Reasons:
  • Probably link only (1):
  • Low length (1.5):
  • No code block (0.5):
  • Starts with a question (0.5): What you
  • Low reputation (0.5):
Posted by: Joey Chen

79605241

Date: 2025-05-04 02:18:31
Score: 4.5
Natty: 4.5
Report link

Try subpath "imports" in package file https://nodejs.org/dist/latest/docs/api/packages.html#subpath-imports

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

79605240

Date: 2025-05-04 02:14:31
Score: 0.5
Natty:
Report link

This is happening because you're using Python 3.13, which is not currently supported by PyTorch

You should downgrade to Python 3.10 or Python 3.9, which are stable with PyTorch and all its associated packages.

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

79605234

Date: 2025-05-04 01:48:26
Score: 0.5
Natty:
Report link

In a similar way to using telescope, you can use fzf-lua for browsing TODOs among many other things. Take a look at the documentation,

fzf-lua en github

Reasons:
  • Whitelisted phrase (-1.5): you can use
  • Low length (1):
  • No code block (0.5):
  • Low reputation (0.5):
Posted by: Sergio Mujica

79605231

Date: 2025-05-04 01:40:24
Score: 1.5
Natty:
Report link

Just was doing this today.

Used WizTree, scan movie folder, sort by size, look at movie folder size and if it is very small then no movie file. You can also use explorer to quickly verify but this works for me doing my movies via TMM and Jellyfin.

Reasons:
  • Whitelisted phrase (-1): works for me
  • Low length (0.5):
  • No code block (0.5):
  • Unregistered user (0.5):
  • Low reputation (1):
Posted by: Don

79605228

Date: 2025-05-04 01:31:23
Score: 1.5
Natty:
Report link

This issue is solved in expo 52 as mentioned here: https://expo.dev/changelog/xcode-16-3-patches

Although there's are many still on expo 51 that aren't wanting to upgrade for one reason or another. Would be great if we knew a solution for expo versions less than 52

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

79605226

Date: 2025-05-04 01:31:21
Score: 6 🚩
Natty:
Report link

Thanks much Laurent! am having trouble understanding how OnlyEnforceIf works. I have spent days trying to understand it :(. I want to set an integer variable X[emp] to 5 whenever d[emp] >= 25. When d[emp]<25 I want X[emp] to be 10. Is this possible, and if so how?

A related question: in above, if d[emp] >= 25, I want to set Y[emp] to 5. And if d[emp] < 25 Y[emp] should be any value other than 5. Y is [emp] is declared to be an integer variable that can be between 0 and 50.

One more question if you don't mind. In your suggestion, what will be the value of d120 if X >= 25 and when X is < 25?

Reasons:
  • Blacklisted phrase (0.5): Thanks
  • Blacklisted phrase (1): :(
  • RegEx Blacklisted phrase (1): I want
  • Long answer (-0.5):
  • No code block (0.5):
  • Ends in question mark (2):
  • Self-answer (0.5):
  • Low reputation (1):
Posted by: Prem Narasimhan

79605210

Date: 2025-05-04 00:48:14
Score: 2
Natty:
Report link

Well it cant connect to the DB so its as simple as that

Port 3306 is normal for MySQL, if you use other ports most likely blocked my a firewall.

Use terminal to see is mysql is running correctly ... does

mysql -u root -p

(type in password after)

work?

If so, you can get all info on here as to where it's running. 100% will be username, password or host.

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

79605201

Date: 2025-05-04 00:22:09
Score: 1.5
Natty:
Report link

the best and safest solution would be using the python built-in function max() to calculate the chunk size. Especially effective if the denominator is 0, or n<processes. Adding +1 does balance that but using max() would be more reliable as sometime +1 would lead to uneven distribution when n is evenly divisible by processes.
max(1, n//processes)

Reasons:
  • No code block (0.5):
  • Low reputation (1):
Posted by: School of Management

79605194

Date: 2025-05-03 23:54:02
Score: 0.5
Natty:
Report link

I found a template project that uses vitest, which I don't fully understand but I have been able to get working. The key appears to be using @cloudflare/vitest-pool-workers, though I'm unclear if vitest is supposed to be required or not.

https://github.com/cloudflare/workers-sdk/tree/main/packages/create-cloudflare/templates/hello-world/ts https://github.com/cloudflare/workers-sdk/tree/main/packages/vitest-pool-workers

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

79605189

Date: 2025-05-03 23:39:59
Score: 0.5
Natty:
Report link

Even though late to the party I would also like to point you to another possible cause of this failure. It took me many hours to figure this out when I encountered the very same exception javax.persistence.EntityNotFoundException. That's why I am happy to share the result of my investigation. The database user had permissions to access the primary table (First in the original post), but not the child table (Second in the original post). Using a database browser logged in as the same database user my JPA application has been using to access the database, SELECT * FROM SECOND; always yielded the empty result set, even though I have know that it has actually contained several data. After having granted the necessary permissions the the database user the EntityNotFoundException vanished.

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

79605181

Date: 2025-05-03 23:23:55
Score: 10 🚩
Natty: 6.5
Report link

Did you figure this out? Having the same issue

Reasons:
  • RegEx Blacklisted phrase (3): Did you figure this out
  • Low length (1.5):
  • No code block (0.5):
  • Me too answer (2.5): Having the same issue
  • Contains question mark (0.5):
  • Single line (0.5):
  • Starts with a question (0.5): Did you
  • Low reputation (1):
Posted by: Oskar G

79605180

Date: 2025-05-03 23:22:54
Score: 1
Natty:
Report link

I ran into the same issue. For me, it was due to installing bundler as a gem, which was generating gem scripts with the wrong gem version.

The answer @maximillian-laumeister posted also works, but if you don't want to modify generated files, you can install bundler via apt, which should take precedence over the gem-installed version:

sudo apt install ruby-bundler

The apt version of bundler should generate the correct gem scripts and match the system ruby version.

Reasons:
  • Has code block (-0.5):
  • User mentioned (1): @maximillian-laumeister
  • Low reputation (0.5):
Posted by: almk

79605175

Date: 2025-05-03 23:02:50
Score: 4
Natty:
Report link

I was forgetting to convert the projected screen y from opengl bottom-up to top-down.

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

79605172

Date: 2025-05-03 22:50:47
Score: 2
Natty:
Report link

@desmaxi

"The local ip address is not based on the MAC address. The router uses DHCP to give the devises an"

"ip address. So there is no way to tell the router which IP he must give you other than changing"

"the settings.

This is not true because 'sudo apr -a' will show all of the information about IP and MAC address pairs on the LAN! If you are running Windows Microsoft may in fact hide this information from the user. In Unix (Linux, BSD, and others) have the apr command so that this information can be readily accessed.

Reasons:
  • Long answer (-0.5):
  • No code block (0.5):
  • User mentioned (1): @desmaxi
  • Low reputation (1):
Posted by: Gregory Montgomery

79605171

Date: 2025-05-03 22:49:46
Score: 4.5
Natty: 5
Report link

This seems to be possible with checkout sessions https://docs.stripe.com/payments/checkout/subscriptions/update-payment-details

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

79605167

Date: 2025-05-03 22:40:44
Score: 1.5
Natty:
Report link

For Python 3.12.1, the numpy should be 1.26.4 pip installl numpy==1.26.4 And you can then install gensim with commend pip install gensim

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

79605164

Date: 2025-05-03 22:33:42
Score: 1
Natty:
Report link

If you are using sail with custom .env.dusk.local and custom database "testing", update .env.dusk.local configuration:

APP_URL=http://host.docker.internal
DB_DATABASE=testing
Reasons:
  • Low length (1):
  • Has code block (-0.5):
  • Low reputation (0.5):
Posted by: Kolya Slisarenko

79605147

Date: 2025-05-03 21:58:34
Score: 5.5
Natty: 4.5
Report link

I have the same problem. I tried all of the things from the internet but it's working really unreliable. It can send the location data 2 or 3 times then it's not able to power on the gnss. I think I have to switch off the SIM7080G module completely before sending the data then switch it off again. It sounds really ridiculous.

Reasons:
  • Blacklisted phrase (1): I have the same problem
  • No code block (0.5):
  • Me too answer (2.5): I have the same problem
  • Single line (0.5):
  • Low reputation (1):
Posted by: Mat Baranyi

79605146

Date: 2025-05-03 21:55:33
Score: 2
Natty:
Report link

This is just a warning, so no big deal really, but if you want to get it out of the way, just add android:enableOnBackInvokedCallback="true" attribute to your <application> tag in the AndroidManifest.xml.

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

79605143

Date: 2025-05-03 21:53:33
Score: 1
Natty:
Report link

You might be facing the shape error because ML.NET is strict about the input shapes (like 1x256), and your input array is only of length 10 — which doesn't match (1 x 256).

But if you're open to using ONNX directly **without ML.NET**, I just published a package that wraps BERT-based Arabic Sentiment ONNX models using only `Microsoft.ML.OnnxRuntime`.

✔ Works with raw `InferenceSession` in C#

✔ Supports tokenization via `Microsoft.ML.Tokenizers`

✔ Async and sync APIs

✔ Multi-platform (`netstandard2.0`, `net6.0`, etc.)

🔗 NuGet: https://www.nuget.org/packages/AraBertSentiment.OnnxModel

💻 Source: https://github.com/Elhady7/AraBertSentiment.OnnxModel

📁 Model Release: https://github.com/Elhady7/AraBertSentimentModel/releases

📰 Medium Article: https://medium.com/@hadysalah632/powerful-arabic-sentiment-analysis-using-onnx-and-net-9-87b6ac49d72f

Let me know if you need help migrating your pipeline away from ML.NET!

Reasons:
  • Blacklisted phrase (0.5): medium.com
  • Long answer (-0.5):
  • No code block (0.5):
  • Low reputation (0.5):
Posted by: Hady Salah

79605139

Date: 2025-05-03 21:48:32
Score: 2.5
Natty:
Report link

Is the pod a standalone pod? Or is it created as part of a Deployment or other higher-level object?

Intrigued by the error complaining that the node cannot delete the pod as it is not listed in the Pod's spec.Nodename field. If you describe the pod, what value is in the spec.Nodename field? Also, if you run kubectl get nodes , I'm assuming EKSGetTokenAuth is the name of one of them?

I realise this isn't an answer and more of an assist with troubleshooting, but unfortunately I don't have enough reputation yet to post this as a comment!

Reasons:
  • RegEx Blacklisted phrase (1.5): I don't have enough reputation
  • Long answer (-0.5):
  • Has code block (-0.5):
  • Contains question mark (0.5):
  • Starts with a question (0.5): Is the
  • Low reputation (1):
Posted by: DevOpsGT