79257219

Date: 2024-12-06 07:57:09
Score: 3
Natty:
Report link

Check your .env file. It should look like: SECRET_KEY="your secret key here"

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

79257217

Date: 2024-12-06 07:56:09
Score: 1.5
Natty:
Report link

clever ones.

I have the same challenge when authorising a Service Account to access Google Sheets. I only get the id_token in the response, not the access_token.

I suspect it may be something I need to add or change in the JWT Claim Set; therefore, I'm going to add the JSON output I receive in the browser when I post the id_token to https://www.googleapis.com/oauth2/v3/tokeninfo?id_token=... in a browser's address field. (I purposely changed some of the values in the "azp", "kid", and "sub" fields not to expose the actual values)

JSON
alg: RS256
aud: https://www.googleapis.com/auth/worksheets,https://www.googleapis.com/auth/drive
azp: [email protected]
email: [email protected]
email_verified: true
exp: 1733472669
iat: 1733469069
iss: https://accounts.google.com
kid: 8c2a80af3fc12f13f44b168b6d5d0226eb0173c2
sub: 903102654606255428851
typ: JWT

I have to use Groovy as the development platform because it is part of the ScriptRunner (from Adaptavist) in an Atlassian Jira Cloud environment.

I would greatly appreciate help or ideas to try to solve this challenge.

Thank you so much for your attention and participation. Ben

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

79257214

Date: 2024-12-06 07:54:08
Score: 2.5
Natty:
Report link

Had the same problem when debugging project in Visual Studio 2019 Community. The error was "A debugger operation is taking longer than expected". I went to IIS Manager, Application pool stop and then start. You can also Recycle the Application pool

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

79257213

Date: 2024-12-06 07:53:06
Score: 6.5 🚩
Natty:
Report link

We do have the same exact problem. We also tried submitting the report with a system user and the authorization for the user to create them. This works for not printing the spool request, but if users submit the report at the same time an identical spool-id is given, which leads to other problems.

Is there a solution for this?

Reasons:
  • Blacklisted phrase (3): Is there a solution
  • No code block (0.5):
  • Ends in question mark (2):
  • Low reputation (1):
Posted by: user28655262

79257210

Date: 2024-12-06 07:52:06
Score: 1.5
Natty:
Report link

The error is due to the UPDATE statement. When updating values in MySQL, you cannot use the VALUES keyword like you would in an INSERT statement. Instead, you need to assign new values directly to the columns.

Use this:
import mysql.connector

item_id = 123 query = ( "UPDATE MyTable " "SET col1 = %s, col2 = %s, col3 = %s, col4 = %s " "WHERE item_id = %s" ) items = (val1, val2, val3, val4, item_id)

cursor.execute(query, items)

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

79257208

Date: 2024-12-06 07:51:05
Score: 5
Natty:
Report link

is there a way to breakline when using a variable instead of directly adding the text

Reasons:
  • Blacklisted phrase (1): is there a way
  • Low length (1.5):
  • No code block (0.5):
  • Single line (0.5):
  • Starts with a question (0.5): is there a
  • Low reputation (1):
Posted by: rahul jain

79257206

Date: 2024-12-06 07:51:05
Score: 1
Natty:
Report link

This is a peer dependency issue. You are using React 19, but @testing-library/[email protected] doesn't support it. You can either upgrade @testing-library/react to at least version 16.1.0 or downgrade to React 18.

Reference: https://github.com/testing-library/react-testing-library/releases/tag/v16.1.0

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

79257199

Date: 2024-12-06 07:48:04
Score: 1
Natty:
Report link

To address this very problem, I have created spring-boot-starter-spark

It has latest of Spark version 3.5.3 and Spring boot version 3.4.0

In case you need different versions, you can checkout the source code on Github update the versions and build the starter jar.

Along with dependnecy descriptors it gives you customizable SparkSession auto-configurations and spring boot properties autocompletion assistance in IDEs.

I have also put a Demo Spark job implemented as Spring cloud task assing this starter.

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

79257184

Date: 2024-12-06 07:40:03
Score: 1.5
Natty:
Report link

Try upgrade your @react-navigation/* to version 7+, it should resolve this error.

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

79257177

Date: 2024-12-06 07:38:03
Score: 1.5
Natty:
Report link

Labeling more documents will not improve the performance of pre-trained Generative AI processors, as they rely on fixed, pre-built models. However, for custom-trained processors, labeling more documents is essential as it helps the model learn and adapt to your specific use case, improving its accuracy over time.

If you're using the pre-trained foundation model and find its performance insufficient, consider switching to a custom processor where labeled data can make a meaningful difference.

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

79257173

Date: 2024-12-06 07:35:02
Score: 1.5
Natty:
Report link

For now fixed it by wrapping debug in waitFor:

await waitFor(() => {
      screen.debug(undefined, 10000000);
    });
Reasons:
  • Low length (1):
  • Has code block (-0.5):
  • Self-answer (0.5):
  • Low reputation (0.5):
Posted by: Александр Прошанов

79257166

Date: 2024-12-06 07:33:01
Score: 3.5
Natty:
Report link

What happens when you use only one "with open" with 'w+' ?

with open(r"\\path\to\file\datafile.txt", 'w+') as file:
    data = json.load(file)
    data.append(new_vars)
    json.dump(data, file)
Reasons:
  • Low length (0.5):
  • Has code block (-0.5):
  • Ends in question mark (2):
  • Starts with a question (0.5): What
  • Low reputation (1):
Posted by: solari

79257162

Date: 2024-12-06 07:31:01
Score: 0.5
Natty:
Report link

I don't know exactly but I guess that knm-files are Kotlin native and/or multiplatform compiled.

You need to reference the jvm-version of the library:

<dependency>
    <groupId>dev.inmo</groupId>
    <artifactId>krontab-jvm</artifactId>
    <version>2.6.1</version>
</dependency>
Reasons:
  • Low length (0.5):
  • Has code block (-0.5):
  • Low reputation (0.5):
Posted by: C. M.

79257150

Date: 2024-12-06 07:27:00
Score: 0.5
Natty:
Report link

After trying to fix it for two days, i found out, I created metro.config.js manually, so I deleted it again and put below code in terminal

npx expo customize metro.config.js

this generates metro.config.js file for you in the root folder.

then pasted below code in the file

const { getDefaultConfig } = require("expo/metro-config");
const config = getDefaultConfig(__dirname);

// Added this line:
config.resolver.assetExts.push("bin");

module.exports = config;

and it started working

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

79257147

Date: 2024-12-06 07:23:58
Score: 11 🚩
Natty: 6
Report link

I have to implement the same thing you asked, did you find anything useful for this? It would be a great help if anyone can help me in this

Reasons:
  • Blacklisted phrase (1): help me
  • RegEx Blacklisted phrase (3): did you find
  • RegEx Blacklisted phrase (3): anyone can help me
  • RegEx Blacklisted phrase (0.5): anyone can help
  • Low length (1):
  • No code block (0.5):
  • Contains question mark (0.5):
  • Single line (0.5):
  • Low reputation (1):
Posted by: Jainil Patel

79257132

Date: 2024-12-06 07:15:56
Score: 0.5
Natty:
Report link

This is a look back from the later quaestion, for some search only shows this post instead of that one.

Short Answer

You can mark the accents in a colour different than the base letters, without the text-shadowing hack (demonstrated in other answers) in this way:

  1. Set the charset to UTF-8
  2. Decompose the character (i.e. ñ to n&#x034f;&#x0303;) where the combining grapheme joiner (U+034F) is required after the base letter and before the combining diacritic marks.
  3. render with Firefox. Sadly this is not universal as far as I know.

There is another workaround not as evil as text-shadowing, but will introduce some offsets. More on that down below.

Long Story

This is 10 years after the quaestion was posed, but allow me to answer it.

I stepped into this problem on my journey through learning Sanskrit, as the Indic scripts mark the vowel on top. The fonts work same as Latin ones, with ते drawn as त and a े above.

Then there was the fiddle in the aforementioned post, of which the expected behaviour is with red diacritics and blue base letters as shown in the image. Happy after some tests, I decided to make a colourful grammar chart, and shared it with my mates. Later on I get complaints that no one other than me is able to open the correctly rendered chart.

Turns out that Chromium doesn't support this for some how. I tested the said fiddle on both my Win10 and Win11, for Chrome 131.0.6778.109, Edge 114.0.1823.86, Brave 1.73.97, Chromium 131.0.6778.108 and Opera 115.0.5322.77. All shown just blue. Only Firefox works.

As this other answer from the mentioned related post suggests, there is a workaround using another typeface/weight. The visual effect is worse than shadowing though.

Reasons:
  • Contains signature (1):
  • Long answer (-1):
  • Has code block (-0.5):
  • Low reputation (1):
Posted by: TNTErick

79257124

Date: 2024-12-06 07:12:56
Score: 1
Natty:
Report link

As mentioned by @Damiao we can use the below syntax in the query as mentioned in the google Doc-

Query syntax format - [PROJECT_ID.]region-REGION.INFORMATION_SCHEMA.JOBS[_BY_PROJECT]

EX - myproject.region-us-west1.INFORMATION_SCHEMA.JOBS

We can refer to the below Google doc for as an example . Posting the answer as community wiki for the benefit of the community that might encounter this use case in the future. Feel free to edit this answer for additional information

Reasons:
  • Has code block (-0.5):
  • User mentioned (1): @Damiao
  • Low reputation (0.5):
Posted by: Sourav Dutta

79257123

Date: 2024-12-06 07:11:55
Score: 4.5
Natty:
Report link

Check if any of these answers work for you

  1. https://stackoverflow.com/a/1501361/13887525

  2. https://stackoverflow.com/a/59281007/13887525

Reasons:
  • Blacklisted phrase (1): stackoverflow
  • Probably link only (1):
  • Low length (1.5):
  • No code block (0.5):
  • Low reputation (0.5):
Posted by: Christophy Barth

79257116

Date: 2024-12-06 07:09:54
Score: 0.5
Natty:
Report link

The issue was the way i was adding the section that will override the webpack settings was incorrect and also I neded to check the if (!isServer) condition

plugins: [
    function customWebpackPlugin() {
      return {
        name: 'custom-webpack-plugin',
        configureWebpack(config, isServer, utils) {
          // Apply this configuration only for client-side builds
          if (!isServer) {
            return {
              optimization: {
                runtimeChunk: {
                  name: () => `runtime.main`, // Custom runtime file name
                },
              },
              output: {
                ...config.output,
                filename: 'assets/js/[name].[contenthash:8].js', // Custom path for main files
                chunkFilename: 'assets/js/[name].[contenthash:8].chunk.js', // Custom path for chunk files
              },
            };
          }
          return {};
        },
      };
    },
  ],

Once I added the above code to docusaurus.config.ts now its not adding the tilt

Thank you Bharat

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

79257103

Date: 2024-12-06 07:02:53
Score: 1
Natty:
Report link

Not sure about the first error but second one can be resolved by adding this scriptType to the module.exports

module.exports = {
  output: {
    uniqueName: "v17",
    publicPath: "auto",
    scriptType: "text/javascript",
  },
....
Reasons:
  • Low length (0.5):
  • Has code block (-0.5):
  • Low reputation (1):
Posted by: Ayu

79257101

Date: 2024-12-06 07:02:53
Score: 3
Natty:
Report link

You could consider using the @Generated annotation to indicate that the code in your model classes is auto-generated and should be excluded from SonarQube's analysis.

You should take a look at this question: what is the use of @Generated Lombok annotation

Reasons:
  • Low length (0.5):
  • No code block (0.5):
  • User mentioned (1): @Generated
  • Low reputation (1):
Posted by: le dat

79257100

Date: 2024-12-06 07:01:52
Score: 5
Natty:
Report link

I am using both apn auth key and apn certificate for two of my firebase project. Will this update anyway affect that?

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

79257097

Date: 2024-12-06 07:00:51
Score: 8 🚩
Natty:
Report link

If I may ask, how did you resolve the MTU size issue? We are having a similar issue where it worked on all previous versions of Android we tested, but does not work on Android 14.

Regards Chris

Reasons:
  • Blacklisted phrase (1): Regards
  • Whitelisted phrase (-1): it worked
  • RegEx Blacklisted phrase (3): did you resolve the
  • Low length (0.5):
  • No code block (0.5):
  • Me too answer (2.5): having a similar issue
  • Contains question mark (0.5):
  • Low reputation (1):
Posted by: CvN

79257095

Date: 2024-12-06 07:00:51
Score: 0.5
Natty:
Report link

What would be the most feasible way to update these?

This blog provides recommended actions when your project uses a package with a known vulnerability. Our recommendation is to prefer updates to packages “closest” to your direct references.

For example Package A has a dependency on package B, which in turn has a dependency on package C. In this example, we’ll consider that package C version 1.0.0 has a known vulnerability, fixed in version 2.0.0.

Recommendation steps:

  1. Try upgrading package A.
  2. If that doesn’t resolve the audit warning, then try upgrading package B.
  3. If that doesn’t resolve the audit warning, then upgrade C directly.

If you want to upgrade transitive packages, you can do:

1.Add the fixed package version as a direct package reference.

2.Use Central Package Management with the transitive pinning functionality.

What would happen if the 3rd party upgrades the vulnerable package themselves and ive already installed another version?

Updating the top-level package can automatically update the vulnerable transitive package as well. I think it is possible to have two versions of the same NuGet package installed in a project, one is a transitive package another is direct reference. Then it picks the version that satisfies the most constraints.

Docs Referred:

NuGetAudit 2.0: Elevating Security and Trust in Package Management

Auditing package dependencies for security vulnerabilities

Reasons:
  • Blacklisted phrase (1): This blog
  • Long answer (-1):
  • No code block (0.5):
  • Contains question mark (0.5):
  • Starts with a question (0.5): What would
  • High reputation (-1):
Posted by: Dou Xu-MSFT

79257091

Date: 2024-12-06 06:59:50
Score: 3.5
Natty:
Report link

Some people have asked similar questions, you can refer to the following, Firebase will help to update it https://stackoverflow.com/a/79203819/5957749

Reasons:
  • Blacklisted phrase (1): stackoverflow
  • Low length (1):
  • No code block (0.5):
  • Low reputation (1):
Posted by: Faydee

79257089

Date: 2024-12-06 06:59:50
Score: 1.5
Natty:
Report link

I also faced the same issue but the trick that worked for me as follows:

enter image description here

Reasons:
  • Whitelisted phrase (-1): worked for me
  • Probably link only (1):
  • Low length (0.5):
  • No code block (0.5):
  • Low reputation (0.5):
Posted by: Prakash

79257087

Date: 2024-12-06 06:59:50
Score: 1.5
Natty:
Report link

For test automation reporting you can use testreport.io, it also have direct jira and slack integration in it.

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

79257086

Date: 2024-12-06 06:56:49
Score: 5
Natty: 4.5
Report link

https://stackoverflow.com/a/79024366/21133532

This works. But make sure framework path is correct

Reasons:
  • Blacklisted phrase (1): stackoverflow
  • Probably link only (1):
  • Low length (1.5):
  • No code block (0.5):
  • Low reputation (1):
Posted by: Awais Qazi - Flutter Dev

79257072

Date: 2024-12-06 06:50:47
Score: 6 🚩
Natty: 5
Report link

Struggling with Nginx Reverse Proxy Setup for HTTPS (Port 443)

Hello, community!

I've been struggling with this issue for almost two weeks now and need some help. I'm hosting a simple app on my server to test it online. To set it up properly, I decided to use Nginx as a reverse proxy for my Node.js application.


The Goal

I want to be able to connect to my app using HTTPS (port 443) without having to specify any port in the URL. Currently, I can connect to the server on different ports (e.g., 8080 or 443), but I always need to include the port number explicitly. I would like to make this seamless and work as expected for HTTPS.


What I've Tried

  1. Network Configuration:

    • I’ve opened the necessary ports on my router:
      Public 80 -> Private 80
      Public 443 -> Private 443
      Public 8080 -> Private 8080
      
      Example of the port forwarding configuration:
      Public   Private   Protocol
      80-80    80-80     TCP
      443-443  443-443   TCP
      8080-8080 8080-8080 TCP
      
  2. Node.js Express Server:

    • My Express app is set up to listen on port 8080.
    • Here's my server/index.js file:
      const express = require('express');
      const routes = require('./routes');
      const path = require('path');
      const app = express();
      
      const httpPort = 8080; // Port to listen for HTTP
      
      // Middleware for processing JSON data
      app.use(express.json());
      
      // API routes
      app.use('/api', routes);
      
      // Static files served by Vue.js
      app.use(express.static(path.join(__dirname, "../client", "dist")));
      
      // Error handling for static files
      app.use((err, req, res, next) => {
          res.status(500).send('Something went wrong!');
      });
      
      // Vue.js default route
      app.get('*', (req, res) => {
          res.sendFile(path.join(__dirname, "../client", "dist", "index.html"));
      });
      
      // Start the HTTP server
      app.listen(httpPort, () => {
          console.log(`Server running on http://localhost:${httpPort}`);
      });
      
  3. Nginx Configuration:

    • My Nginx is configured to:
      • Listen on port 80 for HTTP and redirect it to port 443 for HTTPS.
      • Use port 443 for SSL with a reverse proxy to my Node.js app on port 8080.
    • Here's my Nginx configuration:
      server {
          listen 80;
          server_name MY_SERVER_NAME;
      
          # Redirect HTTP to HTTPS
          return 301 https://$host$request_uri;
      }
      
      server {
          listen 443 ssl;
          server_name MY_SERVER_NAME;
      
          # SSL certificates (Let's Encrypt or your own certs)
          ssl_certificate /home/<user>/certificates/fullchain.pem;
          ssl_certificate_key /home/<user>/certificates/privkey.pem;
      
          # Configure the proxy to pass traffic to Node.js (HTTP)
          location / {
              proxy_pass http://localhost:8080;
              proxy_http_version 1.1;
              proxy_set_header Upgrade $http_upgrade;
              proxy_set_header Connection 'upgrade';
              proxy_set_header Host $host;
              proxy_cache_bypass $http_upgrade;
          }
      }
      
  4. Firewall Rules (UFW):

    • I've ensured all relevant ports are allowed:
      To      Action    From
      443/tcp ALLOW     Anywhere
      80/tcp  ALLOW     Anywhere
      8080/tcp ALLOW    Anywhere
      
  5. Checking Sockets:

    • When I start my Node.js server and check active sockets using ss -tuln, I can see:
      tcp   LISTEN   0   511    0.0.0.0:443    0.0.0.0:*
      tcp   LISTEN   0   511       *:8080       *:*
      

The Problem

Despite all this, I cannot connect to my app seamlessly on HTTPS (port 443). I still need to manually specify the port in the URL for the connection to work.


What Am I Missing?

  1. Is there something wrong with my Nginx configuration or my Node.js setup?
  2. Could it be an issue with how I handle SSL or the reverse proxy?
  3. Am I overlooking something in my network or firewall settings?

Thanks in advance for your help! Any insights would be greatly appreciated.


Reasons:
  • Blacklisted phrase (0.5): Thanks
  • Blacklisted phrase (1): appreciated
  • Blacklisted phrase (0.5): I cannot
  • RegEx Blacklisted phrase (3): Thanks in advance
  • RegEx Blacklisted phrase (1): I want
  • Long answer (-1):
  • Has code block (-0.5):
  • Contains question mark (0.5):
  • Low reputation (1):
Posted by: Only_a_codder

79257065

Date: 2024-12-06 06:48:46
Score: 2.5
Natty:
Report link

The issue can occur because there is already an artefact deployed on the server. Are you able to start the Payara server normally (not in debug mode) and undeploy the artefact, stop it, then restart it again in debug mode.

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

79257058

Date: 2024-12-06 06:43:45
Score: 1
Natty:
Report link

As it says " Failed to bundle asset files. build failed."

If you have files inside the assets folder you have to add the correct path to locate. Example: if you have
assets/icons/files.png
assets/icons/files2.png
..etc files, then your assets section in "pubspec.yml" file should look similar to this:

assets:
- assets/icons/

Then it should work.

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

79257052

Date: 2024-12-06 06:40:45
Score: 1
Natty:
Report link

With a simpler method:

with open("SCB_earthquakes.xml", "r") as infile:
    lines = infile.read().split("\n")
    for line in lines:
        if '<azimuthalGap>' in line:
            gaps.append(line.split('<azimuthalGap>')[1].split('<')[0])
Reasons:
  • Low length (0.5):
  • Has code block (-0.5):
  • Low reputation (1):
Posted by: solari

79257043

Date: 2024-12-06 06:38:44
Score: 4
Natty:
Report link

Ok there is a solution -- plus I have additional information regards to error in visual studio when attempting to connect to your azure devopos repo and get an error "We could not refresh your credentials"enter image description here

With the above issue regarding invites not being sent -- Yesterday as mentioned, a new organization was created, users added and invites sent out which were not received -- Attempting to login to azure devops yesterday was denied -- As of today, 12hrs + later, I still had not received invite, however attempted to log in and was granted access -- Not sure if a fluke, definitely a bug in Azure Devops.....

Regards the second issue relating to the picture above -- Cloning a repo in visual studio is generally pretty straight forward, Team Explorer -> Connect to Project. If you're already signed into account you should see a list of servers available with associated repos -- another bug from Azure Devops & VS, is if / when servers are not found you can enter in the url directly, however this will result in an error advising to select an account from the dropdown list which will inevitably advise you no servers were found.

Solution := Don't muck around using VS, open a git bash, create a dir where proj should live then cmd git clone < link to repo > which will force git credential manager to ask for a PAT.

DONT waste your time trying to remove cred's from windows cred manager.

Reasons:
  • Blacklisted phrase (1): regards
  • Blacklisted phrase (1): Regards
  • Blacklisted phrase (1): enter image description here
  • Long answer (-1):
  • No code block (0.5):
  • Self-answer (0.5):
  • Low reputation (1):
Posted by: Random Me

79257042

Date: 2024-12-06 06:38:44
Score: 3.5
Natty:
Report link

Error has been fixed when the ubifs image is created with LEB size not including the UBI headers and ubinize that image and flash erase and write that ubi image.

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

79257037

Date: 2024-12-06 06:34:43
Score: 2
Natty:
Report link

So basically, whenever you change the state of an element in react, and if you have initialised the state to be an empty array and then change the state to be a single value/string , it will give this error. If you want the user to select only one value, then you can initiase the state to be an empty string.

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

79257019

Date: 2024-12-06 06:27:40
Score: 8 🚩
Natty: 6
Report link

I am also working on a project on React Native. My development device is Windows and I am getting an error when I try to open the project with Expo Go on my iPhone. How did you achieve this with tunneling and can you explain it to me?

Reasons:
  • RegEx Blacklisted phrase (2.5): can you explain
  • RegEx Blacklisted phrase (1): I am getting an error
  • Low length (0.5):
  • No code block (0.5):
  • Ends in question mark (2):
  • Single line (0.5):
  • Low reputation (1):
Posted by: asmnkpln

79256991

Date: 2024-12-06 06:13:36
Score: 4
Natty:
Report link

I run it fine by

ruby userinput.rb

What are you using to run your sourecode?

Reasons:
  • Low length (1.5):
  • Has code block (-0.5):
  • Ends in question mark (2):
  • Low reputation (1):
Posted by: VietnameseBushes

79256983

Date: 2024-12-06 06:07:35
Score: 1
Natty:
Report link

I'm working on this recently.

If you need real query execution. You need to replace expo-sqlite with sqlite3 of nodejs because the Jest runs on your machine but mobile device.

I'm trying to create wrapper of sqlite3 as expo-sqlite.

You don't need all wrapper but expo-sqlite and sqlite3 has very different API but could be wrapped for test because sqlite3 module just doesn't have Promise APi and do not provide same API style.

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

79256982

Date: 2024-12-06 06:07:34
Score: 7
Natty: 7.5
Report link

I need one help or guidance, where I want to run debian based docker images on gke cluster node pool, with ubuntu it is not working, and i can not modify/change the docker images somehow !! Any ways we can start custom node with GKE with Debian OS or can handle it any how with Ubuntu one ? Like deploy second disk with Debian OS and then use it as primay disk with each node pool ? Please help if anyone has idea on this. Thanks

Reasons:
  • Blacklisted phrase (0.5): Thanks
  • Blacklisted phrase (0.5): I need
  • RegEx Blacklisted phrase (3): Please help
  • RegEx Blacklisted phrase (1): I want
  • No code block (0.5):
  • Contains question mark (0.5):
  • Low reputation (1):
Posted by: Ankit

79256967

Date: 2024-12-06 05:59:31
Score: 6 🚩
Natty: 4
Report link

For a Solr version 8.11.0 I did now an update to log4j2.24.2 by simply exchanging the 5 log4j*.jar files under "/opt/solr-8.11.0/server/lib/ext$". But after that solr doesn't respond with an error HTTP ERROR 404 Not Found URI: /solr/ STATUS: 404 MESSAGE: Not Found SERVLET: - Please help me.

Reasons:
  • Blacklisted phrase (1): help me
  • RegEx Blacklisted phrase (3): Please help me
  • Low length (0.5):
  • No code block (0.5):
  • Low reputation (1):
Posted by: aiperi imashova

79256956

Date: 2024-12-06 05:54:30
Score: 0.5
Natty:
Report link

Try this

<button @contextmenu.prevent="handleClick"> hold to play</button>

function handleclick(){
setTimeout(()=> {
 plyavideo.value = true
}, 1000)
}
Reasons:
  • Whitelisted phrase (-1): Try this
  • Low length (1):
  • Has code block (-0.5):
  • Low reputation (1):
Posted by: BriansJo

79256948

Date: 2024-12-06 05:49:28
Score: 3
Natty:
Report link

I’ve got a similar issue. Human input were needed to instruct the model until getting the final result.

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

79256947

Date: 2024-12-06 05:48:28
Score: 3
Natty:
Report link

Asking it here is cheating. I know who you are and I know it's for FIAP. You will be disqualified. We're watching you.

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

79256931

Date: 2024-12-06 05:37:26
Score: 1.5
Natty:
Report link

FCN=-13519.4 *1 N 2.49992e+03 4.99986e+01 5.07817e-05 -1.25324e+00 2 mu 6.64681e-03 1.99457e-02 6.40648e-05 6.64686e-03 3 sig 9.97351e-01 1.41046e-02 1.51177e-05 -9.28179e-01 ERR DEF= 0.5 All... COVARIANCE MATRIX CALCULATED SUCCESSFULLY FCN=-67940.6 FROM HESSE STATUS=OK 16 CALLS 85 TOTAL EDM=8.92966e-08 STRATEGY= 1 ERROR MATRIX ACCURATE EXT PARAMETER INTERNAL INTERNAL
NO. NAME VALUE ERROR STEP SIZE VALUE ## Heading ## 1 N 1.00000e+04 9.99999e+01 2.39979e-05 -9.27295e-01 2 mu 6.64894e-03 9.97333e-03 3.59087e-04 6.64899e-03 3 sig 9.97349e-01 7.05231e-03 1.69492e-05 -9.28179e-01 ERR DEF= 0.5 enter link description here

Reasons:
  • Blacklisted phrase (0.5): enter link description here
  • Long answer (-0.5):
  • No code block (0.5):
  • Low reputation (1):
Posted by: Deepu Kumar

79256923

Date: 2024-12-06 05:33:24
Score: 3.5
Natty:
Report link

The answer to the question is to use spark.conf.get() method. Here is the sample code:

sql_placeholder_code = spark.conf.get("SQL_PLACEHOLDER_CODE", "default_value")

print(f"The value of SQL_PLACEHOLDER_CODE is: {sql_placeholder_code}")

Please let me know if you need any other information.

Reasons:
  • RegEx Blacklisted phrase (2.5): Please let me know
  • Low length (0.5):
  • Has code block (-0.5):
  • Low reputation (1):
Posted by: Srinimf

79256922

Date: 2024-12-06 05:33:24
Score: 1.5
Natty:
Report link

Was looking into the same question. For those who want to self-host and prefer a lighter setup to the now 16GB requiring Sentry, GlitchTip really is a good alternative. Simple setup, very lean (just 3 containers), but all the essentials one needs.

Just installed the self-hosted setup and very happy with it.

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

79256921

Date: 2024-12-06 05:32:24
Score: 0.5
Natty:
Report link

@Timbukto :- With minor change in your code, you can easily achieve your expected result:

Add a common class to your html DIVs as shown below:

<div class="box">
    <div id="slider1"></div>
    <div class="slider_div div1"></div>
    <div class="slider_div  div2"></div>
    <div class="slider_div div3"></div>
    <div class="slider_div div4"></div>
    <div class="slider_div div5"></div>
</div>

and now change the js script as shown below:

       $("#slider1").slider({
            range: "min",
            min: 0,
            max: 5,
            value: 0,
            slide: function (event, ui) {
                $(".slider_div").hide();   // it will hide any of the active div
                $(".div" + ui.value).show();
                
            }
        });

So, for JS script, first hide the active/displayed div and then show the div which is needed to show.

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

79256915

Date: 2024-12-06 05:26:23
Score: 2.5
Natty:
Report link

go to the setting and check backgrounds-running any software in the system. you try to use lite SQL pack.

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

79256912

Date: 2024-12-06 05:25:23
Score: 3.5
Natty:
Report link

Set the DisplayMember before the DataSource

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

79256911

Date: 2024-12-06 05:24:23
Score: 2
Natty:
Report link

NoPixel Store Purchasing the NoPixel 4.0 Full Server from the NoPixel Store offers a premium roleplay experience with high-quality scripts, extensive customization, and regular updates. It ensures stable performance and access to a vibrant community of players and developers. Perfect for creating a top-tier GTA V roleplay server.

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

79256895

Date: 2024-12-06 05:16:21
Score: 2.5
Natty:
Report link

The white line in Visual Studio Code could be caused by a rendering issue or a glitch from the recent update. Using a black background screen can also help you spot display issues like white spots or dead pixels, making it easier to identify and address them effectively. Try changing the renderer type in the settings or rolling back to a previous version to fix it.

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

79256894

Date: 2024-12-06 05:16:21
Score: 2
Natty:
Report link

Each threshold has it own unique FPR and TPR, so each point on the plot is a specific threshold FPR and TPR for each of the class ROC curve. The threshold determines the number of TP,TN, FN, FP, which eventually results to a unique TPR and FPR for each threshold, and then they are plotted for each class. So, practically, we select a set of thresholds to evaluate the model on.

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

79256891

Date: 2024-12-06 05:13:20
Score: 2.5
Natty:
Report link

You have to use Spotify iFrame API. In the above URL, it points to Spotify's regular embed.

Check out this documentation: https://developer.spotify.com/documentation/embeds/tutorials/using-the-iframe-api

Reasons:
  • Blacklisted phrase (1): this document
  • Probably link only (1):
  • Low length (1):
  • No code block (0.5):
  • High reputation (-1):
Posted by: Ilyas Assainov

79256888

Date: 2024-12-06 05:11:20
Score: 1.5
Natty:
Report link

This is covered by the following paper. Basically, there are many mathematical facts that seem obvious but must be shown to the Danny compiler.

https://leino.science/papers/krml275.html

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

79256884

Date: 2024-12-06 05:08:20
Score: 2
Natty:
Report link

As of today, for me, with go version 1.23.2:

To install tour: go install golang.org/x/website/tour@latest

To run the tour locally: $HOME/go/bin/tour

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

79256881

Date: 2024-12-06 05:04:19
Score: 2.5
Natty:
Report link

this seemed to fix it for me: wrap params in Promise as shown in the code below.

context: { params: { month: string } }

to

{ params } : { params: Promise<{ month: string }> }

https://nextjs.org/docs/app/api-reference/file-conventions/route#context-optional

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

79256873

Date: 2024-12-06 04:53:17
Score: 0.5
Natty:
Report link

as Ian said:

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

79256872

Date: 2024-12-06 04:53:17
Score: 1
Natty:
Report link

XrmToolbox is pretty good for quick JavaScript updates (and other things!). Download, install, and connect it to the environment with the script you want to edit.

Install WebResources Manager from the Tool Library. Open it from the shortcut next to the tool's rightmost name or the Tools tab. Then:

All loaded files will appear in the tool's Webresources Explorer, where you can open them directly.

I recommend editing the script in a code editor, though. I use VS Code for this. When I'm ready with my changes, I copy them from VS and paste them into the WebResources Manager file editor, and then I File -> Update and Publish (or Ctrl + U).

If you work with someone else and think they've applied changes after you've opened WebResources Manager, use Get Latest. It'll fetch the newest version of the file from your solution.

This is a heads-up for a small platform quirk(?)—sometimes, the updated script doesn't load, even after a hard refresh (Ctrl + Shift + R). Hard refreshing again seems to work most of the time. Clearing the cache is the most consistent method I've found (dev console open -> right click on refresh -> "Empty cache and hard refresh").

Not sure what to recommend for a local development environment. I haven't used hot reload for scripts.

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

79256869

Date: 2024-12-06 04:49:16
Score: 1
Natty:
Report link

In your case the main difference is how this keyword works with both functions. So here when you use Regular functions (function () {}) the this keyword refers to the object instance(in this case person1), so this.name returns name of object. whereas, when you used Arrow function (() => {}) the this keyword referred to where the function was defined (in this case, the global scope) instead of referring to an object, so this.name becomes undefined.

Reasons:
  • Whitelisted phrase (-1): In your case
  • No code block (0.5):
  • Single line (0.5):
  • Low reputation (1):
Posted by: throwaway232

79256862

Date: 2024-12-06 04:41:15
Score: 2.5
Natty:
Report link

In My vs 2022 I Faced Same Problem When I Open Vs In Morning So I Just Installed Python Or Installing Any tool Will Work...

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

79256860

Date: 2024-12-06 04:39:14
Score: 3
Natty:
Report link

Is this really the only dataset that was given? If so, It is right that it should be blank since as you said, the only 4th year is Sam, and the only one in the dataset atleast that has a grade of 90 is Mary based on the Snum. Still, asked your professor again if there has been a mistake in the dataset given or was it lacking to make your answer sure.

Reasons:
  • No code block (0.5):
  • Contains question mark (0.5):
  • Single line (0.5):
  • Starts with a question (0.5): Is this
  • Low reputation (1):
Posted by: Adi

79256852

Date: 2024-12-06 04:37:13
Score: 9 🚩
Natty:
Report link

Same question, I tried some ways like you but all of them did not working. Anyone help pls?

Reasons:
  • Blacklisted phrase (1): did not work
  • Blacklisted phrase (2): help pls
  • RegEx Blacklisted phrase (1): Same question
  • Low length (1):
  • No code block (0.5):
  • Ends in question mark (2):
  • Single line (0.5):
  • Low reputation (1):
Posted by: Rikee

79256835

Date: 2024-12-06 04:29:11
Score: 4
Natty: 4.5
Report link

I know this is an old post but I’ve used the method from the following article (or a variant of it) many times:

https://medium.com/@pradumnkr98/dynamic-bean-injection-in-spring-how-to-select-beans-based-on-enum-values-ea290fdd4442

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

79256832

Date: 2024-12-06 04:26:10
Score: 2
Natty:
Report link

If you somehow happened to delete the .idea folder, and you could not see anything about the modules, one way to solve the problem is:

  1. Go to File->Project Structure;
  2. Select Project, modifiy SDK,Languge Level etc;
  3. Select Modules, press + button to import the (parent) module.

In step3, if your project has a parent-child module relationship, importing the parent module is sufficient. Plus,I have tried File->New Project From Existing Sources->Import project from exteral model,but it did not work for me.

Reasons:
  • Blacklisted phrase (1): did not work
  • Long answer (-0.5):
  • No code block (0.5):
  • Low reputation (1):
Posted by: lordbao

79256815

Date: 2024-12-06 04:13:08
Score: 3
Natty:
Report link

const data = await Seq.query("SELECT * FROM storeImgs", { type: Seq.QueryTypes.SELECT } ); You need to set the type as above.

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

79256808

Date: 2024-12-06 04:05:07
Score: 1
Natty:
Report link

That should work too:

data = "BZh91AY&SY\x94$|\x0e\x00\x00\x00\x81\x00\x03"
    
# write to file
File.binwrite("path/to/file", data)
    
# read from file
File.binread("path/to/file") == data
Reasons:
  • Low length (0.5):
  • Has code block (-0.5):
  • Low reputation (1):
Posted by: Charles Jan

79256805

Date: 2024-12-06 04:03:06
Score: 4.5
Natty: 5
Report link

same issue but not writing code related to the watch in anyway. Started a new playground and tried to run the default "Hello World" and the issue persisted even there. Very odd.

Reasons:
  • RegEx Blacklisted phrase (1): same issue
  • Low length (1):
  • No code block (0.5):
  • Unregistered user (0.5):
  • Single line (0.5):
  • Low reputation (1):
Posted by: KDH

79256798

Date: 2024-12-06 03:58:04
Score: 2
Natty:
Report link

The missing two letters Integral of a 1-form over a singleton Does memoization skew benchmarks? In which direction does the iron piece experience force in this electromagnet setup? Strange ODE system Why does the Global Positioning System include particular numbers of satellites? Are any two recursive languages reducible to one another? What's the best method of securing keys/passwords used by a PowerShell script that runs when no user is logged in, using only one server, for free? The "Graphing" Calculator 2... A Higher Power Is "voltage across an inductor" actually real, or a convenient engineer trick? How to cover these tile gaps around the outl

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

79256795

Date: 2024-12-06 03:57:04
Score: 3.5
Natty:
Report link

You can do this in Settings > Keymap. On the top left, you can search for "maven", then in the Keymap section, under Maven, you can "Choose a phase/goal to assign a shortcut". image

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

79256793

Date: 2024-12-06 03:55:01
Score: 8 🚩
Natty:
Report link

i am installing a USB to 8CH RS485 Waveshare driver . After typing sudo make, Im getting these errors. Any help would greatly be appreciated.

make[35]: Entering directory '/usr/lib/modules/4.19.122-rt52/build'

make -C /lib/modules/4.19.122-rt52/build M=/usr/lib/modules/4.19.122-rt52/build

^Cmake[39]: *** wait: No child processes. Stop.

make[39]: *** Waiting for unfinished jobs....

make[39]: *** wait: No child processes. Stop.

make[38]: *** [Makefile:5: default] Error 2

Reasons:
  • Blacklisted phrase (1): appreciated
  • Blacklisted phrase (1): Any help
  • RegEx Blacklisted phrase (3): Any help would greatly be appreciated
  • RegEx Blacklisted phrase (1): Im getting these error
  • No code block (0.5):
  • Unregistered user (0.5):
  • Low reputation (1):
Posted by: Pablito Derayunan

79256788

Date: 2024-12-06 03:53:01
Score: 0.5
Natty:
Report link

djl-convert can convert local model into DJL format as well:

djl-convert -m /jina-embeddings-v2-base-de

Then you can point to model/jina-embeddings-v2-base-de folder in Java code. You will find the following files in the folder:

Reasons:
  • Has code block (-0.5):
  • Starts with a question (0.5): can
  • Low reputation (0.5):
Posted by: Frank Liu

79256784

Date: 2024-12-06 03:52:00
Score: 1.5
Natty:
Report link

Here we are after 5 years, and still with no solution to the problem.

I have a slightly different problem, which is that when my modal is reopened for the second time, the contents of the modal are not shown, instead the modal's "shadow" is only freezing the entire screen. And I have to restart the application to remove it.

Very frustrating, but after this question, I think I have to cope with it.

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

79256782

Date: 2024-12-06 03:50:00
Score: 1.5
Natty:
Report link

Even though this is a nearly 2-year-old question, for anyone who comes across this issue, the following is the remedy;

Remove the '.' in front of './db' of the following lines;

if(!is_dir(__DIR__.**'/db'**))
mkdir(__DIR__.**'/db'**);
if(!defined('db_file')) define('db_file',__DIR__.**'/db/plan_db.db'**);
Reasons:
  • Low length (0.5):
  • Has code block (-0.5):
  • Unregistered user (0.5):
  • Low reputation (1):
Posted by: user28652603

79256769

Date: 2024-12-06 03:35:57
Score: 0.5
Natty:
Report link

This VS Code extension for TSV files doesn't follow the built-in editor tab size setting of VS Code. Need to turn it off to make tab-separated text follow the VS Code's built-in editor tab size setting. For some reasons, I forgot that I installed this

VS Code extension for aligning column cells

Reasons:
  • Probably link only (1):
  • Low length (0.5):
  • No code block (0.5):
  • Single line (0.5):
  • High reputation (-2):
Posted by: Michael Buen

79256765

Date: 2024-12-06 03:29:56
Score: 3.5
Natty:
Report link

you can try to use the group by function in PQ

enter image description here

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

79256758

Date: 2024-12-06 03:25:55
Score: 1
Natty:
Report link

You can create tasks if you run them concurrently:

async def run(port):
  async with serve(echo, "localhost", port):
    ...

async def main():
  async with asyncio.TaskGroup() as tg:
    for i in range(6):
      tg.create_task(run(20781 + i))
Reasons:
  • Low length (0.5):
  • Has code block (-0.5):
  • Low reputation (1):
Posted by: k24d

79256757

Date: 2024-12-06 03:24:55
Score: 3
Natty:
Report link

Chris Harper. Do you had solve the graph refreshing all time? I am working in a DAQ interface with a 2000 milliseconds frequency and think too that is not elegant to view the quickly refreshing

Thanks

Reasons:
  • Blacklisted phrase (0.5): Thanks
  • Low length (0.5):
  • No code block (0.5):
  • Contains question mark (0.5):
  • Low reputation (1):
Posted by: ingnavas

79256755

Date: 2024-12-06 03:22:55
Score: 1
Natty:
Report link

I think its mandatory in C++. It can cause some confusion and harder to maintain the code. You can try other methods like

class Initializer {

public:

    static void init() {
        // Initialization code
    }
};

static bool dummy = (Initializer::init(), true);
Reasons:
  • Low length (0.5):
  • Has code block (-0.5):
  • Low reputation (1):
Posted by: VietnameseBushes

79256752

Date: 2024-12-06 03:20:54
Score: 2
Natty:
Report link

Puttin the schema name before the sequence name worked for me, changing from a postgres version to another broke my script and cause this errpr.

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

79256750

Date: 2024-12-06 03:20:54
Score: 1.5
Natty:
Report link

The method returns a float because the max. number of bytes/character could actually be fractional depending on the method of encoding.

If future encodings had fractional bytes/character instead of say, UTF-8's 1-4 bytes/character, you may have been thankful.

So to answer your question, yes I would assume. As long as you know the encoding scheme and whether or not fractional bytes are being toyed with, you can make the decision yourself.

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

79256747

Date: 2024-12-06 03:15:53
Score: 2.5
Natty:
Report link

Query mediaStore for files, find your files and request delete

createDeleteRequest

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

79256745

Date: 2024-12-06 03:13:52
Score: 1.5
Natty:
Report link

Well on this to collaboration on how it happened and why to have answers for a lot of questions even in the world that is why I tried to talk with people before people plan something that I don’t like to be around the public that’s why private is working diff depends on Microsoft vs and I wish it wasn’t asked in the field because letting that information before needed not just problems are started by how a 9 circuit court couldn’t get full answers of dod leaving a contractor by choice of we might of lost spec below 48 chrome unless tls line is fixed soon…..{azure} could but to keep what everyone keeps the people doing before a 507 section became a problem because the person tried and still can’t get a answer for the old but young part of economy trade. Well cloud flare to try to work bug out without talking with someone that seen to much and worked harder things in by option .0006ms

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

79256738

Date: 2024-12-06 03:02:51
Score: 1
Natty:
Report link

You can pass the Info.Gender as array too:

var myQuery = `SELECT uid FROM users where Gender IN (?)`
var arrayData = ['Male', 'Female']
connection.query(myQuery, [arrayData])
Reasons:
  • Low length (1):
  • Has code block (-0.5):
  • Low reputation (0.5):
Posted by: Lintang Wisesa

79256732

Date: 2024-12-06 02:55:48
Score: 6.5 🚩
Natty:
Report link

Can someone know the answer or what I did wrong ?

Reasons:
  • Low length (1.5):
  • No code block (0.5):
  • Ends in question mark (2):
  • Self-answer (0.5):
  • Single line (0.5):
  • Starts with a question (0.5): Can someone
  • Low reputation (1):
Posted by: Sonycsl

79256722

Date: 2024-12-06 02:48:47
Score: 2
Natty:
Report link

I am having this problem also. I need the browser to do a page-reload at an exact time, yet it hangs for about 8 seconds before finally refreshing.

For me, I think slow fetch requests are blocking the page reload. I think when the requests resolve, the page reloads.

Reasons:
  • Blacklisted phrase (0.5): I need
  • Low length (0.5):
  • No code block (0.5):
  • Low reputation (0.5):
Posted by: rettigcd

79256721

Date: 2024-12-06 02:48:47
Score: 2
Natty:
Report link

My bad guys, i need to put package electron-log for logging on main.js

Also, my fault it because i download package electron-is-dev only at devdependencies

by right it should be at dependencies, so will be available also after build

Reasons:
  • Blacklisted phrase (0.5): i need
  • Low length (0.5):
  • Has code block (-0.5):
  • Self-answer (0.5):
  • Low reputation (1):
Posted by: Riki Ahmad

79256714

Date: 2024-12-06 02:43:46
Score: 2
Natty:
Report link

Make sure your cuDNN version is within the range of versions supported by TensorFlow.

For example, installed tensorflow-gpu maximum support cuDNN to 11.x, but your cuDNN version is 12.x.

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

79256704

Date: 2024-12-06 02:30:44
Score: 2
Natty:
Report link

click on the 3 dots ... then click Detach all Views

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

79256680

Date: 2024-12-06 02:06:38
Score: 4.5
Natty:
Report link

I have created a rules-based chatbot but use TensorFlow hard dataset of 30 conversation flows. Personal chatbots.

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

79256662

Date: 2024-12-06 01:54:35
Score: 3
Natty:
Report link

I am experiencing the same issue when trying to get this package in github CI/CD pipeline on windows environment. Works fine with linux. I isolated the issue to this specific package - all the other packages in my app can be downloaded using pub get. I tried retrying and sleeping between steps but with no luck so far. I don't have solution yet, will update if I find something.

Reasons:
  • Blacklisted phrase (1): no luck
  • No code block (0.5):
  • Unregistered user (0.5):
  • Low reputation (1):
Posted by: user28651650

79256661

Date: 2024-12-06 01:53:35
Score: 2
Natty:
Report link

You would need to use .listStyle(.grouped) and then make paddings for all sections except the one you need to be edge to edge, then apply .contentMargins(.horizontal, 16, for: .scrollContent) for that section.

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

79256660

Date: 2024-12-06 01:50:34
Score: 2
Natty:
Report link

It is probably because your animation changing position values that one game object you want to move.

If you want to move an object in animations, create a parrent Game Object and animate that.

Same as well for rotations and scales.

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

79256657

Date: 2024-12-06 01:49:34
Score: 2
Natty:
Report link

It might be best to use the max that is at the maximum observed time or less. Like "breaks = seq(0, 24, by = 6)" for the example above to make it look pretty. To force it in assumes the same cumulative incidences of Drug A and B for month 23.9 to be the same as month 25.00 if you look at summary(survfit2(Surv(ttdeath, death_cr) ~ trt, tidycmprsk::trial)). It's NA because the number at risk is 0 at month 25 and dividing by 0 is undefined.

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

79256655

Date: 2024-12-06 01:47:32
Score: 6 🚩
Natty:
Report link

Did anyone ever figure out a solution for this. I have a similar goal, and Etsy or Kickstarter are good examples. A purchase / pledge is made but the card won't be charged until the product from Etsy ships / the Kickstarter campaign goal is reached.

Reasons:
  • RegEx Blacklisted phrase (3): Did anyone ever figure out a solution
  • Low length (0.5):
  • No code block (0.5):
  • Single line (0.5):
  • Starts with a question (0.5): Did anyone
  • Low reputation (1):
Posted by: don woolley

79256652

Date: 2024-12-06 01:40:30
Score: 0.5
Natty:
Report link

You can delete gorm.Model from your struct and manually include only the ID, CreateAt and UpdateAt properties without DeleteAt, it looks something like this:

type YourModel sruct {
    ID uint `gorm:"primaryKey"`
    CreatedAt time.Time
    UpdatedAt time.Time
    Name string
    ...
}
Reasons:
  • Low length (0.5):
  • Has code block (-0.5):
  • Low reputation (0.5):
Posted by: Fernando Rossato

79256642

Date: 2024-12-06 01:27:29
Score: 1
Natty:
Report link

The documentations on Expo is crap confusing. I encountered the same situation like yours. The easiest way to fix is to use .easignore, simply copy all the contents from .gitignore except your google-services.json. The rationale is that EAS Build will ignore the file on .gitignore but at the same time you don't want to upload your credentials to Github. So by using .easignore, it will take precendence over .gitignore when it comes to EAS Build and it allows your google-services.json to be included in the build.

From my understanding, app.config is equivalent to app.json file, someone please correct me if i am wrong.

Hopefully this could help you.

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

79256638

Date: 2024-12-06 01:21:28
Score: 1
Natty:
Report link

@undetected-selenium answer works for me but i used join() function instead of string concatenation to solve the File not found exception.

file_paths = [] #array of file paths
combined_paths = "\n".join(file_paths)
driver.FindElementById("upload1").send_keys(combined_paths)
Reasons:
  • Whitelisted phrase (-1): works for me
  • Low length (0.5):
  • Has code block (-0.5):
  • User mentioned (1): @undetected-selenium
  • Low reputation (1):
Posted by: DLWLRMA

79256633

Date: 2024-12-06 01:19:27
Score: 3
Natty:
Report link

Thank you @abra.

I was able to find a work around for this issue.

By using the KeyEvent argument of the dispatchKeyEvent() method from the KeyEventDispatcher interface I was able to determine the associated KeyStroke used to generate the KeyEvent. This enabled me to find the JMenuItem (if any) in the application's main JFrame with an associated KeyStroke accelerator. Once I have the JMenuItem associated with the KeyStroke, it can be programmatically activated by the JManuItem doClick() method.

This efictively redispatched the KeyEvent from the child JDialog to the application's main JFrame.

I suppose KeyBindings could have solved this issue but as this is legacy code, reworking the Menu structure of the application main JFrame would have been a less optimal solution.

Reasons:
  • Blacklisted phrase (0.5): Thank you
  • Long answer (-0.5):
  • No code block (0.5):
  • User mentioned (1): @abra
  • Self-answer (0.5):
  • Low reputation (1):
Posted by: Ian

79256632

Date: 2024-12-06 01:17:27
Score: 2.5
Natty:
Report link

As I remember Cookie require 'HTTP' server. The answer is YES, To use cookie you will need an HTTP server.

Reasons:
  • Low length (1):
  • No code block (0.5):
  • Low reputation (1):
Posted by: もぐもぐぷりん

79256628

Date: 2024-12-06 01:10:26
Score: 2
Natty:
Report link

This does not work now. Whenever I upload a new version to fix the issue, it always checks the currently released version which contains the issue. There is also no way to set as inactive in the app bundle explorer so users will be stuck.

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