79818296

Date: 2025-11-12 22:36:13
Score: 0.5
Natty:
Report link

The fix was quite simple. What you will notice is that I hadn't opened up the port 443 in docker so it was not being allowed through once the redirect happened.

Credit to: https with nginx and docker compose not working

services:
    homer:
        container_name: homer
        image: b4bz/homer:latest
        volumes:
          - './www/assets:/www/assets'
        environment:
          - INIT_ASSETS=0
          - PORT=8080
          - BASE_URL=/
        restart: unless-stopped
    
      nginx:
        image: nginx:latest
        container_name: nginx_container
        ports:
          - 80:80
          - 443:443 ****** -> This is the fix ******
        volumes:
          - './nginx.conf:/etc/nginx/nginx.conf'
          - './certs/:/etc/nginx/certs/'
        depends_on:
            - homer
        restart: unless-stopped
Reasons:
  • Long answer (-0.5):
  • Has code block (-0.5):
  • Self-answer (0.5):
  • Low reputation (1):
Posted by: JamesMcC

79818295

Date: 2025-11-12 22:36:13
Score: 2.5
Natty:
Report link

Have you already tried kind of this?

<template>
    <div class="max-w-full">
        <div class="max-h-[24rem] px-24 py-24">
            <slot name="content" />
        </div>
        <div class="py-16 px-24 flex gap-8 justify-between">
            <TertiaryButton @click="setDefaultValues" />
            <PrimaryButton @click="closeTooltip" />
        </div>
    </div>
</template>
Reasons:
  • Has code block (-0.5):
  • Ends in question mark (2):
  • Low reputation (1):
Posted by: goose

79818294

Date: 2025-11-12 22:34:12
Score: 2
Natty:
Report link

As people mentioned, for larger image files, it is not recommended to store the file directly in the table, but rather just store the reference.
If anyone is interested, I have developed a small, open source tool that exposes a REST API and that comes with a WebUI to do exactly that https://github.com/SW-CD/MediaHub_OSS/tree/main

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

79818293

Date: 2025-11-12 22:33:12
Score: 3
Natty:
Report link

I wrote a scope timer class a while back; https://github.com/stephenlclarke/ScopeTimer. It's tiny, zero-intrusion C++17 RAII scope timer for high-performance code paths.

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

79818292

Date: 2025-11-12 22:27:10
Score: 0.5
Natty:
Report link

Nesting groups are no longer supported

Removed in version 3.14: Calling add_argument_group() or add_mutually_exclusive_group() on a mutually exclusive group now raises an exception. This nesting was never supported, often failed to work correctly, and was unintentionally exposed through inheritance.

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

79818291

Date: 2025-11-12 22:26:10
Score: 0.5
Natty:
Report link

This is natively supported by Intl.NumberFormat now and can be integrated with libraries like format.js

console.log(Intl.NumberFormat('en', {
    maximumSignificantDigits: 3,
    notation: 'compact',
    style: 'unit',
    unit: 'byte',
    unitDisplay: 'narrow'
}).format(1050000));

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

79818289

Date: 2025-11-12 22:24:09
Score: 4.5
Natty:
Report link

these make sense, thanks y'all!

Reasons:
  • Blacklisted phrase (0.5): thanks
  • Low length (2):
  • No code block (0.5):
  • Self-answer (0.5):
  • Single line (0.5):
  • Low reputation (0.5):
Posted by: Colin Brett Williams

79818284

Date: 2025-11-12 22:15:07
Score: 0.5
Natty:
Report link

The datetime-local input requires a specific format for the value strings. In the OP, they're missing the time.

I struggle with this myself because Ruby also adds the timezone by default. You need to format time objects correctly with something like:

Time.now.strftime("%Y-%m-%dT%H:%M")
Reasons:
  • Low length (0.5):
  • Has code block (-0.5):
  • Low reputation (0.5):
Posted by: Matheus Richard

79818282

Date: 2025-11-12 22:12:07
Score: 1.5
Natty:
Report link
// I thought it would be:
// Paket 1: [Header1][Fragment1]
// Paket 2: [Header2][Fragment2] 
// Paket 3: [Header3][Fragment3]

// but in the end it was like:
// Paket 1: [Header1][Fragment1][Header2][Fragment2][Header3][Fragment3]...

i am going to update my github project

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

79818275

Date: 2025-11-12 21:55:02
Score: 3.5
Natty:
Report link

I just found a python library that do exactly that, the name is athena_bridge.

I have tried it and it works quite well, allow you to run Pyspark code using Python + Athena.

existing data in S3.

https://github.com/AlvaroMF83/athena_bridge
https://pypi.org/project/athena-bridge/

Best regards.

Reasons:
  • Blacklisted phrase (0.5): Best regards
  • Blacklisted phrase (1): regards
  • Low length (0.5):
  • No code block (0.5):
  • Low reputation (1):
Posted by: Licantropo

79818274

Date: 2025-11-12 21:54:02
Score: 4
Natty:
Report link

Switching to UVM-IEEE magically fixed it.

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

79818269

Date: 2025-11-12 21:39:58
Score: 1.5
Natty:
Report link
  1. Install dotenv
npm i dotenv
  1. Navigate to your prisma.config.ts file in your project. Add this line at the top:
import "dotenv/config";
  1. Run the following:
npx prisma generate
Reasons:
  • Low length (1):
  • Has code block (-0.5):
  • Low reputation (1):
Posted by: codedkey_

79818259

Date: 2025-11-12 21:21:54
Score: 2.5
Natty:
Report link

It appears this is natively supported now

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

79818254

Date: 2025-11-12 21:15:52
Score: 3
Natty:
Report link

Tried to move it there without success. And If I delete and create a new one there is says is a duplicate

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

79818249

Date: 2025-11-12 21:11:51
Score: 1
Natty:
Report link

this should be a normal q&a question.

Reasons:
  • Low length (2):
  • No code block (0.5):
  • Single line (0.5):
  • High reputation (-2):
Posted by: Daniel A. White

79818247

Date: 2025-11-12 21:09:50
Score: 2
Natty:
Report link

from docx import Document

from reportlab.lib.pagesizes import letter

from reportlab.platypus import SimpleDocTemplate, Paragraph, Spacer

from reportlab.lib.styles import getSampleStyleSheet

from reportlab.pdfbase.cidfonts import UnicodeCIDFont

from reportlab.pdfbase import pdfmetrics

# Registrar fuente compatible con acentos y caracteres latinos

pdfmetrics.registerFont(UnicodeCIDFont("HeiseiMin-W3"))

# Crear el PDF

pdf_path = "/mnt/data/Guion_Exposicion_Alicia_Pais_Maravillas.pdf"

doc_pdf = SimpleDocTemplate(pdf_path, pagesize=letter)

styles = getSampleStyleSheet()

style = styles["Normal"]

style.fontName = "HeiseiMin-W3"

style.fontSize = 12

story = []

# Texto principal

sections = [

("GUION DE EXPOSICIÓN SOBRE EL CUENTO “ALICIA EN EL PAÍS DE LAS MARAVILLAS”", True), 

("\\nIntegrantes:\\nLeslie Coral Pérez Avilés\\nÁngel Ariel Carballo Pérez\\nLuz Selene\\nEsmeralda\\nAlejandra Naomi\\nAlondra Acosta\\n\\n" 

 "Escuela: Conalep 177\\nMateria: Comunicación para la Comprensión y Valoración del Entorno (CCVE)\\n" 

 "Profesora: Mónica Santiago Méndez\\nFecha de entrega: Jueves 13 de noviembre del 2025", False), 

("\\nJUSTIFICACIÓN", True), 

("El presente guion de exposición tiene como propósito analizar la obra literaria “Alicia en el país de las maravillas” de Lewis Carroll..." 

 " (texto completo abreviado por longitud)", False), 

("\\nINTRODUCCIÓN", True), 

("“Alicia en el país de las maravillas”, escrita por Lewis Carroll en 1865, es una de las obras más emblemáticas..." 

 " (texto completo abreviado por longitud)", False), 

("\\nDESARROLLO", True), 

("Lewis Carroll inicia su relato con una escena aparentemente cotidiana: una niña aburrida..." 

 " (texto completo abreviado por longitud)", False), 

("\\nCONCLUSIÓN", True), 

("En conclusión, “Alicia en el país de las maravillas” es una obra literaria que combina lo fantástico con lo filosófico..." 

 " (texto completo abreviado por longitud)", False), 

("\\nREFERENCIAS BIBLIOGRÁFICAS", True), 

("Carroll, Lewis. \*Alicia en el país de las maravillas\*. Londres: Macmillan & Co., 1865.\\n" 

 "Cultura Genial. “Las aventuras de Alicia en el país de las maravillas: análisis y resumen.” Disponible en: https://www.culturagenial.com/es/las-aventuras-de-alicia-en-el-pais-de-las-maravillas/\\n" 

 "RosettaEdu. “Resumen y análisis de Alicia en el país de las maravillas.” Disponible en: https://rosettaedu.com/blogs/club-del-libro/resumen-alicia-en-el-pais-de-las-maravillas/\\n" 

 "Wikipedia. “Las aventuras de Alicia en el país de las maravillas.” Disponible en: https://es.wikipedia.org/wiki/Las_aventuras_de_Alicia_en_el_pa%C3%ADs_de_las_maravillas", False) 

]

# Añadir texto al PDF

for text, bold in sections:

if bold: 

    p_style = styles\["Heading2"\] 

    p_style.fontName = "HeiseiMin-W3" 

    p_style.fontSize = 13 

    story.append(Paragraph(text, p_style)) 

else: 

    story.append(Paragraph(text, style)) 

story.append(Spacer(1, 12)) 

# Guardar PDF

doc_pdf.build(story)

pdf_path

Reasons:
  • Blacklisted phrase (2): Crear
  • Long answer (-1):
  • Has code block (-0.5):
  • Unregistered user (0.5):
  • Low reputation (1):
Posted by: user31867455

79818241

Date: 2025-11-12 21:01:48
Score: 2.5
Natty:
Report link

It appears this is natively supported now

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

79818231

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

@MarcoPuente that's pretty bad. A high 'hey it works, dont care about maintainability' vibe. You could easily write a typo and you won't get a warning. There's a good reason "Stringly typed" is an insult. Please don't write that.

Reasons:
  • Low length (0.5):
  • No code block (0.5):
  • User mentioned (1): @MarcoPuente
  • Single line (0.5):
  • Looks like a comment (1):
  • High reputation (-2):
Posted by: rzwitserloot

79818224

Date: 2025-11-12 20:35:41
Score: 3
Natty:
Report link

When Rename a folder or file the User must be in Storage Blob Data Contributor.
In Portal => Open your Storage Account=>IAM=>Add Role.
Now you can also see Rename in Azure Storage Explorer.

enter image description here

Reasons:
  • Probably link only (1):
  • Low length (0.5):
  • No code block (0.5):
  • Starts with a question (0.5): When
  • Low reputation (0.5):
Posted by: Henrik

79818216

Date: 2025-11-12 20:28:39
Score: 2
Natty:
Report link

I faced that problem and solved it without giving uid 0 or using initContainer

I was using minikube multi-node
I used this command minikube addons enable csi-hostpath-driver
and the sc :storageClass: csi-hostpath-sc

the explaination that because of the multi-node they can't share the volume so can't share the permissions
with enabling this they make like a shared network volume

Reasons:
  • No code block (0.5):
  • Unregistered user (0.5):
  • Low reputation (1):
Posted by: bassant-mohy

79818201

Date: 2025-11-12 20:12:35
Score: 2.5
Natty:
Report link
from PIL import Image, ImageDraw, ImageFont
import imageio
import numpy as np

# Crear parámetros del GIF
width, height = 600, 200
frames = []
texto = "EWUDKNKDEWJDKJQWKJN WQJN WJNW NJWQ KKQJ WNJW KJJD WNJW KNJW NWKN WJJJJJJJJJ QDK"
font_size = 20

# Intentar cargar una fuente
try:
    font = ImageFont.truetype("arial.ttf", font_size)
except:
    font = ImageFont.load_default()

# Crear 20 frames con desplazamiento aleatorio y parpadeo
for i in range(20):
    img = Image.new("RGB", (width, height), "black")
    draw = ImageDraw.Draw(img)
    
    # Añadir efecto de parpadeo
    color = (0, np.random.randint(150, 256), 0)
    
    # Añadir texto con un pequeño desplazamiento aleatorio
    offset_x = np.random.randint(-5, 5)
    offset_y = np.random.randint(-5, 5)
    draw.text((10+offset_x, 80+offset_y), texto, font=font, fill=color)
    
    frames.append(np.array(img))

# Guardar GIF
imageio.mimsave("alien_code.gif", frames, duration=0.15)

print("GIF creado: alien_code.gif"
Reasons:
  • Blacklisted phrase (2): Crear
  • Long answer (-0.5):
  • Has code block (-0.5):
  • Unregistered user (0.5):
  • Low reputation (1):
Posted by: kjdsbackj

79818199

Date: 2025-11-12 20:10:34
Score: 2.5
Natty:
Report link

The probability density formula for std::exponential_distribution according to cppreference is P(x|λ) = λe^(-λx)

https://en.cppreference.com/w/cpp/numeric/random/exponential_distribution.html

We can see why the numbers generated are smaller on average with a larger λ by plotting it for different values of λ:

enter image description here

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

79818196

Date: 2025-11-12 20:04:33
Score: 2.5
Natty:
Report link

import { motion } from 'framer-motion'; import { Button } from "@/components/ui/button"; import { Card, CardContent } from "@/components/ui/card"; import { Brain, Activity, LineChart } from 'lucide-react';

export default function PulseMindSite() { return (

{/* Header */}

PulseMind

Pré-Venda

  {/* Hero Section */}
  <section className="flex flex-col md:flex-row items-center justify-between max-w-6xl mx-auto p-10 md:p-20">
    <motion.div initial={{ opacity: 0, y: 20 }} animate={{ opacity: 1, y: 0 }} transition={{ duration: 0.6 }} className="max-w-xl">
      <h2 className="text-5xl font-extrabold mb-6 leading-tight">Controle o estresse <span className="text-indigo-600">antes que ele controle você</span>.</h2>
      <p className="text-lg text-slate-600 mb-8">PulseMind detecta sinais de estresse e fadiga mental em tempo real e oferece recomendações personalizadas para equilibrar corpo e mente.</p>
      <Button className="px-8 py-4 text-lg rounded-2xl bg-indigo-600 hover:bg-indigo-700">Reserve a sua agora</Button>
    </motion.div>

    <motion.img initial={{ opacity: 0, scale: 0.9 }} animate={{ opacity: 1, scale: 1 }} transition={{ duration: 0.8 }} src="https://cdn.pixabay.com/photo/2023/06/12/07/11/smartwatch-8058390_1280.png" alt="PulseMind" className="w-80 md:w-96 mt-10 md:mt-0 drop-shadow-2xl" />
  </section>

  {/* Features */}
  <section className="bg-white py-20">
    <div className="max-w-6xl mx-auto px-6 text-center">
      <h3 className="text-3xl font-bold mb-12">Por que escolher o PulseMind?</h3>
      <div className="grid md:grid-cols-3 gap-8">
        <Card className="rounded-2xl shadow-lg">
          <CardContent className="p-8">
            <Activity className="mx-auto text-indigo-600 mb-4" size={48} />
            <h4 className="text-xl font-semibold mb-2">Monitoramento em Tempo Real</h4>
            <p className="text-slate-600">Acompanhe sinais fisiológicos de estresse e receba alertas antes da exaustão mental.</p>
          </CardContent>
        </Card>

        <Card className="rounded-2xl shadow-lg">
          <CardContent className="p-8">
            <Brain className="mx-auto text-indigo-600 mb-4" size={48} />
            <h4 className="text-xl font-semibold mb-2">IA Emocional Adaptativa</h4>
            <p className="text-slate-600">A PulseMind aprende com você e cria estratégias personalizadas para manter seu equilíbrio emocional.</p>
          </CardContent>
        </Card>

        <Card className="rounded-2xl shadow
Reasons:
  • Blacklisted phrase (3): você
  • Long answer (-1):
  • Has code block (-0.5):
  • Low reputation (1):
Posted by: kayo kassyano

79818192

Date: 2025-11-12 19:59:30
Score: 7 🚩
Natty: 5.5
Report link

has this been fixed if yes how did u do it ..since i am also facing the same issue

Reasons:
  • Blacklisted phrase (1): i am also facing the same issue
  • Low length (1.5):
  • No code block (0.5):
  • Me too answer (2.5): i am also facing the same issue
  • Single line (0.5):
  • Low reputation (1):
Posted by: Gnanesh Reddy

79818190

Date: 2025-11-12 19:58:29
Score: 5
Natty: 4.5
Report link

Boa tarde galera! Vou deixar meu comentário torcendo que ajude alguém! (PT-BR)?
Consegui solucionar esse problema, removendo "." de "base:"./"

como era:
export default defineConfig({
  base: "./",
  plugins: [react()],
})

como ficou:

export default defineConfig({
  base: "/",
  plugins: [react()],
})
Reasons:
  • Blacklisted phrase (1): Boa tarde
  • Blacklisted phrase (2.5): solucion
  • Low length (0.5):
  • Has code block (-0.5):
  • Contains question mark (0.5):
  • Low reputation (1):
Posted by: Elesio Oliveira de sousa

79818189

Date: 2025-11-12 19:58:29
Score: 1
Natty:
Report link

std::ostream& operator << (std::ostream&, Foo const&);

But this operator function should be defined as a non-member function and as a friend of Foo class in order to be able to print the members of Foo properly.

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

79818185

Date: 2025-11-12 19:53:28
Score: 3.5
Natty:
Report link

When your issue is with Chrome 142, you need to allow access per page: "Zugriff auf lokales Netzwerk ON" (Access to local network ON)

enter image description here

More at

Reasons:
  • Probably link only (1):
  • Low length (0.5):
  • No code block (0.5):
  • Starts with a question (0.5): When you
  • Low reputation (1):
Posted by: tordans

79818184

Date: 2025-11-12 19:53:27
Score: 4
Natty: 4.5
Report link

Use the guidelines below to migrate the project to a newer structure.

https://docs.flutter.dev/release/breaking-changes/uiscenedelegate

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

79818157

Date: 2025-11-12 19:26:19
Score: 3
Natty:
Report link

Check out uv; it can automatically create an appropriate virtual environment when a script runs.

uv is the best thing to happen to the Python ecosystem in a decade

uv

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

79818154

Date: 2025-11-12 19:22:18
Score: 4
Natty:
Report link

late in time but usefull to other: you can break a try/catch by using the "THROW" cmdlet. Have a look here: https://www.bing.com/ck/a?!&&p=629df30ad10710ff73cf72f8156c18e795bd8805de3c623ed39bb0745912b7adJmltdHM9MTc2MjkwNTYwMA&ptn=3&ver=2&hsh=4&fclid=22e0e8f6-0860-6f57-39d0-fd8c0c606db9&psq=powershell+throw&u=a1aHR0cHM6Ly9sZWFybi5taWNyb3NvZnQuY29tL2ZyLWZyL3Bvd2Vyc2hlbGwvbW9kdWxlL21pY3Jvc29mdC5wb3dlcnNoZWxsLmNvcmUvYWJvdXQvYWJvdXRfdGhyb3c_dmlldz1wb3dlcnNoZWxsLTcuNQ

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

79818151

Date: 2025-11-12 19:21:17
Score: 3
Natty:
Report link

Create a single executable from a Python project Found in https://stackoverflow.com/search?q=%5Bpython%5D+standalone

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

79818150

Date: 2025-11-12 19:20:17
Score: 3.5
Natty:
Report link

O. Jones

Thanks for the help, this fixed my issue. The end query I ended up using was

select count(*),name, value from TABLE  where name not like '%ts%' group by value,name  order by name;

And this did exactly what I needed.

Reasons:
  • Blacklisted phrase (0.5): Thanks
  • Blacklisted phrase (0.5): I need
  • Low length (0.5):
  • No code block (0.5):
  • Self-answer (0.5):
  • Low reputation (1):
Posted by: Anurag Kumar

79818144

Date: 2025-11-12 19:09:14
Score: 0.5
Natty:
Report link

@nugget "Since std is not open source" - what? The C++ standard (which is what specifies what std::trunc and everything else should do) is publicly available and several implementations (by GNU, LLVM and others) are available as Open Source. Sure, there are also commercial implementations, but even Microsoft's implementation is freely available. So, what are you on about? What you are saying here makes no sense.

Reasons:
  • Has code block (-0.5):
  • Contains question mark (0.5):
  • User mentioned (1): @nugget
  • Single line (0.5):
  • Looks like a comment (1):
  • High reputation (-2):
Posted by: Jesper Juhl

79818137

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

I saw that in your Notebook 2, under Properties, you enabled “Allow references without publishing.” With this option, your Notebook 2 can access your Notebook 1.

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

79818135

Date: 2025-11-12 18:53:11
Score: 1.5
Natty:
Report link

Ended up being really simple, I thought there would be a dedicated method for this but you just need to pass the enum as a variable to setBackground method

ex:

cell.setBackground(SpreadsheetApp.ThemeColorType.ACCENT4);
Reasons:
  • Low length (0.5):
  • Has code block (-0.5):
  • Self-answer (0.5):
  • Low reputation (1):
Posted by: JesseRigon

79818133

Date: 2025-11-12 18:51:10
Score: 0.5
Natty:
Report link

not programming related. you can't do this w/ google forms.

Reasons:
  • Low length (1.5):
  • No code block (0.5):
  • Single line (0.5):
  • High reputation (-2):
Posted by: Daniel A. White

79818129

Date: 2025-11-12 18:45:08
Score: 4
Natty:
Report link

@Eljay, I totally agree. But I have to create the test without any modifications to the existing code. I do not want to describe the technical lead on my team, but you get my point.

I just need to somehow create a test with minimal work to avoid the back and forth.

Can MOCK_GLOBAL_FUNC2 and EXPECT_GLOBAL_CALL be of help here?

Reasons:
  • No code block (0.5):
  • Ends in question mark (2):
  • User mentioned (1): @Eljay
  • Self-answer (0.5):
  • Looks like a comment (1):
  • High reputation (-1):
Posted by: feeling_lonely

79818118

Date: 2025-11-12 18:34:06
Score: 2
Natty:
Report link

You can enable or disable flutter telemetry by running flutter config --[enable/disable]-analytics

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

79818114

Date: 2025-11-12 18:32:05
Score: 0.5
Natty:
Report link

Now in 2025 you can use Choice EIP with Simple DSL:

.choice()
 .when(simple("${body} is 'List'"))
  .to("mock:if-list")
 .otherwise()
  .to("mock:if-object")

check out more examples of Simple DSL in documentation

Reasons:
  • Whitelisted phrase (-1.5): you can use
  • Probably link only (1):
  • Low length (1):
  • Has code block (-0.5):
  • Low reputation (0.5):
Posted by: bvn13

79818112

Date: 2025-11-12 18:30:04
Score: 2.5
Natty:
Report link

vysor is the fuc#ing software that once installed then it is very hard to uninstall completely.... when i uninstall it still the small chuncks of multiple files are remain in the system that affect the system performance due to this shit i was unable to give my college placements assessments because of two cameras detected the test got error and i thrown out of my online assessment due to detected vysor screen capture as a second camera... i whoever are reading this post or any collegegue please do not install or use this application once install it is impossible to uninstall whether you try uninstalling application,files,data even after that the camera having vysor screen capture still shows.... it is been 4 years still i cant able to uninstall vysor screen capture....

Reasons:
  • RegEx Blacklisted phrase (1): i whoever are reading this post or any collegegue please
  • Long answer (-0.5):
  • No code block (0.5):
  • Single line (0.5):
  • Low reputation (1):
Posted by: ajit kumar

79818109

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

Perfect thanks!

Not sure where the 'Mark/accept as answer' button went, but that was it!

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

79818101

Date: 2025-11-12 18:23:02
Score: 2
Natty:
Report link

Any node could be assigned to be a registration server (do not change it afterwards!).

If you assign the "target" node to process registrations, then firewall will not be an issue.

Also, use the auto.registration=true parameter

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

79818093

Date: 2025-11-12 18:18:00
Score: 0.5
Natty:
Report link

In the first case there is more flexibility for compiler to deal with the problem.

"count" is declared in the function and can be returned when the job is done. This means the compiler can keep it wherever it wishes, and it will likely keep it in a CPU register.

In the second case you pass a reference to the "count". That means a few of problems which make vectorization hard:

Reasons:
  • Long answer (-1):
  • No code block (0.5):
  • Contains question mark (0.5):
  • Low reputation (0.5):
Posted by: Denys Rtveliashvili

79818085

Date: 2025-11-12 18:10:58
Score: 2
Natty:
Report link

OK, so now I've found it.

Go to Options > All Settings > Preview Features

Untick Enable JavaScript/Typescript Language Service Prototype.

VS2026 will need restarting afterwards and you should be good.
VS2026 JS Settings

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

79818081

Date: 2025-11-12 18:04:57
Score: 1.5
Natty:
Report link

Thanks, Simon, for the very helpful suggestions! I’ll consider using ACCEPT START-TIME FROM MICROSECOND-TIME to measure time directly in Cobol, avoiding the need for additional C++ code. Regarding using an index and performing SORT WS-ARRAY directly, that’s indeed the standard way—I wanted to try implementing the same logic as in other examples, but it seems the result isn’t correct.

I’d like to ask: is there something wrong in my code that causes the array not to sort correctly? I entered the numbers and performed the SORT, but the output still doesn’t appear in ascending order as expected.

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

79818068

Date: 2025-11-12 17:53:54
Score: 4
Natty:
Report link

great, thanks. one comment is that if you suspect degrading compiler performance than it wouldn't really be premature, would it? ;)

Reasons:
  • Blacklisted phrase (0.5): thanks
  • Low length (1):
  • No code block (0.5):
  • Contains question mark (0.5):
  • Self-answer (0.5):
  • Single line (0.5):
  • Low reputation (0.5):
Posted by: Colin Brett Williams

79818066

Date: 2025-11-12 17:52:53
Score: 3.5
Natty:
Report link

Same here. I tried turning off JavaScript errors but to no avail.

enter image description here

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

79818064

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

let count = 0;

let rate = 2; // change this to whatever you want

setInterval(() => {

count += rate;

console.log(count);

}, 1000);

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

79818061

Date: 2025-11-12 17:45:51
Score: 4
Natty:
Report link

It fixed itself somehow, even though I didn't change anything.

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

79818051

Date: 2025-11-12 17:34:48
Score: 1.5
Natty:
Report link

NER may be sufficient, like you said it typically works best with full sentences but it is designed to handle entities within text (person, org). Aside from training/fine tuning a model to suit your data you may want to try out a BERT based model for zero-shot classification. I've found this to work fairly well for tasks like this.

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

79818046

Date: 2025-11-12 17:21:45
Score: 2
Natty:
Report link

On Windows servers, I used shortcuts to accomplish this. The target is the python executable in the venv, and the python script is a command line argument. I can't speak to other OSes.

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

79818043

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

The problem was that although I was clearing the destination directory on the Linux VM before copying over the files from the publish directory on my local machine, I needed to clear the files in the publish directory locally before running dotnet publish MyApp.csproj --os linux as it doesn't remove files which aren't needed.

Once I cleared it locally, published and copied the files over, the app was working again.

I've learnt something today which is always a good thing!

Reasons:
  • Blacklisted phrase (0.5): I need
  • Has code block (-0.5):
  • Self-answer (0.5):
  • Low reputation (1):
Posted by: tippers

79818041

Date: 2025-11-12 17:13:43
Score: 1.5
Natty:
Report link

You can create a pop-up using a modal (like a div with position: fixed) and place a star rating component inside it. Show the modal when the user clicks a button and hide it after submitting the rating.

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

79818040

Date: 2025-11-12 17:12:43
Score: 1.5
Natty:
Report link

I can't tell you which to choose but I can tell you my experience with 2 providers.

I had a hostgator dedicated server. It was not that great. It had strange compatibility issues that (probably) couldn't have been resolved.

I also had a digital ocean droplet that worked great for many years. I was much happier with them than host gator.

Of course, AWS is worth considering as well, but I don't have a recommendation.

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

79818039

Date: 2025-11-12 17:12:43
Score: 12
Natty: 7
Report link

Getting the same issue where Scandit context was getting orientation: "landscapeLeft" by default. Is there any solution to modify the orientation?

Reasons:
  • Blacklisted phrase (1.5): any solution
  • Blacklisted phrase (1): Is there any
  • RegEx Blacklisted phrase (2): any solution to modify the orientation?
  • Low length (1):
  • No code block (0.5):
  • Me too answer (2.5): Getting the same issue
  • Ends in question mark (2):
  • Single line (0.5):
  • Low reputation (1):
Posted by: user31866377

79818035

Date: 2025-11-12 17:06:41
Score: 3
Natty:
Report link

i'm guessing those permissions are in place for a reason and the only way to get around them is to use a user with elevated privileges like an admin

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

79818029

Date: 2025-11-12 17:00:39
Score: 4.5
Natty: 5
Report link

Check Here: https://django-googledrive-storage.readthedocs.io/en/latest/ it is a link to a google drive django api.

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

79818021

Date: 2025-11-12 16:55:37
Score: 0.5
Natty:
Report link

WAIT Nevermind I'm an idiot. This is silly easy. In case anyone else is looking for this: just use css variables.

.redSquare {
    --main-bg-color: red;
    background-color: var(--main-bg-color);
}

.greenSquare {
    --main-bg-color: green;
    background-color: var(--main-bg-color);
}
.changeBG {
    background-color: var(--main-bg-color);
    transition: background-color 0.5s;
}
.changeBG:hover {
    background-color: blue;
    transition: background-color 0.5s;
}
Reasons:
  • Has code block (-0.5):
  • Self-answer (0.5):
  • Low reputation (0.5):
Posted by: chrisjfinlay

79818020

Date: 2025-11-12 16:55:37
Score: 3
Natty:
Report link

My issue was a typo in my file name. I checked the logs on shinyapps.io, and it noted that a certain file could not be located. I had failed to capitalize one letter in the file name.

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

79818013

Date: 2025-11-12 16:51:36
Score: 1.5
Natty:
Report link

Thank you. The code below works perfectly



<?php

  $language = $GLOBALS['language']->language;

  $language_map = array(
    'uk-ua' => 'uk',
    'fr-fr' => 'fr',
    'pl-pl' => 'pl',
    'de-at' => 'de',
  );

  $script_language = isset($language_map[$language]) ? $language_map[$language] : $language;

  $script_url = "https://abomus.co.il/js/{$script_language}-informer-widget.js";

?>
Reasons:
  • Blacklisted phrase (0.5): Thank you
  • Has code block (-0.5):
  • Self-answer (0.5):
  • Low reputation (1):
Posted by: Oleksandr

79818009

Date: 2025-11-12 16:46:35
Score: 2
Natty:
Report link

I recently had this same problem on one of my projects. Multiple setters was just fine on my other projects but one project was throwing this same type of error. What I found was that project was using Jackson Databind 2.6.5 while the other projects were using Jackson Databind 2.9.6. I manually set Jackson Databind to 2.9.6 on that project and the error went away.

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

79818002

Date: 2025-11-12 16:41:33
Score: 3
Natty:
Report link

updated workheets names

TGL-worksheets("Previous Wk (MONDAY)")

IGTHeadcount-worksheets("Headcount")

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

79817997

Date: 2025-11-12 16:39:32
Score: 1.5
Natty:
Report link

Yet another variant with checking set of keys:

function areEqual(one: keyof A extends 'x' | 'y' ? A : unknown, another: A): boolean {
    return one.x === another.x && one.y === another.y;
}

https://tsplay.dev/NaM82N

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

79817996

Date: 2025-11-12 16:37:32
Score: 0.5
Natty:
Report link

Please add the sheet names for the screenshots you posted.

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

79817980

Date: 2025-11-12 16:27:29
Score: 0.5
Natty:
Report link

The error you're encountering, ImportError: DLL load failed while importing cv2: The specified module could not be found, is a common issue on Windows when embedding Python, especially with libraries like OpenCV that rely on additional DLLs.

Key Causes and Solutions

  1. Missing DLL Dependencies:

    • The OpenCV Python package (cv2) depends on various DLLs that must be accessible in your environment.

    • These DLLs are not always loaded automatically when embedding Python in C++.

    • Use a tool like Dependency Walker or Process Monitor to check which DLLs cv2.pyd depends on and if any are missing.

  2. Add OpenCV DLL Path to System Path:

    • OpenCV DLLs are usually located in a folder like .../site-packages/cv2/ or in a separate bin directory of OpenCV.

    • You should add this directory to your process’s DLL search path at runtime before importing cv2.

    • In your embedded Python code, add:

      cpp
      

      PyRun_SimpleString( "import os;" "os.add_dll_directory(r'C:\\Path\\To\\OpenCV\\dlls');" );

    • Replace "C:\\Path\\To\\OpenCV\\dlls" with the actual path to your OpenCV DLL files.

  3. Visual C++ Redistributable and Media Feature Pack:

    • Make sure the Microsoft Visual C++ Redistributable (for Visual Studio 2015 or later) is installed on your system because many DLLs depend on it.

    • For Windows 10/11, also install the Media Feature Pack, which has solved similar problems reported for Python 3.12 and OpenCV.

  4. Architecture Mismatch:

    • Confirm that the Python interpreter, OpenCV binaries, and your C++ application are all either 64-bit or 32-bit. Mixing these causes DLL load failures.

    • Your CMake shows Python 3.12 64-bit, so ensure OpenCV is also 64-bit.

  5. Python Path Configuration:

    • You commented out Py_SetPath. Use Py_SetPath to explicitly set your Python library and site-packages directories if environment variables aren’t set:

      cpp
      

      Py_SetPath(L"C:/Users/fxct/AppData/Local/Python/pythoncore-3.12-64/" L"Lib;" L"C:/Users/fxct/AppData/Local/Python/pythoncore-3.12-64/Lib/site-packages;");

    • This ensures the embedded Python interpreter can locate packages correctly.

  1. "DLL load failed" when import cv2 (opencv)

  2. https://forum.opencv.org/t/building-on-windows-getting-importerror-dll-load-failed-while-importing-cv2/17858

  3. https://github.com/opencv/opencv-python/issues/856

  4. https://agmanic.com/opencv-installation-on-windows-10/

  5. https://github.com/pyinstaller/pyinstaller/issues/8702

  6. https://github.com/opencv/opencv-python/issues/976

  7. http://soup01.com/en/2022/02/03/pythonimporterror-dll-load-failed-while-importing-cv2-the-specified-module-could-not-be-found-2/

  8. https://github.com/opencv/opencv/issues/24273

  9. https://www.youtube.com/watch?v=Q4y0Mw3ga1Q

  10. https://travis-ci.community/t/python-and-opencv-dll-load-fails-every-time/4431

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

79817975

Date: 2025-11-12 16:18:27
Score: 3.5
Natty:
Report link

I got the same issue. The DescriptionFactoryImpl causing a memory leak.

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

79817971

Date: 2025-11-12 16:14:26
Score: 2.5
Natty:
Report link

You might want to look into HSV (Hue, Saturation, Value) color space or similar. In those spaces you might be able to filter out the gray pixels (e.g., low saturation and low value).

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

79817970

Date: 2025-11-12 16:14:26
Score: 1.5
Natty:
Report link

"ctx":"initandlisten","msg":"Unable to start up mongod due to missing featureCompatibilityVersion document. Please run w │

│ {"t":{"$date":"2025-11-12T16:05:13.517+00:00"},"s":"F", "c":"ASSERT", "id":23091, "ctx":"initandlisten","msg":"Fatal assertion","attr":{"msgid":40652,"file":"src/mongo/db/commands/feature_compatibility_ │

what if you got the same error on k9s pod, i deleted the pvc but after the recreation, it gives the same error. Using argocd application+k9s fyi.

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

79817966

Date: 2025-11-12 16:12:24
Score: 7 🚩
Natty: 4
Report link

I'm getting the same error as OP so using the custom tag as suggested but now getting Error (java.nio.channels.ClosedByInterruptException) .

Theres about 1500 emails in the folder I'm trying to access if that has any bearing?

Reasons:
  • RegEx Blacklisted phrase (1): I'm getting the same error
  • Low length (0.5):
  • No code block (0.5):
  • Me too answer (2.5): I'm getting the same error
  • Ends in question mark (2):
  • Low reputation (0.5):
Posted by: Paul Hopkinson

79817965

Date: 2025-11-12 16:12:24
Score: 0.5
Natty:
Report link

Note that the glibc "Use generic implementation" is not really generic. It presumes IEEE 754 representation, and presumes the memory layout (e.g., could have big-endian int but little-endian IEEE 754 on the same hardware).

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

79817961

Date: 2025-11-12 16:10:23
Score: 2
Natty:
Report link

Thanks for the reply! So that article mostly discusses guardrails and grounding checks which aim to protect/regulate the output of the LLM. What about protecting your data from the cloud and model providers? I seem to remember Azure had some kind of secrecy agreement like langdock but can't find it

Reasons:
  • Blacklisted phrase (0.5): Thanks
  • Low length (0.5):
  • No code block (0.5):
  • Contains question mark (0.5):
  • Self-answer (0.5):
  • Single line (0.5):
  • High reputation (-1):
Posted by: fersarr

79817955

Date: 2025-11-12 16:08:23
Score: 1
Natty:
Report link

put \n after the line

console.log(
  "x students did excellent\n" +
  "y students did very good\n" +
  "z students did well\n" +
  "v students failed"
);

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

79817948

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

CalciteRestAPIAdapter is publicly available on GitHub: https://github.com/oalekseev/CalciteRestAPIAdapter

It enables data retrieval from REST services using standard SQL syntax. It builds on the Apache Calcite(https://calcite.apache.org/) framework, which allows the creation of adapters for diverse data sources through JDBC. Proposal to contribute for community use is here (https://lists.apache.org/thread/jvbpz7rp7w76gqmshtz3y6bhcftk41c5)

Key Features:

A main challenge with REST services is their varied, often unpredictable request formats. To solve this, the adapter relies on Apache Freemarker templates: a new REST source is supported simply by providing an XML configuration describing its request structure – no rebuild and redeploy is needed.

Configurations (XML files) define:

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

79817940

Date: 2025-11-12 16:00:20
Score: 3
Natty:
Report link

I have added a screenshot of both workbooks hopefully to give a better idea of what I am looking at and trying to do. Each book has a Title and date or number following example Table Games Line 11-09-25.xlsx

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

79817939

Date: 2025-11-12 16:00:20
Score: 2
Natty:
Report link

UPDATE: I created a new project, re-created the sheet and copied in the code, and it worked fine from the button. I don't understand why it was calling a random function, however.

Reasons:
  • Whitelisted phrase (-1): it worked
  • Low length (1):
  • No code block (0.5):
  • Self-answer (0.5):
  • Single line (0.5):
  • Low reputation (0.5):
Posted by: Stuart L

79817932

Date: 2025-11-12 15:53:18
Score: 1
Natty:
Report link

Research the various LLM hoster's compliance and privacy statements. For example on AWS, read How to safeguard healthcare data privacy using Amazon Bedrock Guardrails.

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

79817931

Date: 2025-11-12 15:53:18
Score: 3.5
Natty:
Report link

I hope you're doing well.

I’m excited to apply for the Web Development Internship. I hold a BS degree in Software Engineering and have two months of hands-on industry experience working with React and Vue.js as a Frontend Developer. My background has equipped me with practical skills in creating responsive, user-friendly web applications, and I’m eager to further enhance my expertise.

I’m currently seeking more internship opportunities to grow as a developer while contributing value to your team. My resume is attached, and I’d be glad to discuss how I can contribute to your organization.

Best regards,

Mudassir Tahir

Web Developer

Reasons:
  • Blacklisted phrase (0.5): Best regards
  • Blacklisted phrase (1): regards
  • Contains signature (1):
  • Long answer (-0.5):
  • No code block (0.5):
  • Low reputation (1):
Posted by: mudassir tahir

79817919

Date: 2025-11-12 15:43:15
Score: 2
Natty:
Report link

Full disclosure: I work for Scanbot SDK.

If you're still looking for a solution, we have a VIN scanner module specifically for this use case.

Why it works better than ZXing for VINs:

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

79817909

Date: 2025-11-12 15:32:12
Score: 1.5
Natty:
Report link

Free Fire Proxy Server crashed

java.lang.NoClassDefFoundError: Failed resolution of: Lmiui/os/Build;

at qf.b.<clinit>(Unknown Source:62)

at

com.miui.securitycentes.Application.onCreate(Un known Source:61)

Free Fire Proxy Server crashed

java.lang.NoClassDefFoundError: Failed resolution of: Lmiui/os/Build;

at qf.b.<clinit>(Unknown Source:62)

at

com.miui.securitycentes.Application.onCreate(Un known Sourcejoginaidu

:61)

at

at

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

79817906

Date: 2025-11-12 15:27:11
Score: 1.5
Natty:
Report link

data:application/pdf;base64,JVBERi0xLjQKJcOkw7zDtsO8CjIgMCBvYmoKPDwKL0xlbmd0aCAzIDAgUgovRmlsdGVyIC9GbGF0ZURlY29kZQo+PgpzdHJlYW0KeJzLSMxLLUmNzNFLzs8rzi9KycxLt4IDAIvJBw4KZW5kc3RyZWFtCmVuZG9iagoNCA0IDAgb2JqCjw8Ci9UeXBlIC9QYWdlCi9QYXJlbnQgMyAwIFIKL1Jlc291cmNlcyA8PAovRm9udCA8PAovRjEgOSAwIFIKPj4KPj4KL01lZGlhQm94IFswIDAgNjEyIDc5Ml0KL0NvbnRlbnQgMiAwIFIKPj4KZW5kb2JqCg0IDUgMCBvYmoKPDwKL1R5cGUgL1BhZ2VzCi9LaWRzIFs0IDAgUl0KL0NvdW50IDEKL1BhcmVudCAzIDAgUgo+PgplbmRvYmoKDSA2IDAgb2JqCjw8Ci9UeXBlIC9DYXRhbG9nCi9QYWdlcyA1IDAgUgo+PgplbmRvYmoKDSA3IDAgb2JqCjw8Ci9BdXRob3IgKElseW9zb3YgUnVzdGFtam9uKQovQ3JlYXRvciAoUERGIEJ1aWxkZXIpCi9Qcm9kdWNlciAoUERGIEJ1aWxkZXIpCi9TdWJqZWN0IChWdnUgVeKiuSDRg9C70LvQtdC90YHRgtCy0LAoMjAxMC0yMDI0KSkKL1RpdGxlICjQnNCw0LPQsNC30LjQvSDRg9C70LvQtdC90YHRgtCy0LAoMjAxMC0yMDI0KSAtIElseW9zb3YgUnVzdGFtam9uKQo+PgplbmRvYmoKDSA4IDAgb2JqCjw8Ci9UeXBlIC9Gb250RGVzY3JpcHRvcgovRm9udE5hbWUgL0hlbHZldGljYQo+PgplbmRvYmoKDSA5IDAgb2JqCjw8Ci9UeXBlIC9Gb250Ci9TdWJ0eXBlIC9UeXBlMQovQmFzZUZvbnQgL0hlbHZldGljYQovRW5jb2RpbmcgL1dpbkFuzaEuY29tLmFzcG5ldGNvcmUuY29tcG9uZW50cy5wZGYuUGRmRG9jdW1lbnQvRm9udAplbmRvYmoKDXJvb3QgNiAwIFIKPDwKL1NpemUgMTAKL1Jvb3QgNiAwIFIKPj4Kc3RhcnR4cmVmCjExOTgKJSVFT0Y=

Reasons:
  • Long answer (-1):
  • No code block (0.5):
  • Has no white space (0.5):
  • Single line (0.5):
  • Low reputation (1):
Posted by: Рустамжон Ильясов

79817902

Date: 2025-11-12 15:22:09
Score: 3
Natty:
Report link

ASAN is known not to work properly on Windows Subsystem for Linux.

See the opened issues

https://github.com/microsoft/WSL/issues/121,

https://github.com/rust-fuzz/cargo-fuzz/issues/55

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

79817899

Date: 2025-11-12 15:21:08
Score: 0.5
Natty:
Report link

You are getting this error because you are giving wrong parameter. The new parameter is token

pipeline = Pipeline.from_pretrained(
    "pyannote/speaker-diarization-3.1",
    token="HUGGINGFACE_ACCESS_TOKEN")

Refer to the github of pyannote-audio

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

79817893

Date: 2025-11-12 15:13:06
Score: 2
Natty:
Report link

to any one using before and after elements as a place holder .

just use pointer-events: none; on the pseudo elements

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

79817890

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

The feature specification talks about that: https://learn.microsoft.com/en-us/dotnet/csharp/language-reference/proposals/csharp-14.0/extensions#lowering

But currently, the results generated by different versions of compilers are different.

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

79817877

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

I experienced the same issue. In my case, an authorization filter was redirecting the request. I had to adjust the filter logic to fix it.

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

79817876

Date: 2025-11-12 15:00:02
Score: 2.5
Natty:
Report link

Yes, I know this is 11 years old. I'm in trouble and need to find the SP2 update for Delphi 6.

If anyone has that available, that would be awesome. (I need to update an old app running on WinXP)

I have the Enterprise version of 6 so the update might be "D6_Upd2_ent.exe".

(I might actually need Update 1, Update 2 and Runtime Library Update 2)

Thanks . . . .

Reasons:
  • Blacklisted phrase (0.5): Thanks
  • Blacklisted phrase (0.5): I need
  • No code block (0.5):
  • Low reputation (1):
Posted by: user28943117

79817871

Date: 2025-11-12 14:55:00
Score: 3
Natty:
Report link

I found that wildfly classloader only adds files from deployed EAR's lib folder when they are packaged as jars. So I created a redis-config.jar which only contains redisson.yaml. After that the redisson.yaml was getting discovered.

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

79817869

Date: 2025-11-12 14:50:59
Score: 1
Natty:
Report link

Here is my approach:

  1. In the False branch of your If condition, add a Fail activity. Configure this Fail activity with an appropriate error message.

  2. On the On Fail branch of the If condition, add a Wait activity (you can set it to wait for just 1 second or your desired duration).

  3. This Wait activity should have its output configured to end the pipeline with success.

enter image description here

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

79817863

Date: 2025-11-12 14:47:58
Score: 2.5
Natty:
Report link

@Jens not sure. I am still getting myself familiar with this new question format.

Reasons:
  • Low length (1.5):
  • No code block (0.5):
  • User mentioned (1): @Jens
  • Single line (0.5):
  • Looks like a comment (1):
  • High reputation (-2):
Posted by: wohlstad

79817859

Date: 2025-11-12 14:45:57
Score: 0.5
Natty:
Report link

You're using two -m flags. The second one (-m HelloWorld.py) makes Python look for a module named HelloWorld.py, which isn’t valid syntax.

You should use:

python -m cProfile HelloWorld.py

or, if HelloWorld is an importable module (not a script file):

python -m cProfile -m HelloWorld
Reasons:
  • Low length (0.5):
  • Has code block (-0.5):
  • Low reputation (0.5):
Posted by: louis thomas

79817858

Date: 2025-11-12 14:44:57
Score: 5
Natty:
Report link

basic, but it has happened to me, not for this particular reference.

Is the copylocal flag set to true on your reference under the solution?

Reasons:
  • Low length (1):
  • No code block (0.5):
  • Ends in question mark (2):
  • Looks like a comment (1):
  • Low reputation (0.5):
Posted by: MSantos

79817856

Date: 2025-11-12 14:43:56
Score: 5
Natty: 5
Report link

This article on SPA API Security is worth reading.

Reasons:
  • Blacklisted phrase (1): This article
  • Low length (2):
  • No code block (0.5):
  • Single line (0.5):
  • Low reputation (1):
Posted by: Curt Tudor

79817854

Date: 2025-11-12 14:41:55
Score: 0.5
Natty:
Report link

No you can not sort on a to-many relationship (array).

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

79817849

Date: 2025-11-12 14:32:53
Score: 4
Natty: 4.5
Report link

Pipeline resources can be found by using the Run API https://learn.microsoft.com/en-us/rest/api/azure/devops/pipelines/runs/get

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

79817842

Date: 2025-11-12 14:29:52
Score: 2
Natty:
Report link

@wohlstad

I agree... can I change this?
Sorry for mislabeling that.

Reasons:
  • Low length (1.5):
  • No code block (0.5):
  • Contains question mark (0.5):
  • User mentioned (1): @wohlstad
  • Self-answer (0.5):
  • High reputation (-2):
Posted by: Jens

79817840

Date: 2025-11-12 14:29:52
Score: 1
Natty:
Report link

Unfortunately, there is no actual way to make this happen. The spacing between each Solution Explorer item is because of the Solution Explorer making use of the Fluent design, which scales items more (before that update, Solution Explorer used Visual Studio 2022-style items). Microsoft is slowly making use of Fluent theme across their products, and Visual Studio is one of the biggest priorities to make it happen, and because Solution Explorer now uses Fluent theme, no configuration option is available. There is no setting to change this.

Thankfully, there is feedback on this, created immediately after the update was enrolled, and it's possible that Microsoft will add a way to either roll back the change or allow users to edit spacing, but as of now, there isn't a way to change this. I will edit this answer when there is an update.

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

79817838

Date: 2025-11-12 14:28:51
Score: 0.5
Natty:
Report link

Yes, by utilizing the "Direct dependency wins" dependency resolution rule. You can read about dependency resolution in the NuGet documentation:

NuGet Dependency resolution rules

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

79817833

Date: 2025-11-12 14:24:50
Score: 2.5
Natty:
Report link

The real question is, why on earth are you using something as fundamentally, quintessentially disgusting as MacOS.

Do better, 0s and 1s tell spooky stories about you around the campfire.

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

79817831

Date: 2025-11-12 14:22:49
Score: 1
Natty:
Report link

I used Mojo::Template and Mojo::DOM for non Mojolicious apps and been happy with those. I think it was for emails generation.

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

79817824

Date: 2025-11-12 14:12:46
Score: 2
Natty:
Report link

The same code worked on iOS, but failed on MacOS, no meaningful log to support me debugging this (newbie to Apple development)

When I unchecked this "Edit > Canvas > Automatically Refresh Canvas", mac worked.

Hopefully it will be fixed in future XCode versions.

Thanks for the post.

BTW: The Canvas options sometimes disappears for no reason, and when I close XCode, this option is turned ON by default for some reason.

Reasons:
  • Blacklisted phrase (0.5): Thanks
  • No code block (0.5):
  • Low reputation (1):
Posted by: Felipe Sousa Iketani