79564929

Date: 2025-04-09 17:12:26
Score: 4.5
Natty:
Report link

Resolved by following this answer:

github.com/Yelp/elastalert/issues/1927#issuecomment-1054215307

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

79564915

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

I'm experiencing this as well, also with loader images. I have four charts that use loaders in frames until the charts are displayed. The first couple of loaders are displayed correctly. The second two are cancelled (in both Edge and Chrome). This worked previously, so it seems some requirement has changed in the browsers. While turning off content expiration in IIS might work for a single user on a single PC, it isn't a solution for thousands of PCs across a company network. I came here looking for a solution, so I apologize for not having one to offer.

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

79564909

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

You can use https://kioskengine.io , not sure if it's firefox but you're getting all the things you mentioned for free + more, and management from cloud (although works offline as well)

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

79564905

Date: 2025-04-09 17:00:22
Score: 4
Natty: 5.5
Report link
  1. Mvdd BBeu e o esse ddddddddfag vbewsrela txddvut y h dd, e ,v t i,
Reasons:
  • Low length (1.5):
  • No code block (0.5):
  • Single line (0.5):
  • Filler text (0.5): dddddddd
  • Low reputation (1):
Posted by: cesar onorio

79564902

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

A negative lag value in CMAK (Cluster Manager for Apache Kafka) usually indicates a bug, timing issue, or inconsistency in how offsets are being calculated or reported. Here's a breakdown of what could cause it:


🔍 Possible Reasons for Negative Lag in CMAK

1. Race condition in offset updates

2. Offset reset or manual intervention

3. CMAK bug or version-specific glitch

4. Clock sync issues between brokers and CMAK

5. Compacted topics or partition leadership changes


How to Fix / Mitigate

  1. Ensure consumers commit offsets properly and consistently

  2. Upgrade CMAK – bugs are often fixed in newer versions

  3. Check broker and CMAK server clocks – sync them using NTP

  4. Monitor offset commits and topic configurations

  5. Restart CMAK – sometimes a stale cache can cause issues


Would you like a script or a dashboard tip to track offsets outside of CMAK as a comparison tool?

Reasons:
  • Long answer (-1):
  • Has code block (-0.5):
  • Ends in question mark (2):
  • Low reputation (1):
Posted by: Imran Sheikh

79564892

Date: 2025-04-09 16:52:20
Score: 3.5
Natty:
Report link

Are you guys aware how messed up this all is

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

79564880

Date: 2025-04-09 16:47:19
Score: 2.5
Natty:
Report link

Maybe

.Shape.Fill.Visible = False
Reasons:
  • Low length (2):
  • Has code block (-0.5):
  • Has no white space (0.5):
  • Low reputation (0.5):
Posted by: Danny Coleiro

79564875

Date: 2025-04-09 16:44:18
Score: 0.5
Natty:
Report link

Based on the examples here, you have to call browser.close_tab(tab) . It works for me.

Reasons:
  • Whitelisted phrase (-1): works for me
  • Low length (1.5):
  • Has code block (-0.5):
  • Single line (0.5):
Posted by: Vince Molnár

79564872

Date: 2025-04-09 16:43:17
Score: 3
Natty:
Report link

@Jimi pointed out the problem, using this.Left, etc. instead of this.ClientRectangle.

H/T to @Jerermy Richards for the suggestion to look into WPF going forward.

Reasons:
  • Low length (1):
  • Has code block (-0.5):
  • User mentioned (1): @Jimi
  • User mentioned (0): @Jerermy
  • Self-answer (0.5):
  • Low reputation (1):
Posted by: Gene

79564866

Date: 2025-04-09 16:40:17
Score: 0.5
Natty:
Report link

When I try to open Image Asset Studio in Android Studio by right-clicking the app folder and selecting "New" → "Image Asset", nothing happens. I get the following error in the logs:

java.lang.NullPointerException
    at java.base/java.util.Objects.requireNonNull(Unknown Source)
    at com.android.tools.idea.npw.assetstudio.wizard.GenerateImageAssetPanel.<init>(GenerateImageAssetPanel.java:213)
    at com.android.tools.idea.npw.assetstudio.wizard.NewImageAssetStep.<init>(NewImageAssetStep.java:38)
    at com.android.tools.idea.npw.actions.NewImageAssetAction.createWizard(NewImageAssetAction.kt:35)
    ... (full stack trace in question details)

The Image Asset Studio only works when invoked from the res folder (app/src/main/res).

This works for me:

I think the tool needs the `res` folder context to know where to generate the assets.

Reasons:
  • Whitelisted phrase (-1): works for me
  • RegEx Blacklisted phrase (1): I get the following error
  • Long answer (-0.5):
  • Has code block (-0.5):
  • Starts with a question (0.5): When I
  • Low reputation (1):
Posted by: Jorge Saucedo

79564862

Date: 2025-04-09 16:38:16
Score: 0.5
Natty:
Report link

Based on the answer of StackExchange saddens dancek, I have made a short function to watermark an image from text

Within ~/.zshrc, adding :

watermark() {
    if [[ "$1" == "" ]]; then
        echo "Error: Watermark text and file missing" >& 2
        echo "Usage: $0 <watermark> <file>" >& 2
        return 1
    elif [[ "$2" == "" ]]; then
        echo "Error: File missing" >& 2
        echo "Usage: $0 <watermark> <file>" >& 2
        return 1
    fi
    magick -size 260x120 xc:none -fill grey \
          -gravity NorthWest -draw "translate 10,10 rotate -15 text 10,10 '$1'" \
          -gravity SouthEast -draw "translate 10,10 rotate -15 text 5,15 '$1'" \
          miff:- | \
        magick composite -tile - "$2" "wmark-$2"
    echo "Output: wmark-$2"
}

Example:

$ watermark "My watermark" image.png

Expected output:

enter image description here

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

79564860

Date: 2025-04-09 16:38:16
Score: 2.5
Natty:
Report link

you're messing up config/routes/security.yaml with config/packages/security.yaml, they are different files and have different purpose, one is for routing so '_security_logout' part should be here, and the latter one is for configuration so 'firewall' part here.

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

79564844

Date: 2025-04-09 16:29:13
Score: 1
Natty:
Report link

CREATE TABLE Employee (

employee_id INT AUTO_INCREMENT.

first name VARCHAR(50), last_name VARCHAR(50), email VARCHAR(100), hire date DATE, birth date DATETIME, salary DECIMAL(10, 2),

department_id TINYINT, is active BOOLEAN.

profile picture BLOB, employee_code CHAR(10).

rating FLOAT, created at TIMESTAMP DEFAULT CURRENT_TIMESTAMP, PRIMARY KEY (employee_id) );

CREATE TABLE Department (

department_id TINYINT AUTO_INCREMENT, department_name VARCHAR(50), location VARCHAR(50), PRIMARY KEY (department_id) ); output

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

79564836

Date: 2025-04-09 16:21:12
Score: 3
Natty:
Report link

Seems to have been an issue with the service - e.g., they removed all the datasets after I informed them of the issue.

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

79564829

Date: 2025-04-09 16:18:10
Score: 4
Natty: 4.5
Report link

follow LangGraph instruction to install it on windows, works like a charm

https://github.com/pygraphviz/pygraphviz/blob/main/INSTALL.txt

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

79564819

Date: 2025-04-09 16:14:09
Score: 9.5
Natty: 7
Report link

@CodeChops, can you please guide how did you configure keycloak in server-side and client-side projects ?

Reasons:
  • RegEx Blacklisted phrase (2.5): can you please guide how
  • Low length (1):
  • No code block (0.5):
  • Ends in question mark (2):
  • User mentioned (1): @CodeChops
  • Single line (0.5):
  • Looks like a comment (1):
  • Low reputation (1):
Posted by: Arun Kumar

79564814

Date: 2025-04-09 16:11:08
Score: 1.5
Natty:
Report link

You can use Limit/Offset, descripted in official doc

Reasons:
  • Whitelisted phrase (-1.5): You can use
  • Low length (1.5):
  • No code block (0.5):
  • Single line (0.5):
  • Low reputation (0.5):
Posted by: poisoned_monkey

79564813

Date: 2025-04-09 16:10:08
Score: 2
Natty:
Report link

I solved it myself.

I was able to convert the model distributed on TensorFlow Hub to ONNX format by using the following flow:

TensorFlow model on Kaggle to ONNX format?

### Save as tflite format
# -->> for movenet
import tensorflow as tf
import tensorflow_hub as hub

model = tf.keras.Sequential(
    [
        hub.KerasLayer(
            "https://www.kaggle.com/models/google/movenet/TensorFlow2/multipose-lightning/1",
            trainable=False,
            signature="serving_default", 
            signature_outputs_as_dict=True,
        ),
    ]
)
model.build([1, 256, 256, 3])
model.summary()
model.save("movenet-multipose-lightning")

converter = tf.lite.TFLiteConverter.from_keras_model(model)
tflite_model = converter.convert()
open("converted_model.tflite", "wb").write(tflite_model)
### Convert to ONNX format
$ python -m tf2onnx.convert --tflite converted_model.tflite --output converted_model_nchw_output.onnx --inputs-as-nchw serving_default_keras_layer_input:0

requirements.txt

absl-py==2.2.1
astunparse==1.6.3
cachetools==5.5.2
certifi==2025.1.31
charset-normalizer==3.4.1
coloredlogs==15.0.1
flatbuffers==1.12
gast==0.4.0
google-auth==2.38.0
google-auth-oauthlib==0.4.6
google-pasta==0.2.0
grpcio==1.71.0
h5py==3.13.0
humanfriendly==10.0
idna==3.10
keras==2.9.0
Keras-Preprocessing==1.1.2
libclang==18.1.1
Markdown==3.7
MarkupSafe==3.0.2
mpmath==1.3.0
numpy==1.26.4
oauthlib==3.2.2
onnx==1.14.1
onnx-graphsurgeon==0.5.7
onnx2tf==1.26.9
onnxruntime==1.21.0
opt_einsum==3.4.0
packaging==24.2
protobuf==3.20.3
psutil==7.0.0
pyasn1==0.6.1
pyasn1_modules==0.4.2
requests==2.32.3
requests-oauthlib==2.0.0
rsa==4.9
six==1.17.0
sng4onnx==1.0.4
sympy==1.13.3
tensorboard==2.9.0
tensorboard-data-server==0.6.1
tensorboard-plugin-wit==1.8.1
tensorflow==2.9.0
tensorflow-estimator==2.9.0
tensorflow-hub==0.16.1
tensorflow-io-gcs-filesystem==0.37.1
tensorflow-neuron==1.0
termcolor==3.0.0
tf-keras==2.14.1
tf2onnx==1.13.0
typing_extensions==4.13.0
urllib3==2.3.0
Werkzeug==3.1.3
wrapt==1.17.2

How can I generate a model in TensorFlow Lite format with fixed shape such as batch_size?

The answer to how to fix batch_size is in the answer to the following question:

Solved : How can I save a model with input shape (1, None, None, 3) with None fixed to 256?

Reasons:
  • Blacklisted phrase (0.5): How can I
  • Whitelisted phrase (-2): I solved
  • RegEx Blacklisted phrase (1.5): fixed to 256?
  • Long answer (-1):
  • Has code block (-0.5):
  • Ends in question mark (2):
  • Self-answer (0.5):
  • Low reputation (1):
Posted by: Shinobu HUYUGIRI

79564811

Date: 2025-04-09 16:10:08
Score: 2.5
Natty:
Report link

A fan trap only needs 2 tables in a 1:m relationship. The parent record gets duplicated over the child records causing aggregations over metrics found in the parent record to be in error. Fortunately, if you define the association in some of the modern BI tools (instead of SQL JOINs) you will get correct results. This is true of Power BI, Tableau & QlikView.

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

79564806

Date: 2025-04-09 16:09:08
Score: 2
Natty:
Report link

You can add @url to the end of the field reference to just get it as text so you can format your own link so for my requirements with the stripe netsuite connector where I want to use the html field with my own text in it I use

<a href="${record.custbody_stripe_payment_link@url}">Pay Now</a>

and your one would be something like this

<#if result.custitem_dp_image1?length != 0><img src="${result.custitem_dp_image1@url}" style="width: 100px; height: 100px;" /> </#if>

Sometimes you just have to wait a few years for the answer.

Reasons:
  • RegEx Blacklisted phrase (1): I want
  • Long answer (-0.5):
  • Has code block (-0.5):
  • User mentioned (1): @url
  • Low reputation (1):
Posted by: Alan Bell

79564793

Date: 2025-04-09 16:05:06
Score: 1
Natty:
Report link

This worked for me - the files in the bin folder were marked at read only. I changed that property of the bin folder (and all sub files) and now it compiles.

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

79564781

Date: 2025-04-09 15:59:05
Score: 1
Natty:
Report link

Use a Browser Extension like Tampermonkey + Custom Script

You can write a userscript using Tampermonkey to intercept network responses.

Steps:

Install Tampermonkey extension in Chrome or Firefox.

Write a script to hook into XMLHttpRequest or fetch calls.

Log or download the response data.

Option 2: Use Puppeteer (Headless Browser Automation with Node.js)

If you want more control or automation outside the browser (like in a script), use Puppeteer:

What it does:

Launches a headless browser

Monitors all network requests/responses

Extracts response bodies

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

79564779

Date: 2025-04-09 15:58:04
Score: 0.5
Natty:
Report link

The difference between :where() and :is() is that both match elements based on a list of selectors, but :where() has 0 specificity, while :is() takes the specificity of the most specific selector inside it.

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

79564773

Date: 2025-04-09 15:55:04
Score: 1.5
Natty:
Report link

What worked for me in a similar situation is to give the content the a dent value using a fraction.

.presentationDetents([.fraction(0.95)])

Here's an example from my app:

enter image description here

Reasons:
  • Whitelisted phrase (-1): worked for me
  • Probably link only (1):
  • Low length (1):
  • Has code block (-0.5):
  • Starts with a question (0.5): What
  • Low reputation (0.5):
Posted by: Igor P

79564769

Date: 2025-04-09 15:54:03
Score: 0.5
Natty:
Report link

If monitorEvents is not working, you can log events with the help of "Event Listener Breakpoints". "Event Listener Breakpoints" in the Sources tab will stop code execution when the breakpoint is triggered. This is unhelpful for some events like touchmove.

The code the breakpoint stops at likely has access to the event that was triggered as a parameter. You can log this by adding a 'logpoint' in the line and log the event variable.

You can then then remove the breakpoint and the logpoint will log the events in the console without blocking stopping execution.

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

79564768

Date: 2025-04-09 15:53:03
Score: 2.5
Natty:
Report link

Instead of all that -- I downloaded Screaming Frog SEO spider https://www.screamingfrog.co.uk/seo-spider/# and it worked like a charm. It will crawl an archive.org Wayback Machine URL and grab the URLs. First 500 URLs were free.

Reasons:
  • Blacklisted phrase (1): worked like a charm
  • Whitelisted phrase (-1): it worked
  • Low length (0.5):
  • No code block (0.5):
  • Single line (0.5):
  • Low reputation (1):
Posted by: Stan Samples

79564764

Date: 2025-04-09 15:51:02
Score: 1
Natty:
Report link

While @sleeplessnerd's answer may work for os.mkdir() specifically, there is a better way that seems to be both platform agnostic¹ and requires less overhead than manually mounting it as a drive letter. It uses pathlib.Path() and the mkdir() method.

pathlib.Path(r"\\remote\server\path\your_folder").mkdir()

Some useful parameters are parents, which creates the full file path - every folder in the path - if it doesn't exist and exist_ok=True, which prevents it from throwing an error if the folder already exists. Some example code:

# if you're making a log directory

LOG_DIR = pathlib.Path(r"\\remote\server\path\logs")

LOG_DIR.mkdir(parents=False, exist_ok=True)

I tested both samples on Python 3.13 64bit and both create an empty folder at the path specified.

¹ I have not tested it on other platforms and as this example uses Windows' file paths, I'm not sure how that would play into remote shares on other operating systems.

Reasons:
  • Long answer (-0.5):
  • Has code block (-0.5):
  • User mentioned (1): @sleeplessnerd's
  • Low reputation (1):
Posted by: OutOfWisdom

79564758

Date: 2025-04-09 15:49:02
Score: 0.5
Natty:
Report link

The simplest answer is, make sure the Role has AmazonEC2ContainerRegistryReadOnly and AmazonEKSWorkerNodePolicy attached, to make it shown in the drop down.

The drop down works by filter role by Policy instead of permission. Even if your role has full admin right, it won't appear in the drop down.

Reasons:
  • Low length (0.5):
  • Has code block (-0.5):
  • Low reputation (0.5):
Posted by: v.ng

79564743

Date: 2025-04-09 15:40:59
Score: 6 🚩
Natty:
Report link

@Pravallika KV

Answered here so I can add screenshots; otherwise, I would have made it a comment:)

I can't get that to work; I tried setting FUNCTIONS_EXTENSION_VERSION; am I missing something?

I created a brand new app, did not load any code, and got version 4.1037.1.1

enter image description here

Then, I went and changed FUNCTIONS_EXTENSTION_VERSION

enter image description here

And now it refuses to come up again

enter image description here
Am I missing something?

Reasons:
  • Probably link only (1):
  • No code block (0.5):
  • Ends in question mark (2):
  • User mentioned (1): @Pravallika
  • Self-answer (0.5):
  • Looks like a comment (1):
Posted by: vrghost

79564737

Date: 2025-04-09 15:37:58
Score: 1
Natty:
Report link

It looks like you problem related to JS Check this file https://sc.apexl.io/wp-content/themes/swim-central-child/scripts/main.js?ver=1.0

    $('.card-cell-button').click(function(event) {
        event.preventDefault();

        var buttonId = $(this).attr('id');
        var infoId = 'info-' + buttonId.split('-')[1];
        var infoContent = $('#' + infoId).html();

        $('#modal-info-content').html(infoContent);
        $('#fullscreen-modal').show();
        $('body').css('overflow', 'hidden'); //prevent scrolling
    });
Reasons:
  • Probably link only (1):
  • Has code block (-0.5):
  • Low reputation (0.5):
Posted by: Артур Димерчан

79564736

Date: 2025-04-09 15:36:58
Score: 2
Natty:
Report link

first try create CSS classes like .color-red, .color-blue, and .color-green with the desired color styles.

Then, in your controller, make sure you correctly assign the status using .includes() instead of .contains(), like this: self.clientStatus = self.filesToUploadClientStatus.includes(WAITING_FOR_UPLOAD) ? 'OK' : 'Error';.

lastly, in your HTML, use ng-class to conditionally apply the color classes based on the status, so the color updates automatically when the status changes.

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

79564734

Date: 2025-04-09 15:35:58
Score: 0.5
Natty:
Report link

Use dummy credentials since you are running it locally, the credentials won't be used..

var credentials = new BasicAWSCredentials("fakeMyKeyId", "fakeSecretAccessKey");

Initialize the client and pass the credentials like this:

var client = new AmazonDynamoDBClient(credentials, clientConfig);
Reasons:
  • Low length (0.5):
  • Has code block (-0.5):
  • Low reputation (0.5):
Posted by: Nneka

79564730

Date: 2025-04-09 15:32:57
Score: 2.5
Natty:
Report link

If those requests are made on the client-side, there is no 100% secure way to make sure that the one making the request is your React app.

And in case the JWT token is "stolen" and used on Postman to make request, What is the problem? All data must be validated on both ends, client and server, so there shouldn't be a difference between the React app and Postman doing it.

Any "API Token" you send to the a client (user browser) can be extracted by the user. See https://stackoverflow.com/a/57103663 about this

To make sure your API is only used by your app, all API request must be done server-side. That probably means using some kind of React Framework to do server side rendering.

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

79564726

Date: 2025-04-09 15:30:56
Score: 1
Natty:
Report link

Simple metaphor

Imagine a juice machine:

If you put in an orange, you always get the same juice → deterministic function (same input → same output).

If the machine only squeezes, without noise, without splashing, without polluting around → no edge effect → pure function.

If every time you can replace the machine with just an equivalent bottle of juice, without changing the rest of your kitchen → referential transparency.

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

79564724

Date: 2025-04-09 15:29:55
Score: 2.5
Natty:
Report link

Here's an example that demonstrates a working pattern for SSE-based MCP servers and standalone MCP clients that use tools from them.

https://github.com/sidharthrajaram/mcp-sse/tree/main

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

79564723

Date: 2025-04-09 15:28:55
Score: 0.5
Natty:
Report link

Setting the application property quarkus.native.auto-service-loader-registration=true worked for me.

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

79564722

Date: 2025-04-09 15:28:55
Score: 1
Natty:
Report link

I have written a blog post (and there is an accompanying Github repository with some examples) on this topic.

To address the issue you are facing, I defined a new helper (using kfunc) that does nothing. Then I use this helper function in the XDP program so that the MAP is associated with the program when the verifier is doing its pass. This avoids the error you are getting.

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

79564717

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

This implementation involves understanding state management, handling events in Konva, and manipulating shapes dynamically. Due to its complexity and many components, so it is better to discuss this in a detailed format. Good luck.

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

79564709

Date: 2025-04-09 15:21:53
Score: 4
Natty: 4
Report link

may i know if u found solution to this because im facing it right now...

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

79564708

Date: 2025-04-09 15:20:52
Score: 1.5
Natty:
Report link

Removing the configuration for a custom alembic_version schema

version_table_schema=target_schema

when configuring the context fixed the same issue on my end and removed the op.drop_table('alembic_version') from the upgrade() function.

If you want to have alembic_version stored in a custom schema, I'd recommend checking the recommended multi-tenancy guide for alembic as an option. This worked well in my case, though, my case is anyway that I want to implement multi-tenancy via separate schemas with alembic.

Reasons:
  • RegEx Blacklisted phrase (1): I want
  • Has code block (-0.5):
  • Low reputation (1):
Posted by: user30223717

79564707

Date: 2025-04-09 15:19:52
Score: 1.5
Natty:
Report link

try to set la.nl_pid = 0; when la.nl_pid = getpid(); this skb is not send to kernel,so not enty
rtnetlink_rcv_msg function,because netlink_is_kernel(sk) is false

    if (netlink_is_kernel(sk))
        return netlink_unicast_kernel(sk, skb, ssk);
Reasons:
  • Low length (0.5):
  • Has code block (-0.5):
  • Unregistered user (0.5):
  • Low reputation (1):
Posted by: s0xzordin

79564706

Date: 2025-04-09 15:19:52
Score: 1.5
Natty:
Report link

This was overwritten in my environment with volumesnapshot from the snapshot.storage API. Running kubectl api-resources | grep vs should show you what is using that particular short name.

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

79564698

Date: 2025-04-09 15:13:50
Score: 3
Natty:
Report link

I am answering my own question might be helpful for other. It was happening due to node.js version difference. I use lower version of node.js then it resolved.

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

79564686

Date: 2025-04-09 15:07:48
Score: 0.5
Natty:
Report link

As @Marek R mentions in comments, the issue is with using constexpr for the the variables is_contain_move_stream and is_contain_compute_stream. For simple fix you can just use const instead. The variable result in main will still be computed at compile time.

The reason is that constexpr functions don't have to be called at compile time. If their arguments are not known at compile time, they behave in the same way as any other function. That is why you can't store the function argument in constexpr variable. The function needs to be valid both in constexpr and at runtime.

Another way to look at this problem is that the argument is not marked constexpr so it cannot be stored in constexpr variable (const and constexpr are very different). Function arguments cannot be marked as constexpr.

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

79564684

Date: 2025-04-09 15:07:48
Score: 1.5
Natty:
Report link

i cleared the issue by

echo "18.7.1" > .nvrmc

nvm use

nvm alias default 18.7.1

now node -v gives 18.7.1

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

79564679

Date: 2025-04-09 15:04:48
Score: 1.5
Natty:
Report link

If you want a specific error handling, then this is what I recommend:

Sub RefreshConnectionsWithErrorHandler()
    Dim cn As WorkbookConnection
    Dim isPowerQueryConnection As Boolean
    Dim errMsg As String

    On Error GoTo ErrorHandler  ' Enable error handling for the entire sub

    ' Loop through all connections
    For Each cn In ActiveWorkbook.Connections
        isPowerQueryConnection = InStr(1, cn.OLEDBConnection.Connection, "Provider=Microsoft.Mashup.OleDb.1") > 0
        
        ' Refresh each connection
        If isPowerQueryConnection Then
            cn.OLEDBConnection.BackgroundQuery = False ' Disable background refresh for better error visibility
            
            On Error Resume Next ' temporarily ignore errors within the single connection refresh
            cn.Refresh
             On Error GoTo ErrorHandler ' re-enable normal error handling
            
            ' Check for an error condition by checking if the connection was successfully refreshed.
             If Err.Number <> 0 Then
                errMsg = "Error refreshing connection '" & cn.Name & "': " & Err.Description
                Debug.Print errMsg
            Else
                Debug.Print "Connection '" & cn.Name & "' refreshed successfully."
            End If

            Err.Clear ' Clear the error, so you do not get the same error for multiple connections.
        Else
             Debug.Print "Skipping non Power Query connection: " & cn.Name
        End If
    Next cn

    MsgBox "All connections processed. Check the Immediate Window for details.", vbInformation
    Exit Sub

ErrorHandler:
    ' Handle general errors
    MsgBox "An unexpected error occurred during refresh. Error: " & Err.Description, vbCritical
End Sub

Error Checking and Handling:

Reasons:
  • Long answer (-1):
  • Has code block (-0.5):
  • Me too answer (2.5): get the same error
  • Low reputation (0.5):
Posted by: user80346

79564668

Date: 2025-04-09 14:59:47
Score: 2.5
Natty:
Report link

I encountered a similar issue while using an external monitor. To resolve it, simply rotate the emulator to landscape mode and then back to portrait mode. This quick action should effectively fix the problem.

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

79564664

Date: 2025-04-09 14:55:45
Score: 1
Natty:
Report link

PostgreSQL will send you 1000 times "a". It doesn't have a client part! The client is your application. Between them is the ORM, the database components, and the DATABASE driver. If you are a pgAdmin who wrote a request and received 1000 lines, then your application will receive the same 1000 lines through the above objects with such a request from the application. Query optimization is your task. And the fact that the database can compress the received data depends on the objects through which the program works with your application. But it will compress the same 1000 lines that the database server will give it.

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

79564661

Date: 2025-04-09 14:53:45
Score: 3
Natty:
Report link

I don´t think json is a supported mimi type. But it supports XML, you can convert json to XML and change the mime type to XML

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

79564654

Date: 2025-04-09 14:50:44
Score: 1.5
Natty:
Report link

I have figured it out. It can be done like this:

const serviceHandler = defineFunction({
  entry: './service_call/handler.ts',
  timeoutSeconds: 30
})
Reasons:
  • Low length (1):
  • Has code block (-0.5):
  • Self-answer (0.5):
  • Low reputation (0.5):
Posted by: Deil

79564652

Date: 2025-04-09 14:50:44
Score: 2
Natty:
Report link

For solve your issue you have to do this

<Tabs
....
tabBarButton: (props) => <Pressable {...props}  android_ripple={null}/>
>
 

android_ripple={null} makes the magic

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

79564650

Date: 2025-04-09 14:50:44
Score: 4
Natty: 5
Report link

Esse problema parece ser no próprio Android Studio, pois já fiz todos passo citados acima e outros e mesmo assim não funciona, continua com o mesmo erro.

Reasons:
  • Blacklisted phrase (1): não
  • Low length (1):
  • No code block (0.5):
  • Single line (0.5):
  • Low reputation (1):
Posted by: Aldemir Gomes

79564649

Date: 2025-04-09 14:49:43
Score: 2
Natty:
Report link

The above explanation is great, one point to stress is that each table entry contains all of the page address (except for the bits that don't matter, either because physical address space is much smaller than virtual address space, or because they are inside the page, so they don't need translation)
so we use the bits that "don't matter" for other things, and every entry contains a page address.

Reasons:
  • No code block (0.5):
  • Unregistered user (0.5):
  • Low reputation (1):
Posted by: Dave from the other side

79564641

Date: 2025-04-09 14:47:43
Score: 1
Natty:
Report link

Make every character in its own scene. Then, right click each character scene and copy the node path. You can then instantiate the selected player.

var player1 : string = "res:\\path.tscn"
func _ready() -> void:
    player = player1.instantiate()
    add_child(player)
Reasons:
  • Low length (0.5):
  • Has code block (-0.5):
  • Low reputation (1):
Posted by: mr-chen-rui

79564640

Date: 2025-04-09 14:46:42
Score: 4.5
Natty:
Report link

How about trying this configuration? I hope it can help you

enter image description here

Reasons:
  • Whitelisted phrase (-1): hope it can help
  • Probably link only (1):
  • Low length (1.5):
  • No code block (0.5):
  • Contains question mark (0.5):
  • Single line (0.5):
  • Starts with a question (0.5): How
  • Low reputation (1):
Posted by: love-moon

79564626

Date: 2025-04-09 14:41:40
Score: 1
Natty:
Report link

The JS file might be running from the extension's absolute path. If that's the case, maybe

chrome.tabs.executeScript(null, { file: 'js/content.js' });

will work better.

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

79564622

Date: 2025-04-09 14:39:40
Score: 1.5
Natty:
Report link

You can change the scale settings on your Windows PC to whatever you prefer by going to System > Display. This will affect the appearance of Visual Studio as well as the entire Windows interface. Hope this helps!

Reasons:
  • Whitelisted phrase (-1): Hope this helps
  • Low length (0.5):
  • No code block (0.5):
  • Single line (0.5):
  • Low reputation (1):
Posted by: David Waligora

79564621

Date: 2025-04-09 14:38:39
Score: 1
Natty:
Report link

You're missing faQrcode in your main.js. Just add it like this:

js

import{ faUserSecret, faQrcode } from '@fortawesome/free-solid-svg-icons'; library.add(faUserSecret, faQrcode);

Now, your component will work:

vue

<font-awesome-icon icon="fa-solid fa-qrcode" />

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

79564599

Date: 2025-04-09 14:30:37
Score: 0.5
Natty:
Report link

My solution to this problem is to make a singleton service, and have that reach into the clients [session storage, local storage, cookies, whatever], perhaps applying a timeout, depending on the lifetime you need.

The singleton service is mostly just a dictionary. When you want some dat , it looks up a guid key which is in the client storage you elected.

This approach works the same on all Blazor modes and is resistant to page refreshes and lost connections, depending on your client GUID storage mechanism. It also doesn't require you to store data in the browser other than that GUID.

Of course, this is only for transient data storage. Its main benefit is to get around the issue of lots of "scoped" instances.

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

79564588

Date: 2025-04-09 14:23:36
Score: 2.5
Natty:
Report link

Found the bug...

The CertMapping.Subject should include the actual Subject CN of the client certificate, and not the fingerprint.

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

79564584

Date: 2025-04-09 14:22:36
Score: 2.5
Natty:
Report link

Проверь коэффициенты перевода единиц:

Reasons:
  • Long answer (-0.5):
  • Has code block (-0.5):
  • No latin characters (2.5):
  • Low reputation (1):
Posted by: Damir

79564579

Date: 2025-04-09 14:19:35
Score: 3.5
Natty:
Report link

Please open your eclipse application as Run as administrator and it will fix the issue.

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

79564570

Date: 2025-04-09 14:17:33
Score: 6 🚩
Natty:
Report link

I’m actually facing the same issue — in my case, the Snackbar message never appears on the screen at all. I reached out to the BrowserStack team regarding this, but unfortunately, I haven’t received any concrete or helpful feedback so far. :(

Reasons:
  • Blacklisted phrase (1): :(
  • Low length (0.5):
  • No code block (0.5):
  • Me too answer (2.5): facing the same issue
  • Single line (0.5):
  • Low reputation (1):
Posted by: Nurullah

79564563

Date: 2025-04-09 14:16:32
Score: 12
Natty: 8
Report link

I have the same problem, do you have a possible solution for this?

Reasons:
  • Blacklisted phrase (1): I have the same problem
  • RegEx Blacklisted phrase (2.5): do you have a
  • Low length (1.5):
  • No code block (0.5):
  • Me too answer (2.5): I have the same problem
  • Ends in question mark (2):
  • Unregistered user (0.5):
  • Single line (0.5):
  • Low reputation (1):
Posted by: Mylan

79564556

Date: 2025-04-09 14:12:32
Score: 1
Natty:
Report link

FOR .NET CORE ADD:

Encoding.RegisterProvider(CodePagesEncodingProvider.Instance);

EDIT:

else if (!ignorable)
{
    int c = Int32.Parse(hex, System.Globalization.NumberStyles.HexNumber);
    //outList.Add(Char.ConvertFromUtf32(c));
    Encoding encoding = Encoding.GetEncoding("windows-1251");
    outList.Add(encoding.GetString([(byte)c]));
}
Reasons:
  • Has code block (-0.5):
  • Unregistered user (0.5):
  • Low reputation (1):
Posted by: user30223093

79564554

Date: 2025-04-09 14:11:31
Score: 1.5
Natty:
Report link

Just press Windows + Break to see your device specifications, including processor info.

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

79564538

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

There are a couple of ways to show Jenkins build status on a GitHub repository:

  1. Using Jenkins’ embeddable build status badge

  2. Using GitHub Actions to trigger Jenkins builds and update commit status

This tutorial properly explains how to show the Jenkins build status using these two methods: https://www.baeldung.com/ops/jenkins-build-status-github

Reasons:
  • Blacklisted phrase (1): This tutorial
  • Low length (0.5):
  • No code block (0.5):
  • Low reputation (1):
Posted by: David Chibueze Ndubuisi

79564536

Date: 2025-04-09 14:03:28
Score: 4.5
Natty:
Report link

PLEASE STOP SPAMMING/BEING ANNOYING

Reasons:
  • Low length (2):
  • No code block (0.5):
  • Has no white space (0.5):
  • Single line (0.5):
  • Low reputation (1):
Posted by: TH3KINGOFHYRULE

79564535

Date: 2025-04-09 14:03:28
Score: 1.5
Natty:
Report link

Besides difflib, descripted above, I also use bindiff

./bindiff.py file1 file2
Reasons:
  • Low length (1.5):
  • Has code block (-0.5):
  • Low reputation (0.5):
Posted by: poisoned_monkey

79564525

Date: 2025-04-09 14:00:28
Score: 1
Natty:
Report link

try with CSS Selector

search = driver.find_element(By.CSS_SELECTOR, '[aria-label="Search"]')
search.click()

in XPath you may to have too many interactions with other paths which can be dynamically

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

79564514

Date: 2025-04-09 13:54:26
Score: 1.5
Natty:
Report link

I'm struggling this problem. the credential retrieve data of the owner of that private key. i think the solution is stop using flutter for this and done it at the backend(node.js) and fetch to the app

Reasons:
  • Whitelisted phrase (-1): solution is
  • Low length (0.5):
  • No code block (0.5):
  • Single line (0.5):
  • Low reputation (1):
Posted by: Habtamu Worku

79564505

Date: 2025-04-09 13:50:25
Score: 3
Natty:
Report link

There is quite a nice cheat sheet on migrating from System.Data.SqlClient to Microsoft.Data.SqlClient
here that hopefully explains the change :
https://github.com/dotnet/SqlClient/blob/main/porting-cheat-sheet.md#functionality-changes

Relevant part is below:
enter image description here

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

79564503

Date: 2025-04-09 13:49:25
Score: 1
Natty:
Report link

For Question 1,

Microsoft.Data.SqlClient enforces stricter security defaults compared to System.Data.SqlClient.

System.Data.SqlClient silently skips some SSL/TLS validation scenarios while Microsoft.Data.SqlClient requires trusted certificates by default, and if your SQL Server is using a self-signed or internal certificate that isn’t trusted by your client machine, it throws exactly this error.

For Question 2, Add TrustServerCertificate=true; in your connection string.

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

79564494

Date: 2025-04-09 13:46:24
Score: 3
Natty:
Report link
header 1 header 2
cell 1 cell 2
cell 3 cell 4
Reasons:
  • Low length (1.5):
  • No code block (0.5):
  • Low reputation (1):
Posted by: نوح عايد صالح الرشيدي

79564492

Date: 2025-04-09 13:45:24
Score: 3.5
Natty:
Report link

Apologies for the delay in responding. Thanks for the suggestions. After some additional thought and testing I decided ansible may not be the right tool for the job but I now have some additional approaches I can consider for future projects. Thanks again

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

79564490

Date: 2025-04-09 13:44:23
Score: 2.5
Natty:
Report link

I encountered a similar issue while using an external monitor. To resolve it, simply rotate the emulator to landscape mode and then back to portrait mode. This quick action should effectively fix the problem.

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

79564489

Date: 2025-04-09 13:44:23
Score: 1.5
Natty:
Report link

import shutil

# Move the uploaded video and logo to a working directory

video_src = "/mnt/data/765449673.178876.mp4"

logo_src = "/mnt/data/S__13918214.jpg"

video_dst = "/mnt/data/flowerpower_video.mp4"

logo_dst = "/mnt/data/flowerpower_logo.jpg"

shutil.copy(video_src, video_dst)

shutil.copy(logo_src, logo_dst)

video_dst, logo_dst

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

79564487

Date: 2025-04-09 13:44:23
Score: 2.5
Natty:
Report link

Maybe permission and port select hand, repost and script below. stackoverflow.com

developer.mozilla.org

chrome js serial port manual

<button id="connect" >Connect</button>

<script>

document.getElementById("connect").onclick = async () => {

  const port = await navigator.serial.requestPort();
  await port.open({ baudRate: 9600 }); 
  console.log("Hello World");

};
</script>
Reasons:
  • Blacklisted phrase (1): stackoverflow
  • Probably link only (1):
  • Has code block (-0.5):
  • Low reputation (1):
Posted by: cody toy

79564483

Date: 2025-04-09 13:42:23
Score: 1
Natty:
Report link

I haven't looked at C code in ages, but I think

int arr[n];

is wrong. Space for local variables is allocated at the start of the function, and at that point the value of n isn't available yet (could be 0, could be something else). You need to malloc() this array, that should fix it.

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

79564475

Date: 2025-04-09 13:38:22
Score: 1
Natty:
Report link

You can suppress this error by adding to the project .editorconfig

[*.cs]
dotnet_analyzer_diagnostic.category-MicrosoftCodeAnalysisReleaseTracking.severity = none
Reasons:
  • Low length (1):
  • Has code block (-0.5):
  • Low reputation (0.5):
Posted by: Alexander Brattsev

79564474

Date: 2025-04-09 13:38:21
Score: 8
Natty: 7
Report link

I'm currently experiencing the same issue.

Did you manage to find the answer?

Reasons:
  • RegEx Blacklisted phrase (3): Did you manage to find the answer
  • Low length (1.5):
  • No code block (0.5):
  • Ends in question mark (2):
  • Low reputation (1):
Posted by: Priscila de Oliveira

79564465

Date: 2025-04-09 13:35:20
Score: 1
Natty:
Report link

You can use a Panchang API that returns tithi, nakshatra, yoga, and karana based on the selected date. One option: Panchang API. Just call the API with the date and update your UI with the response.

Reasons:
  • Whitelisted phrase (-1.5): You can use
  • Low length (0.5):
  • No code block (0.5):
  • Single line (0.5):
  • Low reputation (1):
Posted by: Dinesh Gahlot

79564464

Date: 2025-04-09 13:34:19
Score: 4.5
Natty: 6.5
Report link

Not an answer but I am curious if you were able to find a good solution, I would be very intereted to know, thank you!

Reasons:
  • Blacklisted phrase (0.5): thank you
  • Blacklisted phrase (1): Not an answer
  • Low length (1):
  • No code block (0.5):
  • Single line (0.5):
  • Low reputation (1):
Posted by: seameetsocean

79564460

Date: 2025-04-09 13:33:18
Score: 13.5 🚩
Natty: 5.5
Report link

I have the same error now, did u find the fix?

Reasons:
  • RegEx Blacklisted phrase (3): did u find the fix
  • RegEx Blacklisted phrase (1.5): fix?
  • RegEx Blacklisted phrase (1): I have the same error
  • Low length (1.5):
  • No code block (0.5):
  • Me too answer (2.5): I have the same error
  • Ends in question mark (2):
  • Single line (0.5):
  • Low reputation (1):
Posted by: Shabeshvaran S

79564459

Date: 2025-04-09 13:32:18
Score: 1
Natty:
Report link
Check it out , if you have build.gradle.kts,

allprojects {
    repositories {
        google()
        mavenCentral()
    }

    subprojects {
        afterEvaluate {
            if (plugins.hasPlugin("com.android.library")) {
                extensions.configure<com.android.build.gradle.LibraryExtension>("android") {
                    if (namespace == null) {
                        namespace = group.toString()
                    }
                }
            }
        }
    }
}
Reasons:
  • Blacklisted phrase (0.5): Check it out
  • Has code block (-0.5):
  • Low reputation (1):
Posted by: kh1amirhamza

79564451

Date: 2025-04-09 13:28:17
Score: 2
Natty:
Report link

So looks like settings the `shortTitle` parameter for the `AppShortcut` changes the layout to the icon-based one the other apps are using. Couldn't find anything in the documentation, but got the idea from [this answer](https://stackoverflow.com/a/79061684/709835).

Reasons:
  • Blacklisted phrase (1): stackoverflow
  • Low length (0.5):
  • No code block (0.5):
  • Self-answer (0.5):
  • Single line (0.5):
  • High reputation (-1):
Posted by: Micky

79564449

Date: 2025-04-09 13:28:17
Score: 0.5
Natty:
Report link

As far as the Linux kernel scheduler is concerned (v6.14), migration_cpu_stop running on a source cpu calls move_queued_task which grabs the runqueue lock on the destination cpu.

Releasing this lock pairs with acquiring the runqueue lock by the scheduler on the destination cpu. It acts as a release-acquire semi-permeable memory ordering to order prior memory accesses from the source CPU before the following memory accesses on the destination CPU.

Note that in addition to the migration case, the membarrier system call has even stricter requirements on memory ordering, and requires memory barriers near the beginning and end of scheduling. Those can be found as smp_mb__after_spinlock() early in __schedule(), and within mmdrop_lazy_tlb_sched() called from finish_task_switch().

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

79564444

Date: 2025-04-09 13:24:15
Score: 3
Natty:
Report link

Thanks so much. Spared me either ugly code or a lot of time. :-) This reminds me Forrest Gump quote - "devops life is full of MS bugs. You just never know, what kind of nonsence you pull."

Reasons:
  • Blacklisted phrase (0.5): Thanks
  • Low length (0.5):
  • No code block (0.5):
  • Single line (0.5):
  • Low reputation (1):
Posted by: four mofo

79564443

Date: 2025-04-09 13:24:15
Score: 3
Natty:
Report link

ul#the-list { padding-left: 0 !important; }

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

79564438

Date: 2025-04-09 13:22:15
Score: 3
Natty:
Report link

A custom shader can produce the effect.

Here I found an example of how BlurGradient can be achieved in rn skia.

The effect is really nice so I also tried make one on snack, which may be more similar to the effect you want.

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

79564434

Date: 2025-04-09 13:19:14
Score: 0.5
Natty:
Report link

Another way:

test_list = ['one', 'two', None]    
res = [i or 'None' for i in test_list]

Even better if you're working with numbers, since int(None) gives an error:

test_list = [1, 2, None]    
res = [i or 0 for i in test_list]
Reasons:
  • Low length (0.5):
  • Has code block (-0.5):
  • Low reputation (0.5):
Posted by: DonLarry

79564425

Date: 2025-04-09 13:14:13
Score: 1
Natty:
Report link

For your mixin to work, it should be called like this:

.panel-light {
  .sec;
  background-color: transparent;
}

So Your Corrected Code Should Be:

.sec {
  border: solid 1px black;
  border-radius: 10px;
  padding: 10px;
  margin-bottom: 10px;
}

.panel-light {
  .sec;
  background-color: transparent;
}
Reasons:
  • Low length (0.5):
  • Has code block (-0.5):
  • Low reputation (1):
Posted by: Omprakash S

79564424

Date: 2025-04-09 13:14:13
Score: 3.5
Natty:
Report link

I had to update VSCode and change my "eslint.config.js" file to "eslint.config.mjs"

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

79564421

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

I had the exact same problem, running Flink version 1.19.1.

This is due to a bug in the python Flink library. In flink-connector-jdbc v3.1, the JdbcOutputFormat was renamed to RowJdbcOutputFormat. This change has up till now not been implemented in the python Flink library.

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

79564420

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

You can exclude your job from sidecar injection by adding the annotation:

annotations:
  sidecar.istio.io/inject: "false"

Or, if you need the job inside mesh - you can add ServiceEntry and DestinationRule which will allow traffic to 10.96.0.1:443

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

79564417

Date: 2025-04-09 13:12:11
Score: 11.5 🚩
Natty: 6.5
Report link

did you manage to make it work? I'm stuck with the same issue

Reasons:
  • RegEx Blacklisted phrase (1.5): I'm stuck
  • RegEx Blacklisted phrase (3): did you manage to
  • Low length (1.5):
  • No code block (0.5):
  • Me too answer (2.5): I'm stuck with the same issue
  • Contains question mark (0.5):
  • Single line (0.5):
  • Starts with a question (0.5): did you
  • Low reputation (1):
Posted by: JohnnyElvis

79564413

Date: 2025-04-09 13:08:10
Score: 1
Natty:
Report link

Try to use brackets

- it: annotations validation
    asserts:
      - equal:
          path: metadata.annotations["helm.sh/hook"]
          pattern: pre-upgrade
Reasons:
  • Low length (1):
  • Has code block (-0.5):
  • Low reputation (0.5):
Posted by: poisoned_monkey

79564411

Date: 2025-04-09 13:07:09
Score: 2
Natty:
Report link

you can use external id as web.basic_layout in t t-call section

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

79564409

Date: 2025-04-09 13:07:09
Score: 4.5
Natty:
Report link

Thanks to @bbhtt over on Flatpak Matrix. He said I should use org.gnome.Platform and org.gnome.Sdk rather than the freedesktop runtimes because they already have Gtk installed.

Reasons:
  • Blacklisted phrase (0.5): Thanks
  • Low length (1):
  • No code block (0.5):
  • User mentioned (1): @bbhtt
  • Self-answer (0.5):
  • Single line (0.5):
  • Low reputation (0.5):
Posted by: CraigFoote

79564406

Date: 2025-04-09 13:06:09
Score: 3
Natty:
Report link

You can't use scrollvieuw outside grid, put it inside the grid, there is plenty documentation about this.

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