79764427

Date: 2025-09-14 16:41:00
Score: 1
Natty:
Report link

As you started to uncover according to your comment, lists are not copied when operated on, and in particular when declaring [] as a class attribute it gives you an empty list with some address on your CPU, that is shared between all classes (which is not the case with types that create copies of your variables).

See these links 1, 2, that globally show you this:

class Dog:

    tricks = []             # mistaken use of a class variable

    def __init__(self, name):
        self.name = name

    def add_trick(self, trick):
        self.tricks.append(trick)

>>> d = Dog('Fido')
>>> e = Dog('Buddy')
>>> d.add_trick('roll over')
>>> e.add_trick('play dead')
>>> d.tricks                # unexpectedly shared by all dogs
['roll over', 'play dead']
class Dog:

    def __init__(self, name):
        self.name = name
        self.tricks = []    # creates a new empty list for each dog

    def add_trick(self, trick):
        self.tricks.append(trick)

>>> d = Dog('Fido')
>>> e = Dog('Buddy')
>>> d.add_trick('roll over')
>>> e.add_trick('play dead')
>>> d.tricks
['roll over']
>>> e.tricks
['play dead']

Forgetting about this behaviour for lists and dicts (which does not exist for tuples, int, strings, floats) is maybe the most common error in Python.

Reasons:
  • Blacklisted phrase (1): these links
  • RegEx Blacklisted phrase (1): See these links
  • Long answer (-1):
  • Has code block (-0.5):
  • Low reputation (0.5):
Posted by: globglogabgalab

79764414

Date: 2025-09-14 16:15:29
Score: 6.5 🚩
Natty:
Report link

Hey were you able to build something stable for this? Also building something that needs a solid solution for this

Reasons:
  • RegEx Blacklisted phrase (3): were you able
  • Low length (1):
  • No code block (0.5):
  • Contains question mark (0.5):
  • Single line (0.5):
  • Low reputation (1):
Posted by: Philippe Clesca

79764409

Date: 2025-09-14 16:02:26
Score: 1.5
Natty:
Report link

Currently this one is working well, and you can customize other options if needed:

Filter = {
    "Dimensions": {
        "Key": "RECORD_TYPE",
        "Values": ["Usage", "Refund", "Tax"], # "Credit" is excluded
        "MatchOptions": ["EQUALS"]
    }
}

By the way, once you have your plot in the AWS Cost Explorer, you can open the "Amazon Q" chat engine and type something like:

Please what is the API query for this page (group by linked account, but excluding credit payment type) ?

Reasons:
  • Has code block (-0.5):
  • Ends in question mark (2):
Posted by: mountrix

79764403

Date: 2025-09-14 15:52:24
Score: 3
Natty:
Report link

Only solution i have found is revert package @google-cloud/pubsub to version 4.11.0.
There is some problem with the HTTP client of google-gax and nodejs enviroment.

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

79764397

Date: 2025-09-14 15:39:20
Score: 3.5
Natty:
Report link

I have PowerShell 7 using in the Terminal, but do not appear in .json file

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

79764386

Date: 2025-09-14 15:29:17
Score: 2.5
Natty:
Report link

THIS IS FOR WINDOWS ONLY

If you want to execute the latest sql statement then ctrl + enter
If you want to execute the all selected sql statement then ctrl + shift + enter

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

79764377

Date: 2025-09-14 15:15:12
Score: 2
Natty:
Report link

Enable Wireless Debugging on your Phone then click it and click "pair device with pairing code and on your pc in administator cmd run adb pair "ur phones ip" and it should show up your device on your phone.
Now it should always work but be careful because it's a bit of a security risk even with the code security.

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

79764367

Date: 2025-09-14 14:59:09
Score: 0.5
Natty:
Report link

It's great that you've found a passion for Machine Learning (ML) at such an early stage in your career. Your interest in the underlying math is a fantastic starting point, as it's a critical component of understanding and excelling in the field. Here's a structured approach to help you move from an explorer to a professional in ML.

1. Build a Solid Theoretical Foundation

Don't just watch videos; focus on understanding the core concepts.


2. Prioritize Practical Application

Theory without practice is not enough in a field like ML.


3. Network and Stay Updated

The ML field is incredibly dynamic, with new research and tools emerging constantly.

By following these steps, you will not only acquire the necessary skills but also build a compelling professional profile that will set you up for success in the field of Machine Learning.

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

79764366

Date: 2025-09-14 14:48:44
Score: 4.5
Natty:
Report link

Being a victim of scam can be depressing, you were given empty promises. They usually stop replying after achieving their aim which hurts even more, i have been there too as i was too ambitious and wanted financial security which made me invest a huge amount of my life savings. I never thought i would be getting a dime back and already lost hope until i contacted a team which was just a leap of faith as i wasn't going to go down without a fight. Easy Recovery Assets helped me recover my scammed funds back. Do not brood alone, make a move too, If you have similar issues send a mail to their team [ easyrecoveryasset@gmail. com ] you will thank me later.

Reasons:
  • Long answer (-0.5):
  • No code block (0.5):
  • Me too answer (2.5): have similar issue
  • Unregistered user (0.5):
  • Single line (0.5):
  • Low reputation (1):
Posted by: Joel Anthony

79764363

Date: 2025-09-14 14:37:42
Score: 3
Natty:
Report link

you can find ToPagedListAsync in X.PagedList.EF

download X.PagedList.EF from nuget

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

79764356

Date: 2025-09-14 14:21:38
Score: 1
Natty:
Report link

FILEVERSION 2,1,19624,0 PRODUCTVERSION 2,1,19624,0 FILEFLAGSMASK 0x17 FILEFLAGS 0x0 FILEOS VOS_UNKNOWN | VOS__WINDOWS32 FILETYPE VFT_DLL FILESUBTYPE 0x0 { BLOCK "StringFileInfo" { BLOCK "040904b0" { VALUE "FileDescription", "ANGLE libGLESv2 Dynamic Link Library" VALUE "FileVersion", "2.1.19624 git hash: 23fb62ca23cb" VALUE "InternalName", "libGLESv2" VALUE "LegalCopyright", "Copyright (C) 2015 Google Inc." VALUE "OriginalFilename", "libGLESv2.dll" VALUE "PrivateBuild", "2.1.19624 git hash: 23fb62ca23cb" VALUE "ProductName", "ANGLE libGLESv2 Dynamic Link Library" VALUE "ProductVersion", "2.1.19624 git hash: 23fb62ca23cb" VALUE "Comments", "Build Date: 2025-07-31 17:57:51 +0800" } } BLOCK "VarFileInfo" { VALUE "Translation", 0x409, 1200 } }

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

79764349

Date: 2025-09-14 14:08:35
Score: 1.5
Natty:
Report link

You look almost correct, but pay attention to the import. The import should be from here. Notice the index.js at the end

./generated/prisma/index.js
Reasons:
  • Low length (1):
  • Has code block (-0.5):
  • Low reputation (1):
Posted by: shamim anowar

79764347

Date: 2025-09-14 14:06:35
Score: 0.5
Natty:
Report link

However, the viewable area of the viewport just does not look square as it should for an aspect ratio of 1.008230.

This is likely not a problem with JS or with Chrome, and is just a simple quirk with the way that our eyes perceive things.

Mini glossary:
"white box" = the viewport
"top browser ribbon" = the top part of a browser where you can access a website's URL and any open tabs

1. The browser window (as a whole) isn't square

When you are looking at the open tab's content and trying to figure out if the white box looks square, your mind is most likely including the top ribbon of the browser inside of that calculation due to how the browser window contrasts to your desktop, causing your eyes to think that the white box isn't square, instead of your eyes thinking that the whole browser window with the top ribbon isn't square.
If you try replicating the same experiment with a blank blue square div inside the body, the blue square will appear square to your eyes due to the contrast from the blank body.

2. The sizing and positioning of the text is confusing (for your eyes)

Even if you removed the top browser ribbon from your experiment somehow, it could still appear non-square due to the confusingly-positioned text.
Since the text is short and wide and contrasting, it causes your eyes to draw an imaginary box around the text which your eyes don't perceive as part of the white box. Then, when your eyes exclude the imaginary box during the white box measuring, your eyes naturally only measure the space directly surrounding the imaginary box. This means that your eyes measure the space above and below the imaginary box, take that as the white box's height, and then your eyes measure the space to the left and to the right of the imaginary box, and then take that as the white box's width.

The image below should make what I just described more clear:
diagram explaining how our eyes perceive the width and height of the white box
As you can see, the yellow box is the imaginary box that your eyes form, and then the arrows are how your eyes instinctively calculate the dimensions without the imaginary box.
Adding the lengths of the green arrows will get you a shorter length than the sum of the lengths of the cyan arrows, therefore your eyes naturally perceive the width to be less then the height.

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

79764343

Date: 2025-09-14 13:51:31
Score: 0.5
Natty:
Report link

I found this, which worked for me:

So, it is not a bug - per say...

I suspect that what is happening is that you (we - as that is my case too) all have an intel processor with integrated graphics that supports Vulkan instruction set... well LM Studio seems to try to use it as a graphic card.

And depending on which device it tries to put the neural network on (and the size of the prompt wrt VRAM) it just fails.

So, the fix is easy, go into the configuration of your runtime, get into the Hardware tab and switch off the integrated graphics. (see the disabled toggle on the GPU section next to the Intel UHD graphics)

Reasons:
  • Whitelisted phrase (-1): worked for me
  • Long answer (-0.5):
  • No code block (0.5):
  • Unregistered user (0.5):
  • Low reputation (1):
Posted by: Scott

79764339

Date: 2025-09-14 13:37:27
Score: 11.5 🚩
Natty: 6
Report link

did you find an answer to this? I have the same problem.

Reasons:
  • Blacklisted phrase (1): answer to this?
  • Blacklisted phrase (1): I have the same problem
  • RegEx Blacklisted phrase (3): did you find an answer to this
  • Low length (1.5):
  • No code block (0.5):
  • Me too answer (2.5): I have the same problem
  • Contains question mark (0.5):
  • Single line (0.5):
  • Starts with a question (0.5): did you find an answer to this
  • Low reputation (0.5):
Posted by: Joe

79764334

Date: 2025-09-14 13:26:24
Score: 0.5
Natty:
Report link

Sorry to jump in on an older post but I figured out what I assume is the correct way to do it, download cudaNN from the NVIDIA site https://developer.nvidia.com/cuda-toolkit-70 and then extract it into the bin directory in the correct cuda install that you ate using eg C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v10.0\bin

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

79764333

Date: 2025-09-14 13:24:24
Score: 1.5
Natty:
Report link

Helped me, hoping it may help you or others:
In my case the powershell restrictions was the fault:
1. Check if the powershell path is present and correct (in system variables path)
2. Check if the group policy editor allows to run powershell scripts - this was my issue.
I do not know if I have to expand my answer any further on how to do each step because it can be googled easy. If you want me to explain - I may try :)

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

79764328

Date: 2025-09-14 13:08:21
Score: 1.5
Natty:
Report link
private readonly string _con;
    public CustomerRepositary(IConfiguration con)
    {
        _con = con.GetConnectionString("DefaultConnection");
    }

Package : System.Data.SqlClient

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

79764320

Date: 2025-09-14 12:52:17
Score: 3
Natty:
Report link

Thanks to all those who reviewed the answer especially @Pointy Number Array to Object conversion shorting the Object Keys in ascending order
@Lajos Arpad for elaborated answer and @chrwahl for supporting the answer

Summary

:- JS Orders the key according to its rules here are the permutation of Data types and there answers

Reasons:
  • Blacklisted phrase (0.5): Thanks
  • Long answer (-0.5):
  • No code block (0.5):
  • User mentioned (1): @Pointy
  • User mentioned (0): @Lajos
  • User mentioned (0): @chrwahl
  • Self-answer (0.5):
  • Low reputation (1):
Posted by: Yogesh Kumar Verma

79764305

Date: 2025-09-14 12:20:09
Score: 1.5
Natty:
Report link

Your struct does not contain 2 arrays of strings but 2 arrays of chars, so basically two strings. If you want a string array, you need to create a char[n][MAX], where n is the ammount of strings and MAX the length of each string. Pointing to the Nth title would look like this:
char* title = books->title[n];

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

79764298

Date: 2025-09-14 12:12:07
Score: 3
Natty:
Report link
/** @type {import('next').NextConfig} */
const nextConfig = {
    images: {
        remotePatterns: [
            {
                protocol: 'https',
                hostname: 'i.ibb.co',
            },
        ],
    },
};

export default nextConfig;

i face the same problem. i add this config and it is working now. you should add the hostname
Reasons:
  • Has code block (-0.5):
  • Me too answer (2.5): i face the same problem
  • Low reputation (1):
Posted by: Tasnim Rahman

79764289

Date: 2025-09-14 11:58:04
Score: 2
Natty:
Report link

have you tried just getting the magnitude of two positions that have been offset away from the center line then just choosing the point with a smaller magnitude

Reasons:
  • Whitelisted phrase (-1): have you tried
  • Low length (1):
  • No code block (0.5):
  • Single line (0.5):
  • Low reputation (1):
Posted by: mr gamer cool dude

79764286

Date: 2025-09-14 11:55:03
Score: 1.5
Natty:
Report link

I suggest registering an interceptor that overwrites the findDirty Method. From then on, the is a few things I can imagine. Judge yourself which one helps and which one is too dirty :-)

  1. first idea: Just use it for logging debug information. Compare the current and previous state and log it
  2. second idea: My guess is that the collection is considered dirty, maybe because of ordering.... who knows? So maybe make a custom implementation to check for changes
  3. third idea: Maybe you could just not go the route of @PrePersist callback method, but actually set the audit fiels in the interceptor. If it's dirty, then set the 2 fields.

would love to hear feedback if the third idea works.

Reasons:
  • Long answer (-0.5):
  • No code block (0.5):
  • Contains question mark (0.5):
  • User mentioned (1): @PrePersist
Posted by: EasterBunnyBugSmasher

79764281

Date: 2025-09-14 11:51:02
Score: 3
Natty:
Report link
header 1 header 2
cell 1 cell 2
cell 3 cell 4
Reasons:
  • Low length (1.5):
  • No code block (0.5):
  • Low reputation (1):
Posted by: Sheker M

79764270

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

There is a (less safe) workaround as I described here:

https://stackoverflow.com/a/79763924/3809202

In your case it would work the following way, VB,NET-callers may also have to apply the Obsolete attribute:

<Obsolete("Allow ref structs", False)>
Public Sub GetData(data As System.Span(Of Byte)) 
    ...
End Sub
Reasons:
  • Blacklisted phrase (1): stackoverflow
  • Whitelisted phrase (-1): In your case
  • Low length (0.5):
  • Has code block (-0.5):
  • Low reputation (0.5):
Posted by: Max

79764266

Date: 2025-09-14 11:30:58
Score: 2.5
Natty:
Report link

Close the project and Android Studio.
Then delete the .idea folders of project and android then restart the system.

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

79764262

Date: 2025-09-14 11:30:58
Score: 2
Natty:
Report link

I solved it by saving the text file with ANSI format instead of UTF-8.

Reasons:
  • Whitelisted phrase (-2): I solved
  • Low length (1.5):
  • No code block (0.5):
  • Self-answer (0.5):
  • Single line (0.5):
  • Low reputation (1):
Posted by: bbProg

79764261

Date: 2025-09-14 11:20:32
Score: 7.5 🚩
Natty:
Report link

Did anyone find a reliable fix for this, or are these simply bugs we have to wait to get fixed from Apple?

This drift in viewport during scroll for position fixed top and bottom bars it seems really hard to workaround right now, I always get gaps and cant find a stable solution here.

Also full screen overlays are terrible to handle too, there I now get a complete clear view of the page below

Reasons:
  • RegEx Blacklisted phrase (3): Did anyone find a
  • RegEx Blacklisted phrase (1.5): fixed from Apple?
  • No code block (0.5):
  • Contains question mark (0.5):
  • Unregistered user (0.5):
  • Starts with a question (0.5): Did anyone find a
  • Low reputation (1):
Posted by: Ale

79764257

Date: 2025-09-14 11:12:30
Score: 2
Natty:
Report link

Since XPath Helper has been removed from the Google Chrome Store, the XPath Tester can be used: https://chromewebstore.google.com/detail/xpath-tester/cneomjecgakdfoeehmmmoiklncdiodmh

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

79764249

Date: 2025-09-14 11:02:27
Score: 3
Natty:
Report link

It's not the best, nor a guaranteed fix, but I noticed that sometimes Latex (or at least Overleaf?) gets confused when I copy in toomany sources or an entire .bib file at once. It sometimes worked when I copied in the sources in little bunches of around 5 sources per copy/paste.

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

79764245

Date: 2025-09-14 10:56:26
Score: 1
Natty:
Report link

There are multiple issues & bugs as far as I can tell:

  1. Position: fixed top and bottom toolbar start to drift as you scroll.

  2. editing in text boxes (inputs are better, textareas much worse) causes conflicts as it turns off fixed positions and sometimes they are there although not visible.

  3. side menus often get cut - a fixed position scrollable side navbar typically gets cut off right above the URL line, but the background continues to be translucent all the way down to the bottom of the screen. This really looks aweful.

  4. top and bottom backgrounds randomly become solid (instead of translucent) to try and compensate for the position:fixed items.

Overall, I have to say this is the buggiest release of Safari for quite a few years now...

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

79764244

Date: 2025-09-14 10:55:26
Score: 3
Natty:
Report link

It's Lora alpha factor fault
it scale lr

Reasons:
  • Low length (1.5):
  • No code block (0.5):
  • Low reputation (1):
Posted by: afsaneh dehghan

79764233

Date: 2025-09-14 10:42:23
Score: 2
Natty:
Report link

A single desk is a perfect solution for compact workspaces, offering a clean and organized area for productivity. Its sleek design saves space while providing enough surface for essentials. Ideal for home offices, study rooms, or small workplaces

https://www.sohomod.com/office.html

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

79764231

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

I used this code and it worked.

llm = HuggingFacePipeline(
        pipeline=local_pipe,
        model_kwargs={"temperature": 0.5, 'device':0},
    )

I set device to cuda.

Reasons:
  • Whitelisted phrase (-1): it worked
  • Low length (1):
  • Has code block (-0.5):
  • Self-answer (0.5):
  • Low reputation (0.5):
Posted by: meysam

79764222

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

The lint is warning because you are taking a mutable reference to a const item in order to call a method that requires &mut self. That mutable reference is to a fresh temporary copy of the const value (the NonNull), not to the original const item. In your specific pattern, that borrowed temporary is only used to manufacture a &'_ mut T pointing at 0x1234, so the const itself is not being mutated. The real risk is the usual unsafe aliasing/validity obligations of turning a raw address into a mutable reference.

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

79764221

Date: 2025-09-14 10:09:15
Score: 2.5
Natty:
Report link

In pom.xml of the project just change <packaging>war</packaging> to <packaging>ejb</packaging>

All the options will be visible

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

79764210

Date: 2025-09-14 09:38:09
Score: 1
Natty:
Report link

Adding

    def scrollContentsBy(self, dx, dy):
        super().scrollContentsBy(dx, dy)
        self.viewport().update()

to the view solves it. The explanation can be found in the comment by musicamante.

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

79764209

Date: 2025-09-14 09:37:09
Score: 3
Natty:
Report link

A proxy pool is required for you. It is easy to build based on free proxy lists. if it doesn't work for you, get more lists from "free proxy list github" in google.

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

79764187

Date: 2025-09-14 08:55:00
Score: 2.5
Natty:
Report link

Ваш код приводит к бесконечной рекурсии, потому что:

Это классическая проблема, когда базовый класс пытается создать атрибут как экземпляр подкласса. Прямой паттерн для этого не существует (как я упоминал ранее), но есть "умные" способы её решить с помощью отложенной инициализации (lazy initialization), фабричного метода или создания экземпляра без вызова __init__ (чтобы избежать рекурсии).

Решение: Отложенная инициализация с флагом

Мы можем модифицировать NamedElement, чтобы он создавал self.name только если это не приведёт к рекурсии. Используем флаг для отслеживания, и object.__new__ для создания экземпляра Property без вызова __init__.

class NamedElement:
    def __init__(self, **kwargs):
        if not hasattr(self, '_name_created'):  # Флаг для предотвращения рекурсии
            self._name_created = True
            # Создаём экземпляр Property без вызова __init__ (чтобы избежать рекурсии)
            self.name = object.__new__(Property)
            # Инициализируем его вручную, если нужно (например, установим имя)
            if 'name' in kwargs:
                self.name._init_name(kwargs['name'])  # Кастомный метод для инициализации

class Property(NamedElement):
    def __init__(self, **kwargs):
        super().__init__(**kwargs)
        # Дополнительная логика для Property
        self.value = "Я - свойство"

    def _init_name(self, name_value):
        # Кастомная инициализация для имени (без рекурсии)
        self.name_value = name_value

# Тестирование
myprop = Property(name='myprop')
print(type(myprop.name))  # <class '__main__.Property'>
print(myprop.name.name_value)  # myprop
print(myprop.value)  # Я - свойство
print(myprop is myprop.name)  # False (разные объекты)

Объяснение:

Альтернативное решение: Фабричный метод

Если хотите более явный контроль, используйте фабричный метод в NamedElement, который подкласс может переопределить:

class NamedElement:
    def __init__(self, **kwargs):
        self.name = self.create_name(**kwargs)

    def create_name(self, **kwargs):
        # По умолчанию возвращает None; Property переопределит это
        return None

class Property(NamedElement):
    def __init__(self, **kwargs):
        super().__init__(**kwargs)
        self.value = "Я - свойство"

    def create_name(self, **kwargs):
        # Создаём экземпляр Property без рекурсии
        name_obj = object.__new__(Property)
        if 'name' in kwargs:
            name_obj.name_value = kwargs['name']
        return name_obj

# Тестирование
myprop = Property(name='myprop')
print(type(myprop.name))  # <class '__main__.Property'>
print(myprop.name.name_value)  # myprop

Объяснение:

Reasons:
  • Long answer (-1):
  • Has code block (-0.5):
  • Unregistered user (0.5):
  • No latin characters (2.5):
  • Low reputation (1):
Posted by: Julia

79764184

Date: 2025-09-14 08:48:59
Score: 3.5
Natty:
Report link

Does it work if you do something like this:

edge_shape = EdgeShape(False, 10, 10, 100, 100, False, self.graph_canvas)
self.graph_canvas.Refresh()

?

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

79764168

Date: 2025-09-14 08:25:54
Score: 3
Natty:
Report link

I also got this error when I did it directly in the browser, but when I tried again with curl, the error did not occur. Not sure if this is a new upgrade of Telegram

Reasons:
  • Low length (1):
  • No code block (0.5):
  • Single line (0.5):
  • Low reputation (1):
Posted by: Thăng Trần

79764165

Date: 2025-09-14 08:15:29
Score: 6 🚩
Natty:
Report link

I am also having the same problem. Otp fields not autofocusing due to ref issue.

Reasons:
  • Low length (1.5):
  • No code block (0.5):
  • Me too answer (2.5): I am also having the same problem
  • Single line (0.5):
  • Low reputation (1):
Posted by: We Blend Web

79764163

Date: 2025-09-14 08:13:28
Score: 1.5
Natty:
Report link

JavaFX has different selectors and some of web css doesnt work with it. Problem is the Javafx css engine doesn’t support structural pseudo-classes, so javafx just ignore it. You should set CellFactory where you by index decide, here solution i guess:

   myComboBox.setCellFactory(lv -> new ListCell<String>() {// Here you have one method and there set your behaviour np check + by f/s index apply styles})
Reasons:
  • Blacklisted phrase (1): doesnt work
  • Has code block (-0.5):
  • Low reputation (1):
Posted by: JZARGO

79764161

Date: 2025-09-14 08:06:27
Score: 3
Natty:
Report link

you are calling wrong function inside your form, you defined your function as onFormSubmit but you are calling onFormsubmit.

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

79764152

Date: 2025-09-14 07:40:21
Score: 1
Natty:
Report link

Sass takes the first part of the filename before the first "."

So bar.$color will work if you choose to take the namespace sass automatically uses

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

79764149

Date: 2025-09-14 07:34:20
Score: 3
Natty:
Report link

only this helps me

git config --global credential.helper store

Reasons:
  • Low length (1.5):
  • No code block (0.5):
  • Low reputation (1):
Posted by: Евгений Кузьмин

79764145

Date: 2025-09-14 07:26:18
Score: 0.5
Natty:
Report link

You can’t directly use an Office 365 COM component without having Office installed, because those COM libraries (Excel, Word, Outlook, etc.) are tied to the Office installation itself. They aren’t standalone redistributable components.

If you want to work with Office files without installing Office, here are a few alternatives:

  1. Use the Open XML SDK – lets you create, edit, and read Office documents programmatically without relying on COM.

  2. Interop via Office Online / Graph API – if you’re on Microsoft Office 365, you can interact with Word/Excel files through cloud APIs instead of COM automation.

  3. Third-party libraries – for example, libraries like EPPlus or ClosedXML (for Excel) allow you to manipulate spreadsheets without Office installed.

  4. Install the Office runtime (if available) – older versions of Access had a runtime that could be deployed separately, but for full Excel/Word automation you generally need Office itself.

So short answer: COM automation requires Office on the machine. If you can’t install it, switch to OpenXML or another library depending on your use case.

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

79764135

Date: 2025-09-14 07:04:14
Score: 1
Natty:
Report link

Eventually I opened a support case at Azure and got the response that MI is not supported for BULK INSERT into temporary tables on Azure SQL.

I found a workaround, however. If you can live with the databases accessed by an account with SA permissions, you can add your MI into the role which is made SQL Admin in the server settings. Not a recommended approach, though.

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

79764126

Date: 2025-09-14 06:41:09
Score: 1
Natty:
Report link

Change this function

const handleCustomerChange = (item) => {
        setSelectedCustomer(item.label);
    };
TO
const handleCustomerChange = (item) => {
        setSelectedCustomer(item.value);
    };
Reasons:
  • Low length (0.5):
  • Has code block (-0.5):
  • Low reputation (1):
Posted by: haider ali

79764121

Date: 2025-09-14 06:29:43
Score: 4
Natty: 5.5
Report link

Can we add the “login using keycloak” button of the Jupyter hub in website A itself ?

As website A uses Jupyter hub rest apis

Reasons:
  • Low length (1):
  • No code block (0.5):
  • Contains question mark (0.5):
  • Unregistered user (0.5):
  • Starts with a question (0.5): Can we add the
  • Low reputation (1):
Posted by: Zagrus

79764120

Date: 2025-09-14 06:25:42
Score: 0.5
Natty:
Report link

This question has been very edifying. It shows that there is no clear equivalent to /usr/bin.

I am going to create 'c:/Program Files/bin' and store my EXEs there. That way I only need to add one new element to my global %PATH% variable.

Thanks all.

Reasons:
  • Blacklisted phrase (0.5): Thanks
  • Low length (0.5):
  • No code block (0.5):
  • High reputation (-1):
Posted by: Fred Haslam

79764119

Date: 2025-09-14 06:23:42
Score: 3
Natty:
Report link

Force the input box background to transparent and remove any shadows/borders that look like a "black box":

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

79764116

Date: 2025-09-14 06:20:41
Score: 1.5
Natty:
Report link

import java.util.Scanner;

public class Birthday

{

public static void main(String[]args)

{

  int birthday;

  int age;

  int YearOfBirth;

  Scanner keyboard = new Scanner( System.in);

  System.out.println(" What is your +Age ?");

  age = keyboard.nextInt();

  YearOfBirth= 2006 - age;

  System.out.println("I was born :+ YearsOfBirth.");

}

}

Reasons:
  • Blacklisted phrase (1): What is your
  • Has code block (-0.5):
  • Low reputation (1):
Posted by: Snigdha Das

79764099

Date: 2025-09-14 05:36:31
Score: 2
Natty:
Report link
if (Regex.IsMatch(protocollo, @"^(2019/0002391|2019/0002390|2019/0001990)$"))
Reasons:
  • Low length (1.5):
  • Has code block (-0.5):
  • Has no white space (0.5):
  • Single line (0.5):
Posted by: matpop

79764094

Date: 2025-09-14 05:11:26
Score: 1
Natty:
Report link

From what I understand there is a PyJWT base JWT error: pyJWTError.

It's implemented as follows:

try:
    jwt.decode(jwt_token, os.environ['SECRET'], algorithms=["HS256"])
except jwt.PyJWTError:  # This catches EVERYTHING from PyJWT
    pass
Reasons:
  • Low length (0.5):
  • Has code block (-0.5):
  • Low reputation (1):
Posted by: Lev Zhitnik

79764092

Date: 2025-09-14 05:07:25
Score: 3
Natty:
Report link

That's great!!!... This website is very interesting. So, I have to learn a lot of stuffs about my preferred topics.

Reasons:
  • Low length (1):
  • No code block (0.5):
  • Single line (0.5):
  • Low reputation (1):
Posted by: Visión Futurista Mexicana

79764083

Date: 2025-09-14 04:09:51
Score: 5.5
Natty: 5.5
Report link

Just a question, is it a good practice to use service and database from pipe?

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

79764078

Date: 2025-09-14 04:04:50
Score: 0.5
Natty:
Report link
.skill-pictures {
  display: grid;
  grid-template-columns: repeat(2, 150px);
  gap: 10px;
  justify-content: end;
}

.skill-pictures img {
  width: 150px;
  height: auto;
  display: block;
  margin: 0;
}
Reasons:
  • Low length (0.5):
  • Has code block (-0.5):
  • Low reputation (0.5):
Posted by: masoudiofficial

79764077

Date: 2025-09-14 03:57:48
Score: 2.5
Natty:
Report link

I have had the same issue for a couple of days; none of the Telegram bot APIs are going through the Chrome extension.

I am using Node.js to create a server to send the info that way.

It's the same as a proxy, but for my purposes, it's faster, and I need each second.

Reasons:
  • Blacklisted phrase (0.5): I need
  • Low length (0.5):
  • No code block (0.5):
  • Low reputation (1):
Posted by: omar hamad

79764062

Date: 2025-09-14 02:40:31
Score: 0.5
Natty:
Report link

It looks like you're spying on a method that isn't actually implemented. You have spy(hashPassword, "thisThingEitherDoesntExistOrDoesntReferenceAnything")

The first argument is fine, because it references the class. The second argument should be the name of the function. The nuance here is that the function you're intending to mock is the constructor of the hashPassword class.

Whether or not you can actually do this without a workaround is beyond my depth of js knowledge, but you can search for something like below

See How to spy on a class constructor jest?, or search for mocking constructors

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

79764058

Date: 2025-09-14 02:24:27
Score: 3
Natty:
Report link

I think that is not possible, once you make it in PDF file it is now digital which readable on screen and there still no technology that provides "Print to File" hook.

Reasons:
  • Low length (1):
  • No code block (0.5):
  • Single line (0.5):
  • Low reputation (1):
Posted by: Al-moain Algamar

79764054

Date: 2025-09-14 02:12:25
Score: 1
Natty:
Report link

Documenting the question led me to approach it from the other direction, this is probably better as it avoids the string conversions, and may be the best way optimal:

 if checkSum == 16*(int)bytdata[j+1])+(int)bytdata[j+2] {
Reasons:
  • Low length (0.5):
  • Has code block (-0.5):
  • Self-answer (0.5):
  • Low reputation (0.5):
Posted by: Hoodoo

79764053

Date: 2025-09-14 02:09:24
Score: 3
Natty:
Report link

Try BYROW and BYCOL. That's what I use to iterate through an array. Sometimes, I also use MAKEARRAY. It essentially creates a 2d iterator of the size of your choosing. With these, you can almost do everything that a for loop will let you do. I haven't found anything similar to while loops.

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

79764042

Date: 2025-09-14 01:14:12
Score: 2
Natty:
Report link

addLineToCurrentOrder is an async function, that means you have to await for it to finish

https://github.com/odoo/odoo/blob/18.0/addons/point_of_sale/static/src/app/store/pos_store.js#L652

and a usage example
https://github.com/odoo/odoo/blob/022fcbcf40a28afa56010f6130c26bb0503d5467/addons/pos_discount/static/src/overrides/components/control_buttons/control_buttons.js#L60

Also, have a look at the ...line desctructuring; are all the values in there needed on the new line?

Reasons:
  • Probably link only (1):
  • Low length (0.5):
  • Has code block (-0.5):
  • Ends in question mark (2):
  • High reputation (-1):
Posted by: gdaramouskas

79764039

Date: 2025-09-14 01:04:10
Score: 1
Natty:
Report link

As of 2025 and with the version 3 and above, the current workaround is:

<input
  type="text"
  class="focus-visible:ring-0 focus-visible:ring-offset-0"
/>
Reasons:
  • Low length (1):
  • Has code block (-0.5):
  • Low reputation (0.5):
Posted by: Ali Mousavi

79764032

Date: 2025-09-14 00:49:07
Score: 1
Natty:
Report link

To fix the issue, first open the necessary ports in the EC2 Security Group to allow HTTP and HTTPS traffic. Then, check the Nginx and PM2 settings to ensure the paths and timeouts are configured correctly. Make sure SSL and DNS (Route53) are properly set up and that there are no network restrictions on your side. Finally, test the server connection using tools like curl or wget.

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

79764031

Date: 2025-09-14 00:46:07
Score: 1
Natty:
Report link

Actually, this can be done using the glob library using glob.glob:

path = 'img-0*.png' 

def is_globable(path):
    return bool(glob.glob(path))


if os.path.isfile(path):
    pass
elif is_globable(path):
    pass
else:
    raise Exception(...)

Here are the docs:

https://docs.python.org/3/library/glob.html (first thing)

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

79764025

Date: 2025-09-14 00:24:02
Score: 1.5
Natty:
Report link

I was facing the same issue: requests to the Telegram API (sendMessage, getUpdates) failed in Chrome with a network error or a 400 Bad Request, but worked in firefox, postman, or via cURL.

I found a workaround routing the API request through a proxy server.

For now is the only option I found to make it work in chromium-based browsers

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

79764023

Date: 2025-09-14 00:15:00
Score: 2
Natty:
Report link

I think CloudWatch reports CPU usage in CPU units and averages it over time windows like one minute, which causes short spikes to be lost. In contrast, Datadog shows usage in real time as a percentage relative to vCPUs, so it can capture peaks like 223%. That’s why CloudWatch numbers usually look lower, while Datadog reflects a more accurate view of actual CPU usage.

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

79764018

Date: 2025-09-14 00:08:59
Score: 1
Natty:
Report link

Difference of jal and jalr simply

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

79764014

Date: 2025-09-13 23:56:56
Score: 3.5
Natty:
Report link

After tons of fixes I could fix it by deleting "pub-cache" then everything went fine

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

79764008

Date: 2025-09-13 23:47:55
Score: 2.5
Natty:
Report link

enter image description hereIt could be that you have deselected 'messages' on the left, under 'top'. I fixed mine immediately, reselected it. See the attached screenshot. Thanks.

Reasons:
  • Blacklisted phrase (0.5): Thanks
  • Whitelisted phrase (-2): I fixed
  • Probably link only (1):
  • Low length (1):
  • No code block (0.5):
  • Single line (0.5):
  • Low reputation (1):
Posted by: Dae-mon

79764007

Date: 2025-09-13 23:37:30
Score: 4.5
Natty: 5
Report link

There is this great list here: https://gist.github.com/angorb/f92f76108b98bb0d81c74f60671e9c67

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

79764002

Date: 2025-09-13 23:04:23
Score: 1
Natty:
Report link

I had this problem too which was caused by the Jupyter Notebook extension. The extension host would crash whenever I tried to run a cell. The steps I took to fix were:

Not sure if directly switching to the older version will fix things.

I didn't use extension bisect because the Jupyter Notebook extension had to be enabled for the crash to happen.

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

79764001

Date: 2025-09-13 23:03:23
Score: 2.5
Natty:
Report link

The core issue is that Directory.GetCurrentDirectory() returns different paths in local development vs. Azure deployment, and your configuration file isn't being included in the deployment package.

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

79763997

Date: 2025-09-13 22:48:20
Score: 0.5
Natty:
Report link

The statement on the learncpp.com website is correct in principle, and your experimental results, while seemingly contradictory, can be explained by a technical detail of C++ streams and how they are typically configured.

The primary reason you observed std::cerr to be faster than std::cout is most likely due to a feature called synchronization with C standard I/O. By default, C++ streams (std::cout, std::cin, etc.) are synchronized with their C counterparts (stdout, stdin, etc.). This synchronization ensures that if you mix C and C++ I/O functions (e.g., printf and std::cout) in the same program, the output will appear in the correct order.

This synchronization, however, comes with a significant performance penalty. It effectively forces a flush of the std::cout buffer after every operation to ensure all data is immediately written out. In this default configuration, std::cout behaves more like std::cerr in that it does not fully utilize its buffer for performance.

Since std::cerr is an unbuffered stream by default and is not tied to stdout in the same way, it bypasses this synchronization overhead, which is why it appeared faster in your tests.


Buffering and Performance

The statement from learncpp.com is based on the general principle of I/O buffering. When you disable the synchronization, std::cout can buffer its output, allowing the operating system to write a large chunk of data to the console in a single, efficient operation, which is much faster than the numerous, individual write calls required by an unbuffered stream like std::cerr.

For a program that performs a very large number of I/O operations, such as a competitive programming solution or a data processing script, you can dramatically increase the performance of std::cout by adding the following line at the beginning of your main function:

std::ios_base::sync_with_stdio(false);

This line disables the synchronization, allowing std::cout to fully utilize its buffer and perform significantly faster than std::cerr for bulk output.

Your program was not complex enough to demonstrate the full performance potential of std::cout because the default synchronization setting was hindering its performance. The experiment you conducted highlights a common performance trap for C++ programmers who are new to the language.


C++ Weekly: Use cout, cerr, and clog Correctly

This video explains the correct use of std::cout, std::cerr, and std::clog.

Reasons:
  • Blacklisted phrase (1): This video
  • Long answer (-1):
  • Has code block (-0.5):
  • Low reputation (1):
Posted by: Aditya

79763985

Date: 2025-09-13 22:21:14
Score: 2.5
Natty:
Report link

I've figured out that I need to add

buildConfig = true

in the buildFeatures section of the app build.gradle.kts file.

When I open old projects that worked fine, this line wasn't there, so I can only assume it's been introduced recently.

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

79763983

Date: 2025-09-13 22:18:13
Score: 1
Natty:
Report link

For mariadb-server. This fixed for me

sudo apt-get install libmariadb-dev-compat libmariadb-dev

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

79763980

Date: 2025-09-13 22:15:12
Score: 1.5
Natty:
Report link

You see to assign it an Entra ID role to the Service Principal using PIM (such as Teams Admin Built-In Role). Documented in step 5 of their doc.

You can also see full setup here

Reasons:
  • Low length (1):
  • No code block (0.5):
Posted by: Carl Karawani

79763979

Date: 2025-09-13 22:15:12
Score: 2.5
Natty:
Report link

Wow this worked for me. This is great.

Reasons:
  • Whitelisted phrase (-1): this worked for me
  • Whitelisted phrase (-1): worked for me
  • Low length (2):
  • No code block (0.5):
  • Unregistered user (0.5):
  • Single line (0.5):
  • Low reputation (1):
Posted by: user31484606

79763978

Date: 2025-09-13 22:14:12
Score: 2
Natty:
Report link

At this point of time, it is not possible to run test on Android device using Playwright-Java. Referring to this PR it looks like they have no motivation to bring this capability in Java binding of Playwright.
Is annoying, because with Playwright-NodeJs it is possible to run tests on Android and iOS.

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

79763976

Date: 2025-09-13 22:12:11
Score: 1.5
Natty:
Report link

The right condition is

WHERE status = 'pending' OR status = 'approved'
Reasons:
  • Low length (1.5):
  • Has code block (-0.5):
  • Low reputation (0.5):
Posted by: emaMaxBrod

79763974

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

Use vs: https://code.kx.com/q/ref/vs/#base-x-representation:

q)62 vs 11157
2 55 59
Reasons:
  • Probably link only (1):
  • Low length (2):
  • Has code block (-0.5):
  • High reputation (-1):
Posted by: cillianreilly

79763955

Date: 2025-09-13 20:53:54
Score: 0.5
Natty:
Report link

Further complimenting the other two answers, you can even put the css in a separate file and include a css argument in your yaml !!

in your quarto file:

---
title: "How to justify text in Quarto"
format: html
engine: knitr
css: main.css
---

## Quarto

Quarto enables you to weave together content and executable code into a finished document. To learn more about Quarto see <https://quarto.org>.

Quarto is based on Pandoc and uses its variation of markdown as its underlying document syntax. Pandoc markdown is an extended and slightly revised version of John Gruber's Markdown syntax and Markdown is a plain text format.

Markdown is a plain text format that is designed to be easy to write, and, even more importantly, easy to read:

Markdown is a plain text format that is designed to be easy to write, and, even more importantly, easy to read:

then in your main.css (or whatever you want to call it)

p {
  text-align: justify
}
Reasons:
  • Long answer (-0.5):
  • Has code block (-0.5):
  • Unregistered user (0.5):
  • Low reputation (1):
Posted by: Kyle

79763939

Date: 2025-09-13 20:02:44
Score: 0.5
Natty:
Report link

After a few days, I stopped searching online and kept reading the docs, which led me to the following section: 17.7.3 Compiler search for the compile command.

Then, In my gdb session, I executed the following command - which would set the gdb to use gcc-14 (from gcc-13 being the incompatible version).

(gdb) set compile-gcc x86_64-linux-gnu-gcc-14

(gdb) compile code i = 4; // success

(gdb)

This resolved it and there were no compilation failures whatsoever.

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

79763927

Date: 2025-09-13 19:50:18
Score: 4.5
Natty: 5
Report link

Use binutils' addr2line to get (offline) function names ... see https://balau82.wordpress.com/2010/10/06/trace-and-profile-function-calls-with-gcc/

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

79763918

Date: 2025-09-13 19:35:14
Score: 2.5
Natty:
Report link

You want to specify NT and W64 macros. It's work on Windows11Pro and HCL Notes 14 program in Visual C++

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

79763917

Date: 2025-09-13 19:32:13
Score: 2
Natty:
Report link

Here is a one-liner if anyone ever needs it. It will save the content returned (empty file if failed)

curl https://example.org --fail > example.html || echo 'curl failed'

Screenshot example of one-liner working, what happens when it succeeds and when it fails.

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

79763908

Date: 2025-09-13 19:16:09
Score: 2.5
Natty:
Report link

in the Cal.com monorepo the Prisma schema lives in the @calcom/prisma workspace (e.g. packages/prisma/schema.prisma), not at repo-root prisma/schema.prisma. running npx prisma generate --schema=./prisma/schema.prisma from the repo root will not work because the file doesn’t exist there.

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

79763893

Date: 2025-09-13 18:49:03
Score: 0.5
Natty:
Report link
TOTAL_BITS = 32
LOG2DICT = { 0: TOTAL_BITS} | { 1<<i: i for i in range(TOTAL_BITS) }
def CountTrailingZeros(n): return LOG2DICT[n & -n]
Reasons:
  • Low length (1):
  • Has code block (-0.5):
Posted by: Konstantin Makarov

79763876

Date: 2025-09-13 18:07:55
Score: 2
Natty:
Report link

Short answer : It is not possible to assign a single partition to more than one consumer that are in same group

checkout this discussion

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

79763866

Date: 2025-09-13 17:46:50
Score: 2.5
Natty:
Report link

had wrong site urls in wp_blogs, wp_site and wp_options made a multisite on my localhost and in production i had written example.com instead of example.com/abc/ since in localhost i used localhost/abc/

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

79763848

Date: 2025-09-13 17:15:43
Score: 1.5
Natty:
Report link

For external tomcat server, you can configure server address in application.properties file like this:

server.address=127.0.0.1
Reasons:
  • Low length (1):
  • Has code block (-0.5):
  • Low reputation (1):
Posted by: boiler_agents

79763844

Date: 2025-09-13 17:08:41
Score: 12 🚩
Natty: 5
Report link

Have the exact same problem here.

Did you find a way to solve it?

Reasons:
  • RegEx Blacklisted phrase (3): Did you find a way to solve it
  • RegEx Blacklisted phrase (1.5): solve it?
  • Low length (1.5):
  • No code block (0.5):
  • Me too answer (2.5): Have the exact same problem
  • Ends in question mark (2):
  • Low reputation (1):
Posted by: Saba Madadinia

79763838

Date: 2025-09-13 16:56:38
Score: 4
Natty: 4
Report link

cannot be activated as it produces a fatal error.

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

79763830

Date: 2025-09-13 16:43:12
Score: 9.5 🚩
Natty: 4.5
Report link

did you find the solutions for the pc not booting in windows? I have the same problem. And you can look in the user by typing dir C:\Users . From there you see everything and i guess you can copy and delete etc. and you can change the directory by just typing C: in X: without cd.

Reasons:
  • Blacklisted phrase (1): I have the same problem
  • RegEx Blacklisted phrase (3): did you find the solution
  • Low length (0.5):
  • Has code block (-0.5):
  • Me too answer (2.5): I have the same problem
  • Contains question mark (0.5):
  • Unregistered user (0.5):
  • Single line (0.5):
  • Starts with a question (0.5): did you find the solution
  • Low reputation (1):
Posted by: Florian Scholz

79763821

Date: 2025-09-13 16:28:08
Score: 0.5
Natty:
Report link

You should add one line of code after setting a prototype that returns constructor to correct state

Animal.prototype = Object.create(Creature.prototype);
Animal.prototype.constructor = Animal; // this


Dog.prototype = Object.create(Animal.prototype);
Dog.prototype.constructor = Dog; // and this
Reasons:
  • Low length (0.5):
  • Has code block (-0.5):
  • Low reputation (0.5):
Posted by: Nugzar Gagulia

79763809

Date: 2025-09-13 16:04:04
Score: 3
Natty:
Report link

From the comments, I realized maybe it is just outdated library issue, aaand it was. I changed my project from .net 6.0 to .net 8.0 and updated libraries accordingly then the code works fine. Thanks "President James K. Polk" and "Progman" for comments

Reasons:
  • Blacklisted phrase (0.5): Thanks
  • Low length (0.5):
  • No code block (0.5):
  • Self-answer (0.5):
  • Single line (0.5):
  • Low reputation (0.5):
Posted by: Orgil

79763807

Date: 2025-09-13 16:01:03
Score: 1
Natty:
Report link

13.6.3.28. tvbrange:uncompress_zlib(name)

Given a TvbRange containing zlib compressed data, decompresses the data and returns a new TvbRange containing the uncompressed data. Since: 4.3.0

function p_xxxx_proto.dissector(tvb, pinfo, tree)  
    local subtree = tree:add(p_xxxx_proto, tvb:range(offset), "xxxxxxxxxx")  
    local compressed_data = tvb:range(40, data_length - 36)  
    subtree:add(f_data, compressed_data:uncompress_zlib(compressed_data:string()))  
Reasons:
  • Has code block (-0.5):
  • Self-answer (0.5):
  • Low reputation (1):
Posted by: xietao

79763805

Date: 2025-09-13 15:50:00
Score: 0.5
Natty:
Report link

As described in this answer, there's a VSCode setting named "TypeScript: Prefer Go To Source Definition" (ID typescript.preferGoToSourceDefinition):

Screenshot of the setting

See also this relevant issue comment and this other issue asking for it to be enabled by default.

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