79808344

Date: 2025-11-03 21:53:59
Score: 1.5
Natty:
Report link

This is not the same as this similar question Can I get an image digest without downloading the image?. That question gets the digest using a network query. This question is about analyzing the locally stored file.

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

79808335

Date: 2025-11-03 21:39:56
Score: 3.5
Natty:
Report link

Anyone got registry settings to stick for server 2025? For a workgroup server, I have tried lgpo.exe, reg.exe and secedit.exe and in about 1-2h, it reverts back to MS defaults, which I cannot use.

Reasons:
  • Blacklisted phrase (0.5): I cannot
  • Low length (0.5):
  • No code block (0.5):
  • Contains question mark (0.5):
  • Single line (0.5):
  • Low reputation (1):
Posted by: Joe Bruns

79808333

Date: 2025-11-03 21:38:56
Score: 3.5
Natty:
Report link

"🎰 Sekali main, langsung ketagihan. Karena di JO777, tiap putaran penuh kejutan elegan."

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

79808325

Date: 2025-11-03 21:22:52
Score: 0.5
Natty:
Report link

Envers might use the stable ValueObject.id as the primary identifier to track changes, completely bypassing the composite key issue with @ElementCollection

@Entity
@Audited
class ValueObject {
    @Id
    @GeneratedValue(strategy = GenerationType.IDENTITY)
    private Long id;
    
    private String propertyA;
    private Integer propertyB;
}

@Entity
@Audited
class ParentEntity {
    @Id
    private Long id;

    @OneToMany(cascade = CascadeType.ALL, orphanRemoval = true)
    @JoinColumn(name = "parent_id")
    @OrderColumn(name = "position")
    private List<ValueObject> values = new ArrayList<>();
}

Changed @Embeddable to @Entity

Added @GeneratedValue

Changed @ElementCollection to @OneToMany

Reasons:
  • Long answer (-0.5):
  • Has code block (-0.5):
  • User mentioned (1): @ElementCollectionChanged
  • User mentioned (0): @Embeddable
  • User mentioned (0): @Entity
  • User mentioned (0): @GeneratedValue
  • User mentioned (0): @ElementCollection
  • User mentioned (0): @OneToMany
  • Low reputation (0.5):
Posted by: Max

79808324

Date: 2025-11-03 21:22:52
Score: 3
Natty:
Report link

In the wrangler we have set column name options above the output schema right corner. Click on set column and you can give the column name as per standard naming convention with comma separated. Only make sure number of columns in input should match with number of columns in output.

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

79808323

Date: 2025-11-03 21:19:52
Score: 0.5
Natty:
Report link

I had the same issue with a new SSL certificate renewed on ssls.com

Our app no longer functions on Android 13 when REST API requests are in use, and embedded browsing is also broken.

I managed to solve it by contacting ssls.com support and they told me to start renewing the certificate, but don't enter the verification code in Sectigo's form. Meanwhile they contacted Sectigo and they provided files with a correct ca-bundle file in it. Then I finished the verification as usual, got the Zip file with the certificate files and created the PFX file from them, also embedding the ca-bundle file via openssl command line. (This was a new step for me.

With this fixed certificate (and bundle) everything works on Android 13 and earlier versions. Let's hope they will fix this issue soon on Sectigo's end, but at least there is a workaround that Support may be able to provide.

Reasons:
  • Whitelisted phrase (-1): I had the same
  • Long answer (-0.5):
  • No code block (0.5):
  • Unregistered user (0.5):
  • Low reputation (1):
Posted by: Peter Tihanyi

79808317

Date: 2025-11-03 21:04:49
Score: 1.5
Natty:
Report link

-keep class org.spongycastle.** { *; }

-dontwarn org.spongycastle.**

-keep class com.gemalto.** { *; }

-keep,includedescriptorclasses class org.bouncycastle.** { *; }

-dontnote sun.java2d.cmm.kcms.KcmsServiceProvider

-dontwarn com.gemalto.jp2.**

-dontwarn com.tom_roush.pdfbox.filter.JPXFilter

https://github.com/TomRoush/PdfBox-Android/issues/584

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

79808312

Date: 2025-11-03 20:58:47
Score: 3.5
Natty:
Report link

You are executing initialization code in the withHooks feature: https://ngrx.io/guide/signals/signal-store/lifecycle-hooks

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

79808309

Date: 2025-11-03 20:51:45
Score: 1.5
Natty:
Report link

Have you tried to exclude the MongoHealthContributorAutoConfiguration in your main application class?

@SpringBootApplication(
    exclude = {  org.springframework.boot.actuate.autoconfigure.data.mongo.MongoHealthContributorAutoConfiguration.class
    }
)
public class YourApplication {
    
}
Reasons:
  • Whitelisted phrase (-1): Have you tried
  • Low length (0.5):
  • Has code block (-0.5):
  • Ends in question mark (2):
  • Low reputation (0.5):
Posted by: Max

79808306

Date: 2025-11-03 20:49:45
Score: 1.5
Natty:
Report link

Image of ui hii i was working on a similar thing with electron i wrote a shell script to run automatically when the app starts, this enables me to find out the hardware specs of the pc that my app is currently running on, with the output from the script, i pass it to the front end and update the ui

so in short :

Reasons:
  • No code block (0.5):
  • Low reputation (1):
Posted by: Ibrahim Rayamah

79808304

Date: 2025-11-03 20:47:44
Score: 2
Natty:
Report link

If it is just converted the df into html table then I agree. Use to_html(formattrers=list[callable])

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

79808297

Date: 2025-11-03 20:43:43
Score: 1.5
Natty:
Report link

I believe this Medium post is what you need. It's incredible

https://medium.com/@hell-io/a-great-migration-transfer-your-ios-app-without-losing-firebase-users-91252c431acf

Reasons:
  • Blacklisted phrase (0.5): medium.com
  • Probably link only (1):
  • Low length (1.5):
  • No code block (0.5):
  • High reputation (-2):
Posted by: Oded Ben Dov

79808294

Date: 2025-11-03 20:41:42
Score: 3.5
Natty:
Report link

This is what I was looking for! And the tool you mentioned is super helpful. Thank you so much!

Reasons:
  • Blacklisted phrase (0.5): Thank you
  • Low length (1):
  • No code block (0.5):
  • Self-answer (0.5):
  • Single line (0.5):
  • Low reputation (0.5):
Posted by: Harsh patel

79808284

Date: 2025-11-03 20:35:41
Score: 2.5
Natty:
Report link

I have seen many answers, including the basics such as installing the extension, but none of them mentioned that you also need to include the following in your global or App CSS file:

@import "tailwindcss";

@import "tw-animate-css";

Reasons:
  • Low length (0.5):
  • No code block (0.5):
  • User mentioned (1): @import
  • User mentioned (0): @import
  • Low reputation (0.5):
Posted by: SweetEagle5o4

79808280

Date: 2025-11-03 20:31:40
Score: 3
Natty:
Report link

Try VITE. You never have to spend a minute of your time doing version control. I use VITE for my website rmlives.com.

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

79808271

Date: 2025-11-03 20:16:36
Score: 3
Natty:
Report link

FWIW, below are the changes I did in my Dockerfile to get LogMonitor.exe dialed in. I did configure LogMonitorConfig.json to show as well some of the Windows Event Log information and I do see them in the containers' logs.

enter image description here

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

79808270

Date: 2025-11-03 20:16:36
Score: 0.5
Natty:
Report link

If you are using app_links, please try to edit AndroidManifest.xml file (android/app/src/main/AndroidManifest.xml) by adding the following metadata tag and intent filter inside the tag with .MainActivity

<meta-data android:name="flutter_deeplinking_enabled" android:value="false" />

More details can be found here

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

79808269

Date: 2025-11-03 20:15:36
Score: 2
Natty:
Report link

I think you should just delete the database and re-create it. As you (or the docs) said, purge is limited to the indexeddb adapter and is not intended for regular deletion, so it's unreliable for a full restore.

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

79808268

Date: 2025-11-03 20:13:36
Score: 2.5
Natty:
Report link

See https://github.com/iced-rs/iced/pull/3099 . It will build for Android, but it still gets runtime errors. Starting with:

An `AndroidApp` as passed to android_main() is required to create an `EventLoop` on Android`
Reasons:
  • Probably link only (1):
  • Low length (1):
  • Has code block (-0.5):
  • Low reputation (1):
Posted by: dcampbell24

79808265

Date: 2025-11-03 20:09:35
Score: 3
Natty:
Report link

I'm facing a similar issue. The problem is that when building a bundle, all unnecessary localizations are stripped from the app, unlike when building an APK. To fix this, use the following code in your build.gradle.

bundle
{
    language { enableSplit false }
}

Reasons:
  • Low length (0.5):
  • Has code block (-0.5):
  • Me too answer (2.5): I'm facing a similar issue
  • Low reputation (0.5):
Posted by: D.D.M.

79808260

Date: 2025-11-03 20:07:34
Score: 2
Natty:
Report link

I have been trying to achieve the same thing with MediaRecorder.pause and .resume
Once I get a phone call I pause the recording and resume when the phone is in IDLE state according to the TelephonyManager. But it doesn't seem to resume the recording and the recording stop abruptly without throwing any error.

Reasons:
  • Low length (0.5):
  • No code block (0.5):
  • Low reputation (1):
Posted by: dr.apk

79808257

Date: 2025-11-03 20:02:32
Score: 3.5
Natty:
Report link

The problem is that chrome uses the V8 engine and firefox uses SpiderMonkey

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

79808246

Date: 2025-11-03 19:43:28
Score: 0.5
Natty:
Report link

My app started failing recently. I have not been able to get it to work again using the solutions found in the comments on this post. My app has been running without problem for over five years.

Adding these to the YTPlayer vars solved the Error 153
origin: 'https://www.youtube.com',
widget_referrer: 'https://www.youtube.com'

But, the video does not play. The message An error occurred. Please try again later. (Playback ID: l3D74od3j9GXjKY-) is displayed. I right-clicked on the WebView2 display and then clicked debug info. The JSON below was displayed.
"api.invalidparam" and "invalidVideodata.1;a6s.1" indicate a problem but I don't have any idea what else to change.

{ "vct": "0.000", "vd": "NaN", "vpl": "", "vbu": "", "vbs": "", "vpa": "1", "vsk": "0", "ven": "0", "vpr": "1", "vrs": "0", "vns": "0", "vec": "null", "vemsg": "", "vvol": "1", "vdom": "1", "vsrc": "0", "vw": "0", "vh": "0", "dvf": 0, "tvf": 0, "state": "80", "debug_error": "{\"errorCode\":\"api.invalidparam\",\"errorMessage\":\"An error occurred. Please try again later.\",\"gN\":\"GENERIC_WITHOUT_LINK\",\"UY\":\"\",\"hf\":\"invalidVideodata.1;a6s.1\",\"QM\":2,\"cpn\":\"Mk4qbbDE9eZ6_uIk\"}", "relative_loudness": "NaN", "user_qual": 0, "release_version": "youtube.player.web_20251029_15_RC00", "0sz": "true", "op": "", "yof": "true", "dis": "", "gpu": "ANGLE_(Intel,_Intel(R)_UHD_Graphics_(0x00009A60)_Direct3D11_vs_5_0_ps_5_0,_D3D11)", "js": "/s/player/e237d4c5/player_ias.vflset/en_US/base.js", "debug_playbackQuality": "unknown", "debug_date": "Mon Nov 03 2025 13:12:54 GMT-0500 (Eastern Standard Time)", "origin": "https://www.youtube.com", "timestamp": 1762193574713 }

It is a Windows app that uses (.NET and WebView2). The app passes the HTML via string containing the YTPlayer JavaScript to the WebView2 API using WebView.NavigateToString(HTMLText);

Sample contents of the HTMLText string passed to WebView2:
Added to original HTMLText as a result of comments in this post:
<meta name='referrer' content='strict-origin-when-cross-origin'>
origin: 'https://www.youtube.com',
widget_referrer: 'https://www.youtube.com

<!doctype html>
<html lang='en'>
<head>
<title>YouTube Player</title>
<meta charset='UTF-8'>
<meta name='robots' content='none,noarchive,noindex,nofollow,nosnippet,noimageindex,unavailable_after: 01 Jan 2010 01:00:00 PST'>
<meta name='googlebot' content='noarchive,noindex,nofollow,nosnippet,noimageindex,unavailable_after: 01 Jan 2010 01:00:00 PST'>
<meta name='referrer' content='strict-origin-when-cross-origin'>
<style>
.video-container {position:relative;padding-bottom:56.25%;padding-top:0px;height:0;overflow:hidden;}
.video-container iframe, .video-container object, .video-container embed {position:absolute;top:0;left:0;width:100%;height:100%;}
</style>
</head>
<body>
<div class='video-container'><div id='ytplayer'></div></div>
<script>
var TheVID = ' The YouTube Video ID Godes Here';
var player;
var videoCount = 0;
var lastState = -1;
function SendMsg(msg) {
window.chrome.webview.postMessage(msg); // Send Message to program
}
function handlePaused() {
// If still paused after 10 seconds, send error and exit
if (lastState == YT.PlayerState.PAUSED) {
// Send error message to program
// Force a Navigation event
SendMsg('ERROR: YouTube ID=' + TheVID + ' paused unexpectedly. Exiting play.');
setTimeout(function(){window.location='about:blank';}, 5000); // Wait 5 seconds then exit
}
}
function onPlayerReady(event) {
if (TheVID.indexOf(',') > -1) {
var VIDList = TheVID.split(',');
videoCount = VIDList.length;
player.loadPlaylist(VIDList);
} else {
videoCount = 1;
player.loadVideoById(TheVID);
}
// Wait a bit. Supposed to AutoPlay but just in case it doesn't...tell it to play
setTimeout(function(){player.playVideo();}, 500);
}
window.onYouTubeIframeAPIReady = function() {
var vars = {enablejsapi: 1,
rel: 0, playsinline: 0, loop: 0, fs: 0, controls: 0,
autoplay: 1,
origin: 'https://www.youtube.com',
widget_referrer: 'https://www.youtube.com'
};
window.scrollbars.visible=false;
player = new YT.Player('ytplayer', {
playerVars: vars,
events: {
'onReady': onPlayerReady,
'onStateChange': function (event) {
if (event.data == YT.PlayerState.ENDED) {
videoCount = videoCount - 1;
if (videoCount == 0) {
// Force a Navigation event
window.location='about:blank';
}
}
if (event.data == YT.PlayerState.PAUSED) {
lastState = event.data;
SendMsg('WARNING: YouTube ID=' + TheVID + ' paused unexpectedly. Trying to resume playing.');
player.playVideo(); // Attempt to make it play again
setTimeout(handlePaused,10000); // Wait 10 seconds then check to see if play has resumed.
}
if (event.data == YT.PlayerState.PLAYING) {
lastState = event.data;
SendMsg('YouTube video is now playing.');
}
},
'onError': function (event) {
// Send error message to program
// Force a Navigation event to end the YouTube Player
var msg;
switch (event.data.toString()) {
case '2' :
msg=' The request contains an invalid parameter value (VideoID).';
break;
case '5' :
msg=' The requested content cannot be played in an HTML5 player or another error related to the HTML5 player has occurred.';
break;
case '100' :
msg=' The video requested was not found. This error occurs when a video has been removed (for any reason) or has been marked as private.';
break;
case '101' :
msg=' The owner of the requested video does not allow it to be played in embedded YouTube player';
break;
case '150' :
msg=' Allow Embedding not checked, Private checked or copyright claim prevents play in embedded YouTube player';
break;
default :
msg=' Error #' + event.data.toString();
break;
}
SendMsg('ERROR: YouTube ID=' + TheVID + ' ' + event.data.toString() + msg);
setTimeout(function(){window.location='about:blank';}, 5000); // Wait 5 seconds then exit
}
}
});
};
// Load the IFrame Player API code asynchronously.
var tag = document.createElement('script');
tag.src = 'https://www.youtube.com/iframe_api';
var firstScriptTag = document.getElementsByTagName('script')[0];
firstScriptTag.parentNode.insertBefore(tag, firstScriptTag);
//
// Replaces the 'ytplayer' element with an <iframe> and
// YouTube player after the API code downloads.
</script>
</body>
</html>

Reasons:
  • Blacklisted phrase (1): youtube.com
  • Long answer (-1):
  • Has code block (-0.5):
  • Low reputation (1):
Posted by: Mike Meinz

79808241

Date: 2025-11-03 19:37:27
Score: 0.5
Natty:
Report link

you can’t directly “animate” an SVG <filter> used as a CSS mask browsers don’t re-render filters unless something inside changes. So your <feTurbulence> is static by default.

The simple fix is to animate the baseFrequency in SVG, not in CSS. Like this:

<feTurbulence id="fogNoise" type="fractalNoise" baseFrequency="0.004" numOctaves="1" stitchTiles="stitch">
  <animate attributeName="baseFrequency" dur="8s" values="0.004;0.008;0.004" repeatCount="indefinite"/>
</feTurbulence>

Then reference that filter as your mask:

.page-heading::after {
  mask: url(#fogNoise);
  -webkit-mask: url(#fogNoise);
}

That’s it — the <animate> tag makes the noise “breathe” over time, giving you that subtle fog shimmer. No JS needed. Have a good day!

Reasons:
  • Blacklisted phrase (1): good day
  • Long answer (-0.5):
  • Has code block (-0.5):
  • Low reputation (0.5):
Posted by: Alex

79808234

Date: 2025-11-03 19:26:24
Score: 3.5
Natty:
Report link

you can read more about the feature from here

https://github.com/reactjs/rfcs/pull/229

Reasons:
  • Probably link only (1):
  • Low length (1.5):
  • No code block (0.5):
  • Low reputation (0.5):
Posted by: ahmad-g-mustafa

79808229

Date: 2025-11-03 19:16:22
Score: 0.5
Natty:
Report link

The sources are there so you can investigate yourself if you want

Reasons:
  • Low length (1.5):
  • No code block (0.5):
  • Single line (0.5):
  • High reputation (-2):
Posted by: Pepijn Kramer

79808223

Date: 2025-11-03 19:09:20
Score: 1
Natty:
Report link

According to the datasheet from your selected MCU (STM32F103C8T6) the device doesn't support the I2S interface. It supports only two normal SPI interfaces. You need a high-density device in the SM32F103xx series. STM32F103VG as an example, but it use a TQFP100 package.

Compatibility Source: STM32F103xx Datasheet

You can also see this in the STM32F103 product selector, that the STM32F103C8 doesn't supports I2S.

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

79808221

Date: 2025-11-03 19:09:20
Score: 2.5
Natty:
Report link

This image is a screenshot from the mobile game Garena Free Fire. The QR code shown is part of a game event or a viral trend where players scan codes to potentially receive in-game rewards, such as free diamonds.

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

79808206

Date: 2025-11-03 18:44:14
Score: 1
Natty:
Report link

Thanks, Donal.

So, I didnt code this globally. According to the doc, local vars are scoped to the connection, not the iRule. So I made 2 irules. A common one to be used by all of the virtual servers I specify, and then a very short one for each connection, that merely prefills the variables that the longer one uses. I set the one with the variable (config) definitions as higher priority. I define the variables in the CLIENT_ACCEPTED event, and dont have anything defined prior to this

I could have done it with procedures as well, but that seemed more complicated than just letting the scope of the local vars do their thing. Plus, if I did everything as procedures, that would mean all of the events would also be coded inside of my "definition" irule, so if I chose to add new events to the rules, id still have to go back and make a custom change to every single irule that is specific on a per-virtual-server basis.

I ran a half million calls through my above example with zero issues, so unless you can give me a reason not to, I'm going to do some production testing, as the way I've implemented to far gives me the most flexibility.

Reasons:
  • Blacklisted phrase (0.5): Thanks
  • Long answer (-1):
  • No code block (0.5):
  • Self-answer (0.5):
  • Low reputation (0.5):
Posted by: R. Smith

79808204

Date: 2025-11-03 18:43:14
Score: 2
Natty:
Report link

You can now simply use pip install psycopg[binary] and it'll install only the compiled libpq and psycopg without the build tools.

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

79808193

Date: 2025-11-03 18:30:11
Score: 0.5
Natty:
Report link

I would check the hardware. Try other kinds of computations on the node.

Reasons:
  • Low length (1.5):
  • No code block (0.5):
  • Single line (0.5):
  • High reputation (-2):
Posted by: Vladimir F Героям слава

79808189

Date: 2025-11-03 18:23:09
Score: 2.5
Natty:
Report link

Just use HTML CSS and JS and do it on a local folder. Run your html file in a webbrowser and it´s done.
Look some:
https://jcoimbras.blogspot.com/

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

79808188

Date: 2025-11-03 18:21:09
Score: 2
Natty:
Report link
getContainer={false}

This is will fix this issue

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

79808183

Date: 2025-11-03 18:18:08
Score: 1.5
Natty:
Report link

In my case the solution was:

# Sync CA bundle from webhook to CRD conversion webhook 

CA=$(kubectl get mutatingwebhookconfiguration opentelemetry-operator-eks-desenv-mutation \
  -o jsonpath='{.webhooks[0].clientConfig.caBundle}')  kubectl patch crd opentelemetrycollectors.opentelemetry.io --type=json \
  -p "[{\"op\":\"replace\",\"path\":\"/spec/conversion/webhook/clientConfig/caBundle\",\"value\":\"$CA\"}]"

Ref: https://github.com/open-telemetry/opentelemetry-operator/blob/main/docs/crd-changelog.md#opentelemetrycollectoropentelemetryiov1beta1

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

79808178

Date: 2025-11-03 18:14:07
Score: 0.5
Natty:
Report link

Apparently the global JSX namespace has been moved to React.JSX

So in my case, simply changing

img: JSX.Element

to

img: React.JSX.Element

did the trick.

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

79808173

Date: 2025-11-03 18:09:05
Score: 0.5
Natty:
Report link

I can see your puma version 6.4.3 which had some issue with openssl version determine logic, if you upgrade to 6.5 might solve your problem, because they fixed some openssl version determining issue.
You can check details from https://github.com/puma/puma/compare/v6.4.3...v6.5.0 here. ext/puma_http11/extconf.rb

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

79808162

Date: 2025-11-03 17:57:02
Score: 0.5
Natty:
Report link

for JIRA cloud REST API access

you can create API token from your personal Atlassian account page:

there are 2 types of API tokens:

BUT Based on the options you need to use different URLs to access your JIRA REST API:


Documentation is not very intuitive

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

79808159

Date: 2025-11-03 17:56:02
Score: 1
Natty:
Report link

It's easy to create such plots using ggalign, which offers an integrative, composable visualization framework for ggplot2..


library(ggalign)
set.seed(1)
time <- 1:50
data <- t(data.frame(
    A = cumsum(rnorm(50, 0, 1)),
    B = cumsum(rnorm(50, 0, 1)),
    C = cumsum(rnorm(50, 0.2, 1)),
    D = cumsum(rnorm(50, -0.2, 1))
))

stack_discreteh(data) -
    # set default theme for all plots in the layout
    scheme_theme(theme_minimal()) +

    # add line plot
    ggfree(size = 3) +
    scheme_data(function(d) {
        d$time <- time[d$.column_index]
        d$.panel <- factor(d$.panel)
        names(d$.panel)
        d
    }) +
    geom_line(aes(time, value)) +
    geom_hline(yintercept = 0, linetype = "dashed") +
    facet_grid(rows = vars(.panel)) +
    theme(strip.text = element_blank(), strip.background = element_blank()) +

    # add the dendrogram
    align_dendro(aes(color = branch), k = 4, plot_cut_height = FALSE) +
    scale_color_brewer(palette = "Dark2", guide = "none") +
    theme(axis.text.y = element_text())

enter image description here

More examples:

enter image description here

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

79808155

Date: 2025-11-03 17:49:58
Score: 7.5
Natty:
Report link

Yes, but how do you deal with a DB that exceeds RAM in that scenario?

Reasons:
  • Blacklisted phrase (1): how do you
  • Low length (1.5):
  • No code block (0.5):
  • Ends in question mark (2):
  • Self-answer (0.5):
  • Single line (0.5):
  • Looks like a comment (1):
  • Low reputation (0.5):
Posted by: CupOfGreenTea

79808145

Date: 2025-11-03 17:35:55
Score: 6.5
Natty: 7
Report link

Same question here! Curious to understand if you already find out the answer?

Reasons:
  • RegEx Blacklisted phrase (1): Same question
  • Low length (1.5):
  • No code block (0.5):
  • Ends in question mark (2):
  • Single line (0.5):
  • Low reputation (1):
Posted by: André Martingo

79808143

Date: 2025-11-03 17:33:54
Score: 2.5
Natty:
Report link

An answer from 2025.

Keycloak version: 21.0.2

The answer with most upvotes from @stephen is outdated, however I couldnt find Service Account in my client page.

MY CASE

I have a special user called keycloak_admin and I use him to work with API (without client id and secret) I forgot to give that user admin realm role :)

Reasons:
  • Blacklisted phrase (0.5): upvote
  • No code block (0.5):
  • User mentioned (1): @stephen
  • Low reputation (0.5):
Posted by: Alexey Khachatryan

79808142

Date: 2025-11-03 17:30:54
Score: 3.5
Natty:
Report link

You are great solana dev. I got help your answer

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

79808140

Date: 2025-11-03 17:29:53
Score: 1.5
Natty:
Report link

You can not "turn your answer into community wiki" because this new format does not have "answers". Or "feedback comments as to why you got a downvote". There's only long chains of whatever this is.

Reasons:
  • RegEx Blacklisted phrase (2): downvote
  • Low length (0.5):
  • No code block (0.5):
  • Single line (0.5):
  • High reputation (-2):
Posted by: Drew Dormann

79808134

Date: 2025-11-03 17:24:52
Score: 1.5
Natty:
Report link

Thanks for the tip on timeradd. Does timeradd "normalize" the values given to it? I'm not sure if it is there to add two struct timevals in a safe way, or if it should be used to initialize a struct timeval by adding one initialized to zero to another which is initialized to the intended final value?

Reasons:
  • Blacklisted phrase (0.5): Thanks
  • Low length (0.5):
  • Has code block (-0.5):
  • Ends in question mark (2):
  • Self-answer (0.5):
  • Single line (0.5):
  • High reputation (-2):
Posted by: user2138149

79808117

Date: 2025-11-03 17:02:46
Score: 9.5 🚩
Natty: 5.5
Report link

I am facing similar issue. Was anyone able to resolve it?

Reasons:
  • RegEx Blacklisted phrase (1.5): resolve it?
  • Low length (1.5):
  • No code block (0.5):
  • Me too answer (2.5): I am facing similar issue
  • Ends in question mark (2):
  • Single line (0.5):
  • Low reputation (1):
Posted by: user31808106

79808100

Date: 2025-11-03 16:41:41
Score: 1
Natty:
Report link

As usual, I found the answer right after posting this question!

I just needed to say set bmargin 5 to increase the bottom margin. Similarly, set tmargin 5 could be used to increase the top margin to put labels up there.

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

79808091

Date: 2025-11-03 16:37:39
Score: 4.5
Natty:
Report link

I'm caught off guard by this new open-ended question format. It seems that instead of writing a comment one simply replies? (how to turn my answer into community wiki?) Anyway, please provide feedback when downvoting to help me understand why this is not valuable.

Reasons:
  • Blacklisted phrase (1): help me
  • RegEx Blacklisted phrase (2.5): please provide
  • Low length (0.5):
  • No code block (0.5):
  • Contains question mark (0.5):
  • Self-answer (0.5):
  • High reputation (-1):
Posted by: Brandlingo

79808085

Date: 2025-11-03 16:34:39
Score: 0.5
Natty:
Report link

You can write it like this:

aSpcList.Sort(TComparer<TSpecies>.Construct(CompareMyObjects));
Reasons:
  • Low length (1):
  • Has code block (-0.5):
Posted by: Matthias B

79808082

Date: 2025-11-03 16:30:38
Score: 0.5
Natty:
Report link
#if sizeof(uint64_t) == sizeof(unsigned long)
    #define I_WANT_TO_DISABLE_THIS_BLOCK_YES
#else
    #define I_WANT_TO_DISABLE_THIS_BLOCK_NO
#endif

I think it is self-expanatory

Reasons:
  • Low length (1):
  • Has code block (-0.5):
Posted by: jorge is not ai

79808080

Date: 2025-11-03 16:28:37
Score: 1
Natty:
Report link

This is handled by django.core.management.find_commands :

def find_commands(management_dir):
    """
    Given a path to a management directory, return a list of all the command
    names that are available.
    """
    command_dir = os.path.join(management_dir, "commands")
    return [
        name
        for _, name, is_pkg in pkgutil.iter_modules([command_dir])
        if not is_pkg and not name.startswith("_")
    ]

https://github.com/django/django/blob/05ba1a9228128614fb3c475f1c4bdf0160f44dba/django/core/management/__init__.py#L29

Originally implemented in https://github.com/django/django/commit/302eeaf1904a2f3852b223a563617d4999b4e9ae

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

79808078

Date: 2025-11-03 16:25:36
Score: 0.5
Natty:
Report link

You're using rather vague language that makes it difficult to determine an appropriate response.

You say the post-processing needs to be "worked on immediately" and it takes "not too much time" to complete. What is a reasonably acceptable amount of time between when the request is made by B and when the post-processing should be completed? How many microseconds? Milliseconds? Seconds? Minutes?

Reasons:
  • No code block (0.5):
  • Ends in question mark (2):
  • High reputation (-2):
Posted by: Alex Howansky

79808072

Date: 2025-11-03 16:22:35
Score: 1
Natty:
Report link

For me, ansible merges the inventories for similar setup (cfg file pointing to folder with several files).

Please perform proper troubleshooting- remove the file that gets processed and check if the other gets processed. If the second gets processed (when alone) this is strange. If it does not get processed- check permissions, etc.

Unable to reproduce the issue.

Tested on Ansible core 2.14.18. Almost clean install.

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

79808068

Date: 2025-11-03 16:20:35
Score: 4.5
Natty: 5
Report link

Not Delphi but Lazarus.

The concepts are almost identical, it might work:

https://forum.lazarus.freepascal.org/index.php?action=profile;area=showposts;u=73636

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

79808058

Date: 2025-11-03 16:14:33
Score: 2
Natty:
Report link

check out these react docs on "memo". sounds like exactly what you want. if CheckBox is not your own component, you could create a wrapper for it or use the "useMemo" hook on the component. check the "deep dive" section of these react docs on useMemo. essentially, the component only rerenders when one of its props' value changes.

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

79808051

Date: 2025-11-03 16:06:31
Score: 1
Natty:
Report link

So first, there are two ways to redirect: an internal redirect and an external redirect.

The internal redirect reuses the request and token to call a secondary endpoint.

The external redirect drops a thread, goes outside the DMZ, comes back in and has to be revalidated and recreate a new thread and then goes to the secondary endpoint.

The internal is MUCH faster and more secure.

https://www.linkedin.com/pulse/apis-why-use-internal-redirect-owen-rubel-api-expert-xsoec/

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

79808050

Date: 2025-11-03 16:05:31
Score: 1.5
Natty:
Report link

How exactly have you determined the check boxes are re-rendering? How are you determining unnecessary re-renders? Please [edit] your question to specifically and clearly define the problem that you are trying to solve. Additional details — including all relevant code (see mre for details), any complete error messages and stacktraces, and debugging logs and details from any investigation on your part — will help readers to better understand your problem and [what you are asking].

Also, FWIW, the React Context API is not a state management library, so attempting to compare it to Redux (and other similar state management libraries) is an apples to oranges comparison.

Additionally, please [edit] the title of your question to be descriptive, unambiguous, and specific to what you are asking. Currently it doesn't appear to match the post body's topic. For more guidance, see How do I write a good title?.

Reasons:
  • Blacklisted phrase (1): How do I
  • Long answer (-0.5):
  • No code block (0.5):
  • Ends in question mark (2):
  • Starts with a question (0.5): How
  • High reputation (-2):
Posted by: Drew Reese

79808044

Date: 2025-11-03 15:59:30
Score: 2
Natty:
Report link

I confirm it's working, but the provider.tf must be in the same folder as our module. If you have multiple folder modules, you need to duplicate them in each folder:

I my case, I use

source = "microsoft/azuredevops"

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

79808043

Date: 2025-11-03 15:56:29
Score: 0.5
Natty:
Report link

Though the question is a little vague, I will assume that it's about JSON:API vs REST. JSON:API is a specification for using JSON whereas REST is an architecture pattern.

The JSON: API spec is compatible with REST which means they are not mutually exclusive and can be considered complementary to each other.

At a high level:

  1. To interface with a REST API, make HTTP requests using the standard methods (or verbs) to endpoints (specific URIs) provided by the service. Ideally thse endpoints will be documented in a way that any consumer can easily understand (such as the Open API spec). How you parse the results depends on what the results are. They could be JSON, XML, HTML or plaintext.

  2. To interface with a JSON:API you will need to make HTTP requests using its specific MIME type ad follow the recommended schema from the specification. To parse the result you will need to use the relevant methods or packages your programming language of choice provides. In JavaScript it's JSON.parse

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

79808039

Date: 2025-11-03 15:51:27
Score: 3
Natty:
Report link

You can try my configuration here : https://github.com/RAJ8664/nvim-config/blob/main/lua/plugins/blink_cmp.lua.

This works for me.

Reasons:
  • Whitelisted phrase (-1): works for me
  • Probably link only (1):
  • Low length (1.5):
  • No code block (0.5):
  • Low reputation (1):
Posted by: RAJ ROY

79808036

Date: 2025-11-03 15:46:26
Score: 1
Natty:
Report link

Lokesh tells us in the link above that we can use different options for our lightbox, like a wraparound, for example. He tells us to include the following, and then lists some more options. But he does not state anywhere WHERE we should put this code. In the html? the css? The js? And then, where exactly? in the head, the body, ...? He seems to just assume everybody knows... Well, I have no idea and therefore no way to activate the wraparound.

<script>
        lightbox.option({
         'resizeDuration': 200,
         'wrapAround': true
         })
        </script>
Reasons:
  • Long answer (-0.5):
  • Has code block (-0.5):
  • Contains question mark (0.5):
  • Unregistered user (0.5):
  • Low reputation (1):
Posted by: Mary-Ann

79808034

Date: 2025-11-03 15:44:25
Score: 4.5
Natty:
Report link

I encountered the same problem. I found a solution here. You need to change the development interface language to English. https://learn.microsoft.com/ru-ru/answers/questions/5225129/vba-excel

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

79808032

Date: 2025-11-03 15:41:24
Score: 4
Natty:
Report link

Thanks Jon, couple of my words has been removed by stack. In fact I added what was tried!

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

79808028

Date: 2025-11-03 15:38:23
Score: 2.5
Natty:
Report link

One quite good approximation method is Bhāskara I's sine approximation formula :

https://en.wikipedia.org/wiki/Bh%C4%81skara_I%27s_sine_approximation_formula

This formula can also be used with fixed point computations and you might also use it for Q15 (both x as pi normalized and y as return value in range -1.0 ... +1.0-LSB).

Another efficient method is the CORDIC algorithm :
https://en.wikipedia.org/wiki/CORDIC

I used the CORDIC algorithm to write my own implementation (already adapted for Q15 input/output):
https://github.com/marcas756/fxp16

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

79808021

Date: 2025-11-03 15:29:20
Score: 2.5
Natty:
Report link

As of Ksp 2.3.0, the "KSP version is no longer tied to the Kotlin compiler version (moving away from the old - format)"
https://github.com/google/ksp/releases/tag/2.3.0

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

79808019

Date: 2025-11-03 15:27:19
Score: 5.5
Natty: 4.5
Report link

java.lang.NullPointerException: Cannot invoke "org.springframework.messaging.SubscribableChannel.send(org.springframework.messaging.Message)" because the return value of "org.springframework.cloud.stream.binder.test.InputDestination.getChannelByName(String)" is null

Using spring boot starter version: 3.5.6, spring.cloud.version 2025.0.0

tried everything but getting by setting setting

@TestPropertySource(properties = "spring.cloud.function.definition=getABCDetailsRequest-in-0")

harcoded destination name inputDestination.send(message, "getABCDetailsRequest-in-0") null only. any help is appreciated.

Reasons:
  • Blacklisted phrase (1): appreciated
  • Blacklisted phrase (1): any help
  • RegEx Blacklisted phrase (3): any help is appreciated
  • Long answer (-0.5):
  • Has code block (-0.5):
  • Unregistered user (0.5):
  • Low reputation (1):
Posted by: AnonymousDev

79808004

Date: 2025-11-03 15:17:17
Score: 1.5
Natty:
Report link

Yes — this is a known (and frustrating) rendering quirk on iOS Safari where <canvas> elements are treated as inline elements by default, causing a small baseline gap (similar to the one under images or inline SVGs).

Even though display: block; should fix it, iOS Safari sometimes still reserves space for the text baseline due to internal layout quirks. Here are several reliable ways to eliminate that gap — pick whichever works best for your layout:

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

79807999

Date: 2025-11-03 15:12:15
Score: 4
Natty:
Report link

@Alex Howansky: Bad wording, indeed. I changed the Q to say that the data shall be worked on immediately. The processing will not take too much time, but I want it to be independent from the parent process.

Reasons:
  • RegEx Blacklisted phrase (1): I want
  • Low length (0.5):
  • No code block (0.5):
  • User mentioned (1): @Alex
  • Self-answer (0.5):
  • Single line (0.5):
  • Looks like a comment (1):
  • High reputation (-1):
Posted by: phunsoft

79807972

Date: 2025-11-03 14:40:08
Score: 1.5
Natty:
Report link

Sorry for the many Rcpp questions lately, I'm working on a new Rcpp project since some time :D

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

79807945

Date: 2025-11-03 14:12:02
Score: 3
Natty:
Report link

I have that same problem. If I use "mouseover" it does show the lightbox, but when I use "click", it opens the link to the image. The suggestions here do not work and there is no real solution stated here how to fix it.

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

79807943

Date: 2025-11-03 14:11:02
Score: 3
Natty:
Report link

I was having the same issue, and the problem was with an old ES7 plugin. I found it in my plugin list and disabled it, and that fixed the problem for me!

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

79807932

Date: 2025-11-03 14:01:00
Score: 1.5
Natty:
Report link

The reason you have a ghost cell is probably because you are returning a copy operation on your DropProposal:

https://developer.apple.com/documentation/uikit/uitableviewdropdelegate/tableview(_:dropsessiondidupdate:withdestinationindexpath:)

You should be returning a UITableViewDropProposal with a move operation.

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

79807924

Date: 2025-11-03 13:48:56
Score: 1
Natty:
Report link

As per Guidewire below are the alternative for setFieldValue maskEntityType.IntrinsicType.TypeInfo.getProperty("AssignedRisk").Accessor.setValue(maskEntityType, true)

or

target.IntrinsicType.TypeInfo.getProperty(fieldName).Accessor.setValue(target, srcEntity.getFieldValue(field.Name))
Reasons:
  • Low length (0.5):
  • Has code block (-0.5):
  • Self-answer (0.5):
  • Low reputation (0.5):
Posted by: abhi

79807923

Date: 2025-11-03 13:42:55
Score: 2
Natty:
Report link

Discussed in Improving the "return" keyword to do conditional early exists of the method

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

79807921

Date: 2025-11-03 13:40:54
Score: 3
Natty:
Report link

VSCode is used for many programming languages and doesn't support all of them at once, no.

Do you have any Java extension installed? There's the official Java Extension from Oracle in VSCode's extension marketplace you can try out.

Reasons:
  • RegEx Blacklisted phrase (2.5): Do you have any
  • Low length (0.5):
  • No code block (0.5):
  • Contains question mark (0.5):
  • High reputation (-1):
Posted by: Peter Pointer

79807919

Date: 2025-11-03 13:34:53
Score: 3
Natty:
Report link

I went with Guru's approach, because works great with ASP.NET and it needs to be at the top at the function anyway. And the lambda function also seems nice. Thank you.

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

79807916

Date: 2025-11-03 13:31:52
Score: 1
Natty:
Report link

You forgot to mention what language you're using. Editing to add that language to the tags will help experts to notice your question.

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

79807907

Date: 2025-11-03 13:18:49
Score: 4
Natty:
Report link

I am having the exact same issue. I am currently seeking a workaround.

I learned that the 130 and 140 for GLSL are shader language versions. Mac OS does not generally support OpenGL up to that point but maybe some versions will be compatible. So the problem I that, without a working shader (the shaders that come with Ursina all being in versions 130-150), all textures default to black.

From a fellow newbie perspective I think the best way around the problem could be to load a custom shader in version 120, and make sure that the gl-version is compatible with it, applying that shader. I haven't actually managed that yet.

Reasons:
  • Long answer (-0.5):
  • No code block (0.5):
  • Me too answer (2.5): I am having the exact same issue
  • Unregistered user (0.5):
  • Low reputation (1):
Posted by: Chuck_Testa

79807906

Date: 2025-11-03 13:17:48
Score: 1
Natty:
Report link

To answer the question "Why isn't there a returnif keyword", here's what Eric Lippert says: "because no one ever designed, specified, implemented, tested, documented and shipped that feature."

Reasons:
  • Probably link only (1):
  • Low length (1):
  • No code block (0.5):
  • Single line (0.5):
  • High reputation (-2):
Posted by: Matthew Watson

79807899

Date: 2025-11-03 13:11:47
Score: 5.5
Natty:
Report link

I have a similar issue. I can, however, only reproduce it in a prod environment by giving it a valid username but a wrong non-empty password.

Reasons:
  • Low length (1):
  • No code block (0.5):
  • Me too answer (2.5): I have a similar issue
  • Single line (0.5):
  • Low reputation (1):
Posted by: telos

79807897

Date: 2025-11-03 13:10:46
Score: 1
Natty:
Report link

You could use list comprehension like that:

a_dict = {item[0]: item for item in list_a}

list_c = [
    (
        f"({tuple_item[1]}-{tuple_item[2]}) {tuple_item[0]}"
        if (tuple_item := a_dict.get(item)) and tuple_item[1] is not None
        else item
    )
    for item in list_b
]
print(list_c)
Reasons:
  • Low length (0.5):
  • Has code block (-0.5):
  • Low reputation (1):
Posted by: Mohammad Othman

79807894

Date: 2025-11-03 13:05:45
Score: 1
Natty:
Report link

If you are trying to run a next app, you can change the port by updating the scripts in package.json.

 "scripts": {
    "dev": "next dev --port 3002",
Reasons:
  • Low length (1):
  • Has code block (-0.5):
  • Low reputation (0.5):
Posted by: Hamza Bashir

79807880

Date: 2025-11-03 12:52:42
Score: 0.5
Natty:
Report link

This, again, is just standard Q&A, not advice.

Reasons:
  • Low length (1.5):
  • No code block (0.5):
  • Single line (0.5):
  • High reputation (-2):
Posted by: President James K. Polk

79807876

Date: 2025-11-03 12:47:41
Score: 0.5
Natty:
Report link

Databricks (Spark) will often try to do things automatically that you aren't explicitly asking it to do. Without your exact dataframe and database table schema, it is difficult to say, but check for the following issues which can result in Spark trying to create a table:

  1. Confirm the table actually exists. Since you've already done this, try...

  2. Confirm the schemas are a perfect match. This is the issue I see most often that causes the CREATE TABLE permission error.

You can also try to log the exact commands being issued to the database to do more advanced troubleshooting, but I've only needed to do this a handful of times.

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

79807868

Date: 2025-11-03 12:36:39
Score: 3.5
Natty:
Report link

"Jo777: Rasakan sensasi kemenangan yang sesungguhnya."

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

79807867

Date: 2025-11-03 12:35:38
Score: 2.5
Natty:
Report link

I have sorted this by replacing my type declaration from CommaSeparatedList to String ... Stack type accepts only String as parameters.

Reasons:
  • Low length (1):
  • No code block (0.5):
  • Single line (0.5):
  • Low reputation (0.5):
Posted by: Mário de Sá Vera

79807864

Date: 2025-11-03 12:29:37
Score: 3.5
Natty:
Report link

Interesting, I was just curious because I was thinking of how they actually develop/test the software in a company like Nintendo.

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

79807858

Date: 2025-11-03 12:25:36
Score: 1
Natty:
Report link
import axios from 'axios';


const source = axios.CancelToken.source();


axios.get('/api/data', {
  cancelToken: source.token
}).then(response => {
 
}).catch(error => {
  if (axios.isCancel(error)) {
    console.log(error.message);
  } else {
    console.log( error.message);
  }
});

source.cancel();
Reasons:
  • Low length (0.5):
  • Has code block (-0.5):
  • Low reputation (1):
Posted by: putaoshu

79807850

Date: 2025-11-03 12:11:33
Score: 2
Natty:
Report link

Countdown to December 2025? Will the Microsoft team delay this again for another year? I've lost patience and developed my own workaround which combines AppleScript for Menu items, Keyboard Maestro and the use of special references in Categories to get around this. The MacOS Outlook client is however a flaky mess (even without scripting involved)

Reasons:
  • No code block (0.5):
  • Contains question mark (0.5):
  • Single line (0.5):
  • Low reputation (0.5):
Posted by: Olivier

79807836

Date: 2025-11-03 11:58:30
Score: 3.5
Natty:
Report link

Found solution to my issue by chance - I had setup my elastic search with no security:
https://discuss.elastic.co/t/elasticsearch-8-5-0-docker-fail-elasticsearch-reset-password/318575

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

79807835

Date: 2025-11-03 11:57:29
Score: 5
Natty:
Report link

Is it possible to return a variable in the if (condition)? Like doing if (var variable = SomeFunction() != null) return variable;.

Reasons:
  • Blacklisted phrase (1): Is it possible to
  • Low length (1):
  • Has code block (-0.5):
  • Ends in question mark (2):
  • Self-answer (0.5):
  • Starts with a question (0.5): Is it
  • Low reputation (0.5):
Posted by: Bamsen

79807822

Date: 2025-11-03 11:45:26
Score: 0.5
Natty:
Report link

The default in hypothesis is to use the normal distribution (df = Inf) so the modification below results in identical p-values.

(mepvalue <- marginaleffects::hypotheses(mod, "b4 >= 0", df=df)$p.value)
all.equal(pvalue, mepvalue[1]) # TRUE
Reasons:
  • Low length (0.5):
  • Has code block (-0.5):
  • Low reputation (0.5):
Posted by: Stephen

79807813

Date: 2025-11-03 11:38:24
Score: 4
Natty:
Report link

"Jo777: Ketegangan, keseruan, kemenangan."

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

79807800

Date: 2025-11-03 11:24:20
Score: 5
Natty: 6
Report link

Hyy , i am also running on same issue, but i have 2 different VM's using one for airflow and one for spark, i have given spark host ip as driver ip host, still i get teh same error, any idea why??

Reasons:
  • Blacklisted phrase (0.5): why?
  • Low length (0.5):
  • No code block (0.5):
  • Ends in question mark (2):
  • Single line (0.5):
  • Low reputation (1):
Posted by: Amith Kulkarni

79807798

Date: 2025-11-03 11:21:20
Score: 0.5
Natty:
Report link

C++11 brace initialization lets you create a zero of any integral type, if that type has a single identifier, like uint32_t. For unsigned int you'd need a type alias. You can then invert all bits via ~.

auto flags = ~ uint32_t{};
using my_flag_type = unsigned int;
auto flags = ~ my_flag_type{};
Reasons:
  • Low length (0.5):
  • Has code block (-0.5):
  • Low reputation (0.5):
Posted by: Jens

79807794

Date: 2025-11-03 11:18:19
Score: 0.5
Natty:
Report link

In Filament V4 you are able to do something like this:

...UserResource::infolist($schema)->record($user)->getComponents(),

Maybe this can help you.

I'm not sure if this is the way it is supposed to be used, but it works.

Reasons:
  • Low length (0.5):
  • Has code block (-0.5):
  • Low reputation (0.5):
Posted by: مردين

79807792

Date: 2025-11-03 11:16:18
Score: 1.5
Natty:
Report link

if someone stumble on this post in the future and have this problem i found a quick detour solution.

is to wrap the canvasInstance with vue `markRaw()` https://vuejs.org/api/reactivity-advanced#markraw to prevent it to be converted to a proxy this solved the issue for me.

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

79807790

Date: 2025-11-03 11:12:17
Score: 2.5
Natty:
Report link

Yes , you can look out the xmpp_plugin: https://pub.dev/packages/xmpp_plugin
Go through the services which are available for that plugin in documentation.

Reasons:
  • Low length (1):
  • No code block (0.5):
  • Low reputation (1):
Posted by: JEEVAN H G

79807783

Date: 2025-11-03 11:06:16
Score: 2.5
Natty:
Report link
const [users, setUsers] = useState<User[]>([]);

Try out
http://react-typescript-cheatsheet.netlify.app/

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

79807778

Date: 2025-11-03 11:02:14
Score: 6 🚩
Natty: 5
Report link

Is it possible to customize the style of the text in the heads-up notification by changing the colour of the text, etc, by sending HTML content in the title and body if I am using React Native Expo and Notifee?

Reasons:
  • Blacklisted phrase (1): Is it possible to
  • Low length (0.5):
  • No code block (0.5):
  • Ends in question mark (2):
  • Single line (0.5):
  • Starts with a question (0.5): Is it
  • Low reputation (1):
Posted by: Japjyot Suri

79807759

Date: 2025-11-03 10:42:09
Score: 1.5
Natty:
Report link

This step can help it work:

  1. Open cmd with administrator privileges.Input the code in the below

  2. rd /s /q "%ProgramData%\Microsoft\VisualStudio\Packages"
    
  3. Open Visual studio installer,click the update one.

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