79788069

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

If pip is not recognized by default, use this method,

        python -m pip --version

for older version,

        py -m pip --version

install pip,

        python get-pip.py
Reasons:
  • Low length (1):
  • Has code block (-0.5):
  • Low reputation (1):
Posted by: munixShadow

79788067

Date: 2025-10-11 14:30:14
Score: 0.5
Natty:
Report link

By adding Distinct and Union, I was able to satisfy EF Core.

Instead of query.Concat(query), I used query.Distinct().Concat(query.Distinct()). You might not need Distinct on both branches. See the comment below for more info.

https://github.com/dotnet/efcore/issues/32046#issuecomment-3393373171

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

79788064

Date: 2025-10-11 14:27:13
Score: 1.5
Natty:
Report link

Add swap file:

sudo fallocate -l 16G /swapfile
sudo chmod 600 /swapfile
sudo mkswap /swapfile
sudo swapon /swapfile

After this try to build again - works for 16GB ram machine.

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

79788056

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

You can also use the rename command.

Open your terminal, navigate to the relevant folder using cd, then paste:

rename -f 'y/A-Z/a-z/' *

It will rename all your files to lowercase.

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

79788050

Date: 2025-10-11 13:57:05
Score: 4
Natty:
Report link

I made a video this week on how to do this without any scripting or apps. Just Shopify flow.

How to Create Best Seller Collections Step by Step (2025)

https://youtu.be/YcG-Mw5DAyo

Reasons:
  • Blacklisted phrase (1): youtu.be
  • Low length (1):
  • No code block (0.5):
  • Unregistered user (0.5):
  • Low reputation (1):
Posted by: Jody

79788048

Date: 2025-10-11 13:54:04
Score: 1.5
Natty:
Report link

You can try this one: https://github.com/dameng324/LightProto.

If you run into any problems, open an issue on it's github repo.

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

79788045

Date: 2025-10-11 13:51:03
Score: 1
Natty:
Report link
uses
jpeg;

procedure TForm1.BitBtn1Click(Sender: TObject);
var
  pict : TPicture;
begin
 pict := TPicture.Create;
  try
    pict.LoadFromFile('D:\Projets Delphi\Dimensions jpeg\Test.jpg');
    LabeledEdit1.Text:=IntToStr(pict.Width);
    LabeledEdit2.Text:=IntToStr(pict.Height);
  finally
    pict.Free;
  end;
end;
Reasons:
  • Has code block (-0.5):
  • Unregistered user (0.5):
  • Low reputation (1):
Posted by: Fred

79788040

Date: 2025-10-11 13:40:00
Score: 1.5
Natty:
Report link

After repo sync (when you got make files). - after this step:

cd ~/aosp || { echo " ~/aosp not exists :)"; exit 1; }
repo init -u https://android.googlesource.com/platform/manifest -b android-15.0.0_r1
repo sync

Try to do this command in aosp folder.

. build/envsetup.sh
export TARGET_RELEASE=ap2a  

if ap2a doesnt work try to ap3a ,then


build_build_var_cache 
lunch

Now you got full list of Android builds.

Reasons:
  • Blacklisted phrase (1): doesnt work
  • Has code block (-0.5):
  • Low reputation (1):
Posted by: BarTech

79788037

Date: 2025-10-11 13:32:59
Score: 1
Natty:
Report link

I assume you are using AWS Organizations.

One way to achieve this is to combine with IAM Identity Center.

This is AWS preferred way to grant permissions to human users. IAM Identity Center is a centralized place where you can grant users permissions to accounts and resources.
https://docs.aws.amazon.com/singlesignon/latest/userguide/what-is.html

On your management account IAM Identity Center console you can:

  1. Create a group -> Dev

  2. Assign uses to this group -> Ben

  3. Assign accounts -> Dev account
    This image shows how to assign accounts to IAM Identity groups.

  4. Assign permission set -> Admin Role
    This image shows how to assign permission sets to aws accounts.

IAM Identity Center configure users through Identity Providers. If you don't have one, AWS has its own Identity Provider for that. You can configure the identity source on Settings -> Identity Source.

Once the users log in, they will be presented with the roles they can assume for each account:

This image shows what IAM Identity users will see after logging in AWS.

This approach is interesting because users can assume different roles depending on the account, or even have the possibility to assume different roles in the same account.

You won't need to set the same Admin Role in all the accounts. This is going to be configured only on your management account.

This is where you can configure these permissions:

This image shows where to configure multi-account permissions for AWS organizations

Reasons:
  • Probably link only (1):
  • Long answer (-1):
  • No code block (0.5):
  • Low reputation (0.5):
Posted by: Fagner Fonseca

79788019

Date: 2025-10-11 13:04:51
Score: 2.5
Natty:
Report link

Revised figure

Well, I attached the revised figure, you can see **0.01 and *0.05 significant level without p<0.001

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

79788000

Date: 2025-10-11 12:25:42
Score: 1
Natty:
Report link

Convert mesh to graph by merging nearby vertices during triangle processing

Instead of building adjacency after the whole mesh is processed, you can build it incrementally as you iterate through triangles.

1. For each triangle, create a small local graph of its 3 vertices (fully connected).

2. Clamp or round vertex positions to a fixed precision (e.g. 0.01 or 0.1 units) to handle float errors.

3. Use a hash table (keyed by clamped position) to cache vertices.

Key format can be a packed integer or a string fallback like "x_y_z".

4. When a new vertex reuses an existing key, merge it —

"steal" its existing connections and link the current triangle’s vertices to it.

This automatically stitches triangles together without needing a second pass.

This method builds the navigation graph in one pass, with automatic adjacency discovery, tolerance for float noise, and minimal overhead.

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

79787999

Date: 2025-10-11 12:23:41
Score: 1.5
Natty:
Report link

On the bottom right of the PyCharm screen you will be able to setup the interpreter options for your project like creating a new one (with venv, conda, poetry etc) or switch between multiple interpreters (if you need to test you app with multiple versions of python for example).

Easier one to use in my opinion is venv, it will create a .venv folder in the project and store the installed modules there.

More information here in the official docs: https://www.jetbrains.com/help/pycharm/configuring-python-interpreter.html#interpreter

Reasons:
  • No code block (0.5):
  • Low reputation (1):
Posted by: gianlu.98

79787992

Date: 2025-10-11 12:09:38
Score: 3
Natty:
Report link

I2uu uu27 yu3y3t3g3fy2uy 662u3jj2g3k2utwj2uu2u2u3j3j3j3ju3yyj2i4u4iy3j3u3u3u646uyrh3yrytrtdtwgyey3h3jej3jj2j2u3u3uyeuy3u2h4u6ehhryy2jy4uyeuu3hey3yjejuusjèjueuuayyuwuuuusjjjeuryrjhzgdhhdhdjddjjejejeurhj3hfufjrjdjhdjdhdjdhjdhfjfjhdjhhhuu32uuu2u3u3jurjydjruur4uuuehhhehhhrhhjhth

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

79787986

Date: 2025-10-11 11:56:34
Score: 0.5
Natty:
Report link

I hacked the eslint-plugin-php-markup package to make it work. The hacked code are available at here: https://github.com/dannyniu/eslint-plugin-php-markup along with a short guide on how to configure the eslint.config.mjs, here's an excerpt:

...
import html from "eslint-plugin-html";
import php from "eslint-plugin-php-markup";
...
... { files: ["**/*.php"],
  plugins: { html, php },
  processor: php.processor,
  settings: {
    "php/php-extensions": [".php"],
    "php/markup-replacement": {"php": "", "=": "0"},
    "php/keep-eol": false,
    "php/remove-whitespace": false,
    "php/remove-empty-line": false,
    "php/remove-php-lint": false
  },
} ...
...
Reasons:
  • Contains signature (1):
  • Long answer (-0.5):
  • Has code block (-0.5):
  • Self-answer (0.5):
Posted by: DannyNiu

79787985

Date: 2025-10-11 11:56:34
Score: 3
Natty:
Report link

Xcode- Product- Scheme- Edit Scheme,chose Run,then change the Build Configuration mode:Realese.

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

79787979

Date: 2025-10-11 11:47:32
Score: 3
Natty:
Report link

same problem, looks its a bug.

i am using std::view in c++20, try compiler clang, clang_cl and `"microsoft.com/VisualStudioSettings/CMake/1.0": { "intelliSenseMode": "windows-clang-x64" }` still problem

Reasons:
  • RegEx Blacklisted phrase (1): same problem
  • Low length (0.5):
  • No code block (0.5):
  • Low reputation (1):
Posted by: kai liu

79787966

Date: 2025-10-11 11:01:21
Score: 0.5
Natty:
Report link

An array is a collection of elements stored in a contiguous block of memory, which allows direct access to any element using its index in O(1) time. Arrays have a fixed size in static languages, but dynamic arrays (like C++’s vector) can grow or shrink as needed. They are efficient for random access and have better cache locality, making sequential operations faster. However, inserting or deleting elements in the middle or at the beginning of an array requires shifting elements, which takes O(n) time, making such operations slower.

On the other hand, a linked list consists of nodes scattered in memory, where each node stores the data and a pointer to the next node (or previous node in doubly linked lists). Linked lists allow efficient insertion and deletion at the beginning or middle in O(1) time, provided we have a pointer to the relevant node. However, they have slower access times since you need to traverse nodes sequentially (O(n) time) to reach a specific element. Linked lists also use extra memory for storing pointers and have poorer cache performance due to scattered memory allocation.

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

79787963

Date: 2025-10-11 10:55:19
Score: 3
Natty:
Report link

reloadium can't do monitor single file. but can monitor single running python application.

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

79787959

Date: 2025-10-11 10:47:17
Score: 3.5
Natty:
Report link

I want to change my operator from jio to airtel I have port my sim mobile number-9098988825

header 1 header 2
cell 1 cell 2
cell 3 cell 4
Reasons:
  • RegEx Blacklisted phrase (1): I want
  • Low length (1):
  • No code block (0.5):
  • Low reputation (1):
Posted by: Jatin Panjwani

79787947

Date: 2025-10-11 10:17:10
Score: 2.5
Natty:
Report link

Have you tried following the steps described here?
https://pages.community.sap.com/topics/crystal-reports/visual-studio

If you still need further assistance, I’d be happy to help.

Reasons:
  • Whitelisted phrase (-1): Have you tried
  • Probably link only (1):
  • Low length (1):
  • No code block (0.5):
  • Contains question mark (0.5):
  • Low reputation (0.5):
Posted by: Alparslan ŞEN

79787936

Date: 2025-10-11 09:43:02
Score: 0.5
Natty:
Report link

13 years later, still functional. :)

$(".btn").on("click", function (e) {
    console.log(e.target.id)
})
Reasons:
  • Low length (1):
  • Has code block (-0.5):
Posted by: AI Shakil

79787934

Date: 2025-10-11 09:42:01
Score: 1.5
Natty:
Report link

<meta property="og:locale" content="ar_AR" />

<meta property="og:type" content="<b:if cond='data:view.isSingleItem'>article<b:else/>website</b:if>" />

<meta property="og:title" content="<data:blog.title/>" />

<meta property="og:description" content="<b:if cond='data:view.isSingleItem'><data:post.snippet/><b:else/><data:blog.metaDescription/></b:if>" />

<meta property="og:url" content="<data:view.url.canonical/>" />

<meta property="og:site_name" content="<data:blog.title/>" />

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

79787930

Date: 2025-10-11 09:24:57
Score: 1
Natty:
Report link

I am not entirely sure what is causing the issue but seems to be related to the server setup.

I tried creating a fresh server in VBox with a fresh install of Ubuntu. The issue still presisted.

However, when I installed XAMPP on my Windows host machine and run the code from there, the issue is not there.

The only thing I can think of that might have caused it could be an incompatible PHP version because XAMPP PHP version is 8.2.12 and Ubuntu's version is 8.3.6.

Reasons:
  • No code block (0.5):
  • Self-answer (0.5):
Posted by: RisingSun

79787928

Date: 2025-10-11 09:16:55
Score: 1
Natty:
Report link

The main difference between these noations is the part of code execution they describe like upper bound, lower bound or tight bound.

Big O gives an upper limit on how fast the time can grow or we can simply say that it gives the highest limit that the execution of this code can never take more time than this in any of the case or with any input size.

Big-Ω gives the lower bound or it describes the best possible growth rate or we can say that it tells us that the algorithm will take atleast this much time in all the cases now matter how big or how small the size of input is. it is the best case because when on a given input the algorithm takes minimum time the execution is faster.

Big-Θ is used when both upper and lower bounds are the same. it means that the algorithms growth rate is tightly bound on both the sides.

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

79787906

Date: 2025-10-11 08:37:46
Score: 2.5
Natty:
Report link

It seems like a bug in cmake https://gitlab.kitware.com/cmake/cmake/-/issues/24163 . When using `PRIVATE`, outer scope will not link torch lib and thus will not trigger the problem.

Updating to newest version of cmake will solve it.

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

79787902

Date: 2025-10-11 08:27:43
Score: 2.5
Natty:
Report link

When the MCP server expects as input depends on what tool is selected, for example in the image below, RUBE_SEARCH_TOOL is selected, the input for this will be different to when other tools are selected. So select you MCP node, and make sure you've selected the tool appropriate for you.enter image description here

Reasons:
  • Low length (0.5):
  • No code block (0.5):
  • Single line (0.5):
  • Starts with a question (0.5): When the
  • Low reputation (0.5):
Posted by: Vishal

79787901

Date: 2025-10-11 08:27:43
Score: 1
Natty:
Report link

Fixing the multiple spaces case that are not stripped in the second post...

void strip_extra_spaces(char *str) {
  int i, x;

  for(i = x = 0; str[i]; ++i) {
      if(!isspace(str[x]) && !isspace(str[i]))
          str[x++] = str[i];
  }

  str[x] = '\0';
}
Reasons:
  • Low length (0.5):
  • Has code block (-0.5):
  • Low reputation (1):
Posted by: Manuel Alonso Tajuelo

79787897

Date: 2025-10-11 08:11:40
Score: 0.5
Natty:
Report link

You can use some online tools to check it

  1. parse vless/vmess URL to see if it is valid

  2. test the connection by online proxy tester

try google it by "online proxy checker", or directly use the online tools https://getfreeproxy.com/tools/proxy-protocol-parser and https://getfreeproxy.com/tools/proxy-checker .

Reasons:
  • Whitelisted phrase (-1.5): You can use
  • Low length (0.5):
  • No code block (0.5):
  • Low reputation (1):
Posted by: Dayi Chen

79787896

Date: 2025-10-11 08:10:39
Score: 1.5
Natty:
Report link

Add workflow_run to the GitHub Actions .yml, the Coding Agent ignores workflow_call or workflow_dispatch

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

79787890

Date: 2025-10-11 08:00:37
Score: 2
Natty:
Report link

Upon searching and trying several solutions - > arch -x86_64 pod install --repo-update this command worked. Seemingly it happened due to M1 build.

Reasons:
  • Low length (1):
  • Has code block (-0.5):
  • Self-answer (0.5):
  • Single line (0.5):
  • Low reputation (0.5):
Posted by: Amani Saaduddin

79787886

Date: 2025-10-11 07:54:35
Score: 2
Natty:
Report link

The function codes for reading holding registers and reading input registers are different. You cannot read multiple registers of both kind using the same kind. Please check the function codes for reading both of these types. You will have to send two different commands - one to read multiple holding registers and one to read multiple input registers.

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

79787881

Date: 2025-10-11 07:46:33
Score: 2.5
Natty:
Report link

So what I get to know from documentation is, you can't upload images on Firebase unless a user is logged in/authenticated. If you want anonymous users to upload images without authentication, then you have to change the rules.

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

79787874

Date: 2025-10-11 07:29:30
Score: 3
Natty:
Report link

Attaching a global key to the local widget surrounding GestureDetector, and using that key to map and fetch point offset solved the issue.

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

79787871

Date: 2025-10-11 07:27:29
Score: 2.5
Natty:
Report link

Found that multiple instances of my screen(widget) were being pushed into the navigation stack. Scroll controllers should be one for one view, we cannot share controllers through multiple rendered instances at the same time.

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

79787867

Date: 2025-10-11 07:22:27
Score: 3.5
Natty:
Report link

https://dart.dev/null-safety/faq#the-iterablefirstwhere-method-no-longer-accepts-orelse---null
Import package:collection and use the extension method firstWhereOrNull instead of firstWhere.

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

79787865

Date: 2025-10-11 07:20:27
Score: 1.5
Natty:
Report link

There exists a method on Navigator class to check if a route can be popped:

  if (Navigator.canPop(context)) {
      Navigator.pop(context);
  }

Reference Article

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

79787860

Date: 2025-10-11 07:10:25
Score: 4
Natty: 4.5
Report link

scenario is needing polymorphic relation.

Laravel Reference: https://laravel.com/docs/12.x/eloquent-relationships#one-to-many-polymorphic-relatio

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

79787849

Date: 2025-10-11 06:32:16
Score: 3
Natty:
Report link

Did you check the Area2D's collision layer and mask if they match with the first enemy's Area2D?

Maybe they weren't set yet so that the player can't be detected, which then ignores the animations you mentioned.

Reasons:
  • Low length (0.5):
  • No code block (0.5):
  • Contains question mark (0.5):
  • Starts with a question (0.5): Did you
  • Low reputation (1):
Posted by: Zen

79787846

Date: 2025-10-11 06:27:15
Score: 0.5
Natty:
Report link

Here's another idea that avoids using verbs in the url, by treating the reset token like a resource:

POST /accounts/password/reset-token  // creates a new reset token (sent over email)
POST /accounts/password              // resets the password using the reset token
Reasons:
  • Low length (0.5):
  • Has code block (-0.5):
  • Low reputation (0.5):
Posted by: Coco Liliace

79787823

Date: 2025-10-11 05:32:02
Score: 3.5
Natty:
Report link

Use the Show Missing Files tool in Visual Studio — when you build the project, it will display any files that are not included in the project in the Error List window.

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: Ashi

79787820

Date: 2025-10-11 05:21:00
Score: 2
Natty:
Report link

Use docker.

Container all systems in you repo you can.

Add to docker.ignore: docs directory, indexed docs directory, api (because api in the docker deploying and proceed all your containers.

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

79787816

Date: 2025-10-11 05:16:59
Score: 1
Natty:
Report link

Each of these data structures is designed for a different purpose and therefore has different performance characteristics.

Arrays -

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

79787812

Date: 2025-10-11 04:55:55
Score: 2
Natty:
Report link

UI Design Draft usually means a preliminary or rough version of a user interface design like an early sketch or wireframe showing the basic layout and flow. It’s not exactly the same as UI, which is the complete, polished interface users interact with. So think of a design draft as a first step in creating the final UI, helping designers explore ideas before finalizing details.

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

79787811

Date: 2025-10-11 04:45:53
Score: 0.5
Natty:
Report link
const std = @import("std");
const print = std.debug.print;

pub fn main() void {
    const number_or_error: anyerror!i32 = error.ArgNotFound;
    print("\nOption 1\nType: {}\nValue: {}", 
        .{
             @TypeOf(number_or_error), 
             number_or_error
         }
    );
}
Reasons:
  • Low length (0.5):
  • Has code block (-0.5):
  • Low reputation (0.5):
Posted by: iot_builder

79787788

Date: 2025-10-11 03:26:38
Score: 0.5
Natty:
Report link

Also, where you have

if( j < start )
{
    quickSort( numbers, start, j );
}

the condition should be

if( start < j )

and just below that, where you have

if( i < start )
{
    quickSort( numbers, i, end);
}

the condition should be

if( i < end )
Reasons:
  • Low length (0.5):
  • Has code block (-0.5):
  • Low reputation (0.5):
Posted by: The Lost Petrol

79787787

Date: 2025-10-11 03:23:37
Score: 3.5
Natty:
Report link

I was wondering the same thing! Turns out how that options works has changed. It no longer filters when just typing. Now you have to use a search keyboard shortcut first then start typing. If "Filter on Type" is enabled then it will start filtering.

You can find the default keyboard shortcut for your platform here: https://code.visualstudio.com/updates/v1_89#_find-in-trees-keybinding

Reasons:
  • Blacklisted phrase (2): was wondering
  • Low length (0.5):
  • No code block (0.5):
  • Low reputation (0.5):
Posted by: Callum Gare

79787783

Date: 2025-10-11 02:46:30
Score: 1
Natty:
Report link

Uninstall the Microsoft Visual C++ 2015-2022 redistributable and the PostgreSQL with installation failed and try install again.

Has worked for me to upgrade PostgreSQL 17 to 18.

Reasons:
  • Whitelisted phrase (-1): worked for me
  • Low length (1):
  • No code block (0.5):
  • Low reputation (0.5):
Posted by: Artur Benevenuto Coelho

79787775

Date: 2025-10-11 02:21:25
Score: 2.5
Natty:
Report link

there isn’t a “remote switch” in the Firebase Console that forces the outer email-sign-in link to use your custom domain without updating how the link is generated. After the Dynamic Links migration, Auth uses your Hosting domain by default (e.g. PROJECT_ID.firebaseapp.com) for mobile flows unless you explicitly tell it otherwise.

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

79787771

Date: 2025-10-11 02:10:23
Score: 3
Natty:
Report link

Oajwobeje no dbeibr Jr RN bright Jen is jtnib iotjtni irjiebbrieb s to go to the year y and the police have Justin and the police

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

79787766

Date: 2025-10-11 01:50:19
Score: 0.5
Natty:
Report link

In Python the from A import C syntax looks for the module/file A, grabs C, and puts it into your namespace. What exactly A is is complicated and can very a lot; basically, it can be the name of a module/folder/file in either Python's module library or in the same directory as the script.

For example, if you ran this:

from my_module import add, subtract

This is what Python would do:

So you can do this:

from my_module import add, subtract
add(1, 2)

When you do A.B, Python is targeting B, which is inside A. For example if you had this file structure:

| my_module [folder]
| -- __init__.py
| -- functions.py [contains add]
| -- other.py

If you ran from my_module.functions import add, Python is first locating my_module, then looking for functions, and then grabs add. The __init__.py file tells Python that this is a module folder and gets run at import time. That file is not essential in Python 3.x, but it is recommended. (There are also other ways to do this, such as setup.py and packaging it with a distributor, but __init__.py is the most modern and recommended way.)

With the setup above, if you tried to do this:

from my_module import add

...you'd get an ImportError because add is not directly inside the my_module folder.

You can go even further and do this:

from my_module import add as renamed_add
renamed_add(1, 3)

(This will install add exactly the same, but it's imported as renamed_add instead.


As for how do install qpid_messaging and qpid, I recognize them vaguely, but I haven't done anything with them personally. you can try running pip install qpid and pip install qpid_messaging in your terminal, if qpid is in the PyPI. If that throws an error or hangs forever, you can maybe look on GitHub or Apache's website for it. When you find it, put it in your site-packages folder. To find the location of your site-packages folder:

import site
print(site.getsitepackages())

(You can do that in an REPL if you don't want to save a file just for that.)

Reasons:
  • Blacklisted phrase (1): how do i
  • Long answer (-1):
  • Has code block (-0.5):
  • Low reputation (1):
Posted by: EgamerCreations

79787756

Date: 2025-10-11 00:48:08
Score: 2
Natty:
Report link

Managed to configure successfully with allowed_headers

TLDR

Make sure your otel-config whitelists all access control request headers under allowed_headers, such as Authorization (yes, if your request contains this header, it will fail if not specifically whitelisted).

receivers:
  otlp:
    protocols:
      http:
        endpoint: "0.0.0.0:5318"
        cors:
          allowed_origins:
            - https://*.my-domain.com
          # Important, make sure you whitelists all "unsafe" headers
          allowed_headers:
            - Authorization
            - X-Requested-With
            - Accept
            - Accept-Language
            - Content-Language
            - Content-Type
            - Range
          max_age: 86400

First failed attempt

Hey OP, I came across the same issue and thought it couldn't be resolved, getting the same error

Access to resource at 'http://localhost:4318/v1/traces' from origin 'http://localhost:3000' has been blocked by CORS policy: 

Response to preflight request doesn't pass access control check: No 'Access-Control-Allow-Origin' header is present on the requested resource.

Here's the snippet of my first config.yaml

receivers:
  otlp/public_apps:
    protocols:
      http:
        endpoint: "0.0.0.0:5318"
        cors:
          allowed_origins:
            - https://*.my-domain.com
          max_age: 86400
        auth:
          authenticator: bearertokenauth/public

Here's the curl that I am using to test my otel-collector, note that this is generated by chrome. I read more about preflight request here. I managed to get a 204 status code, but I received no CORS headers, which led to the same subsequent error as you.

curl -I 'https://localhost:5318/v1/logs' \
  -X 'OPTIONS' \
  -H 'accept: */*' \
  -H 'accept-language: en-GB,en-US;q=0.9,en;q=0.8' \
  -H 'access-control-request-headers: authorization,content-type' \
  -H 'access-control-request-method: POST' \
  -H 'origin: https://my-cross-origin.com' \
  -H 'priority: u=1, i' \
  -H 'referer: https://my-cross-origin.com/' \
  -H 'sec-fetch-dest: empty' \
  -H 'sec-fetch-mode: cors' \
  -H 'sec-fetch-site: cross-site'
// no headers were returned
HTTP/2 204

Second attempt with allowed_headers

  -H 'access-control-request-headers: authorization,content-type' \

This line shows the required headers, and surprisingly, authorization is not a safe header!

We then whitelisted authorization specifically:

receivers:
  otlp:
    protocols:
      http:
        endpoint: "0.0.0.0:5318"
        cors:
          allowed_origins:
            - https://*.my-domain.com
          # Important, make sure you whitelists all "unsafe" headers
          allowed_headers:
            - Authorization
            - X-Requested-With
            - Accept
            - Accept-Language
            - Content-Language
            - Content-Type
            - Range
          max_age: 86400

After doing so (and including a few others), the same curl worked where the response status is 204 and all cors headers are present.

curl -I 'https://localhost:5318/v1/logs' \ ... // truncated
HTTP/2 204
date: Tue, 07 Oct 2025 11:01:40 GMT

access-control-allow-credentials: true
access-control-allow-headers: authorization,content-type
access-control-allow-methods: POST
access-control-allow-origin: https://my-domain.com
access-control-max-age: 86400
vary: Origin, Access-Control-Request-Method, Access-Control-Request-Headers

Conclusion

We debugged the same issue when many LLMs are available, and a lot of them give the same "it cannot be done on otelcol-contrib" answer.

However, since it's a very common use case in the industry, we don't think the otelcol-contrib maintainers would have overlooked this issue and decided to debug further.

Reasons:
  • Long answer (-1):
  • Has code block (-0.5):
  • Me too answer (2.5): getting the same error
  • Low reputation (1):
Posted by: Bobby Cai

79787754

Date: 2025-10-11 00:42:07
Score: 2.5
Natty:
Report link

pls try to change the cross-filter direction to Both

enter image description here

enter image description here

enter image description here

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

79787752

Date: 2025-10-11 00:36:06
Score: 0.5
Natty:
Report link

I have also seen this error message happen at companies that have their own github repositories, but the developer is still trying to connect to "regular" github. For example, the company I work at (The Gap) has its own repository, which is here: github.gapinc.com. I am able to execute "ssh -T [email protected]" successfully and receive the message "You've successfully authenticated, but there's no ssh access." But I will always get "Permission denied (publickey)" if I try to execute "ssh -T [email protected]", because I shouldn't be using github.com. I should be using github.gapinc.com.

Reasons:
  • Long answer (-0.5):
  • No code block (0.5):
  • Single line (0.5):
Posted by: Steve Stilson

79787751

Date: 2025-10-11 00:36:06
Score: 1
Natty:
Report link

You can now just select your App Service in Azure, and then select Log Stream from the left menu:

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

79787746

Date: 2025-10-10 23:57:58
Score: 1.5
Natty:
Report link

Such modifications are also possible.

public override bool Equals(object? obj)
{
    if (obj == null) return false;
    ParsedAddress toCompare = (ParsedAddress)obj;
Reasons:
  • Low length (1):
  • Has code block (-0.5):
  • Low reputation (1):
Posted by: motosann

79787741

Date: 2025-10-10 23:45:56
Score: 0.5
Natty:
Report link

It seems like a hacky solution as there should be an R Markdown fix, but here is what I landed on that worked to solve this issue. Note that Source Sans Pro and 16px are simply the defaults in quarto, so the html tag is matching those quarto defaults.

::: {#axm-real}
<p align="left" style="font-family: 'Source Sans Pro', sans-serif; font-size: 16px;">
text of axioms listed here
</p>
:::
Reasons:
  • Has code block (-0.5):
  • Self-answer (0.5):
  • Low reputation (0.5):
Posted by: dj_a

79787730

Date: 2025-10-10 23:13:49
Score: 5
Natty:
Report link

I also made a real-time spectrum analyzer – here’s the description of how it works:

https://sylwekkominek.github.io/SpectrumAnalyzer/

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

79787720

Date: 2025-10-10 22:41:43
Score: 0.5
Natty:
Report link

Actually I got this error pretty strange way. It seems to be pyinstaller interprets the closed lines that are not supposed to be taken into account. For example to understand whether the class I wrote was working well I added a line, on which a local image was imported. I'd actually closed that line with # afterwards but the exe I generated by pyinstaller didnt ignore that line and tried to import that image and throwed this error.

I deleted the related closed line and generated the exe again and bingo. The issue is gone.

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

79787719

Date: 2025-10-10 22:40:42
Score: 2.5
Natty:
Report link

In systemd v256+, you can do this using systemd-cat. E.g.

echo 'my message' | systemd-cat --namespace=my-namespace

See https://www.freedesktop.org/software/systemd/man/latest/systemd-cat.html for more details.

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

79787718

Date: 2025-10-10 22:39:42
Score: 2
Natty:
Report link

Unfortunately, the default logs do not store for events triggered through the Google Sheet itself.

Rather, you need to attach it to a Google Cloud project to view these kinds of logs.

To do this, please follow these instructions:

  1. Create a Google Cloud Project: https://console.cloud.google.com/welcome

  2. Set up the OAuth Screen: https://console.cloud.google.com/auth/overview

  3. Add yourself as a Test User: https://console.cloud.google.com/auth/audience (scroll down)

  4. Copy your Project ID: See the Homepage of your Project or see this link.

  5. Go back to your Google Sheet Script

  6. Go to Settings: https://script.google.com/home/projects/\[SOME_LONG_STRING\]/settings

  7. Add your Project ID under "Google Cloud Platform (GCP) project"

  8. Try running a function in Google Sheet Script -> this will trigger the OAuth screen

  9. See your logs here: https://console.cloud.google.com/logs/query

Source: https://stackoverflow.com/a/79770014/5771750

Reasons:
  • Blacklisted phrase (1): stackoverflow
  • Blacklisted phrase (1): this link
  • RegEx Blacklisted phrase (1): see this link
  • Long answer (-0.5):
  • No code block (0.5):
  • High reputation (-1):
Posted by: Chris Happy

79787717

Date: 2025-10-10 22:35:41
Score: 2.5
Natty:
Report link

Just simple, use comand line windows (cmd)

makecab file1.txt file2.txt file3.dll file4.exe finalfine.cab

**vote up**

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

79787704

Date: 2025-10-10 21:56:33
Score: 4.5
Natty: 5
Report link

My previous answer was deleted by ?...

And how can we do that in 3D ??

I don't see any DampedSpringJoint3D in Godot ?... Especially if we want to work with JOLT Physics. Is there any possiblity to do the same thing ?

it is so close to the first question, 2D to 3D, just a generalization of the question. According to me, it isn't worth pollute your website with another quastion as it is a logical extension 2D to 3D. Really it is the "same" question. I didn't see that you deleted my answer. What a pity, really, you show a psychorigidity unbelievable. You could make an answer and inform that it should be in another question, but for 2D -> 3D, your delete is pitiful. I am engineer and also associate professor in an engineering school, and if I was so psychorigid I imagine that students would be disappointed.

Reasons:
  • Blacklisted phrase (1): another question
  • Blacklisted phrase (1): how can we
  • Blacklisted phrase (1): Is there any
  • Long answer (-0.5):
  • No code block (0.5):
  • Contains question mark (0.5):
  • Low reputation (1):
Posted by: luigi

79787701

Date: 2025-10-10 21:52:32
Score: 2.5
Natty:
Report link

You can also try https://varlock.dev for an alternative to dotenv that will also give you validation and type safety. This will help ensure that env vars are all valid before anything else happens.

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

79787697

Date: 2025-10-10 21:36:28
Score: 0.5
Natty:
Report link

About what you askedو I think I can help!

I’ve had the same issue myself, and dealing with all those ads was super annoying. Eventually, I found a browser extension that removes all iframes from the webpage you're viewing, which really helped!

The extension is called Auto Iframes Remover, and it works on all major browsers like Edge, Chrome, and Firefox.

If you want to learn more or download it, just visit this website and grab the version that suits your browser:

https://wildwestwiki.com/childsPlayExtensions/auto-iframes-remover

Chrome and Edge Extension:

https://chrome.google.com/webstore/detail/auto-iframes-remover/fhenkighldilmobhdgopkhejbaainnfm

Firefox Addon:

https://addons.mozilla.org/en-US/firefox/addon/auto-iframes-remover/

If this extension works for you and turns out to be just what you needed, please drop me a comment and let me know! I'd love to hear how it goes 😊

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

79787695

Date: 2025-10-10 21:33:27
Score: 1
Natty:
Report link
SELECT 
   world.name,
   ROUND(100000*confirmed/population,2), rank() over (order by 100000*confirmed/population)
  FROM covid JOIN world ON covid.name=world.name
WHERE whn = '2020-04-20' AND population > 10000000
ORDER BY population DESC
Reasons:
  • Low length (0.5):
  • Has code block (-0.5):
  • Low reputation (1):
Posted by: Ajit Mankar

79787694

Date: 2025-10-10 21:31:26
Score: 4
Natty:
Report link

This is about removed features:

Dict quota; Dirsize quota These drivers are removed. You should use Quota Driver: Count instead along with quota-clone plugin.

Note that switching to quota count can cause all users' indexes to update, so reserve time for this.

Does this mean I can't use what I described in the question?

Reasons:
  • No code block (0.5):
  • Ends in question mark (2):
  • Self-answer (0.5):
  • Low reputation (1):
Posted by: Vacuum

79787688

Date: 2025-10-10 21:08:22
Score: 2.5
Natty:
Report link

for node mariadb

multipleStatements: false

Reasons:
  • Low length (1.5):
  • No code block (0.5):
  • Low reputation (0.5):
Posted by: Charles Candy

79787687

Date: 2025-10-10 21:08:22
Score: 1
Natty:
Report link

To trim image using Imagick() with 20% fuzziness use

$image->trimImage(0.20 * $image::getQuantum());

or

$image->trimImage(0.20 * Imagick::getQuantum());

https://phpimagick.com/Imagick/trimImage

And in case of Gmagick()

$max_quantum = 65535;
switch ($image->getQuantumDepth()['quantumDepthLong']) {
    case  8: $max_quantum = 255; break;
    case 16: $max_quantum = 65535; break;
    case 32: $max_quantum = 4294967295; break;
}
$image->trimImage(0.20 * $max_quantum);
Reasons:
  • Probably link only (1):
  • Has code block (-0.5):
  • Low reputation (0.5):
Posted by: DidThis

79787674

Date: 2025-10-10 20:48:13
Score: 6.5 🚩
Natty:
Report link

I have a similar issue. My script logs in but will not synch the directories?

Here is what I have so far as my script.

#Building A Report Move Script

#Open Session
@echo on

"C:\Program Files (x86)\WinSCP\WinSCP.com" ^
  /log="C:\writable\path\to\log\WinSCP.log" /ini=nul ^
  /command ^
    "open sftp://SBCadmin:[email protected]/ -hostkey=""ssh-ed25519 255 otNIccAuAOKu5/+6IGTXGzcuIcw4Kf1PO/OJA7OLUWI""" ^
    "synchronize local "D:\SFTPRoot\BldgA" "/home/niagara/stations/LincolnPlaza_Bldg_A/shared/AutoCx"" ^
    "exit"

set WINSCP_RESULT=%ERRORLEVEL%
if %WINSCP_RESULT% equ 0 (
  echo Success
) else (
  echo Error
)
exit /b %WINSCP_RESULT%

Any ideas with the synch line?

Thanks....

Reasons:
  • Blacklisted phrase (0.5): Thanks
  • Blacklisted phrase (1): Any ideas
  • Long answer (-0.5):
  • Has code block (-0.5):
  • Me too answer (2.5): I have a similar issue
  • Ends in question mark (2):
  • Unregistered user (0.5):
  • Low reputation (1):
Posted by: Stephen

79787670

Date: 2025-10-10 20:43:12
Score: 1.5
Natty:
Report link

Asymptotic notations basically describe how an algorithm’s running time grows with input size.

O (Big O) - Upper bound - for the worst case.

Example: Bubble Sort → O(n²).

Ω (Big Omega) - Lower bound - for the best case.

Example: Bubble Sort → Ω(n).

Θ (Big Theta) - Tight bound - when both upper and lower are same.

Example: Merge Sort → Θ(n log n).

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

79787661

Date: 2025-10-10 20:18:07
Score: 1
Natty:
Report link

Docker Compose

If experienced when stopping container(s):

docker-compose down --remove-orphans

otherwise:

docker-compose up --remove-orphans
Reasons:
  • Low length (1):
  • Has code block (-0.5):
  • Low reputation (0.5):
Posted by: Ian Shiundu

79787660

Date: 2025-10-10 20:16:07
Score: 1
Natty:
Report link

i stacked using

from sklearn.ensemble import HistGradientBoostingRegressor, GradientBoostingRegressor, StackingRegressor

from sklearn.linear_model import RidgeCV

stack = StackingRegressor(
    estimators=[
        ('hgb', hgb),
        ('gbr', gbr)
    ],
    final_estimator=RidgeCV(),
    n_jobs=-1
)
Reasons:
  • Low length (0.5):
  • Has code block (-0.5):
  • Low reputation (1):
Posted by: KMushfiqur

79787652

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

First, are A, B, and C subsystems?

If not, Simulink requires that every output variable in a MATLAB Function block have a fixed dimension.
If the variable V in Block C is not completely assigned or assigned values of different sizes in different conditions, Simulink cannot determine its dimension at compile time.
Hence the error

For instance:

function V = fcn(U)
if U > 0
    V = [1; 2; 3];  
else
    V = 0;         
end

In the code above, the output size of V changes depending on the condition.

To solve:
Clearly declare the size of V So it remains constant:

function V = fcn(U)
V = zeros(3,1);     % fix size at 3x1
if U > 0
    V = [1; 2; 3];
else
    V = [0; 0; 0];
end

Another way is that you can enable visual- signal in MATLAB settings

Open the MATLAB Function Block → Edit Data → check Variable size, set upper bound

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

79787646

Date: 2025-10-10 19:39:59
Score: 1
Natty:
Report link

As an alternative to @pixel-process's answer, you could develop your package somewhere on your normal Python path, giving the parent directory the name of your package, and then use absolute imports. E.g., in test.py you could then say from pkg_name.utils_dataset.px_chol import CLASS_NAME.

The advantage to using absolute rather than relative imports is, as PEP 8 says,

They are usually more readable and tend to be better behaved (or at least give better error messages) if the import system is incorrectly configured.

Reasons:
  • Long answer (-0.5):
  • Has code block (-0.5):
  • User mentioned (1): @pixel-process's
  • Low reputation (1):
Posted by: PT-Hrothgar

79787644

Date: 2025-10-10 19:38:59
Score: 2
Natty:
Report link

Unfortunately the nature of stateful navigation is that the state is maintained. If you don't want your state maintained you'll need to use a normal ShellRoute with no state and rely on finer manipulation such as overriding didPush, didPushNext, didPop, didPopNext, and didChangeDependencies as well as the obvious initState.

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

79787638

Date: 2025-10-10 19:27:56
Score: 6 🚩
Natty:
Report link

Thanks for your question. The PowerPoint JavaScript API currently doesn’t support hiding or showing slides. If you'd like to suggest this feature, please post in the M365 Developer Platform community.

Reasons:
  • Blacklisted phrase (0.5): Thanks
  • RegEx Blacklisted phrase (2.5): please post
  • Low length (1):
  • No code block (0.5):
  • Single line (0.5):
  • Low reputation (1):
Posted by: Jonah Karpman

79787637

Date: 2025-10-10 19:27:56
Score: 1
Natty:
Report link

For the grid to work properly you need to add the directive
@rendermode InteractiveServer

For the sort to work you need to adjust the database query if you're getting your data from database.

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

79787633

Date: 2025-10-10 19:09:52
Score: 1.5
Natty:
Report link

from ..utils_dataset.px_chol import CLASS_NAME should work for an import like this. Adding .. will use the parent directory of test.py for the import.

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

79787621

Date: 2025-10-10 18:39:46
Score: 1
Natty:
Report link

These three data structures are mainly different in how they store and access the data:

  1. Linked list

2. Binary tree (especially binary search tree – BST)

3. Hash Table

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

79787619

Date: 2025-10-10 18:36:45
Score: 0.5
Natty:
Report link

The equivalent of which.max and which.min is argmax and argmin respectively.

y = [1, 4, 3, 2]
argmax(y)
> 2

https://docs.julialang.org/en/v1/base/collections/#Base.argmax

In earlier versions there were the indmax and indmin functions, but they have been deprecated and removed in the meanwhile. It seems they were removed with Julia 0.7 and 1.0 released in August 2018.

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

79787612

Date: 2025-10-10 18:25:43
Score: 2.5
Natty:
Report link

Use -w0

echo -n "hello" | nc -4u -w0 localhost 8000

From @simon-unsworth 's answer below.

Reasons:
  • Low length (1.5):
  • Has code block (-0.5):
  • User mentioned (1): @simon-unsworth
  • Low reputation (0.5):
Posted by: brookbot

79787593

Date: 2025-10-10 17:46:33
Score: 0.5
Natty:
Report link

Dijkstra's finds the shortest path from x to y by calculating, and using, the shortest path to all nodes z, that are adjacent to y and closer to x than y is: it is the minimum of dist(z) + weight(z,y) for all such z.

An optimal substructure defines an ordering, and an ordering also defines an optimal substructure, so a great many algorithms, have an optimal substructure, e.g. summing the values in an array via partial sum of the elements before it, but are not traditionally classified as dynamic programming algorithms.

CLRS:
Shortest-paths algorithms typically rely on the property that a shortest path between two vertices contains other shortest paths within it. (The Edmonds-Karp maximum-flow algorithm in Chapter 26 also relies on this property.) This optimal substructure property is a hallmark of the applicability of both dynamic programming (Chapter 15) and the greedy method (Chapter 16). https://www.cs.cmu.edu/afs/cs/academic/class/15451-s04/www/Lectures/shortestPaths.pdf

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

79787583

Date: 2025-10-10 17:29:29
Score: 2.5
Natty:
Report link

I believe you need a file in each directory "_init_.py" to tell python to see that as a package for you to call.

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

79787580

Date: 2025-10-10 17:27:28
Score: 1
Natty:
Report link

You can set options using the set method

var element = document.getElementById('element-to-print');
var opt = {...};
html2pdf().set(opt).from(element).save();

this options object takes a lot of configs. You can set the styles from here. Refer to the docs to see what options you can provide.

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

79787578

Date: 2025-10-10 17:22:27
Score: 2
Natty:
Report link

I know this is an old thread, but this is a common query and this page came up in my google search.

This is an alternate, practical, simple method that does not account for negative numbers or trailing zeros.

For Cell B2:

=LEN(TEXT(B2,"0.########E+00"))-5

To add negative numbers:

=IF(B2<0,LEN(TEXT(B2,"0.########E+00"))-6,LEN(TEXT(B2,"0.########E+00"))-5)

Add more #'s for more precision.

Reasons:
  • No code block (0.5):
  • Filler text (0.5): ########
  • Filler text (0): ########
  • Filler text (0): ########
  • Low reputation (1):
Posted by: MattS

79787566

Date: 2025-10-10 17:05:23
Score: 1
Natty:
Report link

If anybody else reaches this place, especially for the Remote VSCode server enthusiasts, I found out how stupid I was and why Intellisense was not working at all.

I checked the .cache folder. Because the remote machine was very low on disk space for the home directories, I created a symlink to a local SSD for a similar .cache folder. The problem was, I deleted the .cache folder from the SSD (for refreshing the Intellisense database that no longer worked properly) and the symlink remained dangling and could not create any new data inside.

Took me no more then 3 months to figure that out. So yeah, check for file descriptor access limits, symlink, or simply disk space where the cache is stored.

Kept only the C/C++ Extension Pack extension. Having also C/C++ extension seemed to conflict with the other one so for now, seems clean.

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

79787565

Date: 2025-10-10 17:03:22
Score: 2
Natty:
Report link

Steps for insertion in AVL trees -

  1. Insert the new node as in a normal binary search tree (BST).

  2. Move back up the tree and calculate the balance factor for each node:
    balance factor = height of left subtree - height of right subtree.

  3. If the balance factor becomes greater than 1 or less than -1 (means balance factor should be -1, 0, +1), the tree is unbalanced and needs rotation.
    There are four types of rotation which include -

    • Left left (LL) rotation - when a node is inserted in the left subtree of the left child.

    • Right right (RR) rotation - when a node is inserted into the right subtree of the right child.

    • Left right (LR) rotation - when a node is inserted into the right subtree of the left child.

    • Right left (RL) rotation - when a node is inserted in the left subtree of the right child.

      For example, this is a balanced AVL tree -

      enter image description here

Reasons:
  • Blacklisted phrase (1): enter image description here
  • Long answer (-0.5):
  • No code block (0.5):
  • Low reputation (1):
Posted by: muskan

79787561

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

CockroachDB depends on clock synchronization for its consistency guarantees so running NTP or another service is necessary to keep clock skew in check and the cluster healthy.

Recommended configurations and tutorials can be found here.

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

79787556

Date: 2025-10-10 16:59:20
Score: 8.5 🚩
Natty: 5.5
Report link

I have this exact same problem. Did you ever figure it out?

Reasons:
  • RegEx Blacklisted phrase (3): Did you ever figure it out
  • Low length (1.5):
  • No code block (0.5):
  • Ends in question mark (2):
  • Single line (0.5):
  • Low reputation (1):
Posted by: Max Ildari

79787554

Date: 2025-10-10 16:56:19
Score: 1.5
Natty:
Report link

@Maddy Here's a solution I have wherein you can intercept the request API that you are particularly expecting where the code is after user login from the auth step.

Scenario: build percent-encoded auth URL with PKCE S256
    
    #....this will be your code to generate the authURL which you already have above...

    # --- Start browser and navigate to auth URL ---
    Given driver authUrl

    # --- Perform login on Keycloak page ---
    And waitFor("input#username")
    And input("input#username", username)
    And input("input#password", password)

    # This is where you can intercept the API so once you click submit it will capture the request.
    * def mock = driver.intercept({ patterns: [{ urlPattern: '*/redirect*' }], mock: 'mock.feature' })
    And click("input#kc-login, button#kc-login, input[name=login], button[type=submit]")


#---- on a separate feature file you will create mock.feature that will store the #requestPath and requestParams on the intecepted API ---
#Here's my mock.feature file looks like:

@ignore
Feature:

Background:
* def savedRequests = []

Scenario: pathMatches('<substitute this with your API pattern>')
* savedRequests.push({ path: requestPath, params: requestParams })
* print 'saved:', savedRequests
* print savedRequests[0].params.code
* def response = <html><body><h2>Code captured</h2></body></html>
Reasons:
  • Long answer (-1):
  • Has code block (-0.5):
  • User mentioned (1): @Maddy
  • Looks like a comment (1):
  • Low reputation (1):
Posted by: Gelo

79787553

Date: 2025-10-10 16:56:19
Score: 0.5
Natty:
Report link

Use oauth2Login, not formLogin

Reasons:
  • Low length (2):
  • Has code block (-0.5):
  • Has no white space (0.5):
  • Single line (0.5):
  • High reputation (-2):
Posted by: ch4mp

79787544

Date: 2025-10-10 16:51:18
Score: 1
Natty:
Report link

One another possibility that might cause this is manual updated .git/hooks/pre-commit file that is fetching from an older default branch which does not exists in the remote at all.

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

79787522

Date: 2025-10-10 16:18:12
Score: 2.5
Natty:
Report link

You need to add a space after each comma and it would simply work.
Eventually, you may check your local numbers configuration to see if it describes the comma as thousands or fraction separator to understand why your original statement did not work.

SELECT * FROM SOMESCHEMA.SOMETABLE
WHERE ID IN (123, 456);
Reasons:
  • Blacklisted phrase (1): did not work
  • Low length (0.5):
  • Has code block (-0.5):
  • Unregistered user (0.5):
  • Low reputation (1):
Posted by: Lyubomir

79787517

Date: 2025-10-10 16:11:10
Score: 3
Natty:
Report link

Just do this and you have no problem whatsoever.

@echo off

for /f %%s in (version.txt) do set VERSION=%%s

echo %VERSION%

Or this:

for /f "usebackq" %%s in (`type version.txt`) do set VERSION=%%s

echo %VERSION%

Reasons:
  • Low length (0.5):
  • No code block (0.5):
  • User mentioned (1): @echo
  • Low reputation (1):
Posted by: Ben Mar

79787514

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

After doing a lot of research, I realized that the issue has to do with the use of LSTM.

LSTM and RNN are critized for begin bad precisely at predicting future values of a sequence and often used for predicting intermediate values in voice recognition or sentiment analysis.

Futher research showed me that, for forecasting, it is recommended to use Seq2Seq models like an LSTM encoder-to-decoder or attention based models that don't rely on autoregression.

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

79787512

Date: 2025-10-10 16:00:08
Score: 2
Natty:
Report link

this worked for me. had to refresh twice. thank you so much.

Reasons:
  • Blacklisted phrase (0.5): thank you
  • Whitelisted phrase (-1): this worked for me
  • Whitelisted phrase (-1): worked for me
  • Low length (1.5):
  • No code block (0.5):
  • Single line (0.5):
  • Low reputation (1):
Posted by: Rushbh

79787508

Date: 2025-10-10 15:54:06
Score: 1
Natty:
Report link

GitHub's built-in branch protection rules do not allow for per-branch configuration of merge strategies.

But, you can enforce a "linear history" for specific branches. This has the effect of requiring either squash and merge or rebase and merge, disallowing traditional merge commits.

For master:

For develop:


This only disallows traditional merge commits. You'd still need to trust your team to select the correct option when merging into master.

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

79787504

Date: 2025-10-10 15:51:05
Score: 0.5
Natty:
Report link

Since version 6, you can now use the function chart.setTheme(isDarkMode ? 'dark' : 'default');.

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

79787500

Date: 2025-10-10 15:40:03
Score: 2.5
Natty:
Report link

What worked for me was to install the C++ build tools from Visual Studio. I was installing it on a new device, and this resolved the issue.

Reasons:
  • Whitelisted phrase (-1): worked for me
  • Low length (1):
  • No code block (0.5):
  • Single line (0.5):
  • Starts with a question (0.5): What
  • Low reputation (1):
Posted by: Erik Peralta

79787488

Date: 2025-10-10 15:26:59
Score: 0.5
Natty:
Report link

The answer by Alohci is mostly correct, but here is some clarification that I needed when working through this.

If you want to add overflow: hidden on the body tag, but you want the scrollbar gutter to be applied, all you need to do is to apply scrollbar-gutter to the html tag.

.html {
   scrollbar-gutter: stable;
}

.body {
   overflow: hidden;
}

(Alohci's answer had overflow: hidden on the html tag and that's not necessary, or applies to what the OP was asking.)

In our case, we are setting the overflow: hidden to the body tag via JavaScript when an event is triggered.

Reasons:
  • Blacklisted phrase (0.5): I need
  • Long answer (-0.5):
  • Has code block (-0.5):
  • Low reputation (1):
Posted by: Eric