79590833

Date: 2025-04-24 14:26:48
Score: 2
Natty:
Report link

If the table is empty, just rename the table. Then get the DDL: "CREATE TABLE ...". Correct the table name in the statement as well as the default value and execute that statement. Finally drop the renamed table.

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

79590832

Date: 2025-04-24 14:26:48
Score: 1
Natty:
Report link

I made it by css in codemirror 6.

My html structure

<div class="code-editor-container">
    <div class="cm-editor">...</div>
</div>

SCSS

.code-editor-container {
  background-color: white;
  border: 1px solid lightgray;
  position: relative;

  resize: vertical;
  overflow: auto;
  max-height: 600px;
  min-height: 2rem;

  .cm-editor {
    height: 100%;
    max-height: 600px;
  }
}

Picture

enter image description here

Reasons:
  • Probably link only (1):
  • Has code block (-0.5):
  • Low reputation (0.5):
Posted by: Vladimír Mlázovský

79590830

Date: 2025-04-24 14:25:48
Score: 1.5
Natty:
Report link

You should use "__main__" instead of "__ main __". I.e. remove spaces between underscores and letters.

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

79590823

Date: 2025-04-24 14:23:47
Score: 1.5
Natty:
Report link

try to use baseUrl while passing the html file with the same CORS url

      <WebView"
        source={{
          baseUrl: "https://some.domain.com/",
          html,
        }}
       ...
      />
Reasons:
  • Low length (0.5):
  • Has code block (-0.5):
  • Unregistered user (0.5):
  • Low reputation (1):
Posted by: rafab

79590820

Date: 2025-04-24 14:19:46
Score: 3
Natty:
Report link

I’m implementing a genetic algorithm (GA) to solve the Traveling Salesman Problem (TSP), and I need help defining a fitness function for it.

Here is my solution to calculate the distance of a given path and then evaluate the fitness (where the fitness is the inverse of the distance — shorter paths are more fit):

# Function to calculate the distance of a path
def distance(path, dist_matrix):
    return sum(dist_matrix[path[i]][path[i+1]] for i in range(len(path)-1)) + dist_matrix[path[-1]][path[0]]

# Fitness function: inverse of distance (shorter paths are better)
def fitness(path, dist_matrix):
    return 1 / distance(path, dist_matrix)

# Distance matrix (example for a 4-city problem)
dist_matrix = [
    [0, 2, 9, 10],
    [1, 0, 6, 4],
    [15, 7, 0, 8],
    [6, 3, 12, 0]
]

# Example path (city visit order)
path = [0, 1, 3, 2]

# Print the distance and fitness of the example path
print("Distance:", distance(path, dist_matrix))
print("Fitness:", fitness(path, dist_matrix))
Reasons:
  • Blacklisted phrase (0.5): I need
  • Blacklisted phrase (2.5): I need help
  • Long answer (-0.5):
  • Has code block (-0.5):
  • Low reputation (1):
Posted by: Prito

79590817

Date: 2025-04-24 14:19:46
Score: 7.5 🚩
Natty: 6
Report link

Is that mandatory to create DCR_association (DCRA) with the where the dcr rule?

Reasons:
  • Contains signature (1):
  • Low length (1.5):
  • No code block (0.5):
  • Ends in question mark (2):
  • Unregistered user (0.5):
  • Single line (0.5):
  • Starts with a question (0.5): Is that
  • Low reputation (1):
Posted by: dcra

79590808

Date: 2025-04-24 14:17:45
Score: 0.5
Natty:
Report link

I'm trying to implement a simple genetic algorithm in Python to maximize the function f(x) = x² for x in the range [0, 31]. I'm using binary encoding for chromosomes (each chromosome is a 5-bit binary string).

Here's what I have so far:

import random

# Fitness function: square of x
def fitness(x):
    return x * x

# Convert integer to 5-bit binary string (chromosome)
def to_binary(x):
    return format(x, '05b')

# Initialize population (6 random individuals)
population = [random.randint(0, 31) for _ in range(6)]

# Run for 5 generations
for gen in range(5):
    # Sort by fitness (higher is better)
    population.sort(key=fitness, reverse=True)
    
    # Print generation info
    print(f"Gen {gen}: {[to_binary(x) for x in population]} | Raw: {population}")
    
    # Selection: Keep top 2, add 4 new random individuals
    population = population[:2] + [random.randint(0, 31) for _ in range(4)]
Reasons:
  • Long answer (-0.5):
  • Has code block (-0.5):
  • Self-answer (0.5):
  • Low reputation (1):
Posted by: Prito

79590805

Date: 2025-04-24 14:16:44
Score: 0.5
Natty:
Report link

I know the question is for TextFields, but if anyone is looking for a solution for Buttons on macOS 14 like I did, here you go:

    Button {
       // action
    } label: {
       //label
    }
    .focusable(false)
Reasons:
  • Low length (0.5):
  • Has code block (-0.5):
  • Low reputation (0.5):
Posted by: Donat Kabashi

79590796

Date: 2025-04-24 14:12:44
Score: 1
Natty:
Report link

You can simply use this to temporarily disable it.

jobs.mediafiles.imagesPurgeJob.schedule= "-"
Reasons:
  • Low length (1):
  • Has code block (-0.5):
  • Low reputation (0.5):
Posted by: hadialaoui

79590795

Date: 2025-04-24 14:11:43
Score: 2
Natty:
Report link

Welcome Rami!

I apologize if I misunderstood something as I am more familiar with Google Cloud than I am familiar with AWS however based on the announced use cases on https://aws.amazon.com/opensearch-service/ I believe that the most likely use case that is sort of hard to find would be Google Cloud Search which could be used to search for internal documents.

Other than that here are some of the other applications that would cover what is announced in AWS such as:

If none of these services matches your needs I apologize and would appreciate a little more context, maybe I can still help!

Reasons:
  • Blacklisted phrase (1.5): would appreciate
  • Long answer (-0.5):
  • No code block (0.5):
  • Low reputation (0.5):
Posted by: Rene Olivo

79590791

Date: 2025-04-24 14:10:43
Score: 2.5
Natty:
Report link

sdfsdfsdfdsfsdfsdsdfsdfsdfsdfsdfsdfsdfsdfdsfsdfsdfsdfsdfsdfsdYour answer couldn't be submitted. Please see the error above.

Your answer couldn't be submitted. Please see the error above.

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

79590775

Date: 2025-04-24 14:01:40
Score: 2.5
Natty:
Report link

Same question here.

This works for me :

$> cargo run --example test1

but when test2 is hosted in a subfolder, this fails :

$> cargo run --example test2

Reasons:
  • Whitelisted phrase (-1): works for me
  • RegEx Blacklisted phrase (1): Same question
  • Low length (1):
  • No code block (0.5):
  • Low reputation (1):
Posted by: Stephan Guilloux

79590771

Date: 2025-04-24 13:59:39
Score: 0.5
Natty:
Report link

this is the command that I use in my scripts to get the reference file with the full path:

$shell = New-Object -ComObject WScript.Shell; $shortcut = $shell.CreateShortcut("C:\Users\Public\Desktop\YOURLINK.lnk"); $shortcut.TargetPath

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

79590763

Date: 2025-04-24 13:56:38
Score: 1
Natty:
Report link

In your connection handler you can find it from the stream writer:

remote_addr = writer.get_extra_info('peername')[0]
Reasons:
  • Low length (1):
  • Has code block (-0.5):
  • Low reputation (0.5):
Posted by: Dave H.

79590761

Date: 2025-04-24 13:55:38
Score: 3.5
Natty:
Report link

Anybody knows how can I achieve this in visual studio code. Adding a local nuget package and symbol source on Visual Studio is easy. But I can not use that in visual studio.
Goal is to debug the locally build package to test.

Reasons:
  • Blacklisted phrase (0.5): how can I
  • Blacklisted phrase (1): Anybody know
  • Low length (0.5):
  • No code block (0.5):
  • Low reputation (1):
Posted by: onishiro

79590751

Date: 2025-04-24 13:51:37
Score: 1
Natty:
Report link

You can try the URL like below:

"https://graph.facebook.com/v21.0/{entity_id}/insights?fields=impressions,actions,spend,clicks,reach&date_preset=maximum"

And pass the headers "Content-Type" and "Authorization".
Make sure you are passing a valid token or credentials.

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

79590750

Date: 2025-04-24 13:50:37
Score: 2
Natty:
Report link

Just do cs[) it will change without any problem. Like [1] to (1) not ( 1 )

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

79590749

Date: 2025-04-24 13:50:37
Score: 3
Natty:
Report link

Thanks for the hints and tips all, these led me to the answer which is .....

var tValue = locator.InputValueAsync().Result;

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

79590738

Date: 2025-04-24 13:42:35
Score: 3
Natty:
Report link

Based on https://github.com/manybrain/mailinator-python-client/blob/e1cba3320cbc0a320ede4a1e948e9bbf91140143/mailinator/models.py#L192C9-L192C16

We can use to_json() method.

inbox = mailinator.request( GetInboxRequest(DOMAIN, INBOX) )
print(inbox.to_json())

It returns correctly the payload.

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

79590736

Date: 2025-04-24 13:41:34
Score: 0.5
Natty:
Report link

Don't know if you still need it, but for anyone else who might need. There is this lib schedlock-spring, it works like a charm.

The use is straight forward and you can read about it here: https://www.baeldung.com/shedlock-spring

Hope it help anyone with this need

See you.

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

79590735

Date: 2025-04-24 13:41:34
Score: 0.5
Natty:
Report link

Google Cloud Artifact Registry supports multiple artifact formats, including a feature for Generic Repositories (currently available as a ‘Preview’ offering), which can store generic and immutable artifacts that do not need to follow any specific package format within Artifact Registry. You can store and manage arbitrary files such as archives, binaries, and media files without requiring package specifications.

You can explore this quickstart from the AR documentation, which might help you in trying to upload an AAR file to Artifact Registry. However, there is no guarantee of success, as the feature is still in Preview (limited support) and ongoing improvements are being made.

If you were unable to do it successfully, I suggest filing a feature request so Google's product engineering team can consider your preferred use case. However, please keep in mind that there is no ETA for a response or any guarantee that it will be implemented.

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

79590734

Date: 2025-04-24 13:40:34
Score: 3.5
Natty:
Report link

As @lastchance commented, all boundaries are zero flux by default. See this notebook for related issues with gradients at boundaries.

Reasons:
  • Probably link only (1):
  • Low length (1.5):
  • No code block (0.5):
  • User mentioned (1): @lastchance
  • Single line (0.5):
  • High reputation (-1):
Posted by: jeguyer

79590731

Date: 2025-04-24 13:38:33
Score: 1
Natty:
Report link

Turns out I was overthinking this. I've been mapping the file share after a reboot when what I should have been doing is copying the files to the VM and running them from there. Only one mapping is required at the start of the build block.

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

79590725

Date: 2025-04-24 13:35:33
Score: 4
Natty:
Report link

Just close and reopen HTTPie. 😊

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

79590712

Date: 2025-04-24 13:32:31
Score: 2
Natty:
Report link

This is currently not supported. A possible solution would be to create templates for the headers and write a custom menu to do this. There are limitations to make this built-in. For example if locked columns are used and a single multicolumn header is placed inside the locked table. Hiding it would hide an entire table.

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

79590706

Date: 2025-04-24 13:26:30
Score: 0.5
Natty:
Report link

As you have not provided specific data, let me point you how to generally "colorize" your points. You have to provide the texture to the pcd.colors member of the point cloud. In order to assign the correct image pixel to the points, create a mask of valid pixels in the depth image

mask = np.asarray(depth_img) > 0

and use this mask to filter your texture image. Assuming your texture image is an RGB image in the same resolution, you can assign the texture with

pcd.colors = o3d.utility.Vector3dVector(np.asarray(rgb_image)[mask].reshape(-1, 3) / 255.0)

Finally, you can show the point cloud the same way as before.

depth image contrast-enhanced RGB image

Input data (contrast-enhanced depth image, RGB image)

point cloud

Resulting point cloud

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

79590689

Date: 2025-04-24 13:19:28
Score: 2.5
Natty:
Report link

У меня раньше тоже работало без проблем

final KeycloakAuthenticationToken auth = (KeycloakAuthenticationToken) SecurityContextHolder.getContext().getAuthentication();

но теперь cast exception.

Cannot cast 'org.springframework.security.oauth2.server.resource.authentication.JwtAuthenticationToken' to 'org.keycloak.adapters.springsecurity.token.KeycloakAuthenticationToken'

Без понятия, что ему надо и как быть.

Reasons:
  • Has code block (-0.5):
  • No latin characters (2):
  • Low reputation (1):
Posted by: Kira 狐39

79590672

Date: 2025-04-24 13:12:26
Score: 0.5
Natty:
Report link

I was looking for a solution dealing with DSL and kotlin convention plugins, in that case you can add this on your class:

Project.extensions.configure<KspExtension> {
    arg("dagger.hilt.disableModulesHaveInstallInCheck", "true")
}
Reasons:
  • Low length (0.5):
  • Has code block (-0.5):
  • Low reputation (0.5):
Posted by: marcRDZ

79590667

Date: 2025-04-24 13:11:26
Score: 2
Natty:
Report link

# Read from SQL table

df = spark.read.table("your_database.source_table")

# Transform: filter age > 25

df_filtered = df.filter(df.age > 25).select("name", "age")

# Write to new SQL table

df_filtered.write.mode("overwrite").saveAsTable("your_database.filtered_table")

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

79590664

Date: 2025-04-24 13:10:26
Score: 3
Natty:
Report link

Ctrl+Shift+P --> View: Reset View Locations

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

79590663

Date: 2025-04-24 13:09:25
Score: 0.5
Natty:
Report link
<!-- Google Tag Manager -->
<script>(function(w,d,s,l,i){w[l]=w[l]||[];w[l].push({'gtm.start':
new Date().getTime(),event:'gtm.js'});var f=d.getElementsByTagName(s)[0],
j=d.createElement(s),dl=l!='dataLayer'?'&l='+l:'';j.async=true;j.src=
'https://www.googletagmanager.com/gtm.js?id='+i+dl;f.parentNode.insertBefore(j,f);
})(window,document,'script','dataLayer','GTM-KZ6KK28L');</script>
<!-- End Google Tag Manager -->
<!-- Google Tag Manager (noscript) -->
<noscript><iframe src="https://www.googletagmanager.com/ns.html?id=GTM-KZ6KK28L"
height="0" width="0" style="display:none;visibility:hidden"></iframe></noscript>
<!-- End Google Tag Manager (noscript) -->
Reasons:
  • Long answer (-0.5):
  • Has code block (-0.5):
  • Unregistered user (0.5):
  • Low reputation (1):
Posted by: user30361961

79590655

Date: 2025-04-24 13:03:24
Score: 2
Natty:
Report link

Tactiq achieves real-time transcription by using content scripts (basically scripts injected directly into the meeting webpage) along with background processes that handle audio or caption data. It mostly leverages the built-in live captioning features provided by platforms like Google Meet and Zoom, since these captions are already accurate and identify speakers clearly.

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

79590648

Date: 2025-04-24 12:58:23
Score: 1.5
Natty:
Report link

Start with working configuration like in: https://github.com/hieuwu/android-groceries-store/tree/cc9002d2aeae36aa0d788f120c847cfa0f250652

Then try to copied what already works into your project.

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

79590645

Date: 2025-04-24 12:56:22
Score: 0.5
Natty:
Report link

Since you are using com.apple.fps.1_0, make sure to use player.eme.initLegacyFairplay() before setting the source.

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

79590603

Date: 2025-04-24 12:37:16
Score: 1.5
Natty:
Report link

This is not the solution but could lead you to the solution. Just log in to the Anthropic Console (where you manage your API keys and billing). Look for a "Limits" or "Usage" page. This should show you your current usage statistics, your current rate limits for each category (RPM, TPM, TPD), and your current spending for the month. This will give you a clear picture of whether you've exceeded any of these limits.

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

79590602

Date: 2025-04-24 12:36:16
Score: 1
Natty:
Report link
x[0][:, mask].shape  # (10, 3)

That's happen [:, mask] performs standard boolean slicing, selecting 3 out of the 5 columns, resulting in a shape of (10, 3)

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

79590601

Date: 2025-04-24 12:36:16
Score: 4
Natty: 4.5
Report link

For those of you who consider Azure Functions, you might want to look at its Durable Functions feature https://learn.microsoft.com/en-us/azure/azure-functions/durable/durable-functions-overview?tabs=in-process%2Cnodejs-v3%2Cv1-model&pivots=csharp#async-http

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

79590599

Date: 2025-04-24 12:36:16
Score: 1
Natty:
Report link

Needed to alter the save image properties, and increase the heght of image, as per https://plotly.github.io/plotly.py-docs/generated/plotly.io.write_image.html

fig.write_image( 'image.png',width = 800, height = 1000)
Reasons:
  • Probably link only (1):
  • Low length (1):
  • Has code block (-0.5):
  • Self-answer (0.5):
  • High reputation (-1):
Posted by: frank

79590595

Date: 2025-04-24 12:35:15
Score: 11 🚩
Natty: 5.5
Report link

How did you resolve this issue?

Reasons:
  • RegEx Blacklisted phrase (3): did you resolve this
  • RegEx Blacklisted phrase (1.5): resolve this issue?
  • Low length (2):
  • No code block (0.5):
  • Ends in question mark (2):
  • Single line (0.5):
  • Starts with a question (0.5): How did you
  • Low reputation (1):
Posted by: Enem

79590593

Date: 2025-04-24 12:33:14
Score: 0.5
Natty:
Report link

Clearing the assets folder before going to the initialisation ,
worked for me :

await AudioPlayer.clearAssetCache();
 await _player.setAsset('assets/sounds/gunsound.mp3');
Reasons:
  • Whitelisted phrase (-1): worked for me
  • Low length (1):
  • Has code block (-0.5):
  • Low reputation (1):
Posted by: Zain Ul Abideen

79590584

Date: 2025-04-24 12:30:13
Score: 2.5
Natty:
Report link

What you're observing has to do with the JVM warm-up and the nature of a JIT compiler that optimizes code at runtime.

There's a whole article about that topic on Baeldung.com

I'd suggest you use the "JHM - Java Microbenchmark Harness" framework mentioned in the article for benchmarking your program.

Reasons:
  • Low length (0.5):
  • No code block (0.5):
  • Starts with a question (0.5): What you
  • Low reputation (1):
Posted by: Hahzeeboo

79590581

Date: 2025-04-24 12:29:12
Score: 1.5
Natty:
Report link
npm i -g n
sudo n 14
alias node=/usr/local/bin/node
alias npm=/usr/local/bin/npm
export PATH=/usr/local/bin:$PATH
Reasons:
  • Low length (1):
  • Has code block (-0.5):
  • Low reputation (1):
Posted by: Ramdas Hedgapure

79590577

Date: 2025-04-24 12:27:12
Score: 2
Natty:
Report link

I have tried that position: absolute; bottom: 0; and it comes in the middle of the page covering the content. Not sure what i have wrong. Shall i put footer out of body or what to make it stick to the bottom. I work on laptop and I am worried that it will go messy on desktop

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

79590569

Date: 2025-04-24 12:23:10
Score: 2
Natty:
Report link

As the OP said, this occurs for values from 0x8000 to < 0x10000.

I had added a heuristic to test the top hex digit. and add 2^16 is the result was negative when not expected.

However, Alek K.s method works great and is cleaner

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

79590566

Date: 2025-04-24 12:21:10
Score: 3
Natty:
Report link

run npm install and npm start in the project folder (if it's a Create React App) or open index.html in a browser if it's using CDN links.

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

79590553

Date: 2025-04-24 12:14:08
Score: 0.5
Natty:
Report link

I got this issue in the following case:

We had a column that was of type INT and allowed NULL (in SQL Server DB). However, the entity property was only int.

We changed public int col { get; set; } to public int? col { get; set; } to fix issue.

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

79590548

Date: 2025-04-24 12:13:08
Score: 1
Natty:
Report link

how did you connect to the ldap ? by the socket you get access to the ldap ? I did it, and I get error when i try to create client: `const createConnection = async (url, user, pass) => {

const client = ldap.createClient({ url: `ldap://${url}` });

return new Promise((resolve, reject) => {
  client.bind(user, pass, (err) => {

    if (err) {
      client.unbind();
      // return reject(new Error("LDAP bind failed"));
      return reject(err);
    }

    console.log("LDAP bind successful");
    resolve(client);
  });
});

`

Reasons:
  • Long answer (-0.5):
  • Has code block (-0.5):
  • Contains question mark (0.5):
  • Starts with a question (0.5): how did you
  • Low reputation (1):
Posted by: אלעד עסיס

79590546

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

We are currently in version 4.x.x. and we still don't have this option?

Normally, it's good practice in cartography to not present more than 4 categories of symbols (e.g. sizes) on a map. So, to represent dot sizes only continuously without giving user the control of how many levels and break points is not optimal.

Reasons:
  • No code block (0.5):
  • Contains question mark (0.5):
  • Low reputation (0.5):
Posted by: Faustin Gashakamba

79590527

Date: 2025-04-24 12:04:05
Score: 5
Natty:
Report link

I'm getting exactly the same issue and have not yet solved it .. even with the given answer above. I'm currently trying older versions of the http module to see if I can get the policy to work before raising a MuleSoft support case

Reasons:
  • Low length (0.5):
  • No code block (0.5):
  • Me too answer (2.5): I'm getting exactly the same issue
  • Single line (0.5):
  • Low reputation (1):
Posted by: Francis Edwards

79590518

Date: 2025-04-24 12:01:04
Score: 1
Natty:
Report link

Use REMAP_DIRECTORY: "/opt/oracle/oradata/oradata/DB_SOURCE/" is obviously not a data file...

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

79590510

Date: 2025-04-24 11:56:03
Score: 1
Natty:
Report link

Okay so, I store the tf state in the cloud on a Storage Account blob.

When I played around with the paths, at some point terraform left a resource in the state that contained this '../../' path (I used it at some point, while trying to separate this part to a module).

When I updated the state file (effectively using a new state) on the storage container, things cleared up after an init -reconfigure. both paths prefixed with ${path.root} work fine.

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

79590502

Date: 2025-04-24 11:53:02
Score: 1
Natty:
Report link

In codenameone_settings.properties

You can set a higher billing dependency version. Eg

codename1.arg.android.billingclient.version=6.0.1
Reasons:
  • Low length (1):
  • Has code block (-0.5):
  • Low reputation (0.5):
Posted by: Eric

79590496

Date: 2025-04-24 11:49:00
Score: 0.5
Natty:
Report link

What about when extending BaseTool with pydantic? I'm trying to do something like this, using this state:

from typing import Annotated

class AgentState(TypedDict):
    messages: Annotated[list, add_messages]
    names_in_context: dict[str, list]

And my tool looks like this.

from typing import Annotated
from langchain_core.tools import BaseTool
from langchain_core.tools.base import ArgsSchema
from pydantic import BaseModel, Field


class GetNamesToolInput(BaseModel):
    name: str = Field(description="Name about which to obtain information.")
    names_in_context: Annotated[dict, InjectedState("names_in_context")]


class GetNamesTool(BaseTool):
    name: str = "GetNamesTool"
    description: str = "Use this when user asks about a name ..."
    args_schema: ArgsSchema = GetNamesToolInput

    def _run(
        self, 
        user_provided_name: str,
        names_in_context: Annotated[dict, InjectedState("names_in_context")],
    ) -> str:
        return "Something"

W

I saw here that we can inject only part of the state using InjectedState("names_in_context") annotation but it is not working.

https://langchain-ai.github.io/langgraph/how-tos/pass-run-time-values-to-tools/

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

79590486

Date: 2025-04-24 11:40:58
Score: 1
Natty:
Report link

To vectorize the loop nest I'd recommend using collapse() clause in `omp simd` directive, it may improve perf in some cases

https://godbolt.org/z/jYaon1EMG

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

79590485

Date: 2025-04-24 11:40:58
Score: 1.5
Natty:
Report link

To draw on a TPaintBox, you need to use its OnPaint event, because TPaintBox has no internal buffer, and drawing on its canvas is "live", i.e. it will disappear on the next redraw (which may happen on the next frame, so the image will live only a fraction of a second).

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

79590484

Date: 2025-04-24 11:39:58
Score: 0.5
Natty:
Report link

I figured this could be solved using Delegte Handlers

 protected override async Task<HttpResponseMessage> SendAsync(HttpRequestMessage request, CancellationToken cancellationToken)
 {
     if (request.RequestUri != null && request.RequestUri.ToString().Contains("the path to override"))
     {
        //do your thing
     }
    // then forward the request
     return await base.SendAsync(request, cancellationToken);
 }
Reasons:
  • Has code block (-0.5):
  • Self-answer (0.5):
  • Low reputation (0.5):
Posted by: Praveen Valavan

79590483

Date: 2025-04-24 11:38:57
Score: 2
Natty:
Report link

There is a tricky way:client sends a Pong packet, and server also replies with a Pong packet...

Because I really don't want to send a Ping packet from the server to the client or use the TextMessage to customize the PING PONG...

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

79590479

Date: 2025-04-24 11:37:57
Score: 5
Natty: 4
Report link

is htis ever solved ?

trying to connect to the websocket using the token so I can get messages from the user servers

is it doable without the need to get the user original token ?

Reasons:
  • RegEx Blacklisted phrase (1.5): solved ?
  • Low length (0.5):
  • No code block (0.5):
  • Ends in question mark (2):
  • Low reputation (0.5):
Posted by: Taha Daboussi

79590472

Date: 2025-04-24 11:33:55
Score: 1
Natty:
Report link

I think the line On Error GoTo 0 doesn't help too much. This just can avoid the error checking on the next lines. Maybe after the shOut.Activate is placed the 0 label. At the end should be added the error trapping routine:

If (Err.Number <> 0) Then  
    Err.Clear() 
End If
Reasons:
  • Low length (0.5):
  • Has code block (-0.5):
  • Low reputation (1):
Posted by: Adrian

79590471

Date: 2025-04-24 11:33:55
Score: 0.5
Natty:
Report link

To get product buy/sell data sorted by date, you can use various trading platforms or APIs that provide historical transaction records. For businesses looking to connect with buyers and sellers or promote products using verified contact information, visit https://www.latestdatabase.cn/ — we offer updated and accurate data that can enhance your marketing and sales strategies.

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

79590453

Date: 2025-04-24 11:28:54
Score: 2
Natty:
Report link

After looking at your live demo, this seems like this is a closure related issue in React.

In the original code, handleLoadMore captures the value of after at the time of its creation. If this changes later, then handleLoadMore will still refer to the old value since it was defined in the initial scope of this render. This means that every time LoadMore component is using the handleLoadMore, it's still using the initial version of it.

Personally, I would use a ref to access the current value of after, while also keeping the handleLoadMore more stable.

As for your side question, this may help. After a quick google search I was able to find that apparently requestIdleCallback or requestAnimationFrame may be of assistance if you're using non-urgent UI updates.

Let me know if this is helpful, or if I may be able to provide some more assistance for you!

Reasons:
  • RegEx Blacklisted phrase (2): urgent
  • Long answer (-0.5):
  • Has code block (-0.5):
  • Low reputation (1):
Posted by: Thomas

79590445

Date: 2025-04-24 11:26:53
Score: 5.5
Natty:
Report link

@Homer512 was right. getMatAtFrame() is actually slower than processing. Thank you.

Reasons:
  • Blacklisted phrase (0.5): Thank you
  • Low length (1.5):
  • Has code block (-0.5):
  • User mentioned (1): @Homer512
  • Self-answer (0.5):
  • Single line (0.5):
  • Looks like a comment (1):
  • Low reputation (1):
Posted by: Vladyslav

79590443

Date: 2025-04-24 11:26:53
Score: 1
Natty:
Report link

I tried all of the above but nothing worked.
On the other hand, below you can find a quick solution that worked for me:

notebook_path = IPython.get_ipython().user_ns.get("__vsc_ipynb_file__")

I suspect this only works if you are using VSC as your ide.

Reasons:
  • Blacklisted phrase (1): but nothing work
  • Whitelisted phrase (-1): worked for me
  • Low length (0.5):
  • Has code block (-0.5):
  • Low reputation (1):
Posted by: Marco Tuccio

79590441

Date: 2025-04-24 11:25:53
Score: 1
Natty:
Report link

Best Backends for Unity Mobile Games

  1. PlayFab (by Microsoft)
    Great for multiplayer, leaderboards, user accounts, cloud scripting, and real-time analytics. Unity SDK available.

  2. Firebase (by Google)
    Ideal for authentication, real-time database, cloud functions, and push notifications. Lightweight, scalable, and free tier available.

  3. GameSparks (Now part of AWS)
    Advanced backend with matchmaking, leaderboards, and cloud code. Better for mid to large-scale games.

  4. Photon Engine
    Perfect for real-time multiplayer games (turn-based or action). Unity-ready with fast integration.

  5. Backendless / Nakama / Supabase (Open-source options)
    Good if you want more control and flexibility. Great for custom game logic, matchmaking, and chat.

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

79590438

Date: 2025-04-24 11:22:52
Score: 1
Natty:
Report link

import 'dart:async'; import 'dart:math';

import 'package:flutter/material.dart';

void main() { runApp(MathGameApp()); }

class MathGameApp extends StatelessWidget { @override Widget build(BuildContext context) { return MaterialApp( title: 'Math Game', theme: ThemeData(primarySwatch: Colors.blue), home: MathGamePage(), ); } }

class MathGamePage extends StatefulWidget { @override _MathGamePageState createState() => _MathGamePageState(); }

class _MathGamePageState extends State<MathGamePage> { final Random _random = Random(); int _num1 = 0; int _num2 = 0; String _operator = '+'; int _correctAnswer = 0; List<int> _options = []; int _score = 0; int _level = 1; int _timeLeft = 10; Timer? _timer;

@override void initState() { super.initState(); _generateQuestion(); }

void _startTimer() { _timer?.cancel(); _timeLeft = 10; _timer = Timer.periodic(Duration(seconds: 1), (timer) { setState(() { _timeLeft--; if (_timeLeft <= 0) { timer.cancel(); _gameOver(); } }); }); }

void _generateQuestion() { _num1 = _random.nextInt(10 * _level) + 1; _num2 = _random.nextInt(10 * _level) + 1; List<String> operators = ['+', '-', '×', '÷']; _operator = operators[_random.nextInt(4)];

switch (_operator) {

case '+':

\_correctAnswer = \_num1 + \_num2;

break;

case '-':

\_correctAnswer = \_num1 - \_num2;

break;

case '×':

\_correctAnswer = \_num1 \* \_num2;

break;

case '÷':

\_correctAnswer = (\_num1 \* \_num2) \~/ \_num2;

\_num1 = \_correctAnswer \* \_num2;

break;

}

_options = [_correctAnswer];

while (_options.length < 4) {

int option = _correctAnswer + _random.nextInt(20) - 10;

if (!_options.contains(option)) {

\_options.add(option);

}

}

_options.shuffle();

_startTimer();

}

void _checkAnswer(int selected) { if (selected == _correctAnswer) { _score++; if (_score % 5 == 0) _level++; _generateQuestion(); } else { _gameOver(); } }

void _gameOver() { timer?.cancel(); showDialog( context: context, barrierDismissible: false, builder: () => AlertDialog( title: Text('Game Over'), content: Text('Score: $_score\nLevel: $_level'), actions: [ TextButton( child: Text('Restart'), onPressed: () { Navigator.of(context).pop(); setState(() { _score = 0; _level = 1; _generateQuestion(); }); }, ) ], ), ); }

@override void dispose() { _timer?.cancel(); super.dispose(); }

@override Widget build(BuildContext context) { return Scaffold( appBar: AppBar(title: Text('Math Game')), body: Padding( padding: const EdgeInsets.all(16.0), child: Column( mainAxisAlignment: MainAxisAlignment.center, children: [ Text('Level: $_level', style: TextStyle(fontSize: 22)), Text('Score: $_score', style: TextStyle(fontSize: 22)), Text('Time left: $_timeLeft', style: TextStyle(fontSize: 22, color: Colors.red)), SizedBox(height: 40), Text('$_num1 $_operator $_num2 = ?', style: TextStyle(fontSize: 32)), SizedBox(height: 20), ..._options.map((option) => Padding( padding: const EdgeInsets.symmetric(vertical: 8.0), child: ElevatedButton( onPressed: () => _checkAnswer(option), child: Text('$option', styl

e: TextStyle(fontSize: 24)), ), )), ], ), ), ); } }

Reasons:
  • Long answer (-1):
  • Has code block (-0.5):
  • Contains question mark (0.5):
  • User mentioned (1): @override
  • User mentioned (0): @override
  • User mentioned (0): @override
  • User mentioned (0): @override
  • User mentioned (0): @override
  • Low reputation (1):
Posted by: Ayesha Anjum

79590436

Date: 2025-04-24 11:21:51
Score: 3
Natty:
Report link

You can edit an .arsc file with Arsc Editor, An open source editor for resources.arsc with GUI and for example manipulate translations.

Screenshot of Arsc Editor editing the resources.arsc of F-Droid.apk v1.21.1. A pop-up window is opened that contains the actual value editor.

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

79590432

Date: 2025-04-24 11:21:51
Score: 6 🚩
Natty: 5.5
Report link

how to use this in automation script of powershell?

Reasons:
  • Low length (1.5):
  • No code block (0.5):
  • Ends in question mark (2):
  • Single line (0.5):
  • Starts with a question (0.5): how to use this in
  • Low reputation (1):
Posted by: Balaji

79590429

Date: 2025-04-24 11:18:50
Score: 2.5
Natty:
Report link

Finally, I fix it by delete all things in C:\Users\$MYACCOUNT\AppData\Local\Google and C:\Users\$MYACCOUNT\AppData\Roaming\Google.

Something corrupt in the file.

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

79590408

Date: 2025-04-24 11:05:47
Score: 1
Natty:
Report link

The = symbol represents the assignment operator. It is used to assign a value to a variable.

so your statement "



    int i = 0;

"

the value 0 is assigned to i. That's how i get initialised.

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

79590403

Date: 2025-04-24 11:02:46
Score: 1
Natty:
Report link

For Laravel 5.4:

return $this->buildFailedValidationResponse($request, ['Error message']);
Reasons:
  • Low length (1):
  • Has code block (-0.5):
  • Low reputation (0.5):
Posted by: Roman Grinyov

79590396

Date: 2025-04-24 10:58:45
Score: 1.5
Natty:
Report link

Maybe a bit late, but you could use Concurrency:

concurrency:
  group: ${{ github.workflow }}-${{ github.ref }}
  cancel-in-progress: true
Reasons:
  • Low length (1):
  • Has code block (-0.5):
  • Low reputation (1):
Posted by: Socksm

79590393

Date: 2025-04-24 10:56:44
Score: 1
Natty:
Report link

Using Qt 6.9 seems to work.

from PySide6.QtGui import QGuiApplication, Qt

QGuiApplication.styleHints().setColorScheme(Qt.ColorScheme.Dark) # Or ColorScheme.Light.

This will give you the current color scheme for the system.

QGuiApplication.styleHints().colorScheme()
Reasons:
  • Low length (0.5):
  • Has code block (-0.5):
  • Low reputation (1):
Posted by: Jimmy Nguyen

79590383

Date: 2025-04-24 10:51:42
Score: 1.5
Natty:
Report link

Public Sub koneksi() Try str = "Server=localhost;uid=root;pwd=1705;database=penjualan" conn = New MySqlConnection(str) If conn.State = ConnectionState.Closed Then conn.Open() MsgBox("Koneksi berhasil") End If Catch ex As Exception 'MsgBox("Koneksi gagal" + ex.Message) End Try End Sub

Public Sub koneksi() Try str = "Server=localhost;uid=root;pwd=1705;database=penjualan" conn = New MySqlConnection(str) If conn.State = ConnectionState.Closed Then conn.Open() MsgBox("Koneksi berhasil") End If Catch ex As Exception 'MsgBox("Koneksi gagal" + ex.Message) End Try End Sub

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

79590376

Date: 2025-04-24 10:48:41
Score: 1.5
Natty:
Report link

You can also change the cell height ->

export const StyledTable = styled(Table)`
  .ant-table-row {
    height: 50px;
  }
`
Reasons:
  • Low length (1):
  • Has code block (-0.5):
  • Low reputation (1):
Posted by: Matek

79590374

Date: 2025-04-24 10:46:41
Score: 1
Natty:
Report link

Additionally, you might be missing the import in your build.gradle.kts (check the latest version):

dependencies {
    // Compose Navigation for Wear OS - Add explicit dependency
    implementation("androidx.navigation:navigation-compose:2.7.5")
}
Reasons:
  • Low length (0.5):
  • Has code block (-0.5):
  • Low reputation (1):
Posted by: Alexander Talavera Karslake

79590373

Date: 2025-04-24 10:45:40
Score: 1
Natty:
Report link

There is a more general problem related to Mockery and in this case it actually works better with spies instead of mocks: Mockery::spy('overload:App\FooClass'); , so the assertions need to change: https://docs.mockery.io/en/latest/reference/spies.html

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

79590370

Date: 2025-04-24 10:44:40
Score: 1.5
Natty:
Report link

Imports MySql.Data.MySqlClient

Public Class connection
    Public Shared cn As New MySqlConnection(ConfigurationManager.ConnectionStrings("cnDatabase").ConnectionString)
End Class
Reasons:
  • Low length (1):
  • Has code block (-0.5):
  • Low reputation (1):
Posted by: Muza Adza

79590368

Date: 2025-04-24 10:44:40
Score: 2
Natty:
Report link

I have implemented PDF.js and it is working properly on localhost, but when I test it on SCORM, the PDF file does not open. The URL is not forming correctly — it's generating a short URL scorm console.log error screenshot

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

79590363

Date: 2025-04-24 10:42:39
Score: 4
Natty:
Report link

Somehow, updating PyArrow did not specifically help for me.
On the other hand, it seems to work just fine! :-?

It might be that that some functionality stays just constant and this warning can be ignored so far.
Although, missing certain submodules can lead to performance cuts, right!?!

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

79590352

Date: 2025-04-24 10:33:38
Score: 3.5
Natty:
Report link

T a watch and Trying to get the badge and Trying to get the badge and Trying

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

79590340

Date: 2025-04-24 10:25:35
Score: 0.5
Natty:
Report link

You're getting 404 because the base URL path /airflow is incorrect. Airflow's webserver serves from root (/), not /airflow.

Try curling:

curl http://localhost:8080/

Also, set:

AIRFLOW__WEBSERVER__BASE_URL=http://localhost:8080

Remove /airflow from any URLs or configs unless you're reverse proxying.

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

79590335

Date: 2025-04-24 10:23:35
Score: 0.5
Natty:
Report link

There are many manual and automated solutions that might help you. One of them could be to use IP-based firewall rules instead of domain-based. Since Windows Firewall blocks based on IP addresses, not domains, it’s more robust to resolve the domain manually (using nslookup). It will also block the resolved IPs via firewall. You can also periodically (manually or programmatically) update the list (since IPs change).

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

79590316

Date: 2025-04-24 10:11:32
Score: 0.5
Natty:
Report link

Most likely, you still have a volume from an old postgres container. Check your existing Docker volumes with docker volume ls and remove the unnecessary one using docker volume rm. The password will not be reset if the container has already been initialized. On a new container, the POSTGRES_PASSWORD_FILE env var works perfectly.

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

79590303

Date: 2025-04-24 10:05:30
Score: 3
Natty:
Report link

I don't know if the answer to this question is still relevant, but by default on iOS the "Back" button is a left-to-right screen swap

Reasons:
  • Low length (1):
  • No code block (0.5):
  • Single line (0.5):
  • Low reputation (1):
Posted by: Дмитрий Подщипков

79590297

Date: 2025-04-24 10:01:29
Score: 1
Natty:
Report link

Session is totally fine. It’s easy to use, no database setup required, and the data will stick around while the user is taking the quiz. Once they’re done, you can calculate the result and display it, and that’s it.

If you want to store results or review them later:

Database is the way to go. You’ll be able to save each user’s answers along with their name, timestamp, score, whatever you want. That opens up possibilities like:

Viewing past quiz results

Tracking how many people took the quiz

Generating stats, reports, etc.

TL;DR:

For one-time use, session is okay.

If you want to store data for future use, go with the database.

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

79590291

Date: 2025-04-24 09:58:28
Score: 2.5
Natty:
Report link

Apparently this .pslrc commands are not re-executed on connection reset. I think the only way to achieve what I want is to set these parameters server-side.

Reasons:
  • RegEx Blacklisted phrase (1): I want
  • Low length (1):
  • Has code block (-0.5):
  • Self-answer (0.5):
  • Single line (0.5):
Posted by: user2943799

79590279

Date: 2025-04-24 09:54:27
Score: 2.5
Natty:
Report link

Did you check the documentation regarding GetAttributeAsync here ? It clearly says the acceptable arguments could be either string or boolean.

Reasons:
  • Low length (1):
  • Has code block (-0.5):
  • Contains question mark (0.5):
  • Single line (0.5):
  • Starts with a question (0.5): Did you
  • Low reputation (0.5):
Posted by: Naveed Ahmed

79590273

Date: 2025-04-24 09:51:26
Score: 1.5
Natty:
Report link

Check your Node Version. I had a similar error which was caused by using an older version of Node (v16) which didn't support crypto.getRandomValues. Switching to a newer version (Node v18+) via NVM fixed it for me.

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

79590272

Date: 2025-04-24 09:50:26
Score: 2
Natty:
Report link
  1. Navigating to the scripts folder of the target virtual environment

  2. typing .\activate.

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

79590271

Date: 2025-04-24 09:50:26
Score: 2.5
Natty:
Report link

If you're still seeing the translation bar even after adding , make sure the lang attribute in your tag accurately reflects the page language. Chrome may ignore the meta tag if the content appears to mismatch the declared language. Also note that some browser extensions or user settings may override this behavior.

Also Check this: best translation websites

Reasons:
  • Contains signature (1):
  • No code block (0.5):
  • Low reputation (1):
Posted by: Linguidoor

79590270

Date: 2025-04-24 09:49:25
Score: 4
Natty: 4.5
Report link

If you are using Oh-my-zsh's git plugin, here are the short-cuts.

https://github.com/ohmyzsh/ohmyzsh/blob/master/plugins/git/README.md

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

79590269

Date: 2025-04-24 09:48:24
Score: 1
Natty:
Report link

The usual answer is of course: it depends.

So, Yes it will add some overhead. Usually, that effect should be negligible. BUT if your application is throwing a lot of exceptions then this will definitely have a bigger impact.

In general, throwing exceptions is slow and should only be done if it really is an exception. So if your logic is not "exception driven" (don't laugh, I've seen that several times in projects) you should not see a big impact.

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

79590261

Date: 2025-04-24 09:46:24
Score: 0.5
Natty:
Report link

It is not uncommon to see this especially if a process may have 100 files, sockets, pipes, or devices open, you'll see 100 lines with the same PID. You can understand what is happening if you read last two columns together, for instance you are receiving (or listening as your log says) UDP packets at localhost:52077. 52077 is the number port dedicated for receiving TCP/UDP packets.

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

79590256

Date: 2025-04-24 09:44:23
Score: 4
Natty:
Report link

I get the same problem (Access denied). You can restart your laptop before run the server, the the problem will solved.

Reasons:
  • Low length (1):
  • No code block (0.5):
  • Me too answer (2.5): I get the same problem
Posted by: Hiba Youssef

79590244

Date: 2025-04-24 09:37:21
Score: 0.5
Natty:
Report link

Utilising fireEvent I got it to work with:

const mockFile = new File(['content'], 'filename.txt', { type: 'text/plain' });
const input = screen.getByTestId('file-input') // reference your input HTMLElement here
fireEvent.change(input, { target: { files: [mockFile] } })
Reasons:
  • Low length (0.5):
  • Has code block (-0.5):
  • Low reputation (0.5):
Posted by: Phoghelius

79590241

Date: 2025-04-24 09:35:20
Score: 12 🚩
Natty: 5.5
Report link

I have the same issue ! :') Did you find an answer to your problem ?

Reasons:
  • Blacklisted phrase (1): I have the same issue
  • RegEx Blacklisted phrase (3): Did you find an answer to your problem
  • Low length (1.5):
  • No code block (0.5):
  • Me too answer (2.5): I have the same issue
  • Ends in question mark (2):
  • Single line (0.5):
  • Low reputation (1):
Posted by: Leigh

79590230

Date: 2025-04-24 09:30:18
Score: 2
Natty:
Report link

I ended up writing a .desktop file into ~/.local/share/applications the first time the app starts. The icon gets picked up after a couple of seconds at runtime.

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

79590229

Date: 2025-04-24 09:29:18
Score: 3
Natty:
Report link

Use Imgut API : https://api.imgur.com/3/image , I think it is also on rapidAPI. Free too , so ....

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

79590220

Date: 2025-04-24 09:27:17
Score: 3
Natty:
Report link

If you need to prettify it once or twice you can do it mannualy with any of the bunch online-tools (e.g. this online json-formatter)

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

79590216

Date: 2025-04-24 09:24:17
Score: 1.5
Natty:
Report link

As of today, on MacOS, the combination of key that works is : ESC following by Return

This allows to recall previously ran block of code , navigate into the line and inject change and new lines at will

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