79620096

Date: 2025-05-13 16:52:27
Score: 0.5
Natty:
Report link

Well, it's a true Heisenbug: the bug disappeared when I added logging to the relevant functions! Through a painful ablation process, I determined that the 'fixing' log was:

if let role = appElement.role() { print("Role: \(role)")}

While it's impossible to know what's going on under the hood in Accessibility APIs, this strongly implies that it's a matter of lazy initialization. Adding an observer or reading child elements does not trigger the initialization, but somehow reading the kAXRoleAttribute does. Strangely, reading the kAXTitleAttribute didn't work: there's something special about role. Opening the Accessibility Inspector must also have the same effect.

After reading and printing the role, the kAXSelectedTextChangedNotifications start coming through correctly. Moreover, reading the kAXSelectedTextAttribute on the Application's AXUIElement returns the proper value (instead of nil, before). A whole host of other Accessibility-related logic that was previously broken also started working.

So the fix is simple: just read out the Role attribute. You can store the role as an unused variable if you don't want the print statement. The interpreter won't like it, but hey, you can please some of the people, some of the time.

let role = appElement.role()

For completeness, the 'role()' function in my sample code is a helper function that reads the kAXRoleAttribute, per the popular AXUIElement+Accessors extension pattern:

    func role() -> String? {
        return self.attribute(forAttribute: kAXRoleAttribute as CFString) as? String
    }
    
    func attribute(forAttribute attribute: CFString) -> Any? {
        var value: CFTypeRef?
        let result = AXUIElementCopyAttributeValue(self, attribute, &value)
        if result == .success {
            return value
        } else {
            return nil
        }
    }
Reasons:
  • Contains signature (1):
  • Long answer (-1):
  • Has code block (-0.5):
  • Self-answer (0.5):
  • Low reputation (0.5):
Posted by: Tim

79620084

Date: 2025-05-13 16:42:24
Score: 2.5
Natty:
Report link

This can happen by Corrupted files in venv or the packages not installed in venv

To fix this: Try recreating venv and activate venv on the terminal. Then install the packages

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

79620081

Date: 2025-05-13 16:36:23
Score: 1.5
Natty:
Report link

You can use x-vercel-protection-bypass. This can be setup via Protection Bypass for automation. Then set this variable as query parameter in stripe settings.

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: user1054825

79620080

Date: 2025-05-13 16:36:23
Score: 0.5
Natty:
Report link
Azure SQL Azure Cosmos
Data Model Relational tables, T-SQL, strong schema, ACID transactions. Schemaless JSON documents (or MongoDB/Cassandra/Gremlin/Table models); multi-model, vector support.
Scale “Scale up” (vCores/DTUs) with optional read-scale-out or geo-replicas. “Scale out” automatically via physical partitions; virtually unlimited throughput & storage.
Consistency Strict (snapshot, serializable, etc.). Five tunable levels (Strong → Eventual).
Pricing unit vCore / DTU / serverless per-second; long-running transactions encouraged. Request Units (RU/s) for reads, writes & queries; optimize for small atomic operations.
When to pick OLTP/OLAP apps that need joins, stored procs, mature relational tooling. Globally distributed, high-throughput, low-latency micro-services, IoT, gaming, personalisation, etc.
Latency & SLA Single-region HA SLA 99.99 %; write latency measured in ms – tens ms. Multi-region (reads & writes) SLA 99.999 %; P99 <10 ms reads/writes in region.

Sources: https://learn.microsoft.com/en-us/azure/azure-sql/database/?view=azuresql

https://learn.microsoft.com/en-us/azure/cosmos-db/

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

79620077

Date: 2025-05-13 16:35:22
Score: 2
Natty:
Report link

https://github.com/minio/minio/issues/8007#issuecomment-2044634015 suggests that using MINIO_SERVER_URL and MINIO_BROWSER_REDIRECT_URL is the mechanism for this scenario.

Reasons:
  • Probably link only (1):
  • Low length (1):
  • No code block (0.5):
  • Single line (0.5):
  • High reputation (-1):
Posted by: E. Anderson

79620072

Date: 2025-05-13 16:33:22
Score: 1.5
Natty:
Report link

It's return a bean than was instatinated with constructor (new MyServiceImpl()) - so it's not "anonymous object" but named bean in spring.

That bean stored in spring context for later user by same name or class.

anonymous object - it's a different entity. I think here you refer something like mymethod(new InterfaceName { ...implementation ... })

In other word you compare apples and oranges.

To make it annonymus your notation should looks like:

@Bean public MyService myService() { return new MyServiceInterface() { .... do something ... }; }

Reasons:
  • Long answer (-0.5):
  • No code block (0.5):
  • User mentioned (1): @Bean
  • Low reputation (0.5):
Posted by: user3072571

79620064

Date: 2025-05-13 16:27:19
Score: 1.5
Natty:
Report link

Azure SQL is a fully managed relational database service provided by Microsoft Azure. It allows for the creation, management, and scaling of SQL databases in the cloud. Azure SQL supports engines like SQL Server, MySQL, and PostgreSQL, making it a flexible solution for traditional relational workloads. It uses a predefined schema and provides strong consistency, ideal for applications requiring complex queries and ACID transactions. Cosmos DB is a globally distributed, multi-model NoSQL database service. It supports various data models like key-value, document, graph, and column-family, providing a flexible schema design. Cosmos DB offers low-latency, high-throughput, and can scale horizontally with automatic partitioning, making it suitable for globally distributed applications, real-time analytics, and use cases like IoT, gaming, and microservices..

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

79620045

Date: 2025-05-13 16:17:17
Score: 1
Natty:
Report link

I know this is old, but for me I noticed VSC was stuck on Android: Analyzing environment. Opening Activity Monitor and killing the adb process fixed it.

adb often gets stuck. I had the same issue with Android Studio where it couldn't find attached devices.

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

79620039

Date: 2025-05-13 16:16:17
Score: 1.5
Natty:
Report link

i believe option 3 should be working fine, this apply a background color to every child in the div:

<div class="[&>*]:bg-red-400">content</div>
Reasons:
  • Low length (1):
  • Has code block (-0.5):
  • Low reputation (1):
Posted by: Imad Rh

79620035

Date: 2025-05-13 16:13:16
Score: 8
Natty: 7
Report link

I know this thread is old, but does anybody know of a way of getting the theme information on an Azure DevOps Server 2020.1 (on-premises) and not the Service?

Reasons:
  • Blacklisted phrase (1): anybody know
  • RegEx Blacklisted phrase (2): does anybody know
  • Low length (1):
  • No code block (0.5):
  • Ends in question mark (2):
  • Single line (0.5):
  • Low reputation (1):
Posted by: AleXSR700

79620025

Date: 2025-05-13 16:07:14
Score: 1
Natty:
Report link

It was determined that this is the error message that is returned when a user's email address is not set in the UserInfo object. The way I was creating users did not set this field. So, the user also could not be retrieved with GetUserByEmail. If a valid email is used, it does not return an ADMIN_ONLY_OPTION error.

Reasons:
  • Has code block (-0.5):
  • Self-answer (0.5):
  • Single line (0.5):
  • Low reputation (0.5):
Posted by: Jonathan Chandler

79620006

Date: 2025-05-13 15:58:12
Score: 1
Natty:
Report link

If trying to compare a file that is not in the Solution Explorer, for example you have extracted a file from some other git branch to a temporary folder, you can open the external file in some editor, highlight all and copy. Then go into your project and find the same file in Solution Explorer.
Paste in the external files contents. Then have git compare current to unmodified. Then Ctrl-Z and undo the paste when done looking at the diff.

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

79620002

Date: 2025-05-13 15:57:11
Score: 1
Natty:
Report link

Created a NodeJS Shell that can be used as default shell.

Install (need NodeJS and NPM):

npm install -g biensure-nsh

Usage (to try):

nsh

If you like it, you can edit /etc/passwd to change your /usr/bin/bash to (in my case) /home/administrator/.npm-global/bin/nsh

For more information: https://github.com/biensurerodezee/nsh

Reasons:
  • Low length (0.5):
  • Has code block (-0.5):
  • Low reputation (1):
Posted by: Rod van der Zee

79619999

Date: 2025-05-13 15:55:11
Score: 3
Natty:
Report link

Have you checked if your system has Microsoft ODBC drivers installed?

This could be on of the reasons you are getting the issue.

Reasons:
  • Low length (1):
  • No code block (0.5):
  • Contains question mark (0.5):
  • Low reputation (1):
Posted by: ZephyR

79619978

Date: 2025-05-13 15:38:06
Score: 1
Natty:
Report link
import ru from "../../../../node_modules/flowbite-datepicker/js/i18n/locales/ru.js";

const $datePickersEl = document.querySelector('#datepicker-actions');

const DatepickerOptions = {
  language: "ru",
};

  Datepicker.locales.ru = ru.ru;

  const myDate = new Datepicker($datePickersEl, DatepickerOptions);
Reasons:
  • Low length (0.5):
  • Has code block (-0.5):
  • Low reputation (1):
Posted by: HelpIT Tech

79619976

Date: 2025-05-13 15:35:05
Score: 2.5
Natty:
Report link

Medusa offers various customization solutions natively. You'll be able to add widgets to "native"/"core" pages as well as new pages that will be injected into the sidebar.

For more informations, check this link from the official documentation : https://docs.medusajs.com/learn/fundamentals/admin/ui-routes#content

However, if you really want to customize the sidebar as you wish, you'll need to fork the package from the Medusa repo, which is simply a Vite + React application that you can run as a standalone app.

You can find the package here : https://github.com/medusajs/medusa/tree/v2.8.0/packages/admin/dashboard

If you need more help, you can find more informations here : https://docs.perseides.org/guides/v2/customize-admin-ui/standalone

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

79619972

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

I also got this issue in my Ionic 6.5.6 Angular 16 project. Until Angular 15, I have been using which is working fine.

"angular2-signaturepad": "2.8.0"

After upgrading to Angular 16, the version is giving an error. So I upgraded to 3.0.4

"angular2-signaturepad": "^3.0.4"
Reasons:
  • Low length (0.5):
  • Has code block (-0.5):
  • Low reputation (1):
Posted by: MohittPattel

79619968

Date: 2025-05-13 15:31:04
Score: 2.5
Natty:
Report link

For me this syntax worked:

import('../some-json-file.json', { with: { type: 'json' } })

reference: https://github.com/eslint/eslint/discussions/15305#discussioncomment-10389214

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

79619967

Date: 2025-05-13 15:31:04
Score: 0.5
Natty:
Report link

I was helped by @marCi002 answer, but it became much more straightforward now I think this should be more than a comment :

  1. Edit your ##YOUR_REPOSITIORY##\.dart_tool\chrome-device\Default\Preferences file. (It should exist, if it does not exist yet, try to run the target using Chrome at least once)

  2. Change the value of the key you want (currentDockState to undocked for me)

  3. Enjoy on the next launch of Chrome through Android Studio

From my understanding, this ##YOUR_REPOSITIORY##\.dart_tool\chrome-device\Default is the template that is used each time you launch a debug session from Android Studio. So it's a trick, but it allows you change some settings.

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

79619961

Date: 2025-05-13 15:25:03
Score: 3.5
Natty:
Report link

My main DBA returned and we confirmed it's a permission issue as I suspected after granting and revoking db_owner role.

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

79619955

Date: 2025-05-13 15:23:02
Score: 5.5
Natty:
Report link

yes you can check this link it is help full to solve your question this is shopify official document

https://help.shopify.com/en/manual/products/details/cart-permalink#customize-a-checkout-link

Reasons:
  • Blacklisted phrase (1): this link
  • RegEx Blacklisted phrase (1): check this link
  • Probably link only (1):
  • Low length (1):
  • No code block (0.5):
  • Low reputation (1):
Posted by: Taimoor Alam

79619948

Date: 2025-05-13 15:19:00
Score: 6.5 🚩
Natty: 5
Report link

New problem arose, after changing the setting for DisplayMode to DisplayMode.View, the border of the datacard disappears and won't come back even after changing the border settings of that specific datacard, any suggestions.?

Reasons:
  • RegEx Blacklisted phrase (2): any suggestions
  • Low length (0.5):
  • No code block (0.5):
  • Ends in question mark (2):
  • Single line (0.5):
  • Low reputation (1):
Posted by: Manish

79619945

Date: 2025-05-13 15:16:59
Score: 3
Natty:
Report link

it's because of the cstandard parameter that is probably using c11. go to c_cpp_properties.json and change that parameter to GNU17 or GNU23 . you can look for the file using the command palette

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

79619941

Date: 2025-05-13 15:12:58
Score: 9
Natty: 8
Report link

I'm looking for the answer of this question as well. Did you figure out how to do this?

Reasons:
  • RegEx Blacklisted phrase (3): Did you figure out
  • Low length (1.5):
  • No code block (0.5):
  • Ends in question mark (2):
  • Unregistered user (0.5):
  • Single line (0.5):
  • Low reputation (1):
Posted by: user30527320

79619940

Date: 2025-05-13 15:11:58
Score: 2
Natty:
Report link

Alright, this took me longer to figure out than I'm willing to admit.

The code works fine. The problem is that I have to tap and hold the UIPasteControl for very long. I assumed it behaved like any Button and I would just have to tap it. Even when I did some longer taps nothing happened.

In my opinion pressing a button for 2 seconds is very unintuitive, but maybe I'm in the wrong.

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

79619936

Date: 2025-05-13 15:08:57
Score: 1
Natty:
Report link

If in the code there is np.void() you have to tell python what "np" is, so you have to import numpy as np. If you only do import numpy you have to use numpy.void(), or if you do from numpy import void you can just do void().

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

79619924

Date: 2025-05-13 15:02:55
Score: 11.5 🚩
Natty:
Report link

I am sorry to be violating the stackoverflow norms supposedly. This is not an answer. I can't comment due to low reputation as I have never posted/answered.

I know this answer will get so many downvotes, but I am fine with that. I want to ask you about how you fixed the spring boot, swagger, date serialization issue, asked in one of your previous questions.

What did you actually do to ensure that the date serialization and the swagger UI both worked properly without conflicting each other?

Even my date is coming in epoch units instead of ISO string. The thing that was causing the issue was a webconverterconfig thing. On commenting it, swagger stopped working.

Please let me know how to tackle this issue.

Reasons:
  • Blacklisted phrase (1): not an answer
  • Blacklisted phrase (1): stackoverflow
  • RegEx Blacklisted phrase (1): can't comment
  • RegEx Blacklisted phrase (2.5): Please let me know how
  • RegEx Blacklisted phrase (1.5): low reputation
  • RegEx Blacklisted phrase (1): I want
  • RegEx Blacklisted phrase (2): downvote
  • Long answer (-0.5):
  • No code block (0.5):
  • Contains question mark (0.5):
  • Low reputation (1):
Posted by: Aryang22

79619923

Date: 2025-05-13 15:02:55
Score: 2.5
Natty:
Report link

Yes, there is a formula for calculating the number of parameters in a Conv2DTranspose (a.k.a. transposed convolution or deconvolution) layer, and it follows similar logic to a standard Conv2D layer.

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

79619913

Date: 2025-05-13 14:56:53
Score: 4
Natty:
Report link

Thanks. I thought it should be something easy, but such easy :-). Thanks a lot for your investigation in this case. I was going crazy because this didn't work properly. Good hint to check out the documentation better.

kind regards

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

79619902

Date: 2025-05-13 14:54:52
Score: 2.5
Natty:
Report link

Already in progress but taking forever

https://github.com/flutter/flutter/issues/153092

Reasons:
  • Probably link only (1):
  • Low length (2):
  • No code block (0.5):
  • High reputation (-1):
Posted by: Dživo Jelić

79619895

Date: 2025-05-13 14:49:51
Score: 1
Natty:
Report link

First of all, for Form1_load to be executed, you have to set the startup Object to be Form1.

It is intended to set in the GUI of the IDE (not by manually editing the module code ) in: Project | Properties | Application

be sure to set:

Moreover, your Form1_Load code Handles MyBase.Load, but I cannot see where Mybase is defined. So just to be sure:

When executing the program Form1 will be called, and the system will trigger Form1_load

BTW it's normal for functions called by system events to show 0 references (references are counted whan explicitally called by other pieces of code you write)

Reasons:
  • Blacklisted phrase (0.5): I cannot
  • Long answer (-0.5):
  • No code block (0.5):
  • Low reputation (0.5):
Posted by: Ellery

79619894

Date: 2025-05-13 14:47:50
Score: 1.5
Natty:
Report link

I think you should check whether you have captured enough faces with respect to the number of neighbors.

import cv2

haar_file = cv2.data.haarcascades + 'haarcascade_frontalface_default.xml'
face_cascade = cv2.CascadeClassifier(haar_file)

# Reduzindo resolução
webcam = cv2.VideoCapture(0)
webcam.set(cv2.CAP_PROP_FRAME_WIDTH, 320) # width
webcam.set(cv2.CAP_PROP_FRAME_HEIGHT, 240) # height


while True:
    retorno, frame = webcam.read()
    if not retorno:
        print("No frame captured") # Add this line to check if the frame is captured or not
        break
    
    gray = cv2.cvtColor(frame, cv2.COLOR_BGR2GRAY)
    print("Grayscaled")
    
    faces = face_cascade.detectMultiScale(gray, 1.3, 3, flags= cv2.CASCADE_SCALE_IMAGE)
    print("Faces detected")
    if len(faces) == 0:
        print("No faces detected") # Add this line to check if any faces are detected for the number of neighbors
        continue
    
    for (x1, y1, x2, y2) in faces:
        moldura_face = gray[y1:y1+y2, x1:x1+x2]
        
        cv2.rectangle(gray, (x1, y1), (x2, y2), (0, 255, 255), 2)
        
        moldura_face = cv2.resize(moldura_face, (48, 48))
        
        # cv2.putText(im,prediction_label)
        cv2.putText(frame, '% s' % ('prediction_label'), (x1//2, y1//2),
                    cv2.FONT_HERSHEY_COMPLEX_SMALL, 2, (0, 0, 255))
    cv2.imshow("Output", frame)
        
    if(cv2.waitKey(1) & 0xFF == ord("q")):
        break
    
webcam.release()
cv2.destroyAllWindows()

    

Reasons:
  • Blacklisted phrase (2): solução
  • Long answer (-1):
  • Has code block (-0.5):
  • Low reputation (1):
Posted by: Speedskillsx

79619882

Date: 2025-05-13 14:36:48
Score: 1
Natty:
Report link

These examples are about SELECT. But what about the question?
As I understand, the goal is to add such a row to table. Okay, we will decide how to UPDATE the current table.
But what about the future insertions? This field has to be calculated programmatically, or with insert/update triggers.

What is the purpose of this field? If only for unicness, then it can be done with index on two fields.

If there is no matter what type and content in this field - it is much easier just to concatenate fields with some separator. Or multiply accordigly to maximum of planned records. If there will be 1000000 records, it can be aValue*1000000+bValue.

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

79619880

Date: 2025-05-13 14:36:48
Score: 2
Natty:
Report link

We have our domain hosted with Azure, I just went to DNS Zones -> my domain -> Settings -> DNS Management -> Recordsets -> Added a TXT record with the value from google with a name @.mydomain.com

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

79619878

Date: 2025-05-13 14:34:47
Score: 1.5
Natty:
Report link

This sounds like an example of the Branch Predictor making a mistake.

Without the `if` statement, the code has no branches. Add in some branches and the branch predictor has to start guessing which branch will run. And sometimes it gets it wrong, causing a performance penalty.

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

79619873

Date: 2025-05-13 14:31:46
Score: 3.5
Natty:
Report link

I am experiencing the same issue, however so far it only seems to happen with Microsoft hosted emails. With Zoho hosted emails, it works fine. Nothing changes in the code, aside from the recipient address.

Anyone has any hints?

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

79619863

Date: 2025-05-13 14:28:46
Score: 1
Natty:
Report link

In my case the problem was that in that I tried to mock class from another repo and within the code of that class another class was used from another repo that wasn't imported in the repo I run the test, so adding the missing import solved it.

Hope it helps anyone

Reasons:
  • Whitelisted phrase (-1): Hope it helps
  • Low length (0.5):
  • No code block (0.5):
  • Low reputation (1):
Posted by: Gil Salomon

79619861

Date: 2025-05-13 14:26:45
Score: 2.5
Natty:
Report link

Adding java.nio export to pom.xml did not fix it.
Adding this export to vm options did fix it.

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

79619853

Date: 2025-05-13 14:20:44
Score: 2
Natty:
Report link

I just discovered the following:

If you write many large chunks sequentially to a file residing on a smb server by issuing WriteAsync() Calls, and then call Dispose() on the fileStream that was used for writing, this can take many seconds.

Whats worse : DisposeAsync() does not behave any better !

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

79619838

Date: 2025-05-13 14:13:42
Score: 1
Natty:
Report link
$url=$_GET['url'];
echo preg_replace("#\\\#ui","/",$url);// use three
echo '<br>or<br>';
echo str_replace("\\","/",$url); //use double
Reasons:
  • Low length (1):
  • Has code block (-0.5):
  • Low reputation (0.5):
Posted by: Hakan

79619837

Date: 2025-05-13 14:13:42
Score: 2.5
Natty:
Report link

Maybe you want to use --revision-as-HEAD, e.g. repo manifest --revision-as-HEAD --output-file=manifest-with-commitids.xml

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

79619836

Date: 2025-05-13 14:12:42
Score: 1
Natty:
Report link

Update react-native-contacts: rn npm install react-native-contacts@latest. Use JDK 17: Install JDK 17 and set JAVA_HOME in android/gradle.properties with org.gradle.java.home=/path/to/jdk17. Update build.gradle: Set compileSdkVersion = 34, targetSdkVersion = 34, and buildToolsVersion = "34.0.0" in android/build.gradle. Upgrade Gradle: In gradle-wrapper.properties, use gradle-8.3-bin.zip and classpath("com.android.tools.build:gradle:8.3.0") in android/build.gradle. Remove manual linking: Delete any react-native-contacts entries in MainApplication.java and settings.gradle. Clean & rebuild: Run npx react-native clean && cd android && ./gradlew clean && cd .. && npx react-native run-android. if the isue still exist check for duplicate dependencies in android/app/build.gradle or run ./gradlew assembleDebug --stacktrace for details

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

79619835

Date: 2025-05-13 14:12:42
Score: 1
Natty:
Report link

Adding the line below to the affected activity in the manifest file, fixed it for me

android:launchMode= "singleInstance"
Reasons:
  • Low length (1):
  • Has code block (-0.5):
  • Low reputation (0.5):
Posted by: ADEBAYO OSIPITAN

79619827

Date: 2025-05-13 14:09:41
Score: 2
Natty:
Report link

To view the total installs of your app on the Google Play Console (as of May 13, 2025), follow these steps:

  1. Visit https://play.google.com/console and sign in.

  2. Select your app from the list to open its dashboard.

  3. Scroll to the bottom of the dashboard page.

  4. Click on the "Select KPI" button.

    Click the "Select KPI" button at your Apps Dashboard on Googe Play Console

  5. In the list of available KPIs, find "Total Installs" and click the "Add" button.

    find "Total Installs" and click the "Add" button.

After adding it, the total installs will appear directly on your app’s dashboard for quick reference.

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

79619823

Date: 2025-05-13 14:08:40
Score: 0.5
Natty:
Report link

If you want to assign ROW_NUMBER() based on [rowNum], [aValue], and [bValue] (all three as grouping keys):

SELECT 
    *,
    ROW_NUMBER() OVER (
        PARTITION BY rowNum, aValue, bValue
        ORDER BY Id
    ) AS rn
FROM #temptable;
Reasons:
  • Low length (0.5):
  • Has code block (-0.5):
  • Low reputation (0.5):
Posted by: Alexis Villar

79619818

Date: 2025-05-13 14:02:39
Score: 1.5
Natty:
Report link

Source is a dependency property on your small image, so you can just bind the tooltip image Source to that. As @Clemens suggested, you might consider binding both to a view model property.

<Image Name="lastImage" Height="400" Width="400" Source="{Binding RelativeSource={RelativeSource Mode=FindAncestor, AncestorType=Image}, Path=Source}"/>
Reasons:
  • Has code block (-0.5):
  • User mentioned (1): @Clemens
  • Starts with a question (0.5): is a
  • Low reputation (0.5):
Posted by: J Straight

79619811

Date: 2025-05-13 13:59:38
Score: 2
Natty:
Report link

I encountered the same issue and solution (in my case) was "stupid simple", of course after being more aware of what I'm doing... Simple changed the certificate with private key one. In first stage I use one of generated certificates without being aware of "is the public one or the private"... Initially I choose first certificate I could download on phone "at first sight"... But after I dowloaded the private one, everything worked fine. Good luck.

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

79619809

Date: 2025-05-13 13:58:37
Score: 1.5
Natty:
Report link

I've been struggling with this issue all morning.
Fix: Replace all ^ with ~ in the package.json file for all Expo-related packages

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

79619777

Date: 2025-05-13 13:45:34
Score: 0.5
Natty:
Report link

I had the same issue i solve it by updating prisma

npm update @prisma/client @auth/prisma-adapter
Reasons:
  • Whitelisted phrase (-1): I had the same
  • Low length (1):
  • Has code block (-0.5):
  • Low reputation (1):
Posted by: Mrs Riva

79619776

Date: 2025-05-13 13:45:34
Score: 0.5
Natty:
Report link

I totally get where you’re coming from — I was in the same spot a while back when I first started looking into how streaming works beyond just using a video tag with a file URL.

What you’ve built so far is actually a basic form of progressive download, where the browser downloads the video file and starts playing it once there's enough buffered — but it's not true streaming in the sense platforms like YouTube use.

If you're dealing with on-demand videos and want better control and performance, setting up a basic video streaming server that supports HLS can be a great next step. You don’t need RED5 unless you’re going into live streaming — for VOD, a simple web server with HLS-compatible files works just fine.

You don’t need something like RED5 unless you’re going into live streaming. For local video-on-demand streaming, a simple setup using a web server (like NGINX or Apache) and pre-segmented HLS files can do the trick. Tools like FFmpeg can help you convert your videos into the right HLS format.

It’s a bit of a learning curve at first, but once you get the basics of HLS and how a player like Video.js or hls.js integrates with it, things start to click. Keep going — you’re actually on the right track!

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

79619775

Date: 2025-05-13 13:44:33
Score: 0.5
Natty:
Report link

What I found which fixed this problem when I hit it was to add the following to my AndroidManifest.xml file:

    <application
        android:name=".VariantApp"

where "VariantApp" is the name of the class that extends android.app.Application in my project.

In my case, at least, I had added a dependency on Koin for dependency injection and that caused the issue to appear.

Reasons:
  • Has code block (-0.5):
  • Starts with a question (0.5): What I
  • Low reputation (0.5):
Posted by: mcpierce

79619772

Date: 2025-05-13 13:42:33
Score: 0.5
Natty:
Report link

It looks like this has changed significantly since the original post 15 years ago, and especially with the "'Zero-cost' exceptions" in SuperNova's answer. For my current project, I care more about lookup speed and errors than 1 / 0 errors, so I'm looking into that. I found this blog post doing exactly what I wanted, but in Python 2.7. I updated the test to 3.13, (Windows 10, i9-9900k) with results below.

This compares checking key existence with if key in d to using a try: except: block

'''
The case where the key does not exist:
100 iterations:
with_try (0.016 ms)
with_try_exc (0.016 ms)
without_try (0.003 ms)
without_try_not (0.002 ms)

1,000,000 iterations:
with_try (152.643 ms)
with_try_exc (179.345 ms)
without_try (29.765 ms)
without_try_not (32.795 ms)


The case where the key does exist:
100 iterations:
exists_unsafe (0.005 ms)
exists_with_try (0.003 ms)
exists_with_try_exc (0.003 ms)
exists_without_try (0.005 ms)
exists_without_try_not (0.004 ms)

1,000,000 iterations:
exists_unsafe (29.763 ms)
exists_with_try (30.970 ms)
exists_with_try_exc (30.733 ms)
exists_without_try (46.288 ms)
exists_without_try_not (46.221 ms)
'''

where it looks like the try block has a very small overhead, where if the key exists, an unsafe check and try check are the same. Using in has to hash the key for the check, and again for the access, so it slows by ~30% with the redundant operation for real usage. If the key does not exist, the try costs 5x the in statement, which is the same cost for either case.

So, it does come back to asking if you expect few errors, use try and many use in

And here's the code

import time

def time_me(function):
    def wrap(*arg):
        start = time.time()
        r = function(*arg)
        end = time.time()
        print("%s (%0.3f ms)" % (function.__name__, (end-start)*1000))
        return r
    return wrap
    

# Not Existing
@time_me
def with_try(iterations):
    d = {'somekey': 123}
    for i in range(0, iterations):
        try:
            get = d['notexist']
        except:
            pass

@time_me
def with_try_exc(iterations):
    d = {'somekey': 123}
    for i in range(0, iterations):
        try:
            get = d['notexist']
        except Exception as e:
            pass
            
@time_me
def without_try(iterations):
    d = {'somekey': 123}
    for i in range(0, iterations):
        if 'notexist' in d:
            pass
        else:
            pass
       
@time_me
def without_try_not(iterations):
    d = {'somekey': 123}
    for i in range(0, iterations):
        if not 'notexist' in d:
            pass
        else:
            pass
            
    
    
# Existing
@time_me
def exists_with_try(iterations):
    d = {'somekey': 123}
    for i in range(0, iterations):
        try:
            get = d['somekey']
        except:
            pass
        
@time_me
def exists_unsafe(iterations):
    d = {'somekey': 123}
    for i in range(0, iterations):
        get = d['somekey']

@time_me
def exists_with_try_exc(iterations):
    d = {'somekey': 123}
    for i in range(0, iterations):
        try:
            get = d['somekey']
        except Exception as e:
            pass
            
@time_me
def exists_without_try(iterations):
    d = {'somekey': 123}
    for i in range(0, iterations):
        if 'somekey' in d:
            get = d['somekey']
        else:
            pass
            
@time_me
def exists_without_try_not(iterations):
    d = {'somekey': 123}
    for i in range(0, iterations):
        if not 'somekey' in d:
            pass
        else:
            get = d['somekey']
        
        
print("The case where the key does not exist:")
print("100 iterations:")
with_try(100)
with_try_exc(100)
without_try(100)
without_try_not(100)


print("\n1,000,000 iterations:")
with_try(1000000)
with_try_exc(1000000)
without_try(1000000)
without_try_not(1000000)

print("\n\nThe case where the key does exist:")
print("100 iterations:")
exists_unsafe(100)
exists_with_try(100)
exists_with_try_exc(100)
exists_without_try(100)
exists_without_try_not(100)



print("\n1,000,000 iterations:")
exists_unsafe(1000000)
exists_with_try(1000000)
exists_with_try_exc(1000000)
exists_without_try(1000000)
exists_without_try_not(1000000)
Reasons:
  • Blacklisted phrase (1): this blog
  • Long answer (-1):
  • Has code block (-0.5):
  • Low reputation (1):
Posted by: Tristan Muzzy

79619771

Date: 2025-05-13 13:42:33
Score: 3.5
Natty:
Report link

Is your engine configured to search the full web? CSE only provides a subset of the full web indexed by Google

https://support.google.com/programmable-search/answer/70392

Reasons:
  • Probably link only (1):
  • Low length (1):
  • No code block (0.5):
  • Contains question mark (0.5):
  • Low reputation (0.5):
Posted by: Andy

79619768

Date: 2025-05-13 13:41:33
Score: 0.5
Natty:
Report link

First i tried to run your code just as .py script with following modifications and its working:

# was missing
import time
#plt.pause(2)  # i commented this line, after pause plot not resuming any more
ani = FuncAnimation(fig, update, frames=consume, interval=20, save_count=N)
plt.show() # i added, without it animation not starting

But your question is about jupyter notebook, and here modifications to make it works:

import time
from IPython.display import HTML
#plt.pause(2)  # i commented this line, after pause plot not resuming any more
ani = FuncAnimation(fig, update, frames=consume, interval=20, save_count=N)
HTML(ani.to_jshtml()) # i added, without it animation not starting

Result: enter image description here

Reasons:
  • Probably link only (1):
  • Long answer (-0.5):
  • Has code block (-0.5):
  • Low reputation (0.5):
Posted by: asat

79619764

Date: 2025-05-13 13:39:32
Score: 0.5
Natty:
Report link

That's an old thread but here's my take on the topic

inline std::string hex(unsigned char c)
{
    char h[]{"0xFF"};
    sprintf(h, "0x%02X", c);
    return h;
}

std::cout << hex('\r')
Reasons:
  • Low length (0.5):
  • Has code block (-0.5):
  • Low reputation (0.5):
Posted by: Damien LEFEVRE

79619762

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

Questions: Why would this CSP issue appear only in production?

Because on your dev env you either do not have a CSP specification at all, or the domain was already handled.

What is the best way to configure the CSP to allow this token request without compromising security?

I will forget about "best" and will answer the "how". CSP whitelists domains you trust. So if you trust ogin.microsoftonline.com - and you trust it with the login -, then whitelist it in CSP.

Is explicitly setting connect-src in the CSP header sufficient to fix this?

It could be. Set it, whitelist the domain(s) that you trust and see whether there are further issues.

Could a CDN or production web server (e.g., nginx, Apache, etc.) be altering or overriding the CSP?

In some systems they are overriden. If you are unsure, either ask someone who knows or look into the configuration.

Any help or experience with similar production-only CSP issues would be greatly appreciated!

You could do well to reproduce the issue locally, that is, have the same (wrong) CSP on your local temporarily to reproduce the issue and then fix it on your local. Once you succeed, it should work on live too. BUT: back up your settings, especially the CSP directives from live before you do any change.

Reasons:
  • Blacklisted phrase (1): appreciated
  • Blacklisted phrase (1): Any help
  • RegEx Blacklisted phrase (1.5): fix this?
  • Long answer (-1):
  • No code block (0.5):
  • Contains question mark (0.5):
  • High reputation (-2):
Posted by: Lajos Arpad

79619759

Date: 2025-05-13 13:35:31
Score: 3.5
Natty:
Report link

Quan Bui's answer fixed it. Add export to vm settings.

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

79619757

Date: 2025-05-13 13:35:31
Score: 4
Natty:
Report link

It's a known issue. There is a workaround and a fix is coming soon:

https://github.com/expo/expo/issues/36375#issuecomment-2866317180

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

79619746

Date: 2025-05-13 13:29:29
Score: 2
Natty:
Report link

To be able to run tensorflow models into AWS lambda functions, first transform them into tflite version. Tflite is a lightweight version of tensorflow, suitable for running in AWS lambda.

See the example below.

https://github.com/l3ardia/aws-lambda-tflite

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

79619745

Date: 2025-05-13 13:29:29
Score: 0.5
Natty:
Report link

Getting error with this solution:

Only valid with DatetimeIndex, TimedeltaIndex or PeriodIndex, but got an instance of 'Index'

Reasons:
  • Whitelisted phrase (-2): solution:
  • Low length (1):
  • No code block (0.5):
  • Low reputation (1):
Posted by: amol kulkarni

79619744

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

-----BEGIN PRIVATE KEY-----

MIIEvwIBADANBgkqhkiG9w0BAQEFAASCBKkwggSlAgEAAoIBAQDCvuJ5RzcT7tK2

eCQ5YWwM+5YuMBqtzztrp61Yx9KDSYNC1e9+6kTixL4+vFWP9eSeTWOwFWOUu/6T

yKwIUVZ/fGzGPQEOWUB3PabT06UrFb4sEMMqtGuhuXRpWOxRjVa13RasJKgYVGKN

CAvsOISgx8cu8Hkms35Lj4q2H5YUN67UPlwEKS2ISGU+tv3NxRD1XfQpYzRbrFHV

kM3qCnLXmFuohF2egBcQBgdMVwQlVJkh+zKNI7Nh+fdpkex1eO3Z0uUUHX/tHqQ9

15+tUH9OcKPVKFkmpYonCbYBSNYiDf5RV23oKDa9HdMJyo6dKYu4nJMY6mzAXv8f

paKVeHBzAgMBAAECggEAEpvXhjaLiR28CBro0zbU8qn5CsbRSyR54r/uAjAYlIT/

bvEvERXk/opFkjcVh0u8IchMAJ+6mT7G2muazLIBAu4/x/LnrphRXv4xenJHM8Zr

Gp4rbWGPcK+znlFp8M0BqR/MMnzPjIDxEyreq3QnGuScIDHIUdi69mYWn2/bO75/

ldVEafESXQo+DV9gi9+C29mTjFXOqHy57+xg8Tb4DJ7xhbkbu/oEMDcCi5JTJQTr

WjbeHoD+KsswquW+ZlIGLYshr0h2l+wxdnYXZNpktD78IJF0+t0me6ei4rZEb93w

/Gjd3A86DjY5UvsjStEJBXSYOK4veFquRamldFhOoQKBgQDxQUcLvX1fyYHQn7pO

L/rl6G5BNnSFhKXkXdkN0k5O7Jy2z+Uk105z1RDJ+6HcSClgxrqqQzA7SKjfkQaN

lAI0QbefvQLZeP9M2Io9DXhcHzbomwF2mCSb7LiOXOFR+9Y5bxypMWigwZcDQ/Om

lQ+l7wYHmm8F7SMTJteSq1tZUQKBgQDOpemwz5VZNRHA/ajfgMpQvXnzRPZvyr7f

FevnfWDRlw7Z8szBnIMvZWVvkrSwvbrh1jHJ3xMDoPeP6yQt1iZuZNTJGsmT8l3U

g6OsfuCCMGx5f3IbmPMlmZoTOqun7UVmytpEwD4TUHLlJPJhNqY6tvL8fKcw3p6e

p7CmyW78gwKBgQC1l/8UNTOT0CeokzI2/CKMv6GN8KFQhwIfnQxuPOi4u51SdbXz

PyVMRwp2HrQ9DQwoTi3fTueVGCIU9iLKmqf2EalX0Xu9mjgA7dVQEz2PiedYuqQl

Umvr+gkJD5yCi186qAoYyJoKtu0mhhV2RCkdK4eMXZBIE7EdD1Wgjt8ZoQKBgQCV

BWax//CmxTOJZiOLEhhUA1/XQ+snkSD2RZu6c1sHqhSmrYZlNNYRruBohnZRYnFL

fSioeHsAyerdWWfcuis6vvIIGI43Z7eskkXNFi4XFI6VS4fhSPpHKi7HIS86yUuc

JjsjCzN4wDIq9urnmf5kJxyxYb876b6fkTQ+AtNLuwKBgQDUy1aDwe51HJ/0hgZd

GHAGz3Mcr5g8C3vkE7LEM79YrF/sv+dCsWO0e1sXiIbSczc2a65bDOfisc+xOa/a

DLkosV4GccoVJ/7DVWTkTSaYe2ZCIBiVppCvU2A/9Hpp/OfV+YY6jq8cdUQDzlxz

DVxu0gt5fyjV1fZ73XsEqcBeAg==

-----END PRIVATE KEY-----

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

79619731

Date: 2025-05-13 13:20:26
Score: 1
Natty:
Report link

in my ~/.config/fish/config.fish I have this snippet:

    function bang_bang
        echo $history[1]
    end
    abbr -a !! --position anywhere --function bang_bang
Reasons:
  • Low length (1):
  • Has code block (-0.5):
  • Low reputation (0.5):
Posted by: Arizon

79619726

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

https://i.sstatic.net/BhqQFfzu.png creation

https://i.sstatic.net/8wnINKTK.png models

https://i.sstatic.net/CQYoXJrk.png navigation property

https://i.sstatic.net/0kJXyftC.png dbset making

https://i.sstatic.net/H3h5ntBO.png scaffolded itmes creation

https://i.sstatic.net/GkqwZUQE.png dto creation

https://i.sstatic.net/5Fxy0sHO.png put endpoint changes

here is a code for that:

builder.Services.AddSwaggerGen();

builder.Services.AddDbContext<IngatlanContext>(options =>
    options.UseSqlite(builder.Configuration.GetConnectionString("DefaultConnection")));

var app = builder.Build();

--------------------------------
public class IngatlanContext : DbContext
{
    public IngatlanContext(DbContextOptions<IngatlanContext> options) : base(options)
    {

    }
    public DbSet<Ingatlan> Ingatlanok { get; set; } = null!;
    public DbSet<Kategoria> Kategoriak { get; set; } = null!;
}

--------------------------------
public class IngatlanGetDto
{
    public int Id { get; set; }
    public string? Leiras { get; set; }
    public DateTime HirdetesKezdete { get; set; }
    public DateTime HirdetesVege { get; set; }
    public int Ar { get; set; }
    public bool Hitelkepes { get; set; }
    public string? KategoriaNeve { get; set; }
}

--------------------------------
Kategoria (1) - Ingatlan (N)
N: 
[ForeignKey("KategoriaId")]
public Kategoria? Kategoria { get; set; }
1:
[JsonIgnore]
public List<Ingatlan>? Ingatlanok { get; set; }
Reasons:
  • Probably link only (1):
  • Long answer (-1):
  • Has code block (-0.5):
  • Low reputation (1):
Posted by: orbanviktor

79619724

Date: 2025-05-13 13:17:25
Score: 2
Natty:
Report link

Tools->Options->Environment->General->UNCHECK 'Optimize rendering for screens with different pixel....'

None of the comments above worked for me. This immediately changed my experience back to what I am use to; what I want to do and not some interpretation thereof.

Screenshot of VS Tools screen

Reasons:
  • Whitelisted phrase (-1): worked for me
  • RegEx Blacklisted phrase (1): I want
  • Low length (0.5):
  • No code block (0.5):
  • Low reputation (1):
Posted by: jneal

79619716

Date: 2025-05-13 13:13:24
Score: 0.5
Natty:
Report link

As engineersmnky commented. Changed form_with model: @order to form_with model: b fixed it!

 <tr>
      <% @orders.each do |b| %>
        <td> <%= b.recipient %></td>
        <td> <%= b.apartment %></td>
        <td><%= b.mailbox %></td>
        <td><%= b.id %></td>

    <%= form_with model: b do |form| %>


      <td><%= form.text_field :delivered, placeholder: "Entregue à" %></td>
      <td><%= form.submit placeholder: "Entregue!"%></td>
    <% end %>

</tr>
  <% end %>
Reasons:
  • Has code block (-0.5):
  • Self-answer (0.5):
  • Low reputation (0.5):
Posted by: Cleber Reizen

79619715

Date: 2025-05-13 13:12:23
Score: 1.5
Natty:
Report link

Generally, you may need to export depot_tool.

git clone https://chromium.googlesource.com/chromium/tools/depot_tools.git
export PATH="/path/to/depot_tools:$PATH"
Reasons:
  • Low length (1):
  • Has code block (-0.5):
  • Low reputation (1):
Posted by: Avi Shihora

79619712

Date: 2025-05-13 13:10:23
Score: 1.5
Natty:
Report link

The .trigger("change") does not make vue and react code detect the change its a know cypress issue. A workaround is to trigger input instead:

      cy.get("input.my-slider").invoke("val", 70).trigger("input");
Reasons:
  • Low length (0.5):
  • Has code block (-0.5):
  • Unregistered user (0.5):
  • Low reputation (1):
Posted by: user30526088

79619709

Date: 2025-05-13 13:08:23
Score: 1.5
Natty:
Report link
  1. First go to this page: https://console.cloud.google.com/iam-admin/iam

  2. Find the principal with this suffix: @firebase-sa-management.iam.gserviceaccount.com

  3. Click the edit icon.

  4. Add this role: Storage Object Admin

  5. Click Save.

    The issue should be resolved. I've got my issue resolved.

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

79619704

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

When this issue first came up a few years ago I decided to take a different approach, and wrote a proxy that sits between your IMAP/POP/SMTP client and the OAuth email provider. This way, you don't need to modify your client code, and only have to handle interactive OAuth requests once per account. You can find it here: https://github.com/simonrob/email-oauth2-proxy.

Reasons:
  • Contains signature (1):
  • No code block (0.5):
  • Single line (0.5):
  • Starts with a question (0.5): When this is
  • Low reputation (0.5):
Posted by: Simon

79619701

Date: 2025-05-13 13:01:21
Score: 2.5
Natty:
Report link

I've just found the option in ggsurvplot

axes.offset: logical value. Default is TRUE. If FALSE, set the plot axes to start at the origin.

which does exactly what you would like.

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

79619699

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

Thanks I resolved the issue it was the version number 1.8.0 in beta and I have changed it the stable version 1.7.7 and works fine

Reasons:
  • Blacklisted phrase (0.5): Thanks
  • Whitelisted phrase (-2): I resolved
  • Low length (1):
  • No code block (0.5):
  • Single line (0.5):
  • Low reputation (1):
Posted by: Zeinu kedir

79619696

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

Yes, you can use Docker to isolate and test potentially dangerous game mods or scripts, but with some limitations
Not 100% Secure for Malicious Code becouse it does not provide the same level of isolation as a full VM

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

79619694

Date: 2025-05-13 12:57:20
Score: 2
Natty:
Report link

The AdminJs team seems to be aware of this issue.

It seems it's likely caused by Nest v11. You can start your project with Nest v10 or subscribe to the issue and wait for a patch.

Reasons:
  • Low length (1):
  • No code block (0.5):
  • Low reputation (0.5):
Posted by: Please Help Me

79619693

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

MQ has no concept of a duplicate message.

You can put two "identical" messages on the queue if you like, but that's application-level logic. Once you have got a good return code from the send() operation, the message is (subject to transactionality and persistence options) there forever until someone removes it.

Even if you did something expensive like scan the existing messages on a queue before putting a new one, that would not help you if someone has already removed the "identical" message.

Reasons:
  • No code block (0.5):
Posted by: Mark Taylor

79619691

Date: 2025-05-13 12:56:19
Score: 2.5
Natty:
Report link

Thank you for your answers.

After a few hours spent on investigations, I found source of the problem. Configuration is OK but the problem is inside CI/CD. Locally that works fine, but in the CI/CD there are two versions at once - with CRA configuration and Vite configuration. I can see my updated and new files, but all deleted files still are visible inside pipeline. Even if I've removed postcss.config.js and rest of these old configs, they are still taken from the dev branch to which I am trying to merge my changes.

Reasons:
  • Blacklisted phrase (0.5): Thank you
  • Blacklisted phrase (1): I am trying to
  • Long answer (-0.5):
  • No code block (0.5):
  • Self-answer (0.5):
  • Low reputation (0.5):
Posted by: Kuba Bujak

79619682

Date: 2025-05-13 12:50:18
Score: 0.5
Natty:
Report link

When you lock your ACR behind a private endpoint, the one piece that breaks is your build‐and‐push job: a Microsoft-hosted agent (or your local laptop) simply can’t ever reach your registry’s private IP. You have two ways to get around that:

1) Build & push to a private ACR

A. Use ACR Tasks (server-side build)

ACR Tasks run inside Azure, so they don’t need your agent to talk to the registry—but they do need permission through your ACR’s firewall/private endpoint.

  1. In the Azure Portal, go to your Container Registry → Networking

  2. Under Private endpoints, click your ACR private link.

  3. Under Firewall, toggle on “Allow trusted services” (this lets ACR Tasks in).

  4. From your pipeline use the exact same snippet you have:

    
    - task: AzureCLI@2
      displayName: 'Build & Push with ACR Tasks'
      inputs:
        azureSubscription: '$(azureSubscription)'
        scriptType: bash
        scriptLocation: inlineScript
        inlineScript: |
          az acr build \
            --registry $(acrName) \
            --image func-images:$(Build.BuildId) \
            --image func-images:latest \
            --file $(functionAppPath)/Dockerfile \
            $(functionAppPath)
    
  5. Confirm in the Portal’s Tasks blade that the build jobs are succeeding.

B. Or run docker build & docker push on a self-hosted agent in your VNET

If you’d rather build locally in your pipeline, that agent needs network access to your private ACR.

  1. Spin up an Azure VM (or Container Instance) in the same VNet/subnet (so it can resolve your private DNS zone)

  2. Install the Azure DevOps agent on that VM and add it to a self-hosted pool (e.g. MyVNetAgents)

  3. In your YAML switch pools and do a classic Docker build/push:

    pool:
      name: MyVNetAgents
    
    steps:
    - task: AzureCLI@2
      displayName: 'Login to ACR & Build/Push'
      inputs:
        azureSubscription: '$(azureSubscription)'
        scriptType: bash
        scriptLocation: inlineScript
        inlineScript: |
          az acr login --name $(acrName)
          docker build \
            -f $(functionAppPath)/Dockerfile \
            -t $(acrName).azurecr.io/func-images:$(Build.BuildId) \
            $(functionAppPath)
          docker push $(acrName).azurecr.io/func-images:$(Build.BuildId)
    
    

    2) Let your Container App actually pull that image

    Your Function-in-a-Container App has exactly the same “private registry” problem when it starts up. You have two choices here too:

    A. Feed it credentials

    When you first created the Container App (or its Environment) you can supply --registry-server, --registry-username and --registry-password. The CLI then stores those for every update/pull.

    az containerapp env create \
      --name my-env \
      --resource-group $(resourceGroup) \
      --location westus \
      --registry-server $(acrName).azurecr.io \
      --registry-username <YOUR-ACR-SPN-APPID> \
      --registry-password <YOUR-ACR-SPN-SECRET>
    
    

    Then your existing update:

    - task: AzureCLI@2
      displayName: 'Deploy to Container App'
      inputs:
        azureSubscription: '$(azureSubscription)'
        scriptType: bash
        scriptLocation: inlineScript
        inlineScript: |
          az containerapp update \
            --name $(containerAppName) \
            --resource-group $(resourceGroup) \
            --image $(acrName).azurecr.io/func-images:$(Build.BuildId)
    
    

    B. Use a Managed Identity (recommended)

    1. Turn on system-assigned identity on your Container App:

      az containerapp identity assign \
        --name $(containerAppName) \
        --resource-group $(resourceGroup)
      
      
    2. Grant that identity the AcrPull role on your registry:

      az role assignment create \
        --assignee <the-principal-id-you-got-above> \
        --role AcrPull \
        --scope /subscriptions/.../resourceGroups/.../providers/Microsoft.ContainerRegistry/registries/$(acrName)
      
      
    3. Update your Container App exactly as before—the identity will automatically be used for pulls:

      az containerapp update \
        --name $(containerAppName) \
        --resource-group $(resourceGroup) \
        --image $(acrName).azurecr.io/func-images:$(Build.BuildId)
      
      

    3) DNS & network checklist

    • DNS: your build VM (or ACR Tasks) must resolve
      mycontainerregistry-ehbcbtcwhpeyf9c2.azurecr.io → <private-endpoint-IP>
      via your Azure Private DNS zone (e.g. privatelink.azurecr.io).

    • VNet integration: both your build host and your Container App Environment must be on subnets that have that DNS zone linked.

    • Firewall rules: if you ever switch to public endpoints, you can open “Allow Azure services” or explicitly allow the Azure DevOps service tag—but private endpoint + firewall = host must be inside the VNet.

    TLDR (Summary):

    1. Decide where your build lives:

      • hosted ACR Tasks (enable “trusted services”), or

      • self-hosted agent in your VNet.

    2. Build & Push your Docker image to ACR.

    3. Configure your Container App to pull—either supply creds or use MSI + AcrPull.

    4. Wire up your YAML exactly as above.

    Once your build agent can actually talk to the registry IP, and your App can pull it, everything will flow end-to-end again.

Reasons:
  • Contains signature (1):
  • Long answer (-1):
  • Has code block (-0.5):
  • Starts with a question (0.5): When you
  • Low reputation (0.5):
Posted by: Ash

79619678

Date: 2025-05-13 12:49:18
Score: 1.5
Natty:
Report link

Yes, BigQuery can technically handle 700B+ rows, however DBT should not handle that in one shot during a full_refresh. The best approach is partitioned, batched processing and that means breaking it down by day. Consider using DBT's microbatch strategy if your DBT version supports it, or implement a daily processing loop in your DAG orchestration.

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

79619677

Date: 2025-05-13 12:47:17
Score: 4
Natty:
Report link

See this example of running tensorflow models on AWS lambda functions.

https://github.com/l3ardia/aws-lambda-tflite

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

79619674

Date: 2025-05-13 12:44:16
Score: 10.5 🚩
Natty: 5.5
Report link

I have same configuration and I have exactly same issue. Do you have solution?

Reasons:
  • RegEx Blacklisted phrase (2.5): Do you have solution
  • Low length (1.5):
  • No code block (0.5):
  • Me too answer (2.5): I have exactly same issue
  • Ends in question mark (2):
  • Single line (0.5):
  • Low reputation (1):
Posted by: Tomáš Valy Valoušek

79619673

Date: 2025-05-13 12:44:15
Score: 3.5
Natty:
Report link

I recommend you create a Python API with the correct processing and consume it in your Kotlin app, if it must be due to the processing that occurs.

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

79619669

Date: 2025-05-13 12:42:15
Score: 1.5
Natty:
Report link

Run these following commands. Will help you remove those unwanted Zone.Identifier files.

git config core.protectNTFS false
git sparse-checkout init --cone
git sparse-checkout set ''
git checkout <branch_name>
git sparse-checkout disable
find . -name "*:Zone.Identifier" -type f -delete
Reasons:
  • Low length (0.5):
  • Has code block (-0.5):
  • Self-answer (0.5):
  • Low reputation (1):
Posted by: Aakash Pawan G P S

79619665

Date: 2025-05-13 12:40:14
Score: 0.5
Natty:
Report link

Yes! It is safe to use memcpy(buffer, my_string, strlen(my_string)); when copy from a char* string literal to a uint8_t[] buffer.

In C99, char and uint8_t are both character types, and do not have padding bits. memcpy works at the byte level and will copy only the meaningful data (i.e., bytes actually used by the string), no hidden or undefined padding will be introduced when copying a string this way.

In addition, from ISO/IEC 9899:201x Programming languages -- C, 6.2.6.1 Representations of types, General, paragraph 3:

Values stored in unsigned bit-fields and objects of type unsigned char shall be represented using a pure binary notation.

The key points: unsigned char is always a pure binary representation - no padding, no trap representations, no weirdness.

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

79619637

Date: 2025-05-13 12:22:09
Score: 2.5
Natty:
Report link

WhatsApp Flows expects a response from the endpoint within 3 seconds, and if that doesn't happen - an error "Failed to fetch response from endpoint" appears, even if you then return the correct JSON.

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

79619631

Date: 2025-05-13 12:20:08
Score: 1
Natty:
Report link

If you are using the getReactNativePersistence check, That's what is prollly giving the error. Try importing directy;

from "firebase/auth/react-native";
import { getReactNativePersistence } from 'firebase/auth'; 
Reasons:
  • Low length (0.5):
  • Has code block (-0.5):
  • Low reputation (1):
Posted by: Joseph Korm

79619627

Date: 2025-05-13 12:17:07
Score: 3.5
Natty:
Report link

KYS
you are a disgrace to your nation and should be anihilatexd

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

79619620

Date: 2025-05-13 12:15:06
Score: 1
Natty:
Report link

Create an arrow function when subscribing to the Observable, like this:

this.subscription = observable.subscribe((value) => this.update(value));

Or eliminate the function update by including the logic in the arrow function.

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

79619618

Date: 2025-05-13 12:15:06
Score: 0.5
Natty:
Report link
SELECT * FROM Name
JOIN Course 
ON Course.Id IN (SELECT [value] FROM STRING_SPLIT(Name.CourseId, ','))
Reasons:
  • Low length (1):
  • Has code block (-0.5):
Posted by: Johan Gov

79619611

Date: 2025-05-13 12:12:05
Score: 1.5
Natty:
Report link

Adding autocomplete property to v-select helped for me

<v-select
    multiple
    chips
    clearable
    autocomplete
/>
Reasons:
  • Low length (1):
  • Has code block (-0.5):
  • Low reputation (1):
Posted by: grayman

79619604

Date: 2025-05-13 12:08:04
Score: 1.5
Natty:
Report link

1

Queues don't allow random, indexed access by concept so it is a good thing that the interface does not allow this either. If you need both kinds of access at the same time (which is a bad sign for design) then you could use a datatype that implements both List and Queue (e.g. LinkedList)

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

79619600

Date: 2025-05-13 12:06:04
Score: 2.5
Natty:
Report link

Managed to find an answer to my own question : negative sampling was poorly done (mainly random links) which led the model to always have the same percentage of trust for positive and negative links. I coded my own neg sampling function and made it generate links only inside the said "gamme". Now i have around 0.88 AUC.

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

79619589

Date: 2025-05-13 12:02:03
Score: 2
Natty:
Report link

Once can do this as below

thread No: (${__threadNum}) - loop - ${__jm__login__idx} ${__machineIP}

NOTE: Replace Login by name of your thread group

__threadNum - will print thread number

__jm__login__idx - will print loop number

__machineIP - will print IP of computer

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

79619573

Date: 2025-05-13 11:51:59
Score: 2
Natty:
Report link

this does not work !! it only stop the error , the action of pasting never executes if the error is triggered

On Error Resume Next


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

79619570

Date: 2025-05-13 11:48:58
Score: 13.5
Natty: 7.5
Report link

i have the same problem with you, did you fix it?

Reasons:
  • Blacklisted phrase (1): i have the same problem
  • RegEx Blacklisted phrase (3): did you fix it
  • RegEx Blacklisted phrase (1.5): fix it?
  • Low length (1.5):
  • No code block (0.5):
  • Me too answer (2.5): i have the same problem
  • Ends in question mark (2):
  • Single line (0.5):
  • Low reputation (1):
Posted by: emircanbakar

79619567

Date: 2025-05-13 11:46:57
Score: 1.5
Natty:
Report link

Using match() Function

match() is an inbuilt function in Julia which is used to search for the first match of the given regular expression in the specified string.

The match function in Julia is not intended to find multiple matches it only finds the first

Reasons:
  • Low length (0.5):
  • No code block (0.5):
  • Low reputation (0.5):
Posted by: Martin Wangen-Eriksen

79619566

Date: 2025-05-13 11:46:57
Score: 3
Natty:
Report link

After getting use these functions will work:
.GetAwaiter().GetResult();

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

79619563

Date: 2025-05-13 11:45:57
Score: 0.5
Natty:
Report link

In Julia, the match() function returns only the first match of the regular expression, which is why match(r"\d+", "10, 11, 12") gives "10" and stops there. This is intended behavior and differs from eachmatch(), which returns all matches in the string. The captures field is empty because your pattern r"\d+" doesn't include any capture groups—capture groups are defined using parentheses, like r"(\d+)". Without parentheses, there’s nothing to capture beyond the full match itself, which is accessible via m.match. To retrieve all numbers from the string, eachmatch(r"\d+", ...) is the correct approach.

Reasons:
  • Long answer (-0.5):
  • Has code block (-0.5):
  • Single line (0.5):
  • Low reputation (1):
Posted by: Manas Parashar

79619541

Date: 2025-05-13 11:25:52
Score: 2.5
Natty:
Report link

this will empty all rows from table even if u gets any issue regarding foreign key constraint......

this will not delete table.

DELETE FROM <table name>;

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

79619538

Date: 2025-05-13 11:23:50
Score: 2.5
Natty:
Report link

The MASM assembler can be installed in Visual Studio, .asm files need to be created, the code needs to be written, the solution needs to be built, and the solution needs to be debugged.

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

79619533

Date: 2025-05-13 11:19:49
Score: 0.5
Natty:
Report link

When we say query or command as Operation in mongodb:

Query: query operation basically means it doesn't change anything in DB. Just fetch the data without changing anything in DB

Command: Command is something where queries will have insert, update or delete.

Reasons:
  • Low length (0.5):
  • No code block (0.5):
  • Starts with a question (0.5): When we
  • High reputation (-1):
Posted by: KushalSeth

79619509

Date: 2025-05-13 10:56:44
Score: 3.5
Natty:
Report link

I am experiencing the same problem.

Pentaho CE 10.2.0.0-222 / JDK 17.0.10

Action: Open file - Browse a subdir from root dir ("/")

Error:

Exception occurred
java.lang.NullPointerException: Cannot invoke "org.pentaho.di.repository.RepositoryDirectoryInterface.getName()" because "repositoryDirectoryInterface" is null
    at org.pentaho.di.plugins.fileopensave.providers.repository.model.RepositoryDirectory.build(RepositoryDirectory.java:43)
    at org.pentaho.di.plugins.fileopensave.providers.repository.RepositoryFileProvider.getFiles(RepositoryFileProvider.java:107)
    at org.pentaho.di.plugins.fileopensave.providers.repository.RepositoryFileProvider.getFiles(RepositoryFileProvider.java:69)
    at org.pentaho.di.plugins.fileopensave.controllers.FileController.getFiles(FileController.java:131)
    at org.pentaho.di.plugins.fileopensave.dialog.FileOpenSaveDialog$FileTreeContentProvider.lambda$getChildren$0(FileOpenSaveDialog.java:2464)
    at org.eclipse.swt.custom.BusyIndicator.showWhile(BusyIndicator.java:74)
    at org.pentaho.di.plugins.fileopensave.dialog.FileOpenSaveDialog$FileTreeContentProvider.getChildren(FileOpenSaveDialog.java:2462)
    at org.eclipse.jface.viewers.AbstractTreeViewer.getRawChildren(AbstractTreeViewer.java:1434)
    at org.eclipse.jface.viewers.TreeViewer.getRawChildren(TreeViewer.java:350)
    at org.eclipse.jface.viewers.StructuredViewer.getFilteredChildren(StructuredViewer.java:852)
    at org.eclipse.jface.viewers.AbstractTreeViewer.getSortedChildren(AbstractTreeViewer.java:626)
    at org.eclipse.jface.viewers.AbstractTreeViewer.createChildren(AbstractTreeViewer.java:828)
    at org.eclipse.jface.viewers.TreeViewer.createChildren(TreeViewer.java:604)
    at org.eclipse.jface.viewers.AbstractTreeViewer.createChildren(AbstractTreeViewer.java:779)
    at org.eclipse.jface.viewers.AbstractTreeViewer.setExpandedState(AbstractTreeViewer.java:2526)
    at org.pentaho.di.plugins.fileopensave.dialog.FileOpenSaveDialog.lambda$createFilesBrowser$21(FileOpenSaveDialog.java:1273)
    at org.eclipse.jface.viewers.StructuredViewer$3.run(StructuredViewer.java:823)
    at org.eclipse.jface.util.SafeRunnable$1.run(SafeRunnable.java:129)
    at org.eclipse.jface.util.SafeRunnable.run(SafeRunnable.java:174)
    at org.eclipse.jface.viewers.StructuredViewer.firePostSelectionChanged(StructuredViewer.java:820)
    at org.eclipse.jface.viewers.StructuredViewer.handlePostSelect(StructuredViewer.java:1193)
    at org.eclipse.swt.events.SelectionListener$1.widgetSelected(SelectionListener.java:84)
    at org.eclipse.jface.util.OpenStrategy.firePostSelectionEvent(OpenStrategy.java:263)
    at org.eclipse.jface.util.OpenStrategy.access$5(OpenStrategy.java:258)
    at org.eclipse.jface.util.OpenStrategy$1.lambda$1(OpenStrategy.java:428)
    at org.eclipse.swt.widgets.RunnableLock.run(RunnableLock.java:40)
    at org.eclipse.swt.widgets.Synchronizer.runAsyncMessages(Synchronizer.java:132)
    at org.eclipse.swt.widgets.Display.runAsyncMessages(Display.java:4029)
    at org.eclipse.swt.widgets.Display.readAndDispatch(Display.java:3645)
    at org.eclipse.jface.window.Window.runEventLoop(Window.java:823)
    at org.eclipse.jface.window.Window.open(Window.java:799)
    at org.pentaho.di.plugins.fileopensave.dialog.FileOpenSaveDialog.open(FileOpenSaveDialog.java:322)
    at org.pentaho.di.plugins.fileopensave.extension.FileOpenSaveExtensionPoint.callExtensionPoint(FileOpenSaveExtensionPoint.java:74)
    at org.pentaho.di.core.extension.ExtensionPointMap.callExtensionPoint(ExtensionPointMap.java:142)
    at org.pentaho.di.core.extension.ExtensionPointHandler.callExtensionPoint(ExtensionPointHandler.java:36)
    at org.pentaho.di.ui.spoon.Spoon.openFileNew(Spoon.java:4706)
    at org.pentaho.di.ui.spoon.Spoon.openFileNew(Spoon.java:4670)
    at java.base/jdk.internal.reflect.NativeMethodAccessorImpl.invoke0(Native Method)
    at java.base/jdk.internal.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:77)
    at java.base/jdk.internal.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43)
    at java.base/java.lang.reflect.Method.invoke(Method.java:568)
    at org.pentaho.ui.xul.impl.AbstractXulDomContainer.invoke(AbstractXulDomContainer.java:309)
    at org.pentaho.ui.xul.impl.AbstractXulComponent.invoke(AbstractXulComponent.java:153)
    at org.pentaho.ui.xul.impl.AbstractXulComponent.invoke(AbstractXulComponent.java:137)
    at org.pentaho.ui.xul.swt.tags.SwtToolbarbutton.access$000(SwtToolbarbutton.java:44)
    at org.pentaho.ui.xul.swt.tags.SwtToolbarbutton$1.widgetSelected(SwtToolbarbutton.java:92)
    at org.eclipse.swt.widgets.TypedListener.handleEvent(TypedListener.java:252)
    at org.eclipse.swt.widgets.EventTable.sendEvent(EventTable.java:89)
    at org.eclipse.swt.widgets.Display.sendEvent(Display.java:4256)
    at org.eclipse.swt.widgets.Widget.sendEvent(Widget.java:1066)
    at org.eclipse.swt.widgets.Display.runDeferredEvents(Display.java:4054)
    at org.eclipse.swt.widgets.Display.readAndDispatch(Display.java:3642)
    at org.pentaho.di.ui.spoon.Spoon.readAndDispatch(Spoon.java:1429)
    at org.pentaho.di.ui.spoon.Spoon.waitForDispose(Spoon.java:8217)
    at org.pentaho.di.ui.spoon.Spoon.start(Spoon.java:9586)
    at org.pentaho.di.ui.spoon.Spoon.main(Spoon.java:735)
    at java.base/jdk.internal.reflect.NativeMethodAccessorImpl.invoke0(Native Method)
    at java.base/jdk.internal.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:77)
    at java.base/jdk.internal.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43)
    at java.base/java.lang.reflect.Method.invoke(Method.java:568)
    at org.pentaho.commons.launcher.Launcher.main(Launcher.java:88)

Thanks in advance for any support
Reasons:
  • Blacklisted phrase (0.5): Thanks
  • RegEx Blacklisted phrase (3): Thanks in advance
  • Long answer (-1):
  • Has code block (-0.5):
  • Unregistered user (0.5):
  • Low reputation (1):
Posted by: Maxhouston