79650086

Date: 2025-06-02 17:35:16
Score: 1
Natty:
Report link

Yes it's possible.The reason your original code didn't behave like your DOT example is because NetworkX doesn't automatically use fixed positions unless you explicitly define them in Python. As @Sanek Zhitnik pointed out a graph doesn't have an orientation.

In your DOT format example, you had this:

dot
    digraph {
    layout="neato"
    node[ shape=rect ];

    a [ pos = "2,3!" ];
    b [ pos = "1,2!" ];
    c [ pos = "3,1!" ];
    d [ pos = "4,0!" ];

    c -> d ;
    b -> c ;
    b -> a ;
    a -> c ;
}

You have to do something like this:

import networkx as nx
import matplotlib.pyplot as plt

G = nx.DiGraph()
G.add_edges_from([('b','a'), ('b','c'), ('a','c'),('c','d')])

# Fixed positions (same layout every time)
pos = {
    'a': (2, 3),
    'b': (1, 2),
    'c': (3, 1),
    'd': (4, 0)
}


nx.draw(G, pos, with_labels=True, node_shape='s', node_color='lightblue', arrows=True)
plt.show()
Reasons:
  • Long answer (-0.5):
  • Has code block (-0.5):
  • User mentioned (1): @Sanek
  • Low reputation (1):
Posted by: Rian

79650081

Date: 2025-06-02 17:29:15
Score: 0.5
Natty:
Report link

If your Node.js app is running on Windows (and Excel is installed on this machine), you can use VBScript to run Excel Macro.

This is About VBScript to run VBA Macro: Run Excel Macro from Outside Excel Using VBScript From Command Line

This is how to run VBScript from Node.js: Run .vbs script with node

Reasons:
  • Whitelisted phrase (-1.5): you can use
  • Low length (0.5):
  • No code block (0.5):
  • Low reputation (1):
Posted by: Dmitrii Grishin

79650075

Date: 2025-06-02 17:24:13
Score: 1
Natty:
Report link

I don't have an answer to this, but I'm looking for a similar result.

I work at a campground with my wife, and she's looking for this:

1: We have a questionnaire on our website, asking for information about the child they want to send to camp.

2: When questionnaire is answered, the responses go into a Google Sheet, as horizontal lines. (Header with each individual questionnaire becoming it's own line, in turn)

3: So far, so good. This process is working as expected. I can export the Google Sheet, and save it as a document locally.

4: Here's the issue: My wife would like to have all of those individual horizontal lines exported to a NEW spreadsheet, into two vertical columns, on individual tabs in the destination spreadsheet. Example:

4A: Header row (row 1 and row 2) exports EACH TIME to Header COLUMN (Column A), with the next row (row 2 or row 3 or row 4, et al) exporting to the next tab in a vertical arrangement, so 1,2 becomes A1.

4B: The next tab created automatically, would contain row 1 and row 3, with Column 1 containing the information from Row 1 (the header row) and Column 2 containing the information from Row 3.

4C: The next tab created automatically, would contain row 1 and row 4, with Column 1 containing the information from Row 1 (the header row) and Column 2 containing the information from Row 4.

4D: And so on, and so forth.......

PLEASE assist me in this! LOL I also have ZERO idea how to actually implement the code, so some assistance there would also be EXCEPTIONALLY helpful!

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

79650065

Date: 2025-06-02 17:20:12
Score: 5.5
Natty:
Report link

but is (1101 read value: 0.53 predicted: 0.10) the anomaly you are trying to detect?

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

79650061

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

I just had the same problem and after some thinking I used:

HttpMessage

Message is to abstract, the request/response is send over Http, or Https so I think its clear to me, the rest is not describing enough.

Reasons:
  • Low length (0.5):
  • Has code block (-0.5):
  • Low reputation (0.5):
Posted by: Herman Van Der Blom

79650060

Date: 2025-06-02 17:17:10
Score: 4
Natty:
Report link

I'm using symlinks and didn't have site mapping enabled.

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

79650057

Date: 2025-06-02 17:15:09
Score: 2.5
Natty:
Report link

One thing that tripped me up: in my RStudio instance, using shift + tab only worked in Source mode (i.e. not in Visual mode).

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

79650053

Date: 2025-06-02 17:11:08
Score: 1
Natty:
Report link

I could fix the problem by deleting existing virtual box host only ethernet adapter in windows control panel

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

79650047

Date: 2025-06-02 17:06:07
Score: 3.5
Natty:
Report link

app.all('*catchall', (req, res, next) => {})

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

79650041

Date: 2025-06-02 17:00:05
Score: 0.5
Natty:
Report link

My answer is 10 years later but in case like that, you need to use a more precise model for the maven shade plugin. Use this form of this plugin:

<build>
  <plugins>
    <plugin>
      <!-- Create a FAT JAR -->
      <groupId>org.apache.maven.plugins</groupId>
      <artifactId>maven-shade-plugin</artifactId>
      <version>3.6.0</version>
      <executions>
        <execution>
          <phase>package</phase>
            <goals>
              <goal>shade</goal>
            </goals>
            <configuration>
              <transformers>
                  <transformer implementation="org.apache.maven.plugins.shade.resource.ManifestResourceTransformer">
                    <mainClass>flag.yourCompany.yourMainClass</mainClass>
              </transformer>
            </transformers>
            <shadedArtifactAttached>true</shadedArtifactAttached>
            <shadedClassifierName />
          </configuration>
        </execution>
      </executions>
    </plugin>
  </plugins>
</build>

Now, If you have an IDE like JetBrains IntelliJ IDEA, put this command on it for the maven configuration:

clean compile verify

If you want to perform a command in the folder of your project that contains pom.xml, you can just do it:

mvn verify

Now to check if your jar has a manifest, copy-paste the shaded version Name-1.0-SNAPSHOT-shaded.jar in a file named Name.zip (note that you must change the extension) and go to META-INF folder. You can finally see a MANIFEST.MF file in the list of files. Extract it and see the content, it must be like that:

Manifest-Version: 1.0
Created-By: Maven JAR Plugin 3.4.1
Build-Jdk-Spec: 24
Main-Class: flag.yourCompany.yourMainClass

The command (replace with your yourMainClass-yourVersion-shaded.jar):

java -jar Name-1.0-SNAPSHOT-shaded.jar

now works in the terminal if you have correctly configurated your JAVA_HOME environment variable! (but I don't know if it is executable directly by Windows cause I have differents versions of Java in my PATH)

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

79650038

Date: 2025-06-02 16:58:05
Score: 1.5
Natty:
Report link

const checkbox = document.getElementById("shipProtect");
  const priceDisplay = document.getElementById("price");
  const basePrice = 149.94;
  const protectionCost = 4.99;
  checkbox.addEventListener("change", () => {
    let price = basePrice - (checkbox.checked ? 0 : protectionCost);
    priceDisplay.textContent = `Only USD $${price.toFixed(2)}`;
  });
<input type="checkbox" id="shipProtect" checked>
<p id="price">Only USD $149.94</p>

Shipping Protection

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

79650030

Date: 2025-06-02 16:50:02
Score: 1.5
Natty:
Report link

According to the documentation:

https://docs.python.org/3/reference/compound_stmts.html#the-try-statement

It is an expected behavior as:

If the finally clause executes a return, break or continue statement, the saved exception is discarded:

def f():
...     try:
...         1/0
...     finally:
...         return 42
...
>>> f()
42
Reasons:
  • Probably link only (1):
  • Low length (0.5):
  • Has code block (-0.5):
  • Low reputation (0.5):
Posted by: Wuelfhis Asuaje

79650018

Date: 2025-06-02 16:40:59
Score: 3
Natty:
Report link

user probably experienced a single-port. your browser may contribute to the port, should you consider adding a security socket to insert on your computer.

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

79650013

Date: 2025-06-02 16:38:58
Score: 3.5
Natty:
Report link

What helped me was erasing the port environmental variable from Railway. The Railway automatically assigns a dynamic port, and there is no need to write a hard-coded value.

Reasons:
  • Low length (1):
  • No code block (0.5):
  • Single line (0.5):
  • Starts with a question (0.5): What help
  • Low reputation (1):
Posted by: Nikita

79650008

Date: 2025-06-02 16:35:57
Score: 3
Natty:
Report link

I have a build of InnoSetup with inverted SILENT and SUPPRESSMSGBOXES logic.
https://github.com/nlevi-dev/SilentInnoSetup/releases/tag/v6.4.3

The produced installers with this build will behave as if the SILENT and SUPPRESSMSGBOXES flags were provided by default.

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

79649989

Date: 2025-06-02 16:19:53
Score: 1
Natty:
Report link

your dropdown appears too high because top: 100% positions it right below the .nav-link and not full navbar.try to apply this change over there.

.dropdown-menu-horizontal { top: calc(100% + 10px); /* Push it 10px below the navbar */ }

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

79649984

Date: 2025-06-02 16:16:52
Score: 0.5
Natty:
Report link

I had an issue where my js files were automatically put in the /src folder and not in /dist when writing tsc in terminal. I had set up the tsconfig.json file correctly.

Turns out I did not press save in VSCode after making changes to tsconfig.json file... After this it worked and my js files went to /dist file instead of the src file.

Reasons:
  • Whitelisted phrase (-1): it worked
  • No code block (0.5):
  • Low reputation (1):
Posted by: Markus Koponen

79649972

Date: 2025-06-02 16:08:49
Score: 0.5
Natty:
Report link

I know this is an old question, but I find myself in the same situation and I fix it by adding

pluginReact.configs.flat.recommended

As the first line in the new eslint.config.msj or .js file.

I hope this is useful for someone else.

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

79649969

Date: 2025-06-02 16:03:48
Score: 1
Natty:
Report link

It's ugly, but I've confirmed this works with both SpringBoot 2.7.18 and SpringBoot 3.4.5.

(and despite what you may read elsewhere, it does work on abstract classes, as long as the @Validated and the validation constraint are both on the abstract class)

import org.springframework.validation.annotation.Validated;

@Validated
public abstract class AbstractJwksAutoConfig {

    @javax.validation.constraints.Min(60000L)
    @jakarta.validation.constraints.Min(60000L)
    @javax.validation.constraints.Max(86400000L)
    @jakarta.validation.constraints.Max(86400000L)
    Long jwksRefreshTimeInMillis = 180000L;

    ...
}
Reasons:
  • Long answer (-0.5):
  • Has code block (-0.5):
  • User mentioned (1): @Validated
  • Self-answer (0.5):
  • Low reputation (0.5):
Posted by: dlipofsky

79649960

Date: 2025-06-02 15:58:47
Score: 1
Natty:
Report link

Gitlab started enforcing "Authorized groups and projects". Unless you whitelist your repo, this will break. I had the same issue and worked after whitelisting the repo/subgroup(s).

Link - https://about.gitlab.com/blog/2025/04/18/a-guide-to-the-breaking-changes-in-gitlab-18-0/

Reasons:
  • Whitelisted phrase (-1): I had the same
  • Low length (0.5):
  • No code block (0.5):
  • Low reputation (1):
Posted by: Abhinab Padhi

79649956

Date: 2025-06-02 15:56:46
Score: 1.5
Natty:
Report link

After multiple attempts over several years to resolve a persistent issue with my project, I finally found a solution with the help of Grok AI: disabling JavaScript caching on my CDN.

If deploying to a CDN (e.g., Netlify, Vercel), verify that the CDN is not aggressively caching JavaScript chunks or server responses. Clear the CDN cache after deployment.

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

79649951

Date: 2025-06-02 15:51:44
Score: 1.5
Natty:
Report link

Change from this in setup:

lc1.shutdown(0, false); lc1.setIntensity(0, 8); lc1.clearDisplay(0); lc2.shutdown(0, false); lc2.setIntensity(0, 8); lc2.clearDisplay(0);

To this:

lc1.shutdown(0, false); lc1.setIntensity(0, 8); lc1.clearDisplay(0);
lc2.shutdown(1, false); lc2.setIntensity(1, 8); lc2.clearDisplay(1);

Or else you just initialize and clear the first display.

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

79649940

Date: 2025-06-02 15:42:42
Score: 0.5
Natty:
Report link

Turns out that how you pickle makes a difference. If the dataframe was pickled through a pickle dump, it works:

with open('test.pkl','wb') as handle:
    pickle.dump(df,handle)

On second computer, in different file:

with open('path/to/test.pkl','rb') as handle:
    data = pickle.load(handle)
# or:
data = pd.read_pickle('path/to/test.pkl')

However: If you select pickle.HIGHEST_PROTOCOL as the protocol for dumping, the same error will arise no matter how the pickle is loaded

# Gave pickle with same missing module error on loading:
with open('test.pkl','wb') as handle:
    pickle.dump(df,handle,protocol=pickle.HIGHEST_PROTOCOL)

I have not done any investigation on why the error appears and came to this solution simply through trial and error.

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

79649935

Date: 2025-06-02 15:38:41
Score: 0.5
Natty:
Report link

I managed to achieve copying a Linux SDK from a working to a new PC with the following combination of file copying and registry editing (and thanks to SilverWarrior's mention of the .sdk file in a comment) (but I still have found no way to accomplish this via the IDE itself, so any tips about that are still welcome):

  1. Make sure that Delphi is closed on at least the new PC.

  2. Copy the SDK folder (including all files and subfolders) from the working PC to the new PC. (It might be most practical to zip the folder on the working PC, then transfer the zip file to the new PC, then unzip it there.) The SDK files are located in the place shown in Tools > Options > Deployment > SDK Manager, when the SDK is selected. "Local root directory" for the SDK might be for example $(BDSPLATFORMSDKSDIR)\ubuntu20.04.sdk.
    Screenshot of Delphi Tools > Options > SDK Manager

    BDSPLATFORMSDKSDIR is an environment variable in Delphi, whose value can be checked under Tools > Options > IDE > Environment variables. Note that the value can be overridden, so you have to check both the top and the bottom list.
    Screenshot of Delphi Tools > Options > Environment Variables

  3. Copy the .sdk file from the working PC to the new PC. The .sdk file is located in %APPDATA%\Embarcadero\BDS\23.0. (In my example, the .sdk file was named ubuntu20.04.sdk.)

  4. Edit the file EnvOptions.proj on the new PC, search for <PropertyGroup Condition="'$(Platform)'=='Linux64'">, and below that, modify this line:
    <DefaultPlatformSDK/>
    to this (using your own .sdk file name):
    <DefaultPlatformSDK>ubuntu20.04.sdk</DefaultPlatformSDK>

  5. Use the Registry Editor (regedit) on the working PC to locate the key Software\Embarcadero\BDS\23.0\PlatformSDKs under HKEY_CURRENT_USER. Export this key (or, if you have several SDKs and want to copy only one of them, select the specific SDK subkey) to a .reg file.
    Regedit showing the PlatformSDKs key

  6. Copy the .reg file to the new PC, right-click it there, and choose "Merge" so that it gets imported into the registry on the new PC.

After this, the SDK shows up in Delphi on the new PC, and Linux projects can be compiled using it.

Reasons:
  • Blacklisted phrase (0.5): thanks
  • Blacklisted phrase (1): any tips
  • Long answer (-1):
  • Has code block (-0.5):
  • Self-answer (0.5):
Posted by: Matthias B

79649932

Date: 2025-06-02 15:34:40
Score: 2.5
Natty:
Report link

After reading this documentation: https://learn.microsoft.com/en-us/entra/identity-platform/msal-js-prompt-behavior#supported-prompt-values
You should add prompt=select_account in your URL and it will works as you expect.

The main difference with prompt=login the user is not requested to enter his password everytime.

Reasons:
  • Blacklisted phrase (1): this document
  • Probably link only (1):
  • Low length (0.5):
  • Has code block (-0.5):
  • Low reputation (0.5):
Posted by: Cédric Nirousset

79649929

Date: 2025-06-02 15:32:39
Score: 0.5
Natty:
Report link

From JSP you have to call to the <action> if you are using API baseed on struts.xml. It it is not struts API then it's useless to use any plugin such as Rest plugin,and the request headersare parsed differently from both Struts and Spring frameworks. There's a lot of questions how to integrate Spring and Struts using Struts-Spring plugin, and you need to read them all to understand your problem. And it not concerned only the API calls, but a whole infrastructure of your application, including authentification and authorization services, validation services, session management services, etc. If you only need to validate the userId with the session variable to obtain it requires an authentication. If you just pass a userId as request parameter then retrieve it from there. If request is handled by Struts then it's just enough to declare an action class variable to store the value from the API call. If it is a spring then @RequestParam variable is populated from the URL, and you can compare it with the session variable, and so on.

Reasons:
  • Long answer (-1):
  • Has code block (-0.5):
  • Unregistered user (0.5):
  • Single line (0.5):
  • Low reputation (1):
Posted by: SOLoose

79649922

Date: 2025-06-02 15:25:37
Score: 0.5
Natty:
Report link

their website says setting should be modified as was suggested in a couple answers however it refused to stop suggesting comment code.

When I reset to default value it used comments:off instead of comments:false and that finally turned it off

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

79649919

Date: 2025-06-02 15:23:36
Score: 0.5
Natty:
Report link

// pubspec.yaml (Dependencies) dependencies: flutter: sdk: flutter just_audio: ^0.9.36 provider: ^6.1.1 cached_network_image: ^3.3.1

// lib/main.dart import 'package:flutter/material.dart'; import 'package:just_audio/just_audio.dart'; import 'package:provider/provider.dart'; import 'package:cached_network_image/cached_network_image.dart';

void main() => runApp(MyApp());

class Song { final String title; final String artist; final String url; final String coverUrl;

Song({required this.title, required this.artist, required this.url, required this.coverUrl}); }

class MusicPlayerProvider extends ChangeNotifier { final AudioPlayer _player = AudioPlayer(); List<Song> _songs = [ Song( title: 'Dreams', artist: 'Bensound', url: 'https://www.bensound.com/bensound-music/bensound-dreams.mp3', coverUrl: 'https://www.bensound.com/bensound-img/dreams.jpg', ), Song( title: 'Sunny', artist: 'Bensound', url: 'https://www.bensound.com/bensound-music/bensound-sunny.mp3', coverUrl: 'https://www.bensound.com/bensound-img/sunny.jpg', ), ]; int _currentIndex = 0;

List<Song> get songs =>

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

79649917

Date: 2025-06-02 15:20:35
Score: 0.5
Natty:
Report link

try adjusting the axis domain to start on a negative number and then setting the tick intervals to begin at 0:

xAxis={[{ data: [0, 2, 3, 5, 8, 10],tickInterval: [0,2,4,6,8,10,12], domain: [-2, 12]}]}

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

79649911

Date: 2025-06-02 15:18:34
Score: 4.5
Natty:
Report link

anabia_69_ password checking ..

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

79649907

Date: 2025-06-02 15:17:33
Score: 1.5
Natty:
Report link

This solution worked for me. Thanks for Code Hunter

sudo killall -9 com.apple.CoreSimulator.CoreSimulatorService

Reasons:
  • Blacklisted phrase (0.5): Thanks
  • Whitelisted phrase (-1): worked for me
  • Low length (1):
  • No code block (0.5):
  • Low reputation (0.5):
Posted by: Nasim Rony

79649906

Date: 2025-06-02 15:16:30
Score: 8.5 🚩
Natty: 5
Report link

I am facing the same problem with the extension, I tried the method that is given above, but it's still not working.

Reasons:
  • Blacklisted phrase (1): m facing the same problem
  • Blacklisted phrase (2): still not working
  • Low length (1):
  • No code block (0.5):
  • Me too answer (2.5): I am facing the same problem
  • Single line (0.5):
  • Low reputation (1):
Posted by: hijab gull

79649901

Date: 2025-06-02 15:13:29
Score: 0.5
Natty:
Report link

In fact, there are 2 root cause :

CODE_SIGN_IDENTITY = "Apple Distribution";
Reasons:
  • Has code block (-0.5):
  • Self-answer (0.5):
  • Low reputation (0.5):
Posted by: clem

79649898

Date: 2025-06-02 15:11:28
Score: 2.5
Natty:
Report link

I cant help you with why, but we are experiencing intermittent failures with WebSocket connections to Firebase Realtime Database (RTDB). The issue appears sporadically across different browsers and devices, and affects the stability of real-time data updates.

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

79649894

Date: 2025-06-02 15:08:27
Score: 2.5
Natty:
Report link

from moviepy.editor import VideoFileClip, ColorClip, TextClip, CompositeVideoClip, concatenate_videoclips

# Ruta de tu video original (ajusta si el nombre o ruta es diferente)

video = VideoFileClip("mi_video.mp4") # ← Cambia el nombre si tu archivo tiene otro

# Crear clips de introducción y cierre con fondo negro (4 segundos cada uno)

inicio = ColorClip(size=video.size, color=(0, 0, 0), duration=4)

final = ColorClip(size=video.size, color=(0, 0, 0), duration=4)

# Texto al inicio

texto_inicio = TextClip("Aunque toque bajar la cabeza...", fontsize=42, font='Amiri-Bold', color='white')

texto_inicio = texto_inicio.set_duration(4).set_position('center')

# Texto al final

texto_final = TextClip("...uno nunca debe dejar de avanzar", fontsize=42, font='Amiri-Bold', color='white')

texto_final = texto_final.set_duration(4).set_position('center')

# Crear clips compuestos con texto sobre fondo negro

intro = CompositeVideoClip([inicio, texto_inicio])

outro = CompositeVideoClip([final, texto_final])

# Clip principal (sin subtítulos por ahora, pero se pueden agregar si los tienes)

video_con_texto = video

# Unir todo: introducción + video + cierre

video_final = concatenate_videoclips([intro, video_con_texto, outro])

# Guardar el resultado

video_final.write_videofile("video_editado_final.mp4", codec="libx264", audio_codec="aac")

Reasons:
  • Blacklisted phrase (2): Crear
  • Long answer (-1):
  • No code block (0.5):
  • Low reputation (1):
Posted by: JOHAN BERNAL

79649893

Date: 2025-06-02 15:06:26
Score: 0.5
Natty:
Report link

Firstly, your goal of detecting unreachable code with gcovr doesn't seem useful. The execution count of unreachable code is trivially zero.

Using gcov (the text-based output and backend for gcovr), we can generate a file with the source code with an execution count next to each line. If a line is never executed it is shown as "#####". If it is not executable (whitespace, comments, a single brace, etc.) it is shown as "-".

Your first unreachable code segment (in the ifdef) is shown as not executable as there is no code generated from it. The pre-processor prunes this away before compilation so it may as well not exist as far as the compiler is concerned. It gets a dash.

Your second unreachable function (after returning) is removed by the compiler even at -O0 in my testing. This means the line is not executable and gcov gives it a dash.

The definitions of foo and bar will generally be kept by the compiler in case other compilation units need it. Even if it is not needed, as long as it generates some instruction at compilation, gcov can track it. So it will get an execution count.

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

79649890

Date: 2025-06-02 15:04:26
Score: 1.5
Natty:
Report link

If you include the full OpenAPI schema definition, you will see the file you have is not having any errors. This is why it's important to provide the full detail for your error report.

enter image description here

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

79648882

Date: 2025-06-02 14:17:15
Score: 0.5
Natty:
Report link

Thank you SO MUCH for self-posting the answer to your problem. I had the same problem already for quite a while, and reading your post confirmed my suspicion that my build was erroneous in some way, I felt it had to be some missing JDK module (it ran on my IDE, not after my build).

And yes indeed, this module was the missing one!

Kudos to you!!!

Reasons:
  • Blacklisted phrase (0.5): Thank you
  • Whitelisted phrase (-1): I had the same
  • No code block (0.5):
  • Low reputation (0.5):
Posted by: sudo

79648877

Date: 2025-06-02 14:13:14
Score: 2.5
Natty:
Report link

Installing the new package npm i @stomp/stompjs seems to have solved this for me.

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

79648874

Date: 2025-06-02 14:13:14
Score: 3.5
Natty:
Report link

This is still the case and it doesn't seem to be consistent across usace.army.mil addresses. Some go through.

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

79648872

Date: 2025-06-02 14:12:13
Score: 2.5
Natty:
Report link

Matthias' answer was the one that did it for me (upvote him too).

Here it is as a one-liner: `python -c "import setuptools; print(setuptools._version_)"`

Reasons:
  • Blacklisted phrase (0.5): upvote
  • Low length (1):
  • No code block (0.5):
  • Starts with a question (0.5): was the one that
Posted by: Adam Smooch

79648867

Date: 2025-06-02 14:10:12
Score: 1.5
Natty:
Report link

Well,I think the problem is with attaching agents to the oauth-service when running spring boot application. If you already have agents running on the same port then it might take a time to wait until the agent free the required port. You should take a time to configure your spring boot application for running agents on different ports.

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

79648864

Date: 2025-06-02 14:06:11
Score: 2.5
Natty:
Report link

Recently, i also faced this issue, i followed the below commands, then it works fine for me

  1. dfx stop

  2. dfx start --clean --background

  3. dfx deploy

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

79648860

Date: 2025-06-02 14:03:10
Score: 2
Natty:
Report link

After a lot of researches and tries most of the tools (e.g. Typewriter) and libs (e.g. Nswag, Kiota), nothing can satify my very simple requirement (a very simple transformation from C# to TS).

In the end, I decided to implement the tool myself using the following libraries:

Find more details in this post: https://kalcancode.wordpress.com/2025/06/02/how-to-build-a-c-to-typescript-generator-tools-and-ideas/

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

79648859

Date: 2025-06-02 14:03:10
Score: 3.5
Natty:
Report link

Putting the question and answer together, it appears that Table 9 is saying there are 4 groups. 2 of them are of a length and 2 are of a different length (in terms of DataWords).

Is that correct?

I should interleave all four block groups until the first two have been exhausted - and then interleave the remainder of the second 2 block groups until they have also been exhausted - which should equal the total number of DataWords in the QRC.

Is that also correct, please?

Reasons:
  • No code block (0.5):
  • Ends in question mark (2):
  • Low reputation (1):
Posted by: alan b

79648855

Date: 2025-06-02 13:58:08
Score: 1.5
Natty:
Report link

You can simply use NuxtApp hooks. I use that in my default layout and work like a charm.

<script setup lang="ts">
const nuxtApp = useNuxtApp();

nuxtApp.hook('page:loading:end', () => {
  // doSomething();
});
</script>
Reasons:
  • Low length (0.5):
  • Has code block (-0.5):
  • Unregistered user (0.5):
  • Low reputation (1):
Posted by: Oui-Dev

79648850

Date: 2025-06-02 13:54:07
Score: 3
Natty:
Report link

I found the reason. I had previously written middleware that only allowed certain IP addresses to pass through to the admin section. As soon as I removed it, SignalR started working. That's how it goes. Of course, there were no problems with local development, and over time I forgot about this middleware.

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

79648848

Date: 2025-06-02 13:53:07
Score: 3.5
Natty:
Report link

I’d suggest reaching out to the PDFCreator support team directly — they’re pretty responsive and can help with COM setup and integration.You can contact them here: https://support.pdfforge.org/

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

79648844

Date: 2025-06-02 13:51:06
Score: 3.5
Natty:
Report link

Same problem here. It appears to be a solution for a similar problem under the vertex ai process but that can be easily solve through operations command. Thats not the case for document aia which works with a diferent API. I even tried deleting the processor but is not possible.

Reasons:
  • RegEx Blacklisted phrase (1): Same problem
  • Low length (0.5):
  • No code block (0.5):
  • Single line (0.5):
  • Low reputation (1):
Posted by: Felipe Muñoz

79648835

Date: 2025-06-02 13:43:03
Score: 2
Natty:
Report link

When using asdf, run asdf reshim nodejs. Helped me to get rid of those command not found errors for globally installed packages.

Reasons:
  • Low length (1):
  • Has code block (-0.5):
  • Single line (0.5):
  • Starts with a question (0.5): When
  • Low reputation (0.5):
Posted by: jannolii

79648831

Date: 2025-06-02 13:42:02
Score: 2.5
Natty:
Report link

Check if the app is focused https://stackoverflow.com/a/79644232/9682338

If the window is inactive use AbsorbPointer https://stackoverflow.com/a/54220863/9682338

Or you can swap out the widgets to somthing else.

I don't know how AppLifecycleState works in a multi window situation.

Reasons:
  • Blacklisted phrase (1): stackoverflow
  • Probably link only (1):
  • Low length (0.5):
  • Has code block (-0.5):
  • Low reputation (0.5):
Posted by: Csaba Mihaly

79648830

Date: 2025-06-02 13:41:01
Score: 8 🚩
Natty: 5
Report link

I can successfully connect to my blob storage using private endpoint with VPN configured. However, when I tried to access the table storage, I encountered an error. But when I enable the network to public, I can access back the table storage. What seems to be the problem? Thanks in advance.

Reasons:
  • Blacklisted phrase (0.5): Thanks
  • RegEx Blacklisted phrase (3): Thanks in advance
  • Low length (0.5):
  • No code block (0.5):
  • Ends in question mark (2):
  • Single line (0.5):
  • Low reputation (1):
Posted by: Cliffor Joseph Abalo

79648828

Date: 2025-06-02 13:39:00
Score: 1.5
Natty:
Report link

this could be due to a number of things but i would begin by trying a clean install after deleting your node modules folder and package-lock.json file, then running npm install

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

79648820

Date: 2025-06-02 13:33:54
Score: 7 🚩
Natty:
Report link

Hello did you find a solution to this cos i,m currently exeriencing the same issues on my end @Basheer Jarrah

Reasons:
  • RegEx Blacklisted phrase (3): did you find a solution to this
  • Low length (1):
  • No code block (0.5):
  • User mentioned (1): @Basheer
  • Single line (0.5):
  • Low reputation (1):
Posted by: Oluwatimileyin Awe

79648807

Date: 2025-06-02 13:24:51
Score: 3
Natty:
Report link

One of the user in my team was facing same issue. His system was missing Microsoft Visual C++ 2013 Redistributable (x64). For that system, the version that worked was 12.0.40664

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

79648804

Date: 2025-06-02 13:21:50
Score: 1.5
Natty:
Report link

I noticed you were using the alpine image.

You should be using this syntax, instead of the generic one for linux

Environment variables

DT_ONEAGENT_OPTIONS: "flavor=musl&include=all"

LD_PRELOAD: /opt/dynatrace/oneagent/agent/lib64/liboneagentproc.so

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

79648800

Date: 2025-06-02 13:19:50
Score: 0.5
Natty:
Report link

The package might have a bug in its structure. Try updating to the latest version:

npm install @nostr-dev-kit/ndk-blossom@latest

OR

If it doesn't work, then you can direct import:

import { NDKBlossom } from "@nostr-dev-kit/ndk-blossom/dist/index.js";
Reasons:
  • Low length (0.5):
  • Has code block (-0.5):
  • Low reputation (0.5):
Posted by: Developer Nilesh

79648799

Date: 2025-06-02 13:19:50
Score: 3
Natty:
Report link

[It] might simply be that SHA3_512 is not supported on your system. Note that what is commonly called "SHA512" is actually the SHA512 from SHA2, not SHA3. Try using System.Security.Cryptography.HashAlgorithmName.SHA512 to get the SHA2 version of SHA512. – President James K. Polk

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

79648785

Date: 2025-06-02 13:13:47
Score: 3
Natty:
Report link

installing ibus did the trick for me after reading this:

https://github.com/eclipse-platform/eclipse.platform.swt/issues/1937

sudo pacman -S ibus

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

79648781

Date: 2025-06-02 13:10:46
Score: 1.5
Natty:
Report link

I have this solution. Good luck.
Just Inline code button does not work in my browser i do now know

----------------------------------------------

Public Sub AssignValue()

Dim i As Long, lr As Long

Dim ws As Worksheet

Dim validValues As Variant, team As String, flag As Boolean

Set ws = ThisWorkbook.Sheets("ReformattedData")

lr = ws.Cells(Rows.Count, 1).End(xlUp).Row

validValues = Array("Team1", "Team2", "Team3", "Team4", "Team5", "Team6", "Other")

flag = False

For i = 2 To lr

If ws.Cells(i, 2).Value = "True" Then

team = ws.Cells(i, 1).Value

For j = LBound(validValues) To UBound(validValues)

If validValues(j) = team Then

flag = True

Exit For

End If

Next j

If flag Then ws.Cells(i, 3).Value = 1

End If

flag = False

Next i

End Sub

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

79648773

Date: 2025-06-02 13:05:44
Score: 2.5
Natty:
Report link
[ProducesResponseType(typeof(void), (int)HttpStatusCode.NoContent)]
Reasons:
  • Low length (1.5):
  • Has code block (-0.5):
  • Has no white space (0.5):
  • Single line (0.5):
  • Low reputation (0.5):
Posted by: Jhonnatan Panoch

79648765

Date: 2025-06-02 12:59:43
Score: 2.5
Natty:
Report link
import matplotlib.pyplot as plt
import io
import base64

# Dados atualizados
anos_label = ['2023\n(desde Abr)', '2024', '2025\n(até Jun)']
familias = [15, 20, 9]  # 2023 (desde 28 Abr), 2024, 2025 (até 16 Jun)

# Configuração do gráfico de Famílias
plt.figure(figsize=(8, 6))
bars_familias = plt.bar(anos_label, familias, color=['skyblue', 'lightgreen', 'salmon'])

titulo_familias = "Famílias Atendidas (2023–2025)\n(Dados de 2025 parciais)"
plt.title(titulo_familias, fontsize=14, pad=20)
plt.ylabel("Número de Famílias", fontsize=12)
plt.xlabel("Ano", fontsize=12)
plt.ylim(0, max(familias) + 7) # Aumentei um pouco o limite para melhor visualização dos números

for bar in bars_familias:
    yval = bar.get_height()
    plt.text(bar.get_x() + bar.get_width()/2, yval + 0.5, round(yval,1), ha='center', va='bottom', fontsize=10)

plt.grid(axis='y', linestyle='--', alpha=0.7)
plt.tight_layout(rect=[0, 0, 1, 0.96]) # Ajuste para o título não sobrepor

# Salvar em um buffer de memória para exibir
buf = io.BytesIO()
plt.savefig(buf, format='png')
buf.seek(0)
# Como não posso exibir diretamente aqui sem que o backend permita,
# normalmente o código acima seria suficiente em um ambiente Jupyter ou similar.
# Para este ambiente, vou apenas confirmar que o código para gerar a imagem foi preparado.
# Se o ambiente permitir, ele mostrará o gráfico.
# Se não, imagine que a imagem foi gerada.
plt.show() # Adicionado para tentar forçar a exibição na interface
plt.close() # Fechar a figura para não interferir nos próximos gráficos

# base64_familias = base64.b609(buf.read()).decode('utf-8') # Para embutir se necessário
# print(f"Familias Atendidas: ![Familias Atendidas](data:image/png;base64,{base64_familias})") # Tentativa de markdown
Reasons:
  • Blacklisted phrase (1): não
  • Blacklisted phrase (2): código
  • Long answer (-1):
  • Has code block (-0.5):
  • Low reputation (1):
Posted by: Geovana Valentino

79648763

Date: 2025-06-02 12:59:43
Score: 0.5
Natty:
Report link

To find the closest or similar color in Javascript you will need a comparator. The answer is here on GitHub, as a JavaScript function accepting both RGB and hexadecimal color formats and returning their color difference using the CIE ΔE2000 formula.

Example 1 : Compare Hex vs Hex

// blue compared to darkslateblue
var delta_e = ciede_2000('#00F', '#483D8B')
// ΔE2000 ≈ 15.91 — noticeable difference

Example 2 : Compare Hex vs RGB

// darkslateblue compared to indigo
var delta_e = ciede_2000('#483d8b', 75,0,130)
// ΔE2000 ≈ 12.19 — distinct difference

Example 3 : Compare RGB vs Hex

// indigo compared to darkblue
var delta_e = ciede_2000(75, 0, 130, '#00008b')
// ΔE2000 ≈ 7.72 — moderate difference

Example 4 : Compare RGB vs RGB

// darkblue compared to navy
var delta_e = ciede_2000(0, 0, 139, 0, 0, 128)
// ΔE2000 ≈ 1.56 — slight difference
Reasons:
  • Contains signature (1):
  • Long answer (-0.5):
  • Has code block (-0.5):
  • Low reputation (0.5):
Posted by: Michel

79648761

Date: 2025-06-02 12:57:42
Score: 1
Natty:
Report link

This is a well-known limitation of PowerMockito with TestNG's @BeforeTest lifecycle method. The issue occurs because PowerMockito's bytecode manipulation and plugin initialization happens at a specific point in the test lifecycle, and @BeforeTest runs too early.

You should use @BeforeMethod instead of @BeforeTest.

@BeforeMethod
public void setUp() {
    PowerMockito.mockStatic(TestStatic.class);
}
Reasons:
  • Has code block (-0.5):
  • User mentioned (1): @BeforeTest
  • User mentioned (0): @BeforeTest
  • User mentioned (0): @BeforeMethod
  • User mentioned (0): @BeforeTest
  • Low reputation (0.5):
Posted by: Zac

79648756

Date: 2025-06-02 12:54:41
Score: 1.5
Natty:
Report link

Thanks for your interest in the react-native-controlled-mentions library!

The fix for this issue is already present in the latest v3 release. The problem with replacing multi-mentions inside strings has been resolved.

Please update to the latest version and let me know if you encounter any other issues.

Reasons:
  • Blacklisted phrase (0.5): Thanks
  • Low length (0.5):
  • Has code block (-0.5):
  • Low reputation (1):
Posted by: David Tabaka

79648755

Date: 2025-06-02 12:54:41
Score: 1.5
Natty:
Report link

Unfortunatly, you can't use this Logic in firefox because Firefox (and Safari, per spec) treats as creating a shadow tree, isolating the cloned nodes from external CSS selectors that aren't scoped to the . this means .my-text inside is effectively in a shadow DOM, which is not a descendant of body in the composed tree, and not affected by selectors like body:has(:checked).

And to answer your last question : it's chrome that doesn't follow spec 😉

Reasons:
  • No code block (0.5):
  • Low reputation (1):
Posted by: Clément DELORD

79648748

Date: 2025-06-02 12:49:38
Score: 6.5 🚩
Natty:
Report link

I have the same issue with Windows environments. What's your setup?
I mac and linux works without issues

Reasons:
  • Blacklisted phrase (1): I have the same issue
  • Low length (1):
  • No code block (0.5):
  • Me too answer (2.5): I have the same issue
  • Contains question mark (0.5):
  • Low reputation (1):
Posted by: liuspatt

79648747

Date: 2025-06-02 12:49:38
Score: 1
Natty:
Report link
return User::join('personal_info','users.id','=','personal_info.user_id')
    ->leftJoin('user_data', function ($q) use ($filters) {
        $q->on('users.id', '=','user_data.user_id');
        foreach ( $filters as $field => $value ) {
            $q->where($field,'=',$value)
        }
    });

This will specifically add the filters to the join i.e. leftJoin t2 on t1.1 = t2.2 AND filter = val
In this way you can join the specific records that match all filters applied

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

79648746

Date: 2025-06-02 12:48:38
Score: 0.5
Natty:
Report link

The default provider functions using below code to return the response which in my case was returning null as response

return json_decode((string) $response->getBody(), true);

But I override it with the the return statement as below, which returned me the the response form IDAM CAS correctly.

return $response->body();
Reasons:
  • Has code block (-0.5):
  • Self-answer (0.5):
  • Low reputation (0.5):
Posted by: SDLBeginner

79648743

Date: 2025-06-02 12:48:32
Score: 6 🚩
Natty:
Report link

Did you ever find a solution to this issue?

I am experiencing the same; I can run adb commands directly from the Terminal and see the corresponding action on the Device. However when I use the same adb command in Robot, it says command executed successfully and Pass but no action on the Device.

The logs also show all commands processed correctly.

Reasons:
  • RegEx Blacklisted phrase (3): Did you ever find a solution to this
  • No code block (0.5):
  • Contains question mark (0.5):
  • Unregistered user (0.5):
  • Starts with a question (0.5): Did you
  • Low reputation (1):
Posted by: user30697508

79648741

Date: 2025-06-02 12:48:32
Score: 3.5
Natty:
Report link

When you enter the start and end times, the system calculates the total time span rather than the actual meeting duration. I later adjusted the duration to the correct length, and it worked as expected.

enter image description here

Reasons:
  • Whitelisted phrase (-1): it worked
  • Probably link only (1):
  • Low length (0.5):
  • No code block (0.5):
  • Self-answer (0.5):
  • Single line (0.5):
  • Starts with a question (0.5): When you
  • Low reputation (1):
Posted by: Ibrahim Basha Imran

79648730

Date: 2025-06-02 12:43:30
Score: 0.5
Natty:
Report link

I was just bitten by this today and thought I'd share my awful hacky work-around. It doesn't really answer your questions (I had the same questions), but my low reputation doesn't allow me just add a comment.

void test(std::filesystem::path const &p)
{
  std::cout << p << " -> " << std::filesystem::relative(std::filesystem::absolute(p)) << std::endl;
}

This does run a lot slower than the original, btw.

Alternatively, this may also work (but maybe not, or maybe not on all platforms (Windows specifically)):

void test3(std::filesystem::path const &p)
{
  std::cout << p << " -> " << std::filesystem::relative((p.string().starts_with('/') ? "" : "./") / p) << std::endl;
}

This version is not much slower than the original.

Reasons:
  • Whitelisted phrase (-1): I had the same
  • RegEx Blacklisted phrase (1.5): low reputation
  • Long answer (-0.5):
  • Has code block (-0.5):
  • Low reputation (1):
Posted by: user30697333

79648729

Date: 2025-06-02 12:43:30
Score: 2.5
Natty:
Report link

You can run:
sudo dpkg -i your_package.deb

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

79648725

Date: 2025-06-02 12:40:30
Score: 0.5
Natty:
Report link

I had this exact error message when trying to run flite (TTS software, got with "apt install flite" in the usual manner) from within a C program with the system() command, on a Pi500.

I got it working by creating the file /etc/asound.conf and putting in the following 2 lines:

defaults.pcm.card 1

defaults.ctl.card 1

(No vertical space between those lines.)

I rebooted the Pi500 and it worked.

Reasons:
  • Whitelisted phrase (-1): it worked
  • No code block (0.5):
  • Low reputation (1):
Posted by: Paul Bowden

79648721

Date: 2025-06-02 12:39:29
Score: 1
Natty:
Report link

This issue reappeared for us more recently, associated with our AdvancedSecurity-Dependency-Scanning@1 task.

Adding an environment variable TASKLIB_INPROC_UNITS: 1 seems to have resolved it.

- task: AdvancedSecurity-Dependency-Scanning@1
  displayName: "Advanced Security Dependency Scanning"
  env:
    TASKLIB_INPROC_UNITS: 1

Thanks to HenrikRoosKpa.

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

79648709

Date: 2025-06-02 12:31:26
Score: 1.5
Natty:
Report link

try this

    <Routes @rendermode="InteractiveServer"/>
Reasons:
  • Whitelisted phrase (-1): try this
  • Low length (1.5):
  • Has code block (-0.5):
  • Has no white space (0.5):
  • Low reputation (1):
Posted by: Alavi

79648695

Date: 2025-06-02 12:23:23
Score: 2.5
Natty:
Report link

Contact Google Cloud Support (especially if you have billing enabled). Include:

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

79648693

Date: 2025-06-02 12:22:22
Score: 4.5
Natty:
Report link

Same issue in all our apps. Don't know why they sometimes work and sometimes don't.

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

79648688

Date: 2025-06-02 12:16:20
Score: 3
Natty:
Report link

while wait for a second your laptop performance will gonna be a very slow and also anaconda while taking sometimes too.

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

79648685

Date: 2025-06-02 12:13:19
Score: 3.5
Natty:
Report link

HTTP Status 404 – Not Found


Type Status Report

Message The requested resource [/StackExercise.java] is not available

Description The origin server did not find a current representation for the target resource or is not willing to disclose that one exists.


Apache Tomcat/11.0.7

i have followed this steps, successfully completed all but after running it on server and after getting localhost link this is what it is showing, what to do to debug this ??

Reasons:
  • No code block (0.5):
  • Ends in question mark (2):
  • Low reputation (1):
Posted by: Sanket Laddha

79648679

Date: 2025-06-02 12:09:18
Score: 0.5
Natty:
Report link

Default interface implementations were introduced in C# 8.0, along with modifiers on interface members.

However, protected interface members can be called from derived interfaces only, not derived classes.

You can read the original specification for the new interface-related features and some of the design discussion and decisions here:

https://learn.microsoft.com/en-us/dotnet/csharp/language-reference/proposals/csharp-8.0/default-interface-methods

Here are two more related articles:

https://www.talkingdotnet.com/default-implementations-in-interfaces-in-c-sharp-8/

https://jeremybytes.blogspot.com/2019/11/c-8-interfaces-public-private-and.html

Reasons:
  • Probably link only (1):
  • No code block (0.5):
  • High reputation (-1):
Posted by: Neil T

79648678

Date: 2025-06-02 12:08:18
Score: 4
Natty:
Report link

Whatsapp has now added a new API to post to Status directly. See https://faq.whatsapp.com/669870872481343

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

79648671

Date: 2025-06-02 12:01:15
Score: 6 🚩
Natty:
Report link

I'm getting the same issue on all our websites

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

79648667

Date: 2025-06-02 11:56:13
Score: 2
Natty:
Report link

OLd thread but I came across it and thought it would be handy to post this in case of help to anyone else...

Application.Interactive: Temporarily disables user interaction with Excel. Users cannot interact with the workbook until it is re-enabled. Set it to either False or True to enable / disable user input as required.

No third party software download needed :)

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

79648658

Date: 2025-06-02 11:49:11
Score: 1
Natty:
Report link

Just use /compare
https://github.com/{OWNER}/{REPO}/compare/{BRANCH_NAME_1}...{BRANCH_NAME_2}

Reasons:
  • Low length (1):
  • Has code block (-0.5):
  • Has no white space (0.5):
Posted by: Cugomastik

79648655

Date: 2025-06-02 11:48:11
Score: 1.5
Natty:
Report link

When a shell script using multiple screen sessions appears to do nothing, it usually means the sessions are being created but not executing as expected. Here's a breakdown of common causes and solutions.

https://www.sot.com.pk/

https://smdscreens.com.pk/

Reasons:
  • Low length (0.5):
  • Has code block (-0.5):
  • Starts with a question (0.5): When a
  • Low reputation (1):
Posted by: smartonetech

79648641

Date: 2025-06-02 11:34:06
Score: 1
Natty:
Report link

I too struggled with this very same issue, for a long time, for both Android and iOS apps. App Store Connect and Google Play really need to add support to webhooks!! 😡

The solution was to use the Publishing API aforementioned by @Tom Benyon, alongside fastlane, fastlane_core and supply, to determine the current app's publishing status (my exp as a core contributor at fastlane definitely helped), and keep polling their API.

The problem is that Google's API isn't precise enough: sometimes it will say the app status is "completed" (aka app has been "approved"), even though it's still under review, actually. Which sucks. This is a known limitation and is being tracked in Google Issue Tracker, but Google hasn't promised when they'd fix this.

I was able to work around this limitation though, and get precise status updates throughout time 🎉

If you don't want to build all of this logic yourself and skip the hosting infra shenanigans, I've wrapped this as a service at Statused - feel free to check it out

If you don't want all this precision though, and a ~24-hour delay in the status is acceptable, you'll do fine by using fastlane to get the app status, let me know if you need help with that! For Statused the delay is about 2 minutes, so you get nearly instant updates about when your app status change and can receive those notifications via Slack or custom webhooks to trigger your system's automations as you wish

Reasons:
  • Blacklisted phrase (0.5): check it out
  • Long answer (-1):
  • No code block (0.5):
  • User mentioned (1): @Tom
Posted by: Roger Oba

79648638

Date: 2025-06-02 11:30:05
Score: 4.5
Natty:
Report link

This issue was discussed and resolved here

Cannot build for ios RNScreen v4.11 #2956

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

79648635

Date: 2025-06-02 11:29:04
Score: 1
Natty:
Report link

I faced this error: Error: getaddrinfo ENOTFOUND smtp.gmail.com only to realise that my internet connection was down. It worked after connecting to internet.

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

79648633

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

I have exactly the same issue as you guys. I also updated everything to the latest (Studio, NDK, SDK, CMake) without any change.

Android Java/Kotlin breakpoints work fine for me. Funny enough, when I press the "pause" button on native debugging, the native thread gets paused but I can't hit any breakpoints. When testing Android 15 beta a while back on my Pixel 7, I had similar issues. But that has been sorted out with the Android 16 beta. I think Samsung inherited that from AOP. I already created a ticket on the Samsung issue tracker with sample code and a video. Hope to get some feedback soon.

So far NOT working:

Working:

Reasons:
  • Long answer (-0.5):
  • No code block (0.5):
  • Me too answer (2.5): I have exactly the same issue
  • Low reputation (0.5):
Posted by: BenDr0id

79648626

Date: 2025-06-02 11:24:02
Score: 0.5
Natty:
Report link

This took me two whole days to resolve. I did everything I could to fix this, but the 401 still showed up every time. Mine was a Flutter app, and I was using the Dio package for API calls. I switched from Dio to HTTP, and this resolved this issue for me. Somehow Dio was not able to send the request properly

Reasons:
  • Low length (0.5):
  • Has code block (-0.5):
  • Single line (0.5):
Posted by: Syed Arsalan Kazmi

79648621

Date: 2025-06-02 11:20:00
Score: 4
Natty:
Report link

10 days and only 15 views, 0 answers.

StackOverflow is definitely dead...

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

79648615

Date: 2025-06-02 11:15:58
Score: 3
Natty:
Report link

Just as I posted this, the issue was gone. I'll delete the question if it works ok until tomorrow.

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

79648610

Date: 2025-06-02 11:13:58
Score: 0.5
Natty:
Report link

Update operations on a single document are performed sequentially and atomically.

Let's assume you're using updateOne. When MongoDB finds a document that meets the criteria, it creates a lock on the document. It then updates the document and relevant indexes before releasing the lock. This process happens at the database level and lasts for microseconds.

  1. If there are two simultaneous instances of the above queries, is it possible that the end result after the two queries ended be that this document's field_a will be 7? No, the first query will match the document and update it. The second query won't match this document because it was already updated and field_a is now 6.

  2. Does the locking mechanism happens after matching the document? In other words, both queries will find and determine that this document is the one to update because neither has updated it yet, but one locks the document and increments field_a to 6, unlocks the document, and then the other query increments it to 7? No, the update operation is atomic.

  3. Follow up of question 2, or does the second query performs an re-evaluation of the matching conditions after the lock has been released by the first query? Yes.

  4. Does findeOneAndUpdate follow the same rules and policies as updateOne in this scenario and atomicity in general? Yes, the only difference is that findOneAndUpdate returns the document.

Reasons:
  • Blacklisted phrase (1): this document
  • Long answer (-1):
  • Has code block (-0.5):
  • Contains question mark (0.5):
  • Low reputation (0.5):
Posted by: Stanimira Vlaeva

79648609

Date: 2025-06-02 11:12:57
Score: 0.5
Natty:
Report link

something like this

#main-nav > ul {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.5s ease, opacity 0.5s ease;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}

#main-nav > ul.expanded {
  max-height: initial;
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}
Reasons:
  • Low length (0.5):
  • Has code block (-0.5):
  • Low reputation (0.5):
Posted by: Kateryna S

79648598

Date: 2025-06-02 11:02:54
Score: 2
Natty:
Report link

Have you considered to work with the internal BOM (configured with .frm file) function of Creo?

Because you can export this BOM to a text file as well or even as a .csv file.

The advantage of this way is, that by setting your .frm file you can put the most functionality internally by Creo (like adding up duplicates, levels, filtering...).

See the picture of an example .frm table. Note that you have to define an repeat region for that.

example for an table with repeat region within a.frm file

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

79648585

Date: 2025-06-02 10:46:50
Score: 3.5
Natty:
Report link

Thanks, this script works. Sheet1.Range("$A$1:$B$8").AutoFilter Field:=1, Criteria1:=Array( "=< 12:30", "=< 18:00"), Operator:=xlFilterValues

But I have 1 more problem, I have data as per the attached image, the data shows the time range with the code "< 12:00", "< 18:00", "< 24:00", "> 24:00" and Blank, how to do it if I want to select other than "< 12:00".

Thanks.

enter image description here

Reasons:
  • Blacklisted phrase (0.5): Thanks
  • Blacklisted phrase (1): enter image description here
  • RegEx Blacklisted phrase (1): I want
  • Has code block (-0.5):
  • Self-answer (0.5):
  • Low reputation (1):
Posted by: Rahmad Zain

79648584

Date: 2025-06-02 10:45:50
Score: 3
Natty:
Report link

Telerik, Infragistics, DevExpress never had a surface chart... The first ones were Nevron and ComponentOne...

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

79648581

Date: 2025-06-02 10:42:48
Score: 1
Natty:
Report link
from pdf2image import convert_from_path
import pytesseract
from PIL import Image

# Convert the PDF pages to images for OCR since text extraction failed
images = convert_from_path(presentation_path)

# Perform OCR on each page image
presentation_ocr_text = ""
for image in images:
    text = pytesseract.image_to_string(image, lang='eng')
    presentation_ocr_text += text + "\n"

presentation_ocr_text[:1500]  # Preview the first 1500 characters of OCR text
Reasons:
  • Has code block (-0.5):
  • Unregistered user (0.5):
  • Low reputation (1):
Posted by: Marta

79648550

Date: 2025-06-02 10:20:42
Score: 2.5
Natty:
Report link

Have you tried installing it in a virtual env?

That will prevent this kind of error.

Reasons:
  • Whitelisted phrase (-1): Have you tried
  • Low length (1.5):
  • No code block (0.5):
  • Contains question mark (0.5):
  • Low reputation (1):
Posted by: aboubobo