79516415

Date: 2025-03-18 06:00:28
Score: 2.5
Natty:
Report link

At example, i couldn`t do this because my email address was dont verified. (Most likely, but can it was into other...). After verified my email, this error was leaving. Also i`m did this https://devcoops.com/fix-load-metadata-for-docker/

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

79516410

Date: 2025-03-18 05:58:27
Score: 2.5
Natty:
Report link

You may send a redirect to the client (302) .

First creating a redirect website, then on redirect web site creating an http redirection. The redirection second and third parameters are dependent on the application.

enter image description here

enter image description here

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

79516405

Date: 2025-03-18 05:56:27
Score: 1
Natty:
Report link

I posted a solution on the other question but someone pointed me to this. So let me give an answer to the "how" part of the OP's question "Why and how do you define a 'package'?"

The simple answer is you can edit __package__ and add the folder containing the root package to sys.path. But how do you do this cleanly and not totally clutter up the top of the Python script?

Using a known top-level package

Suppose your code some_script.py resides somewhere within a directory structure which looks like:

project_folder
|-- subdir
    |-- ab
        |-- cd
            |-- some_script.py
            |-- script1.py
        |-- script2.py
    |-- script3.py
|-- script4.py
|-- other_folder
    |-- script5.py

And you need your package to be subdir.ab.cd without knowing ab or cd or even the number of nested levels (as long as none of the intermediate levels are called "subdir" as well). Then you could use the following:

import os
import sys

if not __package__:
    __package__, __root__ = (
        (lambda p, d:
         (".".join(p[-(n := p[::-1].index(d) + 1):]), os.sep.join(p[:-n])))(
             os.path.realpath(__file__).split(os.sep)[:-1], "subdir"))
    sys.path.insert(0, __root__)

from .script1 import *
from ..script2 import *
from ...script3 import *
from subdir.script3 import *
from script4 import *
from other_folder.script5 import *

Using a known number of sub-levels

Suppose your code some_script.py resides somewhere within a directory structure which looks like:

project_folder
|-- ab
    |-- cd
        |-- some_script.py
        |-- script1.py
    |-- script2.py
|-- script3.py
|-- other_folder
    |-- script4.py

And you need your package to be ab.cd without knowing ab or cd but the depth of the package is guaranteed to be 2. Then you could use the following:

import os
import sys

if not __package__:
    __package__, __root__ = (  #
        (lambda p, n: (".".join(p[-n:]), os.sep.join(p[:-n])))(
            os.path.realpath(__file__).split(os.sep)[:-1], 2))
    sys.path.insert(0, __root__)

from .script1 import *
from ..script2 import *
from script3 import *
from other_folder.script4 import *

Relative imports and absolute imports all work

With the sys.path including the project folder, you also of course do any absolute imports from there. With __package__ correctly computed, one can now do relative imports as well. A relative import of .other_script will look for other_script.py in the same folder as some_script.py. It is important to have one additional level in the package hierarchy as compared to the highest ancestor reached by the relative path, because all the packages traversed by the ".."/"..."/etc will need to be a Python package with a proper name.

Reasons:
  • Blacklisted phrase (1): how do you
  • Long answer (-1):
  • Has code block (-0.5):
  • Contains question mark (0.5):
  • Low reputation (1):
Posted by: LastDuckStanding

79516396

Date: 2025-03-18 05:55:26
Score: 0.5
Natty:
Report link

This is working for me

geoserver:
    image: kartoza/geoserver:2.26.1
    container_name: geoserver
    environment:
      DB_BACKEND: POSTGRES
      HOST: postgis
      POSTGRES_PORT: 5432
      POSTGRES_DB: geoserver_backend
      POSTGRES_USER: postgres
      POSTGRES_PASS: root
      SSL_MODE: allow
      POSTGRES_SCHEMA: public
      DISK_QUOTA_SIZE: 5
      COMMUNITY_EXTENSIONS: jdbcconfig-plugin,jdbcstore-plugin
      GEOSERVER_ADMIN_PASSWORD: geoserver
      GEOSERVER_ADMIN_USER: admin
      SAMPLE_DATA: TRUE
      USE_DEFAULT_CREDENTIALS: TRUE
    volumes:
      - geoserver_data:/opt/geoserver/data_dir
      - ./web-conf.xml:/usr/local/tomcat/conf/web.xml
      - ./web-inner.xml:/usr/local/tomcat/webapps/geoserver/WEB-INF/web.xml
    ports:
      - "8080:8080"

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

79516393

Date: 2025-03-18 05:54:24
Score: 7.5 🚩
Natty: 6.5
Report link

got any solution for this? want to run without headless in AWS ubuntu's instance

Reasons:
  • Blacklisted phrase (1.5): any solution
  • RegEx Blacklisted phrase (2): any solution for this?
  • Low length (1.5):
  • No code block (0.5):
  • Contains question mark (0.5):
  • Single line (0.5):
  • Low reputation (1):
Posted by: Divyanshu Upadhyay

79516388

Date: 2025-03-18 05:51:23
Score: 1
Natty:
Report link

From reading the document Set properties based on configurations, i think there are two types of properties both for solution and projects.

e.g

enter image description here

I have the same issue with the Base output path: all the options are greyed. Looks like Base output path is classified as common properties. However, it will automatically generated Debug or Release folder in output folder(MyOutput) if i switch configuration.

enter image description here

Besides, i would suggest you can also report this issue at Visual Studio Forum to double confirm that if all the options are greyed out is by design. That will allow you to directly interact with the appropriate product group, and make it more convenient for the product group to collect and categorize your issue.

Reasons:
  • Blacklisted phrase (1): I have the same issue
  • Long answer (-1):
  • Has code block (-0.5):
  • Me too answer (2.5): I have the same issue
  • High reputation (-1):
Posted by: Dou Xu-MSFT

79516385

Date: 2025-03-18 05:48:23
Score: 0.5
Natty:
Report link

I have also been troubled by this problem recently, I need to process the output of the neural network, so I need to call a function written in pure numpy to calculate the loss after the output is processed. When using tf. py_function in tensorflow, I found that for functions not operated by tf, although py_function can get the calculation result, this result cannot be used to save gradient for backpropagation.

tf.py_function(func=external_func, inp=[input_external_func], Tout=tf.float32)

There should be no solution to this problem at present. The external functions I need to call are complex FEM simulation libraries that I can't implement from scratch with tensorflow or pytorch.

reference resourse:

How to use a numpy-based external library function within a Tensorflow 2/keras custom layer?

https://github.com/tensorflow/tensorflow/issues/32964

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

79516382

Date: 2025-03-18 05:44:22
Score: 0.5
Natty:
Report link

Add this styling, adjusting the max-height to your desired height

.ui-front.ui-autocomplete {
  overflow-y: auto;
  max-height: 250px;
}
Reasons:
  • Low length (1):
  • Has code block (-0.5):
Posted by: Barbarossa

79516377

Date: 2025-03-18 05:38:21
Score: 3
Natty:
Report link

Maybe just look at this wiki:https://en.wikipedia.org/wiki/Plural

...

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

79516360

Date: 2025-03-18 05:22:18
Score: 4
Natty:
Report link

I guess this is what you should do.

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

79516358

Date: 2025-03-18 05:21:17
Score: 0.5
Natty:
Report link

When you reach the end of a source line in the DBD you must put a comma after the last operand and a C in column 72.

Here's part of a DBD for example:

       DBD     NAME=BSEP0C,ACCESS=(HIDAM,OSAM),                        C
               REMARKS='RBA PROJECT GROUP 4 -- ADD SEQNUM UNIQUE KEYS TC
               O SSE014 AND SSE147 SEGMENTS.  ADD 8-BYTES MORE FILLER.'
***********************************************************************
*        DATASET GROUP NUMBER 1                                       * 
*********************************************************************** 
DSG001 DATASET DD1=DSEP00C,SIZE=(8192),SCAN=255,FRSPC=(6,30)            
*********************************************************************** 
*        SEGMENT NUMBER 1                                             * 
*********************************************************************** 
       SEGM    NAME=SSE001,PARENT=0,BYTES=129,RULES=(PPP,LAST),        C
               PTR=(TWINBWD,,,CTR,),COMPRTN=(HDCXITSE,DATA,INIT)        
       FIELD   NAME=(SSE001KY,SEQ,U),START=1,BYTES=9,TYPE=C             
       FIELD   NAME=(/SX006),START=1,BYTES=4                            
       FIELD   NAME=(SECSN),START=112,BYTES=10,TYPE=C                   
       FIELD   NAME=(TRKGSTAT),START=123,BYTES=1,TYPE=C                 
       LCHILD  NAME=(SSEHIX,BSEI0C),PTR=INDX,RULES=LAST                 
       LCHILD  NAME=(SSESEA),PTR=NONE,PAIR=SSESEB,RULES=LAST            
       LCHILD  NAME=(SGESEB,BGEP0C),PTR=NONE,PAIR=SSEGEB,RULES=LAST     

Only the DBD and SEGM lines were long enough to continue with C in 72.  
Reasons:
  • Long answer (-1):
  • Has code block (-0.5):
  • Unregistered user (0.5):
  • Starts with a question (0.5): When you
  • Low reputation (1):
Posted by: Ben Richardson

79516357

Date: 2025-03-18 05:20:17
Score: 3.5
Natty:
Report link

Here is a small github repository, I hope you will figure it out, if there is something unclear, then write

https://github.com/Zakarayaev/CustomTypeOfPageRoutingInCommunityToolkitInAvaloniaUI

Reasons:
  • Probably link only (1):
  • Low length (1):
  • No code block (0.5):
  • Low reputation (1):
Posted by: Ali-Muhammad Zakaryaev

79516355

Date: 2025-03-18 05:19:17
Score: 3
Natty:
Report link

This was in the comments section, but I'll post it here as well.
Thank you @Suppose!

This was achieved by add style flex:1.

<View style={{ flex:1 }}>
  <View>
    <Text>a</Text>
    (...5lines)
  </View>
  <ScrollView>
    <Text>1</Text>
    <Text>2</Text>
    (...70lines)    
  </ScrollView>
</View>
Reasons:
  • Blacklisted phrase (0.5): Thank you
  • Low length (0.5):
  • Has code block (-0.5):
  • User mentioned (1): @Suppose
  • Self-answer (0.5):
  • Low reputation (1):
Posted by: user29964711

79516349

Date: 2025-03-18 05:15:16
Score: 3
Natty:
Report link

enter image description here: image for reference

For me this sequence solved the issue. In my case the issue was due to thin binary and the frb crashlytics scripts. Moved crashlytics script at the end and thin binary just above it.

Reasons:
  • Blacklisted phrase (1): enter image description here
  • Low length (0.5):
  • No code block (0.5):
  • Low reputation (1):
Posted by: kaushal kumar

79516344

Date: 2025-03-18 05:10:15
Score: 3
Natty:
Report link

I'm planning on using the same library for another one of my STM32 projects. If you are using the following library from Nefastor: https://nefastor.com/microcontrollers/stm32/libraries/stm-shell/

The author states that they will answer questions, have you tried leaving them a comment?

Reasons:
  • Whitelisted phrase (-1): have you tried
  • Low length (0.5):
  • No code block (0.5):
  • Ends in question mark (2):
  • Low reputation (1):
Posted by: korandukar

79516330

Date: 2025-03-18 05:00:14
Score: 0.5
Natty:
Report link
from urllib import parse
parse.quote("the password which contains special characters")
Reasons:
  • Low length (1.5):
  • Has code block (-0.5):
  • Self-answer (0.5):
  • High reputation (-1):
Posted by: khteh

79516329

Date: 2025-03-18 04:58:13
Score: 4
Natty: 4
Report link

Hello I have created a blog to solve that

Create a custom MVC Dropdownlist with custom option attributes and retain the validation.
https://jfvaleroso.medium.com/create-a-custom-mvc-dropdownlist-with-custom-option-attributes-and-retain-the-validation-4da8ee6e1255

Reasons:
  • Blacklisted phrase (0.5): medium.com
  • Probably link only (1):
  • Low length (1):
  • No code block (0.5):
  • Low reputation (1):
Posted by: Jeffrey

79516315

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

For me, I upgraded my gradle tools to 8, and adding the following configuration in modules's build.gradle resolved this issue(inside 'android' block):

buildFeatures {
        aidl = true
}
Reasons:
  • Low length (0.5):
  • Has code block (-0.5):
  • Low reputation (0.5):
Posted by: Yuan

79516313

Date: 2025-03-18 04:43:10
Score: 1
Natty:
Report link
TextField("Placeholder", text: $text)
    .textFieldStyle(.roundedBorder)
    .multilineTextAlignment(.center)
Reasons:
  • Low length (1):
  • Has code block (-0.5):
  • Low reputation (0.5):
Posted by: Alexander Govorukhin

79516309

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

This is an old thread, but I'm posting a solution in case it's helpful for others who stumble upon this weird error. I'm using VS2022 and began seeing this just on OPENING Visual Studio -- well before opening any solution. I eventually found that my issue was a corrupt extension (@#%$#%@!). For me, it was my "AWS Toolkit with Amazon Q" extension which needed to be uninstalled/reinstalled. But for any extension issues, just open Visual Studio in safe mode ("devenv /SafeMode") and view your Extensions (Installed ones). Then remove any potential culprits to see if they were the issue (ie. remove one, close/reopen VS normally to see if it helped, repeat as needed). Anyways, just posting this in case it helps a fellow developer in the future. :)

Reasons:
  • Blacklisted phrase (1.5): any solution
  • Long answer (-0.5):
  • No code block (0.5):
  • Single line (0.5):
  • Low reputation (0.5):
Posted by: Kurt S

79516306

Date: 2025-03-18 04:38:09
Score: 0.5
Natty:
Report link

this worked great for me to disable the ssl check temporarily on Windows 10:

import ssl

orig_ssl_context = ssl._create_default_https_context

ssl._create_default_https_context = ssl._create_unverified_context

To re-enable the ssl check:

ssl._create_default_https_context = orig_ssl_context

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

79516305

Date: 2025-03-18 04:37:09
Score: 0.5
Natty:
Report link

this worked great for me to disable the ssl check temporarily on Windows 10:

import ssl

orig_ssl_context = ssl._create_default_https_context

ssl._create_default_https_context = ssl._create_unverified_context

To re-enable the ssl check:

ssl._create_default_https_context = orig_ssl_context

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

79516304

Date: 2025-03-18 04:36:08
Score: 2.5
Natty:
Report link

Notepad++ version > 8.1. There are tow ways to open document list panel.

  1. Under View Menu -> Document List

  2. enter image description here

Reasons:
  • Probably link only (1):
  • Low length (1):
  • No code block (0.5):
Posted by: DigviJay Patil

79516303

Date: 2025-03-18 04:36:08
Score: 0.5
Natty:
Report link

this worked great for me to disable the ssl check temporarily on Windows 10:

import ssl

orig_ssl_context = ssl._create_default_https_context

ssl._create_default_https_context = ssl._create_unverified_context

To re-enable the ssl check:

ssl._create_default_https_context = orig_ssl_context

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

79516302

Date: 2025-03-18 04:35:08
Score: 0.5
Natty:
Report link

I have got the answer by doing this,

First I inserted rank of my status change by ID

 If([Status Change Date] is not NULL,Rank(RowId(),"asc",[ID]))```

then I inserted onw more calculated column to get the last status change date using rank

Last([Status Change Date]) OVER (Intersect([task_id],Previous([Rank of Status Change Date])))

This gave me the Last Status Change Date

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

79516301

Date: 2025-03-18 04:35:08
Score: 1
Natty:
Report link

This is how I used it! It successfully solved this error!

const i18n = createI18n({
  locale: local, 
  legacy: false,
  globalInjection: true,
  messages: messages
})


//Use it i18n.global.locale instead of useI18n().locale
const locale = i18n.global.locale
locale.value = language.lang
Reasons:
  • Low length (0.5):
  • Has code block (-0.5):
  • Low reputation (1):
Posted by: hlin A

79516298

Date: 2025-03-18 04:33:07
Score: 0.5
Natty:
Report link

this worked great for me to disable the ssl check temporarily on Windows 10:

import ssl

orig_ssl_context = ssl._create_default_https_context

ssl._create_default_https_context = ssl._create_unverified_context

To re-enable the ssl check:

ssl._create_default_https_context = orig_ssl_context

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

79516293

Date: 2025-03-18 04:30:07
Score: 1.5
Natty:
Report link
  1. pink
  2. Yellow
  3. Green
  4. Red
  5. White
  6. Black
  7. Orange

My first page


Hello World Hello world

Hello world Hello world

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

79516292

Date: 2025-03-18 04:30:07
Score: 0.5
Natty:
Report link

this worked great to disable the ssl check temporarily

import ssl

orig_ssl_context = ssl._create_default_https_context

ssl._create_default_https_context = ssl._create_unverified_context

To re-enable the ssl check:

ssl._create_default_https_context = orig_ssl_context

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

79516273

Date: 2025-03-18 04:15:04
Score: 1.5
Natty:
Report link
Reasons:
  • Low length (1):
  • Has code block (-0.5):
  • Single line (0.5):
  • Low reputation (0.5):
Posted by: Nirav Rangapariya

79516266

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

Yes, you’re right. Without -d, flutter drive gets ready for all platforms, including the web, so it downloads the Web SDK.

Add -d <android-device-id> (like -d emulator-5554), and it only targets Android, skipping the web download. This works every time and is still the way to go in 2025.

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

79516262

Date: 2025-03-18 04:06:03
Score: 2
Natty:
Report link

UrlFetchApp.fetch does not have a body property, instead I needed to use payload

body: JSON.stringify(data)

modified to

payload: JSON.stringify(data)

resolved the issue.

Reasons:
  • Blacklisted phrase (0.5): I need
  • Low length (1):
  • Has code block (-0.5):
  • Self-answer (0.5):
  • Low reputation (0.5):
Posted by: Sam WB

79516261

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

Try this. I hope this might help. For more: Typeorm Exclusion Feature

@Entity()
@Exclusion(`USING gist ("room" WITH =, tsrange("from", "to") WITH &&)`)
export class RoomBooking {

    @Column()
    room: string;

    @Column()
    from: Date;

    @Column()
    to: Date;
}
Reasons:
  • Whitelisted phrase (-1): Try this
  • Probably link only (1):
  • Low length (0.5):
  • Has code block (-0.5):
  • Low reputation (0.5):
Posted by: Kazi Akib Javed

79516249

Date: 2025-03-18 03:57:01
Score: 0.5
Natty:
Report link

You say:

The db_one connection points to the default public schema, and the db_two points to the custom_schema.

But that's not true. In your code you have the same database name:

test_db

and the same schema_search_path (that one of them has an additional search path is irrelevant):

public
Reasons:
  • Low length (0.5):
  • Has code block (-0.5):
  • Low reputation (0.5):
Posted by: Peter H. Boling

79516246

Date: 2025-03-18 03:56:00
Score: 0.5
Natty:
Report link

This was my solution.

In order to accommodate for the utf-8 format spec, each byte should be left padded up to 8 bits with 0.

The accepted answer's `format!("0{:b}")` does not take into consideration for characters above number 128 which did not work for me since I wasn't just working with ASCII letters.

fn main() {
    let chars = "日本語 ENG €";
    let mut chars_in_binary = String::from("");

    for char in chars.as_bytes() {
        chars_in_binary += &format!("{char:0>8b} ");
    }

    println!("The binary representation of the following utf8 string\n \"{chars}\"\nis\n {chars_in_binary}");
}       
Reasons:
  • Blacklisted phrase (1): did not work
  • Long answer (-0.5):
  • Has code block (-0.5):
  • Low reputation (0.5):
Posted by: tinnick

79516237

Date: 2025-03-18 03:51:59
Score: 1.5
Natty:
Report link

Try with:

Scaffold-Dbcontext "Server=DESKTOP-kd; Database=Gestion; Trusted_Connection=True;Encrypt=Optional;" Microsoft.EntityFrameworkCore.SqlServer -OutputDir Models
Reasons:
  • Low length (1):
  • Has code block (-0.5):
  • Low reputation (1):
Posted by: Donovan Vazquez

79516227

Date: 2025-03-18 03:47:58
Score: 1
Natty:
Report link

I'm going to provide an answer to my own question, certainly found a way to workaround this issue for now, I will however not mark this as the best answer because I know this might not always be the ideal solution. (and because this answer might not include detailed information). However it can be used in this use case.

So the solution now is to go to cloudflare and edit both records and disable the proxy option.

After that visiting my domain loads my website correctly with https without any issues.

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

79516215

Date: 2025-03-18 03:38:57
Score: 3.5
Natty:
Report link

My school VPN blocked me too. Turn it off and then I can login

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

79516214

Date: 2025-03-18 03:38:57
Score: 2.5
Natty:
Report link

Congratulations! you've reached one of the most annoying bugs in Power BI.

You can read all about this in here: https://www.sqlbi.com/articles/why-power-bi-totals-might-seem-inaccurate/

Or here:

https://community.fabric.microsoft.com/t5/Desktop/Measure-Total-Incorrect/td-p/3013876

In my case, the "best fit" solution is to export to CSV to make sure the numbers are correct, but there are other options. Sorry about that :(

Reasons:
  • Blacklisted phrase (1): :(
  • Whitelisted phrase (-1): solution is
  • Probably link only (1):
  • Low length (0.5):
  • No code block (0.5):
  • Low reputation (0.5):
Posted by: Hila DG

79516212

Date: 2025-03-18 03:35:56
Score: 3
Natty:
Report link

use css -webkit-text-security: disc to replace type=password, see this: https://developer.mozilla.org/en-US/docs/Web/CSS/-webkit-text-security

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

79516207

Date: 2025-03-18 03:33:56
Score: 3
Natty:
Report link

Try checking your-site-name/assets/css/printview.css on your browser whether it appears or not. If it doesn't appear, it's likely that the CSS for your PDF can't be read properly

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

79516204

Date: 2025-03-18 03:30:55
Score: 0.5
Natty:
Report link

Maybe you can use type=text with this css -webkit-text-security: disc, to replace type=password.

see this: https://developer.mozilla.org/en-US/docs/Web/CSS/-webkit-text-security

Reasons:
  • Whitelisted phrase (-1.5): you can use
  • Probably link only (1):
  • Low length (1):
  • Has code block (-0.5):
  • Low reputation (0.5):
Posted by: oxygen

79516193

Date: 2025-03-18 03:23:54
Score: 2.5
Natty:
Report link

The "ambiguous call" error can be caused by having 2 copies of the code referenced in 2 different .cs files. Find any .cs files with the same code (backup copies for instance) move them to an outside folder or delete them if not needed. Generally look for other .cs files with the same code.

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

79516187

Date: 2025-03-18 03:19:52
Score: 4
Natty: 4
Report link

I have created a blog about this.

Create a custom MVC Dropdownlist with custom option attributes and retain the validation.
https://jfvaleroso.medium.com/create-a-custom-mvc-dropdownlist-with-custom-option-attributes-and-retain-the-validation-4da8ee6e1255

Reasons:
  • Blacklisted phrase (0.5): medium.com
  • Probably link only (1):
  • Low length (1):
  • No code block (0.5):
  • Low reputation (1):
Posted by: Jeffrey

79516185

Date: 2025-03-18 03:15:52
Score: 10
Natty: 9
Report link

can you tell me how to make the result not only output, but also written to the newtable?

Reasons:
  • Blacklisted phrase (1.5): tell me how to
  • RegEx Blacklisted phrase (2.5): can you tell me how
  • 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
  • Low reputation (1):
Posted by: Станислав Воробьев

79516172

Date: 2025-03-18 03:08:50
Score: 1.5
Natty:
Report link

I modify style css class, it work for me on PrimeNg v17

.p-accordion .p-accordion-tab .p-accordion-toggle-icon {
    order: 1;
    margin-left: auto;
}
Reasons:
  • Low length (1):
  • Has code block (-0.5):
  • Low reputation (1):
Posted by: Henry Walker

79516156

Date: 2025-03-18 02:55:48
Score: 3.5
Natty:
Report link

这些问题都没有办法解决。我都都尝试过了,还是显示

/root/anaconda3/envs/test/lib/python3.8/site-packages/torch/cuda/__init__.py:83: UserWarning: CUDA initialization: CUDA unknown error - this may be due to an incorrectly set up environment, e.g. changing env variable CUDA_VISIBLE_DEVICES after program start. Setting the available devices to be zero. (Triggered internally at  ../c10/cuda/CUDAFunctions.cpp:109.)
  return torch._C._cuda_getDeviceCount() > 0
Reasons:
  • Has code block (-0.5):
  • No latin characters (3):
  • Low reputation (1):
Posted by: Ginebra Casilles

79516151

Date: 2025-03-18 02:47:46
Score: 2
Natty:
Report link

RAGatouille persists indices on disk in compressed format, and a very viable production deployment is to simply integrate the index you need into your project and query it directly. Don't just take our word for it, this is what Spotify does in production with their own vector search framework, serving dozens of millions of users.

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

79516146

Date: 2025-03-18 02:44:46
Score: 1.5
Natty:
Report link

Here's what I did.

  1. Go to wsl, setup your project and create the virtual environment file "env"

  2. Inside wsl, use command `code .` to open vscode from wsl (no need to activate the virtual environment yet)

  3. Once your vscode window showed up, change the path of Python Interpreter to the one listed under the virtual environment file "env" Screenshot of the Python Intepreter setting

  4. Now press the debug button vscode, it should be able to load the virtual environment

  5. Here's my launch.json file Screenshot of launch.json

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

79516136

Date: 2025-03-18 02:31:44
Score: 1.5
Natty:
Report link

/* Q12. Find the vendor Name having the vendor_nos 305 , 380 , 391

Select Vendor_name,Vendor_nos

from ITEM_TABLE

where Vendor_nos IN (305,380,391)

/* OUTPUT

Vendor_name Vendor_nos

Mhw Ltd 305

Anchor Distilling(preiss Imports) 391

Mhw Ltd 305

Phillips Beverage Company 380

*/

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

79516133

Date: 2025-03-18 02:30:43
Score: 5.5
Natty: 7
Report link

can u speak english? what does that even mean? whats a jwt token and had to minimizing data you used in your "encoded token" what tokens are u even talking about and where do you even go for this stuff?

Reasons:
  • Low length (0.5):
  • No code block (0.5):
  • Ends in question mark (2):
  • Unregistered user (0.5):
  • Single line (0.5):
  • Starts with a question (0.5): can u
  • Low reputation (1):
Posted by: user29985565

79516131

Date: 2025-03-18 02:28:42
Score: 1.5
Natty:
Report link

Windows users: Install the latest version of VSCode and then install the latest version of the Jupyter extension. They are locked together.

To find out the latest version of VSCode compatible with the Jupyter extension, follow these steps:

1. Download the Jupyter extension manually

2. Unzip it as zip

3. In extensions/package.json check "engines"."vscode" to find out the compatible VSCode version

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

79516125

Date: 2025-03-18 02:23:41
Score: 3.5
Natty:
Report link

npm install -D tailwindcss@3 postcss autoprefixer

Reasons:
  • Low length (1.5):
  • No code block (0.5):
  • Single line (0.5):
  • Low reputation (1):
Posted by: Maxime Vacher-Materno

79516118

Date: 2025-03-18 02:18:40
Score: 0.5
Natty:
Report link

I had the same issue. Turns out Vite was picking up changes to the Apache log files. So the solution was to move them out of the umbrella of the application. I know I could have set them up as external, but now I have all my projects dump their logs into a central dir, which makes life a little easier. It took a while to discover this, in the end I set up a script:

"debug": "vite --debug hmr"

in package.json which ultimately gave the game away.

Reasons:
  • Whitelisted phrase (-1): I had the same
  • No code block (0.5):
  • Low reputation (1):
Posted by: Mac

79516111

Date: 2025-03-18 02:13:39
Score: 2
Natty:
Report link

The name of python script file should not be azure.

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

79516110

Date: 2025-03-18 02:09:38
Score: 1.5
Natty:
Report link

you could try using degrees to align the gradient

[mask-image:linear-gradient(270deg,transparent_0%,#000_20%)]
Reasons:
  • Low length (1):
  • Has code block (-0.5):
  • Low reputation (1):
Posted by: Tani

79516109

Date: 2025-03-18 02:09:38
Score: 3.5
Natty:
Report link

Using {-# LANGUAGE ExtendedDefaultRules #-} solves the problem and the first example works with it. Thank you @snak for the tip!!

Reasons:
  • Blacklisted phrase (0.5): Thank you
  • Low length (1):
  • Has code block (-0.5):
  • User mentioned (1): @snak
  • Self-answer (0.5):
  • Single line (0.5):
  • Low reputation (0.5):
Posted by: Darren Smith

79516102

Date: 2025-03-18 02:00:37
Score: 3.5
Natty:
Report link

How about this?

filtered = a[(a['name'] == 'Fido') & (a['weight'] < 30)]  
oldestFidoUnder30 = filtered[np.argmax(filtered['age'])]
Reasons:
  • Low length (1):
  • Has code block (-0.5):
  • Ends in question mark (2):
  • Starts with a question (0.5): How
  • Low reputation (0.5):
Posted by: konsfik

79516101

Date: 2025-03-18 02:00:37
Score: 2.5
Natty:
Report link

Maybe you can try using https://github.com/pymupdf/PyMuPDF to iterate through all annotations, obtain the deleted text based on the deletion marks, and find the associated pop-up comments.

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

79516093

Date: 2025-03-18 01:54:35
Score: 1.5
Natty:
Report link

Add either

:set hlsearch
or
:set hls

to the ~/.vimrc file.

Some vim implementations take one but not the other.

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

79516078

Date: 2025-03-18 01:35:32
Score: 0.5
Natty:
Report link

Problem looks like an http error, network interruptions, maybe you're using a proxy, vpn, or similar?

Also, are you using the latest version of git?

if the problem persists, you could try to increase the number of bytes Git will buffer

git config --global http.bufferSize 524288000

and increase limits

git config --global http.lowSpeedLimit 1000
git config --global http.lowSpeedTime 600
Reasons:
  • Has code block (-0.5):
  • Contains question mark (0.5):
  • Low reputation (0.5):
Posted by: Mohamed Auf

79516076

Date: 2025-03-18 01:32:32
Score: 3.5
Natty:
Report link

The answer from @User and @Dawoodjee is correct, and I recommend it.

However, as explained in the updated docs, once you've connected to a folder initially, it should appear in a drop-down menu on the SSH extension sidebar as shown here. This allows for quicker access on future connections to the same remote folder.

Image retrieved from: https://github.com/microsoft/vscode-docs/blob/56c846422e796b0f50c655a67cfdd8fe68590d47/docs/remote/images/ssh/ssh-explorer-open-folder.png

Reasons:
  • Probably link only (1):
  • No code block (0.5):
  • User mentioned (1): @User
  • User mentioned (0): @Dawoodjee
  • Low reputation (1):
Posted by: Eärendil

79516075

Date: 2025-03-18 01:32:32
Score: 2.5
Natty:
Report link

I was able to identify that the problem was due to the graphics engine that Flutter has been using for about 2 or 3 versions (Impeller). This has a Vulkan and OpenGL compatibility bug. I was even able to find an issue from the Flutter development team, reporting the error (see https://github.com/flutter/flutter/issues/163269 ). Therefore, we can temporarily, until the bug is resolved, get by with the command:

flutter run --no-enable-impeller

which I found in this https://stackoverflow.com/questions/76970158/flutter-impeller-in-android-emulator.

Thanks to @MorrisonChang for the contribution.

Apparently It was recently solved on Flutter 3.29.0

Reasons:
  • Blacklisted phrase (0.5): Thanks
  • Blacklisted phrase (1): stackoverflow
  • Long answer (-0.5):
  • Has code block (-0.5):
  • User mentioned (1): @MorrisonChang
  • Self-answer (0.5):
  • Low reputation (0.5):
Posted by: Frank Ayra

79516073

Date: 2025-03-18 01:31:31
Score: 3
Natty:
Report link

Create a custom control: a panel with four buttons properly arranged. Add appropriate member functions to set button information. Add these pigpen controls to a flow layout panel.

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

79516069

Date: 2025-03-18 01:27:31
Score: 3
Natty:
Report link

This may not solve your problem directly however I've encountered a similar problem with react-markdown package. My app worked fine on my Windows PC, in a dev container with Ubuntu and Azure App Service on Linux, however when I've migrated the app to a different host which uses DirectAdmin with CloudLinux Node.js Selector pages which had a reference to react-markdown would produce a 500 error and the same "Error: open EEXIST" error in the log.

I think it might have something to do with the dependencies of both of the react-markdown and next-mdx-remote packages, currently I am looking for an alternative to react-markdown which will hopefully work on my server setup.

Reasons:
  • Blacklisted phrase (2): I am looking for
  • Long answer (-0.5):
  • No code block (0.5):
  • Low reputation (1):
Posted by: user29985416

79516067

Date: 2025-03-18 01:26:30
Score: 4.5
Natty: 4.5
Report link

https://github.com/marketplace/actions/export-workflow-run-logs can upload workflow logs to Amazon S3, Azure Blob Storage, and Google Cloud Storage.

Reasons:
  • Probably link only (1):
  • Low length (1.5):
  • No code block (0.5):
  • Single line (0.5):
  • Starts with a question (0.5): can u
  • Low reputation (0.5):
Posted by: John Vandenberg

79516062

Date: 2025-03-18 01:20:29
Score: 1
Natty:
Report link

i just had to install @tailwindcss/postcss as dependency and updated my postcss.config.js to

module.exports = {
plugins: {
    "@tailwindcss/postcss": {},
    autoprefixer: {},
},

}

and the error disappeared

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

79516060

Date: 2025-03-18 01:16:28
Score: 3
Natty:
Report link

MH_initialize(); is error do you know why

#include  <windows.h>
#include "pch.h"
#include "Minhook.h"
#include <cstdio>

uintptr_t base = (uintptr_t)GetModuleHandle(NULL);
uintptr_t GameAssembly = (uintptr_t)GetModuleHandle("GameAssembly.dll");

void CreateConsole()
{
    AllocConsole();
    FILE* f;
    freopen_s(&f, "CONOUT$", "w", stdout);
}

void init()
{
    MH_initialize();<- this one is errored  
    CreateConsole();
    printf("Hello");
}

void main()
{
    init(); 
}



BOOL APIENTRY DllMain(HMODULE hModule, DWORD ul_reason_for_call, LPVOID lpReserved)
{
    switch (ul_reason_for_call)
    {
    case DLL_PROCESS_ATTACH:
        //Create a new thread 
        CreateThread(0, 0, (LPTHREAD_START_ROUTINE)main, 0, 0, 0);
    case DLL_THREAD_ATTACH:
    case DLL_THREAD_DETACH:
    case DLL_PROCESS_DETACH:
        break;
    }
    return TRUE;
}
Reasons:
  • RegEx Blacklisted phrase (2.5): do you know why
  • Long answer (-0.5):
  • Has code block (-0.5):
  • Unregistered user (0.5):
  • Low reputation (1):
Posted by: fwafa

79516058

Date: 2025-03-18 01:15:26
Score: 6.5 🚩
Natty:
Report link

S3A filesystem does not natively support atomic file creation, which is required by Hudi's locking mechanism.

Did you find anything in their documentation after posting your question?

https://hudi.apache.org/docs/

Reasons:
  • RegEx Blacklisted phrase (3): Did you find
  • Low length (0.5):
  • No code block (0.5):
  • Ends in question mark (2):
  • Low reputation (0.5):
Posted by: swawge

79516036

Date: 2025-03-18 00:59:23
Score: 1.5
Natty:
Report link

Go and change countries & regions to all countries.

currently you are not selecting any country:

enter image description here

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

79516035

Date: 2025-03-18 00:57:22
Score: 2.5
Natty:
Report link

This seemed to have been a bug in plotly. The newer versions fix this bug. My original attempt now works as expected. Here is how the output looks with plotly-4.10.4 -

enter image description here

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

79516034

Date: 2025-03-18 00:56:22
Score: 1
Natty:
Report link

Resolved the issue by replacing Autowired bean creation of VaultTemplate with manually creating a new instance. of VaultTemplate.

VaultTemplate vaultTemplate = new VaultTemplate(VaultEndpoint vaultEndpoint, ClientAuthentication clientAuthentication);
Reasons:
  • Low length (0.5):
  • Has code block (-0.5):
  • Self-answer (0.5):
  • Low reputation (0.5):
Posted by: user1462617

79516032

Date: 2025-03-18 00:55:22
Score: 4
Natty: 4.5
Report link

math-expression-evaluator is popular according to git stars.

https://www.npmjs.com/package/math-expression-evaluator

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

79516029

Date: 2025-03-18 00:51:21
Score: 1
Natty:
Report link

recursive_simple_cycles from NetworkX can be used:

import networkx as nx

list(nx.recursive_simple_cycles(nx.DiGraph(a)))
Reasons:
  • Low length (1):
  • Has code block (-0.5):
  • Low reputation (0.5):
Posted by: mikm

79516022

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

The archive failed is likely an XCode command line tools error.

You could try running the app locally without eas. Make sure that your phone and computer are on the same Wi-Fi network.

You can also follow this guide if you are trying to push out a production build.

Reasons:
  • Blacklisted phrase (1): this guide
  • Low length (0.5):
  • No code block (0.5):
  • Low reputation (0.5):
Posted by: th0rin0

79516018

Date: 2025-03-18 00:32:18
Score: 0.5
Natty:
Report link

It is not Possible easily.

but the alternative is to use the official Google Chrome android browser helper and make your own changes. this is an aar that you can modify.

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

79516017

Date: 2025-03-18 00:32:18
Score: 1
Natty:
Report link

Yolov8 has been a little broken since they started moving everything from keras_cv to keras_hub. I think they have been working on it. I have not been able to get sensible results in my own recent work with YOLOv8 keras. I am also having a problem with surplus boxes showing up when I validate, low map, and I think there may be some weird behavior with the data augmentation pipeline.

I think it would be awesome if the team published an updated example soon that works seamlessy with the new hub

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

79516014

Date: 2025-03-18 00:31:16
Score: 8 🚩
Natty: 4.5
Report link

Were you able to resolve this issue? I'm currently experiencing the same on a react-native upgrade.

Reasons:
  • RegEx Blacklisted phrase (1.5): resolve this issue?
  • RegEx Blacklisted phrase (3): Were you able
  • Low length (1):
  • No code block (0.5):
  • Contains question mark (0.5):
  • Single line (0.5):
  • Low reputation (1):
Posted by: cdanwards

79516010

Date: 2025-03-18 00:26:14
Score: 2
Natty:
Report link

This restriction can be removed from MySQL Workbench 8.0 in the following way. Edit the connection, on the Connection tab, go to the 'Advanced' sub-tab, and in the 'Others:' box add the line 'OPT_LOCAL_INFILE=1'.

Quoted from this link and big_water: https://bugs.mysql.com/bug.php?id=91872

This did work for me in MySQL workbench 8.0, but I felt that this answer was not specific enough. I struggled to find the connection tab.

From an opened connection, select the 'server' drop down menu, then select 'Management Access Settings...' near the bottom of the menu. This will bring you to the connection tab.

For additional information on the connections tab, see the manual here: https://dev.mysql.com/doc/workbench/en/wb-manage-server-connections.html

Reasons:
  • Blacklisted phrase (1): this link
  • Long answer (-0.5):
  • No code block (0.5):
  • Low reputation (1):
Posted by: druppin

79516008

Date: 2025-03-18 00:24:14
Score: 4
Natty:
Report link

Below is an example of a repo i used to add new Saudi Riyal symbol in my application

https://github.com/abdulrysrr/new-saudi-riyal-symbol

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

79516003

Date: 2025-03-18 00:18:12
Score: 1
Natty:
Report link

I suspected this problem too based on conflict resolution results, but after actually running tool from here:
py git-filter-repo --analyze
stats in the output file .git\filter-repo\analysis\blob-shas-and-paths.txt are something like this:

=== Files by sha and associated pathnames in reverse size ===
Format: sha, unpacked size, packed size, filename(s) object stored as
1    4fdc4b7d67     152745      33950     FluxFilter.json
2    0f3485f0f5     151344      16160     FluxFilter.json
3    addd4890d5     129822      13719     FluxFilter.json
4    369c158d9a     142178       9915     FluxFilter.json
     -----------------------------------------------------
17   1112b3b1e5     124947       4283     FluxFilter.json
18   1f24aa6fc3     116120       2147     FluxFilter.json
19   33082e1551     126083       1758     FluxFilter.json
     -----------------------------------------------------
20   a8b634d405     130377       1329     FluxFilter.json
21   9346666842     130426       1300     FluxFilter.json
22   e7895f6751     137863       1253     FluxFilter.json
     -----------------------------------------------------
26   6aa197cf49     115980        627     FluxFilter.json
27   8a6ba2124e     135864        589     FluxFilter.json
     -----------------------------------------------------
41   c27fad51a2     146322        191     FluxFilter.json
42   d6227db139     149838        189     FluxFilter.json
                              

When compressed file size should be around 30000. Which looks like sometimes git handles changes correctly and sometimes fails.

As suggestion attempt: possibly check with this tool if JSON to blame or some other file?

Reasons:
  • Long answer (-1):
  • Has code block (-0.5):
  • Ends in question mark (2):
  • Low reputation (0.5):
Posted by: halt9k

79516002

Date: 2025-03-18 00:16:12
Score: 1.5
Natty:
Report link

There are several possibilities:

  1. Your request URL seems to be a bit off: Your code makes a request to

xhttp.open("GET", "emotionDetector?textToAnalyze"+"="+textToAnalyze, true);

But this results in a malformed URL, instead try using

xhttp.open("GET", "emotionDetector?textToAnalyze=" + encodeURIComponent(textToAnalyze), true);

The use of encodeURIComponent makes sure any funny stuff in the text, such as special characters gets encoded properly.

  1. Your script is referenced as

src="../static/mywebscript.js"

This means your JavaScript file is expected to be in a static folder at the root level. Flask serves static files from a static/ directory inside your project folder. Try referencing it as

src="{{ url_for('static', filename='mywebscript.js') }}"

Good Luck =D

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

79515972

Date: 2025-03-17 23:45:06
Score: 5
Natty: 4.5
Report link

There's another solution more easy:

https://medium.com/@michalankiersztajn/sqldelight-kmp-kotlin-multiplatform-tutorial-e39ab460a348

Reasons:
  • Blacklisted phrase (0.5): medium.com
  • Probably link only (1):
  • Low length (2):
  • No code block (0.5):
  • Low reputation (1):
Posted by: Nay Rios

79515956

Date: 2025-03-17 23:27:03
Score: 3
Natty:
Report link

The error appears to be occurring because the view isn't checking if the user is authenticated before accessing its attributes. Django uses AnonymousUser to handle unauthenticated user sessions, and this model doesn't have a user_id field, which is causing the 500 error.

Check your view to see if you're ensuring the user is authenticated before attempting to access the user_id. Something like this might help:

if not request.user.is_authenticated:
    return JsonResponse({"error": "User not authenticated"}, status=401)

However, to help you better, could you share the code for your full view? Specifically, how you're getting the user and accessing their attributes.

Reasons:
  • RegEx Blacklisted phrase (2.5): could you share the code
  • Long answer (-0.5):
  • Has code block (-0.5):
  • Contains question mark (0.5):
  • Low reputation (1):
Posted by: holman rugama

79515950

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

Unfortunately, since those frameworks are pre-built and do not include dSYM files, the only option to get those is to request them from the vendor.

Also as an option, you may also try to import their SDK using the Swift Package Manager instead of Cocoapods:

But on the other hand, the only side effect of not having those dSYMs is that you won't be getting symbolicated crash logs if a crash happened inside the VoxImplantSDK. So if this is not a deal breaker for you, I wouldn’t bother.

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

79515940

Date: 2025-03-17 23:16:02
Score: 1
Natty:
Report link

You can hide the fields by setting the callout view's label to always be nil.

static NSString* emptyString(__unsafe_unretained UIView* const self, SEL _cmd) {
    return nil;
}

class_addMethod(objc_getClass("_MKUILabel"), @selector(text), (IMP)&emptyString, "@16@0:8");
Reasons:
  • Low length (0.5):
  • Has code block (-0.5):
  • Low reputation (1):
Posted by: Ryan Nair

79515936

Date: 2025-03-17 23:14:01
Score: 2.5
Natty:
Report link

This can be solved by using the Week day standalone:

{{(day | date : 'ccc'}}
Reasons:
  • Probably link only (1):
  • Low length (1.5):
  • Has code block (-0.5):
  • Low reputation (0.5):
Posted by: Nicolas Stadler

79515927

Date: 2025-03-17 23:05:00
Score: 0.5
Natty:
Report link

You may consider this another possible solution to your issue.

If it is explicitly meant for the Sheets API, then the Google Sheets API does not have a built-in feature that is equivalent to UsedRange. If you'd like to request a feature similar to Excel's Worksheet.UsedRange in Google Sheets, I suggest submitting a feature request through Google’s Issue Tracker. Clearly explain your use case and the benefits of this feature to increase the likelihood of it being considered.

Refer to this documentation for instructions on creating an issue in the Google Issue Tracker.

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

79515925

Date: 2025-03-17 23:01:59
Score: 0.5
Natty:
Report link

When using a LoadBalancer as a Service type in kubernetes, it starts off by creating a NodePort service in the background to facilitate communication, the control plane will allocate the port from a default range port: 30000-32767. Then, configures the external load balancer to forward traffic to the assigned service port by cloud-controller-manager.

If you want to toggle this type of allocation you may set the field as:

spec: 
  allocateLoadBalancerNodePorts: #true or false
Reasons:
  • Has code block (-0.5):
  • Starts with a question (0.5): When
  • Low reputation (0.5):
Posted by: ralphyjade

79515923

Date: 2025-03-17 23:00:57
Score: 6 🚩
Natty: 4
Report link

Following @Maique's observation, we encountered an issue when using Google SSO with the username option enabled. The final redirect (using redirectUrl ?) triggered by clicking "Continue" is failing, and the session ID returned by the clerk.startSSOFlow function is null. Is there a way to reconcile both features?

Reasons:
  • Blacklisted phrase (1): Is there a way
  • Has code block (-0.5):
  • Ends in question mark (2):
  • User mentioned (1): @Maique's
  • Single line (0.5):
  • Looks like a comment (1):
  • Low reputation (1):
Posted by: SennaSanzo

79515922

Date: 2025-03-17 22:59:56
Score: 1
Natty:
Report link

They announced they're going to sort this today, huzzah: https://cloud.google.com/appengine/docs/standard/secure-minimum-tls

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

79515919

Date: 2025-03-17 22:56:53
Score: 9.5 🚩
Natty: 6.5
Report link

I'm facing a similar situation but with NX-OS switches. I am able to build the list via API, but i cannot perform any task calling the hosts in another yml. I am not able to solve the syntax problem, could you provide an example on how do you use the hosts lists on tasks?

Reasons:
  • Blacklisted phrase (1): I am not able to
  • Blacklisted phrase (1): how do you
  • Blacklisted phrase (0.5): i cannot
  • RegEx Blacklisted phrase (2.5): could you provide
  • Low length (0.5):
  • No code block (0.5):
  • Ends in question mark (2):
  • Single line (0.5):
  • Low reputation (1):
Posted by: Luciano Vazquez

79515911

Date: 2025-03-17 22:48:52
Score: 0.5
Natty:
Report link

The validation decorators (@ValidateNested() and @Type(() => KeyDto)) only work on actual objects, not strings and that is not working because NestJS treats query parameters as strings and does not automatically deserialize them into objects.

Since you don't want to use @Transform, the best option is to manually handle the transformation inside a custom Pipe.

import { PipeTransform, Injectable, ArgumentMetadata, BadRequestException } from '@nestjs/common';
import { plainToInstance } from 'class-transformer';
import { validate } from 'class-validator';

@Injectable()
export class ParseJsonPipe implements PipeTransform {
  async transform(value: any, metadata: ArgumentMetadata) {
    if (!value) return value;

    try {
      // Parse the JSON string into an object
      const parsed = JSON.parse(value);

      // Convert to the expected class
      const object = plainToInstance(metadata.metatype, parsed);

      // Validate the transformed object
      const errors = await validate(object);
      if (errors.length > 0) {
        throw new BadRequestException('Validation failed');
      }

      return object;
    } catch (error) {
      throw new BadRequestException('Invalid JSON format');
    }
  }
}

And then apply the Pipe in the controller:

@Get()
getSomething(@Query('key', new ParseJsonPipe()) key: KeyDto) {
  console.log(key); // This should now be an object
}
Reasons:
  • Long answer (-1):
  • Has code block (-0.5):
  • User mentioned (1): @Type
  • User mentioned (0): @Transform
  • Low reputation (1):
Posted by: Andrea Acampora

79515909

Date: 2025-03-17 22:47:51
Score: 1
Natty:
Report link

I ran into the same issue, the workaround was to specify the name of the emulator, but to solve the issue, check if you have different versions of Flutter, choose the right one and run flutter pub get

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

79515907

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

Recovering stolen bitcoins was a great experience for me recently. Initially doubting the viability of bitcoin recovery, I sought help from a recovery specialist named "RecoveryHacker101" after losing $46,000 in a binary options scam. Google had recommended this specialist. The team's ability to recover all of my cryptocurrency in less than a week surprised me. If you are trying to recover lost Bitcoin or are having trouble withdrawing money from a cryptocurrency investment, send an email to [recoveryhacker101(at)gmail(dot)com].

Reasons:
  • Long answer (-0.5):
  • No code block (0.5):
  • Unregistered user (0.5):
  • Single line (0.5):
  • Low reputation (1):
Posted by: Juan Adams

79515906

Date: 2025-03-17 22:46:51
Score: 0.5
Natty:
Report link

I was experiencing the same issue, same error message.

I then located this comment https://github.com/dotnet/sdk/issues/33718#issuecomment-1615229332 which states "ClickOnce publish is not supported with dotnet publish. You will need to use msbuild".

I had tried many variations of the MSBuild, and I was also trying to get this working in an Azure DevOps pipeline.

What I eventually got working on local CMD prompt is:

MSBuild myproject.csproj /target:publish /p:PublishProfile=ClickOnceProfile

This resulted in the PublishDir folder specified in my ClickOnceProfile.pubxml containing the expected files, which is the setup.exe file, Application Manifest, Launcher.exe and an Application Files folder.

Reasons:
  • RegEx Blacklisted phrase (1): same error
  • Long answer (-0.5):
  • Has code block (-0.5):
  • Low reputation (0.5):
Posted by: PaulAdvancedUk

79515897

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

Use Linqpad.

Enable logger : QueryExcecutionTimeLogger.Enabled=true;

It will dump queries generated from linqpad.

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

79515892

Date: 2025-03-17 22:38:50
Score: 1
Natty:
Report link

I came across this post when searching how to resolve the mypy issue of the OP. Upon searching through one of the links mentioned above I found this comment, which was a simple fix to appease mypy: just use _Pointer.

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

79515886

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

The answer is given in the comments by. @Brad and @siggemannen

Must DECLARE (and not just OPEN) the Detail cursor Cur_Cond where its where-clause @v_cur_rule_id has been set (for each row) by the Master cursor Cur_Rule.

Solution Code:

BEGIN

--set NOCOUNT ON;

declare Cur_Rule CURSOR LOCAL READ_ONLY FORWARD_ONLY for
    select rule_id from OMEGACA.ACC_POL_RULE where rule_id in (3,6) order by rule_id;
declare @v_cur_rule_id  int;

declare @v_cur_cond_id  int;

-- BEGIN LOOP C_RULE
OPEN Cur_Rule;
fetch next from Cur_Rule into @v_cur_rule_id;

while @@FETCH_STATUS = 0 
BEGIN
PRINT ('Rule:' + CONVERT(NVARCHAR(10), @v_cur_rule_id));

declare Cur_Cond CURSOR LOCAL READ_ONLY FORWARD_ONLY for
    select cond_id from OMEGACA.ACC_POL_COND where rule_id = @v_cur_rule_id order by cond_id;

    -- BEGIN LOOP C_COND
    OPEN Cur_Cond;
    fetch next from Cur_Cond into @v_cur_cond_id;
        while @@FETCH_STATUS = 0 
        BEGIN
        PRINT ('Cond:' + CONVERT(NVARCHAR(10), @v_cur_cond_id));
        fetch next from Cur_Cond into @v_cur_cond_id;
        END;
    CLOSE Cur_Cond;
    DEALLOCATE Cur_Cond;
    -- END LOOP C_COND

fetch next from Cur_Rule into @v_cur_rule_id;
END;

CLOSE Cur_Rule;
DEALLOCATE Cur_Rule;
-- END LOOP C_RULE

END;

best regards
Altin

Reasons:
  • Blacklisted phrase (0.5): best regards
  • Blacklisted phrase (1): regards
  • Long answer (-1):
  • Has code block (-0.5):
  • User mentioned (1): @Brad
  • User mentioned (0): @siggemannen
  • User mentioned (0): @v_cur_rule_id
  • Self-answer (0.5):
  • Low reputation (0.5):
Posted by: altink

79515885

Date: 2025-03-17 22:34:48
Score: 0.5
Natty:
Report link

A note on the above answer, if the event is triggered by CLI/API with a custom event pattern then the event.source will be the one specified in the triggering call.

enter image description here

const client = new EventBridgeClient({});
const event = new PutEventsCommand({
  Entries: [
    {
      Source: "my_custom_source", // in this case `event.source` == "my_custom_source"
      Detail: JSON.stringify({ "a": "b"}),
      DetailType: "self trigger",
      Resources: [context.invokedFunctionArn],
    },
  ],
});
Reasons:
  • Probably link only (1):
  • Has code block (-0.5):
Posted by: the-noob