79706492

Date: 2025-07-18 16:40:39
Score: 0.5
Natty:
Report link

What about this easy to use

extension WidgetExtensions on Widget {
  Page<dynamic> Function(BuildContext, GoRouterState) get transitionPage =>
          (context, state) => CustomTransitionPage<dynamic>(
        key: state.pageKey,
        child: this,
        transitionsBuilder: (context, animation, secondaryAnimation, child) {
          const begin = Offset(1.0, 0.0);
          const end = Offset.zero;
          const curve = Curves.easeInOut;

          final tween = Tween(begin: begin, end: end).chain(CurveTween(curve: curve));
          return SlideTransition(position: animation.drive(tween), child: child);
        }
      );
}

To use

GoRoute(
  path: '/',
  pageBuilder: HomeScreen().transitionPage
),
Reasons:
  • Long answer (-0.5):
  • Has code block (-0.5):
  • Starts with a question (0.5): What
  • Low reputation (1):
Posted by: JS B

79706487

Date: 2025-07-18 16:37:39
Score: 3
Natty:
Report link

This was user error. I had to set the LWIP_TCP_KEEPALIVE in the compile options like -DLWIP_TCP_KEEPALIVE. Once I did this then I did not get any errors when setting the options.

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

79706479

Date: 2025-07-18 16:26:36
Score: 1
Natty:
Report link

A lot of years are gone but very likely the issue could led to how an https request is done using Winhttp or in general, HttpSendRequest.

After the Certificate exchange and encrypted handshake message Windows will try to verify if what has been received is valid.
To do this, it first check certificate in "Trusted Root Certification Authorities" and in case of failure will start to "retrieve Third-Party Root Certificate from Network".

So a called to DNS and external address is performed. The problem is that in some environment maybe the calls are dropped and so your https request get stacked until a timeout.

The timeout should be 15 seconds and then the request is unlocked.

This behaviors it's completely independent from the options you can set on the HttpSendRequest about ignoring certificates because this action will be execute only later in time.

Knowing the request workflow there can be multiple way to fix it.

One is discussed in these articles:

basically set at HKEY_LOCAL_MACHINE\SOFTWARE\Policies\Microsoft\SystemCertificates\AuthRoot:

Another way is to fix the certificate, maybe a self signed and add it correctly onto the windows certificate storage at "Trusted Root Certification Authorities" at machine level certificates.

The 15 seconds in real are a default value that can be override from local group policy:
enter image description here

Bonus:

to better understand the process of certificates a specific log on windows can be enabled following the instructions here https://learn.microsoft.com/en-us/previous-versions/windows/it-pro/windows-vista/cc749296(v%3dws.10)

Reasons:
  • Long answer (-1):
  • No code block (0.5):
  • Filler text (0.5): 00000000
  • Low reputation (1):
Posted by: GHA

79706471

Date: 2025-07-18 16:19:35
Score: 1
Natty:
Report link

You've described a classic case of “same code, different behavior” due to platform change—and that can be tricky to pin down. Let’s break it down and explore possibilities:


🧠 What Could Be Going Wrong?

🔴 RHEL vs. Alpine: Base Image Implications

🚦 HttpContext / Redirect Behavior


🔬 Diagnostics You Can Perform

Here are ways to isolate the issue:

ToolUse Casedotnet-countersTrack memory, GC, threadpool, HTTP counters in real-timedotnet-gcdumpSnapshot GC heap and analyze retained objectsdotnet-traceCapture traces to explore what’s allocating/proc/<pid>/smapsCheck actual memory usage per process, native vs managedK8s metrics (Prometheus + Grafana)Trend analysis over time per pod


🔍 Code-Level Things to Watch For


🧰 Suggestions


This issue isn’t likely caused by one line of code—it’s the interaction of the runtime with the new OS environment. Want help analyzing a memory dump or building test scaffolds to narrow it down? I’d be glad to collaborate.

Reasons:
  • Blacklisted phrase (1): What Could Be
  • Long answer (-1):
  • Has code block (-0.5):
  • Contains question mark (0.5):
  • Low reputation (1):
Posted by: Tanveer Hussain Khan

79706461

Date: 2025-07-18 16:10:32
Score: 1
Natty:
Report link
Yo he necesitado realizar esta adaptación:

::ng-deep {
  .make-ag-grid-header-sticky {
    .ag-root-wrapper {
      display: unset;
    }

    .ag-root-wrapper-body {
      display: block;
    }

    .ag-root {
      display: unset;

    }

    .ag-header{
      top: 0;
      background-color: var(--ag-header-background-color);
      position: sticky !important;
      z-index: 100;
    }
  }
}
Reasons:
  • Has code block (-0.5):
  • Unregistered user (0.5):
  • Low reputation (1):
Posted by: IneyCat

79706456

Date: 2025-07-18 16:08:32
Score: 2
Natty:
Report link

To install PyTorch and OpenCV using a fixed Conda channel order, you need to:

  1. Set channel priorities explicitly (so Conda doesn't auto-select from multiple sources).

  2. Use conda config to pin preferred channels.

  3. Install packages while preserving that order.

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

79706453

Date: 2025-07-18 16:06:31
Score: 1
Natty:
Report link

the answer by itzmekhokan works, but just in case you need to disable the email later than woocommerce_email hook fired:

remove_action( 'woocommerce_created_customer_notification', array( WC()->mailer(), 'customer_new_account' ), 10, 3 );
Reasons:
  • Low length (0.5):
  • Has code block (-0.5):
  • Low reputation (1):
Posted by: geminorum

79706448

Date: 2025-07-18 16:05:31
Score: 1.5
Natty:
Report link

A comprehensive, cross-platform React Native wrapper for secure key-value storage using native security features of Android and iOS. It supports biometric authentication, hardware-backed encryption, and deep platform integrations such as Android StrongBox, EncryptedSharedPreferences, and iOS Secure Enclave via the Keychain.
There are the lib:
rn-secure-keystore

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

79706440

Date: 2025-07-18 15:59:30
Score: 3
Natty:
Report link

Same for me, quasar is not adding the styles with safe insets, fixed it temporarily by just adding the iPhone inset utility class to the body, until a proper fix is out.

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

79706437

Date: 2025-07-18 15:57:29
Score: 1
Natty:
Report link
В новой версии moviepy убрали editor 
https://zulko.github.io/moviepy/getting_started/updating_to_v2.html

from moviepy import VideoFileClip
clip = VideoFileClip("my_video.mp4")
print( clip.duration )
Reasons:
  • Low length (0.5):
  • Has code block (-0.5):
  • Low reputation (1):
Posted by: Frizzi

79706433

Date: 2025-07-18 15:49:27
Score: 0.5
Natty:
Report link

Try following all your subplot-filling with something like:

ax[0,0].legend_.remove()
handles, labels = ax[0,0].get_legend_handles_labels()
fig.legend(handles, labels, loc='upper left', bbox_to_anchor=(0.9, 1))
Reasons:
  • Low length (0.5):
  • Has code block (-0.5):
  • Low reputation (0.5):
Posted by: S. Jessen

79706432

Date: 2025-07-18 15:48:27
Score: 0.5
Natty:
Report link

I finally found the root cause for ElixirLS not working for the existing project.

$ MIX_ENV=test iex -S mix
Erlang/OTP 27 [erts-15.2.3] [source] [64-bit] [smp:16:16] [ds:16:16:10] [async-threads:1] [jit:ns]

** (File.Error) could not read file "/home/jan/Workspace/project-b/config/test.exs": no such file or directory

I renamed test for that project, but ElixirLS requires it. Adding config/test.exs solved the issue for me.

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

79706431

Date: 2025-07-18 15:47:27
Score: 3
Natty:
Report link

Nested axis guides have been deprecated from ggh4x - not sure if there is another option left.

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

79706421

Date: 2025-07-18 15:38:24
Score: 2.5
Natty:
Report link

The included codes from files are macro facilities of the C language that allow both single and multiple inclusions, as can be seen in the following example. It does not necessarily to have a specific file name extension such as ".h" unless we want to indicate a code with header content, etc.

enter image description here

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

79706418

Date: 2025-07-18 15:35:24
Score: 3
Natty:
Report link

One cannot send a body with GET, it’s a limitation imposed by the HTTP protocol. Usually APIs accept data with POST, so I would try that.

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

79706415

Date: 2025-07-18 15:32:23
Score: 2
Natty:
Report link

Because using Property Let, Get and Set, we can have the same name for the read and the write method. Usually in a programming language your function identifier must be non-ambiguous. You can't use the same name in one specific scope. Using Property, the "visible" name is the same and the "context" of the code will "decide" what function is called. I believe that under the hood VBA will name the functions with different names.

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

79706412

Date: 2025-07-18 15:29:22
Score: 2.5
Natty:
Report link

Hi I am wondering how do I add numbers without displaying them while in foreach loop expamle:

@{ int intVariable = 0; }

@foreach(var item in @Model.Collection)

{

@(intVariable += item.MyNumberOfInteres) //-\>how can I calculate this without it being rendered to the website ?

//some Html code.......

}

Reasons:
  • Blacklisted phrase (0.5): how can I
  • Blacklisted phrase (1): how do I
  • Low length (0.5):
  • Has code block (-0.5):
  • Low reputation (1):
Posted by: aung6466

79706411

Date: 2025-07-18 15:28:22
Score: 1.5
Natty:
Report link

In CSS, elements inside a flex container can indeed shrink in a specific order using the flex-shrink property in combination with the natural flow of the layout. However, there's no direct property like "shrink-order"

flex-shrink sets the relative rate at which an element shrinks when there's not enough space in the flex container. A higher value means the element shrinks faster or more compared to others.

also it will only work when the container has display:flex;

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

79706410

Date: 2025-07-18 15:28:22
Score: 0.5
Natty:
Report link

You can do client side, on the condition that you can fetch the Icecast stream.

To make client-side playback and ICY metadata extraction work via fetch() in the browser, CORS (Cross-Origin Resource Sharing) requirements must be properly met by the radio stream server.

I wrote the @music-metadata/icy module for this occasion. Credits to Brad who encourage me to contribute to StackOverflow, while others gave me much reason to run away.

const STREAM_URL = 'https://audio-edge-kef8b.ams.s.radiomast.io/ref-128k-mp3-stereo';

const trackDisplay = document.getElementById('track');
const audioElement = document.getElementById('player');

const mediaSource = new MediaSource();
audioElement.src = URL.createObjectURL(mediaSource);

mediaSource.addEventListener('sourceopen', async () => {
  const sourceBuffer = mediaSource.addSourceBuffer('audio/mpeg');

  try {
    // Dynamically import the ESM-only module
    const { parseIcyResponse } = await import('https://cdn.jsdelivr.net/npm/@music-metadata/[email protected]/+esm');

    const response = await fetch(STREAM_URL, {
      headers: { 'Icy-MetaData': '1' }
    });

    const audioStream = parseIcyResponse(response, metadata => {
      for (const [key, value] of metadata.entries()) {
        console.log(`Rx ICY Metadata: ${key}: ${value}`);
      }
      const title = metadata.get('StreamTitle');
      if (title) {
        trackDisplay.textContent = title;
      }
    });

    const reader = audioStream.getReader();

    while (true) {
      const { done, value } = await reader.read();
      if (done) break;

      if (value && !sourceBuffer.updating) {
        sourceBuffer.appendBuffer(value);
      } else {
        await new Promise(resolve => {
          sourceBuffer.addEventListener('updateend', resolve, { once: true });
        });
        sourceBuffer.appendBuffer(value);
      }
    }

    mediaSource.endOfStream();
  } catch (err) {
    console.error('Error streaming audio:', err.message);
    trackDisplay.textContent = 'Failed to load stream';
  }
});
<html lang="en">
<head>
  <title>ICY Stream Player</title>
  <style>
    body { font-family: sans-serif; text-align: center; margin-top: 2em; }
    audio { width: 100%; max-width: 500px; margin-top: 1em; }
    #track { font-weight: bold; margin-top: 1em; color: red; font-style: italic}
  </style>
</head>
<body>
  <h2>ICY Stream Player</h2>
  <div>Now playing: <span id="track">...</span></div>
  <audio id="player" controls autoplay></audio>
</body>
</html>

Reasons:
  • Blacklisted phrase (1): StackOverflow
  • Contains signature (1):
  • Long answer (-1):
  • Has code block (-0.5):
Posted by: Borewit

79706400

Date: 2025-07-18 15:16:19
Score: 1
Natty:
Report link

Assuming the text to be in cell A1 try:

=LET(t,TEXTBEFORE(TEXTAFTER(A1,"---",1),"---"),IF(LEFT(t,1)="6",t,"N/A"))

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

79706397

Date: 2025-07-18 15:14:18
Score: 1
Natty:
Report link

Tools such as Valgrind and Clang memory sanitizer (clang++ -fsanitize=memory) can check for reads of uninitalised memory (valgrind warns you by default). Valgrind is a runtime detector and clang is a static analyser, so you'll probably want the latter. The GCC toolchain does not offer an equivalent tool as far as I know.

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

79706395

Date: 2025-07-18 15:14:18
Score: 2.5
Natty:
Report link

i saw that too and i don't no why there is no reference for it.

and in updated version of w3.org is still there: Link

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

79706393

Date: 2025-07-18 15:14:18
Score: 3
Natty:
Report link

An array is considered a variable length array when its size is set using a variable, and that size is only known at runtime, not at compile time.

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

79706383

Date: 2025-07-18 15:04:15
Score: 2
Natty:
Report link

Write the output in SOP form, like for

wherever the 1 is present-

A1 = y3'y2y1'y0'+ y3y2'y1'y0' (in sop o is treated as bar and take 1 same as it is)

A2 = y3'y2'y1y0' + y3y2'y1'y0'

and then minimize the output using a K-map, and then implement it in hardware...

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

79706376

Date: 2025-07-18 15:01:14
Score: 1
Natty:
Report link

I did something similar in the past. When you have to manage a CAN device which has custom interface via SDO (some special SDO for example), it's better to manage it formatting your message directly in PLC code. This can be done using the object CAN interface which gives you a process image where you can place your custom messages.

See Beckhoff documentation docs

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

79706374

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

I think I found it.

It wasn't super clear to me (or my searches, and it might be validated actually to issue warning), but:

management.metrics.distribution.slo.http.server.requests=100ms,500ms,1s,3s

and

management.metrics.distribution.percentiles-histogram.http.server.requests=true

are kinda mutually exclusive. See io.micrometer.core.instrument.distribution.DistributionStatisticConfig#getHistogramBuckets

Specifying 'slo buckets' will actually create them as requested, BUT these will be burried under lots of default ones, which are created upon enabling precentiles-histogram. There is list of 275 default buckets pre-created and we select subset of them based on expected minimum and maximum duration. By default (io.micrometer.core.instrument.AbstractTimerBuilder#AbstractTimerBuilder) these are 1 millisecond and 30s respectively. Which you can override using org.springframework.boot.actuate.autoconfigure.metrics.MetricsProperties.Distribution#minimumExpectedValue.

I don't understand this sufficiently, and this precision might be needed for some usecase. But if you need just if something is slower than some threshold (and mostly if smth is slower than 1s, it's bad regardless of how much), it might be safer just to specify slo thresholds.

If I'm still missing something or am wrong altogeher, please let me know!

Reasons:
  • RegEx Blacklisted phrase (2.5): please let me know
  • Long answer (-1):
  • Has code block (-0.5):
  • Self-answer (0.5):
  • High reputation (-1):
Posted by: Martin Mucha

79706373

Date: 2025-07-18 14:59:14
Score: 1
Natty:
Report link

I faced the same issue where the first connection attempt or a connection after a longer period would immediately time out. From my observations, the first connection attempt always takes significantly more time. Increasing the timeout, pool size and pooling in the connection string helped in my case. I added these parameters: Timeout=60;Command Timeout=60;Pooling=true;MinPoolSize=1;MaxPoolSize=200

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

79706359

Date: 2025-07-18 14:50:11
Score: 1.5
Natty:
Report link

The process of migrating TRX tokens is described in the official documentation on GitHub:

1. Access Your Wallet: Check your TRX balance in the list of Ethereum tokens.

2. Send Tokens: Send your old ERC20 TRX tokens to migration smart contract.

3. Confirmation: After the transaction is confirmed and broadcasted to the blockchain, the migration process will start, and your wallet will be credited with new TRX tokens. Depending on network usage, it may take 5–30 minutes to process the migration.

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

79706344

Date: 2025-07-18 14:43:09
Score: 2
Natty:
Report link

1-Create HLS chunks where the first chunk is 2 seconds, the second chunk is 3 seconds, the third is 5 seconds, and all subsequent chunks are 5 seconds each.

2-Cache the videos using fs, also delete them when seen.

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

79706332

Date: 2025-07-18 14:39:08
Score: 2
Natty:
Report link

I am coming at this from a math/physics angle rather than programming, so forgive me if I am focusing on the wrong thing, but I need some clarification on what exactly you are trying to transform here. Are you trying to preserve the ratio of the scale length to the point-scale distance?

By point-scale distance, I mean the length of the perpendicular line/arc from the point to the closest point on the scale. My understanding is that you are trying to satisfy:

LaTeX equation stating that the ratio between the scale length and the distance from the point to the scale is conserved.

It's known from differential geometry (see Theorema Egregium) that you cannot project from a sphere to a plane while preserving both shapes (or angles) and areas, which I suspect is very likely to be the root cause of your problems. I am not really sure if what you are trying to achieve can be done by only preserving one or the other or if you're trying to do something impossible, but it's probably worthwhile to actually carry out the math in 3D rather than a 2D projection. The (two ends of the) scale and the point together form a triangle on the Earth's surface, so you're really trying to transform (rotate, scale, translate) a spherical triangle, which I am not sure would work. Spherical trigonometry might help you here.

Likely why your 2D approximation does not work

The transformations you're composing are:

Using regular 2D/3D cartesian coordinates, these operations do not commute. Chiefly, the reason for this is that translation is not a linear transformation in Cartesian coordinates (Tiny proof sketch: The 0 vector does not map back to 0 under a translation). In other words, you'll get a different result if you change the order. In general, you'll apparently need to use homogenous coordinates, under which translation is linear, to avoid this problem; however, you might end up working with points/lines/areas off the surface of the Earth if you directly convert Cartesian coordinates to homogenous coordinates in this case. I cannot guess offhand if the approximation would work better with homogenous coordinates or not.

Reasons:
  • Blacklisted phrase (0.5): I need
  • Blacklisted phrase (0.5): I cannot
  • Long answer (-1):
  • No code block (0.5):
  • Contains question mark (0.5):
  • Low reputation (1):
Posted by: ygtozc

79706326

Date: 2025-07-18 14:36:07
Score: 1
Natty:
Report link

This is caused by an open issue in the wix/react-native-ui-lib package, which you have installed: https://github.com/wix/react-native-ui-lib/issues/3594

An immediate solution, if possible for your use case, is to uninstall react-native-ui-lib. This is the solution suggested in these react-native issue threads:

Otherwise you can try to patch react-native-ui-lib using patch-package, and there's a little in the above threads about how to do it, or wait for react-native-ui-lib to push an update that will fix the issue.

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

79706325

Date: 2025-07-18 14:36:07
Score: 1
Natty:
Report link

I'll add this here, since it's one of the top results from Google for the question:

Yes, the keyword is $Prompt$ in any of the parameter fields of the Run Configs, like VM Option, program options and so on. With $Prompt:Type your birthday$ one can even add a label to the prompt.

I didn't find a solution for a multiple choice / dropdown solution though.

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

79706317

Date: 2025-07-18 14:29:05
Score: 0.5
Natty:
Report link

It doesn't seem like opt can be piloted to produce the output you would like, so most likely you will want to post-process its output -- the heavier alternative would be to write a C++ LLVM module.

There may be several ways to go about this. Graphviz files can reference one another (e.g. this is how OTAWA handles it), so you can have the callgraph file referencing each of the CFG files.

If this isn't satisfactory and you must have a single visual, you will want to merge the files indeed. You will need to ensure some nodes have different names, and some others' names at the contrary should match. This StackOverflow question may be a useful read: Merging graphs in Graphviz

Reasons:
  • Blacklisted phrase (1): StackOverflow
  • Long answer (-0.5):
  • Has code block (-0.5):
  • Low reputation (0.5):
Posted by: Dune

79706313

Date: 2025-07-18 14:26:04
Score: 2
Natty:
Report link

It seems that panda requires the .vert and .frag file extensions, and won't accept .glsl extensions.

It didn't seem to give me any output to warn me of this or ask me to do this, but when I duplicated my files and changed the extensions, it no longer spits out this version error, and I can now apply the shader to the scene and camera!

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

79706310

Date: 2025-07-18 14:24:03
Score: 3.5
Natty:
Report link

mine was in a different region. Try to see if there are volumes in a different region

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

79706303

Date: 2025-07-18 14:21:02
Score: 4
Natty:
Report link

can we configure grafana.ini for this

Reasons:
  • Low length (2):
  • No code block (0.5):
  • Single line (0.5):
  • Starts with a question (0.5): can we
  • Low reputation (0.5):
Posted by: allamiro

79706301

Date: 2025-07-18 14:20:02
Score: 1.5
Natty:
Report link

As solution from Qt forum user raven-worx with stylesheet and some code modifications to handle it is described on Qt forum.

As I did not find the Copyright policy of Qt forum, I do not copy it here.

Reasons:
  • Low length (0.5):
  • No code block (0.5):
  • Low reputation (0.5):
Posted by: Nicolas D.

79706297

Date: 2025-07-18 14:17:01
Score: 0.5
Natty:
Report link

It might've changed again. Mine'r in /var/cache/dhcp.leases.

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

79706291

Date: 2025-07-18 14:10:59
Score: 0.5
Natty:
Report link
using var stream = await FileSystem.OpenAppPackageFileAsync(rawResourcesfileName);
using var fileStream = File.Create(Path.Combine(FileSystem.AppDataDirectory, rawResourcesfileName));
await stream.CopyToAsync(fileStream);
Reasons:
  • Low length (0.5):
  • Has code block (-0.5):
  • Low reputation (0.5):
Posted by: Alex Dobrynin

79706290

Date: 2025-07-18 14:08:59
Score: 0.5
Natty:
Report link

From Storybook 7+, the backgrounds addon was refactored. Now you must:

  1. Define backgrounds in preview.tsx like this

    // preview.tsx
    const preview: Preview = {
      parameters: {
        backgrounds: {
          options: {
            dark: { name: 'Dark', value: '#000000' },
            light: { name: 'Light', value: '#FFFFFF' },
          },
        },
      },
    };
    
  2. Stories like this

    export const OnDark: Story = {
      globals: {
        backgrounds: { value: 'dark' },
      },
    };
    

For more details: https://storybook.js.org/docs/essentials/backgrounds

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

79706281

Date: 2025-07-18 14:02:57
Score: 1.5
Natty:
Report link

Please create a backup of the virtual machine and disks before applying the changes.

Change the value of SupportedFeatures to b (Hexadecimal) or 11 (Decimal) for the following three drivers, then restart the system:

HKLM\SYSTEM\CurrentControlSet\Services\frxdrvvt\SupportedFeatures

HKLM\SYSTEM\CurrentControlSet\Services\frxdrv\SupportedFeatures

HKLM\SYSTEM\CurrentControlSet\Services\frxccd\SupportedFeatures

Reasons:
  • No code block (0.5):
  • Low reputation (1):
Posted by: Juan Carlos Flores Mendoza

79706277

Date: 2025-07-18 13:56:56
Score: 2.5
Natty:
Report link

As a follow-up note to this topic: If you're showing a dialog form with ShowDialog and that form is itself set to TopMost = True, I additionally suggest adding an event handler for the dialog form's FormClosing() event and set Me.TopMost = False at that time. This helps prevent a secondary bug where the calling form that spawned the dialog is itself kicked back behind windows that it was originally on top of when the child dialog form closes.

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

79706274

Date: 2025-07-18 13:53:55
Score: 0.5
Natty:
Report link

The current answers still did not do exactly what I wanted, so I just published another solution built on polars dataframes: polarsgrid

from polarsgrid import expand_grid
expand_grid(
    fruit=["apple", "banana", "pear"], 
    color=["red", "green", "blue"], 
    check=[True, False],
)

Which returns the following data frame:

shape: (18, 3)
┌────────┬───────┬───────┐
│ fruit  ┆ color ┆ check │
│ ---    ┆ ---   ┆ ---   │
│ str    ┆ str   ┆ bool  │
╞════════╪═══════╪═══════╡
│ apple  ┆ red   ┆ true  │
│ banana ┆ red   ┆ true  │
│ pear   ┆ red   ┆ true  │
│ apple  ┆ green ┆ true  │
│ banana ┆ green ┆ true  │
│ …      ┆ …     ┆ …     │
│ banana ┆ green ┆ false │
│ pear   ┆ green ┆ false │
│ apple  ┆ blue  ┆ false │
│ banana ┆ blue  ┆ false │
│ pear   ┆ blue  ┆ false │
└────────┴───────┴───────┘
Reasons:
  • Long answer (-0.5):
  • Has code block (-0.5):
  • Unregistered user (0.5):
  • Low reputation (1):
Posted by: Erik-Jan van Kesteren

79706271

Date: 2025-07-18 13:52:55
Score: 0.5
Natty:
Report link

You don't need a matched group. String's replace function will replace only the matched text and leave the remainder of the string unchanged.

let a = "aaa yyy bbb"

console.log(a.replace(/y+/, (match) => match.toUpperCase()))
// 'aaa YYY bbb'
Reasons:
  • Low length (0.5):
  • Has code block (-0.5):
  • Low reputation (0.5):
Posted by: Riggy

79706258

Date: 2025-07-18 13:44:52
Score: 1
Natty:
Report link

If I restart my machine, the problem is solved, but if i suspend my mahcine the error backed again !

i think this problem occurs with many AMD processor users, while i was using my ubuntu machine and faced the same error (after suspended my machine) i just swtiched to windows os (i have both operating systems installed as dual boot) and then switched back to ubuntu, the problem was solved

Before switching from Linux to Windows:
If you run the command "sudo prime-select query" and the output is intel, you need to switch it to nvidia by using "sudo prime-select nvidia", and then switch to Windows.
you can also using "sudo prime-select on-demand"

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

79706255

Date: 2025-07-18 13:42:52
Score: 1.5
Natty:
Report link

Theoretically one could use computer vision to detect what has differentially changed. And then generate the canonical transformations to the SVG elements generating as a result a very size efficient animated SVG file when compared to a movie or gif. One of the challenges is to make the object tracking work flawlessly, another is computing requirements to do so, possibly you have to train neural networks to sort this problem. You basically have to make sure that you correctly track things for example that moved, things that grew, or changed color, or even that temporarily disappeared.

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

79706244

Date: 2025-07-18 13:37:50
Score: 5.5
Natty: 5
Report link

I created a project for this purpose: https://github.com/Nutomic/workspace-unused

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

79706242

Date: 2025-07-18 13:35:50
Score: 1.5
Natty:
Report link

I noticed that two of the column names in 'dat' dataframe were wrong (perhaps a recent update?). middle is now xmiddle.

p + geom_segment(data=dat, aes(x=xmin, xend=xmax, 
                               y=xmiddle, yend=xmiddle), colour="red", size=2)
Reasons:
  • Low length (0.5):
  • Has code block (-0.5):
  • Contains question mark (0.5):
  • Low reputation (1):
Posted by: Kyle Finn

79706236

Date: 2025-07-18 13:30:49
Score: 1.5
Natty:
Report link

I'm running selenium/standalone-chrome image in a VM with 1GB memory and got this error.

Maybe this is because of the lack of computing resource.

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

79706224

Date: 2025-07-18 13:17:46
Score: 1
Natty:
Report link

Try to give string for

     this.ddlDepartments.SelectedValue
as  above the code,
    string ddlDepts = this.ddlDepartments.SelectedValue;
then use this string "ddlDepts" in querystring. 
    
Reasons:
  • Low length (0.5):
  • Has code block (-0.5):
  • Low reputation (1):
Posted by: shilpa dixit

79706221

Date: 2025-07-18 13:14:45
Score: 3
Natty:
Report link

After working on this some time and getting nowhere I have decided to take the advice of Svyatoslav Danyliv and Scott Hannen - that is to forget Interop Excel and use ClosedXML. Have already made the change and it is working great!

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

79706220

Date: 2025-07-18 13:14:45
Score: 1
Natty:
Report link

All incognito tabs in a single browser window share the same cookiejar.

Since Spring's session management uses a session cookie (typically JSESSIONID), both tabs will send the same cookie to the server, and the server will correctly associate them with the same session.

So no.

Reasons:
  • Low length (0.5):
  • Has code block (-0.5):
  • Low reputation (1):
Posted by: Kósa Mátyás

79706212

Date: 2025-07-18 13:09:43
Score: 1.5
Natty:
Report link

pdftk is installed as a snap and those do not have access to all files, by default. Running

snap connect pdftk:removable-media

resolved the issue.

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

79706197

Date: 2025-07-18 12:57:40
Score: 1
Natty:
Report link

dataset is outdated or incompatible version

try this: pip install --upgrade datasets

Reasons:
  • Whitelisted phrase (-2): try this:
  • Low length (1.5):
  • No code block (0.5):
  • Low reputation (1):
Posted by: Panyam Karthikeya

79706190

Date: 2025-07-18 12:52:39
Score: 0.5
Natty:
Report link

I was finally able to understand where the difference is coming from. I was using GPU for Tensorflow/Keras so the computations are indeed different from Numpy, which runs on CPU.

Using this to have Tensorflow/Keras running on CPU got me the same result as in Numpy:

import os
os.environ['CUDA_VISIBLE_DEVICES'] = '-1'
Reasons:
  • Has code block (-0.5):
  • Self-answer (0.5):
  • Low reputation (0.5):
Posted by: el_grezeq

79706188

Date: 2025-07-18 12:47:38
Score: 2
Natty:
Report link

I wrote a page for that. Check it out.

https://onacit.github.io/sql-words-checker/

Reasons:
  • Blacklisted phrase (0.5): Check it out
  • Probably link only (1):
  • Low length (2):
  • No code block (0.5):
  • High reputation (-2):
Posted by: Jin Kwon

79706179

Date: 2025-07-18 12:41:36
Score: 1
Natty:
Report link

Set the maxParallelForks for both test and integrationTest

You can find more about it here.

Or if you want to run test and integrationTest simultaneously set

org.gradle.parallel=true

in your gradle.properties file. docs

Reasons:
  • Low length (0.5):
  • Has code block (-0.5):
  • Low reputation (1):
Posted by: Kósa Mátyás

79706178

Date: 2025-07-18 12:39:36
Score: 1
Natty:
Report link

Currently, the most 'modern' approach (with build.gradle.kts file) would be like this:

android {
    packaging {
       resources.excludes.add("META-INF/*")
    }
}
Reasons:
  • Low length (1):
  • Has code block (-0.5):
  • Low reputation (0.5):
Posted by: PurrgnarMeowbro

79706165

Date: 2025-07-18 12:30:33
Score: 4
Natty:
Report link
SCRIPT_STR( " import re import nltk from nltk.corpus import stopwords  # Ensure stopwords are downloaded (run once in TabPy environment) try:     stopwords.words('english') except:     nltk.download('stopwords')  stop_words = set(stopwords.words('english') +                  stopwords.words('german') +                  stopwords.words('spanish') +                  stopwords.words('italian'))  def clean_text(text):     if not isinstance(text, str):         return ''     text = text.lower()     text = re.sub(r'[^a-záéíóúüñçßäöëêèàâî\s]', '', text)     words = [w for w in text.split() if w not in stop_words and len(w) > 1]     return ' '.join(words)  return [clean_text(t) for t in _arg1] ", [Comments] )

I did something in python but not working can anyone help

Reasons:
  • Blacklisted phrase (1): but not working
  • RegEx Blacklisted phrase (3): can anyone help
  • Long answer (-0.5):
  • Has code block (-0.5):
  • Low reputation (1):
Posted by: Manish Mukherjee

79706154

Date: 2025-07-18 12:20:31
Score: 0.5
Natty:
Report link

Formula must be a valid sql. I would write it like with {alias} placehoder which reference table in from clause. Hibernate will replace alias with alias to 'a' table.

@Formula("(SELECT COUNT(*) FROM b WHERE b.a_id = {alias}.id)")
Reasons:
  • Low length (0.5):
  • Has code block (-0.5):
  • Low reputation (0.5):
Posted by: Conrad

79706151

Date: 2025-07-18 12:18:30
Score: 1
Natty:
Report link

In game development, AI car development for computer players involves creating algorithms that allow non-human drivers to navigate, compete, and respond intelligently to dynamic environments. These AI-controlled cars use pathfinding, decision trees, neural networks, or behavior trees to simulate realistic driving behavior—such as overtaking, braking, avoiding obstacles, and adapting to the player's actions.

Developers often program these virtual drivers to learn from their environment and improve over time, making gameplay more challenging and engaging. Advanced AI even allows cars to mimic human-like driving styles or race strategies.

For those building games or simulations that require intelligent virtual agents, using professional AI development services can help implement sophisticated driving logic, real-time decision-making, and machine learning models that enhance the overall user experience.

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

79706150

Date: 2025-07-18 12:18:30
Score: 1.5
Natty:
Report link

Ok, found the problem. We installed DacFX on the target machine, but it turned out to be an older version. Once we used the same version as was installed on the build agent we were able to continue with the deployment.

So if anyone here has the same issue: Install DacFX on the TARGET machine as well as on your build agent. DACPAC files need to be copied to the target machine as SQLPackage executes the deployment on the target server, not from the devops agent.

Reasons:
  • No code block (0.5):
  • Self-answer (0.5):
  • Low reputation (0.5):
Posted by: Koen van Wielink

79706146

Date: 2025-07-18 12:11:29
Score: 2
Natty:
Report link

Why not just put cache variable outside react code, and have inside
validUntilDate: ..
data: ..

And then you can serve cache.data if validUntilDate is < Date.now(), otherwise fetch again and populate with new data & date

Reasons:
  • Low length (0.5):
  • No code block (0.5):
  • Starts with a question (0.5): Why not
  • Low reputation (0.5):
Posted by: Ilija Lončarević

79706139

Date: 2025-07-18 12:05:27
Score: 2
Natty:
Report link

If cursor was created via CreateCursor/CreateIconIndirect/CreateIconFromResource/CreateIconFromResourceEx call then there is only one instance of HICON and you can get bitmap from it with GetIconInfoEx/GetIconInfoEx call (as you already doing).

But if cursor was loaded from file or resource via for LoadCursor/LoadImage then you can try to get ICONINFOEX structure with GetIconInfoEx and then use wResID/szModName/szResName in LoadImage call with desired size (DPI-aware).

Something like:

UINT dpi = GetDpiForWindow(hWnd);
INT x = GetSystemMetricsForDpi(SM_CXICON, dpi);
INT y = GetSystemMetricsForDpi(SM_CYICON, dpi);

ICONINFOEX iconInfoEx = {0};
GetIconInfoEx(hIcon, &iconInfoEx);
HMODULE hModule = GetModuleHandle(iconInfoEx.szModName);

HCURSOR hCursor = LoadImage(hModule, iconInfoEx.szResName != NULL ? iconInfoEx.szResName : MAKEINTRESOURCE(iconInfoEx.wResID), x, y, LR_DEFAULTSIZE);

Some info on this topic in Raymond Chen blog:

Reasons:
  • Probably link only (1):
  • Long answer (-0.5):
  • Has code block (-0.5):
  • Ends in question mark (2):
Posted by: DJm00n

79706136

Date: 2025-07-18 12:04:27
Score: 1
Natty:
Report link

With Power BI, the OAuth client is maintained by Azure itself.

You will have to initiate the connectivity using Microsoft SSO, and on Snowflake, you will have to create an external OAuth for Power BI.

The link mentioned the steps you shall have to follow.

https://docs.snowflake.com/en/user-guide/oauth-powerbi

If you are creating multiple clients for different applications on Azure, then you might get into error creating a new security integration, as Snowflake does not allow creating a security integration with the same issuer.

In that case the following article will be helpful: https://community.snowflake.com/s/article/Solution-Connect-to-Snowflake-From-Power-BI-Using-SSO-When-There-Is-An-Existing-OAuth-Integration

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

79706130

Date: 2025-07-18 11:57:25
Score: 2.5
Natty:
Report link

Instead of immediately sending an adaptive card to a channel, first send a normal message to a channel. Afterwards, add a second step which updates an adaptive card but choose the Message-ID from the previous step.

This post has helped me and it shows the necessary steps: Notification of workflows

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

79706124

Date: 2025-07-18 11:50:23
Score: 0.5
Natty:
Report link

To resolve this, I disabled the horizontal spacers that AG Grid adds for pinned sections by applying the following CSS:

.ag-horizontal-left-spacer{
  display: none !important;
}
.ag-horizontal-right-spacer{
  display: none !important;
}

This removed the additional scrollbars under the pinned columns, resulting in a clean layout with only one horizontal scrollbar for the main scrollable area.

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

79706122

Date: 2025-07-18 11:49:22
Score: 3.5
Natty:
Report link

I'm working on defining routes in CodeIgniter 4 and want to confirm the best professional way to structure the routes, especially when using both POST and GET methods for editing and deleting records.

If both actions (edit and delete) are using the POST method, this is a alternative way to define a routes I’m using:

$routes->post('admin/news/edit/(:any)', 'Admin_news::edit/$1');

$routes->post('admin/news/delete/(:any)', 'Admin_news::delete/$1');

Alternatively, if the delete method is accessed via GET, then:

$routes->get('admin/news/delete/(:any)', 'Admin_news::delete/$1');

Please let me know if this approach is acceptable and follows best practices, or if there are any recommended improvements for cleaner or more secure route definitions.

Reasons:
  • RegEx Blacklisted phrase (2.5): Please let me know
  • Long answer (-0.5):
  • No code block (0.5):
  • Low reputation (1):
Posted by: venkata nikitha

79706120

Date: 2025-07-18 11:47:22
Score: 0.5
Natty:
Report link

Muqaddas Bilal

23 Parklands Way

Blackburn

BB2 4QS

Email: [email protected]

Mobile: 07932 084243

DOB: 09.06.2000

PROFILE

A creative and hardworking individual with a passion for event planning and decoration. Known for her attention to detail and ability to create beautiful, memorable party setups using balloons, ribbons, and handmade floral decorations. Originally from Pakistan and based in the UK since August 2024. Brings a positive attitude, artistic flair, and a strong sense of organisation to everything she does.

OBJECTIVE

To work in a creative and dynamic environment where I can use my event decoration and planning skills to contribute to successful celebrations and experiences. Keen to grow professionally within the events, retail or customer service sectors.

SKILLS AND COMPETENCIES

• Event and party planning

• Balloon and ribbon decor

• Floral and ribbon crafting

• Table and venue styling

• Friendly, reliable and organised

• Excellent communication and teamwork

• Strong attention to detail

• Former volleyball player – team spirit and coordination

EDUCATION

FG Post Graduate College for Women, Pakistan

FA – Passed

Gilani School, Pakistan

Completed Secondary Education

INTERESTS

I enjoy planning events and decorating spaces for special occasions such as birthdays and family gatherings. I love working with balloons, ribbons and flowers to create beautiful set-ups. I also enjoy volleyball, socialising and exploring creative ideas online.

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

79706114

Date: 2025-07-18 11:42:21
Score: 3.5
Natty:
Report link

When using AVSpeechSynthesizer and creating multiple utterances, the simulator may drop some of them.

Reasons:
  • Low length (1):
  • No code block (0.5):
  • Single line (0.5):
  • Starts with a question (0.5): When
  • Low reputation (1):
Posted by: Oliver Oppitz

79706108

Date: 2025-07-18 11:36:19
Score: 2
Natty:
Report link

I also facing this issue.

I am sending a large data via intent.

ArrayList<MyObj>list = new ArrayList<>();

myintent.putExtra("data",list); //This line is causing the TransactionTooLargeException

Instead of sending the data in intent, I make a static global variable and use that variable in both activity.

public static ArrayList<MyObj>list = new ArrayList<>();

This is how i resolve the issue.

Reasons:
  • Blacklisted phrase (1): also facing this
  • No code block (0.5):
  • Low reputation (0.5):
Posted by: chitraksh bairathee

79706103

Date: 2025-07-18 11:32:18
Score: 1
Natty:
Report link

Adding both of these was a catch all:

// @match        *://*/*
// @match        *:///*/*

The below one matches local files.

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

79706097

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

I don’t think this is related to GA4 settings, GTM doesn’t really connect to GA4; it just sends the requests based on your configuration.

Here’s a bit more info about the issue. From what I’ve seen, you likely just need to include the user parameters inside the Event Parameters field, as someone suggested.

I haven’t tested it yet myself, since this is quite new.

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

79706093

Date: 2025-07-18 11:22:15
Score: 3.5
Natty:
Report link

TL;DR: First off, remove binding redirects, then despair ahead.

Binding Redirects (remove them)

A common solution people recommend for this problem is to create a binding redirect.

Quite often, though, a binding redirect which already exists (and was added in the past) IS the cause of the problem, and removing the binding redirect is the solution. So check all your app.config and web.config files for suspicious binding redirects for the affected module, and try to remove them before you try to change them. If after removing all binding redirects you still get a similar error (often it's about a different version), then you may consider adding a binding redirect back where needed (and creating a new annoying problem for the poor sob who has to update the NuGet packages the next time).

Binding redirects are the "DLL hell" of .NET framework. Nobody I know knows what they are and how they work, there is hardly any understandable documentation for them online, and problems with binding redirects always hit you at the worst of times, when the last thing you want to do is to nerd out about some peculiar feature of your language and build system. Not even I am autistic enough for binding redirects to pique my interest. Even Github Copilot refuses to answer questions about binding redirects, it seems.

Gacutil (DON'T!)

Another common solution people always keep recommending is to perform some magical incantation that involves the gacutil command.

While this may "work", it is a manual intervention that makes some global change on your personal development system, but not in the sources or build files of your project. Will your built project now work on every target system it is meant to be deployed to? Will other developers on your team have to run the same command? And your customers, too? Who is going to tell them? And will you even remember you ran this command and what the exact command-line was that you copied from StackOverflow (or from some AI answer that scraped it from SO)?

This is how you run into situations where something "works for you" and your manager will respond with that worn out joke: "OK, then we ship your computer".

Running gacutil is almost NEVER the right solution unless you are a consumer and not a developer trying to get your own code to build and run (which is the target audience of this website). When you are looking at a gacutil command line on some Chinese language website you found with Google, then it's time to turn off your computer, call it a week and head out for drinks.

Reasons:
  • Blacklisted phrase (1): StackOverflow
  • RegEx Blacklisted phrase (2): even I am
  • Long answer (-1):
  • Has code block (-0.5):
  • Me too answer (2.5): get a similar error
  • Contains question mark (0.5):
  • High reputation (-1):
Posted by: Florian Winter

79706089

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

Yes, it's definitely possible to use AutoIt to handle security code entry in pop-up boxes during Selenium WebDriver automation. AutoIt is particularly useful for handling Windows-native dialogs and pop-ups that Selenium can't interact with directly.

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

79706087

Date: 2025-07-18 11:15:14
Score: 3
Natty:
Report link

For me, it turned out that I had to add the exclusion rules to tsconfig.json too.

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

79706086

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

As for now the recommended way is to use DataFrameWriterV2 API:

So the modern way to define partitions using spark DataFrame API is:

import pyspark.sql.functions as F

df.writeTo("catalog.db.table") \
    .partitionedBy(F.days(F.col("created_at_field_name"))) \
    .create()
Reasons:
  • Probably link only (1):
  • Low length (0.5):
  • Has code block (-0.5):
Posted by: SleepWalker

79706083

Date: 2025-07-18 11:12:13
Score: 3
Natty:
Report link

Low-end devices may struggle with barcode scanning due to hardware limitations. Optimize image processing, restrict scan area, and consider dedicated SDKs.

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

79706074

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

Yes, this is by design. It's by design for custom collectors for reasons like Accuracy , Simplicity , Low Impact:

This pattern is for custom collectors pulling external data. Standard metrics like Counter are stateful and long-lived.

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

79706073

Date: 2025-07-18 11:06:11
Score: 2.5
Natty:
Report link

Have you explored Zoho Apptics?

It’s built for modern apps and supports:

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

79706072

Date: 2025-07-18 11:05:11
Score: 3.5
Natty:
Report link

The following article from snowflake regarding connectivity using azure client credentials oauth would be a good reference for the use case.

https://community.snowflake.com/s/article/Secure-Snowflake-Integration-with-GitHub-Actions-Using-Azure-OAuth-Client-Credentials-Flow

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

79706055

Date: 2025-07-18 10:48:07
Score: 6
Natty: 7
Report link

may this article help : Flutter Architecture Guide

Reasons:
  • Blacklisted phrase (1): this article
  • Probably link only (1):
  • Low length (2):
  • No code block (0.5):
  • Single line (0.5):
  • Low reputation (1):
Posted by: Neon Parmar

79706053

Date: 2025-07-18 10:47:06
Score: 2
Natty:
Report link

Docker volumes do not natively support transparent decompression for read-only files. However, this functionality can be achieved by mounting a decompressed archive using tools inside the container, allowing seamless access without manual extraction. This setup enables efficient use of storage while keeping the files in a readable format.

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

79706045

Date: 2025-07-18 10:39:04
Score: 2.5
Natty:
Report link

Here are a few relevant-looking Unicode characters for each that I copied from this symbols website:

Email: 📧✉🖂📨

Save: 💾 ⬇ 📥

Print: 🖨

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

79706041

Date: 2025-07-18 10:34:03
Score: 1.5
Natty:
Report link
import pyautogui

pyautogui.press('b')

You can try the pyautogui library, which has better compatibility.

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

79706040

Date: 2025-07-18 10:33:02
Score: 2.5
Natty:
Report link

You can manually set the timezone used by the JVM to UTC at application startup by using `TimeZone.setDefault(TimeZone.getTimeZone("UTC"))`. This way, when you use `Date`, it will use the timezone you've set. Note that this operation affects the entire program but does not affect the operating system.

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

79706039

Date: 2025-07-18 10:32:02
Score: 1.5
Natty:
Report link

Use Electron's webContents.findInPage() method to search text within the renderer process, and webContents.stopFindInPage() to clear results, mimicking browser Ctrl+F functionality.

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

79706036

Date: 2025-07-18 10:31:02
Score: 2
Natty:
Report link

I have used return redirect(url_for("user")) instead of explicitly rendering the user.html again and again, that method works too..

This works because if I redirect then the page reloads again with a "GET" request instead of rendering user.html in "POST" request, since data cannot be retrieved and displayed from the DB if the current method is post

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

79706030

Date: 2025-07-18 10:21:59
Score: 0.5
Natty:
Report link

Something like this worked well for me (I'm not on GPU though)

#OVERWRITE _create_dmatrix
class MyXGBOther(XGBRegressor):
  def __init__(self, **kwargs):
    """Initalize Trainer."""
    super().__init__(**kwargs)
    self.model_ = None #ensures it will have no knowledge of the regular model (see override in fit() method)

  def fit(self, X, y,**kwargs: Any):
    if not isinstance(X, DMatrix): raise TypeError("Input must be an xgboost.DMatrix")
    if y is not None: raise TypeError("Must be used with a y argument for sklearn consistency, but y labels should be contained in DMatrix X") 
    self.model_ = xgb.train(params=self.get_xgb_params(), dtrain=X, **kwargs)
    return self

  def predict(self, X, **kwargs: Any):
    if not isinstance(X, DMatrix): raise TypeError("Input must be an xgboost.DMatrix")
    return self.model_.predict(data=X, **kwargs)
Reasons:
  • Long answer (-0.5):
  • Has code block (-0.5):
  • Unregistered user (0.5):
  • Low reputation (1):
Posted by: Marion

79706027

Date: 2025-07-18 10:19:58
Score: 1
Natty:
Report link

Check the cluster pod logs, that is where the real error is as the barman plugin runs as a sidecar to the postgresql database pod.

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

79706021

Date: 2025-07-18 10:15:57
Score: 3.5
Natty:
Report link

Zoho Apptics does the Performance monitoring for iOS apps, it can pulls in iOS device-level performance insights via MetricKit.

https://help.zoho.com/portal/en/kb/zoho-apptics/application-performance-monitoring/articles/performance-metrics-in-zoho-apptics#Overview

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

79706018

Date: 2025-07-18 10:12:57
Score: 0.5
Natty:
Report link
import random
import smtplib
from email.mime.text import MIMEText

# 1. Fungsi buat kode acak
def generate_verification_code(length=6):
    return ''.join(str(random.randint(0, 9)) for _ in range(length))

# 2. Buat kode
code = generate_verification_code()

# 3. Email tujuan dan isi
recipient_email = "[email protected]"
subject = "Kode Verifikasi Anda"
body = f"Kode verifikasi Anda adalah: {code}"

# 4. Buat email
msg = MIMEText(body)
msg['Subject'] = subject
msg['From'] = "[email protected]"   # Ganti dengan email kamu
msg['To'] = recipient_email

# 5. Kirim via SMTP Gmail
try:
    smtp_server = smtplib.SMTP_SSL("smtp.gmail.com", 465)
    smtp_server.login("[email protected]", "password_aplikasi_anda")  # Gunakan password aplikasi Gmail
    smtp_server.send_message(msg)
    smtp_server.quit()
    print(f"Kode berhasil dikirim ke {recipient_email}")
except Exception as e:
    print("Gagal mengirim email:", e)
Reasons:
  • Long answer (-0.5):
  • Has code block (-0.5):
  • Unregistered user (0.5):
  • Low reputation (1):
Posted by: Naasru

79706000

Date: 2025-07-18 09:57:53
Score: 1
Natty:
Report link

2025

Just found out the new width: stretch. This is not well standard at the time this comment was published, but I want to mention it for the future use. See https://developer.mozilla.org/en-US/docs/Web/CSS/width#stretch

.parent {
  border: solid;
  margin: 1rem;
  display: flex;
}

.child {
  background: #0999;
  margin: 1rem;
}

.stretch {
  width: stretch;
}
<div class="parent">
  <div class="child">text</div>
</div>

<div class="parent">
  <div class="child stretch">stretch</div>
</div>

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

79705996

Date: 2025-07-18 09:54:52
Score: 1
Natty:
Report link

2025

Just found out the new width: stretch. This is not well standard at the time this comment was published, but I want to mention it for the future use. See https://developer.mozilla.org/en-US/docs/Web/CSS/width#stretch

.parent {
  border: solid;
  margin: 1rem;
  display: flex;
}

.child {
  background: #0999;
  margin: 1rem;
}

.stretch {
  width: stretch;
}
<div class="parent">
  <div class="child">text</div>
</div>

<div class="parent">
  <div class="child stretch">stretch</div>
</div>

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

79705992

Date: 2025-07-18 09:50:51
Score: 2.5
Natty:
Report link

I faced the same issue today. I downgraded from version 15 to 14, and it worked.

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

79705989

Date: 2025-07-18 09:49:51
Score: 2
Natty:
Report link

data = np.random.random(size=(4,4))

df = pd.DataFrame(data)

# Convert DataFrame to a single-column Series

stacked_data = df.stack() # Stacked in a single column

stacked_data.plot.box(title="Boxplot of All Data") # Draw a single box plot

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

79705988

Date: 2025-07-18 09:49:51
Score: 3
Natty:
Report link

Click the 3 dots in "Device Manager", and click on "Cold Boot Now" fixed it for me

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

79705974

Date: 2025-07-18 09:35:48
Score: 0.5
Natty:
Report link

Well, doing some more experiments following the suggestions on commentators, to who many thanks, I tried simply moving the helper, without view_context and helper_method declaration out of the controller and into a helper (i.e., app/helpers/component_helper.rb)

module ComponentHelper
  def render_image_modal(**kwarg)
    render(ImageModalComponent.new(**kwarg)) do |component|
      yield component
    end
  end
end

and suddenly everything works.

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

79705969

Date: 2025-07-18 09:33:47
Score: 1.5
Natty:
Report link

Old topic but seems still not really solved. We have also many features and we have often problem how to test it. We have a ci/di to deploy each feature to a own environment.
Problem is we have so many and long time features. And the customer want to test some of theme and some of them together.
Some feature has some dependencies. Merging the feature together is much manual work and not nice. So I create a git subcommand to merge easily many feature together and deploy it to one environment.

https://github.com/git-automerge/automerge

Reasons:
  • No code block (0.5):
  • Low reputation (1):
Posted by: Bennet Klarhölter

79705964

Date: 2025-07-18 09:30:46
Score: 0.5
Natty:
Report link

Similarly to the answer by @Panda Kim, you could instead melt() the data:

df.melt().boxplot(column="variable")
Reasons:
  • Low length (1):
  • Has code block (-0.5):
  • User mentioned (1): @Panda
  • High reputation (-1):
Posted by: Matt Pitkin