79208281

Date: 2024-11-20 17:10:18
Score: 3
Natty:
Report link

Are you reading the first IP of the returned array, which should be the client one?

const clientIp = (req.headers['x-forwarded-for'] || '').split(',')[0].trim()
Reasons:
  • Low length (1):
  • Has code block (-0.5):
  • Ends in question mark (2):
  • Low reputation (0.5):
Posted by: Matteo Frana

79208277

Date: 2024-11-20 17:09:17
Score: 0.5
Natty:
Report link

This is an old post and I think FASTBuild deserves to be called out here.

If you are stuck with long build times on code that you can't change, parallelization and caching are the way to go. Incredibuild gives that, as other commenters have mentioned, but as of this writing it costs if your team is more than two developers.

FASTBuild is an open-source build parallelization and caching tool. I have had good success speeding up builds with this tool and would recommend for C++ projects that take upwards of 10 minutes to build. FASTBuild does two things -

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

79208275

Date: 2024-11-20 17:09:17
Score: 1.5
Natty:
Report link

Either restarting VS Code, updating angular language service as mentionened here,

but if that doesn't solve the issue and you have a workspace containing multiple different angular projects, try to make a clean workspace containing only v19 projects.

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

79208271

Date: 2024-11-20 17:07:17
Score: 3.5
Natty:
Report link

This is an issue with VS version out of sync with the Extensions. Please see the fix found here. https://community.zappysys.com/t/ssis-ado-net-connection-error-keyword-not-supported-providername/394 It helped me.

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

79208269

Date: 2024-11-20 17:07:17
Score: 2.5
Natty:
Report link

string ExternalRabbitMQClient = "ampqs://xxxx.aws.com"; should be amqps instead

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

79208265

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

It seems like

const solverInfo = World.getSolverInfo();
solverInfo.m_solverMode &= ~Ammo.SOLVER_RANDMIZE_ORDER;
solverInfo.m_solverMode &= ~Ammo.SOLVER_USE_WARMSTARTING;

works.

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

79208259

Date: 2024-11-20 17:04:16
Score: 5.5
Natty: 5.5
Report link

what is the maximum number of Google accounts you can invite to view a private video with YouTube Premium account?

Reasons:
  • Low length (1):
  • No code block (0.5):
  • Ends in question mark (2):
  • Single line (0.5):
  • Starts with a question (0.5): what is the
  • Low reputation (1):
Posted by: Shivam Sah

79208255

Date: 2024-11-20 17:03:16
Score: 1
Natty:
Report link

The “Essential container in task exited” message with an exit code of 0 indicates that the Fargate task completed successfully. This is expected behavior for a one-off or batch task.

If CloudWatch logs only show output and no errors, it’s a sign the task is completing as intended.

If your task is meant to run to completion (e.g., batch processing, script execution), this message is perfectly normal, and there’s nothing to worry about.

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

79208243

Date: 2024-11-20 17:01:15
Score: 2
Natty:
Report link

1.In index.js dotenv.config() should be used

2.Go to your MongoDB network access and change it to access from every where.

3.Clear browser cache.

4.Check your API keys

5.If error still occurred use your local MONGODB

Reasons:
  • Low length (0.5):
  • No code block (0.5):
  • Low reputation (1):
Posted by: Vinay Sankar Gokavarapu

79208242

Date: 2024-11-20 17:01:15
Score: 4.5
Natty:
Report link

I found this site which does a fair job of answering this.

https://www.activestate.com/resources/quick-reads/how-to-update-all-python-packages/

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

79208219

Date: 2024-11-20 16:53:12
Score: 0.5
Natty:
Report link

Try to store your custom JSON layout on the classpath and reference it from the log4j config:

    <Appenders>
        <Console name="Console" target="SYSTEM_OUT" follow="true">
            <JsonTemplateLayout eventTemplateUri="classpath:MyCustomLayout.json"/>
        </Console>
    </Appenders>
Reasons:
  • Low length (0.5):
  • Has code block (-0.5):
  • Low reputation (0.5):
Posted by: user07

79208218

Date: 2024-11-20 16:53:12
Score: 0.5
Natty:
Report link

Multithreading and multiprocessing are two techniques used to achieve concurrent execution in programs, but they differ in approach, resource usage, and applications.

Key Differences Definition:

Multithreading: Multiple threads of a single process execute concurrently. Threads share the same memory space, making them lightweight. Multiprocessing: Multiple processes execute concurrently. Each process has its own memory space, making them independent but resource-intensive. Execution:

Multithreading: Ideal for I/O-bound tasks where the program waits for external operations like reading a file or network data. Multiprocessing: Suited for CPU-bound tasks that require heavy computation, like image processing or large-scale calculations. Resource Usage:

Multithreading: Shares resources, which reduces overhead but can lead to issues like race conditions. Multiprocessing: Uses separate memory and resources, making it safer but with higher overhead. Performance:

Multithreading: Limited by the Global Interpreter Lock (GIL) in languages like Python. Multiprocessing: Exploits multiple CPUs/cores for true parallelism. Example in Python: Threading: threading module handles tasks like downloading files concurrently. Multiprocessing: multiprocessing module leverages multiple cores for heavy computations. Results: Use multithreading for tasks needing quick context switches and shared memory. Opt for multiprocessing for compute-heavy tasks requiring true parallelism. Choose based on your program’s nature and resource availability.

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

79208215

Date: 2024-11-20 16:53:12
Score: 0.5
Natty:
Report link

In the end I found a workaround - though I consider it a hack.

I had a look at image_types.bbclass, and was able to create a new bbclass for a new filesystem. Basically it is just mimicking the behavior of the ext4 class, except that rather than an .ext4 file, it just copies over the contents that I need into a directory.

Then I added the new filesystem to local.conf by appending to IMAGE_CLASSES and IMAGE_FSTYPES, and finally made my swupdate recipe depending on that new filesystem being populated by appending to IMAGE_DEPENDS.

I ended up with a new filesystem in tmp/deploy/images that was just a directory containing the files I needed.

Reasons:
  • Blacklisted phrase (0.5): I need
  • Long answer (-0.5):
  • Has code block (-0.5):
  • Self-answer (0.5):
  • Low reputation (0.5):
Posted by: Arne J

79208210

Date: 2024-11-20 16:51:11
Score: 2
Natty:
Report link

The dummy dataset I provided didn't represent the real issue in my data well (my bad). I have resolved the issue with my real data taking the following steps:

  1. My qPCR was run in triplicate for each sample so I had 3 species estimates for each sample. I took the mean of those three estimates.
  2. I ran the above model with autocorrelation specified as: acformula(~arma(time = seq, gr = species:site, cov=TRUE)
Reasons:
  • No code block (0.5):
  • Self-answer (0.5):
  • Low reputation (1):
Posted by: Jaime Grimm

79208208

Date: 2024-11-20 16:50:11
Score: 0.5
Natty:
Report link

Same situation for me when running agent in docker container and using tools to select desired jdk.

Although JAVA_HOME and PATH are set correct for Java 11 a "java -version" tells me it is version 17.

I found out, that LD_LIBRARY_PATH still points to the folders of Java 17, which is the default java in the container.

So when you are able to remove the LD_LIBRARY_PATH it should work again.

BTW: I'm still searching for a solution how to avoid getting LD_LIBRARY_PATH set to the default jdk, but I don't know who is setting it.

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

79208194

Date: 2024-11-20 16:47:10
Score: 1.5
Natty:
Report link

When discussing the concept of multiple occurrences of auto in deducing a placeholder type, particularly in languages like C++ (which uses auto for type inference), the standard phrasing often includes the following points:

Type Deduction for Multiple Occurrences of auto: When auto is used multiple times in a declaration (e.g., in a function signature, or when declaring multiple variables), the compiler deduces the type based on the available information from the context in which it appears. Each occurrence of auto is inferred independently based on the expression it is assigned or initialized with.

Template Parameter Deduction and Multiple auto: In function templates or lambda expressions, if multiple instances of auto are used (as in the case of multiple parameters or return types), the compiler will deduce each type separately.

Reasons:
  • Long answer (-0.5):
  • No code block (0.5):
  • Starts with a question (0.5): When
  • Low reputation (1):
Posted by: Amit Kumar

79208188

Date: 2024-11-20 16:45:10
Score: 1.5
Natty:
Report link

import firebase_admin from firebase_admin import credentials, firestore

class FirebaseManager: def init(self): if not firebase_admin._apps: cred = credentials.Certificate('path/to/your/serviceAccountKey.json') firebase_admin.initialize_app(cred, { 'databaseURL': 'https://your-database-url.firebaseio.com' }) self.db = firestore.client()

Usage

firebase_manager = FirebaseManager()

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

79208187

Date: 2024-11-20 16:44:09
Score: 4
Natty:
Report link

Are you including the google-services.json in your project in the right place?

Reasons:
  • Low length (1.5):
  • Has code block (-0.5):
  • Ends in question mark (2):
  • Single line (0.5):
  • Low reputation (0.5):
Posted by: Joe Spiro

79208186

Date: 2024-11-20 16:44:09
Score: 1.5
Natty:
Report link
df = pd.read_excel(file_path, skiprows=2)
for head_text in section headers:
   print(df.filter(like=head_text, axis=0)

This should simplify and achieve same goal

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

79208183

Date: 2024-11-20 16:43:09
Score: 0.5
Natty:
Report link

You might want to check your SQL database, particularly tables like wp_posts, to verify if the primary key and auto_increment settings are correct. During database migration, primary and foreign key relationships can become corrupted. For reference on correct database key structures, see the WordPress Database Description documentation: https://codex.wordpress.org/Database_Description

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

79208176

Date: 2024-11-20 16:42:08
Score: 6.5 🚩
Natty:
Report link

Please provide more context:

  1. include the surrounding method for both snippets.
  2. When you say "in the class constructor" what class are you referring to? How is it used?
Reasons:
  • RegEx Blacklisted phrase (2.5): Please provide
  • Low length (1):
  • No code block (0.5):
  • Ends in question mark (2):
  • Low reputation (0.5):
Posted by: Joe Spiro

79208173

Date: 2024-11-20 16:42:08
Score: 3.5
Natty:
Report link

I imported the Excel file as an object

It is more correct to say "I inserted an Excel workbook as an embedded object in a Visio document".

I need to import the Excel file in a way that allows me to search the table's data directly within Visio. Does anyone know if this is possible?

This is not possible through the Visio user interface, as it only searches among Visio objects. Excel in this case is an embedded (foreign) object.
But you can write bite of code to do it programmatically…

Reasons:
  • Blacklisted phrase (0.5): I need
  • RegEx Blacklisted phrase (2): Does anyone know
  • No code block (0.5):
  • Contains question mark (0.5):
Posted by: Surrogate

79208172

Date: 2024-11-20 16:42:08
Score: 2.5
Natty:
Report link

As Joop Eggen noted, using tokenizers.UnicodeScripts instead of ByteLevel solved the issue.

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

79208170

Date: 2024-11-20 16:42:08
Score: 0.5
Natty:
Report link

Let's see how to achieve the proposed result:

def pattern( char1, char2, n ):
     # first we save the base pattern 
    out =  char1 + char2 
    for i in range( n ):
         # in each iteration, we add to it its inverted version
        out += invert( out )
    return out
    
def invert( char ):
    out = ""
    for i in range( len( char )):
         # only in the odd numbers we add to **out** the reversed items
        if i % 2 != 0:
            out +=  char[ i ] + char[ i - 1 ]
    return out
Reasons:
  • Blacklisted phrase (1): how to achieve
  • Long answer (-0.5):
  • Has code block (-0.5):
  • Low reputation (0.5):
Posted by: Marce Puente

79208167

Date: 2024-11-20 16:40:07
Score: 3.5
Natty:
Report link

try and see if this works.

https://docpose.com/tools/converter/xaml

it say it can convert xaml to pdf

if not then why dont you convert xaml to html and then to pdf

html https://codebeautify.org/xml-to-html-converter

pdf https://html2pdf.com/

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

79208152

Date: 2024-11-20 16:38:07
Score: 2.5
Natty:
Report link

I've just built in newly installed VS code and everything worked, did not ask anything, there were no errors. magic!

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

79208149

Date: 2024-11-20 16:37:06
Score: 1.5
Natty:
Report link

So, apparently, it works with Next14 but not 15!

deno run -A npm:create-next-app@14 -- This works!
deno run -A npm:create-next-app@latest -- This doesn't!
Reasons:
  • Low length (1):
  • Has code block (-0.5):
  • Self-answer (0.5):
  • Low reputation (0.5):
Posted by: Vivek Kaushik

79208145

Date: 2024-11-20 16:36:06
Score: 3.5
Natty:
Report link
tempString = cbxSettingsUnit(cbxSettingsUnit.SelectedIndex).Itemdata
Reasons:
  • Low length (1.5):
  • Has code block (-0.5):
  • Unregistered user (0.5):
  • Has no white space (0.5):
  • Single line (0.5):
  • Low reputation (1):
Posted by: user28399905

79208141

Date: 2024-11-20 16:35:06
Score: 1
Natty:
Report link

Reading the docs, i realize that in Flutter Web the signIn method should not be used and will be deprecated, it is better to use a mix of signInSilently method, but it sometimes fails if user closes it once and it doesn't open anymore (for security i guess).

Another way they recommend it's to use their renderButton, it works, but it's not customizable.

In my case, I'm using Firebase, so i did it this way

FirebaseAuth.instance.signInWithPopup(GoogleAuthProvider());

Of course i need to have previous firebase config.

However, i think that they should improve a real alternative for signIn()

Reasons:
  • Blacklisted phrase (0.5): i need
  • Long answer (-0.5):
  • Has code block (-0.5):
  • Self-answer (0.5):
  • Low reputation (1):
Posted by: Erick Galván

79208133

Date: 2024-11-20 16:35:06
Score: 3
Natty:
Report link

In codeigniter 4, the APPPATH is the path to the app directory. To learn more constants, head to their manual here Codeigniter Guide

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

79208124

Date: 2024-11-20 16:33:05
Score: 1
Natty:
Report link

Got this error because I mistakenly added this at the top of the file

export const runtime = "edge";
Reasons:
  • Low length (1):
  • Has code block (-0.5):
  • Low reputation (0.5):
Posted by: Mia loha.dev

79208121

Date: 2024-11-20 16:32:05
Score: 1.5
Natty:
Report link

I installed Android Studio Ladybug | 2024.2.1 Patch 2, but it was not working. I restarted my system, and it worked.

Reasons:
  • Whitelisted phrase (-1): it worked
  • Low length (1):
  • No code block (0.5):
  • Single line (0.5):
  • Low reputation (0.5):
Posted by: sanjeev kumar

79208119

Date: 2024-11-20 16:31:04
Score: 5.5
Natty:
Report link

Did you set the variable in Windows?

https://confluence.atlassian.com/doc/setting-the-java_home-variable-in-windows-8895.html

Here you can see a video to how to do it:

https://youtu.be/0kF_ljRShDA?t=64

Reasons:
  • Blacklisted phrase (1): youtu.be
  • Probably link only (1):
  • Low length (1.5):
  • No code block (0.5):
  • Contains question mark (0.5):
  • Starts with a question (0.5): Did you
  • Low reputation (0.5):
Posted by: Alexandre B.

79208117

Date: 2024-11-20 16:31:04
Score: 2.5
Natty:
Report link

Replace i in k <= i with (2 * i) - 1, so that the expression would be k <= (2 * i) - 1.

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

79208112

Date: 2024-11-20 16:30:03
Score: 4.5
Natty:
Report link

In addition to Jason Snouffer's answer, there is also k8s-sidecar doing continuous updates for files from ConfigMaps. The project has a bit more reputation than configbump.

Reasons:
  • RegEx Blacklisted phrase (1.5): reputation
  • Low length (1):
  • No code block (0.5):
  • Single line (0.5):
  • Low reputation (1):
Posted by: Robert

79208102

Date: 2024-11-20 16:28:03
Score: 2.5
Natty:
Report link

Assuming you have docker running locally, then you would use

bolt://localhost:7687

FYI- bolt+s would be used if you've configure SSL support.

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

79208101

Date: 2024-11-20 16:28:03
Score: 2
Natty:
Report link

Make the following changes:

    minSdk 23
    targetSdk 34
Reasons:
  • Low length (1.5):
  • Has code block (-0.5):
  • Low reputation (1):
Posted by: Hossein Eskandari

79208094

Date: 2024-11-20 16:26:03
Score: 3
Natty:
Report link

With ukBaz's help, I was able to solve this and the system works pretty flawlessly based on my quick initial tests. There was a flaw in my code and not anything to do with any libraries or hardware.

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

79208090

Date: 2024-11-20 16:24:02
Score: 3
Natty:
Report link

You can override the paperstyles as outlined in the api PaperProps={{ sx: { padding: '1rem' } }}

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

79208083

Date: 2024-11-20 16:22:01
Score: 3.5
Natty:
Report link

Seems like a bug.

I have used RabbitMQ 3.6.10 and it shows running or idle respectively. enter image description here

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

79208081

Date: 2024-11-20 16:22:01
Score: 3
Natty:
Report link

Use photo_manager plugin for that.

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

79208074

Date: 2024-11-20 16:19:01
Score: 2
Natty:
Report link

Posting this as an answer because it was too long as a comment due to length of link URL.

I tried to reproduce this using the Pinia playground (link, but was unable to do so.

Are you sure you aren't leaving out any relevant code?

Reasons:
  • Low length (0.5):
  • No code block (0.5):
  • Ends in question mark (2):
  • High reputation (-1):
Posted by: Joe Lissner

79208046

Date: 2024-11-20 16:09:58
Score: 3
Natty:
Report link

Ok so I solved it.

In case it happens to someone else I'll put the answer here.

Long story short it was the TFLITE kernel accelerated maths functions that weren't compiled because the flag that defines the boards wasn't always passed by the CMake file. If you find your problem looks similar look for the EI_CLASSIFIER_TFLITE_ENABLE_ESP_NN flag and ensure your board is always define.

Thanks 0___________ for the help.

Have a good day fellow programmers, cheers.

Aloïs

Reasons:
  • Blacklisted phrase (0.5): Thanks
  • Blacklisted phrase (1): cheers
  • Blacklisted phrase (1): good day
  • Whitelisted phrase (-2): I solved
  • No code block (0.5):
  • Self-answer (0.5):
  • Filler text (0.5): ___________
  • Low reputation (1):
Posted by: A.KYROU

79208042

Date: 2024-11-20 16:08:58
Score: 1.5
Natty:
Report link
<h3 name ="demo" id = "demo"/>

<script>
var div_name = "ABCD";
var t = '<div className="' + div_name + '">22221</div>'

document.getElementById("demo").innerHTML = t;
</script>
Reasons:
  • Low length (1):
  • Has code block (-0.5):
  • Low reputation (1):
Posted by: Niall O'Dwyer

79208031

Date: 2024-11-20 16:06:57
Score: 1
Natty:
Report link

If you want it to be done with python, I would suggest this way:

import os
import socket

ip: str = socket.gethostbyname(os.environ["HOSTNAME"]

If you do not have your hostname in pod's environment, you can set pod name as a constant

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

79208030

Date: 2024-11-20 16:06:57
Score: 1.5
Natty:
Report link

The answer given by @Naren Murali is the one you should use. But as I faced the same issue as you today, here is the explanation (given from this post)

ng-content can only exist once, you need to wrap it inside a ng-template that will only be displayed one time

Reasons:
  • Low length (0.5):
  • Has code block (-0.5):
  • User mentioned (1): @Naren
  • Low reputation (0.5):
Posted by: TCH

79208012

Date: 2024-11-20 16:01:55
Score: 9
Natty: 8
Report link

Hi Where you able to solve this?

Reasons:
  • Blacklisted phrase (1): you able to solve
  • RegEx Blacklisted phrase (1.5): solve this?
  • Low length (2):
  • No code block (0.5):
  • Ends in question mark (2):
  • Unregistered user (0.5):
  • Single line (0.5):
  • Low reputation (1):
Posted by: user28399348

79208011

Date: 2024-11-20 16:00:55
Score: 2.5
Natty:
Report link

There is an open source project doing exactly what is needed (for linux, macos and windows): killport

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

79208000

Date: 2024-11-20 15:58:54
Score: 5.5
Natty:
Report link

I face the same problem of using futter_ringtone_player package. after update the futter_ringtone_player latest version my problem is solved.

Reasons:
  • Low length (1):
  • No code block (0.5):
  • Me too answer (2.5): I face the same problem
  • Single line (0.5):
  • Low reputation (1):
Posted by: md Sharif Hossain

79207993

Date: 2024-11-20 15:57:53
Score: 0.5
Natty:
Report link

No, there's no way to associate table fields (which are just string keys in a hash table) with local variables of the same name. You just have to be explicit and think of variables and table keys as two separate things.

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

79207990

Date: 2024-11-20 15:56:53
Score: 3.5
Natty:
Report link

smokeParticle needs to be initialized. Drag the smokeParticle from the child into PlayerController's script smokeParticle.

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

79207987

Date: 2024-11-20 15:56:53
Score: 1
Natty:
Report link

How I am adding features and resources to an existing chart that I don't control is to create a new helm chart, with the existing chart (your public chart) as a dependency. You can then add the new pvc.yaml helm template into the /templates folder of that new helm chart.

One common pitfall is that the values for the dependencies go into the <name-of-dependency>: subtree in the values.yaml of the new chart.

In ArgoCD, you then reference the new chart.

Reasons:
  • Has code block (-0.5):
  • Starts with a question (0.5): How I am addin
  • Low reputation (1):
Posted by: Robert

79207986

Date: 2024-11-20 15:55:52
Score: 1.5
Natty:
Report link

Based on this site, I think the setting you're searching for is

window.autoDetectColorScheme

To activate it, follow these steps :

  1. Open your settings at JSON format
  2. Add the following line :

"window.autoDetectColorScheme": true,

  1. (Optional) If you want, you can also choose your favourites themes, depending on the color scheme.

"workbench.preferredLightColorTheme": "YourPreferredLightTheme", "workbench.preferredDarkColorTheme": "YourPreferredDarkTheme",

  1. Save your settings.json file
Reasons:
  • No code block (0.5):
  • Low reputation (1):
Posted by: Pchev78

79207974

Date: 2024-11-20 15:52:52
Score: 2
Natty:
Report link

I made a mistake in my reverse proxy configuration. I was using ajp protocol instead of http. In my tomcat I had ajp protocol disabled.

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

79207962

Date: 2024-11-20 15:48:50
Score: 3
Natty:
Report link

This might be what you're looking for https://www.ibm.com/docs/en/was-liberty/base?topic=security-public-apis.

That API allows you to access the security subject.

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

79207957

Date: 2024-11-20 15:47:50
Score: 4.5
Natty:
Report link

I am looking for solution and I really cannot get it right. I was going through some solutions but recently I have just tried to check what would be equation of trendline if the function is simply y=x^2. I have made a table with x increasing 0,5, 10, 15 etc, calculated y correspondingly (0, 25, 100, 225) and excel returns this: y=25,000000000000100x2 - 50,000000000000000x + 25,0000000000218. I presume people in MS know what they do, so how to use that function? I am using Office 365.

Reasons:
  • Blacklisted phrase (2): I am looking for
  • No code block (0.5):
  • Contains question mark (0.5):
  • Filler text (0.5): 000000000000
  • Filler text (0): 000000000000000
  • Filler text (0): 0000000000
  • Low reputation (1):
Posted by: K. Mach

79207953

Date: 2024-11-20 15:46:49
Score: 7 🚩
Natty: 6.5
Report link

got the same error, any idea??

Reasons:
  • Blacklisted phrase (1): any idea?
  • Low length (2):
  • No code block (0.5):
  • Ends in question mark (2):
  • Single line (0.5):
  • Low reputation (1):
Posted by: jianyu zhou

79207942

Date: 2024-11-20 15:43:46
Score: 11 🚩
Natty: 5.5
Report link

im facing the exact same issue,did you find a solution to this?

Reasons:
  • RegEx Blacklisted phrase (3): did you find a solution to this
  • Low length (1.5):
  • No code block (0.5):
  • Me too answer (2.5): facing the exact same issue
  • Ends in question mark (2):
  • Single line (0.5):
  • Low reputation (1):
Posted by: donkyk

79207929

Date: 2024-11-20 15:40:45
Score: 1
Natty:
Report link

.regular {
  html & {
    color: red;
  }
}

.pseudo:before {
  content: '(pseudo) style me red';

  html & {
    color: red;
  }
}
<div class="regular">(regular) style me red</div>

<div class="pseudo"></div>

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

79207921

Date: 2024-11-20 15:39:45
Score: 2.5
Natty:
Report link

It happens to me when installing EKS Add-ons on an EKS Cluster, turns out all of my worker nodes have a certain taint, and I have to add tolerations to the Add-ons' DaemonSets.

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

79207920

Date: 2024-11-20 15:39:45
Score: 0.5
Natty:
Report link

Instance “B” resides in the public subnet but does not have a public IP address. Therefore, it cannot communicate directly with the internet for updates unless it uses an intermediary like Instance “A” as a NAT instance (not mentioned in your setup). To get rid of that error you need to assign a public IP to “B” if it needs direct internet access.

If Instance “B” lacks a public IP, it won’t be able to use the IGW, even though the route table is correct.

Or you can configure instance A as a proxy or NAT instance to allow B to access the internet without the need of a public IP.

and Ensure “A” has IP forwarding enabled and correct routing setup.

(even if instance in the public subnet, if it doesn't have a public IP you need to treat it the same way as an instance in the private subnet)

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

79207910

Date: 2024-11-20 15:38:45
Score: 1
Natty:
Report link

It may not be the most ideal way to resolve this, but I was able to avoid that error by converting the tab separated .raw file produced by plink2 to match the space separated .raw file produced by older versions of plink.

I used the tr command, but I'm sure there are many better ways of doing this with awk, sed etc..

cat data1.raw | tr "\t" " " > space_data1.raw

Afterwards you can run read.plink in R as usual using the new file.

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

79207906

Date: 2024-11-20 15:37:45
Score: 3.5
Natty:
Report link

To add onto @howlger:

Top Menu Bar -> Windows Tab Drop down -> Preferences...

Continue as needed.

Reasons:
  • Low length (1):
  • No code block (0.5):
  • User mentioned (1): @howlger
  • Low reputation (1):
Posted by: WildRyc

79207903

Date: 2024-11-20 15:37:43
Score: 8 🚩
Natty: 6.5
Report link

someone resolved this? i need that

Reasons:
  • Blacklisted phrase (0.5): i need
  • RegEx Blacklisted phrase (1.5): resolved this?
  • Low length (2):
  • No code block (0.5):
  • Ends in question mark (2):
  • Single line (0.5):
  • Low reputation (1):
Posted by: ALDO PECORAINO

79207894

Date: 2024-11-20 15:35:42
Score: 6 🚩
Natty: 4.5
Report link

I do not have enough reputation to comment, but, the answer of CarLoOSX is also usable for MAUI.

Reasons:
  • Blacklisted phrase (1): to comment
  • RegEx Blacklisted phrase (1.5): I do not have enough reputation to comment
  • Low length (1.5):
  • No code block (0.5):
  • Single line (0.5):
  • Low reputation (1):
Posted by: tovergieter

79207890

Date: 2024-11-20 15:33:41
Score: 5.5
Natty:
Report link

does this matter for custom built apps that were published to my org or even for public apps?

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

79207887

Date: 2024-11-20 15:33:41
Score: 3.5
Natty:
Report link

See the following Using Material Design for Bootstrap 5 & Vanilla JavaScript https://mdbootstrap.com/docs/standard/extended/overlay/

or see here at the bottom of the page using bootstrap Overlay Image with text with Bootstrap 4

Reasons:
  • Probably link only (1):
  • Low length (1):
  • No code block (0.5):
  • Low reputation (1):
Posted by: Niall O'Dwyer

79207884

Date: 2024-11-20 15:32:40
Score: 2
Natty:
Report link

As pointed in the comments, This is something that the test runner does.

The long answer ivolves working through with NUnit and creating custom plugins for it. The simple answer is use another [Retry] package such as the Databindings.Reqnroll.NUnit.Retry

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

79207878

Date: 2024-11-20 15:31:40
Score: 2
Natty:
Report link

Struggling with the same. This might be the cause:

"If your application runs client side, then it will be the users IP that is trying to connect to the backend service, not your app service, and so you will need to grant them access." https://learn.microsoft.com/en-us/answers/questions/1340630/got-403-ip-forbidden-requesting-backend-app-servic

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

79207874

Date: 2024-11-20 15:30:40
Score: 2
Natty:
Report link

For anyone still looking,

I made a NPM package in github registry for changing All Files in the project

https://github.com/GyeongHoKim/lfify

you can follow the instructions or just copy and paste index.cjs in somewhere in your file and just node pasted-file.cjs

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

79207869

Date: 2024-11-20 15:29:40
Score: 1
Natty:
Report link

After playing around with things and spitting out hundred of console logs.

I realized that this is the culprit in the server...

const headers = req.headers;

Instead of creating a new header, I was taking the header of the previous request and trying to use that in my new request, thus causing this error

Instead now I am doing this

const headers = req.body.headers;
Reasons:
  • Has code block (-0.5):
  • Self-answer (0.5):
  • Low reputation (1):
Posted by: Exterasmors

79207867

Date: 2024-11-20 15:28:39
Score: 0.5
Natty:
Report link

Finally, after several days and countless tests, I discovered that the issue was related to the project itself. As stated in the Laravel factories documentation, the line 'customer_id' => Customer::factory() should never create a customer if the intent is to select an already existing one. Despite changing the logic to 'customer_id' => fake()->randomElement(Customer::all('id')) as @williamrb suggested, the same issue persisted. However, instead of occurring on record 11, it now happened randomly on 6, 12, 4, etc. Somehow, and I eventually gave up trying to figure out why, the framework did not behave as expected.

Perhaps it was due to having created and deleted multiple migrations, seeders, factories, and models incorrectly within the same project, causing it to break. After all, none of us fully understand what Laravel does behind the scenes with migrations, factories, seeders, etc. In the end, I managed to make it work by modifying the migration for the vehicles table's foreign key from:

$table->foreignId('customer_id')->constrained('customers')->onDelete('cascade');

to:

$table->unsignedBigInteger('customer_id');
$table->foreign('customer_id')->references('customer_id')->on('customers')->onDelete('cascade');

This resolved the issue. However, days later, I noticed that using the relationships still did not work as expected. As a result, I decided to create a completely new project from scratch, using exactly the same code I posted in my question, and it worked. The issue was indeed with the project itself.

I hope someone can explain why this might have happened so I can identify these types of problems more quickly in the future.

Reasons:
  • Blacklisted phrase (1): did not work
  • Whitelisted phrase (-1): it worked
  • Long answer (-1):
  • Has code block (-0.5):
  • User mentioned (1): @williamrb
  • Self-answer (0.5):
  • Low reputation (0.5):
Posted by: Anthonyx82

79207866

Date: 2024-11-20 15:28:39
Score: 4.5
Natty: 6
Report link

have you got the solution?? I am getting tha same issue

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

79207864

Date: 2024-11-20 15:28:39
Score: 3
Natty:
Report link

I am not an expert in customizing CKEditor, but I hope these articles will help:

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

79207850

Date: 2024-11-20 15:25:38
Score: 2
Natty:
Report link

If you need to add the command in Visual Studio similar to Visual Studio Code, where pressing CTRL + D selects the next matching word, here’s the name of the command you need to configure:

Edit.InsertNextMatchingCaret.

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

79207846

Date: 2024-11-20 15:24:38
Score: 2.5
Natty:
Report link

The project from Keijiro maybe lose access to RtMidi.dll that you can find here:

https://github.com/keijiro/jp.keijiro.rtmidi/tree/master/Packages/jp.keijiro.rtmidi/Runtime/Windows

Inside this scrpit for instance, you have this import: using RtMidiDll = RtMidi.Unmanaged;

https://github.com/keijiro/Minis/blob/master/Packages/jp.keijiro.minis/Runtime/Internal/MidiPort.cs

To solve it you can import manuality from Keijiro repository.

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

79207844

Date: 2024-11-20 15:24:38
Score: 1.5
Natty:
Report link
dart run fike

requires a filename so just replace the file_name.dart with name of your file with proper location

e.g - lib/login.dart

dart run lib/login.dart
Reasons:
  • Low length (1):
  • Has code block (-0.5):
  • Low reputation (1):
Posted by: Suraj Maurya

79207836

Date: 2024-11-20 15:21:36
Score: 4
Natty: 4
Report link

How do I retrieve John Doe and Will Smith without also retrieving John Smith in one database round-trip?

DB_ROM.relations[:names]
    .where do
        (first_name.ilike('John') & last_name.ilike('Doe')) | 
        (first_name.ilike('Will') & last_name.ilike('Smith'))
    end.to_a

More info: https://rom-rb.org/learn/sql/3.3/queries/

Reasons:
  • Blacklisted phrase (1): How do I
  • Low length (0.5):
  • Has code block (-0.5):
  • Ends in question mark (2):
  • Starts with a question (0.5): How do I
  • Low reputation (0.5):
Posted by: Edgar

79207822

Date: 2024-11-20 15:18:36
Score: 0.5
Natty:
Report link

I tried adding clearable: true and worked on desktop view.

                <DatePicker
                  renderInput={(params) => <TextField {...params} />}
                  slotProps={{ field: { clearable: true } }}
                />
Reasons:
  • Low length (0.5):
  • Has code block (-0.5):
  • Low reputation (0.5):
Posted by: Momen

79207817

Date: 2024-11-20 15:16:35
Score: 3.5
Natty:
Report link

Try Deleting the device from android studio and create a new one

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

79207816

Date: 2024-11-20 15:16:35
Score: 1
Natty:
Report link

Have a look at the fastkml documentation

from fastkml.utils import find_all
from fastkml import KML
from fastkml import Placemark
k = KML.parse("docs/Document-clean.kml")
placemarks = find_all(k, of_type=Placemark)
for p in placemarks:
    print(p.geometry)  
Reasons:
  • Probably link only (1):
  • Low length (0.5):
  • Has code block (-0.5):
Posted by: cleder

79207809

Date: 2024-11-20 15:15:35
Score: 1.5
Natty:
Report link

This error is due to the fact that type "null" is not destructurable at: const AuthContext = createContext<AppContext | null>(null);

A better approach is to assign the default value an empty object and declaring its type as the context type (AppContext):

const AuthContext = createContext< AppContext > ({} as AppContext);

Happy coding!

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

79207808

Date: 2024-11-20 15:15:34
Score: 7 🚩
Natty: 5.5
Report link

@Robin: I am currently stumbling over the same problem statement. How did your research end up?

Reasons:
  • Low length (1):
  • No code block (0.5):
  • Ends in question mark (2):
  • User mentioned (1): @Robin
  • Single line (0.5):
  • Looks like a comment (1):
  • Low reputation (1):
Posted by: Ingo Seifert

79207806

Date: 2024-11-20 15:14:34
Score: 2.5
Natty:
Report link

Fix Android Emulator Process has terminated - Android Studio The emulator may require certains DLLs are not present, this can be fixed by ensuring that you have the Latest Microsoft Visual C++ Redistributable Version :

Reasons:
  • Low length (1):
  • No code block (0.5):
  • Low reputation (1):
Posted by: patrick wilfried Kamelan

79207805

Date: 2024-11-20 15:14:34
Score: 0.5
Natty:
Report link

Your best bet is to create an image or backup in linode-cli if you are comfortable with cli. make sure you have pip3 installed and then run pip3 install linode-cli --upgrade

To create image to be exported to google cloud, run

linode-cli images create \
  --label this_is_your_label \
  --description "My linode image-backup" \
  --disk_id 123

When prompted for PAT follow this guide. This image would move all your files and environment off linode. Good practice to shutdown server when creating backup so there won't be interference with some apps running in background.

Reasons:
  • Blacklisted phrase (1): this guide
  • Long answer (-0.5):
  • Has code block (-0.5):
  • Low reputation (0.5):
Posted by: linkonabe

79207804

Date: 2024-11-20 15:14:34
Score: 2
Natty:
Report link

Change the value of the IntegerField field using raw_data

form.number.raw_data = '200'
Reasons:
  • Low length (1.5):
  • Has code block (-0.5):
  • Low reputation (1):
Posted by: Gustavo Costa

79207802

Date: 2024-11-20 15:14:34
Score: 0.5
Natty:
Report link

If I understand you correctly, you would like to expose the external endpoint through an ingress, so no proxy would be needed when using the ingress endpoint, right?

Wouldn't it be easiest to use the proxy directly in the internal client?

E.g. if it would be cURL, by setting http_proxy and https_proxy environment variables like here or in case of java, by setting java command line options -Dhttp.proxyHost=<proxy-ip/hostname> -Dhttp.proxyPort=<proxy-port>?

Or don't you have any control of the internal client?

If I understood your question correctly, I don't think you would use k8s tooling to achieve that.

ExternalName-type Kubernetes services are basically just a CNAME record and this DNS record would then be known inside the cluster. You cannot do any HTTP-based alterations like proxying with CNAME records. You would need to setup another pod/deployment doing the proxying for you, basically setting up another proxy to use the proxy - which would be overkill imho.

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

79207790

Date: 2024-11-20 15:11:33
Score: 0.5
Natty:
Report link

The solution that works for me.

I created new SSH key using the command, ssh-keygen -t rsa -b 4096 -C "[email protected]"

then; ls -l /home/user-dir/.ssh/

here you will see two pub keys. One is an 'id_rsa.pub' file. it is not the key. and another is there with 'id_edxxxx.pub' this is the github sshkey. cat it and copy to your github environment for use.

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

79207788

Date: 2024-11-20 15:10:33
Score: 1
Natty:
Report link

So for anyone stumbling onto this question in the future I managed to solve it, thanks to a ton of more research. What I had to do is a hard reset of the network config for the host machine:

pkill docker
iptables -t nat -F
ifconfig docker0 down
brctl delbr docker0
ip link del docker0

That's it, after that I ran docker-compose and everything worked.

Reasons:
  • Blacklisted phrase (0.5): thanks
  • Has code block (-0.5):
  • Self-answer (0.5):
  • Low reputation (0.5):
Posted by: TD3V

79207785

Date: 2024-11-20 15:09:32
Score: 0.5
Natty:
Report link

The answer from Anton Tykhyy works splendidly; though in the meantime I have found another way to solve this problem, by casting to a c_void type as shown below:

let cid: CLIENT_ID = CLIENT_ID {
    UniqueProcess: HANDLE(pid as *mut core::ffi::c_void),
    UniqueThread: HANDLE(0 as *mut core::ffi::c_void)
};

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

79207772

Date: 2024-11-20 15:07:32
Score: 2.5
Natty:
Report link

Thanks @Ahmed Agha. For a good while I could not successfully utilise phpMyAdmin as it frequently gave me the error message "mysqli::real_connect(): (HY000/2002): No connection could be made because the target machine actively refused it". I checked the Configure Server Management link when setting up a new instance and observed error in testing access to mySqld on my.ini file, however still had no clue what the cause was. I was reluctant to do a reinstall at this stage. Above solution re deleting comments above 'server-id' in my.ini file solved the issue with the Configuration server management. But I am still trying to sort out the phpMyAdmin issue.

Reasons:
  • Blacklisted phrase (0.5): Thanks
  • Long answer (-0.5):
  • No code block (0.5):
  • User mentioned (1): @Ahmed
  • Low reputation (1):
Posted by: Maplinks

79207769

Date: 2024-11-20 15:07:32
Score: 1.5
Natty:
Report link

use python version 1.26.4 and it will work. it worked for me atleast

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

79207767

Date: 2024-11-20 15:06:32
Score: 1
Natty:
Report link

Have a look at the fastkml documentation

from fastkml.utils import find_all
from fastkml import KML
from fastkml import Placemark
k = KML.parse("docs/Document-clean.kml")
placemarks = find_all(k, of_type=Placemark)
for p in placemarks:
    print(p.geometry)
    print(p.name)  
Reasons:
  • Probably link only (1):
  • Low length (0.5):
  • Has code block (-0.5):
Posted by: cleder

79207763

Date: 2024-11-20 15:06:32
Score: 3.5
Natty:
Report link

Add Storage Account Contributor with Storage Blob Data Contributor.

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

79207761

Date: 2024-11-20 15:05:31
Score: 0.5
Natty:
Report link

Changing href="/images/favicon.ico" to href="./images/favicon.ico" fixed my issue.

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

79207758

Date: 2024-11-20 15:04:30
Score: 7 🚩
Natty:
Report link

Good morning

Dear Sir, I appreciate the information you sent, I think the information about being able to use python to run it in Processmaker is very good. Ask him about which version of Processmaker opensource he is using. In my case, I have managed to install the Processmaker 4.10 version but I have been able to confirm certain limitations: in which the tables cannot be used, the project option and the datasource connectors which when trying to enter the options it indicates the error that this option does not exist. I could also see this problem in the old versions and the Docker 4.1 version Installation source: https://github.com/ProcessMaker/processmaker https://github.com/ProcessMaker/processmaker/releases

Unfortunately I have not been able to find information about my case, if possible you can help us. Regards

Reasons:
  • Blacklisted phrase (1): Regards
  • Blacklisted phrase (1): Good morning
  • RegEx Blacklisted phrase (3): you can help
  • RegEx Blacklisted phrase (1): help us
  • Long answer (-0.5):
  • No code block (0.5):
  • Low reputation (1):
Posted by: systemtt

79207742

Date: 2024-11-20 15:01:29
Score: 0.5
Natty:
Report link

Don't forget to update your composer, and update it in the right directory:

composer require mobiledetect/mobiledetectlib

This probably causes this issue, as it can't find the file to load the class.

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

79207739

Date: 2024-11-20 15:00:28
Score: 9.5
Natty: 7
Report link

Did you ever solve this? I'm running into similar problems

Reasons:
  • RegEx Blacklisted phrase (3): Did you ever solve this
  • RegEx Blacklisted phrase (1.5): solve this?
  • Low length (1.5):
  • No code block (0.5):
  • Contains question mark (0.5):
  • Unregistered user (0.5):
  • Single line (0.5):
  • Starts with a question (0.5): Did you
  • Low reputation (1):
Posted by: user28398296

79207737

Date: 2024-11-20 14:59:28
Score: 2.5
Natty:
Report link

I got the answer. My problem was that it was reading the header line as data. Once I added the line IGNOREHEADER 1, it worked. Somewhat misleading error.

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

79207724

Date: 2024-11-20 14:55:27
Score: 1
Natty:
Report link

For myself, the issue was the malware blocker.

I was testing SSL sandbox "How to Automate EV Code Signing With SignTool.exe or Certutil.exe Using eSigner CKA (Cloud Key Adapter)" but I was getting that error:

SignTool Error: An unexpected internal error has occurred. Error information: "Error: SignerSign() failed." (-2146893821/0x80090003)

I opened a chat sending my error and they fixed it in 1 min. I asked what they did, and thew told me they disabled the malware blocker

Reasons:
  • No code block (0.5):
  • Low reputation (0.5):
Posted by: César