79291931

Date: 2024-12-18 17:11:56
Score: 2.5
Natty:
Report link

You need to build your own Swift/Objective-C subclass of AUAudioUnit that includes your custom filter code. Once you have registered that with CoreAudio, you can create a node in your AudioGraph using your custom unit. Why can't things be easy? Found that source code helpful (but a little buggy): https://github.com/GeorgeMcMullen/AudioUnitV3Example/blob/0ab6f2feb953d37e4e7b2359627b97858b317bc8/Filter/Shared/FilterDemo.mm

Reasons:
  • Low length (0.5):
  • No code block (0.5):
  • Contains question mark (0.5):
  • Self-answer (0.5):
  • Single line (0.5):
Posted by: iljawascoding

79291930

Date: 2024-12-18 17:11:56
Score: 0.5
Natty:
Report link

For me the problem was that the uploaded file contained invalid characters (see S3 doc).

Using this sanitizing function solved the issue.

function sanitizeKey(input: string) {
  const allowedPattern = /[^a-zA-Z0-9!._*'()-]/g;
  return `${input.replace(allowedPattern, '')}`;
}
Reasons:
  • Low length (0.5):
  • Has code block (-0.5):
  • Low reputation (0.5):
Posted by: pearl

79291929

Date: 2024-12-18 17:10:55
Score: 2.5
Natty:
Report link

ChatGPT helped me here a lot, I've got missing platform directory

sdkmanager "platforms;android-XX" "platform-tools" "emulator" "system-images;android-XX;default;x86_64"

where XX is version of android This install all essential components

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

79291922

Date: 2024-12-18 17:09:55
Score: 2.5
Natty:
Report link

Nothing is required. Same error I got. It's just the internet speed problem at your side. I later connected to the fast internet. It worked. No need to do lots of other configs, etc. Try that!

Reasons:
  • Whitelisted phrase (-1): It worked
  • RegEx Blacklisted phrase (1): Same error
  • Low length (0.5):
  • No code block (0.5):
  • Single line (0.5):
  • Low reputation (1):
Posted by: Max Styles

79291912

Date: 2024-12-18 17:06:54
Score: 2
Natty:
Report link

vertex arrays are in WebGL 2, which all major browsers support. the equivalent functions in question are gl.createVertexArray() and gl.bindVertexArray(). see https://developer.mozilla.org/en-US/docs/Web/API/WebGLVertexArrayObject

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

79291904

Date: 2024-12-18 17:03:53
Score: 1
Natty:
Report link

you can specify the CODEPAGE option in your JSON GENERATE command, like so:

JSON GENERATE My-Record 
FROM My-Data JSON-NAME 'MYJSON' 
CODEPAGE('1140').
Reasons:
  • Low length (1):
  • Has code block (-0.5):
  • Low reputation (0.5):
Posted by: Guido

79291901

Date: 2024-12-18 17:01:53
Score: 1
Natty:
Report link

Algorithm for Compact Tuple Representation Group tuples by similarity:

Partition the tuples by their values in each position. Identify where specific positions vary while others remain fixed. Generalize variable positions:

For each group of tuples that differ in a single position, replace the varying elements in that position with a list of the allowed values. Merge groups:

Attempt to merge groups where possible by comparing the lists and combining them if they differ in only one position. Iterate until compact:

Repeat the above steps until no further merging or generalization is possible.

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

79291900

Date: 2024-12-18 17:01:53
Score: 0.5
Natty:
Report link

and it decides to delete all that functions as default

I guess you are using the --force flag, and so it is deleting the functions.

To prevent function to be deleted and it will not have the question to decide if should delete or not, pass the --non-interactive flag and DON'T pass the --force flag

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

79291883

Date: 2024-12-18 16:55:51
Score: 3
Natty:
Report link

Sedgewick has good ones. Snag a copy and just keep it handy (easier reading than Knuth).

https://algs4.cs.princeton.edu/home/

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

79291880

Date: 2024-12-18 16:54:51
Score: 2
Natty:
Report link

Credit to @ave in the comments above.

In my case, I had to explicitly set up the index and item bits of the foreach

<foreach collection="accountUsers" index="index" item="item" separator=",">
(#{index, javaType=com.my.company.dataid.account.AccountNumber},
        #{item.userId},
        #{item.role},

And then List<Pair<X,Y>>> works.

Reasons:
  • Has code block (-0.5):
  • User mentioned (1): @ave
  • Self-answer (0.5):
  • Low reputation (1):
Posted by: Patrick Proctor

79291875

Date: 2024-12-18 16:52:50
Score: 1.5
Natty:
Report link

make sure schema.prisma looks:

generator client {
  provider = "prisma-client-js"
  output   = "../node_modules/.prisma/client"
}

then run:

npx prisma generate

npx prisma db push

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

79291874

Date: 2024-12-18 16:52:50
Score: 3.5
Natty:
Report link

Resolved from the Jaspersoft community forums; staff has responded that this is an ongoing login issue that others are facing.

Hi Erica. The login issue is the same as described in other posts. Some of them contains screenshot images with the same error as yours. Investigation is in progress internally. Sorry for the inconvenience. Best regards, Massimo.

Reasons:
  • Blacklisted phrase (0.5): Best regards
  • Blacklisted phrase (1): regards
  • No code block (0.5):
  • Self-answer (0.5):
  • Low reputation (1):
Posted by: Rawrica

79291864

Date: 2024-12-18 16:50:49
Score: 4
Natty: 4
Report link

declare your variable Temperature as Int16 then pass it to client.WriteNode method

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

79291860

Date: 2024-12-18 16:49:49
Score: 3
Natty:
Report link

put a break in your code exactly at_context.SaveChanges();, and see if an error like truncation

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

79291854

Date: 2024-12-18 16:48:48
Score: 5
Natty:
Report link

Is there any other option to remove a connection of SHIR instead of uninstalling it

Reasons:
  • Blacklisted phrase (1): Is there any
  • Low length (1.5):
  • No code block (0.5):
  • Single line (0.5):
  • Starts with a question (0.5): Is there any
  • Low reputation (1):
Posted by: Azarudeen

79291842

Date: 2024-12-18 16:44:47
Score: 0.5
Natty:
Report link

Answering my own question

NO, there is no way an ECDSA public key in compressed form can be imported in Windows BCrypt.

It's necessary to perform the decompression externally. Which in turn requires knowing the curve parameters and modular exponentiation of large integers (256-bit for secp256r1).

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

79291841

Date: 2024-12-18 16:43:47
Score: 1
Natty:
Report link

Right-click the element on the web page and select Inspect, then type in the developer tools console getComputedStyle($0).

Chrome Developer Tools Screenshot

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

79291837

Date: 2024-12-18 16:42:46
Score: 0.5
Natty:
Report link

If you know the nodes(n), then create adjancency list using the edge list. That is O(n). Then do DFS which is O(V+E).

Having the right data structure makes the difference.

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

79291834

Date: 2024-12-18 16:41:46
Score: 1
Natty:
Report link

It is likely that there are non-numeric values in the 'Gross' column. Inspect the columns for conformity of data type.

Check for Empty Strings or Fully Non-Numeric Rows

print(read[read['Gross'].isnull()])

Remove leading/trailing spaces

read['Gross'] = read['Gross'].str.strip() read['Gross'] = read['Gross'].str.replace('[^\d.]', '', regex=True)

Once cleaned, try the conversion again:

read['Gross'] = pd.to_numeric(read['Gross'], errors='coerce')

Fill missing values with 0

read['Gross'].fillna(0, inplace=True)

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

79291825

Date: 2024-12-18 16:39:46
Score: 1
Natty:
Report link

This is my .tfvars file

vars_by_workspace = {
  qa = {
     ecs_web_app_config = {}
     map_container_environment = {
        POOL_SIZE = "10"
        SENDGRID_API_KEY = ""
        ENVIRONMENT = "Stage"
        ...
       }

    secrets = [...]
    }
  }
  prod = {
     ecs_web_app_config = {]
     map_container_environment = {
        POOL_SIZE = "10"
        SENDGRID_API_KEY = ""
        ENVIRONMENT = "Prod"
        ...
       }

    secrets = [...]
    }
  }
Reasons:
  • Has code block (-0.5):
  • Self-answer (0.5):
  • Low reputation (1):
Posted by: backin

79291816

Date: 2024-12-18 16:36:45
Score: 2.5
Natty:
Report link

springdoc-openapi : 2.3.x - 2.5.x is compatible with spring boot 3.2.x

You can find the compatibility matrix of springdoc-openapi with spring-boot from link below :

compatibility matrix of springdoc-openapi with spring-boot

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

79291814

Date: 2024-12-18 16:36:45
Score: 2.5
Natty:
Report link

Silly mistake here, but I ran into this when we had restricted IPs setup for the cluster and I forgot to be on that IP list!

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

79291803

Date: 2024-12-18 16:32:43
Score: 4.5
Natty:
Report link

The "fix" for me was to uninstall android studio and downgrade from the latest version, all the way back to Dolphin. Firebase doesn't quite work how it should but the app seems to be working. These are the versions of things I'm using now in case it helps anyone else having the same problem as me. gradle plugin 7.2.2 gradle distribution 7.5 kotlin 1.8.0 java 17 dart 2.17.1 flutter 3.0.1

Reasons:
  • No code block (0.5):
  • Me too answer (2.5): having the same problem
  • Self-answer (0.5):
  • Low reputation (1):
Posted by: JasonB

79291802

Date: 2024-12-18 16:31:43
Score: 1
Natty:
Report link
service = Service('C:\Anfield\Archive\Chromedriver\chromedriver-win64\chromedriver-win64\chromedriver.exe')

remove the executable_path arg in the Service object call, instead of it write directlly your webdriver path, and check the webdriver path

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

79291798

Date: 2024-12-18 16:31:43
Score: 0.5
Natty:
Report link

Turns out the issue was related to boxes and recipes not yet being populated through useEffect as I was trying to set the box after navigating. The solution was to add a dependency on these two states and setting the box only if these two have been set.

    useEffect(() => {
    if (state != undefined && boxes.length > 0 && recipes.length > 0) {
        updateBox(state.barcode)
    }
}, [state, boxes, recipes]);
Reasons:
  • Has code block (-0.5):
  • Self-answer (0.5):
  • Low reputation (0.5):
Posted by: Andreas

79291794

Date: 2024-12-18 16:30:42
Score: 1
Natty:
Report link

One way would be to pull out the invividual parts of the date part and reorder them to utc? Swap day and month around to required format

DECLARE @date nvarchar(50) = N'02/10/2015 14:26:48'

SELECT CONVERT(datetime, SUBSTRING(@date, 7, 4) + '-' + SUBSTRING(@date, 4, 2) + '-' + SUBSTRING(@date, 1, 2) + ' ' + SUBSTRING(@date, 12, 8))
Reasons:
  • Has code block (-0.5):
  • Contains question mark (0.5):
  • Low reputation (1):
Posted by: Adrian Loughman

79291790

Date: 2024-12-18 16:29:42
Score: 0.5
Natty:
Report link

After the November release of moviepy they removed the editor module and changed some directories.

to fix this error temporarily you can downgrade to Moviepy 1.0.3

pip uninstall moviepy
pip install moviepy==1.0.3
Reasons:
  • Low length (0.5):
  • Has code block (-0.5):
  • Low reputation (0.5):
Posted by: beratcelik

79291785

Date: 2024-12-18 16:27:41
Score: 0.5
Natty:
Report link

The other 2 answers are both correct, but due to my career history I have some additional information to share.

With the advent of the C99 standard came <stdint.h> which was a great gift for those developing C code which needed to be portable across different platforms. However, the printf family format specifiers had already been in place before C99 and retained their meaning, and are dependent upon the size of an int for each platform. If a development team used <stdint.h> types to pass with printf-family format specifiers, this causes the code to no longer be portable across different platforms. Let us take your code example above for illustration:

#include <stdio.h>
#include <inttypes.h>

void main(void)
{
    int32_t a = 44;

    fprintf(stdout, "%d\n", a);         // Only safe on 32-bit platform.
    fprintf(stdout, "%"PRId32"\n", a);  // Safe on all platforms.
}

Let us also consider the microcontroller world, in which the same C code might need to be shared among different platforms (a.k.a. the size of the CPU's registers, which typically matches the size of the stack word -- which is where the printf family of functions comes in). The printf family of functions uses the chain of format specifiers to know where to read from the stack, and one of the format specifiers ("%n") accepts a pointer input, allowing the printf functions to WRITE a value out to an integer variable, so it is imperative that the chain of format specifiers and the actual stack contents be in precise agreement, or else it can risk the printf function reading from incorrect locations on the stack, or worse with the "%n" specifier, if a pointer is being read from the stack to which it will write, and it reads from an incorrect location on the stack, the probability that it will write to a dangerous (unintended) place in RAM is very high.

Consider these platforms:

Let us consider the first call to fprintf() above: that will only be correct (and safe) on a 32-bit platform. If the code is used with an 8- or 16-bit platform, the format specifier will need to be changed to "%ld" to be correct (and thus safe). In other words, the code is not portable.

To solve this, C99 came with <inttypes.h> which has printf specifier-translation macros for the various int types that came with <stdint.h> so that printf family format specifier strings can be portable.

How do you make it portable? Use specifiers as used in the 2nd call to fprintf() above. (Since PRId32 equates to a string constant [with quotation marks], the C compiler concatenates the strings together at compile time, thus, passing only one string constant to the fprintf() function.

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

79291757

Date: 2024-12-18 16:17:39
Score: 2
Natty:
Report link

Round No:248845744310609728TLUC5 Seed: Result Cipher:18a30900006019eea3b13879709198c25771d68fe53e8494f142065ee0dab5be Seed Cipher:85e6391e7d723a9dfa6cb0a9910fb0e9903a767488e3578518e6d8d098a2f817 Result:

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

79291753

Date: 2024-12-18 16:16:39
Score: 1
Natty:
Report link

That's an actual plugin card from the folks at Array, so we don't have a code sample for that particular plugin at Jack Henry.

The "Back to Dashboard" button in Array's plugin simply navigates to the base URL of Banno Online for the Garden demo institution, i.e. navigates folks to https://digital.garden-fi.com.

In terms of example apps, we have these (although none use a "Back to Dashboard" type of navigation):

Reasons:
  • No code block (0.5):
  • Low reputation (0.5):
Posted by: Jaime Lopez Jr.

79291749

Date: 2024-12-18 16:15:38
Score: 0.5
Natty:
Report link

The troube is usual here, the question asked year by year every day, and the answer still same: --url=jdbc:postgresql://localhost:5432/mydb - you used localhost here insted of service/container name, and that's mistake. Just use service or container name here instead of localhost.

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

79291745

Date: 2024-12-18 16:13:38
Score: 1
Natty:
Report link

on windows powerShell, use this command:

Get-ChildItem -Path "specify directory path" -Recurse -Filter "*.docx"
Reasons:
  • Low length (1):
  • Has code block (-0.5):
  • Low reputation (0.5):
Posted by: Ali BOUHLEL

79291736

Date: 2024-12-18 16:08:37
Score: 2
Natty:
Report link
r0 = np.outer([1,1,1],[0,0,0,1,1,1,2,2,2])
bins = np.append(np.append(r0,3+r0, axis=0),6+r0, axis=0).flatten()
sums = np.reshape(np.bincount(bins, weights=board.flatten()),[3,3])
Reasons:
  • Low length (1):
  • Has code block (-0.5):
  • Unregistered user (0.5):
  • Low reputation (1):
Posted by: Anon

79291735

Date: 2024-12-18 16:08:37
Score: 0.5
Natty:
Report link

If you still having issues and you installed latest Android studio (LadyBug) and created a new project and wish to use room library you will need to migrate from kapt to ksp. You can read about it here https://developer.android.com/build/migrate-to-ksp Basically you will need to follow the following steps:

  1. add the following line into Project module build.gradle.kts in plugins section

    id("com.google.devtools.ksp") version "2.0.21-1.0.27" apply false

  2. add the following line into Module build.gradle.kts in plugins section

    id("com.google.devtools.ksp")

  3. you will be required to update the kotlin version in libs.versions.toml from 1.9.24 to 2.0.21 (maybe there will be a newer version by the time you will see this solution, android studio will inform you which version you need to update in the console after syncing the project).

  4. sync the project, it should work after that

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

79291732

Date: 2024-12-18 16:04:36
Score: 1.5
Natty:
Report link

FILES DATA AIMBOT‼️100% VIP.7z 1 Cannot open output file : errno=1 : Operation not permitted : /storage/emulated/0/Download/FILES DATA AIMBOT‼️ 100%/⚠️ peringatan ||| warning⚠️/BACA⚠️____________________________________________________________ GUNA FILES INI DI AKUN KECIL SAJA ||| TIDAK DI SARANKAN DI GUNAKAN DI AKUN UTAMA ‼️ 2 Cannot open output file : errno=1 : Operation not permitted : /storage/emulated/0/Download/FILES DATA AIMBOT‼️ 100%/⚠️ peringatan ||| warning⚠️/READ⚠️____________________________________________________________ USE THESE FILES ON SMALL ACCOUNTS ONLY ||| NOT RECOMMENDED FOR USE ON MAIN ACCOUNT ‼️

Reasons:
  • Long answer (-0.5):
  • No code block (0.5):
  • Filler text (0.5): ____________________________________________________________
  • Filler text (0): ____________________________________________________________
  • Low reputation (1):
Posted by: Tenzz

79291722

Date: 2024-12-18 16:01:34
Score: 4
Natty:
Report link

I want to catch errors for blank email or password for wrong email for wrong password for multiple credentials what should I like to write also if it pass then it should auto logout

Reasons:
  • RegEx Blacklisted phrase (1): I want
  • Low length (0.5):
  • No code block (0.5):
  • Unregistered user (0.5):
  • Single line (0.5):
  • Low reputation (1):
Posted by: user28841652

79291721

Date: 2024-12-18 16:00:34
Score: 3
Natty:
Report link

Don't give layout view names to files name.

Reasons:
  • Low length (1.5):
  • No code block (0.5):
  • Self-answer (0.5):
  • Single line (0.5):
Posted by: Arjun Patel

79291719

Date: 2024-12-18 15:59:34
Score: 1
Natty:
Report link

I just removed display:grid and made

.grid-wrapper {
  flex-flow: wrap;
  display: flex;
  gap: 1.5rem;
  justify-content: center; 
  align-content: start; 
  width: 500px;
}

.grid-item {
  background: gray;
  height: 80px;
  width: 80px;
}

based on your example

result

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

79291716

Date: 2024-12-18 15:58:33
Score: 3.5
Natty:
Report link

This was a bug in exoplayer 2.11.1 with certain video formats. It was solved when upgrading exoplayer to 2.13.3 or higher.

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

79291711

Date: 2024-12-18 15:56:33
Score: 7.5
Natty: 7.5
Report link

I came across your question while dealing with the same exact error message, in my case trying to upload an app to EOSC. Could you please share your Dockerfile to have a reference on to where the problem might be? Thanks!

Reasons:
  • Blacklisted phrase (0.5): Thanks
  • RegEx Blacklisted phrase (2.5): Could you please share your
  • Low length (0.5):
  • No code block (0.5):
  • Ends in question mark (2):
  • Single line (0.5):
  • Low reputation (1):
Posted by: Jordi Nonel

79291710

Date: 2024-12-18 15:56:32
Score: 0.5
Natty:
Report link

I found a solution to the problem, which lies in the fact that when I clicked on the Manage button, I noticed that the click event would cover the entire VStack in the Form.

So every time I clicked on the Manage button, I actually clicked on all the delete buttons in the TagView. It clears the tags.

To fix it, I simply added .buttonstyle (.plain) under the Manage and delete buttons

Button(action: { showingTagManagement = true }) {
    Text("Manage")
}
.buttonStyle(.plain)

Button("test") {
    tags.append("test")
}
.buttonStyle(.plain)
Reasons:
  • Long answer (-0.5):
  • Has code block (-0.5):
  • Self-answer (0.5):
  • Low reputation (1):
Posted by: Xuefei Lv

79291708

Date: 2024-12-18 15:56:32
Score: 0.5
Natty:
Report link

CodeNarc from version 3.3.0 has a rule to detect this kind of mistakes https://codenarc.org/codenarc-rules-junit.html#spockmissingassert-rule

It is priority 3 as default, I would recommend changing it to P1 as the test is potentially useless if the assert is missing

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

79291707

Date: 2024-12-18 15:55:32
Score: 1
Natty:
Report link

you need to raise the WebDriverWait because it seems that 10 sec is not enough, try raising it to 30 sec and then reduce it until you find the minimum that the script should wait, if the element is not located yet try to use this path

//span[text()='X']
Reasons:
  • Low length (0.5):
  • Has code block (-0.5):
  • Low reputation (1):
Posted by: youssef

79291699

Date: 2024-12-18 15:51:31
Score: 4
Natty: 4.5
Report link

Moving the fluent js file to the head isn't solving the 'blinking' problem for me with the latest fluent version. Also, it looks like the fluent js files do not cache. Shouldn't they cache?

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

79291686

Date: 2024-12-18 15:49:30
Score: 2.5
Natty:
Report link

style="padding-bottom: 4px" to the image, changing the padding to what ever works for you if you want an inline fix.

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

79291679

Date: 2024-12-18 15:44:29
Score: 1
Natty:
Report link

Wrapping R code in parenthesis like this (NCORES <- nb_cores()) ensures that the output of the function nb_cores() is both assigned to the variable NCORES and also printed to the R console.

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

79291673

Date: 2024-12-18 15:42:27
Score: 7.5 🚩
Natty:
Report link

My server name matches but still i get the error, The server could not be contacted.Its running succesfully, what could be another reason for the metadata deployment error? enter image description here

enter image description here

Reasons:
  • Blacklisted phrase (1): enter image description here
  • Blacklisted phrase (1): what could be
  • RegEx Blacklisted phrase (1): i get the error
  • Low length (1):
  • No code block (0.5):
  • Ends in question mark (2):
  • Low reputation (1):
Posted by: Waddah A.

79291670

Date: 2024-12-18 15:41:26
Score: 1
Natty:
Report link

Solved changed the getAuthorities method as follow:

public List<SimpleGrantedAuthority> getAuthorities() {
        List<SimpleGrantedAuthority> authorities = new ArrayList<>(getPermissions()
                .stream()
                .map(permission -> new SimpleGrantedAuthority(permission.getName()))
                .toList());
        authorities.add(new SimpleGrantedAuthority("ROLE_" + this.name));

        return authorities;
    }
Reasons:
  • Has code block (-0.5):
  • Self-answer (0.5):
  • Low reputation (1):
Posted by: Francesco Girardi

79291665

Date: 2024-12-18 15:39:26
Score: 2.5
Natty:
Report link

Try to re-install composer. That should fix Your issue:

  1. rm -rf vendor/
  2. composer clear-cache
  3. composer install
  4. php bin/console cache:clear
Reasons:
  • Low length (1):
  • No code block (0.5):
  • Low reputation (1):
Posted by: Gueram

79291659

Date: 2024-12-18 15:38:25
Score: 1
Natty:
Report link

I finally found the answer as to why the error message is arising and would like to post it in case others run into the same conundrum.

In WSL-2 (Dec 2024), wsl command on the Command Line starts WSL as the root user, and all files are owned by root. I had changed the user using su <myname> and received the error message. If do not change user to <myname> the problem goes away.

One can unmount /mnt/c, and remount it with <myname>. That will also resolve the problem.

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

79291655

Date: 2024-12-18 15:38:25
Score: 0.5
Natty:
Report link

In Qt 6.8, you can determine if a style supports a switchable color scheme by checking the QStyle class and its associated QPalette. While there is no direct method to query a style for dark mode support, you can infer it by examining the QPalette for the style in use.

Here’s a simple approach to check if a style can be switched to dark mode:

from PyQt6.QtWidgets import QApplication, QStyleFactory from PyQt6.QtGui import QPalette

def has_dark_mode(style_name): style = QStyleFactory.create(style_name) palette = style.standardPalette()

Check if the palette has a dark mode variant return palette.color(QPalette.ColorRole.Window).value() < 128 # Example threshold

Example usage app = QApplication([])

styles = QStyleFactory.keys() for style in styles: if has_dark_mode(style): print(f"{style} supports dark mode.") else: print(f"{style} does not support dark mode.")

This code snippet checks the brightness of the window color in the standard palette. If the value is below a certain threshold, it suggests that the style may support a dark mode.

Regarding hardcoding, while it may be necessary for styles like "windowsvista," most styles on Linux and macOS do support switchable color schemes. However, testing on those platforms is recommended for confirmation.

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

79291649

Date: 2024-12-18 15:36:25
Score: 0.5
Natty:
Report link

I found this command

gwmi Win32_PNPEntity | ? ClassGuid -eq '{4d36e978-e325-11ce-bfc1-08002be10318}' | % Name

thanks to this answer

Reasons:
  • Blacklisted phrase (0.5): thanks
  • Low length (1):
  • Has code block (-0.5):
  • Self-answer (0.5):
  • High reputation (-1):
Posted by: SebMa

79291648

Date: 2024-12-18 15:36:25
Score: 3.5
Natty:
Report link

That is Tower of Hanoi. Just look for that and you will find a lot of solutions.

Reasons:
  • Low length (1.5):
  • No code block (0.5):
  • Single line (0.5):
  • Low reputation (1):
Posted by: Maximilian Münchow

79291634

Date: 2024-12-18 15:32:24
Score: 3
Natty:
Report link

This is not a General Audience feature. The image referencing it has been replaced in the documentation. If you would like this functionality, you can request a feature or upvote an existing request here: https://developercommunity.visualstudio.com/AzureDevOps/suggest

Reasons:
  • Blacklisted phrase (0.5): upvote
  • Low length (0.5):
  • No code block (0.5):
  • Single line (0.5):
  • Low reputation (1):
Posted by: SamDG

79291629

Date: 2024-12-18 15:31:24
Score: 1
Natty:
Report link

The error occurs because the astype('timedelta64[D]') step is unnecessary and incorrectly handled by pandas. Instead use the following code: import pandas as pd import numpy as np

Example DataFrame

df = pd.DataFrame({'designation_date': ['2021-01-01', '2021-01-02']})

Calculate recency

df['recency'] = pd.Timestamp('today') - pd.to_datetime(df['designation_date'])

Convert to days

df['recency'] = df['recency'] / np.timedelta64(1, 'D') print(df)

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

79291628

Date: 2024-12-18 15:31:23
Score: 5.5
Natty: 5.5
Report link

Sorry if this is not an answer, but I wanted to ask for help. I am trying to do this:

option_chain = ib.reqSecDefOptParams(
1, underlying_symbol, '', underlying_security_type, conId)

But I'm getting the error TypeError: IB.reqSecDefOptParams() takes 5 positional arguments but 6 were given. Why does it recognize 6 arguments?

Reasons:
  • Blacklisted phrase (1): not an answer
  • Blacklisted phrase (1): I am trying to
  • RegEx Blacklisted phrase (1): I'm getting the error
  • Has code block (-0.5):
  • Ends in question mark (2):
  • Low reputation (1):
Posted by: Keith

79291625

Date: 2024-12-18 15:31:23
Score: 0.5
Natty:
Report link

I've fixed it moving the definition of callback as a property of my script so it won't get freed.

var callback = JavaScriptBridge.create_callback(on_message_received)

func _ready():
  var window = JavaScriptBridge.get_interface("window")

  window.addEventListener("message", callback)

func on_message_received(event):
    print("Message received in godot. ")
Reasons:
  • Has code block (-0.5):
  • Self-answer (0.5):
  • Low reputation (0.5):
Posted by: Cristiano Schiaffella

79291608

Date: 2024-12-18 15:24:21
Score: 3
Natty:
Report link

If you try to install sklearn, the correct command is :

pip install scikit-learn

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

79291599

Date: 2024-12-18 15:22:21
Score: 1
Natty:
Report link

On WEBrick 1.9.1 you can silence the log by passing in an empty AccessLog array.

def server
  opts = {
    AccessLog: []
  }

  Rack::Handler::WEBrick.run(
    Rack::Builder.new do
      # Turns on gzip compression.
      use Rack::Deflater
    end,
    **opts
  )

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

79291593

Date: 2024-12-18 15:21:20
Score: 3.5
Natty:
Report link

Determining if SQL query A returns a subset of query B can be complex without data. ER/Studio’s comprehensive data modeling and SQL analysis tools can help by providing schema insights, constraints, and relationships. These can be used programmatically to infer subset relationships. ER Studio

Reasons:
  • Contains signature (1):
  • Low length (0.5):
  • No code block (0.5):
  • Single line (0.5):
  • Low reputation (1):
Posted by: ER Studio

79291592

Date: 2024-12-18 15:20:20
Score: 1
Natty:
Report link

Got the same error. I think what causes this is maven clean installing while you have the server running. Unique way I solved this was cloning the project again.

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

79291582

Date: 2024-12-18 15:17:19
Score: 1
Natty:
Report link

Try to install, works for me for Laravel 11

composer require masbug/flysystem-google-drive-ext

Reasons:
  • Whitelisted phrase (-1): works for me
  • Low length (1):
  • No code block (0.5):
  • Low reputation (0.5):
Posted by: Davit Hambardzumyan

79291578

Date: 2024-12-18 15:16:19
Score: 1.5
Natty:
Report link
#!/bin/bash

for bucket in $(aws s3api list-buckets --query "Buckets[].Name" --output text); do
    result=$(aws s3api get-bucket-versioning --bucket ${bucket} --output text)
    echo "${bucket}: ${result}"
done

exit;
Reasons:
  • Low length (0.5):
  • Has code block (-0.5):
  • Unregistered user (0.5):
  • Low reputation (1):
Posted by: Paul Littlefield

79291548

Date: 2024-12-18 15:07:17
Score: 3.5
Natty:
Report link

I also encountered this problem and had no idea what to do. There's no time.py in mesa.

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

79291545

Date: 2024-12-18 15:06:16
Score: 1
Natty:
Report link

Magic Commands cannot be parameterised. You can use another technique for parameterisation of the notebook.

Below command can be used to pass parameters while triggering a notebook.

mssparkutils.notebook.run("paramerterization_demo",300 {"person_name":"John", "person_age":"24"})

For more detail explanation, follow this article.

Article Link: https://www.linkedin.com/pulse/mastering-notebook-parameterization-ms-fabric-abdullah-najeeb-gbxff/?trackingId=Z9pbDt5RRDyKJtEbz0Y92A%3D%3D

Reasons:
  • Blacklisted phrase (1): this article
  • Whitelisted phrase (-1.5): You can use
  • Probably link only (1):
  • Has code block (-0.5):
  • Low reputation (1):
Posted by: Abdullah Najeeb

79291540

Date: 2024-12-18 15:03:16
Score: 2.5
Natty:
Report link

Please try to open the dashboard on localhost:8024 and create the first context manually (first screen on the dashboard).

Then your app should connect to Axon Server.

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

79291537

Date: 2024-12-18 15:03:16
Score: 1
Natty:
Report link

Correct Way is first you check

state is not equal to initialstate

const [data,setData] = useState('initial state')

//component code 
 <>
   {data != 'initial state' && (data.length>0 ? data.map((dat)=>{} : <>no data</> ))                         }
 </>
Reasons:
  • Low length (0.5):
  • Has code block (-0.5):
  • Low reputation (1):
Posted by: web devlopment king

79291532

Date: 2024-12-18 15:02:15
Score: 2
Natty:
Report link

why you are not linking favicon in your HTML

<head> 
    <link rel="shortcut icon" type="image/x-icon" href="favicon.ico" />
</head>
Reasons:
  • Low length (1):
  • Has code block (-0.5):
  • Starts with a question (0.5): why you are not
  • Low reputation (1):
Posted by: Mohammad Reza Mahdiani

79291527

Date: 2024-12-18 15:01:15
Score: 2.5
Natty:
Report link

You are probably calling the name of the lot through a script! Due it has no way to plot it in the screen, it is saved to pdf format

mark your script with a comment line and ready

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

79291526

Date: 2024-12-18 15:00:15
Score: 1.5
Natty:
Report link

We removed Google Places iOS SDK from our project and switched to Google Web Service / Place API. We make simple URL requests for our needs and don't need the SDK anymore. You need to have a valid key though.

https://developers.google.com/maps/documentation/places/web-service/overview

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

79291520

Date: 2024-12-18 14:57:14
Score: 2.5
Natty:
Report link

I found it myself. The & had to be:

&amp;

for the XLM parser

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

79291502

Date: 2024-12-18 14:51:12
Score: 3
Natty:
Report link

First of all , you should use "WRITEDATA" other than "WRITEFUNCTION". The later is for self defined function. Besides , python 3 is recommended.

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

79291500

Date: 2024-12-18 14:51:12
Score: 0.5
Natty:
Report link

Yes, it's possible and actually quite common to organize Buildbot configurations in a way that each project or branch has its own build recipe along with the source code. This approach helps in managing each project's build configuration independently, making it easier to maintain and update the recipes without affecting other projects.

Buildbot allows for flexible configuration, and the configuration file typically contains all the necessary details to define how the builds will run. These configurations can be centralized in one file, or you can split them across multiple files for better organization.

Currently, you may have a central buildbot.cfg or a similar file where all your projects and their build steps are defined. Instead of keeping everything in one place, you can split it by project/branch. To put each project’s build recipe with its source code, the most straightforward method is to create a buildbot directory inside each project's repository. This directory can contain a Python script that defines the build steps for that specific project. You can then reference this script in the central configuration or manage it independently.

Instead of having all the project recipes inside the central buildbot.cfg, you can import each project’s build.py in the main configuration file. This way, each project’s build logic is encapsulated within its own directory, and you simply call these recipes from the main configuration file. If you have the buildbot.cfg and each project's build.py under version control, you can commit and manage them independently. For example:

The main Buildbot repository would contain the buildbot.cfg and common configurations.

Each project repository would contain its own buildbot/ directory with build.py and other related configuration files.

This way, when you make changes to a specific project, you only need to update its build.py recipe, and you can ensure that each project’s configuration is versioned alongside its source code.

Once you've set up the project-specific recipes and the central configuration, Buildbot will pick up the individual recipes, trigger the builds accordingly, and execute the steps as defined in each project’s build.py.

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

79291490

Date: 2024-12-18 14:49:12
Score: 2
Natty:
Report link

please use:

var data =await (linq query).ToListAsync();
Reasons:
  • Low length (1.5):
  • Has code block (-0.5):
  • Low reputation (1):
Posted by: Alireza Balavand

79291485

Date: 2024-12-18 14:47:11
Score: 3
Natty:
Report link

Simply use the fluid attribute on the InputNumber component: https://primevue.org/fluid/

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

79291483

Date: 2024-12-18 14:46:11
Score: 3
Natty:
Report link

Thanks for the answer. However, I tried below that I thought a simple approach and it is working

WHat you say ?

library(shiny)
runApp(
  list(ui = fluidPage(

        tags$p(id = 'g', class =  'newClass',  'This is a paragraph'),tags$p(id = "demo"),
        tags$script('Shiny.addCustomMessageHandler("testmessage",
        function(message)
        {
        var tit = document.getElementById("g")
        tit.onclick = function (){document.getElementById("demo").innerHTML  = message}
        }
);')
        )
  , server = function(input, output, session){
    asd <- Sys.Date()
    observe({session$sendCustomMessage(type = 'testmessage',message = asd)})
  })
)
Reasons:
  • Blacklisted phrase (0.5): Thanks
  • Long answer (-0.5):
  • Has code block (-0.5):
  • Ends in question mark (2):
  • Self-answer (0.5):
  • Low reputation (1):
Posted by: Vinay Kumar

79291477

Date: 2024-12-18 14:46:11
Score: 0.5
Natty:
Report link
Get-ChildItem -Path "C:\YourDirectory" -Recurse | Where-Object { $_.Name -match "your-regex-pattern" }

to search all docx files:

Get-ChildItem -Path "C:\YourDirectory" -Recurse | Where-Object { $_.Name -match "*.docx" }
Reasons:
  • Low length (0.5):
  • Has code block (-0.5):
  • Low reputation (0.5):
Posted by: Ali BOUHLEL

79291476

Date: 2024-12-18 14:45:10
Score: 2.5
Natty:
Report link

use docker context show will tell you whether it's default or rootless

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

79291469

Date: 2024-12-18 14:41:09
Score: 4.5
Natty:
Report link

I am having trouble in installing tidyinverse package by getting the below error

install.packages('tidyinverse') WARNING: Rtools is required to build R packages but is not currently installed. Please download and install the appropriate version of Rtools before proceeding:

https://cran.rstudio.com/bin/windows/Rtools/ Installing package into ‘C:/Users/Admin/AppData/Local/R/win-library/4.4’ (as ‘lib’ is unspecified) Warning in install.packages : package ‘tidyinverse’ is not available for this version of R

A version of this package for your version of R might be available elsewhere, see the ideas at https://cran.r-project.org/doc/manuals/r-patched/R-admin.html#Installing-packages

Reasons:
  • Blacklisted phrase (1.5): getting the below error
  • RegEx Blacklisted phrase (2): I am having trouble
  • Long answer (-0.5):
  • No code block (0.5):
  • Low reputation (1):
Posted by: Sikiru Yusuff

79291467

Date: 2024-12-18 14:41:09
Score: 1
Natty:
Report link

Unfortunately, Redis does not provide a native “negative match” pattern or a built-in command to flush all keys except for a specific one. You must instead retrieve all keys and then filter them out before deleting.

Approach using a shell pipeline: 1. List all keys with redis-cli keys "*". 2. Use grep -v to exclude the key zrtt_industry. 3. Pass the remaining keys to redis-cli del via xargs.

For example:

redis-cli -h zapi.data.com KEYS "*" | grep -v '^zrtt_industry$' | xargs -n 1 redis-cli -h zapi.data.com DEL

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

79291458

Date: 2024-12-18 14:39:08
Score: 0.5
Natty:
Report link
  1. You need to make sure that your Python version is at least 3.8. You can look at torch's version history to see what Python versions are compatible with which versions of PyTorch.
  2. Also, you need to make sure pip is updated with pip install --upgrade pip
Reasons:
  • Low length (0.5):
  • Has code block (-0.5):
  • Low reputation (0.5):
Posted by: David Robinson

79291439

Date: 2024-12-18 14:35:07
Score: 4
Natty:
Report link

Why not just try to make the path and then check it?

def path_type(my_path):
    if os.path.exists(my_path):
        return 'dir'
    else:
        try:
            p = os.path.makedirs(my_path)
            os.remove(p)
            return 'dir'
        except:
            pass
        return 'file'
Reasons:
  • Low length (0.5):
  • Has code block (-0.5):
  • Ends in question mark (2):
  • Unregistered user (0.5):
  • Starts with a question (0.5): Why not
  • Low reputation (1):
Posted by: Luke

79291438

Date: 2024-12-18 14:35:07
Score: 3
Natty:
Report link

Problem solved. I use Xmanager to recieve X11 from server, now run GUI.py in Jetbrains Gateway IDE can also show GUI on my desktop.

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

79291437

Date: 2024-12-18 14:33:06
Score: 3
Natty:
Report link

Perhaps your dataset is too small. You could try to use augmentation to expand your dataset.

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

79291436

Date: 2024-12-18 14:33:06
Score: 1
Natty:
Report link

For all those who cannot apply the patch with the three-way merge, I have found a good solution under this link that works for me: git.vger.kernel.narkive.com

I did the following steps from the answer:

  1. Run git-am to get the number of the failing patch
  2. Apply the patch manually, but turn on verbose and reject in git-apply
    git-apply --verbose --reject changes.patch
    Then the conflicting file(s) will be saved as <filename>.<extension>.rej
  3. Manually resolve the conflicts

Please check the link for the original, more elaborate answer.

Reasons:
  • Blacklisted phrase (1): this link
  • Whitelisted phrase (-1): works for me
  • RegEx Blacklisted phrase (1): check the link
  • Long answer (-0.5):
  • Has code block (-0.5):
  • Low reputation (1):
Posted by: Terve

79291432

Date: 2024-12-18 14:31:05
Score: 2.5
Natty:
Report link

i have conducted some little research and if you want the data bars to be sorted for each year part of these clusters you need to pre define the dataset and sort it like this:

 const chartData = {
  datasets: [
    {
      label: "Respondent 1",
      data: [750, 700, null, null],
      backgroundColor: "#1E81D3",
      borderColor: "#ccc",
      borderRadius: 5
    },
    {
      label: "Respondent 3",
      data: [null, 419, null, null],
      backgroundColor: "#0D5AB7",
      borderColor: "#ccc",
      borderRadius: 5
    },
    {
      label: "Respondent 2",
      data: [null, 33921, null, null],
      backgroundColor: "#063F84",
      borderColor: "#ccc",
      borderRadius: 5
    },
    {
      label: "Respondent 3",
      data: [null, null, 21583, null],
      backgroundColor: "#0D5AB7",
      borderColor: "#ccc",
      borderRadius: 5
    },
    {
      label: "Respondent 2",
      data: [null, null, 20001, null],
      backgroundColor: "#063F84",
      borderColor: "#ccc",
      borderRadius: 5
    },
    {
      label: "Respondent 3",
      data: [null, null, null, 488],
      backgroundColor: "#0D5AB7",
      borderColor: "#ccc",
      borderRadius: 5
    },
    {
      label: "Respondent 2",
      data: [null, null, null, 3999],
      backgroundColor: "#063F84",
      borderColor: "#ccc",
      borderRadius: 5
    }
  ],
  labels: [
    "2017 Fiscal Year (Jul-Jun) - H2",
    "2022 Fiscal Year (Jan-Dec) - H2",
    "2023 Fiscal Year (Jan-Dec) - H1",
    "2023 Fiscal Year (Jan-Dec) - H2"
  ],
  yAxisLabel: "Cubic Meters"
};

// Sort datasets based on the sum of their `data` values
chartData.datasets.sort((a, b) => {
  const sumA = a.data.reduce((sum, val) => sum + (val || 0), 0); // Calculate sum of dataset A
  const sumB = b.data.reduce((sum, val) => sum + (val || 0), 0); // Calculate sum of dataset B
  return sumB - sumA; // Sort in descending order
});

if i understood you question correctly this would probably be the solution if not please give some clarification of what is wrong with the answer.

Reasons:
  • RegEx Blacklisted phrase (2.5): please give some
  • RegEx Blacklisted phrase (1): i understood you question correctly this would probably be the solution if not please
  • Long answer (-1):
  • Has code block (-0.5):
  • Low reputation (0.5):
Posted by: oelimoe

79291414

Date: 2024-12-18 14:27:04
Score: 3
Natty:
Report link

The feature is now available under Run terminal

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

79291413

Date: 2024-12-18 14:27:04
Score: 2.5
Natty:
Report link

To find information on globalization support in ASP.NET, see this Microsoft page. According to the page, ScriptManager can deliver different scripts based on the user's culture.

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

79291405

Date: 2024-12-18 14:23:03
Score: 10
Natty: 7
Report link

@sainaen Thank you! 9years later and this helped me alot. I've been trying to solve this for 2 days! I just wonder how did you found this? is it written somewhere in the document?

Reasons:
  • Blacklisted phrase (0.5): Thank you
  • RegEx Blacklisted phrase (3): did you found this
  • Low length (1):
  • No code block (0.5):
  • Ends in question mark (2):
  • User mentioned (1): @sainaen
  • Looks like a comment (1):
  • Low reputation (1):
Posted by: taril

79291403

Date: 2024-12-18 14:22:00
Score: 7 🚩
Natty:
Report link

bro did u get answers ? i am also working on video editing and i want to immediate change on video if i apply any small change

Reasons:
  • RegEx Blacklisted phrase (3): did u get answer
  • RegEx Blacklisted phrase (1): i want
  • Low length (1):
  • No code block (0.5):
  • Contains question mark (0.5):
  • Low reputation (1):
Posted by: syed umair badar

79291398

Date: 2024-12-18 14:20:59
Score: 2.5
Natty:
Report link

The discrepancy between the CLI command and the .spec file likely stems from the way the AQL (Artifactory Query Language) is structured in the .spec file. While the CLI command is straightforward and effectively retrieves artifacts, the AQL query in your .spec file may not be correctly

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

79291395

Date: 2024-12-18 14:19:59
Score: 1
Natty:
Report link
   document.addEventListener('DOMContentLoaded', function() {
       const videos = document.querySelectorAll('video');
       videos.forEach(video => {
           video.EventListener('mouseover', video.play);
           video.EventListener('mouseout', video.pause);
       });
   });
Reasons:
  • Low length (0.5):
  • Has code block (-0.5):
  • Low reputation (1):
Posted by: Muhammad Zeeshan

79291366

Date: 2024-12-18 14:09:56
Score: 4
Natty:
Report link

Using NavigationStack instead of NavigationView solved the issue.

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

79291362

Date: 2024-12-18 14:07:56
Score: 0.5
Natty:
Report link

I have fixed the error. I just used the github link. Here are my requirements from buildozer.spec:

requirements=python3,kivy==2.3.0,https://github.com/kivymd/KivyMD/archive/master.zip

It also turns out that buildozer decided to only use kivymd version 1.3.0 even though I deleted it once. Had to delete the .buildozer directory from my project directory. That caused problems down the line, so if anyone has the same issue, try to delete things properly. There should be a command in buildozer that cleans everything (although that will require another installation of all the components)

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

79291361

Date: 2024-12-18 14:07:55
Score: 4
Natty:
Report link
I am also facing the same issue while running the scripts in sequence regardless of previous task's status

My original script which I want to achieve all 3 tasks-
"testChrome": "npm run deleteOutput && npx playwright test --project=chrome --grep @smoke && npm run generateReport"

here, in my pipeline I am running 'npm run testChrome'
the last task of generateReport will only executes if previous 2 are passed. 

I tried with ';' but it's giving an error. I am using Playwright framework.

Below worked for me but I need to have multiple scripts (for each browser) which is not recommended; otherwise require me to change the script every time. Like below

"chrome": "npx playwright test --project=chrome --grep @smoke"
"edge": "npx playwright test --project=edge --grep @smoke"
"safari": "npx playwright test --project=safari --grep @smoke"

"runChromeTestsWithReport": "npm-run-all -s -c deleteOutput testEdge generateReport"
"runFirefoxTestsWithReport": "npm-run-all -s -c deleteOutput testEdge generateReport"
"runSafariTestsWithReport": "npm-run-all -s -c deleteOutput testEdge generateReport"

Then finally I can run 'npm run runChromeTestsWithReport'

so I would need to create 6 scripts.

Let me know if anyone has better solution on this. Thanks
Reasons:
  • Blacklisted phrase (0.5): Thanks
  • Blacklisted phrase (1): I am also facing the same issue
  • Blacklisted phrase (0.5): I need
  • Whitelisted phrase (-1): worked for me
  • RegEx Blacklisted phrase (1): I want
  • Long answer (-1):
  • Has code block (-0.5):
  • Me too answer (2.5): I am also facing the same issue
  • Low reputation (1):
Posted by: Irshad Telsang

79291344

Date: 2024-12-18 13:59:54
Score: 1.5
Natty:
Report link

QGIS expresion bulider base on SQL mixed with Python. Some elements of SQL works, some elements of python also works, but not all. For example single qoute is for string, double qoute is for reference to field in atribute table.

For more information look for official documention for QGIS docs.qgis

Reasons:
  • Low length (0.5):
  • No code block (0.5):
  • Low reputation (0.5):
Posted by: Łukasz Świątek

79291332

Date: 2024-12-18 13:55:53
Score: 3
Natty:
Report link

Apologies, I don't think there is anything wrong with the formula after all. I have only just noticed that one of the "Expected CCT Dates" had gone in with the year 1931 (i.e. less than 365 days from now) instead of 2031 (more than 365 days from now).

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

79291323

Date: 2024-12-18 13:52:52
Score: 3
Natty:
Report link

In order to achieve this do the following 3 steps: 1.Have your 1st step of odisqlunload to generate the herder to your main file e.g Main_Output.csv. 2.2nd step of odisqlunload to load data to your other file e.g _data.csv 3. 3rd step use odiFile Apend to append _data.csv to main_Outpout.csventer image description here

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

79291317

Date: 2024-12-18 13:50:50
Score: 13
Natty: 7.5
Report link

did you find any solution for this?

Reasons:
  • Blacklisted phrase (1.5): any solution
  • RegEx Blacklisted phrase (3): did you find any solution
  • RegEx Blacklisted phrase (2): any solution for this?
  • Low length (2):
  • No code block (0.5):
  • Ends in question mark (2):
  • Single line (0.5):
  • Starts with a question (0.5): did you find any solution for this
  • Low reputation (1):
Posted by: Niv Yaal

79291315

Date: 2024-12-18 13:48:50
Score: 2.5
Natty:
Report link

In my case i got 302 error means is redirecting.

I forgot also to add headers to my request and i receive from response an new location and need to make a new call with new location.

Now its working

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