79797525

Date: 2025-10-23 07:43:59
Score: 1
Natty:
Report link

When a Python Azure Function doesn’t appear in the Functions list after deployment, it usually means the platform couldn’t detect a valid function entry point. Since your .NET deployments work fine, the issue is almost certainly structural or environment-related rather than with CI/CD itself. Each function must live in its own folder (same name as the function), containing __init__.py and function.json. A flat root with only function_app.py will not be detected. Confirm your function app’s Runtime Stack = “Python” and Version = “3.10” in Azure.Check Log stream or Kudu -> D:\home\LogFiles\Application\Functions\host for messages like “No job functions found” or “Unable to find function.json”. Ensure that each function has its own folder with __init__.py (and function.json for v1 model), or use the new Python v2 model with a proper FunctionApp() object.

Reasons:
  • Long answer (-0.5):
  • Has code block (-0.5):
  • Single line (0.5):
  • Starts with a question (0.5): When a
  • Low reputation (1):
Posted by: Anurag Sarkar

79797520

Date: 2025-10-23 07:36:58
Score: 3.5
Natty:
Report link

Why differentiate user mode code and kernel mode code because it's built for other purposes for each other.

Reasons:
  • Low length (1):
  • No code block (0.5):
  • Self-answer (0.5):
  • Single line (0.5):
  • Starts with a question (0.5): Why
  • Low reputation (0.5):
Posted by: meBe

79797515

Date: 2025-10-23 07:33:57
Score: 0.5
Natty:
Report link

It's possible to publish to a remote server from Visual Studio, but there's no direct "remote server" option. Instead, you can use FTP/FTPS or Web Deploy. Alternatively, publish to a folder locally and transfer the files manually using SCP or another method. Choose the approach that fits your server setup

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

79797514

Date: 2025-10-23 07:32:56
Score: 2
Natty:
Report link

Installing binaries like jq mentioned here, from unknown sources is very very dangerous. Think first...

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

79797513

Date: 2025-10-23 07:31:56
Score: 3.5
Natty:
Report link

it solved in the system - device type setting - device type and choose T&A PUSH

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

79797491

Date: 2025-10-23 07:10:51
Score: 2
Natty:
Report link

Refernce

If HTTPS is used it encrypts the message for every RESTful Api methods such as POST,PUT,GET,DELETE,PATCH.

If HTTP is used the message for every RESTful Api methods won't be encrypted.

Below is summery

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

79797487

Date: 2025-10-23 07:05:50
Score: 2
Natty:
Report link

For me, it was again a plugin (Cucumber+) which was creating issue and kicking off high CPU usage. So most of the time, it should be issue with random plugins installed which may be consuming high memory and CPUs.

Uninstalling the Cucumber+ plugin solved issue for me.

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

79797483

Date: 2025-10-23 06:57:47
Score: 1.5
Natty:
Report link

You can use OpenCSV which is good enough described in https://opencsv.sourceforge.net/ , among other its quick start with an example.

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

79797481

Date: 2025-10-23 06:55:47
Score: 2.5
Natty:
Report link

This one is working ! Almost ten years after, thank you so much :-)

gmic -w -apply_video guit_vid.mp4,\"-blur 5,0\",0,-1,1,output.mp4

Been searching for a couple of hours, but haven't been able to find a proper syntax anywhere else .... (Got to recompile GMIC/CIMG with opencv support by the way)

Reasons:
  • Blacklisted phrase (0.5): thank you
  • Low length (0.5):
  • No code block (0.5):
  • Low reputation (1):
Posted by: Eric Senn

79797472

Date: 2025-10-23 06:48:45
Score: 1.5
Natty:
Report link
const getIp = (req) => {
  const forwarded = req.headers['x-forwarded-for'];
  return forwarded ? forwarded.split(',')[0].trim() : req.socket.remoteAddress;
};
Reasons:
  • Low length (1):
  • Has code block (-0.5):
  • Low reputation (1):
Posted by: Shyam Raghuwanshi

79797459

Date: 2025-10-23 06:33:41
Score: 1.5
Natty:
Report link

This

XMLSignatureFactory factory = XMLSignatureFactory.getInstance("DOM", "XMLDSig");

helped me when switching from JDJK 11 to JDK 17.

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

79797458

Date: 2025-10-23 06:32:41
Score: 2
Natty:
Report link

In crontab you do not execute a login shell. So the profile is not sourced.

You could include (depending which files exist in your account or on your system)

source $HOME/.bashrc

or

source $HOME/.profile

or

source /etc/profile

to the start of your script.

'source' could be abbreviated by a dot (.).

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

79797456

Date: 2025-10-23 06:30:40
Score: 0.5
Natty:
Report link

In Facer’s own documentation they note that “Due to restrictions of the Apple platform, Apple Watch faces currently cannot be fully customized and only ‘complication’ areas of predefined templates can be edited.”

They also mention certain refresh limitations: e.g., complications (third-party) can only refresh every ~15 minutes on watchOS.

So essentially, Facer uses Apple’s allowed “watch face template + complication” model, and injects designs into those templates rather than replacing the face system entirely.

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

79797455

Date: 2025-10-23 06:29:40
Score: 5
Natty:
Report link

can anyone help me by solving the following error:
[nas@sna obdx_base_installation]$ python runInstaller.py >>>> STARTING OBDX PRODUCT INSTALLATION <<<< Starting OBDX Database Installation with OBPM143 FLAVOR Tablespace with name OBDX_DEV and OBDX_AUDIT_DEV exists Dropping User... Objects dropped Schema dropped Role dropped Creating User... User Created Creating Role... Role Created Executing Grants... Execution of clip_master_script.sql started Execution of clip_master_script.sql completed Execution of clip_constraints.sql started Execution of clip_constraints.sql completed Execution of clip_seeds_executable.sql started Execution of clip_seeds_executable.sql completed Execution of clip_master_generic_rest_script.sql started Execution of clip_master_generic_rest_script.sql completed SUCCESSFULLY installed OBDX database Starting OBPM143 Database Installation... Table space with name TBS_OBDX_EHMS exists Dropping User Objects dropped Schema dropped Role dropped Creating User... User Created Creating Role... Roles Created Executing Grants... Executing OBPM Grants... Execution of table-scripts.sql started Execution of table-scripts.sql completed Execution of ubs_object_scripts.sql started Execution of ubs_object_scripts.sql completed Execution of obpm_object_scripts.sql started Execution of obpm_object_scripts.sql completed Execution of execute-seeds.sql started Execution of execute-seeds.sql completed Execution of obpm-seeds.sql started Execution of obpm-seeds.sql completed SUCCESSFULLY installed OBPM143 database Executed DIGX_FW_CONFIG_ALL_O.sql successfully Executed DIGX_FW_ABOUT_OBPM143.sql successfully Executed DIGX_FW_CONFIG_VAR_B.sql successfully Executed DIGX_FW_CONFIG_UBS_ALL_O.sql successfully Policy seeding successful Creating STB Schemas ... Dropping RCU RCU Schema dropped Running RCU Schema creation in progess ... STB Schemas Created Successfully Starting WEBLOGIC Setup and Configuration... Error: Could not find or load main class weblogic.WLST

Reasons:
  • Blacklisted phrase (1): help me
  • RegEx Blacklisted phrase (3): can anyone help me
  • Long answer (-1):
  • No code block (0.5):
  • Starts with a question (0.5): can anyone help me
  • Low reputation (1):
Posted by: Dinberu Dejene

79797453

Date: 2025-10-23 06:24:39
Score: 0.5
Natty:
Report link

You’re right Etsy doesn’t currently provide a real-time order webhook or push notification through the public API. The most common solution is to poll the Orders API periodically (for example, every few minutes) and compare order IDs or timestamps to detect new sales. Some developers also use third-party integrations or middleware services that automate this polling and send notifications when new orders appear. While not ideal, this approach is the most reliable until Etsy offers an official event or webhook system.

Reasons:
  • Whitelisted phrase (-1): solution is
  • Long answer (-0.5):
  • No code block (0.5):
  • Single line (0.5):
  • Low reputation (1):
Posted by: NH Shop Finds

79797450

Date: 2025-10-23 06:21:37
Score: 2
Natty:
Report link

I have an issue trying to install WAILS https://wails.io/docs/gettingstarted/installation

I am running a command and it outputs permission denied.

go install github.com/wailsapp/wails/v2/cmd/wails@latest

go: creating work dir: mkdir /var/folders/zz/zyxvpxvq6csfxvn_n0000000000000/T/go-build2536224663: permission denied
Reasons:
  • Probably link only (1):
  • Low length (0.5):
  • Has code block (-0.5):
  • Low reputation (1):
Posted by: Sebastian Romero Laguna

79797421

Date: 2025-10-23 05:18:23
Score: 2
Natty:
Report link
  1. Download the Windows Installer (.msi) from https://nodejs.org/en/download
  2. During installation, check the box labeled "Automatically install the necessary tools."

enter image description here

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

79797416

Date: 2025-10-23 05:13:22
Score: 3.5
Natty:
Report link

https://www.google.com/search?q=momo

when i pass this i get navigation timeout error when i give 2 hours also . i try route ip and route arguments also but captcha will show how can i solve why this error come

Reasons:
  • Blacklisted phrase (0.5): how can i
  • Low length (1):
  • No code block (0.5):
  • Starts with a question (0.5): when i
  • Low reputation (1):
Posted by: Nithiyapriyan Kurmban

79797411

Date: 2025-10-23 05:01:20
Score: 2.5
Natty:
Report link

This is solved in Codename One version 7.0.207

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

79797399

Date: 2025-10-23 04:36:15
Score: 2.5
Natty:
Report link

Your notes were valuable but sporadic..... The question was how to run a successful exact search and find our target points by cmd without typing our minds and writing several sentences to reach our ideal webpage

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

79797398

Date: 2025-10-23 04:29:13
Score: 1
Natty:
Report link

To support touch operations, we can't disable HorizontalScrollMode and VerticalScrollMode. The following seems to work. Can you give it a try?

<Grid ColumnDefinitions="*,Auto">
    <Grid
        Grid.Column="0"
        ColumnDefinitions="*,*"
        PointerWheelChanged="Grid_PointerWheelChanged"
        SizeChanged="Grid_SizeChanged">
        <Grid.Resources>
            <Style BasedOn="{StaticResource DefaultScrollViewerStyle}" TargetType="ScrollViewer">
                <Setter Property="VerticalAlignment" Value="Top" />
                <Setter Property="HorizontalScrollBarVisibility" Value="Hidden" />
                <Setter Property="VerticalScrollBarVisibility" Value="Hidden" />
                <!--
                <Setter Property="HorizontalScrollMode" Value="Disabled" />
                <Setter Property="VerticalScrollMode" Value="Disabled" />
                -->
            </Style>
        </Grid.Resources>
        <ScrollViewer
            x:Name="LeftScrollViewer"
            Grid.Column="0"
            ViewChanged="LeftScrollViewer_ViewChanged">
            <TextBlock FontSize="2048" Text="Left" />
        </ScrollViewer>
        <ScrollViewer
            x:Name="RightScrollViewer"
            Grid.Column="1"
            ViewChanged="RightScrollViewer_ViewChanged">
            <TextBlock FontSize="1024" Text="Right" />
        </ScrollViewer>
    </Grid>
    <ScrollBar
        x:Name="VerticalScrollBar"
        Grid.Column="1"
        IndicatorMode="MouseIndicator"
        ValueChanged="VerticalScrollBar_ValueChanged" />
</Grid>
private void Grid_SizeChanged(object sender, SizeChangedEventArgs e)
{
    VerticalScrollBar.ViewportSize = e.NewSize.Height;
    VerticalScrollBar.Maximum = Math.Max(LeftScrollViewer.ScrollableHeight, RightScrollViewer.ScrollableHeight);
}

private void Grid_PointerWheelChanged(object sender, PointerRoutedEventArgs e)
{
    VerticalScrollBar.Value = Math.Max(0, Math.Min(this.VerticalScrollBar.Maximum, this.VerticalScrollBar.Value - e.GetCurrentPoint(this).Properties.MouseWheelDelta));
}

private void VerticalScrollBar_ValueChanged(object sender, RangeBaseValueChangedEventArgs e)
{
    if (e.NewValue < 0 || e.NewValue > this.VerticalScrollBar.Maximum)
        return;

    this.LeftScrollViewer.ScrollToVerticalOffset(e.NewValue);
    this.RightScrollViewer.ScrollToVerticalOffset(e.NewValue);
}

private void LeftScrollViewer_ViewChanged(object sender, ScrollViewerViewChangedEventArgs e)
{
    if (sender is not ScrollViewer scrollViewer)
        return;

    VerticalScrollBar.Value = scrollViewer.VerticalOffset;
}

private void RightScrollViewer_ViewChanged(object sender, ScrollViewerViewChangedEventArgs e)
{
    if (sender is not ScrollViewer scrollViewer)
        return;

    VerticalScrollBar.Value = scrollViewer.VerticalOffset;
}
Reasons:
  • RegEx Blacklisted phrase (2.5): Can you give
  • Long answer (-1):
  • Has code block (-0.5):
  • Ends in question mark (2):
  • High reputation (-2):
Posted by: Andrew KeepCoding

79797397

Date: 2025-10-23 04:28:13
Score: 1
Natty:
Report link

2025 Update

SplEnum is no longer maintained, but you can still use it via the polyfill: aldemeery/enum-polyfill.

No need to install the old PECL extension—just run:

composer require aldemeery/enum-polyfill

Your existing SplEnum code will work immediately.

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

79797390

Date: 2025-10-23 04:15:10
Score: 2.5
Natty:
Report link

Yes, seems like aiogram_dialog.widgets.kbd URL is empty, and this is why TelegramBadRequest happens.

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

79797387

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

Networking on host (in vBox application) is the root cause.
Change from NAT to NAT NETWORK or other.
Configure IP addresses accordingly.

Choosing anything other than NAT brings down CPU usage to 1% from 100% on host (in my case it was 25%, 1 core of 4 was running on 100%). Both Host & Guest now on 1-3% when not running any app.

This resolved the Host 100% CPU usage issue for me (Guest XPsp3 running on Host Ubuntu 24.04.3)

Deleted NAT entry in Networks in vBox application
Added NAT NETWORK, set ip to 10.0.2.0/24 (host)

Client end
10.0.2.4 - 253 (set ip to anything between)
255.255.255.0
10.0.2.1 (gateway)
DNS:
208.67.222.222 (opendns)
8.8.8.8 (google)

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

79797385

Date: 2025-10-23 04:12:08
Score: 1.5
Natty:
Report link

You can very quickly create a unique layout for a landing page in WordPress. The best and perhaps the easiest way is to use a page builder like Elementor, Divi, or Beaver Builder, which lets you design a page from scratch and even hide the default header and footer. You can also create a custom page template in your theme if you’re comfortable with a bit of coding. This gives you full control over layout, background, and design elements. Many businesses also hire professionals offering Landing Page Design Services to create high-converting, visually distinct pages that blend perfectly with their brand while achieving specific marketing goals—like lead generation or product promotion.

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

79797381

Date: 2025-10-23 04:05:07
Score: 0.5
Natty:
Report link

Yes — your assumption is correct and still practical in 2025: most container and cloud job systems can mount directories, but not individual files.

Mounting a file directly into a container’s filesystem is usually an edge case.

Here’s how it breaks down across systems:

🧩 Kubernetes

Kubernetes volumeMounts only support mounting directories, not single files — unless you use specific volume types that simulate it (like configMap, secret, or projected volumes).

Even then, these are internally implemented as directories containing a file, not true file-level mounts.

For example:

volumeMounts:

- name: my-volume

mountPath: /app/config.json

subPath: config.json

works, but it’s a subPath hack — it still mounts the parent directory underneath.

When using sidecars and shared volumes, this can break easily because subPath mounts aren’t dynamically updated and don’t behave like a live mount point.

🧩 Docker / OCI Containers

Native Docker supports -v /host/path:/container/path, but it also expects a directory or a full file path that already exists on the host.

If the file doesn’t exist beforehand, the bind mount fails.

So while technically you can bind a single file, in practice pipeline systems and orchestration layers prefer directory mounts — they’re safer, portable, and more flexible for FUSE or remote mounts.

🧩 Cloud Batch / Vertex AI / Other Managed Runtimes

Most managed job systems (Google Cloud Batch, Vertex AI CustomJob, AWS Batch, SageMaker, etc.) abstract away low-level mounts, but when you provide mount specs, they’re all directory-based.

These platforms assume that you’re mounting a dataset, a model directory, or a temporary workspace — not individual blobs.

Even if they allow specifying a single object (like gs://bucket/file.txt), they’ll copy or download it into a temporary directory under the hood, not mount it as a file.

⚙️ Practical Implication

So, your design — where each output artifact lives inside its own directory and the actual content is always named consistently (/data) — is solid and future-proof.

It keeps mounts predictable, works with sidecar FUSE setups, and avoids subPath limitations.

Even in advanced container systems, true file-level mounts are rare, non-portable, and fragile.

Directory-level granularity is the reliable common denominator across Docker, Kubernetes, and cloud execution frameworks.

💡 In Short

File-level mounts = possible only in specific, fragile cases.

Directory mounts = universally supported, portable, and sidecar-friendly.

Your “/data suffix under a unique directory” pattern is a good long-term choice.

✅ TL;DR:

Keep the /data directory convention — file mounts aren’t widely or consistently supported, and your approach avoids nearly all real-world portability issues.

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

79797380

Date: 2025-10-23 04:02:06
Score: 1.5
Natty:
Report link
for ( init(); check();  doOut()) 
{
 doIn(); 
}

means

init();
for (;;) 
{
  if (!check()) break;
  doIn(); 
  doOut();
}
Reasons:
  • Low length (1):
  • Has code block (-0.5):
  • Low reputation (1):
Posted by: Lin

79797378

Date: 2025-10-23 03:58:05
Score: 2.5
Natty:
Report link
pip install dotenvcheck

Check this package at https://pypi.org/project/dotenvcheck/

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

79797377

Date: 2025-10-23 03:56:05
Score: 0.5
Natty:
Report link

When you got a range object from selection(like `myRange=mySelection.getRangeAt(0)`), send the range to this function:

function getSelectedText(range: Range):string {
    const div = document.createElement('div');
    div.appendChild(range.cloneContents());
    // we need get style by window.getComputedStyle(), 
    // so, it must be append on dom tree.
    // here is <body>,or some where that user can't see.
    document.body.appendChild(div);
    const it = document.createNodeIterator(div);
    let i;
    while (i = it.nextNode()) {
        // remove `user-select:none` node
        if (i.nodeType === Node.ELEMENT_NODE && window.getComputedStyle(i).userSelect === 'none') i.remove();
    }
    const cpt: string = div.innerText;
    div.remove();
    return cpt;
}
Reasons:
  • Long answer (-0.5):
  • Has code block (-0.5):
  • Starts with a question (0.5): When you
  • Low reputation (1):
Posted by: callmenp

79797374

Date: 2025-10-23 03:43:02
Score: 3.5
Natty:
Report link

CanCanCan combined with Rolify can do wonders.

Reasons:
  • Low length (1.5):
  • No code block (0.5):
  • Single line (0.5):
  • Starts with a question (0.5): CanCanCan
  • Low reputation (0.5):
Posted by: ldlgds

79797371

Date: 2025-10-23 03:40:01
Score: 0.5
Natty:
Report link

You don’t need jQuery for this — Angular animations can handle it cleanly.

Your main goal is to make one text slide out, another slide in, and swap them after the animation.

You can do that with a simple animation trigger and an event callback that updates the text when the animation finishes.

Here’s a minimal working example (Angular 19): import { Component } from '@angular/core';

import { bootstrapApplication } from '@angular/platform-browser';

import { trigger, state, style, transition, animate } from '@angular/animations';

import { provideAnimations } from '@angular/platform-browser/animations';

@Component({

selector: 'app-root',

animations: [

trigger('slide', \[

  state('up', style({ transform: 'translateY(-100%)', opacity: 0 })),

  state('down', style({ transform: 'translateY(0)', opacity: 1 })),

  transition('up \<=\> down', animate('300ms ease-in-out')),

\]),

],

template: `

\<h3\>Angular animation: sliding text\</h3\>

\<div class="box"\>

  \<div

    class="panel"

    \[@slide\]="state"

    (@slide.done)="onDone()"

  \>

    {{ currentText }}

  \</div\>

\</div\>

\<button (click)="animate()"\>Animate\</button\>

\<button (click)="reset()"\>Reset\</button\>

`,

styles: [`

.box { position: relative; height: 60px; overflow: hidden; }

.panel { position: absolute; width: 100%; text-align: center; font-size: 18px; background: #f6f6f6; }

button { margin: 6px; }

`],

})

export class App {

state: 'up' | 'down' = 'down';

currentText = 'Login';

nextText = 'Welcome 1';

count = 1;

animate() {

this.state = this.state === 'down' ? 'up' : 'down';

}

reset() {

this.count++;

this.nextText = \`Welcome ${this.count}\`;

this.animate();

}

onDone() {

if (this.state === 'up') {

  this.currentText = this.nextText;

  this.state = 'down'; // reset position

}

}

}

bootstrapApplication(App, { providers: [provideAnimations()] });

How it works:

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

79797370

Date: 2025-10-23 03:36:00
Score: 4
Natty:
Report link

Hi I have overcome this with this stackblitz.

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

79797368

Date: 2025-10-23 03:29:59
Score: 1
Natty:
Report link

Here is a convenient wrapper function:

def re_rsearch(pattern: re.Pattern[str], *args, **kwargs) -> re.Match[str] | None:
    m = None
    for m in pattern.finditer(*args, **kwargs):
        pass
    return m
Reasons:
  • Low length (0.5):
  • Has code block (-0.5):
  • Low reputation (1):
Posted by: enwioa

79797367

Date: 2025-10-23 03:24:58
Score: 1
Natty:
Report link

I checked with the JetBrains dotCover team, and they informed me that running coverage to IIS was supported until version 2025.2. In 2025.2, support for IIS was removed due to technical reasons. It may be restored in an upcoming release, likely in 2025.3, but this has not been confirmed yet.

Please find the link to the reference below.

Discussion link

Reasons:
  • No code block (0.5):
  • Self-answer (0.5):
Posted by: KR Akhil

79797362

Date: 2025-10-23 03:02:53
Score: 0.5
Natty:
Report link

Here's a workaround solution I've came to disable NSScrollPocket:

public extension NSScrollView {
    func disableScrollPockets() {
        guard #available(macOS 26.0, *) else { return }
        setValue(0, forKey: "allowedPocketEdges")
        setValue(0, forKey: "alwaysShownPocketEdges")
    }
}
Reasons:
  • Low length (0.5):
  • Has code block (-0.5):
  • Low reputation (0.5):
Posted by: goldwalk

79797340

Date: 2025-10-23 02:19:44
Score: 3.5
Natty:
Report link

Color preview

The official link: https://learn.microsoft.com/en-us/dotnet/api/system.windows.media.colors?view=windowsdesktop-9.0

(Must be at least 30 chars to post an answer.)

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

79797335

Date: 2025-10-23 01:48:37
Score: 3
Natty:
Report link

that error means u used an invalid flag --allow in your Docker build command and maybe u can try excecute this command with not that

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

79797333

Date: 2025-10-23 01:42:36
Score: 0.5
Natty:
Report link

Jekyll had the same issue with wdm gem in their own Gemfile, and at some point they changed it to:

gem 'wdm', '~> 0.1.1', :install_if => Gem.win_platform?
Reasons:
  • Low length (1):
  • Has code block (-0.5):
  • Ends in question mark (2):
  • High reputation (-2):
Posted by: Hakanai

79797332

Date: 2025-10-23 01:41:36
Score: 1.5
Natty:
Report link

Hey I have a example for you :

component child:

<script setup lang="ts">
  const emit = defineEmits(['update:email','update:password'])
  const handleEmail = (event: Event) => {
    const target = event.target as HTMLFormElement
    emit('update:email', target.value)
  }
  const handlePassword = (event: Event) => {
    const target = event.target as HTMLFormElement
    emit('update:password', target.value)
  }
</script>
<template>
  <div class="loginContainer">
    <input type="email" placeholder="Email address" @input="handleEmail" />
    <Divider/>
    <input type="password" placeholder="Password" @input="handlePassword" />
  </div>
</template>

component parent:

template:

<template>
  <div class="background">
    <span class="title">Sign in to ConnectCALL</span>        
    <div style="display: flex; flex-direction: column; gap: 20px; width: 500px; margin: 20px;">
      <FormsEmailAndPassword @update:email="handleEmail" @update:password="handlePassword" />
      <div style="text-align: end;">
        <ButtonLinkButton title="Forgot Password?" @click="redirectToRecoverPage" :isLoading="isLoading" />
      </div>
      <ButtonRegularButton title="Sign In" @click="initAuth" :isLoading="isLoading" />
      <ButtonRegularButton title="Register" variant="secondary" @click="redirectToSignUp" backgroundColor="white" :isLoading="isLoading" />
    </div>
  </div>
</template>

script:

const handleEmail = (value: string) => {   
    email.value = value    
  }
  const handlePassword = (value: string) => {
    password.value = value
  }

I hope thats help you

Reasons:
  • RegEx Blacklisted phrase (2): Hey I have
  • Long answer (-1):
  • Has code block (-0.5):
  • Low reputation (1):
Posted by: Jovanny Ruiz

79797330

Date: 2025-10-23 01:29:33
Score: 2.5
Natty:
Report link

If the passkey is for an account at the IdP which is a different party than your app, you need to use a system web view for the sign in.

https://passkeys.dev/docs/reference/android/#webviews

https://passkeys.dev/docs/reference/ios/#webviews

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

79797324

Date: 2025-10-23 01:19:31
Score: 5.5
Natty:
Report link

Are you trying to have the username underneath the items in the small design?

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

79797323

Date: 2025-10-23 01:17:30
Score: 4.5
Natty:
Report link

I just built https://www.commitcompare.dev/ to get the compare URL and diff files easily!

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

79797317

Date: 2025-10-23 00:57:26
Score: 1.5
Natty:
Report link

So It might be useful for someone else, So apparently JsonBin.io has a bad curl request info in documentation. Instead of double quotes "" use single quotes '' for the X-Master-Key or X-Access-Key header. and the Curl request passes without 401 error. Hope it helps somebody

Reasons:
  • Whitelisted phrase (-1): Hope it helps
  • Low length (0.5):
  • No code block (0.5):
  • Single line (0.5):
  • Low reputation (1):
Posted by: Dren Mullafetahu

79797316

Date: 2025-10-23 00:57:26
Score: 2.5
Natty:
Report link

I am encountering the same issue. when running like this graph.microsoft.com/v1.0/me/messages?$filter=internetMessageId eq '<[email protected]>' i am getting a status code 404 not found. But i know the email is present in the inbox. Any lead on it will help.

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

79797315

Date: 2025-10-23 00:56:25
Score: 4.5
Natty:
Report link

I made a step by step video implementing Entra external ID. Maybe it can help you.

https://youtu.be/MKGIKcCpQ0o?si=32ubvjCKCL-R1fGz

Reasons:
  • Blacklisted phrase (1): youtu.be
  • Probably link only (1):
  • Low length (1.5):
  • No code block (0.5):
  • Low reputation (0.5):
Posted by: EmiFala

79797314

Date: 2025-10-23 00:54:24
Score: 0.5
Natty:
Report link

The following improves upon just simple cp -a in that it does not include the devDependencies, so function.zip can be 10x smaller.

cp package.json dist/
npm install --prefix ./dist --omit=dev
Reasons:
  • Low length (0.5):
  • Has code block (-0.5):
  • Low reputation (0.5):
Posted by: jjurach

79797308

Date: 2025-10-23 00:41:21
Score: 4
Natty: 5
Report link

Allowed IP subnet in storage account fixed the issue.. Thank you !

Reasons:
  • Blacklisted phrase (0.5): Thank you
  • Low length (1.5):
  • No code block (0.5):
  • Single line (0.5):
  • Low reputation (1):
Posted by: Balan Nachimuthu

79797307

Date: 2025-10-23 00:40:21
Score: 0.5
Natty:
Report link

Try adding modal={true} to Popover

return (
    <Popover modal={true}>

This is because calendar becomes non interactive due to pointer event conflicts caused by how Radix UI (the underlying library) handles modal overlays and portals

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

79797298

Date: 2025-10-23 00:03:13
Score: 0.5
Natty:
Report link

I had a similar situation. I deleted a git, recreated it, refreshed it. All the files showed in Unstaged Changes. Plus and Double Plus did not appear to move them into Staged Changes.

So I Restarted Eclipse and then when I clicked inside an open editor for one of the files, suddenly the files all appeared in Staged Changes. That is because of the Link with Editor state being enabled. I was able to change files and move from Unstaged to Staged as usual. I was able to make the first commit at that point with no issues.

It seemed necessary to Restart to update the view, which seemed not to update otherwise. After that, clicking the Repository in the Git Repositories tab (View) would probably have revealed the same as clicking in an editor.

Eclipse 2025-09 (4.37.0) Build id: 20250905-1456.

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

79797294

Date: 2025-10-22 23:38:07
Score: 1
Natty:
Report link

If anyone encounters this issue, simply add symbolConfiguration to the DisplayRepresentation.Image as follows:

.init(systemName: name, tintColor: color, symbolConfiguration: .preferringMulticolor())

Reasons:
  • Low length (0.5):
  • Has code block (-0.5):
  • Self-answer (0.5):
  • Low reputation (0.5):
Posted by: J.Doe

79797287

Date: 2025-10-22 23:22:01
Score: 2
Natty:
Report link

I recently started learning cpp and i encountered with this problem
which i searched for and understood it need some configurations on json file and building exe file of the code to be able to run and debug
which i found out C/C++ Compile Run
extention will automatically do it all
https://marketplace.visualstudio.com/items?itemName=danielpinto8zz6.c-cpp-compile-run

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

79797284

Date: 2025-10-22 23:09:58
Score: 0.5
Natty:
Report link

If you're using WorkManager, you may also need to specifically add the Foreground Service Type to the third parameter of the ForegroundInfo method:

ForegroundInfo(INSERT NOTIFICATION ID HERE, INSERT NOTIFICATION OBJECT HERE, ServiceInfo.FOREGROUND_SERVICE_TYPE_LOCATION)
Reasons:
  • Low length (0.5):
  • Has code block (-0.5):
  • Low reputation (0.5):
Posted by: user16118981

79797261

Date: 2025-10-22 22:15:47
Score: 1
Natty:
Report link

No, you cannot link enterprise and personal accounts because they use different user authentication.

Proof by cases:

Case 1: Attempt to link enterprise/personal via enterprise account.

Sign in to <enterprise>.github.com via LDAP. Upon sign in, select top right pfp button --> Add Account

Redirects you to enterprise sign in, personal account credentials invalid.

Case 2: Attempt to link enterprise/personal via personal account.

Sign in to github.com. Upon sign in, select top right pfp button --> Add Account

Redirects you to non-enterprise GH, enterprise creds invalid.

Try to get around it and get back to me if you do. Would love to show (obfuscated ofc) my enterprise work on personal in pursuit of that full green graph.

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

79797260

Date: 2025-10-22 22:14:47
Score: 1.5
Natty:
Report link

I was totally broken when the love of my life left me it was so hard for me i almost gave up if not for a friend who directed me to DR ODESHI a very good and powerful man who helped me bring back the love of my life and now he treat me with so much love and care, you can contact him via email [email protected] or

https://wa.me/+2347011823004

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

79797259

Date: 2025-10-22 22:14:47
Score: 2
Natty:
Report link

I actually created an extension to search all elements on requests and responses of queries. But it's only available as a Chrome extension.

It is able to search even through Payload. I created it as a week-end project recently and kept iterating on it since if it's of actually any help for you.

The chrome extension is called "Network Deepscan" and you can find it here

enter image description here

Reasons:
  • Blacklisted phrase (1): any help
  • No code block (0.5):
  • Low reputation (0.5):
Posted by: Knighto05

79797258

Date: 2025-10-22 22:11:46
Score: 1.5
Natty:
Report link

Reorder factor levels. For example:

XP_DATA$LANGUAGE = factor(XP_DATA$LANGUAGE, levels=c("Spanish", "Italian", "English")) 
Reasons:
  • Low length (1):
  • Has code block (-0.5):
  • Low reputation (1):
Posted by: Reinhold Kliegl

79797253

Date: 2025-10-22 21:59:43
Score: 5
Natty:
Report link

Currenlty, having the same issue with my Jetson Nano Dev. Kit.
Could you be so kind to send me the full file.

Got the same issue while compiling.

Reasons:
  • Low length (1):
  • No code block (0.5):
  • Me too answer (2.5): having the same issue
  • Low reputation (1):
Posted by: Harrison Adrian

79797229

Date: 2025-10-22 21:04:29
Score: 1
Natty:
Report link

The issue wasn’t with the code itself, but with the expression. It should be 1/ng instead of ng.
That change makes a big difference, since using 1/ng keeps the values on a proper scale and ensures the determinant is non-zero.
After fixing it to 1/ng, it works as expected.

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

79797206

Date: 2025-10-22 20:29:21
Score: 2
Natty:
Report link

Try PHP CRUD API Generator. Expose your MySQL/MariaDB database as a secure, flexible, and instant REST-like API. Features optional authentication (API key, Basic Auth, JWT, OAuth-ready),
OpenAPI (Swagger) docs, and zero code generation.

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

79797196

Date: 2025-10-22 20:22:18
Score: 1
Natty:
Report link
Did you try

select title from recipe join ingredient as i1 on recipe.recipeId= i1.recipeId join ingredient as i2 on recipe.recipeId= i2.recipeId
where (i1.ingredient = "egg" and i1.amount = 2) and i2.ingredient = "water" ;

?
Reasons:
  • Whitelisted phrase (-2): Did you try
  • Low length (0.5):
  • Has code block (-0.5):
  • Ends in question mark (2):
  • Low reputation (1):
Posted by: Stanislav Kikot

79797187

Date: 2025-10-22 19:54:11
Score: 2
Natty:
Report link
windows_capture is faster than mss, at least in windows
Reasons:
  • Low length (1.5):
  • Has code block (-0.5):
  • Single line (0.5):
  • Low reputation (0.5):
Posted by: Cristian Jorge A. Kusch

79797185

Date: 2025-10-22 19:53:11
Score: 2.5
Natty:
Report link

I have resolved a similar issue by deleting and then re-adding the server folder of my project.

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

79797184

Date: 2025-10-22 19:49:09
Score: 0.5
Natty:
Report link

The solution is to add a stopBy: end right after the kind so it looks for not just immediate children but anything that can match, including any descendant and siblings.

Reasons:
  • Whitelisted phrase (-1): solution is
  • Low length (1):
  • Has code block (-0.5):
  • Self-answer (0.5):
  • Single line (0.5):
Posted by: Ilan Schemoul

79797175

Date: 2025-10-22 19:36:05
Score: 0.5
Natty:
Report link

The comments from Harold and amalloy are spot on: floats is the correct way to type hint a float array.

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

79797174

Date: 2025-10-22 19:35:05
Score: 1
Natty:
Report link

Well, if you created the Unix socket in $PWD, you cannot expect it to be in the location configured by postgresql.conf or the default location.

Try

createdb --host=$PWD mydb

Your are just horsing around and experimenting, right?

Reasons:
  • Low length (0.5):
  • Has code block (-0.5):
  • Ends in question mark (2):
  • Looks like a comment (1):
  • High reputation (-2):
Posted by: Laurenz Albe

79797173

Date: 2025-10-22 19:33:04
Score: 2
Natty:
Report link

Ok, how to fix this to know: Use the bug to

complex it. Go to the account to authorize and manage some

of your apps by the admin's console.

If you are a manager or an admin, please enter

your full password. Then, after that, clear all

of your cookies, Ask an admin to allow you to unblock all

of your apps.

Please use a console, By a user console to be made by cards to

valid apps. tap the approved for you button, then tap sign in to

do in the steps. If you can't access this app blocked, then

go to the chrome web store.

Within a few minutes, the admin's console

will unblock all of the apps within your time.

Thanks! my app is all fine now!

Reasons:
  • Blacklisted phrase (0.5): Thanks
  • Long answer (-0.5):
  • No code block (0.5):
  • Unregistered user (0.5):
  • Low reputation (1):
Posted by: smayan

79797162

Date: 2025-10-22 19:17:59
Score: 8.5 🚩
Natty: 6
Report link

do you have any update on this, i am also having similar query on how to achieve this

Reasons:
  • Blacklisted phrase (1): update on this
  • Blacklisted phrase (1): how to achieve
  • RegEx Blacklisted phrase (2.5): do you have any
  • Low length (1.5):
  • No code block (0.5):
  • Unregistered user (0.5):
  • Single line (0.5):
  • Low reputation (1):
Posted by: kalyan

79797158

Date: 2025-10-22 19:14:58
Score: 0.5
Natty:
Report link

In my opinion, this is a common trade-off with gSOAP. Static arrays give better performance but do not produce WSDL that is fully WS-I compliant due to the SOAP-ENC:Array dependency, which many validators reject. Using dynamic arrays (with __size and *ptr) keeps your WSDL clean and compliant but adds overhead. One solution is to use dynamic arrays in the interface (for WSDL compliance), but internally convert them to fixed-size arrays for processing — a kind of wrapper approach. It's not perfect, but it gives you the best of both worlds.

Reasons:
  • Whitelisted phrase (-1): solution is
  • Long answer (-0.5):
  • No code block (0.5):
  • Single line (0.5):
  • Low reputation (1):
Posted by: Off Nulls

79797156

Date: 2025-10-22 19:09:57
Score: 1
Natty:
Report link

You can open the Command Palette and search for “Preferences: Open Workspace Settings (JSON)”.

Then, to ensure auto-formatting is turned off, set the following setting to false:

"omnisharp.enableEditorConfigSupport": false
Reasons:
  • Low length (0.5):
  • Has code block (-0.5):
  • Low reputation (1):
Posted by: Ashutosh Mishra

79797152

Date: 2025-10-22 19:04:55
Score: 1
Natty:
Report link

You have mismatched version of airbyte-cdk and base image. In the new version of airbyte-cdk, the manifest_declarative_source.py has moved to "legacy" folder. Your base image is still importing the old path(No legacy folder exists).

You can do:

Downgrade CDK to match base image : airbyte-cdk = "6.59.0"

or

you can upgrade the latest base image 4.0+ (if its exists)

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

79797145

Date: 2025-10-22 18:54:53
Score: 2.5
Natty:
Report link
typeof spellTypes [number]['label']

will do, thanks to Jonrsharpe.

Reasons:
  • Blacklisted phrase (0.5): thanks
  • Low length (1.5):
  • Has code block (-0.5):
  • Self-answer (0.5):
  • Low reputation (0.5):
Posted by: Arnaud

79797143

Date: 2025-10-22 18:48:51
Score: 0.5
Natty:
Report link

Use ImageMagick. You can either call it directly, or register the DLL and call it via VBA.

Whichever way you do it, this is the command you want to run:

identify -format %Q filename.jpg
Reasons:
  • Low length (0.5):
  • Has code block (-0.5):
  • Low reputation (0.5):
Posted by: Andrew

79797138

Date: 2025-10-22 18:46:51
Score: 1
Natty:
Report link

Your doubt is completely fine.

Please note that, MongoDB do not undo write operation on the successful written nodes members. It wait until the wtimeout time and return the writeConcern error or successful.

Technically, writeConcern is a acknowledgement mechanism if your data written to the how many member of mongod should confirm receipt to be consider as successful by the driver.

If a write concern fails, it often means that the write was accepted by the primary, but the requested level of acknowledgment was not recieved. Incase if you need only write should happen if writeConcern is successful, unfortunately there is no built-in option to "undo" writes if the write concern fails. Your application logic must check the write concern response and handle potential partial success if strict durability is essential.

Thanks, Darshan

Reasons:
  • Blacklisted phrase (0.5): Thanks
  • Long answer (-0.5):
  • No code block (0.5):
  • Low reputation (0.5):
Posted by: Darshan J

79797129

Date: 2025-10-22 18:37:48
Score: 1.5
Natty:
Report link

I was able to achieve something realllyyyy close with this custom clear segmented picker: https://gist.github.com/programVeins/c8af54eeaabe2406c81feb4bb606351d

The only missing thing is: the text/labels on the selected pill doesn't get distorted by the glass effect, as the pill is simply like an overlay that is swipable, tappable and bounces very well like the liquid glass that it is.

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

79797127

Date: 2025-10-22 18:35:47
Score: 1.5
Natty:
Report link

I found out how to fix it, not what causes it really.

it is fixed by adding

event.stopPropagation();

and

event.preventDefault();

It was triggered by some sort of propagation to the add button for some reason

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

79797125

Date: 2025-10-22 18:31:45
Score: 4
Natty:
Report link

Trying some of the methods mentioned here should help: https://github.com/orgs/community/discussions/162702

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

79797108

Date: 2025-10-22 18:05:38
Score: 1
Natty:
Report link

Go to your Docusign account, go to settings, find the Connect menu (left) and find the configuration for PowerAutomate and make sure you have the correct URL in there:enter image description here

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

79797104

Date: 2025-10-22 17:58:36
Score: 2
Natty:
Report link

In your form you have name and sur name but in the function you validating name and password due to which its giving password validation and redirecting to the same page so just add the password field in the form and it will work,

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

79797100

Date: 2025-10-22 17:54:35
Score: 2.5
Natty:
Report link

Not sure if there is still interest on this thread, but there is now a free tool that allows you to do this for Cornerstone or any other LMS that supports SCORM. It also supports xAPI, https://xapi.io/

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

79797099

Date: 2025-10-22 17:54:35
Score: 5
Natty: 6.5
Report link

A few years later, but this guide is a great explanation of what's going on:

https://community.databricks.com/t5/technical-blog/deep-dive-streaming-deduplication/ba-p/105062

Reasons:
  • Blacklisted phrase (1): this guide
  • Probably link only (1):
  • Low length (1.5):
  • No code block (0.5):
  • Low reputation (1):
Posted by: Juan Manuel Muñoz Betancur

79797093

Date: 2025-10-22 17:44:32
Score: 1.5
Natty:
Report link

terminal.integrated.copyOnSelection does the job — found from https://vanwollingen.nl/copy-text-from-your-vscode-terminal-by-selecting-it-b99f2a4e9709.

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

79797085

Date: 2025-10-22 17:29:28
Score: 1.5
Natty:
Report link

I encountered the same issue with my azure functions. Occasionally, I would get a 404 error when trying to access them. When I checked the Azure portal and refreshed the page, all my functions appeared to be gone almost as if they have been deleted. Redeploying the functions resolved the issue, and everything started working normally again. It was strange, but I noticed this tended to happen roughly once a month. It seems that if there are no active deployments for over a month, the functions might be completely removed from the active deployment.

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

79797076

Date: 2025-10-22 17:17:25
Score: 2
Natty:
Report link

Ah! What you’re seeing isn’t actually C++ behavior—it’s coming from whatever editor or IDE you’re using. Let me break it down carefully:

  1. C++ block comments:

    • Correct: /* this is a block comment */

    • Starts with /* and ends with */. Everything in between is ignored by the compiler.

  2. Your typo: /**

    • In plain C++, this is still just a block comment, because the compiler only cares that it starts with /* and ends with */. The extra * doesn’t change compilation.

    • So for the compiler, /** something */ is perfectly valid.

  3. Why your editor shows bold:

    • Many editors (VS Code, JetBrains IDEs, etc.) use syntax highlighting rules that interpret /** as the start of a documentation comment (like Doxygen in C++).

    • Documentation comments are meant to describe functions, classes, or variables, and IDEs often render them in bold, italic, or a different color to distinguish them from regular comments.

    • Example:

      /**
      * This is a doc comment
      */
      void foo() {}
      
      

      Here, /** triggers the editor to treat it as a doc comment.

In short: Your code is fine for compilation; the bold just means your editor thinks it’s a doc comment (Doxygen-style).

If you want, I can also show a quick table of all C++ comment types and how editors usually highlight them so you can avoid these visual surprises. Do you want me to do that?

Reasons:
  • Long answer (-1):
  • Has code block (-0.5):
  • Ends in question mark (2):
  • Unregistered user (0.5):
  • Low reputation (1):
Posted by: ChatGPT Bot

79797065

Date: 2025-10-22 17:05:22
Score: 3.5
Natty:
Report link

This is a user error; I had logic from the previous iteration of this using an enumeration value of "None", which became the default.

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

79797063

Date: 2025-10-22 17:01:21
Score: 2.5
Natty:
Report link

For rest api apigateway still supported only in AWS UI console but not using terraform code or flu. It is a pity

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

79797053

Date: 2025-10-22 16:54:18
Score: 3
Natty:
Report link

How about using a working variable like the following?

for (int wrow = numRows - 1; wrow >= 0; wrow--)
{
    var row = FlipVertical
                ? numRows - 1 - wrow
                : wrow;
    for (int wcolumn = 0; wcolumn < numColumns; wcolumn++)
    {
        var column = FlipHorizontal
                       ? numColumns - 1 - wcolumn
                       : wcolumn;
        Console.WriteLine($"{row} , {column}");
    }
}
Reasons:
  • Has code block (-0.5):
  • Ends in question mark (2):
  • Starts with a question (0.5): How
  • Low reputation (1):
Posted by: motosann

79797044

Date: 2025-10-22 16:49:17
Score: 1.5
Natty:
Report link

try to build with


ng build --base-href ./

Reasons:
  • Low length (1.5):
  • Has code block (-0.5):
  • Low reputation (0.5):
Posted by: ahmed hlaimi

79797043

Date: 2025-10-22 16:48:16
Score: 2.5
Natty:
Report link

What you want is basically

df.groupby('Dealer')['city'].apply(lambda x: x).reset_index()

Reasons:
  • Low length (1.5):
  • Has code block (-0.5):
  • Starts with a question (0.5): What you
  • Low reputation (1):
Posted by: Jhonnyred

79797042

Date: 2025-10-22 16:47:16
Score: 3.5
Natty:
Report link

Are you sure it's getting to call the "awardBadge" function? try printing "test" before calling the function to check if it gets there.

Reasons:
  • Low length (1):
  • No code block (0.5):
  • Contains question mark (0.5):
  • Single line (0.5):
  • Low reputation (1):
Posted by: Aviv Zvuloni

79797031

Date: 2025-10-22 16:39:13
Score: 2.5
Natty:
Report link

This is an old thread but if anyone is looking for a working webhook service for Spotify - checkout SpotifyWebhooks - it currently supports artist release webhook notifications with more coming soon :)

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

79797023

Date: 2025-10-22 16:31:11
Score: 1
Natty:
Report link

This is a bug in the firebase console for firestore. If you enter a specific time with :00 seconds in the firebase firestore console, and then view that same document in firestore in the Google cloud console, you’ll notice some number of milliseconds at the end.

The workaround is to input the timestamp in the Google cloud console instead. That lets you specify the milliseconds

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

79797019

Date: 2025-10-22 16:25:10
Score: 2
Natty:
Report link

Try to add your bundle ID to your JWT payload.
"bid": "com.example"

Reasons:
  • Low length (1.5):
  • No code block (0.5):
Posted by: Victoria Seniuk

79797001

Date: 2025-10-22 16:04:05
Score: 1
Natty:
Report link

Take a look at Blaze Persistence entity view

But as for me that approach will lead to some complexity and cause errors

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

79796997

Date: 2025-10-22 16:01:04
Score: 0.5
Natty:
Report link

If you have a conflicting setup between your local setup and container setup with ts, you can create a docker.tsconfig. To avoid trying to keep two different tsconfig files update to date, just have your docker version extend the local one.

Specifically:
docker.ts.config

{
  "extends": "./local.tsconfig.json",
  "compilerOptions": {
    "baseUrl": "." // change to whatever the directory difference is
  }
}

Then change the docker-compose to rename your local tsconfigs to their docker versions

docker.tsconfig -> tsconfig

tsconfig -> local.tsconfig

    volumes:
      - ./server/docker.tsconfig.json:/app/tsconfig.json
      - ./server/tsconfig.json:/app/local.tsconfig.json

This allows your docker.tsconfig to be loaded on just your container, while leaving your local setup as-is

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

79796994

Date: 2025-10-22 15:59:03
Score: 5
Natty:
Report link

it looks like having given my answer that i can not longer comment on others ..

A shout out to @markp-fuso for setting a very high bar for quality of answer.

I had not even considered your assumption C but your additional care for my solution is appreciated .. i am, of course, going to use your code to improve my own. Thanks for that

and a harsh raspberry to whoever down voted my own solution immediately as i posted it

Reasons:
  • Blacklisted phrase (0.5): Thanks
  • Blacklisted phrase (1): appreciated
  • Whitelisted phrase (-1): solution is
  • RegEx Blacklisted phrase (2): down vote
  • No code block (0.5):
  • User mentioned (1): @for
  • Self-answer (0.5):
  • Low reputation (0.5):
Posted by: vulcan_

79796984

Date: 2025-10-22 15:51:00
Score: 0.5
Natty:
Report link

folks .. thanks for you input .. your suggestions plus a brutal afternoon of trial and many many errors led me to an answer in two parts:

pathToUpper() { printf '%s' ${1:-path} | tr [:lower:] [:upper:] ; }
pathlist() { local -n tmp=`pathToUpper $1`; echo $tmp | tr : \\n; }

# and then come the aliases
alias path='pathlist path'

alias llpath='pathlist ld_library_path'
alias libpath=llpath
alias pathlib=llpath
alias manpath='pathlist manpath'

i wanted to be able to type "path" to get $PATH listed out, one file path per line. I also wanted to be able to do the same for $MANPATH .. and $LD_LIBRARY_PATH .. etc .. you get the idea.

as i was denting the wall next to my desk i got tired of having to use caps lock to test the different path names so i conceived the idea of forcing the input to uppercase .. as all good env vars are in All Caps, right?

there does not seem to be a way to force upper case in a shell variable expansion; ${var,,} will change the contents of $var to lower case .. upper is perhaps possible but is more work to figure out. Laziness sets in when the Ibuprofen wears off.

And one cannot combine the lower case conversion with a default : ${1:-path,,} and ${${1:-path},,} fail to win bash shell favour .. but i found a way to combine default assignment with the need to evaluate the env var to get a colon ":" separated list of paths .. thus the pathToUpper function up there.

I do not need a general purpose toUpper function so i did not bother to factor one out .. so having a lower case "path" as a default works in this solution.

Then it was just playing with ways to append the resulting upper case env var name to a '$' and get the result evaluated into the needed list. That is what the pathlist function is doing in these steps:

  1. evaluate the input to have an uppercase path name

  2. echo that to get it expanded

  3. pipe the list of folder names to the tr command that converts the despised colons into the friendly, and more useful newline characters.

and Bob's your uncle .. at least, he might be. He certainly is not mine. But i have my solution

Reasons:
  • Blacklisted phrase (0.5): thanks
  • Long answer (-1):
  • Has code block (-0.5):
  • Contains question mark (0.5):
  • Self-answer (0.5):
  • Low reputation (0.5):
Posted by: vulcan_

79796983

Date: 2025-10-22 15:50:00
Score: 1
Natty:
Report link

Thanks. I was encountering the same issue. However, it worked when I reinstalled and loaded the dplyr package. Although this caused the R environment to restart. That was a whole crash of all the objects saved in the environment.

Issue resolved, thanks - Ramesh

Reasons:
  • Blacklisted phrase (0.5): Thanks
  • Blacklisted phrase (0.5): thanks
  • Whitelisted phrase (-1): it worked
  • Low length (0.5):
  • Has code block (-0.5):
  • Low reputation (1):
Posted by: Ramesh Kathariya

79796974

Date: 2025-10-22 15:43:57
Score: 11.5 🚩
Natty:
Report link

I have the same issue but with a UIScrollView and not a UITableView and seems that any of the suggested solution (title + largeTitle, Top constraint to 0 to the superview) is working. Is any of you having the same issue ? Any solution found ?

Reasons:
  • Blacklisted phrase (1.5): Any solution
  • Blacklisted phrase (1): I have the same issue
  • RegEx Blacklisted phrase (2): Any solution found ?
  • Low length (0.5):
  • No code block (0.5):
  • Me too answer (2.5): I have the same issue
  • Me too answer (0): having the same issue
  • Ends in question mark (2):
  • Single line (0.5):
  • Low reputation (1):
Posted by: Claudio Bo

79796965

Date: 2025-10-22 15:37:56
Score: 2
Natty:
Report link

Zedgraph allows you to build a histogram from stacking columns (pane.BarSettings.Type = ZedGraph.BarType.Stack;). Accordingly, you can divide the data set into several column colors by specifying the value 0 in the "wrong" colors, and then plot several histograms. It will look like a single histogram with multiple colors.

Reasons:
  • No code block (0.5):
  • Single line (0.5):
  • Low reputation (1):
Posted by: Алексей Оводков

79796943

Date: 2025-10-22 15:15:49
Score: 1
Natty:
Report link

maybe I'm late to the party, but I suggest to modify the following lines:

model = pipeline(model="facebook/wav2vec2-base-960h")
data = np.frombuffer(audio.get_raw_data())

to

model = pipeline("automatic-speech-recognition",model="facebook/wav2vec2-base-960h")
data = np.frombuffer(audio.get_raw_data(),dtype=np.int16)

That's the difference between my code and yours.

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