79324307

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

Because you redirect to another page, the page that you have the its not anymore in DOM => so normally the toast its not there as well.

You have to put the toast at the top component (root = what belong with / in your app), otherwise put the toast at the component you want to display it and initialize it on constructor or lifecycle

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

79324303

Date: 2025-01-02 16:05:06
Score: 2
Natty:
Report link

Same problem here. I also use kickstarter, I also come from vscode, and I also doesn't know why I don't just go back. Same error messages, same everything. The only difference, is that when I tried it with ast-grep, sometimes it worked. I even checked, and treesitter downloaded the c, cpp, html, python files (I'm most interested in those working). I tried ast_grep with html, and it didn't throw an error, but when I messed something up, it didn't tell me. When I tried pyright with python, it didn't work. I tried clang with, cpp, it also didn't work. I'm trying to fix it, but so far nothing worked. I'm on windows if that helps.

Reasons:
  • Whitelisted phrase (-1): it worked
  • RegEx Blacklisted phrase (1): Same problem
  • RegEx Blacklisted phrase (1): Same error
  • Long answer (-0.5):
  • No code block (0.5):
  • Low reputation (1):
Posted by: Flórián Filkóházi

79324298

Date: 2025-01-02 16:04:06
Score: 1.5
Natty:
Report link

This error may happen when R.class has trouble mapping the IDs. Try adding the following two lines in your gradle.properties

android.nonTransitiveRClass=false

android.nonFinalResIds=false

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

79324294

Date: 2025-01-02 16:02:06
Score: 3.5
Natty:
Report link

Is it possible to check "What is the installation date module has installed in your local computer? The below line is not showing this.

Find-Module -Name MsIdentityTools | Select-Object -Property Name,PublishedDate

Reasons:
  • Blacklisted phrase (1): Is it possible to
  • Low length (0.5):
  • No code block (0.5):
  • Contains question mark (0.5):
  • Starts with a question (0.5): Is it
  • Low reputation (0.5):
Posted by: Manas Dash

79324289

Date: 2025-01-02 15:57:05
Score: 1
Natty:
Report link

fs.writeFile is an asynchronous function. So I think this means that the handler ends without waiting for the writing function to resolve.

You can either:

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

79324288

Date: 2025-01-02 15:57:05
Score: 3.5
Natty:
Report link

Answering for posterity: if your bundle has the same version name (verify in the app bundle explorer section) just create a new release and they will be merged automaticaly

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

79324287

Date: 2025-01-02 15:57:04
Score: 4
Natty:
Report link

The Solution suggested by JayshankarGS works. I have added another PDF with more pages and the job finished:

enter image description here

The vector was created:

enter image description here

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

79324284

Date: 2025-01-02 15:56:04
Score: 1.5
Natty:
Report link

You can use reactive forms and check if the specific input is valid or not and use it to the next input.

https://stackblitz.com/edit/angular-8-reactive-form-validation-oybffrk8?file=app%2Fapp.component.ts&file=app%2Fapp.component.html

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

79324269

Date: 2025-01-02 15:50:02
Score: 2.5
Natty:
Report link

It turns out the region was not set correctly, I corrected the region and it worked. It would be great if aws can give more relevant error message.

Reasons:
  • Whitelisted phrase (-1): it worked
  • Low length (1):
  • No code block (0.5):
  • Self-answer (0.5):
  • Single line (0.5):
  • Low reputation (1):
Posted by: Jeff Xu

79324267

Date: 2025-01-02 15:50:02
Score: 1.5
Natty:
Report link

As mentioned in https://stackoverflow.com/a/55146310 OTHER type can be used instead of VARCHAR for enums.

For Spring Data JDBC it can be achieved with a custom converter.

@Configuration
public class CustomJdbcConfiguration extends AbstractJdbcConfiguration {

    @Override
    @Nonnull
    protected List<?> userConverters() {
        return List.of(new MyEnumConverter());
    }

    @WritingConverter
    public static class MyEnumConverter implements Converter<MyEnum, JdbcValue> {
        @Override
        public JdbcValue convert(@Nonnull MyEnum source) {
            return JdbcValue.of(source, JDBCType.OTHER);
        }
    }
}
Reasons:
  • Blacklisted phrase (1): stackoverflow
  • Long answer (-0.5):
  • Has code block (-0.5):
  • Unregistered user (0.5):
  • Low reputation (1):
Posted by: kolqw1

79324256

Date: 2025-01-02 15:45:01
Score: 0.5
Natty:
Report link

List not sieve. I think a little faster.

pTable = lambda n: (n>1)*[2] + (n>2)*[3] + [x for x in range(5,n+1) if (x%6 in [1,5]) and all((x%y != 0 and x%(y+2) !=0) for y in range(5,int(x**0.5)+1,6))]
print(pTable(10**3))
Reasons:
  • Low length (0.5):
  • Has code block (-0.5):
  • Low reputation (0.5):
Posted by: Andy Richter

79324241

Date: 2025-01-02 15:40:00
Score: 2.5
Natty:
Report link

In case some is struggling with $pull operator my problem was that I forgot to add the nested array inside the schema, so Mongoose can't recognize it and delete it.

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

79324231

Date: 2025-01-02 15:36:59
Score: 1.5
Natty:
Report link

enter image description here

the problem is that you get the same file_id, as you can see in the image, and the file_unique_id, that is different, but useless

You can't send the image with the best quality. Official Teleram Bot API documentation has no endpoint that recieves file_unique_id as a parameter (as january 2025)

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

79324214

Date: 2025-01-02 15:32:58
Score: 0.5
Natty:
Report link

what is the purpose of PoolDataSource.close()? Do you want to close all connections present in pool when your application shuts down? If yes, You can use UniversalConnectionPoolManager API to destroy the connection pool. PLease refer below javadoc for the same: https://docs.oracle.com/en/database/oracle/oracle-database/19/jjucp/overview-using-ucp-manager.html#GUID-3C734CAE-3DF8-4AC7-ADAA-925EF9BFF38D

Please note that the UCP automatically closes all connections on JVM exit using JVM shutdown hooks.

Reasons:
  • Whitelisted phrase (-1.5): You can use
  • No code block (0.5):
  • Contains question mark (0.5):
  • Starts with a question (0.5): what is the
  • Low reputation (0.5):
Posted by: Saurabh Verma

79324207

Date: 2025-01-02 15:29:57
Score: 4
Natty:
Report link

I'm a new account so can't reply to existing answers, but this script works well, but the end-users' machines are now showing as "Needs new driver" after the driver change. What's the fix for that? We push out the printers through Group Policy. We had to revert back the driver until we can figure this out.

Reasons:
  • RegEx Blacklisted phrase (1.5): fix for that?
  • No code block (0.5):
  • Contains question mark (0.5):
  • Single line (0.5):
  • Low reputation (1):
Posted by: user29026137

79324204

Date: 2025-01-02 15:28:57
Score: 2
Natty:
Report link

DS-PA0103 doesn't support the ISAPI protocol afaik. I tested the non B type and all the mentioned ISAPI requests failed. also those speakers are not compatible with the new HCP versions and NVRs anymore. if you have found a solution I would be happy to get to know about it since im investigating this too currently.

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

79324200

Date: 2025-01-02 15:26:56
Score: 1
Natty:
Report link

I encountered the same error as you did. Linking with g++ instead of gcc or ld solved the issue for me.

My steps:

swig -python -c++ example.i
g++ -O2 -fPIC -c example.c
g++ -O2 -fPIC -c example_wrap.cxx -I /usr/include/python2.7
g++ -shared example.o example_wrap.o -o _example.so
Reasons:
  • Low length (0.5):
  • Has code block (-0.5):
  • Low reputation (1):
Posted by: Zaragesh

79324199

Date: 2025-01-02 15:25:56
Score: 0.5
Natty:
Report link

This seems to be a bug in Windows SDK version 10.0.26100.0, which defines NAN as a call to __ucrt_int_to_float() instead of as a constant. It is being tracked here.

As a workaround one can define _UCRT_NOISY_NAN to enable the legacy definition of the NAN macro, which can be seen here.

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

79324195

Date: 2025-01-02 15:25:56
Score: 2.5
Natty:
Report link

Have you tried the following options?

In any case, what does your tsconfig file look like?

Reasons:
  • Whitelisted phrase (-1): Have you tried
  • Low length (1):
  • Has code block (-0.5):
  • Ends in question mark (2):
  • Low reputation (1):
Posted by: Hugo Martinet

79324190

Date: 2025-01-02 15:24:56
Score: 2.5
Natty:
Report link

So in order to retrieve the entity for the lookup field you could pass a header in the webAPI request.

It should be like this: Header Parameter

and then you should get all the logical names in the response:

Response using this header parameter

and this way you can set your odata bind dynamically in your code.

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

79324186

Date: 2025-01-02 15:23:55
Score: 3
Natty:
Report link

In the Report Footer Section add text box. In the Property Sheet for Text box set 'Control Source'=Count(*)

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

79324176

Date: 2025-01-02 15:19:55
Score: 2.5
Natty:
Report link

While not a direct solution for your server-side approach, you could consider using a browser extension WebLabeler: Environment Marker & Indicator) to visually indicate the environment (e.g., "TEST" or "PROD"). This adds a persistent label at the top or bottom of the page, unaffected by AJAX or server-side changes.

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

79324174

Date: 2025-01-02 15:18:54
Score: 3.5
Natty:
Report link

The reason was that segments of hls are not png files, but they have headers (first 8 bytes) like png files. I just removed first 8 bytes, and it works. Source: https://github.com/xbmc/inputstream.ffmpegdirect/issues/100?ysclid=m5feoz1irw450917629#issuecomment-828988158

The only questions are:

  1. Why does the streaming server mask video segments? Perhaps for security reasons?
  2. What other formats do streaming servers use to hide video files?
Reasons:
  • No code block (0.5):
  • Ends in question mark (2):
  • Self-answer (0.5):
  • Low reputation (0.5):
Posted by: Maxim

79324170

Date: 2025-01-02 15:15:53
Score: 1
Natty:
Report link

What about using a single required input whose model is typed in a way to make a sub-property required based on the other property's value?

Something like:

interface InputBase {
  fruitType: 'apple' | 'banana';
  fruitColor?: string; // notice that this is optionnal in the base interface
}

interface InputApple extends InputBase {
  fruitType: 'apple';
  fruitColor: string; // notice that this is now required if fruitType value is 'apple'
}

interface InputBanana extends InputBase {
}

export type InputType = InputBanana | InputApple; // this is the type you use

That way, your input would, through TypeScript validation, make sure that some property is required only if another value is x.

Reasons:
  • Long answer (-0.5):
  • Has code block (-0.5):
  • Contains question mark (0.5):
  • Starts with a question (0.5): What
  • Low reputation (1):
Posted by: Olivier

79324164

Date: 2025-01-02 15:12:53
Score: 1
Natty:
Report link

For me, the issue has been resolved by adding a root endpoint that just returns the response ok in my asp.net web API project. app.MapGet("/", () => Results.Ok());

As my requirement was to keep the server always on. But if the requirement is flexible then the option Always On can be turned off.

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

79324156

Date: 2025-01-02 15:08:52
Score: 0.5
Natty:
Report link

I guess it is an issue with the awsmobile config object, can you try adding the following keys?

 "aws_appsync_graphqlEndpoint": "https://your.appsync-api.ap-south-1.amazonaws.com/graphql",
  "aws_appsync_region": "ap-south-1",
  "aws_appsync_authenticationType": "AMAZON_COGNITO_USER_POOLS"
Reasons:
  • Whitelisted phrase (-2): can you try
  • Low length (0.5):
  • Has code block (-0.5):
  • Ends in question mark (2):
  • Low reputation (0.5):
Posted by: Jairo Py

79324155

Date: 2025-01-02 15:07:52
Score: 0.5
Natty:
Report link

There is several ways o do this, pick your poison:

  1. Environment Variables: Use environment variables to store API keys outside of your source code. Reference them in your app's configuration.
  2. Ionic Storage: Use Ionic Storage with optional encryption to securely store data locally on the device.
  3. Secure Storage Plugins: Utilize plugins like cordova-plugin-secure-storage-echo for secure key storage on iOS and Android.
  4. Backend Proxy: Create a backend service that handles API requests, keeping API keys on the server side instead of the client.
  5. Database Storage Store API keys in a database with encryption, centralized management, access control, and audit trails for better protection.
Reasons:
  • Long answer (-0.5):
  • No code block (0.5):
  • Low reputation (0.5):
Posted by: StackOverHoes

79324154

Date: 2025-01-02 15:07:52
Score: 3
Natty:
Report link

just comment or remove model/table class and run py manage.py makemigrations and py manage.py migrate. it will automatically remove/drop that table.

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

79324152

Date: 2025-01-02 15:06:51
Score: 2.5
Natty:
Report link

Here's a GitHub issue I created about this problem (there's also a PR I created that is linked in there): https://github.com/python/cpython/issues/128388

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

79324139

Date: 2025-01-02 15:02:50
Score: 4
Natty:
Report link

And here are the visuals for the answers KevinMCaroll mentioned.

enter image description here

enter image description here

enter image description here

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

79324112

Date: 2025-01-02 14:55:48
Score: 2.5
Natty:
Report link

probably because there is only one widget on this window you might wanna use padx and pady in your grid function

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

79324105

Date: 2025-01-02 14:54:48
Score: 1
Natty:
Report link

Although the HC-05 Bluetooth module uses 'Bluetooth classic' technology, you are trying to discover the module using 'Bluetooth LE' technology, which is incompatible.

You should probably use a library such as bluetooth_classic or flutter_blue_classic

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

79324081

Date: 2025-01-02 14:51:47
Score: 0.5
Natty:
Report link

From the https://stackoverflow.com/a/54928828/13963150:

Headers are limited for CORS requests. See https://stackoverflow.com/a/44816592/2047472

(Use access-control-expose-headers to allow exposing headers to requests from a different origin.)

To expose a header using the CORS plugin, you can use the exposeHeader method.

Reasons:
  • Blacklisted phrase (1): stackoverflow
  • Whitelisted phrase (-1.5): you can use
  • Probably link only (1):
  • Low length (0.5):
  • No code block (0.5):
  • High reputation (-1):
Posted by: Aleksei Tirman

79324080

Date: 2025-01-02 14:51:47
Score: 2.5
Natty:
Report link

Body of minerals is higher than the rest of body condensing waste for minerals phosphorus fibers condensed over hash of the same brick if sensemila “sack of ribbons” demonstration.

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

79324077

Date: 2025-01-02 14:50:46
Score: 3
Natty:
Report link

I got the exact same error.I was using mlflow through Dagshub. Solved this error by changing the tracking_uri of mlflow by changing the repository in dagshub. I think something was wrong with the repository that's why this error was arising.

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

79324074

Date: 2025-01-02 14:50:46
Score: 1
Natty:
Report link

As Document says You can provide multiple paths separated by commas so could you try apps/frontend/green-app,apps/backend/green-app?

And note that

codeqlpathstoinclude setting applies only when you run the CodeQL tasks on an interpreted language (Python, Ruby, and JavaScript/TypeScript).

Reasons:
  • Low length (0.5):
  • Has code block (-0.5):
  • Contains question mark (0.5):
  • Low reputation (0.5):
Posted by: AhmadYo

79324068

Date: 2025-01-02 14:49:46
Score: 2.5
Natty:
Report link

there's a reported bug about this

For now, I manually edited those two daemonsets after deploying and added the tolerations :/

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

79324055

Date: 2025-01-02 14:47:45
Score: 4
Natty:
Report link

This may suffice your need for test reports download direct from your testrigor account.

enter image description here

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

79324041

Date: 2025-01-02 14:44:43
Score: 4.5
Natty: 6
Report link

happy new year, I have been asked by my boss to copy Trac-Wiki from an old RHEL7 vServer to a RHEL8 vServer. I am not allowed to download any software from the internet, the only option is for me to copy and install Trac from the old to the new server.

My new RHEL8 vServer already has Python3 installed and httpd (Apache) running.

When I use scp to copy data/folders from the old server to the new one, I can't run trac with dnf/yum install trac. I can't do it with pip3 either.

I have been searching for three months and can't find anything.

Does anyone know of a case like this? I really need a step by step guide because I can't figure it out.

Thank you very much

Reasons:
  • Blacklisted phrase (0.5): Thank you
  • RegEx Blacklisted phrase (2): Does anyone know
  • Long answer (-0.5):
  • No code block (0.5):
  • Contains question mark (0.5):
  • Unregistered user (0.5):
  • Low reputation (1):
Posted by: Medrik

79324037

Date: 2025-01-02 14:43:43
Score: 2
Natty:
Report link

I added my SecurityConfig class with @Import and it wokred, maybe it helps you, Spring wasn't loading it with my tests:

@Import(SecurityConfig.class)
Reasons:
  • Low length (1):
  • Has code block (-0.5):
  • User mentioned (1): @Import
  • Low reputation (0.5):
Posted by: Ricardo Romero Benítez

79324030

Date: 2025-01-02 14:41:42
Score: 0.5
Natty:
Report link

As answered here, use:

self.app = QApplication(sys.argv + ['--no-sandbox'])

Also unless there is a specifc reason that you are using PyQt6 for this, this website shows multiple far simpler ways to screenshot a website using Python.

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

79324029

Date: 2025-01-02 14:40:42
Score: 0.5
Natty:
Report link

I wanted to chime in here, this may or may not directly answer the initial question, but solved it for me and should be helpful for those looking to use remote IPMI with Dell R740xd or similar server using iDRAC9. Since I landed on this question in my search, I expect others will to.

In the Web iDRAC go to "iDRAC Settings"/"Connectivity"/"IPMI Settings." This can be simplified by searching for "IPMI Settings" in the upper right hand Search box. Make sure "Enable IPMI Over LAN" is "Enabled." Set your privilege as needed, for me it was "Administrator." Then either set the "Encryption Key" or copy it; this is needed for the command below.

You also need a valid iDRAC Username and Password, it does not work without these. For me I used the same credentials(root) I use in the iDRAC to login, but I expect you could add a specific user for IPMI if desired. The main points are that iDRAC9 IPMI uses "lanplus" as the interface, requires a valid User&Pass and the configured encryption key used as the "hex_key" in the ipmitool command.

ipmitool -I lanplus -H "hostname or IP of iDRAC" -U root -P "your passwd here" -y "encryption key from iDRAC" power status

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

79324024

Date: 2025-01-02 14:39:41
Score: 3
Natty:
Report link

Ok the answer was really dumb. my json format was wrong.

when I removed:

"rows": [ {

stuff started to work... face palm

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

79324018

Date: 2025-01-02 14:36:40
Score: 2
Natty:
Report link

You can further make it more controllable in situation when it does not appear so it should not show a failure step.

click "Allow" if exists

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

79324017

Date: 2025-01-02 14:36:40
Score: 0.5
Natty:
Report link
import sys
import polars as pl

def sizeof_fmt(num, suffix='B'):
    ''' by Fred Cirera,  https://stackoverflow.com/a/1094933/1870254, modified'''
    for unit in ['','Ki','Mi','Gi','Ti','Pi','Ei','Zi']:
        if abs(num) < 1024.0:
            return "%3.1f %s%s" % (num, unit, suffix)
        num /= 1024.0
    return "%.1f %s%s" % (num, 'Yi', suffix)

def find_polars_dataframes():
    polars_dfs = []
    for name, value in list(locals().items()):
        if isinstance(value, pl.DataFrame) and hasattr(value, 'estimated_size'):
            size = value.estimated_size()
            polars_dfs.append((name, size))
    return polars_dfs

polars_dataframes = find_polars_dataframes()

for name, size in sorted(polars_dataframes + [(name, sys.getsizeof(value)) for name, value in list(locals().items()) if not hasattr(value, 'estimated_size')], key=lambda x: -x[1])[:10]:
    print("{:>30}: {:>8}".format(name, sizeof_fmt(size)))

output:

            sizeof_fmt:  152.0 B
find_polars_dataframes:  152.0 B
              __file__:   89.0 B
          __builtins__:   72.0 B
                   sys:   72.0 B
                    pl:   72.0 B
       __annotations__:   64.0 B
              __name__:   57.0 B
            __loader__:   56.0 B
     polars_dataframes:   56.0 B

(though I suspect I'm missing something...)

Reasons:
  • Blacklisted phrase (1): stackoverflow
  • Long answer (-1):
  • Has code block (-0.5):
  • Low reputation (1):
Posted by: BlackOpsREPL

79324009

Date: 2025-01-02 14:30:39
Score: 1.5
Natty:
Report link

The Chipotle Menu offers a diverse selection of fresh and customizable Mexican-inspired dishes. From flavorful burritos, tacos, and bowls to refreshing salads and sides, there’s something to satisfy every craving. Each item is made with high-quality ingredients, including responsibly sourced meats, fresh produce, and signature salsas. Whether you prefer a classic chicken burrito or a vegetarian bowl with guacamole, the Chipotle menu allows you to create your perfect meal. Explore the full menu and discover your favorites today.

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

79324006

Date: 2025-01-02 14:30:39
Score: 2.5
Natty:
Report link

Could it be due to the fact that you have two <system.webServer> sections? Perhaps combining them into a single section would resolve the issue (while being more concise).

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

79323999

Date: 2025-01-02 14:27:38
Score: 1.5
Natty:
Report link

Added _layout.tsx to my app folder root. And below code.

<Stack screenOptions={{ headerShown: false }} />

this fixed my issue.

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

79323998

Date: 2025-01-02 14:27:38
Score: 1
Natty:
Report link

I found a work around for this when setting up token acquisition in the Program.CS file. The error is caused because the hosted service is a singleton but the token acquisition is a scoped service. This stops the error since the Token generation happens as a singleton.

 .AddTokenAcquisition(isTokenAcquisitionSingleton: true)
Reasons:
  • Has code block (-0.5):
  • Unregistered user (0.5):
  • Low reputation (1):
Posted by: user29025364

79323986

Date: 2025-01-02 14:22:37
Score: 1
Natty:
Report link
 $('#from_date').datepicker({
            format: 'mm/dd/yyyy',
            autoclose: true,
            todayHighlight: true
        }).datepicker('setDate', new Date())
        .on('changeDate', function() {
            $(this).datepicker('hide');
 });
Reasons:
  • Low length (0.5):
  • Has code block (-0.5):
  • Low reputation (1):
Posted by: premod suraweera

79323983

Date: 2025-01-02 14:21:36
Score: 0.5
Natty:
Report link

#121346 - Propagate temporary lifetime extension into if and match expressions. newly allows temporary lifetime extensions through if and match it was introduced in 1.79.0

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

79323982

Date: 2025-01-02 14:21:36
Score: 2
Natty:
Report link

Make sure the given url is enclosed with pare of double quotes such as

open url "https://google.com"

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

79323980

Date: 2025-01-02 14:20:36
Score: 3.5
Natty:
Report link

I reinstalled python 3.13 and the software and it works. Whatever doesn't work in 3.10 works fine in 3.13.

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

79323973

Date: 2025-01-02 14:17:35
Score: 2.5
Natty:
Report link

Now, AWS ALB introduced the support to hide the server header.

Here the official blog post: https://aws.amazon.com/about-aws/whats-new/2024/11/aws-application-load-balancer-header-modification-enhanced-traffic-control-security/

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

79323972

Date: 2025-01-02 14:17:35
Score: 1
Natty:
Report link

Today, before lunch, I decided to investigate the issue again. I checked the FritzBox to see which devices were connected via WiFi. After lunch, we started debugging the problem again.

To our surprise, the remote connection worked perfectly!

I reviewed the list of WiFi connections and noticed that three items labeled "wlan0" were no longer connected. Long story short (and I'm so happy we finally solved this!):

The issue was caused by three "prios smart lighting" light bulbs!

What is going on here...?

We both noticed a pattern: her remote connection was often bad during bad weather. Naturally, I had my office lights on during those times.

I hope this discovery helps others experiencing VPN disconnects or poor remote PC performance while working from home. And if anyone can explain how these "smart" light bulbs are causing this issue, please enlighten me!

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

79323970

Date: 2025-01-02 14:17:35
Score: 0.5
Natty:
Report link

You need to remove the following line from your Vite configuration file.

 resolve: {
    mainFields: ["browser"],
  }

At least it should resolve the first console error Error: Element type is invalid: expected a string (for built-in components) or a class/function (for composite components) but got: object.

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

79323962

Date: 2025-01-02 14:15:35
Score: 1
Natty:
Report link

Use BoxWithConstraints for adjusting the font size and getting screen size constraints. And for measuring purpose, you can use TextMeasurer or onTextLayout callback to determine if your texts are fitting within the available width and also set a minimum font size to avoid text becoming unreadable.

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

79323959

Date: 2025-01-02 14:14:34
Score: 10
Natty: 7.5
Report link

I am stuck with this, too. Did you figure out a soultion for this?

Reasons:
  • RegEx Blacklisted phrase (1.5): I am stuck
  • RegEx Blacklisted phrase (3): Did you figure out a
  • Low length (1.5):
  • No code block (0.5):
  • Ends in question mark (2):
  • Single line (0.5):
  • Low reputation (1):
Posted by: uferscar

79323955

Date: 2025-01-02 14:12:33
Score: 0.5
Natty:
Report link

Middleware logic

function isLoggedIn(params){
return function(req, res, next){
// middleware logic with param(s)}
}

Code logic

app.get(endpoint,isLoggedIn(params),function (req,res){
//endpoint logic
})
Reasons:
  • Low length (0.5):
  • Has code block (-0.5):
  • Low reputation (0.5):
Posted by: user9888797

79323954

Date: 2025-01-02 14:12:32
Score: 4.5
Natty:
Report link

thx. but it still doesn´t work after the correction.

greetings

thomas

Reasons:
  • Blacklisted phrase (1): thx
  • Low length (1.5):
  • No code block (0.5):
  • Self-answer (0.5):
  • Low reputation (1):
Posted by: tom

79323939

Date: 2025-01-02 14:05:31
Score: 1
Natty:
Report link

While I did not find the solution to my problem, I found the location where my app data can be cleared (which is my main concern). From Google Drive, go to Settings > Manage Apps > Find your listed app. From there, under "OPTIONS", you can "Delete hidden app data".

For the moment, this will be sufficient.

The behaviour I was looking for from WhatsApp seems to be implemented with a different mechanism that still awaits to be discovered. In Storage Manager, WhatsApp backup data is stored under "Clean up other items", while my app data appears to be included with "Google Drive". I'm still not sure what WhatsApp is doing, but it seems to go beyond the standard implementation for Google Drive API.

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

79323936

Date: 2025-01-02 14:03:31
Score: 2
Natty:
Report link

like the other answers already mention, this is of course perfectly valid, but sadly it can confuse symbolic (graphical) debuggers that are badly implemented like the one used in Visual Studio

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

79323933

Date: 2025-01-02 14:03:30
Score: 4
Natty:
Report link

Python 3.13 is not currently supported by psycopg2 and psycopg2-binary on Windows machine.

https://stackoverflow.com/a/79301345/22029327


Installed 3.12 and everything worked fine

Reasons:
  • Blacklisted phrase (1): stackoverflow
  • Low length (1):
  • No code block (0.5):
  • Self-answer (0.5):
  • Low reputation (1):
Posted by: Kitaram

79323932

Date: 2025-01-02 14:03:30
Score: 3
Natty:
Report link

Verify the workspace of the two classes, also verify that the PauseMenu class is accessed from the GameManagerScript class, and verify that the GameIsPaused method is public

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

79323928

Date: 2025-01-02 14:02:30
Score: 1
Natty:
Report link

I think you are using the wrong dependency artifactId lombok-maven-plugin, it should be:

<dependency>
    <groupId>org.projectlombok</groupId>
    <artifactId>lombok</artifactId> 
    <version>1.18.20</version>
    <scope>provided</scope>
</dependency>

Also you should not need the plugin at the end.

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

79323926

Date: 2025-01-02 14:02:30
Score: 0.5
Natty:
Report link

For anyone who still trying to do this: there is an alternative way to do this, by using a print server program like DirectBrowserPrint.

This program runs a small print server and has a JavaScript API which allows to print PDF, JPG, GIF and PNG files / blobs directly from webpage. This includes choosing a specific printer or using alternative settings. For developer info, you can check this page.

I hope it helps.

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

79323923

Date: 2025-01-02 14:01:29
Score: 1.5
Natty:
Report link

The workaround for this is create a folder with any name and move the Test Suite which is needs to be deleted. Though its not exactly fulfilling the requirement, however at least it can remove the test suite from the list.

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

79323922

Date: 2025-01-02 14:01:29
Score: 1
Natty:
Report link

I encountered this error in a year-long project, and the solution was to reinstall and run it with different Node.js versions. For my project, Node.js version 18.18.2 turned out to be the ideal choice, If you encounter errors with newer Node.js releases, it usually means certain dependencies or packages in your project aren’t yet compatible with the latest version.

Try to use NVM (Node Version Manager). It lets you easily install, manage, and switch between multiple Node.js versions on the same machine, making it perfect for handling projects with different requirements.

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

79323917

Date: 2025-01-02 14:00:29
Score: 1.5
Natty:
Report link

Basically, it is because they used sampling, so they drew a sample using the probability distribution given by softmax, which can technically make you draw any character in the vocabulary if its probability is non-zero. As they said in the video, they got "lucky" and drew a character that was matching the one they were expecting, and did it so the illustration would make sense. If it was not the sampling method, it would have been the argmax probability, and in that case you always pick the character that has the highest probability in the distribution (which is o in the illustration).

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

79323912

Date: 2025-01-02 13:56:28
Score: 5.5
Natty:
Report link

try using firebase, as when you are using firebase the integration is easier to do like google sing in etc and also please share you code so that we see

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

79323908

Date: 2025-01-02 13:53:27
Score: 2
Natty:
Report link

A point to note that happened to me is that the GeneratorExit exception is not thrown when you are using flask in a development server and not in production (something to do with wsgi but i don't know why exactly there is this difference). So when you close an event stream from the client side flask will not stop the generator from generating in a development server.

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

79323905

Date: 2025-01-02 13:53:27
Score: 3
Natty:
Report link

It didn’t work as expected because this type of error occurs during the initialization of the Spring context, before the controllers are fully ready. So, your @ControllerAdvice cannot intercept this exception, I think.

Maybe this could help you: Baeldung - spring-boot-failure-analyzer

Reasons:
  • Low length (0.5):
  • No code block (0.5):
  • User mentioned (1): @ControllerAdvice
  • Low reputation (1):
Posted by: Jérémy Woirhaye

79323903

Date: 2025-01-02 13:53:27
Score: 3.5
Natty:
Report link

Thanks to chrslg: I removed the division by n in the derivatives. After changing the parametres for the learning rate and max iteration, the algorithm is much faster and also optimizes b. Using more data than only the small toy data set was helpful. And thanks Dr. Snoopy: It was helpful to plot the loss for each epoch.

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

79323902

Date: 2025-01-02 13:52:26
Score: 4.5
Natty:
Report link

Olá!

Enfrentei o mesmo problema, precisava definir a largura fixa para a coluna de células. No meu caso, a solução foi usar CellStyle="width: 160px;".

Encontrei a solução no repositório do projeto: https://github.com/MudBlazor/MudBlazor/discussions/4920


Hi!

I faced the same issue, I needed to set a fixed width for the cell column. In my case, the solution was to use CellStyle="width: 160px;".

I found the solution in the project's repository: https://github.com/MudBlazor/MudBlazor/discussions/4920


<TemplateColumn Title="Celular" CellStyle="width: 160px">
            <CellTemplate>
                @if (context.Item.CellPhones?.Any() == true)
                {
                   @CelularHelperFormat.FormatCelular(
                    string.Join(", ", context
                                .Item
                                .CellPhones
                                .Select(c => $"{c.FullNumber}"))
                   );
                }
            </CellTemplate>
        </TemplateColumn>
Reasons:
  • Blacklisted phrase (0.5): I need
  • Blacklisted phrase (2): solução
  • Blacklisted phrase (2): Olá
  • Whitelisted phrase (-2): I found the solution
  • RegEx Blacklisted phrase (2): Encontrei
  • Long answer (-0.5):
  • Has code block (-0.5):
  • Low reputation (1):
Posted by: Maurício Dionísio

79323895

Date: 2025-01-02 13:50:25
Score: 4
Natty: 5
Report link

To further satisfy your thrust for the deep understanding.

1- testRigor uses Java 11's Regex Pattern for Regex. https://testrigor.com/docs/language/#regexRandomStringGenerationSupportValidationsSearch enter image description here

2- for element locators it's their secret sauce.

https://www.youtube.com/watch?v=cvfTrOTgiIc

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

79323890

Date: 2025-01-02 13:49:25
Score: 0.5
Natty:
Report link

I solved the "problem", i did not realize that for each job azure creates a new windows client. The atomic red team tests ran on a different client which was not enrolled in the fleet server.

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

79323882

Date: 2025-01-02 13:44:23
Score: 2
Natty:
Report link

To disable the fade out for unused methods, do the following:

  1. Open Tools -> Options.
  2. Select C#.
  3. Select Advanced.
  4. In "Anylysis", change "Run background code analysis for:" to "None"
  5. Click "OK".
Reasons:
  • Low length (0.5):
  • No code block (0.5):
  • Low reputation (1):
Posted by: Martin Henke

79323877

Date: 2025-01-02 13:41:22
Score: 4
Natty: 4
Report link

I noticed that our production backend is connected with AWS elasticache Redis and it doesn't supports the TopK data structure. Also there isn't any upgrade available or any setting which can allow us to use topK on same redis .

Any thought on this ?

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

79323875

Date: 2025-01-02 13:40:21
Score: 5
Natty:
Report link

But still google sign-in is not working in my app even I have added the sha 1 fingerprint of both play signing and uploaded key

Reasons:
  • RegEx Blacklisted phrase (2): even I have
  • Low length (1):
  • No code block (0.5):
  • Single line (0.5):
  • Low reputation (1):
Posted by: Modit Grover

79323871

Date: 2025-01-02 13:39:20
Score: 1
Natty:
Report link

You can check it from Keyboard shortcuts. (ctrl + shift + p to open the command palette)

By default, use ctrl + alt/cmd

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

79323870

Date: 2025-01-02 13:39:20
Score: 1.5
Natty:
Report link

Assuming it is for text-based or NLP LLM not multi-modal, i.e one with visual-to-text web scraping. In a text-based case, all paginated context would be already loaded in HTML. You can chunk HTML content and use prompts like

"Remove all HTML tags and give me only information: html-text"

to get the text.

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

79323868

Date: 2025-01-02 13:38:20
Score: 1
Natty:
Report link
  1. Run:
npm install tsx --save-dev
  1. Add the following code to package.json
"prisma": {
        "seed": "tsx prisma/seed.ts"
    },
  1. run the migration steps.
npx prisma migrate dev --name init
Reasons:
  • Low length (0.5):
  • Has code block (-0.5):
  • Low reputation (1):
Posted by: 胡文涛

79323864

Date: 2025-01-02 13:36:19
Score: 6.5 🚩
Natty:
Report link

did u find the answer cause i have same trouble code is perfect fine but when i emulate it doesnt respond shooting errors

Reasons:
  • RegEx Blacklisted phrase (3): did u find the answer
  • Low length (1):
  • No code block (0.5):
  • Single line (0.5):
  • Starts with a question (0.5): did
  • Low reputation (1):
Posted by: Youtube Algorithm

79323861

Date: 2025-01-02 13:35:18
Score: 4
Natty: 5
Report link

Many years after but I have made the same mistake, Thanks for the solution

Reasons:
  • Blacklisted phrase (0.5): Thanks
  • Low length (1.5):
  • No code block (0.5):
  • Unregistered user (0.5):
  • Low reputation (1):
Posted by: user29024675

79323857

Date: 2025-01-02 13:33:17
Score: 1.5
Natty:
Report link

You can find the applied coupons/discounts at the invoice Object level[1]. If there are many, you can expand[2] the discounts field[3].

[1] https://docs.stripe.com/api/invoices/object#invoice_object-discount [2] https://docs.stripe.com/api/expanding_objects [3] https://docs.stripe.com/api/invoices/object#invoice_object-discounts

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

79323856

Date: 2025-01-02 13:32:17
Score: 1
Natty:
Report link
Reasons:
  • Low length (1):
  • Has code block (-0.5):
  • Low reputation (0.5):
Posted by: Khribi Wessim

79323853

Date: 2025-01-02 13:32:17
Score: 0.5
Natty:
Report link

Just a suggestion :)

const t = (mylist?
          .filter(item => myComplexNestedFilter) ?? [])
          .map(item => ( <div key={item.id}>{item.title}</div>));
          
return t.length ? t : <div>There are no items in this list</div>;
Reasons:
  • Low length (0.5):
  • Has code block (-0.5):
  • Low reputation (0.5):
Posted by: Jayampathi Weerasinghe

79323852

Date: 2025-01-02 13:32:17
Score: 1
Natty:
Report link

I would checkout the np.hsplit and np.vsplit methods. You'll find details in the numpy api refrence.

If you do

blocks = [np.vsplit(i, 2) for i in np.hsplit(matrix, 2)]

then blocks will be an array containing your A,B,C and D matrices.

Reasons:
  • Low length (0.5):
  • Has code block (-0.5):
  • Low reputation (1):
Posted by: Johannes Vålvik

79323837

Date: 2025-01-02 13:24:14
Score: 7 🚩
Natty: 6
Report link

I have the same problem.

where exactly do I add:

#navigation ul ul{
    display:none;
}

Do I add this to Design/Customizer/custom css?

Reasons:
  • Blacklisted phrase (1): I have the same problem
  • Low length (1):
  • Has code block (-0.5):
  • Me too answer (2.5): I have the same problem
  • Ends in question mark (2):
  • Low reputation (1):
Posted by: Pytagoralf

79323833

Date: 2025-01-02 13:23:13
Score: 2.5
Natty:
Report link

I always do ng serve --live-reload false. See if it works

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

79323828

Date: 2025-01-02 13:20:13
Score: 2.5
Natty:
Report link

You can do a retrieveMultiple request on the msdyn_richtextfile entity and filter the "msdyn_parentid" attribute with the GUID of your annotation.

This will give you all the files that are related to that richtextfile record.

Attribute on Richtextfile Recors linking to annotation record

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

79323823

Date: 2025-01-02 13:18:11
Score: 9.5 🚩
Natty: 6.5
Report link

I am trying to add a card to enable billing for my Flutter project on Google Cloud Platform. I have added the card and received the OTP. However, when I click to verify the OTP, it shows that the payment has failed. Can anyone help me with this issue?

Reasons:
  • Blacklisted phrase (1): help me
  • Blacklisted phrase (1): I am trying to
  • RegEx Blacklisted phrase (3): Can anyone help me
  • Low length (0.5):
  • No code block (0.5):
  • Ends in question mark (2):
  • Single line (0.5):
  • Low reputation (1):
Posted by: Jasni m.k

79323821

Date: 2025-01-02 13:18:11
Score: 3
Natty:
Report link

Finally I decided to add pagination and performance issues had gone away. Still don't know why selecting several thousands is slow, it seems strange for me.

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

79323819

Date: 2025-01-02 13:17:10
Score: 1
Natty:
Report link

#-------- Error this Execution failed for task ':app:minifyReleaseWithR8'.

A failure occurred while executing com.android.build.gradle.internal.tasks.R8Task$R8Runnable Compilation failed to complete

#ans

buildTypes {
    release {
        //Add the following two line
        minifyEnabled false
        shrinkResources false
        //
        signingConfig = signingConfigs.release
    }
}
Reasons:
  • Has code block (-0.5):
  • Filler text (0.5): --------
  • Low reputation (1):
Posted by: Signature Soft IT

79323815

Date: 2025-01-02 13:16:10
Score: 2.5
Natty:
Report link

I'm also not an expert but what I can see there is missing [parameter] by declaration of variable currentCount. It should be [parameter] private int currentCount = 0;

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

79323806

Date: 2025-01-02 13:12:09
Score: 3.5
Natty:
Report link

Add this atribute to your main activity:- android:fitsSystemWindows="true".

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

79323802

Date: 2025-01-02 13:10:09
Score: 1
Natty:
Report link

For me, the connection string name in my DbContext registration in Program.cs did not match the connection string name in appsettings.development.json.

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

79323801

Date: 2025-01-02 13:10:09
Score: 2.5
Natty:
Report link
"extra": {
    "laravel": {
        "dont-discover": []
    },
    "merge-plugin": {
        "include": [
            "Modules/*/composer.json"
        ]
    }
},

Ref from link : https://github.com/nWidart/laravel-modules/issues/4

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

79323800

Date: 2025-01-02 13:10:09
Score: 1.5
Natty:
Report link

For others that are still trying to do this, and where the option above doesn't work:

There is an alternative way to do this, using a paid print server program like DirectBrowserPrint: This program runs a small print server and has a JavaScript API which allows to print PDF, JPG, GIF and PNG files / blobs. For developer info, you can check here.

Reasons:
  • No code block (0.5):
  • Low reputation (1):
Posted by: Marco Leoné

79323796

Date: 2025-01-02 13:08:08
Score: 1
Natty:
Report link

I did the same steps (for my Desktop Web Testing) mentioned by Hari Mahesh on this How-to Articles page https://testrigor.com/how-to-articles/how-to-do-database-testing-using-testrigor/. But each time I am facing this error:

***"Unable to connect the driver. Error: Communications link failure

The last packet sent successfully to the server was 0 milliseconds ago. The driver has not received any packets from the server."***

I am using MySQL Server 8.0. I am able to login from command line and Workbench GUI. Note: I did try every bit of fix available at the internet such as (adding and applying Rule in Windows firewall, adding line bind-address=0.0.0.0 in my.ini, applying different combinations of Connection String.

Following are few of samples of connection strings I added in Database Integrations.

testrigor jdbc:mysql://127.0.0.1:3306/testrigor root ******

testrigor jdbc:mysql://localhost:3306/testrigor Zia ******

demodb jdbc:mysql://192.168.0.104:3306/testrigor testrigor ******

demodb jdbc:mysql://[email protected]:3306/testrigor root ******

And following are few of sample of statement from test I used run sql query "use testrigor;" using connection "localhost" run sql query "select * from emp;"

Upon entering incorrect connection in test statement I am getting following:

Connection jdbc:mysql://127.0.0.1:3306/testrigor is not configured so the database query cannot be executed as specified in run SQL query "select * from emp;" using connection "jdbc:mysql://127.0.0.1:3306/testrigor"

I have also tried this on my Local Microsoft SQL Server 2022 Express Edition and changed networks. Interestingly there is no exception shown in browser console.

Reasons:
  • RegEx Blacklisted phrase (1): I am facing this error
  • Long answer (-1):
  • No code block (0.5):
  • Low reputation (0.5):
Posted by: Ziaullah