79520184

Date: 2025-03-19 12:30:16
Score: 2.5
Natty:
Report link

I ran into the same issue today. I realised that the start command did not generate the 'blocks-manifest.php' as it should. My workaround is:- copy the blocks-manifest.php (from build folder) into 'src' folder, so webpack will also build this file into the 'build' folder (for Wp's reference) when using 'run start' command during development. And delete this file when ready to build.

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

79520175

Date: 2025-03-19 12:26:15
Score: 1
Natty:
Report link

Configure your dashboard to only generate relative urls.

public function configureDashboard(): Dashboard
    {
        return parent::configureDashboard()
          
            ->setTitle('Backoffice - ')
            ->generateRelativeUrls();
    }
Reasons:
  • Low length (0.5):
  • Has code block (-0.5):
  • Low reputation (1):
Posted by: Chayma Omrani

79520169

Date: 2025-03-19 12:23:14
Score: 1
Natty:
Report link

1)Restart VS Code (sometimes it will solve your issue)

2)Update VS Code:-Go to "Help" -> "Check for Updates" ( check for updates, if you can do the update in your vs code it may also solve your issue which you mention above)

3)Uninstalling and Reinstalling Specific Extensions which is needed (this is an common idea which you can try to uninstall unwanted extensions and after restart the vs code, then try to reinstall your specific extension which you need)

4)Uninstall your current version of vs code and Reinstall the newer version of vs code. (This is not a best idea for all time, if you don't have any other choice you can try it. )

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

79520164

Date: 2025-03-19 12:20:13
Score: 1
Natty:
Report link

you play the sound and immediatly destroy the object with queue_free

you have to wait until the sound is done playing and then call queue_free or let the sound play form another scene.

use the signal finished() of the audiostreamplayer2d then call queue_free

or

use the property playing of audiostreamplayer2d to check is the sound is done playing

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

79520155

Date: 2025-03-19 12:18:13
Score: 2
Natty:
Report link

It's working here with your configuration:

I just ran docker build . --platform linux/amd64 I got an image on my ARM Mac.

docker image list
REPOSITORY   TAG.      IMAGE ID       CREATED         SIZE
<none>       <none>    8394447e8084   4 minutes ago   59.6MB
syft scan 8394447e8084 --scope all-layers
 ✔ Loaded image 8394447e8084
 ✔ Parsed image sha256:8394447e80846d52d7047063a7b5c47ff2a1795e5baeda03d3fb6362a99f9f94
 ✔ Cataloged contents 655512525c2ef2fe56e4890d9acd5852ea5729901fb1a99abcccd88c6bccae60
   ├── ✔ Packages                        [4 packages]
   ├── ✔ File digests                    [943 files]
   ├── ✔ File metadata                   [943 locations]
   └── ✔ Executables                     [2 executables]
NAME        VERSION          TYPE
base-files  12.4+deb12u10    deb
netbase     6.4              deb
redis       7.4.2            binary
tzdata      2025a-0+deb12u1  deb

Are you using an old version of Syft? The latest is v1.21.0.
Do you have a syft configuration file that is overriding the defaults? (I am not)

Reasons:
  • RegEx Blacklisted phrase (2.5): Do you have a
  • Long answer (-1):
  • Has code block (-0.5):
  • Contains question mark (0.5):
  • Low reputation (0.5):
Posted by: popey

79520153

Date: 2025-03-19 12:16:12
Score: 1
Natty:
Report link

I suggest reading the answers to this question . I was able to solve the problem by:

install.packages("installr")
install.packages("magick")
Reasons:
  • Low length (1):
  • Has code block (-0.5):
  • Low reputation (0.5):
Posted by: candelas762

79520151

Date: 2025-03-19 12:16:12
Score: 5
Natty: 4.5
Report link

@Matt Lang thanks for this. I spent 3 sessions with support and they never gave me this HOST. Saved me a few hours for sure

Reasons:
  • Blacklisted phrase (0.5): thanks
  • Low length (1):
  • No code block (0.5):
  • User mentioned (1): @thanks
  • Single line (0.5):
  • Looks like a comment (1):
  • Low reputation (0.5):
Posted by: lazar89nis

79520149

Date: 2025-03-19 12:15:12
Score: 2.5
Natty:
Report link

Programmatic revocation of delegated permissions (full or partial) without admin may not work. Direct users to revoke access manually via Microsoft portals, as APIs require elevated permissions not available in your scenario. Even if you log users out and clear the token, this doesn't revoke permission.

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

79520145

Date: 2025-03-19 12:15:12
Score: 1.5
Natty:
Report link

In my case I was not cloning the repository to the build agent in my pipeline.
Adding - checkout: self at the very beginning of the job fixed my issue.

Special thanks to the answer in the following: Azure DevOps Pipeline Terraform Init fail

Reasons:
  • Blacklisted phrase (0.5): thanks
  • Low length (0.5):
  • Has code block (-0.5):
  • Low reputation (1):
Posted by: Shayaan

79520131

Date: 2025-03-19 12:08:10
Score: 0.5
Natty:
Report link

Use the NULLIF(value, 0) function, where value is a potential divisor. If it equals zero, NULL will be returned; otherwise, the correct division result will be returned.

Example:

SELECT 30 / NULLIF(0, 0)   
\[NULL\]  
SELECT 30 / NULLIF(5, 0)   
6
Reasons:
  • Low length (0.5):
  • Has code block (-0.5):
  • Low reputation (0.5):
Posted by: Alex Soloh

79520129

Date: 2025-03-19 12:07:10
Score: 2.5
Natty:
Report link

It's late, but you should generate the trace ID for each request on the client, not pass it back to the client.

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

79520113

Date: 2025-03-19 12:00:09
Score: 3
Natty:
Report link

With 10 (or even 11) it was working fine, seems to be an issue since 12.

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

79520112

Date: 2025-03-19 11:59:08
Score: 0.5
Natty:
Report link

The following code should illustrate how to achieve two ComboBox widgets where the choices of the second depend on the current value of the first. This makes use of the changed signal of the first ComboBox to call the reset_choices of the second ComboBox to update its choices whenever the value of the first ComboBox got changed. The possible choices are saved as a dict.

# Dictionary to save choice dependencies.
choices = {
    "Choice 1": ["First A", "First B", "First C"],
    "Choice 2": ["Second A", "Second B", "Second C", "Second D"],
    "Choice 3": ["Only one choice"],
}

# The choices function receives the `ComboBox`
# widget as argument.
def get_second_choice(gui):
    # before final initialization the parent
    # of our `ComboBox` widget is None.
    if gui.parent is not None:
        return choices[gui.parent.box1.value]
    else:
        return []

@magicgui(
    box1={"widget_type": "ComboBox", "choices": list(choices.keys())},
    box2={"widget_type": "ComboBox", "choices": get_second_choice},
)
def widget(box1, box2, viewer: napari.Viewer) -> None:
    return f"{box1} - {box2}"

# Changes to box1 should result in resetting
# choices in box2.
widget.box1.changed.connect(widget.box2.reset_choices)
Reasons:
  • Blacklisted phrase (1): how to achieve
  • Long answer (-1):
  • Has code block (-0.5):
  • Self-answer (0.5):
  • Low reputation (0.5):
Posted by: Niklas Netter

79520109

Date: 2025-03-19 11:58:08
Score: 3.5
Natty:
Report link

I have one super solution to download invoices from SAP through VF03

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

79520107

Date: 2025-03-19 11:57:08
Score: 1
Natty:
Report link

If you want to convert markdown to slack supported markdown in python, you can use: https://pypi.org/project/slackify-markdown/

Disclaimer: I am developer of this library

M.

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

79520102

Date: 2025-03-19 11:55:07
Score: 3.5
Natty:
Report link

Awesome..!! All that 'noise' in Scrapy has been driving me nuts and this solution works a treat! Thank you.

Reasons:
  • Blacklisted phrase (0.5): Thank you
  • Low length (1):
  • No code block (0.5):
  • Single line (0.5):
  • Low reputation (1):
Posted by: sacundai

79520097

Date: 2025-03-19 11:53:07
Score: 0.5
Natty:
Report link

Looks that time calculation of minuteOfDay isn't correct

time % 1 always = 0;

Probably should be:

 // const minuteOfDay = this.minutesInDay * (time % 1);
 const minuteOfDay = time % this.minutesInDay;

Code sandbox:

https://codesandbox.io/p/sandbox/yxmnd7

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

79520092

Date: 2025-03-19 11:51:06
Score: 1.5
Natty:
Report link

Found a Post who already answered a similar question, hope it helps:
Django-Allauth equivalent for Django Ninja?

Second question i cant answer, but ninja_jwt may be usefull

Reasons:
  • Whitelisted phrase (-1): hope it helps
  • Low length (1):
  • No code block (0.5):
  • Low reputation (1):
Posted by: Robin

79520088

Date: 2025-03-19 11:48:05
Score: 2
Natty:
Report link

As @novelistparty noted, you can type format in the lldb prompt. If you want to have these settings saved in XCode, you can create an ~/.lldbinit file with this same setting, along with whatever other settings in the file:

type format add -f decimal uint8_t

Reasons:
  • Low length (0.5):
  • Has code block (-0.5):
  • User mentioned (1): @novelistparty
  • Low reputation (1):
Posted by: Rob

79520082

Date: 2025-03-19 11:44:05
Score: 1.5
Natty:
Report link

This was a bug that's been fixed in Flutter 3.29.1. Updating to this or newer Flutter version should do the trick.

[CP][Impeller] Fix text glitch when returning to foreground.

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

79520080

Date: 2025-03-19 11:43:04
Score: 1
Natty:
Report link

Turns out my client was using Project Permission Mode, which there is osme documentation about stating that could've been the case here.

At the time I didn't look into it deeper as I could not see the option to change our environment to Project Permission Mode, even though I was a Project Server admin. This wrongly led me to believe it was depricated, and I kept trying to solve it using Sharepoint Permission Mode approaches.

Having access to my clients environment I could allow the needed permissions to the user created for the integration.

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

79520066

Date: 2025-03-19 11:35:03
Score: 3
Natty:
Report link

In my case I was missing the

[keyring.backend] Loading Google Auth

line in publish -vvv output and what helped me was

poetry add --dev poetry
poetry run poetry publish ....

This doesn't seem relevant for the initial question, but may help others having similar problem.

Reasons:
  • Low length (0.5):
  • Has code block (-0.5):
  • Me too answer (2.5): having similar problem
  • Low reputation (0.5):
Posted by: scorpp

79520063

Date: 2025-03-19 11:34:03
Score: 1
Natty:
Report link

To me, this is a two-part definition of the term "Authorization". The classic authorization is when an application is looking at the logged in users permissions and deciding what the user can do. The new way, Oauth2-way is from the user perspective. The user is authorizing the application to use the user data.

Classic: Application is authorizing the user.

Oauth2: the user is authorizing the application.

So by that definition there is no authentication in Oauth2, but rather oauth2 is relying on other parties to do the authentication, I.e login with google etc. Google is authenticating, oauth2-protocol trusts the other identity providers. So rather than having an authentication step, there is only a "redirect to Identity providers"-step for authentication.

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

79520053

Date: 2025-03-19 11:31:01
Score: 7 🚩
Natty:
Report link

Ok. If you are seeing this from the future, and think you have a similar problem, and you are suspicious the issue might be due to a Viewport misbehavior or Pyqtgraph acting weird... It is very probably not the case.

After discarding that chance thanks to the comments, I was able to find the problem and it was entirely mine, a mathematical miscalculation on my program (I was positioning the parallel lines in regards to the reference one by only using the vertical distance between the points, and not the orthogonal distance [I am an idiot]).

The only useful coding related hint I can share for you to try to solve your problem in the future is: review whether you might using the same functions with different types of drawings (for example: the same distance translation function for entirely horizontal drawings and diagonal drawings).

Thanks to everyone that commented.

Cheers

Reasons:
  • Blacklisted phrase (0.5): thanks
  • Blacklisted phrase (0.5): Thanks
  • Blacklisted phrase (1): regards
  • Blacklisted phrase (1): Cheers
  • Long answer (-0.5):
  • No code block (0.5):
  • Me too answer (2.5): have a similar problem
  • Self-answer (0.5):
  • Low reputation (1):
Posted by: peputito

79520051

Date: 2025-03-19 11:31:01
Score: 2.5
Natty:
Report link

Thank you all for your explanations but none of these worked for me. I am running on a Mac M2 with Sequoia 15.4 and Mysql 8.0.41.

Reasons:
  • Blacklisted phrase (0.5): Thank you
  • Whitelisted phrase (-1): worked for me
  • Low length (1):
  • No code block (0.5):
  • Single line (0.5):
  • Low reputation (1):
Posted by: Joseph Loomis

79520047

Date: 2025-03-19 11:28:00
Score: 2
Natty:
Report link

try this formula
=IF(LEFT(A1,2)="19", RIGHT(A1, LEN(A1)-2), A1)

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

79520032

Date: 2025-03-19 11:23:00
Score: 1.5
Natty:
Report link

I have found, i just need to add my file i18n.js in my principal file

import '../../src/i18n.js';

Just don't know why that failed on prod and not in dev

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

79520029

Date: 2025-03-19 11:21:59
Score: 2.5
Natty:
Report link

The "no password supplied" error during migrations occurs when your database connection settings lack a password. To fix it, check your settings.py or environment variables and ensure the password field is correctly defined in the DATABASES configuration.

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

79520017

Date: 2025-03-19 11:16:59
Score: 1
Natty:
Report link

The function getFilterParameters is marked as final since Sonata 4.0.0. You need to use the configureDefaultFilterValues function

protected function configureDefaultFilterValues(array &$filterValues): void
{
    $filterValues['assignee'] = 
        [
            'value' => $this->getUser()->getId(),
        ];
}

Source : https://github.com/sonata-project/SonataAdminBundle/blob/4.0.0/src/Admin/AbstractAdmin.php

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

79520012

Date: 2025-03-19 11:14:58
Score: 3
Natty:
Report link

You could just "reset the billing cycle" from the update subscription screen.

Reasons:
  • Low length (1.5):
  • No code block (0.5):
  • Single line (0.5):
  • Low reputation (0.5):
Posted by: Jesús Vera

79520008

Date: 2025-03-19 11:13:58
Score: 1.5
Natty:
Report link

just wrap p.selectbutton inside a div:

    <div class"flex-column w-100">
     <p-selectbutton></p-selectbutton>
    </div>
Reasons:
  • Low length (1):
  • Has code block (-0.5):
  • Low reputation (1):
Posted by: giampaolo fini

79520006

Date: 2025-03-19 11:13:58
Score: 1
Natty:
Report link

You can customize the default move icon (DragHandleIcon) by using icons prop.

<MaterialReactTable
  icons={{
    DragHandle: (props) => (
      <DragIndicatorIcon sx={{ fontSize: 18 }} {...props} />
    ),
  }}
/>

Reasons:
  • Low length (0.5):
  • Has code block (-0.5):
  • Low reputation (1):
Posted by: Bilal Özlü

79520002

Date: 2025-03-19 11:11:57
Score: 3.5
Natty:
Report link

The issue might be with Lombok. Try replacing your @Data or @Getter and @Setter with manually written getter and setter methods, or verify your Lombok plugin and dependencies are correctly configured.

Reasons:
  • Low length (0.5):
  • No code block (0.5):
  • User mentioned (1): @Data
  • User mentioned (0): @Getter
  • User mentioned (0): @Setter
  • Single line (0.5):
  • Low reputation (1):
Posted by: Manjunath Bhandari

79520000

Date: 2025-03-19 11:10:57
Score: 4.5
Natty:
Report link

I tried installing with a different block on the computer and it went to a different error - I have a problem with tensorflow and Protobuf versions.

I tried tensorflow 2.10 and also 2.9 GPU but I can't find a suitable Protobuf version. I would appreciate help.

Thanks

Reasons:
  • Blacklisted phrase (0.5): Thanks
  • Blacklisted phrase (1.5): would appreciate
  • Low length (0.5):
  • No code block (0.5):
  • Self-answer (0.5):
  • Low reputation (1):
Posted by: EfratSh

79519997

Date: 2025-03-19 11:10:57
Score: 1
Natty:
Report link

To create a new Gym environment in OpenAI Gym (or Gymnasium), follow these key steps without coding:

1️⃣ Understand Gym Environments

A Gym environment is a simulated setting where an AI agent interacts with surroundings by taking actions and receiving rewards. It has:


2️⃣ Define Your Custom Environment

Before building your Gym environment, plan the following:


3️⃣ Register the Environment

Gym needs to recognize your environment so it can be used. This involves assigning a name and linking it to the logic of your environment.


4️⃣ Test and Train Your Agent

Once the environment is set up, you can:


5️⃣ Use Cases for Custom Gym Environments

Reasons:
  • Long answer (-1):
  • No code block (0.5):
  • Contains question mark (0.5):
  • Low reputation (1):
Posted by: user2659017

79519996

Date: 2025-03-19 11:09:56
Score: 1.5
Natty:
Report link

No, what you are saying could be a gross negligence if you ask a geodesy or navigation expert. Longitude is ALWAYS given as an angular measurement with 0° at the Prime Meridian, ranging from −180° (or 180°W/-180°E) to +180° (or 180°E). There is no device on Earth that could or should show the longitude from 0° to 360°.

Reasons:
  • No code block (0.5):
  • Single line (0.5):
  • Low reputation (0.5):
Posted by: Naveed Ahmed

79519994

Date: 2025-03-19 11:09:56
Score: 0.5
Natty:
Report link

later, I generated a keystore for the server and a truststore for the client. Add dependency netty-incubator-codec-native-quic for client. Configure http3client:

SslBundle sslBundle = factory.getSslBundles().getBundle("http3");
        TrustManager[] trustManagers = sslBundle.getManagers().getTrustManagers();
        Http3SslContextSpec sslContextSpec = Http3SslContextSpec
                .forClient()
                .configure(s -> s.trustManager(trustManagers[0]));
        
        return HttpClient.create()
                // Configure HTTP/3 protocol
                .protocol(HttpProtocol.HTTP3)
                // Configure HTTP/3 settings
                .secure(spec -> spec.sslContext(sslContextSpec))
                .http3Settings(spec -> spec
                        .idleTimeout(Duration.ofSeconds(5))
                        .maxData(10_000_000)
                        .maxStreamDataBidirectionalLocal(1_000_000));

And it works!

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

79519966

Date: 2025-03-19 11:02:54
Score: 1.5
Natty:
Report link

The error occurs because you're trying to set the value of a hidden input field to an array directly, but HTML input fields can only hold string values. Since $DiseaseDiagnosed is an array, it cannot be directly assigned as a value in the input field.

Use implode() to Convert the Array to a String blade Copy Edit This will convert the array into a comma-separated string, making it valid for the input field.

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

79519960

Date: 2025-03-19 10:58:53
Score: 1.5
Natty:
Report link

работающий легкий сон по таймеру и прерыванию, платка HW-628 v1.1 ток сна 18мА, ток просыпания скачек под 80ма, ток в loop() 33мА

#include "user_interface.h" // для сохранения времени во время легкого сна на основе RTC

#define WAKE_UP_PIN 0 // D3

void wakeupCallback() {//функцию обратного вызова,чтобы лёгкий сон возобновился сразу после тайм-аута или прерывания (без ожидания полной продолжительности delay()
  delay(3);// без этого запустится  delay(sleepSeconds * 1000 + 1)
  Serial.println("обр вызов, сон кончился");
  // этот сброс имеет решающее значение, возможно, потому, что это блокирующая команда, которая
  // позволяет процессору выйти из функции delay(sleepSeconds * 1000 + 1)
  Serial.flush();
}

void sleep(int sleepSeconds) {
  extern os_timer_t *timer_list;
  timer_list = nullptr;
  //  wifi_station_disconnect(); //not needed
  wifi_set_opmode_current(NULL_MODE);//NULL_MODE — этот параметр отключает Wi-Fi модуль.
  wifi_fpm_open();
  wifi_fpm_set_sleep_type(LIGHT_SLEEP_T);
  Serial.println("переход в сон");
    Serial.flush();
  gpio_pin_wakeup_enable(GPIO_ID_PIN(WAKE_UP_PIN), GPIO_PIN_INTR_LOLEVEL);
  wifi_fpm_set_wakeup_cb(wakeupCallback); //функция обязательно, чтобы НЕ выполнялся delay после следующей строки
  wifi_fpm_do_sleep(sleepSeconds * 1000 * 1000);//Лёгкий сон по таймеру может длиться от ~10 000 до 0xFFFFFFE = 2^28-1 = 268435454 микросекунд (~4 1/2 минуты)
  delay(sleepSeconds * 1000 + 1); // за командой лёгкого сна должен следовать delay() (указанный в миллисекундах), который как минимум на 1 мс длиннее, чем время сна
}



void setup() {
  pinMode(WAKE_UP_PIN, INPUT_PULLUP);
  Serial.begin(9600);
  Serial.println();
}

void loop() {
  delay(3); //без этого уходит в сон, но не просыпается

  for (int i = 0; i < 3; ++i) {
    // Выводим номер пина и соответствующее значение
    Serial.print("Analog Pin ");
    Serial.print(i + 1);
    Serial.print("= ");
    Serial.println(analogRead(A0));
    delay(1000);
  }

  sleep(15);

}
Reasons:
  • Long answer (-1):
  • Has code block (-0.5):
  • Unregistered user (0.5):
  • No latin characters (1.5):
  • Low reputation (1):
Posted by: Олег

79519949

Date: 2025-03-19 10:53:52
Score: 0.5
Natty:
Report link

I encountered the same issue with this package facebook_app_events while using Xcode 15.4. I resolved it by simply upgrading to Xcode 16.2.

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

79519935

Date: 2025-03-19 10:44:50
Score: 2
Natty:
Report link

add this line to your application.properties
spring.jpa.properties.hibernate.hbm2ddl.drop_constraints=false

This configuration ensures that Hibernate does not delete constraints before deleting tables.

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

79519929

Date: 2025-03-19 10:42:50
Score: 2.5
Natty:
Report link

Thanks if someone helped, but i figured the answer , i just misplaced the classes in style tag,

.gamind-btn{
//styles
}

.is-toggled{
//styles
}

Reasons:
  • Blacklisted phrase (0.5): Thanks
  • Low length (1):
  • Has code block (-0.5):
  • Self-answer (0.5):
  • Low reputation (1):
Posted by: Monish M

79519925

Date: 2025-03-19 10:42:50
Score: 0.5
Natty:
Report link

To resolve this issue, you need to change the scope of the Guava dependency from test to compile

    <dependency>
        <groupId>com.google.guava</groupId>
        <artifactId>guava</artifactId>
        <version>20.0</version>
        <scope>compile</scope>
    </dependency>
Reasons:
  • Low length (0.5):
  • Has code block (-0.5):
  • Low reputation (0.5):
Posted by: Ali BOUHLEL

79519921

Date: 2025-03-19 10:38:48
Score: 1
Natty:
Report link

Thanks to the people in the comments i made it work.

The queries linked by @ThomA gave me NT AUTHORITY\NETWORKSERVICE as the user that was used in order to access the files.

SELECT value_data
FROM   sys.dm_server_registry
WHERE  value_name = 'ObjectName'
AND     registry_key = 'HKLM\SYSTEM\CurrentControlSet\Services\MSSQLSERVER'

OR

SELECT DSS.servicename, DSS.startup_type_desc,
       DSS.status_desc, DSS.last_startup_time,
       DSS.service_account, DSS.is_clustered,
       DSS.cluster_nodename, DSS.filename,
       DSS.startup_type, DSS.status, DSS.process_id
FROM   sys.dm_server_services AS DSS;   

Since my PC is set to german, i translated it to Netzwerkservice and gave access to that user(group) by following the steps described here. This solved the issue i was having.

Since your SSMS might be configured differently, i would suggest running the querries on your own setup again.

Alternatively:

Although it was not applicable to my case, if you can place the assembly file on your server directly the suggestion by @siggemannen is also an solution, since this removes the need to provide access to the user:

"Run: select * from master.sys.sysfiles and just put your files into the folder where master db is

However i cannot garantee that this is considered best practice

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

79519909

Date: 2025-03-19 10:34:47
Score: 2
Natty:
Report link

This happened to me due to a circular dependency between 2 files importing each other. The fix is to make sure that there's no circular dependency, e.g., by moving shared function to a separate file.

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

79519897

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

Using plainToInstance(User, dto) causes the problem

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

79519889

Date: 2025-03-19 10:30:46
Score: 1.5
Natty:
Report link

How about this expression?

$.mydata{ 
  OWNED: $.{
    DOSSIER: DOSSIER,
    "DIP_ID": DIP_ID
  }{
    Private: $.DIP_ID[],
    Public: $.DIP_ID[],
    "OWNED_GROUP_COUNT": $count($.DIP_ID)
  }
}

JSONata Playground link: https://jsonatastudio.com/playground/4502c709

Given a JSON input of:

{
  "mydata": [
    {
      "OWNED": "A",
      "DOSSIER": "Private",
      "DIP_ID": 8619
    },
    {
      "OWNED": "B",
      "DOSSIER": "Public",
      "DIP_ID": 17
    },
    {
      "OWNED": "C",
      "DOSSIER": "Private",
      "DIP_ID": 27635
    },
    {
      "OWNED": "A",
      "DOSSIER": "Public",
      "DIP_ID": 111
    },
    {
      "OWNED": "B",
      "DOSSIER": "Public",
      "DIP_ID": 110
    }
  ]
}

It evaluates to:

{
  "A": {
    "Private": [
      8619
    ],
    "OWNED_GROUP_COUNT": 2,
    "Public": [
      111
    ]
  },
  "B": {
    "Public": [
      17,
      110
    ],
    "OWNED_GROUP_COUNT": 2
  },
  "C": {
    "Private": [
      27635
    ],
    "OWNED_GROUP_COUNT": 1
  }
}
Reasons:
  • Probably link only (1):
  • Long answer (-0.5):
  • Has code block (-0.5):
  • Contains question mark (0.5):
  • Starts with a question (0.5): How
  • Low reputation (0.5):
Posted by: Vlad Dimov

79519888

Date: 2025-03-19 10:30:45
Score: 10.5 🚩
Natty: 4.5
Report link

do you have any updates? I have the same issue.

Reasons:
  • Blacklisted phrase (1): I have the same issue
  • RegEx Blacklisted phrase (2.5): do you have any
  • RegEx Blacklisted phrase (0.5): any updates
  • Low length (1.5):
  • No code block (0.5):
  • Me too answer (2.5): I have the same issue
  • Contains question mark (0.5):
  • Single line (0.5):
  • Low reputation (1):
Posted by: Roman

79519883

Date: 2025-03-19 10:28:45
Score: 4
Natty:
Report link

This was a bug in the SDK, this will be fixed in an upcoming release

https://github.com/Dart-Code/Dart-Code/issues/5387

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

79519882

Date: 2025-03-19 10:28:45
Score: 1
Natty:
Report link

If using javascript you can use https://github.com/FRSOURCE/is-animated it is only 2KB compressed and detects animated webp and animated gif

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

79519881

Date: 2025-03-19 10:28:45
Score: 0.5
Natty:
Report link

You might be building with --wasm tag (Web Assembly) which only currently supports Chromium browsers.

Remove the --wasm when building so canvas kit is automatically used.

If you are using a lower flutter version, use --web-renderer canvaskit.

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

79519865

Date: 2025-03-19 10:22:39
Score: 0.5
Natty:
Report link

if we use docker compose, can add like this,
docker file:
EXPOSE 8080
EXPOSE 8081

and

in docker-compse:

    ports:
      - 5000:8080
    environment:
      - ASPNETCORE_ENVIRONMENT=Docker
      - ASPNETCORE_HTTP_PORTS=8080
      - ASPNETCORE_HTTPS_PORTS=8081
      - ASPNETCORE_URLS=http://+:8080
Reasons:
  • Low length (0.5):
  • Has code block (-0.5):
  • Low reputation (0.5):
Posted by: Chinh Vo Wili

79519852

Date: 2025-03-19 10:20:39
Score: 4
Natty:
Report link

use [val] instead of [def] in gradle.

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

79519850

Date: 2025-03-19 10:19:38
Score: 5.5
Natty:
Report link

In my case it was the wrong path to python.exe.

With pointing the path variable to the python3\win32 folder I have the same error.

After setting path to python3\amd64 the 'pip install notebook' worked.

Reasons:
  • RegEx Blacklisted phrase (1): I have the same error
  • Low length (0.5):
  • No code block (0.5):
  • Me too answer (2.5): I have the same error
  • Low reputation (1):
Posted by: snowrunner

79519848

Date: 2025-03-19 10:19:37
Score: 4
Natty:
Report link

I have the same problem, but mine only happens whenever I log out and then log back into the app. It turns out that the msal.interaction.status is not deleted and remains in the session. I fixed it by clearing the session before running msalInstance.loginPopup().

Reasons:
  • Blacklisted phrase (1): I have the same problem
  • Whitelisted phrase (-2): I fixed
  • Low length (0.5):
  • No code block (0.5):
  • Me too answer (2.5): I have the same problem
  • Single line (0.5):
  • Low reputation (1):
Posted by: Jerrico Dela Cruz

79519839

Date: 2025-03-19 10:12:35
Score: 15.5 🚩
Natty:
Report link

I am facing the same issue. Were you able to fix it?

Reasons:
  • Blacklisted phrase (3): Were you able to fix it
  • RegEx Blacklisted phrase (1.5): fix it?
  • RegEx Blacklisted phrase (3): Were you able
  • Low length (1.5):
  • No code block (0.5):
  • Me too answer (2.5): I am facing the same issue
  • Ends in question mark (2):
  • Single line (0.5):
  • Low reputation (1):
Posted by: Muhammad Zafar

79519838

Date: 2025-03-19 10:12:35
Score: 2
Natty:
Report link

From Athena:

SELECT count(*) FROM "AwsDataCatalog"."<database name>"."<table name>$partitions";

Source AWS Documentation

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

79519833

Date: 2025-03-19 10:12:35
Score: 1.5
Natty:
Report link

I'm unsure what you're trying to do in your compose, but could you not go from your PowerBI direcly (skipping compose) to "create csv table" and then save the results to sharepoint?

Csv starts with a header row and then continues with data for each line, so out of the box it should do what you need. - The delimiters can be different depending on region (I've seen many csv's (Comma Seperated Values) that are semicolon separated, so that might also be your issue.

Perhaps you should show us a bit of your dataset... as in

Current state => desired state

so that we have an idea of what transformation you want to achieve here, more details please.

Reasons:
  • Long answer (-0.5):
  • No code block (0.5):
  • Contains question mark (0.5):
  • Low reputation (1):
Posted by: Stefan Malling

79519824

Date: 2025-03-19 10:07:34
Score: 0.5
Natty:
Report link

For anyone interested, I just found a solution, I placed #secondList into a table element:

and added the css decorator visibility: visible / collapse

<table>
  <tr>
    <td>
      <secondListComponent></>
    </td>
  </tr>
</table>

according to mozilla:

For rows, columns, column groups, and row groups, the row(s) or column(s) are hidden and the space they would have occupied is removed (as if display: none were applied to the column/row of the table). However, the size of other rows and columns is still calculated as though the cells in the collapsed row(s) or column(s) are present.

Reasons:
  • Long answer (-0.5):
  • Has code block (-0.5):
  • Self-answer (0.5):
  • Low reputation (1):
Posted by: Conor O'Malley

79519818

Date: 2025-03-19 10:05:33
Score: 3.5
Natty:
Report link

i have the same problem with this code of mine

    <Stack.Navigator
      initialRouteName={Routes.Login}
      screenOptions={{header: () => {}}}>
      <Stack.Screen name={Routes.SignIn} component={SingIn} />
      <Stack.Screen name={Routes.Login} component={Login} />;
    </Stack.Navigator>

mine problem was the ;

<Stack.Navigator
  initialRouteName={Routes.Login}
  screenOptions={{header: () => {}}}>
  <Stack.Screen name={Routes.SignIn} component={SingIn} />
  <Stack.Screen name={Routes.Login} component={Login} />;<---- HERE
</Stack.Navigator>

and i just delete it and it went back to normal

Reasons:
  • Blacklisted phrase (1): i have the same problem
  • Long answer (-0.5):
  • Has code block (-0.5):
  • Me too answer (2.5): i have the same problem
  • Low reputation (1):
Posted by: Frentzen Chan

79519804

Date: 2025-03-19 10:00:31
Score: 6.5 🚩
Natty:
Report link

I am experiencing a similar issue with commonMain, JsMain, and iOSMain. Could you pls share the code and provide a detailed explanation?

Reasons:
  • RegEx Blacklisted phrase (2.5): Could you pls share the code
  • Low length (1):
  • Has code block (-0.5):
  • Ends in question mark (2):
  • Single line (0.5):
  • Low reputation (1):
Posted by: Grok Digital

79519787

Date: 2025-03-19 09:52:29
Score: 0.5
Natty:
Report link

I just reiterate @JBGrubber s comment here (as it might be overlooked).

You can add the CSS right next to the title in curly brackets:

## Slide {style="text-align: center;"}
Reasons:
  • Low length (1):
  • Has code block (-0.5):
  • User mentioned (1): @JBGrubber
  • High reputation (-1):
Posted by: andschar

79519782

Date: 2025-03-19 09:51:29
Score: 2
Natty:
Report link

For anyone encountering this issue in 2025:

We had several issues when setting up a Net TCP server in WCF with transport security. I'm sharing our findings to help anyone encountering any of the same later, even though some of this has been mentioned in other posts:

1: Getting a certificate with an accessible private key

The first issue was that the key was not accessible, because when generating a self-signed certificate, the certificate "knows" about the key but cannot access it.

This is fixed by exporting the certificate as bytes, and re-importing it, creating a new object that knows about the secret key.

var temp = GenerateCertificate(subjectName ?? DEFAULT_SUBJECT, keySize, validDays);
var completeCert = new X509Certificate2(temp.Export(X509ContentType.Pfx, password), password, X509KeyStorageFlags.Exportable | X509KeyStorageFlags.MachineKeySet);
temp.Dispose();
return completeCert;
private static X509Certificate2 GenerateCertificate(string subjectName, int keySize, int validDays)
{
    var cngKey = new CngKeyCreationParameters
    {
        ExportPolicy = CngExportPolicies.AllowPlaintextExport,
        KeyUsage = CngKeyUsages.AllUsages,
        Provider = CngProvider.MicrosoftSoftwareKeyStorageProvider
    };

    rsa = new RSACng(CngKey.Create(CngAlgorithm.Rsa, null, cngKey));
    var request = new CertificateRequest(subjectName, rsa, HashAlgorithmName.SHA256, RSASignaturePadding.Pkcs1);
    request.CertificateExtensions.Add(new X509KeyUsageExtension(X509KeyUsageFlags.KeyCertSign | X509KeyUsageFlags.KeyEncipherment, false));
    var certificate = request.CreateSelfSigned(DateTimeOffset.Now, DateTimeOffset.Now.AddYears(10));
    return certificate;
}

Note that this generates a key file in C:\ProgramData\Microsoft\Crypto\RSA\MachineKeys, (OR in some cases C:\ProgramData\Microsoft\Crypto\Keys) - More on that later...

Then, creating a self signed certificate at runtime and setting it to service like this:

ServiceHost host = new ServiceHost(service);
X509Certificate2 certificate = MyNamespace.GenerateCertificate();
host.Credentials.ServiceCertificate.Certificate = certificate;

This worked like a charm while running from IDE, but not when running the program in a real environment. What now?

2: Ensuring User access to the key

The mentioned keys are generated and saved as files on the computer. This is due to the inner workings of the Microsoft cryptographic service providers and therefore you don't really have a choice.

However this is a problem when the program is running under a user that don't have access to these folders. The solution is to add these permissions!

Do this however you like, we added a powershell script to be run at install time that grants the "Everyone" user group read, write, and delete access to this folder (NSIS calls this .ps1 script). This can look like:

$FolderPath = "$env:ALLUSERSPROFILE\Microsoft\Crypto\RSA\MachineKeys"
$Acl = Get-ACL $FolderPath

# protect folder from inherited rules
$Acl.SetAccessRuleProtection($True, $False)

#Everyone group regardless of localization
$Everyone = New-Object System.Security.Principal.SecurityIdentifier('S-1-1-0')

#add user permission to folder
$AccessRule = New-Object System.Security.AccessControl.FileSystemAccessRule($Everyone,"Read,Write,Delete","ContainerInherit,ObjectInherit","none","Allow")
$Acl.SetAccessRule($AccessRule)

#apply changes
Set-Acl $FolderPath $Acl

Voilá! Now it works when a normal user runs the program on Windows 11.

BUT wait, it still throws when running the program as a service on a windows 10 PC. AND the keys aren't being generated in Crypto/RSA/MachineKeys folder, but in Crypto/Keys.

3: CAPI and CNG despair

This one tripped us up for a long time. It seemed no matter what we did on windows 10 it did not work.

The process run as a service, so we troubleshooted all the possible implications this could have, with no luck. The process ran under LOCAL SYSTEM, which should mean the file access shouldn't be an issue as SYSTEM has access to everything.

A deep dive into the stack trace and the "magical" workings of the "old" CryptoAPI and the newer Crypto Next Generation and some decompiled Microsoft package code, revealed that the validation of the certificate fails because of a check performed in System.ServiceModel.Security.SecurityUtils.CanKeyDoKeyExchange(X509Certificate2 certificate).

This method has a flag to ensure it doesn't try to access the obsolete X509Certificate2.PrivateKey property, WHICH IS STILL IN USE because the transition from CAPI to CNG hasn't gone entirely flawless. (No judgement here Microsoft, we all make mistakes.)

So the final piece of the puzzle that took us weeks to troubleshoot is to set the System.ServiceModel.LocalAppContextSwitches.DisableCngCertificates flag to false for out application.

For our WPF application this was done by adding this to the app.config:

<configuration>
  <runtime>
    <AppContextSwitchOverrides value="Switch.System.ServiceModel.DisableCngCertificates=false" />
  </runtime>
</configuration>

And lo and behold it works!

Reasons:
  • Blacklisted phrase (1): did not work
  • Blacklisted phrase (1): no luck
  • Blacklisted phrase (1): worked like a charm
  • Whitelisted phrase (-1): solution is
  • Long answer (-1):
  • Has code block (-0.5):
  • Contains question mark (0.5):
  • Low reputation (1):
Posted by: Saigronas

79519777

Date: 2025-03-19 09:50:29
Score: 3
Natty:
Report link

I have the same problem today,

it seems there is a huge update with the packages, now it exists a file called blocks-manifest.php which replicate the block.json file.

Ths file is loaded in the plugin's main file like this

    function create_block_toto_block_init() {
if ( function_exists( 'wp_register_block_types_from_metadata_collection' ) ) { // Function introduced in WordPress 6.8.
    wp_register_block_types_from_metadata_collection( __DIR__ . '/build', __DIR__ . '/build/blocks-manifest.php' );
} else {
    if ( function_exists( 'wp_register_block_metadata_collection' ) ) { // Function introduced in WordPress 6.7.
        wp_register_block_metadata_collection( __DIR__ . '/build', __DIR__ . '/build/blocks-manifest.php' );
    }
    $manifest_data = require __DIR__ . '/build/blocks-manifest.php';
    foreach ( array_keys( $manifest_data ) as $block_type ) {
        register_block_type( __DIR__ . "/build/{$block_type}" );
    }
}

} add_action( 'init', 'create_block_toto_block_init' );

with two new php functions introduced to fill automatically the register_block_type function:

wp_register_block_types_from_metadata_collection is scheduled for Wordpress 6.8...

npm run build create the blocks-manifest.php into the build folder but npm start doesn't

I think it's a bug...

Reasons:
  • Blacklisted phrase (1): I have the same problem
  • Long answer (-1):
  • Has code block (-0.5):
  • Me too answer (2.5): I have the same problem
  • Low reputation (1):
Posted by: lionel-dev-fr

79519755

Date: 2025-03-19 09:42:26
Score: 1.5
Natty:
Report link

The first issue I can imagine is that woff2 does not work for that specific browser. Here is the link with the formats and supported browsers:

https://transfonter.org/formats#browser-support

When creating a face-font you can provide different formats as well. Example for different font formats:

@font-face {
    font-family: 'Proxima Nova';
    src: url('proximanova-regitalic-webfont.eot') format('embedded-opentype'),
         url('proximanova-regitalic-webfont.woff') format('woff'),
        url('proximanova-regitalic-webfont.woff2') format('woff2'),
         url('proximanova-regitalic-webfont.ttf') format('truetype'),
         url('proximanova-regitalic-webfont.svg') format('svg');
}

The other possible issue could be font-face compatibility, which you can find at this link https://developer.mozilla.org/en-US/docs/Web/CSS/@font-face#browser_compatibility.

Reasons:
  • Blacklisted phrase (1): Here is the link
  • Blacklisted phrase (1): this link
  • Long answer (-0.5):
  • Has code block (-0.5):
  • Low reputation (0.5):
Posted by: Jonid Bendo

79519753

Date: 2025-03-19 09:40:25
Score: 8.5 🚩
Natty:
Report link

Can you please share DAG definition and logs?

Reasons:
  • RegEx Blacklisted phrase (2.5): Can you please share
  • Low length (1.5):
  • No code block (0.5):
  • Ends in question mark (2):
  • Single line (0.5):
  • Starts with a question (0.5): Can you please share
  • Low reputation (1):
Posted by: Shiva Charan

79519744

Date: 2025-03-19 09:38:24
Score: 5.5
Natty:
Report link

The icon cannot be used as a JSX component, can you share the part of your code where you have used this 'icon'.

Reasons:
  • RegEx Blacklisted phrase (2.5): can you share
  • Low length (1):
  • No code block (0.5):
  • Single line (0.5):
  • Low reputation (1):
Posted by: Harsh Deep

79519741

Date: 2025-03-19 09:37:24
Score: 1.5
Natty:
Report link

I think you may be running bootstrap templates or recipies with windows line endings on linux hosts. If you are using an IDE it will have settings for this, if not you can change them easily in notepad++, or using the linux shell or powershell to search and replace.

If you are using a chef server make sure the ruby files have linux line endings on the server if running locally check the local directory on windows.

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

79519730

Date: 2025-03-19 09:33:23
Score: 1.5
Natty:
Report link

Here I am answering my own question.
After trying everything you and the internet suggested, I gave up on using virtualenv.

As Matt suggested in the comments, I downloaded miniconda and created an environment there. I was able to download all the packages and the code is running nicely.

Thanks for your help.

Reasons:
  • Blacklisted phrase (0.5): Thanks
  • Whitelisted phrase (-0.5): Thanks for your help
  • Low length (0.5):
  • Has code block (-0.5):
  • Self-answer (0.5):
  • Low reputation (1):
Posted by: Andrea Barone

79519726

Date: 2025-03-19 09:32:22
Score: 13
Natty: 9
Report link

Same problem here mate, did you find any solution to this issue?

Reasons:
  • Blacklisted phrase (1.5): any solution
  • RegEx Blacklisted phrase (3): did you find any solution to this
  • RegEx Blacklisted phrase (1): Same problem
  • RegEx Blacklisted phrase (2): any solution to this issue?
  • Low length (1.5):
  • No code block (0.5):
  • Ends in question mark (2):
  • Single line (0.5):
  • Low reputation (1):
Posted by: Galen Veselinov

79519720

Date: 2025-03-19 09:29:22
Score: 3
Natty:
Report link

llamacpp adds extra phrases due to tokenization quirks or hidden system prompts. To fix this, try disabling the prompt cache or adjusting sampling settings.

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

79519719

Date: 2025-03-19 09:29:22
Score: 0.5
Natty:
Report link

I was getting the same error and I solved it by puting Go at the end of my stored procedure after END

Reasons:
  • Whitelisted phrase (-2): I solved
  • Low length (1):
  • No code block (0.5):
  • Single line (0.5):
  • Low reputation (0.5):
Posted by: Developer-Felix

79519688

Date: 2025-03-19 09:19:20
Score: 3.5
Natty:
Report link

Issue resolved by @MattHaberland - the code had a separate function with the name winsorize and only 1 positional argument, hence the error message. The name of this function has since been changed and the code works.

Reasons:
  • Low length (0.5):
  • No code block (0.5):
  • User mentioned (1): @MattHaberland
  • Self-answer (0.5):
  • Single line (0.5):
  • Low reputation (0.5):
Posted by: SRJCoding

79519684

Date: 2025-03-19 09:18:19
Score: 2
Natty:
Report link

@user6845744's answer is the correct one:
"Naming a class like the annotation above is so bad and cause Spring to not recognize it".

This is wrong!

@RestController
public class RestController{ }

This is OK!

@RestController
public class BaseController{ }
Reasons:
  • Low length (0.5):
  • Has code block (-0.5):
  • User mentioned (1): @user6845744's
  • Low reputation (1):
Posted by: Lion's

79519683

Date: 2025-03-19 09:18:19
Score: 2.5
Natty:
Report link

For me, it was an extra space between flags. Very odd, they should have some basic parsing skills :)

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

79519677

Date: 2025-03-19 09:16:18
Score: 6 🚩
Natty: 5.5
Report link

I can easily create a foreign table based on a view, but that table is useless - can't be queried because of an errror: "unable to establish size of foreign table mytable". Is there a way to make it work?

Reasons:
  • Blacklisted phrase (1): Is there a way
  • Low length (0.5):
  • No code block (0.5):
  • Ends in question mark (2):
  • Unregistered user (0.5):
  • Single line (0.5):
  • Low reputation (1):
Posted by: Liudmilla

79519668

Date: 2025-03-19 09:13:17
Score: 1.5
Natty:
Report link

I found the below solution to work for my problem.

Latest = LASTNONBLANKVALUE('table'[column], SUM('table'[column]))
Reasons:
  • Low length (1):
  • Has code block (-0.5):
  • Self-answer (0.5):
  • Low reputation (0.5):
Posted by: MJobbson

79519662

Date: 2025-03-19 09:11:17
Score: 2
Natty:
Report link

so once you have the "N" part of colN value loaded to an int variable, build a while loop to add columns from N+1 maxing out at 50.

while @N <=50

begin

set @N=~N+1

do stuff to add column

end

Looks like you have most of the work done already, the while loop shouldn't be difficult

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

79519655

Date: 2025-03-19 09:08:16
Score: 1
Natty:
Report link

With the help of ChatGPT, after numerous attempts, I have managed to write the shortest code for self-elevating PowerShell permissions:

if (-not (net session)) { Start-Process powershell -WorkingDirectory $PSScriptRoot -ArgumentList "-File `"$PSCommandPath`"" -Verb RunAs; exit }
Reasons:
  • Low length (0.5):
  • Has code block (-0.5):
  • Low reputation (1):
Posted by: CongAn-王从安

79519652

Date: 2025-03-19 09:08:16
Score: 2
Natty:
Report link

This answer states that

The only limiting factor is that you cannot upload versions equal or smaller than a released version. No matter what you have in TestFlight.

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

79519647

Date: 2025-03-19 09:07:15
Score: 11.5 🚩
Natty: 5.5
Report link

Did you find a solution, I'm having the same question ?

Reasons:
  • RegEx Blacklisted phrase (3): Did you find a solution
  • Low length (1.5):
  • No code block (0.5):
  • Me too answer (2.5): I'm having the same question
  • Ends in question mark (2):
  • Single line (0.5):
  • Starts with a question (0.5): Did you find a solution
  • Low reputation (1):
Posted by: baha

79519640

Date: 2025-03-19 09:04:14
Score: 0.5
Natty:
Report link

Seems like you're using Kotlin DSL in your build.gradle file.

So most likely the right code would be

minifyEnabled true

Instead of

isMinifyEnabled = true

Keep in mind that other properties might need to be renames as well.

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

79519633

Date: 2025-03-19 09:01:13
Score: 1.5
Natty:
Report link

If you change directory to company_logos in the local repo before running the git-ls-files command, you will get the relative path to ignored files in that directory without needing to pipe to select-string. If you need the full path add --full-name https://git-scm.com/docs/git-ls-files.

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

79519632

Date: 2025-03-19 09:01:13
Score: 6.5
Natty: 7
Report link

On Meta Quest v74, the account dashboard doesn't list the accounts anymore. Does anyone know if there are ADB commands to get rid of the accounts prior to calling set-device-owner?

Reasons:
  • RegEx Blacklisted phrase (2): Does anyone know
  • Low length (0.5):
  • No code block (0.5):
  • Ends in question mark (2):
  • Single line (0.5):
  • Low reputation (1):
Posted by: MathPadawan

79519630

Date: 2025-03-19 08:59:12
Score: 2
Natty:
Report link

Be noted that according to this notes webrtcdsp is disabled in GStreamer 1.24 for some reasons. The way to add it is to build gst-plugins-bad from source previously installed libwebrtc-audio-processing-dev.

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

79519620

Date: 2025-03-19 08:56:12
Score: 1
Natty:
Report link

As of Git version 2.49 you can clone and checkout a specific commit in one go using the syntax:

git clone <url> --revision <commitID>

See Highlights from Git 2.49 in the GitHub Blog.

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

79519600

Date: 2025-03-19 08:49:10
Score: 2.5
Natty:
Report link

The distinction between a VM and an instance can be confusing, especially since many cloud providers use the terms interchangeably. From my experience, what really matters is the performance and flexibility of the virtual environment. I’ve worked with high-performance cloud VMs running in European data centers—if you're looking for reliable solutions, you can <a href="https://www.univirtual.ch/en/business-core/virtualization-telecommunication/virtual-machine">check this out</a>.

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

79519595

Date: 2025-03-19 08:47:09
Score: 1.5
Natty:
Report link

I've been getting the "Unable to watch for file changes" warning from VS Code for many months, and tried several times to diagnose and fix it. Thanks to this Pylance bug report I finally tracked it down.

I had the top folder of my local checkouts tree in my PYTHONPATH which has 4.3m files inside 3.1m folders. As Sabri Eyuboglu points out in their answer, VS Code recursively watches all folders listed in the PYTHONPATH. So VS Code was consuming my entire custom 2m limit on inotify max_user_watches. I measured this using the excellent inotify-info tool.

I actually need to import some modules from the top level of my checkouts tree, but to work around the problem I made a sub-folder with symlinks to the specific module folders that I want to be able to import, added the sub-folder to my PYTHONPATH and removed the top-level checkouts folder from my PYTHONPATH. Now my VS code watcher count is only 382!

It took me a while to track this down so I thought I would share my story here in case it helps others.

Reasons:
  • Blacklisted phrase (0.5): Thanks
  • RegEx Blacklisted phrase (1): I want
  • Long answer (-0.5):
  • Has code block (-0.5):
  • Low reputation (1):
Posted by: yellowtail

79519586

Date: 2025-03-19 08:43:08
Score: 2.5
Natty:
Report link

(a* b* )+a* =(a+b)*

using (a+b)*=(a * b)* a*

we can write (a * b)* a* + a*

which gives us ((a * b)* + epsilon)a*

which is equivalent to (a * b)* a* i.e (a+b)*

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

79519582

Date: 2025-03-19 08:41:08
Score: 0.5
Natty:
Report link

As per the session pricing documentation you will be billed for each autocomplete request seperately until 12 requests. After which it should go in the session usage plan.

  • First 12 Autocomplete (New) requests: You are billed for each Autocomplete (New) request, up to a maximum of 12 requests, using the SKU: Autocomplete Requests.

  • For Autocomplete (New) requests 13 and higher in the same session: You are billed at the SKU: Autocomplete Session Usage, meaning there is no charge for those requests.

Documentation: https://developers.google.com/maps/documentation/places/web-service/session-pricing

As per my understanding the session token handling is primarily meant to simplify billing into discrete groups. It might not reduce costs until you go searching more than 12 characters when searching with autocomplete.

Also after your autocomplete requests the session closes only when you make a Places Detail API call with the same session token. In which case the session token is marked as expired.

Now if you try to use the same session token without closing it for a different autocomplete request it will be considered as a separate request.

The documentation is not clear how google determines this but I think if any parameters other than input change it will be considered as a new session.

Be sure to pass a unique session token for each new session. Using the same token for more than one session will result in each request being billed individually.

Documentation: https://developers.google.com/maps/documentation/places/web-service/session-tokens

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

79519577

Date: 2025-03-19 08:38:07
Score: 1.5
Natty:
Report link

It looks like WordPress is treating your /login page as an API endpoint rather than a regular page.

WordPress has a built-in REST API, and /login might be conflicting with an existing endpoint

To test, try accessing another non-existent page (e.g, mysite.com/randompage). If it gives a standard 404 page, then /login might be reserved.

Rename the page to something like /user-login and see if that works.

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

79519574

Date: 2025-03-19 08:37:07
Score: 0.5
Natty:
Report link

if you using @JsonIgnore resultList can't make items.

    @ManyToMany(fetch = FetchType.EAGER)
    @JoinTable(
            name = "usuario_vivienda",
            joinColumns = @JoinColumn(name = "usuario_id"),
            inverseJoinColumns = @JoinColumn(name = "vivienda_id")
    )
    @JsonIgnore
    private Set<Vivienda> viviendas;

but this @JsonIgnore remove will cause recursive error. because you includes Viviendas has Usuarios list(set) and Usuarios has Viviendas list(set).

so if you want solve this; make another table and that table has two Class.

Reasons:
  • Long answer (-0.5):
  • Has code block (-0.5):
  • User mentioned (1): @JsonIgnore
  • User mentioned (0): @JsonIgnore
  • Low reputation (0.5):
Posted by: rodpold

79519571

Date: 2025-03-19 08:36:07
Score: 2
Natty:
Report link

I have found the answer, when creating snoop channel there is an option which audio you want to spy:
- in
- out
- none
- both ( I had this)

I have changed both -> in and it solved.

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

79519559

Date: 2025-03-19 08:32:05
Score: 0.5
Natty:
Report link

There have been changes in the latest .NET 9.0.3 (SDK 9.0.202) which is worth installing to see if your iOS issues are resolved.

For details check:

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

79519553

Date: 2025-03-19 08:27:05
Score: 1
Natty:
Report link

may be

    //remove the trailing white space 
    String medianRes = xmlString.replaceAll("\\s+$","");
    //remove other white space
    String res = medianRes.replaceAll("\\s+$"," ");

^ is meaning start with some char; $ is meaning end with some char;

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

79519550

Date: 2025-03-19 08:27:05
Score: 0.5
Natty:
Report link

Try:

=MINIFS($B$1:$B$6;$A$1:$A$6;"Expiring soon";$C$1:$C$6;"Valid")

enter image description here

Column B: Includes values.
Column A: Includes expire check.
Column C: Includes valid check.

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

79519547

Date: 2025-03-19 08:25:04
Score: 2.5
Natty:
Report link

I solved this issue refering to the documentation provided by apple
https://developer.apple.com/documentation/bundleresources/adding-a-privacy-manifest-to-your-app-or-third-party-sdk

Reasons:
  • Whitelisted phrase (-2): I solved
  • Probably link only (1):
  • Low length (1.5):
  • No code block (0.5):
  • Self-answer (0.5):
  • Low reputation (1):
Posted by: Psalm David

79519534

Date: 2025-03-19 08:22:03
Score: 0.5
Natty:
Report link

You could use cache mount in the Dockerfile link to Docker documentation

The cache is cumulative across builds, so you can read and write to the cache multiple times.

In the link there is this example for Python

RUN --mount=type=cache,target=/root/.cache/pip \
    pip install -r requirements.txt
Reasons:
  • Low length (0.5):
  • Has code block (-0.5):
  • Low reputation (0.5):
Posted by: Matteo Calisti

79519523

Date: 2025-03-19 08:15:02
Score: 2.5
Natty:
Report link

I contacted the AWS support team, and it turned out that someone with super admin rights needs to reindex it.

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

79519520

Date: 2025-03-19 08:14:01
Score: 6.5 🚩
Natty: 5.5
Report link

I have same problem on GCP.

message: Failed snapshot precheck for workload

I did everything what is here https://docs.kasten.io/latest/install/google/google.html#using-a-separate-gcp-service-account but VolumeSnapshotClass is not mentioned there. Why do i need VolumeSnapshotClass when I have gcp infra profile setup with service account all right compute.storageAdmin

Thank you

Reasons:
  • Blacklisted phrase (0.5): Thank you
  • Blacklisted phrase (0.5): i need
  • Blacklisted phrase (1): I have same problem
  • Low length (0.5):
  • No code block (0.5):
  • Me too answer (2.5): I have same problem
  • Low reputation (1):
Posted by: Martin Baláž