79714443

Date: 2025-07-25 08:47:34
Score: 1.5
Natty:
Report link

I believe it's impossible because it fundementaly forces left recursion which LL can't handle.

You might be able to fix it after the fact or you might just need LR which makes this easy.

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

79714434

Date: 2025-07-25 08:39:32
Score: 3
Natty:
Report link

Use Angular Google Tag Manager library, you need to track your events on router change. You have instructions here: https://www.npmjs.com/package/angular-google-tag-manager.

Reasons:
  • Low length (1):
  • No code block (0.5):
  • Single line (0.5):
  • Low reputation (1):
Posted by: Боби Божиновски

79714428

Date: 2025-07-25 08:36:31
Score: 2.5
Natty:
Report link

Detects when the user switches between sheets while editing a formula and it is Useful for tracking formula input behavior or triggering custom logic on sheet change during formula edit.

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

79714427

Date: 2025-07-25 08:34:29
Score: 11.5
Natty: 6.5
Report link

Did you ever resolve this? I'm having the same issue

Reasons:
  • RegEx Blacklisted phrase (3): Did you ever resolve this
  • RegEx Blacklisted phrase (1.5): resolve this?
  • Low length (1.5):
  • No code block (0.5):
  • Me too answer (2.5): I'm having the same issue
  • Contains question mark (0.5):
  • Single line (0.5):
  • Starts with a question (0.5): Did you
  • Low reputation (1):
Posted by: kitmin

79714413

Date: 2025-07-25 08:24:27
Score: 3.5
Natty:
Report link

The problem was solved by rearranging the sections. After I placed the .data section before the .text section in the linkerscript.

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

79714411

Date: 2025-07-25 08:24:26
Score: 5.5
Natty:
Report link

Sorry for my English. Do you find answer for your question? I got same exception with Linked
In CruiseControlMetrcsreporter.

Reasons:
  • RegEx Blacklisted phrase (2.5): Do you find an
  • Low length (1):
  • No code block (0.5):
  • Contains question mark (0.5):
  • Low reputation (1):
Posted by: Timur Nigamov

79714410

Date: 2025-07-25 08:23:26
Score: 1.5
Natty:
Report link
  1. Maybe you using it wrong way and it returns you your own account

  2. You can purchase multiple usernames for one account via Telegram's Fragment platform

  3. It could be a bug in bot's implementation

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

79714397

Date: 2025-07-25 08:09:22
Score: 0.5
Natty:
Report link

with the concat macro

let sql = concat!(
    "CREATE TABLE test (\n",
    "  id INTEGER,\n",
    "  name TEXT\n",
    ");\n",
);
Reasons:
  • Probably link only (1):
  • Low length (1):
  • Has code block (-0.5):
  • High reputation (-1):
Posted by: milahu

79714390

Date: 2025-07-25 08:06:22
Score: 3
Natty:
Report link

This warning message only appears if device donot have facebook app installed. Then our app opens webview for facebook login.

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

79714387

Date: 2025-07-25 08:05:22
Score: 1.5
Natty:
Report link

Upon investigating this issue again by comparing two websites using different themes and comparable (same) plugins I found out that another plugin was unexpectedly interfering with the way a page was build for display.

The plugin Ovation Elements is signalled as being compatible with WordPress version 6.8.2 in the Plugin selection screen, but in its description it says compatibility has only been tested up to WordPress 6.6.1. So this plugin is not compatible with my version of WordPress

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

79714379

Date: 2025-07-25 07:59:20
Score: 1
Natty:
Report link

When it is iBeacon, all data is in “Manufacturer Specific Data” of the advertisement. Any library you use will be able to access these bytes. Often first two bytes for the manufacturer itself, rest for the data. You have two tasks, extracting the data and understanding it.

To understand it, monitor existing iBeacons and look at the manufacturer data with a scanner tool like github.com/RT-circuits/ble-tools.

If you “see” the mfg data in tools like that (use the advanced scanner for hex/ascii output), look at the Python code to see how it is “extracted” from the advertisement. It is all relatively straightforward (at the end).

Reasons:
  • Long answer (-0.5):
  • No code block (0.5):
  • Starts with a question (0.5): When it is
  • Low reputation (0.5):
Posted by: JeromeBu1982

79714378

Date: 2025-07-25 07:56:19
Score: 2.5
Natty:
Report link

response_1 = openai.ChatCompletion.create(
  model="gpt-4-turbo",
  messages=[
    { "role": "system", "content": "You are an intent classifier..." },
    { "role": "user", "content": user_input }
  ]
)


response_2 = openai.ChatCompletion.create(
  model="gpt-4-turbo",
  messages=[
    { "role": "system", "content": f"Intent: {intent}" },
    { "role": "user", "content": "Proceed to handle the request using tool if needed." }
  ],
  tools=[...],
  tool_choice="auto"
)



I’d love to hear how others are handling this, especially if you’ve built similar multi-step chains using OpenAI's API. How are you managing context, avoiding prompt bloat, and keeping things fast and clean?

Thanks!
Reasons:
  • Blacklisted phrase (0.5): Thanks
  • Long answer (-0.5):
  • Has code block (-0.5):
  • Ends in question mark (2):
  • Self-answer (0.5):
  • Low reputation (0.5):
Posted by: avocadoLambda

79714376

Date: 2025-07-25 07:55:19
Score: 0.5
Natty:
Report link

formField is already StatefullWidget and if you want to manage state you can create custom state which extends from FormFieldState

class CustomInput extends FormField<bool> {
  final Widget label;
  final ValueChanged<bool?>? onChanged;

  CustomInput({super.key, super.validator, super.initialValue, required this.label, this.onChanged})
    : super(
        builder: (field) {
          final state = field as CustomInputState;

          return CheckboxListTile(
            value: field.value,
            title: label,
            onChanged: state.userClicked,
          );
        },
      );

  @override
  FormFieldState<bool> createState() => CustomInputState();
}

class CustomInputState extends FormFieldState<bool> {
  //in the state class you have access to the context and the widget
  CustomInput get _widget => widget as CustomInput;
  
  void userClicked(bool? value) {
    print('User clicked');
    _widget.onChanged?.call(value);
    didChange(value);
  }
}
Reasons:
  • Long answer (-0.5):
  • Has code block (-0.5):
  • Unregistered user (0.5):
  • Low reputation (1):
Posted by: Dari K

79714355

Date: 2025-07-25 07:39:15
Score: 2
Natty:
Report link

You can just add this line in your index file

export { default } from "./events";
Reasons:
  • Low length (1.5):
  • Has code block (-0.5):
  • Low reputation (1):
Posted by: Giridhar B

79714351

Date: 2025-07-25 07:35:14
Score: 1
Natty:
Report link

If the following command doesn't reset the admin password,

grafana-cli admin reset-admin-password "admin password"

Please use the command below,

grafana-cli admin reset-admin-password --password-from-stdin

This command will as the new password in prompt, enter the new password and login into grafana.

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

79714350

Date: 2025-07-25 07:35:14
Score: 1
Natty:
Report link

Your custom account is not related with the app pool identity. App Pool Identity something that belongs to that IIS app.

For the custom account it changes.

1)IIS and SQL can be on same domain/network (generally dont but as a scenario i need to explain it) If yes, on SQL server side that login should be created or should be inside a group which is also defined is SQL Server as a login. So your login probably inside a group which has powerful authorizations which can be dangerous actually. If IIS ve SQL are on same domain/network they can be on DMZ network which is critical. Or maybe you open some private network to outside.

2)IIS can SQL can be on different networks -> This is generally the normal case and if this is the case the group has also capable of ask the necessary LDAP to get auth. This is also dangerous at least two networks should be protected in this case.

So in my opinion, you should use app pool login or you should create a sql login to manange these kind of structures. Otherwise you can not be able to monitor what is going on at sql server and this is dangerous. It is also more easier on prepating connection string also.

Reasons:
  • Blacklisted phrase (0.5): i need
  • Long answer (-1):
  • No code block (0.5):
  • Low reputation (1):
Posted by: Can Yıldırmaz

79714346

Date: 2025-07-25 07:32:13
Score: 3
Natty:
Report link

I managed to solve the issue of the README not showing on Packagist by deleting the package and recreating it.

enter image description here

Reasons:
  • Probably link only (1):
  • Low length (1):
  • No code block (0.5):
  • Single line (0.5):
Posted by: Chen Hanhan

79714344

Date: 2025-07-25 07:31:09
Score: 7
Natty:
Report link

I have the same issue with Opensearch 2.19.2

Reasons:
  • Blacklisted phrase (1): I have the same issue
  • Low length (1.5):
  • No code block (0.5):
  • Me too answer (2.5): I have the same issue
  • Single line (0.5):
  • Low reputation (1):
Posted by: Roman Levytskyi

79714333

Date: 2025-07-25 07:21:07
Score: 1.5
Natty:
Report link

Yes, you can export a list of WooCommerce product category URLs from WordPress using a couple of methods.

One easy way is by using the "WP All Export" plugin, which allows you to select WooCommerce product categories and export them to a CSV file, including their URLs.

Alternatively, you can write a custom query in PHP to fetch category URLs, or use the "WooCommerce Product Categories CSV Import Suite" plugin for a more streamlined approach.

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

79714332

Date: 2025-07-25 07:21:07
Score: 3.5
Natty:
Report link

Thhanks for this, i hav been looking for solutions for my University website.

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

79714330

Date: 2025-07-25 07:20:06
Score: 1
Natty:
Report link

What you need to do is use the list option rather than the ... of save.

save(list = "my_object", file = "my_object.rda")

Then when you call

load("my_object.rda")

The object `my_object` will be in your environment.

Reasons:
  • Low length (0.5):
  • Has code block (-0.5):
  • Starts with a question (0.5): What you
  • Low reputation (0.5):
Posted by: Col Bates - collynomial

79714328

Date: 2025-07-25 07:19:06
Score: 1.5
Natty:
Report link

When pressing Backspace, instead of TTY Erase or ASCII Del, your terminal emulator puts Ctrl+H, which is shown as \x08 (ASCII Backspace) in python strings.
It must be changeable in your terminal app's settings.

For example, in Gnome terminal

Reasons:
  • Low length (0.5):
  • Has code block (-0.5):
  • Starts with a question (0.5): When
  • Low reputation (1):
Posted by: mint_tube

79714325

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

Boost 1.81.0 compilation may fail due to incompatible compiler, missing dependencies, or incorrect build setup. Ensure you're using a supported C++ compiler (like GCC 7+), run bootstrap.sh, then ./b2 install. Check error logs for specific issues.

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

79714321

Date: 2025-07-25 07:12:05
Score: 1
Natty:
Report link

You can also fine-tune the behavior of SafeAreaView from react-native-safe-area-context by adjusting the edges prop.

Instead of using:

<SafeAreaView style={{ flex: 1 }}> 

Use:

<SafeAreaView style={{ flex: 1, backgroundColor: Colors.lightNavy }} edges={['top']}> 

Why?

Setting edges={['top']} applies padding only to the top (e.g. status bar area), and avoids unnecessary bottom padding that can create excessive spacing — especially on Android devices or screens with custom footers.

Avoid using:

edges={['top', 'bottom']}

...unless you specifically need bottom padding (like for gesture nav or home indicator). Otherwise, it can cause unintended extra margin at the bottom of your layout.

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

79714320

Date: 2025-07-25 07:12:05
Score: 2
Natty:
Report link

Don't do that. Python already doesn't really allow for overloaded functions (compared to other languages). And Fixtures can already be extended using different names.

@pytest.fixture
def values() -> list[int]:
    return [1,2,3]


@pytest.fixture
def new_values(values: list[int]) -> list[int]:
    return values + [4,5,6]

Another consideration of why your idea is bad... What happens when unit test are run in a different order? If your base is subclassed multiple times, how are the "values" fixture meant to be overwritten?


# Bad ideas are bad.
class Base:
    @pytest.fixture
    def values(self) -> list[int]:
        return [1,2,3]

class TestChildA(Base):
    @pytest.fixture
    def values(self, values) -> list[int]:
        return values + [4,5,6]  # does this include 7,8,9?

class TestChildB(Base):
    @pytest.fixture
    def values(self, values) -> list[int]:
        return values + [7,8,9]  # does this also include 4,5,6?
Reasons:
  • Long answer (-0.5):
  • Has code block (-0.5):
  • Ends in question mark (2):
  • Low reputation (1):
Posted by: Spill_The_Tea

79714317

Date: 2025-07-25 07:07:03
Score: 2
Natty:
Report link

BTW, there is a newrelic browser agent NPM package available, so use it now :)

https://www.npmjs.com/package/@newrelic/browser-agent

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

79714314

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

You can try using a tool like LongPathTool. It helps manage and delete files or folders with long path issues easily.

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

79714313

Date: 2025-07-25 07:06:03
Score: 0.5
Natty:
Report link

I am assuming that if the two strings have the same length, any of them will be OK as the longer.

I am finding the length by counting the code points in the string. In most cases this will count the characters, unlike using String.length(). More discussion of defining the length of a string below.

Use Collections.max() and a Comparator

As Anonymous said in a comment:

private static final Comparator<String> compareByLengthInCodePoints
        = Comparator.comparingInt(s -> s.codePointCount(0, s.length()));

public static void printLonger(String s1, String s2) {
    String longer = Collections.max(List.of(s1, s2), compareByLengthInCodePoints);
    System.out.println(longer + " length " + longer.codePointCount(0, longer.length()));
}

Try it out:

    String threeLetters = "abc";
    String twoSmileys = "\uD83D\uDE42\uD83D\uDE20";
    printLonger(threeLetters, twoSmileys);

Output:

abc length 3

Or use a loop

As another solution we can use a while or for loop to simulate an if statement. This auxiliary method does that:

private static String getLongerString(String s1, String s2) {
    while (s1.codePointCount(0, s1.length()) > s2.codePointCount(0, s2.length())) {
        return s1;
    }
    return s2;
}

Just call it from the printLonger() method from before. My IDE warns me: 'while' statement does not loop. Which is exactly point.

What is the length of a string?

The Java char type is virtually deprecated since is does can no longer represent a Unicode character. By extension also the String.length() method no longer gives a meaningful value since it gives the number of chars in the string.

A Java char is 16 bits, so there are 65 000 possible char values. Last time I checked, there were 292 000 different Unicode characters, and the number is still growing. So nearly 3 times as many. Therefore some characters use two Java chars, for example smileys.

A character is therefore represented by a 32 bits code point, or by two consecutive chars in a string.

Counting code points still isn’t perfect. Some code points represent non-printing characters, for example change of reading direction or accents or other diacritical marks.

Yet other thinkable definitions of the length of a string would be the width in pixels when rendering the string using some specific font.

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

79714305

Date: 2025-07-25 06:57:00
Score: 1
Natty:
Report link

Use tzlocal to auto-detect the system’s time zone

Install:

pip install tzlocal




Then use:

from datetime import datetime
from tzlocal import get_localzone

local_tz = get_localzone()
last_login = datetime.now(local_tz)
Reasons:
  • Low length (0.5):
  • Has code block (-0.5):
  • Low reputation (1):
Posted by: sanusi abubakr

79714300

Date: 2025-07-25 06:54:59
Score: 2
Natty:
Report link

I think the suggestion for using jsonx is straight forward:

import ai.x.play.json.Encoders.encoder
import ai.x.play.json.Jsonx

Then:

implicit val yourObjectFormat: OFormat[YourObject] =
  Jsonx.formatCaseClass[YourObject]

Credit:
Git: https://github.com/bizzabo/play-json-extensions

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

79714296

Date: 2025-07-25 06:52:59
Score: 3.5
Natty:
Report link

You can try turning off battery optimization

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

79714293

Date: 2025-07-25 06:49:58
Score: 1
Natty:
Report link
  1. Ensure that file is not included in .dockerignore or wildcard like *.tar.gz2

  2. Try to build with --no-cache key: docker build --no-cache .

  3. Ensure that context path is passed correctly (please, provide your build.sh so we can check it)

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

79714283

Date: 2025-07-25 06:38:56
Score: 1.5
Natty:
Report link

Can you please confirm that req.query.email is not undefined? That’s likely why JSON.stringify(_id) is also returning undefined.

Also, note that the id is nested within the metadata object. So the key should be metadata.id, as per https://qdrant.tech/documentation/concepts/filtering/#nested-key.

Reasons:
  • Low length (0.5):
  • Has code block (-0.5):
  • Contains question mark (0.5):
  • Starts with a question (0.5): Can you please
  • Low reputation (0.5):
Posted by: Anush

79714275

Date: 2025-07-25 06:35:55
Score: 1.5
Natty:
Report link
(iffunc(levellrep["BonusInt"],"@wInt@r{@x111","@r}") or "<nil>")

or operator.

Reasons:
  • Low length (1.5):
  • Has code block (-0.5):
  • Low reputation (0.5):
Posted by: Никита Самоуков

79714264

Date: 2025-07-25 06:24:53
Score: 2
Natty:
Report link

locl Window=Library.CreateLib("TlTLE") DarkThemelocal Library = loadstring(game:HttpGet("https://raw.githubusercontent.com/xHeptc/Kavo-UI-Library/main/source.lua"))()---

description: Documentation

---

# Kavo UI Library by xHeptc u fucktards

## Update:

All of the latest updates can be found in here.

Added:\

Section Update Functions\

New Themes:\

Serpent

New Component:\

Label

Rich Text Support For:\

UI Title,\

Sections,\

And Other Elements (exc tabs)\

## Getting Loadstring

```

local Library = loadstring(game:HttpGet("https://raw.githubusercontent.com/xHeptc/Kavo-UI-Library/main/source.lua"))()

```

## Creating UI Library Window

```

local Window = Library.CreateLib("TITLE", "DarkTheme")

```

Themes:\

LightTheme\

DarkTheme\

GrapeTheme\

BloodTheme\

Ocean\

Midnight\

Sentinel\

Synapse

## Creating Tabs

```

local Tab = Window:NewTab("TabName")

```

## Creating Section

```

local Section = Tab:NewSection("Section Name")

```

## Update Section

```

Section:UpdateSection("Section New Title")

```

## Creating Labels

```

Section:NewLabel("LabelText")

```

## Update Label

```

label:UpdateLabel("New Text")

```

## Creating Buttons

```

Section:NewButton("ButtonText", "ButtonInfo", function()

print("Clicked")

end)

```

## Update Button

Make sure your button is local when updating it.

```

button:UpdateButton("New Text")

```

## Creating Toggles

```

Section:NewToggle("ToggleText", "ToggleInfo", function(state)

if state then

    print("Toggle On")

else

    print("Toggle Off")

end

end)

```

## Updating Toggles

```

getgenv().Toggled = false

local toggle = Section:NewToggle("Toggle", "Info", (state)

getgenv().Toggled = state

end)

game:GetService("RunService").RenderStepped:Connect(function()

if getgenv().Toggled then

    toggle:UpdateToggle("Toggle On")

else

    toggle:UpdateToggle("Toggle Off")

end

end)

```

## Creating Sliders

```

Section:NewSlider("SliderText", "SliderInfo", 500, 0, function(s) -- 500 (MaxValue) | 0 (MinValue)

game.Players.LocalPlayer.Character.Humanoid.WalkSpeed = s

end)

```

## Creating Textboxes

```

Section:NewTextBox("TextboxText", "TextboxInfo", function(txt)

print(txt)

end)

```

## Creating Keybinds

```

Section:NewKeybind("KeybindText", "KeybindInfo", Enum.KeyCode.F, function()

print("You just clicked the bind")

end)

```

## Toggling UI with Keybinds

```

Section:NewKeybind("KeybindText", "KeybindInfo", Enum.KeyCode.F, function()

Library:ToggleUI()

end)

```

## Creating Dropdowns

```

Section:NewDropdown("DropdownText", "DropdownInf", {"Option 1", "Option 2", "Option 3"}, function(currentOption)

print(currentOption)

end)

```

## Dropdown Refresh

```

local oldList = {

"2019",

"2020"

}

local newList = {

"2021",

"2022"

}

local dropdown = Section:NewDropdown("Dropdown","Info", oldList, function()

end)

Section:NewButton("Update Dropdown", "Refreshes Dropdown", function()

dropdown:Refresh(newList)

end)

```

## Creating Color Pickers

```

Section:NewColorPicker("Color Text", "Color Info", Color3.fromRGB(0,0,0), function(color)

print(color)

-- Second argument is the default color

end)

```

## Applying Custom Themes / Colors

Make new table, here you are going to put your colors, as shown below.

```

local colors = {

SchemeColor = Color3.fromRGB(0,255,255),

Background = Color3.fromRGB(0, 0, 0),

Header = Color3.fromRGB(0, 0, 0),

TextColor = Color3.fromRGB(255,255,255),

ElementColor = Color3.fromRGB(20, 20, 20)

}

```

Applying it: Change your window code little bit.

```

local Window = Library.CreateLib("TITLE", colors)

```

## Want to add fully customizable UI?

Add this code in your section. This will create color pickers.

Make sure you have added table with all the values of UI. then applylocal Window = Library.CreateLib("TITLE", "DarkTheme")

it to window. Like shown above.

```

for theme, color in pairs(themes) do

Section:NewColorPicker(theme, "Change your "..theme, color, function(color3)

    Library:ChangeColor(theme, color3)

end)

end

```

Reasons:
  • Blacklisted phrase (2): fuck
  • Long answer (-1):
  • Has code block (-0.5):
  • Contains question mark (0.5):
  • Low reputation (1):
Posted by: فاطمه هاشم

79714256

Date: 2025-07-25 06:17:52
Score: 0.5
Natty:
Report link

Python interpreter expects spaces instead of tab characters in the file.

You can instruct nano to use spaces and indent by 4 spaces either editing /etc/nanorc or creating/adding

set tabsize 4
set tabstospaces

to $HOME/.nanorc

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

79714253

Date: 2025-07-25 06:12:50
Score: 1
Natty:
Report link

Confirmed to be a bug in the library, and to be fixed in upcoming version 8 which is currently in public beta, releasing to NPM 6th August.

Reasons:
  • Low length (1):
  • No code block (0.5):
  • Single line (0.5):
  • High reputation (-1):
Posted by: Niilo Keinänen

79714250

Date: 2025-07-25 06:08:49
Score: 1.5
Natty:
Report link

What finally worked was change the keyserver and provide both keys:

$ gpg2 --keyserver hkp://keyserver.ubuntu.com:80 --recv-keys 409B6B1796C275462A1703113804BB82D39DC0E3 7D2BAF1CF37B13E2069D6956105BD0E739499BDB
Reasons:
  • Low length (0.5):
  • Has code block (-0.5):
  • Self-answer (0.5):
  • Starts with a question (0.5): What
  • Low reputation (0.5):
Posted by: GTO

79714229

Date: 2025-07-25 05:43:44
Score: 1.5
Natty:
Report link

I know it doesn't answer your question, but if you only need to install Hbase on your local machine you can do it without installing Hadoop. You only need Hadoop if you want to create a cluster.

Reasons:
  • Low length (0.5):
  • No code block (0.5):
  • Single line (0.5):
Posted by: Sanjeev Dhiman

79714222

Date: 2025-07-25 05:28:41
Score: 1.5
Natty:
Report link

Try this: https://github.com/mkleehammer/surround

Does a link count as a single character now in Stack Overflow? I couldn't post this with just the line above because it said it was only 9 characters. Weird.

Reasons:
  • Whitelisted phrase (-2): Try this:
  • Contains signature (1):
  • Low length (1):
  • No code block (0.5):
  • Contains question mark (0.5):
  • Low reputation (0.5):
Posted by: mkleehammer

79714221

Date: 2025-07-25 05:27:40
Score: 4
Natty:
Report link

The Error Message suggests

Please try `npm i` again after removing both package-lock.json and node_modules directory.

Does it fix it?

Reasons:
  • RegEx Blacklisted phrase (1.5): fix it?
  • Low length (1):
  • Has code block (-0.5):
  • Ends in question mark (2):
Posted by: htho

79714214

Date: 2025-07-25 05:12:37
Score: 3.5
Natty:
Report link

<iframe

src="<https://app.amuselabs.com/app-pmm>/leaderboard?set=columbusmagazine-k&id=292b8bd6&name=1"

allowfullscreen
/>

Reasons:
  • Low length (1):
  • No code block (0.5):
  • Contains question mark (0.5):
  • Has no white space (0.5):
  • Low reputation (1):
Posted by: Amrutha Meherwade

79714209

Date: 2025-07-25 05:03:35
Score: 0.5
Natty:
Report link
What worked for me was the statement:

page.window.icon = "full path\icon x.ico"

Two important things to consider:
1. In the path, remember that for it to be read, \ must be added \\ to each one.
2. The image format must actually be .ico. It's not useful to download a .png and just change the extension.
Reasons:
  • Whitelisted phrase (-1): worked for me
  • Low length (0.5):
  • Has code block (-0.5):
  • Unregistered user (0.5):
  • Low reputation (1):
Posted by: Leonardo

79714193

Date: 2025-07-25 04:38:29
Score: 2.5
Natty:
Report link

You can use this multi address plugin. Its free

https://wordpress.org/plugins/happycoders-multiple-addresses/

Reasons:
  • Whitelisted phrase (-1.5): You can use
  • Probably link only (1):
  • Low length (1.5):
  • No code block (0.5):
  • Low reputation (1):
Posted by: happy coders

79714191

Date: 2025-07-25 04:37:29
Score: 3.5
Natty:
Report link

Here is the GCP document for creating and storing the versioned dataset, such as screenshot and recovery the versions:

https://cloud.google.com/vertex-ai/docs/datasets/manage-dataset-versions

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

79714184

Date: 2025-07-25 04:24:26
Score: 3.5
Natty:
Report link

If you are using google sheet, Google Studio could help the reference in a deeper way.

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

79714177

Date: 2025-07-25 04:16:25
Score: 3
Natty:
Report link

Since you are using database on Godaddy, you need to ask correct connection string to Gdaddy support team.

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

79714165

Date: 2025-07-25 03:49:20
Score: 1
Natty:
Report link
SELECT DISTINCT CITY
FROM STATION
WHERE LEFT(CITY, 1) NOT IN ('a', 'e', 'i', 'o', 'u','A','E','I','O','U');

Simpler answer just add 'NOT' in front of the 'IN' for simpler logic

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

79714163

Date: 2025-07-25 03:45:19
Score: 3
Natty:
Report link

Paste your HTML in some online HTML render page like (https://htmledit.squarefree.com/) and copy the response.

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

79714162

Date: 2025-07-25 03:44:18
Score: 2.5
Natty:
Report link

You can set up an AWS Lambda function with an S3 trigger that runs FFMPEG to convert uploaded audio files (.mp3, .m4a, .gsm, etc.) to .wav and saves them back to S3. This works best for small to medium audio files.

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

79714157

Date: 2025-07-25 03:38:16
Score: 2.5
Natty:
Report link

The easiest way for you to answer your own question is to try it. Try using post.data.desc or post.data.date, etc. Add those to your paginated template and see what shows up. Just try shit can be the best way to figure out these things.

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

79714148

Date: 2025-07-25 03:13:11
Score: 7
Natty: 7.5
Report link

I'm experiencing the same problem and haven't found another way. Can you share how you solved it?
I also wrote on google issue tracker. https://issuetracker.google.com/issues/434005098

Reasons:
  • RegEx Blacklisted phrase (2.5): Can you share how you
  • RegEx Blacklisted phrase (1.5): solved it?
  • Low length (1):
  • No code block (0.5):
  • Contains question mark (0.5):
  • Low reputation (1):
Posted by: Subin Lee

79714143

Date: 2025-07-25 03:00:09
Score: 1
Natty:
Report link

I have the same issue, I think it is actually something caused by NativeWind. I found a GitHub issue related to this.

I assume that NativeWind uses "shadow*" style props internally for the version(s) we are on. I would expect this issue to be resolved in later versions of NativeWind.

If you want to suppress these warnings, the GitHub issue mentions this solution:

const originalConsoleWarn = console.warn;

console.warn = (...args) => {
  // https://github.com/react-navigation/react-navigation/issues/11730
  if (
    args[0] === '"shadow*" style props are deprecated. Use "boxShadow".' &&
    new Error().stack?.includes("useNavigationBuilder")
  ) {
    return;
  }

  originalConsoleWarn(...args);
};
Reasons:
  • Blacklisted phrase (1): I have the same issue
  • Whitelisted phrase (-2): solution:
  • Long answer (-0.5):
  • Has code block (-0.5):
  • Me too answer (2.5): I have the same issue
  • Low reputation (0.5):
Posted by: Nolios

79714138

Date: 2025-07-25 02:45:07
Score: 1
Natty:
Report link

Or as alternative:
export PYTHONWARNINGS="ignore"

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

79714135

Date: 2025-07-25 02:36:05
Score: 3
Natty:
Report link

yescaptcha.com

This is a verification code recognition platform based on machine learning

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

79714128

Date: 2025-07-25 02:16:01
Score: 3
Natty:
Report link

yescaptcha.com

This is a verification code recognition platform based on machine learning

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

79714127

Date: 2025-07-25 02:16:01
Score: 1
Natty:
Report link

I have find answer with set failure ssh and create an other

spawn ssh -o StrictHostKeyChecking=no $username\@$host
expect {
    timeout { send_user "\nTimeout Exceeded - Check Host\n"; set first_attempt_failed 1 }
    eof { send_user "\nSSH Connection To $host Failed\n"; set first_attempt_failed 1 }
    "*#" {}
    "*assword:" {
            send "$password\n"
    }
}

if { [info exists first_attempt_failed] && $first_attempt_failed == 1 } {
        spawn ssh -o KexAlgorithms=diffie-hellman-group1-sha1 -o StrictHostKeyChecking=no $username@$host
        expect {
                timeout { send_user "\nTimeout Exceeded - Check Host\n"; exit 1 }
                eof { send_user "\nSSH Connection To $host Failed\n"; exit 1 }
                "*#" {}
                "*assword:" {
                        send "$password\n"
                }
        }
}

Thanks

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

79714126

Date: 2025-07-25 02:13:00
Score: 1.5
Natty:
Report link

For inline code, seamlessly:

<code>normal <strong>bold</strong> more normal</code>

Turns into: normal bold more normal (Stack Overflow does a bad job, but Gi).

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

79714122

Date: 2025-07-25 02:08:59
Score: 0.5
Natty:
Report link

This was copied from the answer to another question.

There's another function called json_object_agg, which can generate an object instead of an array.

It can be used like this:

select json_object_agg(your_table.id, your_table) from your_table;

Output like this:

{ "1" : {"id":1,"name":"abc","age":18,"sex":"m"}, "2" : {"id":2,"name":"abc","age":18,"sex":"f"}, "4" : {"id":4,"name":"abc","age":18,"sex":"f"} }

Related functions include: json_agg, jsonb_agg, json_object_agg, jsonb_object_agg. (There is also xmlagg; for more, you can check this doc). One of their differences is that the jsonb versions will remove duplicate keys, while the json versions will retain all content even if the keys are duplicated.

Reasons:
  • Blacklisted phrase (1): another question
  • Long answer (-0.5):
  • Has code block (-0.5):
  • Low reputation (0.5):
Posted by: yymmyb

79714121

Date: 2025-07-25 02:08:58
Score: 6
Natty: 5
Report link

thanks for the tips, would you mind sharing the workable version

Reasons:
  • Blacklisted phrase (0.5): thanks
  • Blacklisted phrase (2): would you mind
  • Low length (1.5):
  • No code block (0.5):
  • Single line (0.5):
  • Low reputation (1):
Posted by: JTech

79714120

Date: 2025-07-25 02:07:57
Score: 4
Natty: 4.5
Report link

adb shell pm grant com.arumcomm.crashlogviewer android.permission.PACKAGE_USAGE_STATS

adb shell pm grant com.arumcomm.crashlogviewer android.permission.READ_LOGS

หมายถึง, ความหมาย คืออะไร ?

Reasons:
  • Low length (0.5):
  • No code block (0.5):
  • Ends in question mark (2):
  • Low reputation (1):
Posted by: รวมใจคนไทยพุทธ

79714104

Date: 2025-07-25 01:28:50
Score: 1
Natty:
Report link

By some reason they named the reference list in the package with '_' instead of '-', so you should call the Flags as 'gb_eng' instead of 'gb-eng'.


'es_ct',
'es_ga',
'gb_eng',
'gb_nir',
'gb_sct',
'gb_wls',
Reasons:
  • Low length (0.5):
  • Has code block (-0.5):
  • Low reputation (1):
Posted by: Marcos Dal Maso

79714092

Date: 2025-07-25 01:06:46
Score: 3
Natty:
Report link

Simplemente reduciendolo al nivel deseado con menu_height el tamaño se adapta a cualquier nivel.

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

79714084

Date: 2025-07-25 00:48:42
Score: 0.5
Natty:
Report link

Update to PJ- Answer: Scraping All Property Titles from Map Using Bounding Box and Selenium

After troubleshooting, the issue was that the original point-based query only fetched one property, and the gistoken and mapserverUrl are dynamically loaded via JavaScript (not in static HTML, so requests alone fails with IndexError). The solution uses a bounding box for the map area and Selenium to extract the token/URL.

Key Changes:

Requirements: pip install requests selenium webdriver-manager

Working Script:

import re
import json
import urllib3
import requests
import time
from selenium import webdriver
from selenium.webdriver.chrome.options import Options
from selenium.webdriver.chrome.service import Service
from webdriver_manager.chrome import ChromeDriverManager

urllib3.disable_warnings(urllib3.exceptions.InsecureRequestWarning)

link = 'https://www.bcassessment.ca/Property/Info/SjAwMDAwQzRZMQ=='

headers = {
    'accept': 'text/html,application/xhtml+xml,application/xml;q=0.9,image/avif,image/webp,image/apng,*/*;q=0.8,application/signed-exchange;v=b3;q=0.7',
    'accept-language': 'en-US,en;q=0.9',
    'host': 'www.bcassessment.ca',
    'user-agent': 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/138.0.0.0 Safari/537.36'
}

headers_ano = {
    'accept': '*/*',
    'accept-language': 'en-US,en;q=0.9',
    'host': 'arcgis.bcassessment.ca',
    'origin': 'https://www.bcassessment.ca',
    'referer': 'https://www.bcassessment.ca/',
    'user-agent': 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/138.0.0.0 Safari/537.36'
}

# Bounding box (adjust as needed; see browser Dev Tools > Network for values)
bounding_box = {
    'xmin': -13742000,
    'ymin': 6199100,
    'xmax': -13741000,
    'ymax': 6199300,
    'spatialReference': {'wkid': 102100, 'latestWkid': 3857}
}

# Selenium setup (suppress logs)
options = Options()
options.add_argument('--log-level=3')
options.add_experimental_option('excludeSwitches', ['enable-logging'])
driver = webdriver.Chrome(service=Service(ChromeDriverManager().install()), options=options)
driver.get(link)
time.sleep(5)  # Wait for JS load

page_source = driver.page_source
driver.quit()

# Extract token and mapserver URL
token_matches = re.findall(r"var\s*gistoken\s*=\s*['\"](.*?)['\"]", page_source)
token = token_matches[0] if token_matches else None
mapserver_matches = re.findall(r"var\s*mapserverUrl\s*=\s*['\"](.*?)['\"]", page_source)
mapserver_url = mapserver_matches[0] if mapserver_matches else None

if not token or not mapserver_url:
    print("Failed to extract token or mapserver URL. Site may have changed.")
    exit()

# Query params with pagination
params = {
    'f': 'json',
    'where': '',
    'geometry': json.dumps(bounding_box),
    'geometryType': 'esriGeometryEnvelope',
    'inSR': '102100',
    'outFields': 'ADDRESS,STREET_NAME,STREET_NUMBER',
    'orderByFields': 'STREET_NAME,STREET_NUMBER',
    'returnGeometry': 'false',
    'outSR': '102100',
    'resultRecordCount': '1000',
    'resultOffset': '0'
}

# Fetch and paginate
with requests.Session() as session:
    params['token'] = token
    query_url = f"{mapserver_url}/0/query"
    offset = 0
    addresses = []
    while True:
        params['resultOffset'] = str(offset)
        res = session.get(query_url, params=params, headers=headers_ano, verify=False)
        if res.status_code != 200:
            print(f"Failed: {res.status_code}")
            break
        data = res.json()
        features = data.get('features', [])
        if not features:
            break
        addresses.extend([item['attributes']['ADDRESS'] for item in features])
        if not data.get('exceededTransferLimit', False):
            break
        offset += 1000

# Print and save
with open('properties.txt', 'w') as f:
    for address in addresses:
        print(address)
        f.write(address + '\n')

Notes:

This fetches all visible titles in the box. Adjust outFields for more data (e.g., TOTAL_ASSESSED).

To answer your question:

Could you shed some light on how I generate these values: xmin = -13742000, ymin = 6199100, xmax = -13741000, ymax = 6199300

If you don't want to get the Bounding Box with Dev Tools I made this program to get the coordinates by just entering a address and box size around address you want. May not be 100% accurate but should work fine. Example: python geocode_to_bounding_box.py -a 123 Main St, Springfield 12345 -b 1x0.2

import requests
import math
import json
import argparse
import sys

# Function to convert lat/lon to Web Mercator (WKID 102100)
def latlon_to_mercator(lat, lon):
    x = lon * 20037508.34 / 180
    y = math.log(math.tan((90 + lat) * math.pi / 360)) / (math.pi / 180) * 20037508.34 / 180
    return x, y

# Set up argument parser
parser = argparse.ArgumentParser(
    description="Convert an address to a Web Mercator bounding box.",
    epilog="Example: python geocode_to_bounding_box.py -a 123 Main St, Springfield 12345 -b 1x0.2\n"
           "Note: For addresses with special characters, enclose in quotes if required by your shell."
)
parser.add_argument(
    "-a", "--address",
    nargs='+',
    required=True,
    help="Address to geocode (e.g., 123 Main St, Springfield 12345; quotes needed for addresses with special characters)"
)
parser.add_argument(
    "-b", "--box-size",
    required=True,
    help="Bounding box size in kilometers (e.g., 1x0.2 for 1km wide, 0.2km tall)"
)
parser.add_argument(
    "-m", "--meters",
    action="store_true",
    help="Interpret box size as meters instead of kilometers"
)

# Parse arguments
args = parser.parse_args()

# Process address
address = ' '.join(args.address).strip()

# Geocode using Nominatim API
geocode_url = f"https://nominatim.openstreetmap.org/search?q={address}&format=json&limit=1"
headers = {'User-Agent': 'GeocodingScript/1.0'}

try:
    response = requests.get(geocode_url, headers=headers, timeout=10)
    response.raise_for_status()  # Raise HTTPError for bad responses (4xx/5xx)
except requests.exceptions.RequestException as e:
    print(f"Geocoding failed: {e}")
    sys.exit(1)

data = response.json()
if not data:
    print("No results found for the address.")
    sys.exit(1)

lat = float(data[0]['lat'])
lon = float(data[0]['lon'])

# Validate latitude and longitude
if not (-90 <= lat <= 90) or not (-180 <= lon <= 180):
    print("Invalid coordinates: Latitude and longitude out of range.")
    sys.exit(1)

if abs(lat) > 85:
    print("Warning: Locations near the poles may have projection issues in Web Mercator.")

print(f"Found coordinates: Latitude {lat}, Longitude {lon}")

# Process box size
try:
    parts = args.box_size.split('x')
    if len(parts) != 2:
        raise ValueError("Invalid format. Must be exactly WIDTHxHEIGHT.")
    width = abs(float(parts[0]))
    height = abs(float(parts[1]))
    if width == 0 or height == 0:
        print("Warning: Box size of zero creates a point, not a bounding box.")
except ValueError as e:
    print(f"Invalid box size: {e}")
    sys.exit(1)

# Convert to meters if kilometers (default)
if not args.meters:
    width *= 1000
    height *= 1000

# Convert to Mercator
try:
    center_x, center_y = latlon_to_mercator(lat, lon)
except ValueError as e:
    print(f"Coordinate conversion failed: {e} (likely due to invalid latitude)")
    sys.exit(1)

# Compute bounding box
half_width = width / 2
half_height = height / 2
bounding_box = {
    "xmin": center_x - half_width,
    "ymin": center_y - half_height,
    "xmax": center_x + half_width,
    "ymax": center_y + half_height,
    "spatialReference": {"wkid": 102100, "latestWkid": 3857}
}

# Display as JSON
print(json.dumps(bounding_box, indent=4))
Reasons:
  • Blacklisted phrase (1): THx
  • Long answer (-1):
  • Has code block (-0.5):
  • Low reputation (1):
Posted by: bigjokker

79714076

Date: 2025-07-25 00:38:39
Score: 1
Natty:
Report link

If anyone still encounters this issue after trying the above suggestions, the simplest solution is to back up the current project, optionally to GitHub, delete the folder, and then clone the repository again later.

Reasons:
  • Whitelisted phrase (-1): solution is
  • Low length (0.5):
  • No code block (0.5):
  • Single line (0.5):
  • Low reputation (0.5):
Posted by: Covenant T. Junior

79714068

Date: 2025-07-25 00:18:35
Score: 2
Natty:
Report link

Since none of the suggestions in any of the threads worked for me, I ditched NextGEN and used the 10Web gallery plugin. It just works with no drama.

Reasons:
  • Whitelisted phrase (-1): worked for me
  • Low length (1):
  • No code block (0.5):
  • Single line (0.5):
  • Low reputation (1):
Posted by: Chris Roberts

79714058

Date: 2025-07-24 23:54:30
Score: 0.5
Natty:
Report link

You can configure the overflow as you like... and from how many lines you want the view more button to appear.

Component demo:

Demo text exapanded

Code:Example

class AppExpandableText extends StatefulWidget {
  final String text;
  final TextStyle? style;
  final int trimLines;

  const AppExpandableText({
    super.key,
    required this.text,
    this.style,
    this.trimLines = 3,
  });

  @override
  State<AppExpandableText> createState() => _AppExpandableTextState();
}

class _AppExpandableTextState extends State<AppExpandableText> {
  bool _expanded = false;
  bool _isOverflowing = false;

  @override
  void didChangeDependencies() {
    super.didChangeDependencies();
    WidgetsBinding.instance.addPostFrameCallback((_) => _checkOverflow());
  }

  void _checkOverflow() {
    final span = TextSpan(text: widget.text, style: widget.style);
    final tp = TextPainter(
      text: span,
      maxLines: widget.trimLines,
      textDirection: TextDirection.ltr,
    )..layout(maxWidth: MediaQuery.of(context).size.width);

    setState(() {
      _isOverflowing = tp.didExceedMaxLines;
    });
  }

  @override
  Widget build(BuildContext context) {
    
    final textWidget = Text(
      widget.text,
      style: widget.style,
      maxLines: _expanded ? null : widget.trimLines,
      overflow: _expanded ? TextOverflow.visible : TextOverflow.clip,
    );

    return Column(
      crossAxisAlignment: CrossAxisAlignment.start,
      mainAxisSize: MainAxisSize.min,
      children: [
        textWidget,
        if (_isOverflowing)
          InkWell(
            onTap: () => setState(() => _expanded = !_expanded),
            child: Text(
              _expanded ? '...Ver menos' : '...Ver más',
              style: widget.style,
            ),
          ),
      ],
    );
  }
}
Reasons:
  • Probably link only (1):
  • Long answer (-1):
  • Has code block (-0.5):
  • Low reputation (1):
Posted by: Edwin Bustamante Rodriguez

79714055

Date: 2025-07-24 23:45:29
Score: 2
Natty:
Report link

This used to be handled by V4L2, and frequently is, but libcamera now replaces it.

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

79714048

Date: 2025-07-24 23:19:24
Score: 3
Natty:
Report link

SELECT * FROM table_name

LIMIT 2 OFFSET 1;

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

79714046

Date: 2025-07-24 23:16:24
Score: 3
Natty:
Report link

Open https://maps.apple.com/ on your browser. Drop a pin where desired and copy/paste the url. It should open apple maps with the pinned location.

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

79714035

Date: 2025-07-24 22:55:20
Score: 2.5
Natty:
Report link

Note: I found out that using the "-subsegs-per-sidx" option on mp4box will cause the DASHed video to fail to play in multiple video players. (I don't know why though.)

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

79714030

Date: 2025-07-24 22:45:18
Score: 1.5
Natty:
Report link

The solution was to disable the option Editor -> Inlay Hints -> Code vision -> Usages. I think that when a project is not synced or too big, the Studio cannot calculate usages and just shows an empty space between the lines of code

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

79714024

Date: 2025-07-24 22:41:17
Score: 1.5
Natty:
Report link

Did you run makemigraions and migrate command in your project after installing the celery packages ?

try to get list of your pip packages via your IDE or just : python pip list orpython -m pip show django-celery-results, to make sure that the package is installed

Also make sure that you are running on your venv not your global python packages by : which celery and which django_celery_results

Reasons:
  • Has code block (-0.5):
  • Contains question mark (0.5):
  • Starts with a question (0.5): Did you
  • Low reputation (1):
Posted by: erfan safarali

79714015

Date: 2025-07-24 22:27:14
Score: 1.5
Natty:
Report link

I know this issue is an old one. I had the same issue just now and I was wondering if there was a more efficient solution to this. Upon reading the thread, I found out isformula does not work with arrayformula. Anyway, this is what I came up with. Hope this helps especially for those who will come across this in the future.

=arrayformula(if(B2:B<>"",isformula(B2:B),iferror(0/0)))

Reasons:
  • Blacklisted phrase (2): was wondering
  • Whitelisted phrase (-1): Hope this helps
  • Whitelisted phrase (-1): I had the same
  • No code block (0.5):
  • Low reputation (1):
Posted by: eaDDeN maiLeR

79714014

Date: 2025-07-24 22:22:13
Score: 0.5
Natty:
Report link

Just comment or remove jul-to-slf4j dependency from your pom.xml for local development.

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

79714002

Date: 2025-07-24 22:01:08
Score: 1.5
Natty:
Report link

Thanks to the help of Apple DTS engineers, there are two workarounds:

Quoting them directly:

This hasn't made it back to you, but there are two workaround which added to your bug which should eventually be sent back to you. Those are:

Option 1:

Annotate tapBlock enclosure as @Sendable

Isolate the call of `self?.processAudioBuffer(buffer)

However, since AVAudioBuffer is not marked as sendable, either import AVFAudio.AVAudioBuffer or AVFoundation with @preconcurrency annotation:

@preconcurrency import AVFAudio.AVAudioBuffer // or @preconcurrency import AVFoundation
 
[…]
 
engine.mainMixerNode.installTap(onBus: 0, bufferSize: 1024, format: format) { @Sendable [weak self] buffer, _ in
    Task { @MainActor in
        self?.processAudioBuffer(buffer)
    }
}

Option 2:

To avoid annotating the import with @preconcurrency

Annotate tapBlock enclosure as @Sendable

Extract data from AVAudioBuffer within the closure

Isolate the call of `self?.processAudioData(array)

engine.mainMixerNode.installTap(onBus: 0, bufferSize: 1024, format: format) { @Sendable [weak self] buffer, _ in
    // Extract the data from the buffer
    guard let channelData = buffer.floatChannelData?[0] else { return }
    let frameCount = Int(buffer.frameLength)
    let audioData = Array(UnsafeBufferPointer(start: channelData, count: frameCount))
 
    Task { @MainActor in
        self?.processAudioData(audioData)
    }
}
Reasons:
  • Blacklisted phrase (0.5): Thanks
  • Long answer (-1):
  • Has code block (-0.5):
  • Contains question mark (0.5):
  • User mentioned (1): @Sendable
  • User mentioned (0): @preconcurrency
  • User mentioned (0): @preconcurrency
  • User mentioned (0): @Sendable
  • Self-answer (0.5):
  • Low reputation (0.5):
Posted by: Ness Earthbound

79713997

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

I'm a little late to the party but I had just this issue where ticking or unticking the many-many entities box did nothing.

My problem was me getting the Foreign-Primary relationship the wrong way around, stupid mistake that fooled me for a bit.

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

79713978

Date: 2025-07-24 21:25:58
Score: 13
Natty: 5.5
Report link

did you figure out any solution to this issue ?
Hamza Aboufirass JeffH-AWS

Reasons:
  • Blacklisted phrase (1.5): any solution
  • RegEx Blacklisted phrase (3): did you figure out any solution to this
  • RegEx Blacklisted phrase (2): any solution to this issue ?
  • Probably link only (1):
  • Low length (1.5):
  • No code block (0.5):
  • Ends in question mark (2):
  • Starts with a question (0.5): did you
  • Low reputation (1):
Posted by: nasser awwad

79713976

Date: 2025-07-24 21:23:57
Score: 3
Natty:
Report link

@Max Pleaner , that still returns 0 I think something might be wrong with the set up, I can not get it to work...

https://try.ruby-lang.org/

its the all together exercise , you can select it on the drop down

Reasons:
  • Low length (0.5):
  • No code block (0.5):
  • User mentioned (1): @Max
  • Low reputation (1):
Posted by: TreeStand

79713972

Date: 2025-07-24 21:19:56
Score: 3
Natty:
Report link

creo que es por el tamaño de filas y columnas que definiste para tu configuracion del grisdler, como quieres agregar un nuevo componenete, y el tamaño de tu gridler es de filas 10 por 4 columnas y el nuevo componente ocuparía la fila 11, por eso te da ese error

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

79713971

Date: 2025-07-24 21:18:56
Score: 0.5
Natty:
Report link

If you are using vscode, add this linter rule: prefer_relative_imports

Then go to each file, press CTRL+. and select Convert to relative imports, ever where in the file.

Works great.

linter:
  rules:
    prefer_relative_imports: true
Reasons:
  • Low length (0.5):
  • Has code block (-0.5):
  • Low reputation (0.5):
Posted by: Karl

79713967

Date: 2025-07-24 21:17:55
Score: 4.5
Natty:
Report link

when u input it is indeed typing an ascii code to terminal instead of 0.5. the encoding says you did used backspace...it cud be due to corrupted input output stream

how are you giving input?

Reasons:
  • Low length (0.5):
  • No code block (0.5):
  • Ends in question mark (2):
  • Starts with a question (0.5): when
  • Low reputation (1):
Posted by: Sparsh Khanna

79713966

Date: 2025-07-24 21:15:54
Score: 3
Natty:
Report link

The trick is to scroll upward in the General tab. It scrolls upward, then you see the top of the profile, as in the image below. Then you can type into the Name: field. I honestly was flummoxed by this for several minutes.

iterm2 edit profile

Reasons:
  • Probably link only (1):
  • Low length (0.5):
  • No code block (0.5):
  • Self-answer (0.5):
  • Single line (0.5):
Posted by: Jacob Wegelin

79713960

Date: 2025-07-24 21:08:53
Score: 1
Natty:
Report link
julia> for i in CartesianIndices(ntuple(_ -> 2, 3))
       println(i)
       end
CartesianIndex(1, 1, 1)
CartesianIndex(2, 1, 1)
CartesianIndex(1, 2, 1)
CartesianIndex(2, 2, 1)
CartesianIndex(1, 1, 2)
CartesianIndex(2, 1, 2)
CartesianIndex(1, 2, 2)
CartesianIndex(2, 2, 2)
Reasons:
  • Low length (0.5):
  • Has code block (-0.5):
  • Low reputation (1):
Posted by: pnavaro

79713941

Date: 2025-07-24 20:47:48
Score: 0.5
Natty:
Report link

I was struggling with permission with ftp and our WordPress volume inside docker. Even with using user and group id 33, we wouldn't have write permission in some folders. The root cause in our case was we had set up our WordPress from an Updraft plus backup. The files restored were not restored by user 33.

I ran the following command to have full permission with a compose.yml similar to the one @jccampanero posted.

docker exec -it container_name sh
chown -R 33:33 /var/ww/html

Reasons:
  • Has code block (-0.5):
  • User mentioned (1): @jccampanero
Posted by: Twillen

79713938

Date: 2025-07-24 20:44:47
Score: 1
Natty:
Report link

for text truncation, these three conditions must be met

overflow: hidden;
white-space: nowrap;
text-overflow: ellipsis;

you also need following in a flex content

min-width: 0; 
Reasons:
  • Low length (1):
  • Has code block (-0.5):
  • Low reputation (0.5):
Posted by: sidhartthhhhh

79713933

Date: 2025-07-24 20:36:45
Score: 1.5
Natty:
Report link

If looking to avoid eslint markings this sort of pattern also works

(component as unknown as { router: Router }).router,
Reasons:
  • Low length (1):
  • Has code block (-0.5):
  • Low reputation (1):
Posted by: Colin Tondreau

79713930

Date: 2025-07-24 20:34:45
Score: 1
Natty:
Report link

It was a very simple fix. My wsl install was out of date. I ran wsl --update and after that, any project that I scaffolded with Docker support through Visual Studio worked perfectly.

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

79713926

Date: 2025-07-24 20:28:43
Score: 1
Natty:
Report link

In memory cache only stores data for the lifetime of the server. Once the app restarts, the cache is destroyed, and on startup, a new cache is created.

In order to keep a cache for a longer period of time, you can upgrade the azure function and turn on keep alive.

This really seems like a problem that would be better handled by a redis cache or some other dedicated service for caching, however.

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

79713924

Date: 2025-07-24 20:25:42
Score: 1
Natty:
Report link

There is redirect function in React Router 7 but its not something like redirect("/info", "/about") in the Framework mode. You need to create a new tsx file for /info route and use the redirect function inside it. You can stick with the data mode if you don't like that.

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

79713919

Date: 2025-07-24 20:23:41
Score: 3
Natty:
Report link

If you select Filters and Group by Parents, the Parent tasks should be prioritized which will display your tasks by priority from top to bottom.

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

79713901

Date: 2025-07-24 20:03:36
Score: 3.5
Natty:
Report link

You need to confirm your email, and it probably fell on spam

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

79713898

Date: 2025-07-24 20:02:36
Score: 1.5
Natty:
Report link

changing

glTexParameteri(GL_TEXTURE_2D, GL_TEXTURE_MIN_FILTER, GL_LINEAR_MIPMAP_LINEAR);

to

glTexParameteri(GL_TEXTURE_2D, GL_TEXTURE_MIN_FILTER, GL_LINEAR);

fixes the problem.

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

79713897

Date: 2025-07-24 20:02:35
Score: 5
Natty:
Report link

As stated in the boto3 docs, the type of the three parameters should not be strings, but bytes.

@berenbums,

I don't know if the documentation has changed since you cited it, but the version I'm looking at would imply that it is perfectly valid to pass in fileb:// args. However, when I do this, I still get the same error that @Tine does.

Reasons:
  • RegEx Blacklisted phrase (1): I still get the same error
  • Has code block (-0.5):
  • Me too answer (2.5): get the same error
  • User mentioned (1): @berenbums
  • User mentioned (0): @Tine
  • Low reputation (1):
Posted by: pdelong

79713896

Date: 2025-07-24 20:01:35
Score: 1.5
Natty:
Report link

You can set the client metadata's redirect_uris to point to a custom page and run client.callback(urlQueryParams) in that page to complete the flow, although it should automatically handle this.

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

79713859

Date: 2025-07-24 19:13:24
Score: 1.5
Natty:
Report link

Add the below lines to your application.yml file


springdoc:
  show-actuator: true
Reasons:
  • Low length (1.5):
  • Has code block (-0.5):
  • Low reputation (0.5):
Posted by: Rudra Garnaik

79713852

Date: 2025-07-24 19:06:22
Score: 3.5
Natty:
Report link

PHP's json extension is required to use Monolog's NormalizerFormatter

Reasons:
  • Low length (1.5):
  • No code block (0.5):
  • Single line (0.5):
  • Low reputation (1):
Posted by: Md Akteruzzaman Zonal Manager

79713850

Date: 2025-07-24 19:05:22
Score: 1
Natty:
Report link

As of v1.43, no -- there is no implementation of prescribed motion. Feature request drake#19234 is the tracking issue.

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

79713846

Date: 2025-07-24 19:00:21
Score: 2
Natty:
Report link

I'd been looking for this very thing recently and had no luck. We've had a couple of jobs show as BROKEN recently, despite no failures, and I needed to test a script to automatically identify these and notify us of them.

What finally worked:

  1. Set up a job that ran an invalid procedure, i.e. was guaranteed to fail.
  2. Ran it a few times. All FAILED, no BROKEN.
  3. Changed max_failures attribute to something low

exec DBMS_SCHEDULER.SET_ATTRIBUTE(name => 'MYJOB', attribute => 'max_failures', value => 2);

  1. Reran.

Success! Querying DBA_SCHEDULER_JOBS shows this as 'BROKEN'.

As a side note: simply trying to re-enable the jobs that broke, and re-run them, just gave the BROKEN status again. I had to basically copy the existing job creation script, then drop and recreate the identical job.

Reasons:
  • Blacklisted phrase (0.5): I need
  • Blacklisted phrase (1): no luck
  • Long answer (-0.5):
  • No code block (0.5):
  • Low reputation (0.5):
Posted by: JOATMON

79713839

Date: 2025-07-24 18:52:19
Score: 3
Natty:
Report link

Same problem here. I just installed Node.js on Windows and it worked, took the easy way out.

Reasons:
  • Whitelisted phrase (-1): it worked
  • RegEx Blacklisted phrase (1): Same problem
  • Low length (1):
  • No code block (0.5):
  • Single line (0.5):
  • Low reputation (1):
Posted by: Arnau Gil