79655010

Date: 2025-06-05 18:22:00
Score: 2
Natty:
Report link

Offical Definition:

Set this to true if you want the ImageView to adjust its bounds to preserve the aspect ratio of its drawable.

So, since you said that you code worked perfectly months ago, verify your image dimensions, maybe it have altered accidently

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

79655007

Date: 2025-06-05 18:19:59
Score: 0.5
Natty:
Report link
let result = someValue || 0;

let result = someValue ?? 0;

or

let result = Number.isNaN(someValue) * 0 + someValue * !Number.isNaN(someValue);
let someValue = NaN;
let result = someValue || 0;
Reasons:
  • Low length (0.5):
  • Has code block (-0.5):
  • Low reputation (0.5):
Posted by: Cornel Petrescu

79655005

Date: 2025-06-05 18:18:59
Score: 1.5
Natty:
Report link

So, digging some more with a friend of mine, it has been figured out that this the default behaviour. It's mentioned here in the .NET MAUI documentation by Microsoft

On iOS 16.4+, simulators won't load a splash screen unless your app is signed.

So to make the launch screen work you have to apply a workaround for which there are currently two options.

Option 1

You have to generate signed debug builds.

Option 2

Install an iOS Simulator with version lower than iOS 16.4.

I have currently used option 2 as I am yet to figure out how to apply option 1. I also made changes to the background colour of the launch screen and it works.

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

79655002

Date: 2025-06-05 18:16:58
Score: 0.5
Natty:
Report link

No, I dont think setting a higher bathv size for Queue A makes it higher priority. AWS lambda polls each SQS queue independently and equally, regardless of batch size. If you want to prioritise Queue A, i think you should use separate lambda functions or manage priority logic with the lambda code.

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

79654998

Date: 2025-06-05 18:13:57
Score: 0.5
Natty:
Report link

The %[ck7]% is likely an internal token or placeholder from the bedrock agent's output formatting e.g, for clicks. tracking or UI rendering. Potential workaround for fixing this might be stripping it with re.sub().

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

79654979

Date: 2025-06-05 17:53:51
Score: 0.5
Natty:
Report link

Finally, I fixed the problem, at least workaround.

As you know, Since Node20+, they use the ipv6 dns first. so I downgrade the node to 18 and it works now.

Reasons:
  • Whitelisted phrase (-2): I fixed
  • Low length (1):
  • No code block (0.5):
  • Self-answer (0.5):
  • Low reputation (0.5):
Posted by: heltdev

79654973

Date: 2025-06-05 17:50:50
Score: 2
Natty:
Report link

if you are running your queries from psql prompt directly
then \t is option to disable the column names and same row_number() OVER () for dispaly row number also

example

enter image description here

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

79654970

Date: 2025-06-05 17:47:49
Score: 1
Natty:
Report link

Use =>
1 row_number() OVER () to print row number for all records
2 -t removes header and footer

See example below

I have a table users in my database

Fetching 5 records from users table

enter image description here

removing column names with -t option

enter image description here

adding row number using row_number function in all records fetched (with -t without -t)

enter image description here

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

79654957

Date: 2025-06-05 17:36:45
Score: 0.5
Natty:
Report link

I dont think ag-grid supports rowSpan and colSpan on the same cell, they cannot be combined in a single cell. A workaround is to use cellRenderer with custom HTML/CSS to simulate combined spans, but native support for both together isn't available.

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

79654952

Date: 2025-06-05 17:31:44
Score: 0.5
Natty:
Report link

According to the Liquibase documentation for Docker the volume in the Liquibase image for mounting your local changelog directory is /liquibase/changelog and not /liquibase/db.changelog I would try setting the volume as follows for the Liquibase service:

volumes:
      - ./src/main/resources/db.changelog:/liquibase/changelog
Reasons:
  • Low length (0.5):
  • Has code block (-0.5):
  • Low reputation (0.5):
Posted by: Pete Pickerill

79654947

Date: 2025-06-05 17:26:42
Score: 1
Natty:
Report link

What’s happening is that when you drag a cell, you set up an oval-shaped preview by implementing:

func collectionView(_ collectionView: UICollectionView, dragPreviewParametersForItemAt indexPath: IndexPath) -> UIDragPreviewParameters?

But once you let go and the drop animation kicks in, UIKit goes back to a plain rectangular preview (with the default shadow and background) unless you also tell it otherwise. To keep that oval look during the drop animation, you also need to add:

func collectionView(_ collectionView: UICollectionView, dropPreviewParametersForItemAt indexPath: IndexPath) -> UIDragPreviewParameters?

and return the same oval-shaped parameters. If you don’t, UIKit just uses the rectangular snapshot, and you’ll see the unwanted shadow and background after dropping.

Result

Six white, pill-shaped cells on a light gray background display the top-left pill being lifted and dragged to a new position while preserving its rounded shape

Reasons:
  • Probably link only (1):
  • Long answer (-0.5):
  • Has code block (-0.5):
  • Starts with a question (0.5): What
  • Low reputation (0.5):
Posted by: olejiksa

79654936

Date: 2025-06-05 17:19:41
Score: 0.5
Natty:
Report link

Yup, I think this is a recommended use of useTransition in Next JS. You're improving the UX by giving instant feedback with setActiveTab, showing a loading spinner using isPending and avoiding a UI freeze during router.push. Can't think of anything wrong with it IMO.

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

79654934

Date: 2025-06-05 17:19:41
Score: 2
Natty:
Report link

As indicated by the error message in your logs, you've exceeded the maximum unzipped size limit for a Serverless Function (250 MB).

To resolve this, I recommend referring to the guide Troubleshooting Build Error: “Serverless Function has exceeded the unzipped maximum size of 250 MB”, which provides detailed steps to identify and address the issue.

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

79654929

Date: 2025-06-05 17:18:40
Score: 0.5
Natty:
Report link

Why it probably happened:
Docker Compose tracks containers by project name + service name, not by container_name. Running docker compose up in different folders with the same service name but different container_name causes Compose to stop containers from the other project because it thinks they belong to the same service.

How to fix:

Use different service names in each compose file,

Or use the same service names but run with different project names via docker compose -p <project_name> up -d

Though, tell me if it's not the case.

Reasons:
  • Long answer (-0.5):
  • Has code block (-0.5):
  • Starts with a question (0.5): Why it
  • Low reputation (1):
Posted by: Almohtady Bellah

79654922

Date: 2025-06-05 17:14:39
Score: 3
Natty:
Report link

Stack:

I want to thank you very much for your solution to Add

<meta name="viewport" content="width=device-width, initial-scale=1.0">

It has saved me - I was going crazy!  Some CSS adjusted and some did not.  Now all is well.

THANK YOU!!
Reasons:
  • Blacklisted phrase (0.5): thank you
  • Blacklisted phrase (0.5): THANK YOU
  • RegEx Blacklisted phrase (1): I want
  • Low length (0.5):
  • Has code block (-0.5):
  • Low reputation (1):
Posted by: Susan Sailow

79654917

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

A minor correction to the previous answer:

data = data.withColumn("random_num", round(rand()*30+0.5).cast("int"))

This adds 0.5 so that we don't get 0 as one of the outcomes, and casts the result to an integer.

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

79654915

Date: 2025-06-05 17:08:37
Score: 2
Natty:
Report link

To Check TypeScript error:

run : npx tsc --noEmit

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

79654914

Date: 2025-06-05 17:06:36
Score: 1
Natty:
Report link

As of 2025, all you need to do is save the file with a kts filename extension

hello.kts:

println("Hello World!")

terminal:

~ > kotlin test.kts
Hello World!
Reasons:
  • Low length (1):
  • Has code block (-0.5):
  • Low reputation (0.5):
Posted by: MJ Walsh

79654909

Date: 2025-06-05 17:03:35
Score: 3.5
Natty:
Report link

As suggested in Morrison's comment, the problem has been solved by setting a more relaxed network policy in the Android app, following these instructions How to fix 'net::ERR_CLEARTEXT_NOT_PERMITTED' in flutter .

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

79654908

Date: 2025-06-05 17:02:35
Score: 2.5
Natty:
Report link

Thanks everyone. I now understand the difference between the two. Now suppose our goal is to read data from the console. The common and portable approach is to use fgets to read from stdin. But stdin can be redirected to other things (such as files). ReadConsole is an API of win32api, which is used to read content from the console bound to the program. When stdin and the console are still connected (that is, when it is not redirected), the effects of the two are basically the same. If stdin is redirected, ReadConsole still reads the input data of the console bound to the program, rather than the stdin data stream.

Reasons:
  • Blacklisted phrase (0.5): Thanks
  • Long answer (-0.5):
  • No code block (0.5):
  • Self-answer (0.5):
  • Single line (0.5):
  • Low reputation (1):
Posted by: Song Zihuan

79654904

Date: 2025-06-05 16:58:34
Score: 0.5
Natty:
Report link

Your useEffect needs to react to the params change.

useEffect(() => {
    if (route.params?.lat && route.params?.lng) {
      navigateToCoords(route.params.lat, route.params.lng);
    }
}, [route.params]);

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

79654903

Date: 2025-06-05 16:57:34
Score: 0.5
Natty:
Report link

These days the trivial answer and the one recommended by MDM is simply

  Number.isInteger(+x) && +x > 0

Pls see the comment by @nicholaswmin which explains all.

Reasons:
  • Low length (1):
  • Has code block (-0.5):
  • User mentioned (1): @nicholaswmin
  • High reputation (-1):
Posted by: Fattie

79654902

Date: 2025-06-05 16:57:33
Score: 5
Natty: 4
Report link

I have the same problem. I already have

spring.devtools.livereload.enabled=true
Reasons:
  • Blacklisted phrase (1): I have the same problem
  • Low length (1.5):
  • Has code block (-0.5):
  • Me too answer (2.5): I have the same problem
  • Low reputation (0.5):
Posted by: Gabriel Messas

79654900

Date: 2025-06-05 16:56:33
Score: 1.5
Natty:
Report link

First of all, thanks for spending the time to look at this.

I actually found a better solution and I wanted to post it here. In the previous example, it did work because both matrices were composed of single values. But the function is actually not working as it should. It should mirror the lower triangle of the second matrix in the upper triangle of the first one.

You can check this simulating matrices with difference values:

mat1 <- matrix(nrow = 10, ncol = 10)
mat2 <- matrix(nrow = 10, ncol = 10)

mat1[lower.tri(mat1)] <- runif(n = 10, min = 0, max = 1)
mat2[lower.tri(mat2)] <- runif(n = 10, min = 0, max = 1)

fx <- function(mat1, mat2) {
  n <- nrow(mat1)
  for (i in 1:n) {
    for (j in 1:n) {
      if (i > j) {
        mat1[j, i] <- mat2[i, j]
      }
    }
  }
  mat1
}

mat3 <- fx(mat1, mat2)

I suspect there must be something in base R to do this kind of work... In any case, you could see that in mat3 now the upper triangle corresponds to t(mat2).

Cheers,

Reasons:
  • Blacklisted phrase (0.5): thanks
  • Blacklisted phrase (1): Cheers
  • Long answer (-0.5):
  • Has code block (-0.5):
  • Self-answer (0.5):
  • Low reputation (0.5):
Posted by: Daniel Estévez

79654896

Date: 2025-06-05 16:55:32
Score: 6.5
Natty: 7
Report link

OpenAI has a better answer. See the link below.

https://chatgpt.com/share/6841ca37-0c14-8007-9248-cd214395e7cb

Reasons:
  • Blacklisted phrase (1): the link below
  • RegEx Blacklisted phrase (1): See the link
  • Probably link only (1):
  • Low length (1.5):
  • No code block (0.5):
  • Unregistered user (0.5):
  • Low reputation (1):
Posted by: Andres Sayago

79654891

Date: 2025-06-05 16:52:31
Score: 0.5
Natty:
Report link

In flat config you can use:

export default defineConfig([  globals.browser ])
Reasons:
  • Whitelisted phrase (-1.5): you can use
  • Low length (1.5):
  • Has code block (-0.5):
  • Low reputation (1):
Posted by: poylar

79654889

Date: 2025-06-05 16:50:30
Score: 2.5
Natty:
Report link

replying to a 6 years old question.

The direct way to store into a variable is :

LOG_LINE=$(docker logs --tail 1 --timestamps "$container_name" 2>&1 | tail -n 1)

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

79654888

Date: 2025-06-05 16:50:30
Score: 3
Natty:
Report link

You need to use widget for taxonomies or create custom widget If you want I can help you to do it. Just write me about it.

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

79654887

Date: 2025-06-05 16:49:30
Score: 2.5
Natty:
Report link

jdwbiggestfool????

Server error in application '/'.

A connection could not be established because the target computer actively refused it 192.168.5.12:6090

**Description:**An unhandled exception occurred during the execution of the current web request. Review the stack trace for additional information about the error and where it occurs in the code.

**Exception details:**System.Net.Sockets.SocketException: A connection could not be established because the target machine actively refused it 192.168.5.12:6090

Source error:

Kod źrdłowy, ktry spowodował wygenerowanie tego nieobsługiwanego wyjątku, może być wyświetlany tylko po skompilowaniu w trybie debugowania. Aby włączyć tryb debugowania, wykonaj jedną z poniższych czynności, a następnie zażądaj adresu URL:1. Dodaj dyrektywę "Debug=true" na początku pliku, ktry spowodował wygenerowanie błędu. Przykład:  <%@ Page Language="C#" Debug="true" %>lub:2) Dodaj poniższą sekcję do pliku konfiguracyjnego aplikacji:<configuration>   <system.web>       <compilation debug="true"/>   </system.web></configuration>Zauważ, że drugi sposb spowoduje kompilowanie wszystkich plikw danej aplikacji w trybie debugowania. Pierwszy sposb spowoduje kompilowanie tylko jednego konkretnego pliku w trybie debugowania.Ważne: Uruchamianie aplikacji w trybie debugowania zwiększa zużycie pamięci i zmniejsza wydajność. Przed wdrożeniem scenariusza produkcyjnego upewnij się, że w aplikacji wyłączono debugowanie.

Stack trace:

[SocketException (0x274d): Nie można nawiązać połączenia, ponieważ komputer docelowy aktywnie go odmawia 192.168.5.12:6090] System.Net.Sockets.Socket.DoConnect(EndPoint endPointSnapshot, SocketAddress socketAddress) +239 System.Net.Sockets.Socket.InternalConnect(EndPoint remoteEP) +35 System.Net.ServicePoint.ConnectSocketInternal(Boolean connectFailure, Socket s4, Socket s6, Socket& socket, IPAddress& address, ConnectSocketState state, IAsyncResult asyncResult, Int32 timeout, Exception& exception) +224 [WebException: Nie można połączyć się z serwerem zdalnym] System.Net.HttpWebRequest.GetRequestStream(TransportContext& context) +1877265 System.Net.HttpWebRequest.GetRequestStream() +13 System.Web.Services.Protocols.SoapHttpClientProtocol.Invoke(String methodName, Object[] parameters) +103 pl.emapa.tornado.IMapCenterServiceservice.CreateSessionID() +31 EmapaAJAXMap._Default.GetSession(IMapCenterServiceservice svc, Boolean ForceCreate) +161 EmapaAJAXMap._Default.Page_Load(Object sender, EventArgs e) +27 System.Web.UI.Control.OnLoad(EventArgs e) +99 System.Web.UI.Control.LoadRecursive() +50 System.Web.UI.Page.ProcessRequestMain(Boolean includeStagesBeforeAsyncPoint, Boolean includeStagesAfterAsyncPoint) +627


Version Information: Microsoft .NET Framework Version:2.0.50727.3649; ASP.NET Version:2.0.50727.3634

Reasons:
  • Blacklisted phrase (1): ???
  • Long answer (-1):
  • No code block (0.5):
  • Contains question mark (0.5):
  • Unregistered user (0.5):
  • Low reputation (1):
Posted by: miiitu

79654885

Date: 2025-06-05 16:49:30
Score: 1.5
Natty:
Report link

Out of desperation I tried switching to the Microsoft ODBC drivers instead of FreeTDS. And somehow, that works.

I have no idea why, as it's clearly something about the Azure environment, since FreeTDS absolutely works when using an ssh tunnel to forward the connection through some external host. But the Microsoft ODBC driver apparently knows the secret sauce Azure wants.

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

79654871

Date: 2025-06-05 16:38:27
Score: 2.5
Natty:
Report link

Adding answer to the question as it resolved on of our customer's issue, is the as he cloned the app to a new server the app was showing white screen, so after changed the APP URL in the .env file by adding https://domain the site worked. There was no https:// before

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

79654870

Date: 2025-06-05 16:37:26
Score: 2
Natty:
Report link

This may be due to you didnt remove those <> brackets in the connection string replace the username , password with the actual credentials , not the account password , but with database access password , and then remove those <> brackets

Finally it will look like mongodb+srv://db_username:db_password

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

79654865

Date: 2025-06-05 16:33:26
Score: 0.5
Natty:
Report link

Spring Boot uses an opinionated algorithm to scan for and configure a DataSource. This allows you to get a fully-configured DataSource implementation by default easily.

In addition, Spring Boot automatically configures a lightning-fast connection pool, either HikariCP, Apache Tomcat, or Commons DBCP, in that order, depending on which are on the classpath.

While Spring Boot’s automatic DataSource configuration works very well in most cases, sometimes you’ll need a higher level of control, so you’ll have to set up your own DataSource implementation, hence skipping the automatic configuration process.

It is easy process, just takes your time to configure a DataSource once you need it.

Reasons:
  • Long answer (-0.5):
  • Has code block (-0.5):
  • Unregistered user (0.5):
  • Low reputation (1):
Posted by: user30731218

79654863

Date: 2025-06-05 16:30:25
Score: 0.5
Natty:
Report link

Use the Sea-ORM to read timestamptz with the "with-chrono" feature:


pub struct Model {
    pub updated_at: DateTimeWithTimeZone,
}

Referance: https://www.sea-ql.org/SeaORM/docs/generate-entity/entity-structure/#column-type

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

79654852

Date: 2025-06-05 16:26:24
Score: 1.5
Natty:
Report link

As it turned out it was so easy! )

@Injectable({
  providedIn: 'root'
})
export class JsonPlaceholderService implements BaseDataService  {
  get(): Observable<any> {};
}

@Injectable({
  providedIn: 'root',
  useClass: JsonPlaceholderService
})
export class BaseDataService implements IDataService {
  get(): Observable<any> {
    throw new Error('Method not implemented.');
  }
}

export interface IDataService {
  get(): Observable<any>;
}

And then we can use it as a dependency in a @Component()

  #jsonPlaceholderService = inject(BaseDataService);

No providers array in a @Component or AppConfig. So this way, our dependency is tree-shakable.

Reasons:
  • Long answer (-0.5):
  • Has code block (-0.5):
  • User mentioned (1): @Component
  • Self-answer (0.5):
  • Low reputation (1):
Posted by: Alex Lavrik

79654850

Date: 2025-06-05 16:23:23
Score: 1
Natty:
Report link

I had a simillar situation, while converting some Postgres Databases into MySQL.
I tried other solutions, until I found your post.
The approach that worked clean and softly, was inserting this line, after saving the rows on a DataFrame variable:


data = data.astype(object).where(pandas.notnull(data), None)
Reasons:
  • Low length (0.5):
  • Has code block (-0.5):
  • Low reputation (1):
Posted by: Matheus Galasso

79654832

Date: 2025-06-05 16:11:19
Score: 0.5
Natty:
Report link

I eventually dealt with this issue by using a python DataClass as the basic structure, and applying dicitonaries on top of it using a function like this:

from dataclasses import fields, replace
from typing import TypeVar
import json

T = TypeVar("T")


def safe_replace (instance: T, updates: dict,  keepNone = False) -> T:
    field_names = {f.name for f in fields(instance)}
    valid_kwargs = {k: v for k, v in updates.items() if k in field_names if v is not None or keepNone == True }
    invalid_keys = set(updates) - field_names

    if invalid_keys:
        warnings.warn(f"Ignored invalid field(s): " + ', '.join(invalid_keys), category=UserWarning)

    return replace(instance, **valid_kwargs)

...which I use something like this:

@dataclass
class User:
    reputation: int = 0
    favoriteSite: str = "stackOverflow"

me = User(reputation=10)
updated = safe_replace(me, {'reputation':-8, 'favoriteSite':'claude.AI'})

This works well in my use case, because the dataclass gives type safety and defaults, and also decent autocomplete behaviour, and dictionaries can be merged on top. (Also it's possible to add custom handlers for updates and so on).

Not quite the answer to the question I asked, which viewed the base object as a dictionary, but when I asked it, I clearly didn't know quite what I wanted.

Reasons:
  • Blacklisted phrase (1): stackOverflow
  • RegEx Blacklisted phrase (1.5): reputation
  • Long answer (-1):
  • Has code block (-0.5):
  • Self-answer (0.5):
  • High reputation (-1):
Posted by: phhu

79654819

Date: 2025-06-05 16:00:16
Score: 2.5
Natty:
Report link

Java objects are created on the heap, which is a section of memory dedicated to a program. When objects are no longer needed, the garbage collector finds and tracks these unused objects and deletes them to free up space.

But the object that occupies a memory should be collected before the OOM error happens.

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

79654813

Date: 2025-06-05 15:57:15
Score: 2
Natty:
Report link

The return result from READ_IMAGE.PRO is a 2D array if greyscale and 3D if color (e.g., see https://www.nv5geospatialsoftware.com/docs/READ_IMAGE.html). So yes, if you only want the greyscale image, just use the second two dimensions. To make it a true greyscale image, you can follow the advice in https://stackoverflow.com/a/689547/4005647 to apply proper weights to each of the RGB channels.

Reasons:
  • Blacklisted phrase (1): stackoverflow
  • Low length (0.5):
  • Has code block (-0.5):
  • Single line (0.5):
  • Low reputation (0.5):
Posted by: honeste_vivere

79654805

Date: 2025-06-05 15:52:14
Score: 3.5
Natty:
Report link

LOL and they say linux is better than windows xdddd

Reasons:
  • Low length (1.5):
  • No code block (0.5):
  • Single line (0.5):
  • Low reputation (1):
Posted by: Jakub Křižák

79654803

Date: 2025-06-05 15:52:13
Score: 5
Natty: 5.5
Report link

I'm at the same point where I can't find out how to get a script to run did you work it out?

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

79654795

Date: 2025-06-05 15:49:12
Score: 2.5
Natty:
Report link

I have tested it in vs2022 with VB.NET and Windows Forms, and it does not work, even replacing the corresponding files in the WindowsForms subfolder... so sad.

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

79654794

Date: 2025-06-05 15:48:11
Score: 11.5 🚩
Natty:
Report link

That sounds interesting. Does anyone have a solution?

Reasons:
  • Blacklisted phrase (3): have a solution?
  • RegEx Blacklisted phrase (3): Does anyone have a solution
  • Low length (1.5):
  • No code block (0.5):
  • Ends in question mark (2):
  • Single line (0.5):
  • Low reputation (1):
Posted by: chacha

79654789

Date: 2025-06-05 15:46:10
Score: 3.5
Natty:
Report link

Struggling with the same issue and getting a json-rpc ERROR

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

79654786

Date: 2025-06-05 15:46:10
Score: 2.5
Natty:
Report link

For me it happened because the label did have a leading constraint, but did not have a trailing constraint. It' s better to set leading and trailing constraints instead of width and preferred max width.

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

79654785

Date: 2025-06-05 15:45:10
Score: 2.5
Natty:
Report link

It can be simply changed over time. Or just a cached response, e.g. depending on your request headers.

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

79654780

Date: 2025-06-05 15:42:09
Score: 1.5
Natty:
Report link

I am used to using VPN to access the internet, but sometimes I suddenly cannot push to GitHub. I am using Macbook Pro M1, and after switching the VPN proxy node region, such as from the UK to Canada, I successfully pushed to GitHub.

I hope this can be helpful for people who encounter the same problem.

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

79654769

Date: 2025-06-05 15:37:08
Score: 1.5
Natty:
Report link

Open Start Menu -> View Advanced System Settings -> Environment Variables -> System Variables

Click New in System Variable

MAVEN_HOME=C:\softwarepackage\apache-maven-3.9.9-bin\apache-maven-3.9.9

Click OK

Then select PATH and Click on Edit button then Click on New in Edit Environment Variable Window

%MAVEN_HOME%\bin

Click Ok

Again Ok

Again Ok

Reasons:
  • No code block (0.5):
  • Low reputation (1):
Posted by: Raj Kumar Ram

79654763

Date: 2025-06-05 15:34:06
Score: 7 🚩
Natty: 5
Report link

showMenu worked for me too but positioning is a nightmare. Is this being addressed by the Flutter team? Does anyone have a link to the issue?

Reasons:
  • Whitelisted phrase (-1): worked for me
  • RegEx Blacklisted phrase (3): Does anyone have a link
  • Low length (1):
  • No code block (0.5):
  • Ends in question mark (2):
  • Single line (0.5):
  • Low reputation (1):
Posted by: fadi-adib

79654756

Date: 2025-06-05 15:28:04
Score: 1
Natty:
Report link

if we look at the malloc function written in malloc.h, we have the answer to this.

see.
https://github.com/lattera/glibc/blob/895ef79e04a953cac1493863bcae29ad85657ee1/malloc/malloc.c#L487

/*
  malloc(size_t n)
  Returns a pointer to a newly allocated chunk of at least n bytes, or null
  if no space is available. Additionally, on failure, errno is
  set to ENOMEM on ANSI C systems.

  If n is zero, malloc returns a minumum-sized chunk. (The minimum
  size is 16 bytes on most 32bit systems, and 24 or 32 bytes on 64bit
  systems.)  On most systems, size_t is an unsigned type, so calls
  with negative arguments are interpreted as requests for huge amounts
  of space, which will often fail. The maximum supported value of n
  differs across systems, but is in all cases less than the maximum
  representable value of a size_t.
*/
void*  __libc_malloc(size_t);
libc_hidden_proto (__libc_malloc)
Reasons:
  • Probably link only (1):
  • Long answer (-0.5):
  • Has code block (-0.5):
  • Low reputation (1):
Posted by: Francisco Ramon

79654750

Date: 2025-06-05 15:25:03
Score: 2
Natty:
Report link

You make an object of class1 and inside class there is a function called method1 so when you write self.method1 python remembers which object it belongs to so you put the function into global list but it is also linked to obj1 then you make obj of class2 and calls it runs global_list[0]() and pulls out obj1 from list.The key idea is when you do self method python stores fun and obj together it is called bound method so even if call later it knows which obj self to use that's why print class1

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

79654737

Date: 2025-06-05 15:18:01
Score: 1.5
Natty:
Report link

I'm guessing you're using wp-scripts? The build command will minify the code, whereas the start command won't. That's generally what I would run while working because it also listens for changes and rebuilds live.

Reasons:
  • Low length (0.5):
  • Has code block (-0.5):
  • Contains question mark (0.5):
  • Single line (0.5):
  • Low reputation (0.5):
Posted by: Marin Carroll

79654729

Date: 2025-06-05 15:13:00
Score: 1.5
Natty:
Report link

I had the same issue , you need to label the project with firebase=enabled.

Reasons:
  • Whitelisted phrase (-1): I had the same
  • Low length (1.5):
  • Has code block (-0.5):
  • Single line (0.5):
  • Low reputation (1):
Posted by: omar.elaallaoui

79654722

Date: 2025-06-05 15:08:59
Score: 2
Natty:
Report link

Change

url="jdbc:mysql://localhost:3306/web_student_tracker?useSSL=false"

to

url="jdbc:mysql://localhost:3306/web_student_tracker?useSSL=false&amp;allowPublicKeyRetrieval=true"

Reasons:
  • Low length (1):
  • Has code block (-0.5):
  • Has no white space (0.5):
  • Low reputation (1):
Posted by: Mesmer M.

79654717

Date: 2025-06-05 15:01:57
Score: 8.5 🚩
Natty: 5
Report link

Looking for the same. Have you solved it?

Reasons:
  • Blacklisted phrase (2): Have you solved it
  • RegEx Blacklisted phrase (1.5): solved it?
  • Low length (1.5):
  • No code block (0.5):
  • Ends in question mark (2):
  • Single line (0.5):
  • Low reputation (0.5):
Posted by: Luis Simoes

79654713

Date: 2025-06-05 14:59:56
Score: 3
Natty:
Report link

Maybe this can help ? stackoverflow - Fatal: could not read username for 'https //github.com' device not configured

I know that's not exactly what you asked but as advised in the post I'd recommend switching to ssh if possible, this is less pain to maintain.

To help you reproduce, if the issue is due to Jenkins running it not as a tty, maybe you should try executing your code locally but inside a non-interactive script.

Reasons:
  • Blacklisted phrase (1): stackoverflow
  • No code block (0.5):
  • Contains question mark (0.5):
  • Low reputation (1):
Posted by: Aurel B

79654709

Date: 2025-06-05 14:55:55
Score: 1
Natty:
Report link

The official fix in electron-react-boilerplate changes the devEngines value to this:

  "devEngines": {
    "runtime": {
      "name": "node",
      "version": ">=14.x",
      "onFail": "error"
    },
    "packageManager": {
      "name": "npm",
      "version": ">=7.x",
      "onFail": "error"
    }
  },
Reasons:
  • Low length (0.5):
  • Has code block (-0.5):
  • Low reputation (1):
Posted by: xfeeefeee

79654707

Date: 2025-06-05 14:55:55
Score: 6.5 🚩
Natty: 4.5
Report link

I'm having trouble getting the multiline syntax for " ${{ if" to work. You seem to have it working above, but using your example on my end just ends up with syntax errors. I'm unable to find any docs explaining how the syntax is supposed to work (e.g. indentation, special characters like the leading '?', etc).

Any guidance or links to docs explaining how this is supposed to work?

Thx.

Reasons:
  • Blacklisted phrase (1): Thx
  • RegEx Blacklisted phrase (2): I'm having trouble
  • No code block (0.5):
  • Ends in question mark (2):
  • Low reputation (1):
Posted by: David

79654705

Date: 2025-06-05 14:51:54
Score: 1.5
Natty:
Report link

I believe you are after a repeater:

https://filamentphp.com/docs/3.x/forms/fields/repeater

This will allow you to repeat the components, and on a single click, you'll be able to save all the data at once.

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

79654702

Date: 2025-06-05 14:51:54
Score: 2
Natty:
Report link

Thank you very much for your helpful responses and sorry for the delay in response, I unfortunately was unable to work on this project for a while.

Following your advice, I have now removed 'contrasts' from the data inputted into the GLMM and draw no inference from the model output. But, from the model I use the emmeans package to run comparisons and contrast and draw inference from there. I believe these are correct and align with the vignettes from emmeans.

###Main effects (con1 , con2, con1 X con2)
#con1: 3 levels = self, friend, stranger
#con2: 2 levels = happy, neutral

joint_tests(model)

#con1 - sig
#con2 - non-sig
#int  - sig

#----------------------#
###Unpicking 'main effect' of condition 1 (aggregated across condition2)
condition1_emm <- emmeans(model, pairwise ~ con1)
condition1_emm 

#----------------------#
###Unpicking 'interaction effect'
#condition 1 split by condition2 
#(Happy: self vs friend, self vs stranger, friend vs stranger)
#(Neutral: self vs friend, self vs stranger, friend vs stranger)
con1_by_con2 <- emmeans(model, pairwise ~ con1| con2)
con1_by_con2 

con1_by_con2 %>%confint()

#----------------------#
###Unpicking 'interaction effect'
#condition 2 split by condition1 
#(Self: Happy vs Neutral)
#(Friend: Happy vs Neutral)
#(Stranger: Happy vs Neutral)
con2_by_con1 <- emmeans(model, pairwise ~ con2| con1)
con2_by_con1 

con2_by_con1 %>%confint()

One other area I want to explore within the interaction is whether the difference between two people (e.g., self vs. friend) changes depending on the prime (happy vs. neutral). So, I have created custom contrast coding for this, is this correct and also okay to draw inference from please?

# Get the estimated marginal means for the interaction
emm_interaction <- emmeans(model, ~ con1 * con2)

# Define all three interaction contrasts with 6 elements each
contrast_list <- list(
 "Self_vs_Friend_Happy_vs_Neutral" = c( 1, -1, 0, -1, 1, 0),
 "Self_vs_Stranger_Happy_vs_Neutral" = c( 1, 0, -1, -1, 0, 1),
 "Friend_vs_Stranger_Happy_vs_Neutral" = c( 0, 1, -1, 0, -1, 1)
)

# Run the contrasts with multiple comparisons adjustment
emm_interaction_cont <- contrast(emm_interaction, contrast_list, adjust = "sidak")
emm_interaction_cont

#Confidence intervals
emm_interaction_cont%>%
  confint()

Thank you very much for your help.

Reasons:
  • Blacklisted phrase (0.5): Thank you
  • RegEx Blacklisted phrase (1): I want
  • Long answer (-1):
  • Has code block (-0.5):
  • Contains question mark (0.5):
  • Self-answer (0.5):
  • Low reputation (1):
Posted by: nalee_psych

79654697

Date: 2025-06-05 14:48:53
Score: 1
Natty:
Report link

I want to add to this. I'm publishing .NET 8 Azure Function apps from Visual Studio 2022. If I check the box that says "Produce single file" in my publish profile, the publish succeeds, but no functions are found and the function app goes into a cycle of trying to reload. We can see the warmup function firing occasionally. No errors are logged anywhere. Even the App Insights telemetry logs only show that no functions were found. This is clearly broken and clearly very difficult to troubleshoot. I hope this helps someone else.

enter image description here

Reasons:
  • Whitelisted phrase (-1): hope this helps
  • RegEx Blacklisted phrase (1): I want
  • Long answer (-0.5):
  • No code block (0.5):
  • Single line (0.5):
  • Low reputation (0.5):
Posted by: Mike Yeager

79654692

Date: 2025-06-05 14:45:52
Score: 1.5
Natty:
Report link

I faced this issue in Visual Studio, and here's what worked for me: The issue seemed to be caused by a caching problem in Visual Studio or IIS Express.
-> Restarting the system resolved it for me.

After the restart, I was able to run the project without any issues. This method worked in my case.

Reasons:
  • Whitelisted phrase (-1): worked for me
  • Low length (0.5):
  • No code block (0.5):
  • Self-answer (0.5):
  • Low reputation (1):
Posted by: ravidhileeban kb

79654691

Date: 2025-06-05 14:45:52
Score: 1
Natty:
Report link

/opt/bitnami/apache/conf/domain.crt

conf is here:
/opt/bitnami/apache2/conf/bitnami/bitnami-ssl.conf

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

79654688

Date: 2025-06-05 14:42:51
Score: 1
Natty:
Report link

I got an answer on the Microsoft Tech community. The short answer is yes, 3 is the maximum number of scopes. Quoting answer here for discoverability:

Yes, the "maxItems": 3 restriction in the schema for the scopes property is intentional. This means you can only specify up to three scopes out of the available options ("team", "personal", "groupChat", "copilot") for a given bot or command list.

This limitation is likely in place to ensure clarity in the bot's experience and to avoid potential conflicts or ambiguities that could arise from enabling all possible scopes simultaneously.

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

79654684

Date: 2025-06-05 14:39:50
Score: 3
Natty:
Report link

Please take a look at this solution. It seems to be what you are looking for.

Functional Behavior Tree

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

79654681

Date: 2025-06-05 14:39:50
Score: 3.5
Natty:
Report link

I get the solution as Betafamily is unable to generate installable link if there is watch app added.

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

79654680

Date: 2025-06-05 14:38:50
Score: 0.5
Natty:
Report link

This error, in general, means that Docker was looking for a certain container identified by that SHA signature but did not find the container.

In addition to the other answers here, check for any accidental changes to your dockerfile or docker-compose file that have occurred since the last time you built the project, such as by switching git branches.

In my case, an old version of my docker-compose file was in my environment due to changing to an outdated git branch. The old version built the image using an ARM image (on an Apple M Macbook) but the new version specified "platform: linux/amd64" for the container. Thus, Docker was looking for an ARM container and only found an amd64 container. Restoring the correct version of my docker-compose by merging git branches fixed it

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

79654674

Date: 2025-06-05 14:34:48
Score: 7 🚩
Natty: 4
Report link

This works fine for me ... in one direction: "los detalles t\u00E9cnicos" is replaced by "los detalles técnicos". However, if I try to swap in the other direction, i get this error: "UnicodeDecodeError: 'utf-8' codec can't decode byte 0xe9 in position 0: unexpected end of data". Any ideas ?

Reasons:
  • Blacklisted phrase (1): Any ideas
  • RegEx Blacklisted phrase (1): i get this error
  • 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: Jurgen Vandenberghe

79654669

Date: 2025-06-05 14:30:46
Score: 0.5
Natty:
Report link
SELECT date,
       get_json_object(json_col, '$.estudents[0].id_student') AS id_student,
       get_json_object(json_col, '$.estudents[0].score') AS score
FROM your_table
WHERE get_json_object(json_col, '$.estudents[0].score') RLIKE '\\.'
Reasons:
  • Low length (0.5):
  • Has code block (-0.5):
  • Low reputation (0.5):
Posted by: Cesar

79654664

Date: 2025-06-05 14:27:45
Score: 0.5
Natty:
Report link

These answers were a good starting point for me, but non quite worked.

git diff --name-only --diff-filter=ACM main | xargs rubocop --force-exclusio

this adds a filter for added, copied or modified files and forces the exclusion so you don't check files that are ignored in the rubocop.yml

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

79654635

Date: 2025-06-05 14:09:40
Score: 1.5
Natty:
Report link

Short version, create a parent and reparent the glb to the same parent as the box mesh. Now, if you're doing physics calculations (which it appears you're doing) you might need to twiddle with bounding boxes and whatnot.

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

79654631

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

Termux is designed to run with user permissions, so commands that run as root are impossible unless the device itself is rooted, for obvious reasons. Hence, su, sudo, etc. won't work on an unrooted device with Termux.

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

79654627

Date: 2025-06-05 14:04:39
Score: 1.5
Natty:
Report link

It looks as though this might be databricks secret sauce. You can achieve the same result by just using

transform(mapped_trace, x -> transform(x.segments, y -> y.shape))

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

79654602

Date: 2025-06-05 13:54:36
Score: 1.5
Natty:
Report link

std::variant is designed as a type-safe union, it does not support direct polymorphism or implicit upcasting to a common base. And then the issue is that you are trying to cast the active variant value to the Base class using reinterpret_cast, which is unsafe. Also, u are avoiding std::visit so instead make all variant types inherit from the same base class which contains the shared member "i". This way, you can safely work with pointers or references to the base class without needing unsafe casts or runtime checks.

Reasons:
  • Long answer (-0.5):
  • No code block (0.5):
  • Single line (0.5):
  • Low reputation (1):
Posted by: Arwa Abbas

79654594

Date: 2025-06-05 13:50:34
Score: 1.5
Natty:
Report link

Can you try with this?

UPDATE revenue_data
SET gtm_type = p.type
FROM (
    SELECT DISTINCT pl, type
    FROM emea.product
    WHERE type = 'value1'
) p
WHERE revenue_data.pl = p.pl;

or You Want to Dynamically Set gtm_type to the Matching type?

Reasons:
  • Whitelisted phrase (-2): Can you try
  • Low length (0.5):
  • Has code block (-0.5):
  • Ends in question mark (2):
  • Starts with a question (0.5): Can you
  • Low reputation (1):
Posted by: Haripriyabalan Hari

79654589

Date: 2025-06-05 13:47:33
Score: 2.5
Natty:
Report link

i think one solution is allowing cors in ur backend index.js file

Reasons:
  • Whitelisted phrase (-1): solution is
  • Low length (1.5):
  • No code block (0.5):
  • Single line (0.5):
  • Low reputation (1):
Posted by: Pawan Goswami

79654588

Date: 2025-06-05 13:47:33
Score: 3
Natty:
Report link

This post https://techcommunity.microsoft.com/blog/iis-support-blog/error-hresult-0x80070520-when-adding-ssl-binding-in-iis/377281 made me suspect a problem during import.

I got rid of the HRESULT: 0x80070520 message by deleting and re-importing the certificate, with “Allow this certificate to be exported” checked.

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

79654579

Date: 2025-06-05 13:42:32
Score: 1.5
Natty:
Report link

As the person before said, "you cannot remove it completely". But try something like this:

:highlight VertSplit cterm=NONE ctermbg=NONE

This may get the result you expect.

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

79654570

Date: 2025-06-05 13:37:30
Score: 0.5
Natty:
Report link

In principle this potentially be implemented using a ConfigSource plugin. Example here.

Reasons:
  • Low length (1.5):
  • No code block (0.5):
  • Single line (0.5):
  • High reputation (-2):
Posted by: Omry Yadan

79654563

Date: 2025-06-05 13:34:29
Score: 1
Natty:
Report link

As I understand it a legend is simply a colour key to identify which data set a value blongs to.

E.g. a bar graph representing the distribution of favourite types of ice cream among a group of people can be drawn with each bar being coloured differently. The legend would then be a list matching each colour with each flavour. Yellow for vanilla, brown for chocolate etc.

So if the yellow bar reaches 15 on the graph the legend informs us that 15 people out of the data set prefer vanilla icecream, as the legend says yellow represents a preference for vanilla.

In the example you posted the legend is the bit to the right of the graph.

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

79654547

Date: 2025-06-05 13:26:27
Score: 1.5
Natty:
Report link

You could eliminate the Doppler effect by adding the current forward/backward velocity of the ship to the starting velocity of your bullets, but I wouldn't go down that road as it would mean adding a visual improvement that introduces inconsistencies in the core shooting mechanic of your game, e.g. the bullets fly faster when you are moving forward.

Reasons:
  • No code block (0.5):
  • Single line (0.5):
  • Low reputation (0.5):
Posted by: Sahand Malaei Balasi

79654534

Date: 2025-06-05 13:21:25
Score: 1.5
Natty:
Report link

The screenRecord limatation was increased from 3 minutes to 30 minutes in Android 14: https://cs.android.com/android-studio/platform/tools/adt/idea/+/30e0278da071829221e1282fff0381c175e38049

If you are running under rooted device you can apply this workaround to get more than 30 minutes, you can follow this tutorial : https://maestro.dev/blog/fixing-androids-3-minute-screen-recording-limitation

Or we can do the ugly solution by looping the screenrecord adb shell command and merge the frame later.

Reasons:
  • Blacklisted phrase (1): this tutorial
  • Probably link only (1):
  • No code block (0.5):
  • High reputation (-1):
Posted by: Sofien Rahmouni

79654520

Date: 2025-06-05 13:15:23
Score: 0.5
Natty:
Report link

Still it is not working on both localhost and 127.0.0.1, so
step1: use ngrok or deploy it
step2: add it in settings -> authorized domain
then it worked for me

Reasons:
  • Whitelisted phrase (-1): it worked
  • Whitelisted phrase (-1): worked for me
  • Low length (1):
  • No code block (0.5):
  • Low reputation (1):
Posted by: Vikas Azad

79654518

Date: 2025-06-05 13:12:22
Score: 0.5
Natty:
Report link

 <button id="signup-btn"> <a href='/signup'>Sign Up</a></button> 

this is a mistake

<Link to="/signup">Sign up</Link>

You should be using Link from react-router-dom in react

https://v5.reactrouter.com/web/api/Link visit this for reference

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

79654512

Date: 2025-06-05 13:08:21
Score: 5.5
Natty:
Report link

tried this on postgresql

--Syntax
SELECT 
LOWER(REGEXP_REPLACE(<CamelCaseExample>, '([a-z0-9])([A-Z])', '\1_\2', 'g')) AS snake_case;

--Example
SELECT 
LOWER(REGEXP_REPLACE('CamelCaseExample', '([a-z0-9])([A-Z])', '\1_\2', 'g')) AS snake_case;

--On all records in any table
with my_table (camelcase) as (
  values ('StackOverflow'), 
         ('Stackoverflow'), 
         ('stackOverflow'), 
         ('StackOverFlowCom'), 
         ('stackOverFlow')
)
select camelcase, trim(both '_' from lower(regexp_replace(camelcase, '([a-z0-9])([A-Z])', '\1_\2', 'g'))) as snake_case
from my_table;

Just FYI, a) REGEXP_REPLACE finds places where a lowercase letter or digit is followed by an uppercase letter. b) It inserts an underscore (_) between them. c) LOWER() converts the entire result to lowercase.

output
enter image description here

Reasons:
  • Blacklisted phrase (1): StackOverflow
  • Blacklisted phrase (1): Stackoverflow
  • Blacklisted phrase (1): stackOverflow
  • Blacklisted phrase (1): StackOverFlow
  • Blacklisted phrase (1): stackOverFlow
  • Probably link only (1):
  • Long answer (-0.5):
  • Has code block (-0.5):
  • Low reputation (0.5):
Posted by: Gurupreet Singh Bhatia

79654508

Date: 2025-06-05 13:07:21
Score: 3
Natty:
Report link

I know this is an old question, but the answer is sadly NO.

An example of two issues in different repos with the same comment ID:

https://github.com/dotnet/yarp/pull/459#discussion_r509375552

https://github.com/dotnet/runtime/issues/3453#issuecomment-509375552

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

79654506

Date: 2025-06-05 13:05:20
Score: 0.5
Natty:
Report link

If the legend displays the color scale accurately, then it is an effective legend. if your data is continuous interval level data then a color map is suitable.

if you have continuous data but need a limited set of discrete shades of color (out of accessibility requirements, for example) you may consider binning the data into buckets of, say, 0%, 25%, 50%, 75% and 100%, and map these to 5 different shades of a single color. You should be aware of drawbacks to this method in certain scenarios however, because outside of your visualization, these arbitrary cutoffs may not be meaningful to users.

But if the instruction is to simply include a legend, there are many types of legends to meet this standard and the one you choose should reflect the scale of whatever kind of data you are displaying.

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

79654504

Date: 2025-06-05 13:04:20
Score: 1
Natty:
Report link
protected override void OnInitialized()
{
    if(RendererInfo.IsInteractive == false)
    {
        // Pre-Rendering
    }
    else if (OperatingSystem.IsBrowser())
    {
        // WebAssembly
    }
    else
    {
        // Server
    }
}
Reasons:
  • Low length (0.5):
  • Has code block (-0.5):
  • Low reputation (1):
Posted by: lolhans

79654497

Date: 2025-06-05 13:01:19
Score: 3.5
Natty:
Report link

I've been stuck with the same issue for days, but the cause was something else.
Default odoo uses non-patched wkhtmltopdf.
This causes issues on newer systems.

The patched version on it's turn requires libssl1.1 (not libssl3), which is also not by default available in recent ubuntu server versions.

Steps to solve:

  1. Remove current installation:
    sudo apt remove --purge wkhtmltopdf

  2. Download and install libssl1.1
    wget http://archive.ubuntu.com/ubuntu/pool/main/o/openssl/libssl1.1_1.1.0g-2ubuntu4_amd64.debsudo dpkg -i libssl1.1_1.1.0g-2ubuntu4_amd64.deb

  3. Download and install qkhtmltopdf (with patched Qt)
    wget https://github.com/wkhtmltopdf/packaging/releases/download/0.12.6.1-2/wkhtmltox_0.12.6.1-2.jammy_amd64.deb
    sudo apt install ./wkhtmltox_0.12.6.1-2.jammy_amd64.deb

This solved it on my side!

Reasons:
  • Long answer (-0.5):
  • No code block (0.5):
  • Me too answer (2.5): stuck with the same issue
  • Low reputation (1):
Posted by: Jef Fabri

79654495

Date: 2025-06-05 13:00:18
Score: 2
Natty:
Report link

Most likely the the timestamp value is not set when you created the data view.

You can go to Management > Kibana > Data Views. Edit your data view and set the timestamp.

Reasons:
  • Low length (1):
  • No code block (0.5):
  • Low reputation (0.5):
Posted by: Murat K.

79654486

Date: 2025-06-05 12:55:18
Score: 0.5
Natty:
Report link

As mentioned in MSDOC,

Azure DevOps Server 2019 and later versions support integration with GitHub Enterprise Server repositories only. Integration with other Git repositories is not supported.

If you are using Azure DevOps Server 2019 or 2020 versions, GitHub.com is not supported, you have to authenticate using GitHub Enterprise Server with PAT or GitHub credentials.

Reasons:
  • Long answer (-0.5):
  • Has code block (-0.5):
  • Me too answer (2.5): get the same error
  • High reputation (-1):
Posted by: Pravallika KV

79654478

Date: 2025-06-05 12:50:16
Score: 3
Natty:
Report link

So this doesn't work for me as well

tomSelect.settings.plugins = ["remove_button"];

So i've found this in the doc and it works for me.

https://tom-select.js.org/plugins/remove-button/#remove-button

new TomSelect('#input-tags',{
    plugins: {
        remove_button:{
            title:'Remove this item',
        }
    },
    
});
    
Reasons:
  • Whitelisted phrase (-1): works for me
  • RegEx Blacklisted phrase (2): doesn't work for me
  • Probably link only (1):
  • Low length (0.5):
  • Has code block (-0.5):
  • Low reputation (1):
Posted by: Lk dev

79654468

Date: 2025-06-05 12:48:16
Score: 1.5
Natty:
Report link

According to your error message from pip, the maximum version of torch that you're allowed to install is 2.2.2. From what I see on PyPI, it seems that 2.2.2 was the last version for which they released wheels for MacOS 10.9+ (see for example that the list of wheels for 2.3.0 does not contain [...]-macosx_10_9[...].whl, but the list of wheels for 2.2.2 does).

What is your MacOS version? If my understanding is correct, the only version of PyTorch 2.7.1 available for Python 3.9 and MacOS is torch-2.7.1-cp39-none-macosx_11_0_arm64.whl, so you will need MacOS 11 or newer for it to work.

Reasons:
  • Blacklisted phrase (1): What is your
  • Long answer (-0.5):
  • Has code block (-0.5):
  • Contains question mark (0.5):
  • Low reputation (1):
Posted by: Valérian Rey

79654458

Date: 2025-06-05 12:43:14
Score: 2
Natty:
Report link

You should download the reference genome and GTF files from ENSEMBL (and NOT ENCODE), and then use those files directly in the "nextflow run ..." command. There are some differences in the columns of reference genome or GTF files in ENCODE and ENSEMBL, and the ENSEMBL format is considered as a correct format for nf-core/rnaseq pipeline.

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

79654455

Date: 2025-06-05 12:40:13
Score: 3
Natty:
Report link

Might be late and a non-issue for you but anyone else watching: You can do a router.replace and a useEffect to validate if someone else tries to access froma bookmarked link

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

79654440

Date: 2025-06-05 12:32:11
Score: 1
Natty:
Report link

The capture groups are indexed based on their absolute position in the string, not the order they are encountered. So (match-string 2) will return the match data for the second captured group "2".

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

79654423

Date: 2025-06-05 12:26:09
Score: 6 🚩
Natty:
Report link

IMHO, there might be issues concerning the bundle configuration. As recommended on the DoctrineExtensions documentation page, did you follow the installation method shown here https://symfony.com/bundles/StofDoctrineExtensionsBundle/current/index.html ?

Reasons:
  • Low length (1):
  • No code block (0.5):
  • Ends in question mark (2):
  • Single line (0.5):
  • Looks like a comment (1):
  • Low reputation (1):
Posted by: Marilena RUFFELAERE

79654412

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

If someone is still trying to solve this, you need to use Apps> Google Workspace> Gmail>Confomity, not Apps> Google Workspace> Gmail> Routing.

Go to "Content conformity" or whatever this is called in english. Clic add a rule.

Assuming your group address is [email protected]:

Step 1: Select "Outgoing" and "Internal - send"

Step 2: select "ALL of the following match the message"

a) Clic "Add" → "Advanced content match" → Position "Sender header" → "Matches regex" and add the following regular expression: (?i)group@domain\.com

Validate it, and then

b) "Add" → "Advanced content match" → Position "Recipients header" → "Not matches regex" and add the following regular expression: (?i)group@domain\.com

The (?i) part is probably not mandatory but it does not hurt.

The b) test can probably also be skipped, since adding [email protected] as a recipient if the address is already within the recipients list won't change anything.

Step 3: "Also deliver to": [email protected]

Save.

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

79654410

Date: 2025-06-05 12:17:06
Score: 0.5
Natty:
Report link

As a workaround, we ended up using the following command instead of the mentioned command:

npm --allow-same-version --no-git-tag-version version $(git describe --tags --abbrev=0 --match "v*")

In other words, calling git describe instead of using from-git.

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

79654395

Date: 2025-06-05 11:59:01
Score: 1
Natty:
Report link

Thank you for the details. The error usually means there’s a mismatch or missing configuration between your Teams app manifest, Azure AD app registration, or OAuth connection.

Key things to check:

  1. Manifest botId matches Azure AD App Registration
// manifest.json
"bots": [
  {
    "botId": "<your-azure-ad-app-client-id>",
    "scopes": [
      "personal",
      "team",
      "groupChat"
    ],
    "supportsFiles": false,
    "isNotificationOnly": false
  }
],
"validDomains": []
  1. OAuth Connection Name matches in code and Azure
# In your bot code (Python)
OAUTH_CONNECTION_NAME = "YourConnectionName"  # Must match Azure Bot OAuth connection name
# When sending OAuth card
await step_context.prompt(
    OAuthPrompt.__name__,
    PromptOptions(
        prompt=Activity(
            type=ActivityTypes.message,
            text="Please sign in",
        )
    ),
)
  1. Azure Bot OAuth Connection Settings

    • In Azure Portal, go to your Bot resource > Settings > OAuth Connection Settings.

    • The connection name must match what you use in your code.

References:

If you’ve checked these and still see the error, try clearing Teams cache or reinstalling the app.

Thank you,

Karan Shewale.

Reasons:
  • Blacklisted phrase (0.5): Thank you
  • Contains signature (1):
  • Long answer (-1):
  • Has code block (-0.5):
  • Low reputation (1):
Posted by: KARAN