79743805

Date: 2025-08-22 20:05:20
Score: 8
Natty: 6
Report link

I'm in a similar situation, was this ever resolved?

Reasons:
  • RegEx Blacklisted phrase (1.5): resolved?
  • RegEx Blacklisted phrase (0.5): was this ever resolved
  • Low length (1.5):
  • No code block (0.5):
  • Ends in question mark (2):
  • Unregistered user (0.5):
  • Single line (0.5):
  • Low reputation (1):
Posted by: John Potter

79743785

Date: 2025-08-22 19:41:14
Score: 4
Natty:
Report link

first_value = df.select('ID').limit(1).collect()[0][0]

print(first_value)

Reasons:
  • Low length (1.5):
  • No code block (0.5):
  • Unregistered user (0.5):
  • Has no white space (0.5):
  • Low reputation (1):
Posted by: Anthony Hall

79743767

Date: 2025-08-22 19:04:04
Score: 4.5
Natty: 5.5
Report link

How am I able to get into my device and the WiFi /Bluetooth settings apps to be able to connect Bluetooth speakers and switch my WiFi to data when I need to use

Reasons:
  • Blacklisted phrase (0.5): I need
  • Low length (1):
  • No code block (0.5):
  • Unregistered user (0.5):
  • Single line (0.5):
  • Starts with a question (0.5): How am I
  • Low reputation (1):
Posted by: user31332899

79743620

Date: 2025-08-22 16:09:22
Score: 5
Natty:
Report link

IMO, the convenience benefit of the builder pattern doesn't make up for the strictness you lose when instantiating the entity. Entities usually have column rules like "nullable = false" which means you are mandated to pass it when instantiating. There are other workarounds to mandate parameters in the builder pattern, but do you really want to go through all that trouble for all of your entities?

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

79743600

Date: 2025-08-22 15:52:16
Score: 4
Natty:
Report link

You may be interested in https://github.com/GG323/esbuild-with-global-variables

I created this fork to enable free use of global variables.

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

79743574

Date: 2025-08-22 15:30:10
Score: 4.5
Natty: 5.5
Report link

I also get some RSA-public-key-encrypted data (32 bytes), which I want to decrypt. (call it a signature, if you want)

How can I decrypt with the private key, without changing source-code?

Reasons:
  • Blacklisted phrase (0.5): How can I
  • RegEx Blacklisted phrase (1): I want
  • Low length (0.5):
  • No code block (0.5):
  • Ends in question mark (2):
Posted by: rundekugel

79743565

Date: 2025-08-22 15:22:08
Score: 4.5
Natty: 4
Report link

I have written article for this. check it : - https://www.linkedin.com/posts/dileepa-peiris_resolve-layout-overlap-issues-after-upgrading-activity-7358300122436288513-wZv6?utm_source=social_share_send&utm_medium=member_desktop_web&rcm=ACoAAEt1CvcBECNQc8jX4cOxrzQtVKEypVgHQcM

Medium :- https://medium.com/@dileepapeiris5/resolve-layout-overlap-issues-after-upgrading-to-android-target-sdk-35-required-by-google-from-cd6c5f18fa25

Reasons:
  • Blacklisted phrase (0.5): medium.com
  • Probably link only (1):
  • Low length (1.5):
  • No code block (0.5):
  • Low reputation (1):
Posted by: Dileepa Peiris

79743551

Date: 2025-08-22 15:08:03
Score: 4
Natty:
Report link

You may be interested in https://github.com/GG323/esbuild-with-global-variables

I created this fork to enable free use of global variables.

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

79743516

Date: 2025-08-22 14:34:53
Score: 4.5
Natty: 5
Report link

How to convert this code in python, thanks alot

Reasons:
  • Blacklisted phrase (0.5): thanks
  • Low length (1.5):
  • No code block (0.5):
  • Single line (0.5):
  • Starts with a question (0.5): How to
  • Low reputation (1):
Posted by: Beram Mostafa

79743358

Date: 2025-08-22 11:36:10
Score: 4
Natty:
Report link

ElastiCache supports Bloom filters with Valkey 8.1, which is compatible with Redis OSS 7.2. You can see https://docs.aws.amazon.com/AmazonElastiCache/latest/dg/BloomFilters.html for more information.

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

79743346

Date: 2025-08-22 11:25:07
Score: 5
Natty: 5.5
Report link

Olá, se estiver usando algum programa de backup em nuvem desative ele na hora de compilar.

Reasons:
  • Blacklisted phrase (2): Olá
  • Low length (1):
  • No code block (0.5):
  • Single line (0.5):
  • Low reputation (1):
Posted by: Marciano C.Rocha

79743323

Date: 2025-08-22 11:08:01
Score: 5
Natty:
Report link

I found a cool video about it: https://shre.su/YJ85

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

79743189

Date: 2025-08-22 09:06:29
Score: 8.5
Natty:
Report link

I’m facing the same issue, and setting "extends": null didn’t solve it for me either. I created the app using Create React App (CRA). When I run npm run dist, everything builds correctly, but when I execute myapp.exe, I get the error: enter image description here

Can someone help me figure out what’s going wrong?

My package.json is:

{

 (...)

 "main": "main.js",

 (...)

 "scripts": {

    (...)

    "start:electron": "electron .",
    "dist": "electron-builder"
  }

  (...)

  "build": {
    "extends":null,
    "appId": "com.name.app",
    "files": [
      "build/**/*",
      "main.js",
      "backend/**/*",
      "node_modules/**/*"
    ],
     "directories": {
      "buildResources": "public",
      "output": "dist"
    },
     },
    "win": {
      "icon": "public/iconos/logoAntea.png",
      "target": "nsis"
    },
    "nsis": {
      "oneClick": false,
      "allowToChangeInstallationDirectory": true,
      "perMachine": true,
      "createDesktopShortcut": true,
      "createStartMenuShortcut": true,
      "shortcutName": "Datos Moviles",
      "uninstallDisplayName": "Datos Moviles",
      "include": "nsis-config.nsh"
    }
  }
} 
Reasons:
  • Blacklisted phrase (1): help me
  • Blacklisted phrase (1): enter image description here
  • RegEx Blacklisted phrase (3): Can someone help me
  • RegEx Blacklisted phrase (1): I get the error
  • Long answer (-1):
  • Has code block (-0.5):
  • Me too answer (2.5): facing the same issue
  • Contains question mark (0.5):
  • Low reputation (1):
Posted by: Nerea Trillo Pérez

79743087

Date: 2025-08-22 07:23:05
Score: 4
Natty: 4.5
Report link

I guess you need to install their Code Coverage plugin too:
https://bitbucket.org/atlassian/bitbucket-code-coverage

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

79743084

Date: 2025-08-22 07:22:04
Score: 5
Natty:
Report link

https://nextjs.org/docs/app/api-reference/functions/redirect

I'm new to NextJS myself, but maybe something like this could work? Maybe perform the request whenever the request is triggered and await the response and use the function accordingly?

Reasons:
  • RegEx Blacklisted phrase (1.5): I'm new
  • Low length (0.5):
  • No code block (0.5):
  • Ends in question mark (2):
  • Low reputation (0.5):
Posted by: Clever7-

79742963

Date: 2025-08-22 04:37:23
Score: 6
Natty:
Report link
                messagebox.showerror(
                    "Ruta requerida",
                    "Debes indicar una ruta completa. Usa 'Examinar...' o escribe una ruta absoluta (por ejemplo, C:\\carpeta\\archivo.txt)."
                )
                return
            # Evitar que se indique una carpeta como archivo
            if os.path.isdir(archivo_path):
                messagebox.showerror(
                    "Error",
                    "La ruta indicada es una carpeta. Especifica un archivo (por ejemplo, datos.txt)."
                )
                return
            # Verificar/crear carpeta
            try:
                dir_path = os.path.dirname(os.path.abspath(archivo_path))
            except (OSError, ValueError):
                messagebox.showerror("Error", "La ruta del archivo destino no es válida")
                return
            if dir_path and not os.path.exists(dir_path):
                crear = messagebox.askyesno(
                    "Crear carpeta",
                    f"La carpeta no existe:\n{dir_path}\n\n¿Deseas crearla?"
                )
                if crear:
                    try:
                        os.makedirs(dir_path, exist_ok=True)
                    except OSError as e:
                        messagebox.showerror("Error", f"No se pudo crear la carpeta:\n{e}")
                        return
                else:
                    return

            self._mostrar_progreso_gen()

            header = (
                "ID|Nombre|Email|Edad|Salario|FechaNacimiento|Activo|Codigo|Telefono|Puntuacion|Categoria|Comentarios\n"
            )
            with open(archivo_path, 'w', encoding='utf-8') as f:
                f.write(header)
                tamano_actual = len(header.encode('utf-8'))
                rid = 1
                while tamano_actual < tamano_objetivo_bytes:
                    linea = self._generar_registro_aleatorio(rid)
                    f.write(linea)
                    tamano_actual += len(linea.encode('utf-8'))
                    rid += 1
                    if rid % 1000 == 0:
                        # Actualización periódica del progreso para no saturar la UI
                        try:
                            if self.root.winfo_exists():
                                progreso = min(100, (tamano_actual / tamano_objetivo_bytes) * 100)
                                self.progress['value'] = progreso
                                self.estado_label.config(
                                    text=f"Registros... {rid:,} registros ({progreso:.1f}%)")
                                self.root.update()
                        except tk.TclError:
                            break

            tamano_real_bytes = os.path.getsize(archivo_path)
            tamano_real_mb = tamano_real_bytes / (1024 * 1024)

            try:
                if self.root.winfo_exists():
                    self.progress['value'] = 100
                    self.estado_label.config(text="¡Archivo generado exitosamente!", fg='#4CAF50')
                    self.root.update()
            except tk.TclError:
                pass

            abrir = messagebox.askyesno(
                "Archivo Generado",
                "Archivo creado exitosamente:\n\n"
                f"Ruta: {archivo_path}\n"
                f"Tamaño objetivo: {tamano_objetivo_mb:,.1f} MB\n"
                f"Tamaño real: {tamano_real_mb:.1f} MB\n"
                f"Registros generados: {rid-1:,}\n\n"
                "¿Deseas abrir la carpeta donde se guardó el archivo?"
            )
            if abrir:
                try:
                    destino = os.path.abspath(archivo_path)
                    # Abrir Explorer seleccionando el archivo generado
                    subprocess.run(['explorer', '/select,', destino], check=True)
                except (OSError, subprocess.CalledProcessError) as e:
                    print(f"No se pudo abrir Explorer: {e}")

            try:
                if self.root.winfo_exists():
                    self.root.after(3000, self._ocultar_progreso_gen)
            except tk.TclError:
                pass

        except (IOError, OSError, ValueError) as e:
            messagebox.showerror("❌ Error", f"Error al generar el archivo:\n{str(e)}")
            try:
                if self.root.winfo_exists():
                    self.estado_label.config(text="❌ Error en la generación", fg='red')
                    self.root.after(2000, self._ocultar_progreso_gen)
            except tk.TclError:
                pass

    # ------------------------------
    # Lógica: División de archivo
    # ------------------------------
    def _dividir_archivo(self):
        """Divide un archivo en múltiples partes respetando líneas completas.

        Reglas y comportamiento:
            - El tamaño máximo de cada parte se define en "Tamaño por parte (MB)".
            - No corta líneas: si una línea no cabe en la parte actual y ésta ya tiene
              contenido, se inicia una nueva parte y se escribe allí la línea completa.
            - Los nombres de salida se forman como: <base>_NN<ext> (NN con 2 dígitos).

        Manejo de errores:
            - Valida ruta de origen, tamaño de parte y tamaño > 0 del archivo.
            - Muestra mensajes de error/aviso según corresponda.
        """
        try:
            src = self.split_source_file.get()
            if not src or not os.path.isfile(src):
                messagebox.showerror("Error", "Selecciona un archivo origen válido")
                return

            part_size_mb = self.split_size_mb.get()
            if part_size_mb <= 0:
                messagebox.showerror("Error", "El tamaño por parte debe ser mayor a 0")
                return
            part_size_bytes = int(part_size_mb * 1024 * 1024)

            total_bytes = os.path.getsize(src)
            if total_bytes == 0:
                messagebox.showwarning("Aviso", "El archivo está vacío")
                return

            self._mostrar_progreso_split()

            base, ext = os.path.splitext(src)
            part_idx = 1
            bytes_procesados = 0
            bytes_en_parte = 0
            out = None

            def abrir_nueva_parte(idx: int):
                nonlocal out, bytes_en_parte
                if out:
                    out.close()
                nombre = f"{base}_{idx:02d}{ext}"
                out = open(nombre, 'wb')  # escritura binaria
                bytes_en_parte = 0

            abrir_nueva_parte(part_idx)

            line_count = 0
            with open(src, 'rb') as fin:  # lectura binaria
                for linea in fin:
                    lb = len(linea)

                    # Si excede y ya escribimos algo, nueva parte
                    if bytes_en_parte > 0 and bytes_en_parte + lb > part_size_bytes:
                        part_idx += 1
                        abrir_nueva_parte(part_idx)

                    # Escribimos la línea completa
                    out.write(linea)
                    bytes_en_parte += lb
                    bytes_procesados += lb
                    line_count += 1

                    # Actualizar progreso cada 1000 líneas
                    if line_count % 1000 == 0:
                        try:
                            if self.root.winfo_exists():
                                progreso = min(100, (bytes_procesados / total_bytes) * 100)
                                self.split_progress['value'] = progreso
                                self.split_estado_label.config(
                                    text=f"Procesando... {line_count:,} líneas ({progreso:.1f}%)")
                                self.root.update()
                        except tk.TclError:
                            break

            if out:
                out.close()

            try:
                if self.root.winfo_exists():
                    self.split_progress['value'] = 100
                    self.split_estado_label.config(text="¡Archivo dividido exitosamente!", fg='#4CAF50')
                    self.root.update()
            except tk.TclError:
                pass

            abrir = messagebox.askyesno(
                "División completada",
                "El archivo se dividió correctamente en partes con sufijos _01, _02, ...\n\n"
                f"Origen: {src}\n"
                f"Tamaño por parte: {part_size_mb:.1f} MB\n\n"
                "¿Deseas abrir la carpeta del archivo origen?"
            )
            if abrir:
                try:
                    # Si existe la primera parte, seleccionarla; si no, abrir carpeta del origen
                    base, ext = os.path.splitext(src)
                    primera_parte = f"{base}_{1:02d}{ext}"
                    if os.path.exists(primera_parte):
                        subprocess.run(['explorer', '/select,', os.path.abspath(primera_parte)], check=True)
                    else:
                        carpeta = os.path.dirname(src)
                        subprocess.run(['explorer', carpeta], check=True)
                except (OSError, subprocess.CalledProcessError) as e:
                    print(f"No se pudo abrir Explorer: {e}")

            try:
                if self.root.winfo_exists():
                    self.root.after(3000, self._ocultar_progreso_split)
            except tk.TclError:
                pass

        except (IOError, OSError, ValueError) as e:
            messagebox.showerror("❌ Error", f"Error al dividir el archivo:\n{str(e)}")
            try:
                if self.root.winfo_exists():
                    self.split_estado_label.config(text="❌ Error en la división", fg='red')
                    self.root.after(2000, self._ocultar_progreso_split)
            except tk.TclError:
                pass


def main():
    """Punto de entrada de la aplicación.

    Crea la ventana raíz, instancia la clase de la UI, centra la ventana y
    arranca el loop principal de Tkinter.
    """
    root = tk.Tk()
    GeneradorArchivo(root)

    # Centrar ventana
    root.update_idletasks()
    width = root.winfo_width()
    height = root.winfo_height()
    x = (root.winfo_screenwidth() // 2) - (width // 2)
    y = (root.winfo_screenheight() // 2) - (height // 2)
    root.geometry(f"{width}x{height}+{x}+{y}")

    root.mainloop()


if __name__ == "__main__":
    main()

Reasons:
  • Blacklisted phrase (1): ¿
  • Blacklisted phrase (1): está
  • Blacklisted phrase (2): crear
  • Blacklisted phrase (2): Crear
  • Long answer (-1):
  • Has code block (-0.5):
  • Unregistered user (0.5):
  • Low reputation (1):
Posted by: Eliseo

79742962

Date: 2025-08-22 04:36:22
Score: 5
Natty:
Report link

https://forum.rclone.org/t/google-drive-service-account-changes-and-rclone/50136 please check this out - new service accounts made after 15 April 2025 will no longer be able to own drive items. Old service accounts will be unaffected.

Reasons:
  • Blacklisted phrase (1): please check this
  • Probably link only (1):
  • Low length (1):
  • No code block (0.5):
  • Single line (0.5):
  • Low reputation (1):
Posted by: Jyothis M

79742935

Date: 2025-08-22 03:28:07
Score: 4
Natty:
Report link

how to get data from line x to line y where line x and y identify by name.

Example:

set 1 = MSTUMASTER

3303910000

3303920000

3304030000

3303840000

set 2 = LEDGER

3303950000

I want get data under set 1 as below

3303910000

3303920000

3304030000

3303840000

Reasons:
  • RegEx Blacklisted phrase (1): I want
  • Low length (0.5):
  • No code block (0.5):
  • Unregistered user (0.5):
  • Starts with a question (0.5): how to
  • Low reputation (1):
Posted by: rozilah

79742925

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

see my method here, i installed it successuflly in 2025 for visual studio 2022

https://stackoverflow.com/a/79742876/4801995

Reasons:
  • Blacklisted phrase (1): stackoverflow
  • Probably link only (1):
  • Low length (1.5):
  • No code block (0.5):
  • Low reputation (0.5):
Posted by: huy

79742844

Date: 2025-08-21 23:51:21
Score: 5
Natty: 4.5
Report link

enter image description hereThis fanart is Lord x as an emoji.

Art by: Edited Maker

(It’s on YouTube.)

https://i.sstatic.net/Egqi3kZP.png

Reasons:
  • Blacklisted phrase (1): enter image description here
  • Probably link only (1):
  • Low length (1.5):
  • No code block (0.5):
  • Low reputation (1):
Posted by: Eye cat

79742757

Date: 2025-08-21 20:39:38
Score: 8.5
Natty: 8
Report link

able to resolve this issue ?? if yes can you share me the details please.

Thanks,

Manoj.

Reasons:
  • Blacklisted phrase (0.5): Thanks
  • RegEx Blacklisted phrase (2.5): can you share me
  • RegEx Blacklisted phrase (1.5): resolve this issue ??
  • Contains signature (1):
  • Low length (1.5):
  • No code block (0.5):
  • Contains question mark (0.5):
  • Low reputation (0.5):
Posted by: Manoj

79742669

Date: 2025-08-21 18:43:10
Score: 4.5
Natty:
Report link
Reasons:
  • Probably link only (1):
  • Low length (2):
  • No code block (0.5):
  • Low reputation (1):
Posted by: ZotyDeLaMota

79742575

Date: 2025-08-21 16:38:37
Score: 4.5
Natty: 5
Report link

Thank you! saved my time! You the best

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

79742553

Date: 2025-08-21 16:24:31
Score: 13
Natty: 6.5
Report link

hello I’m facing the same problem, did you find a solution? Thank you

Reasons:
  • Blacklisted phrase (0.5): Thank you
  • Blacklisted phrase (1): m facing the same problem
  • RegEx Blacklisted phrase (3): did you find a solution
  • Low length (1.5):
  • No code block (0.5):
  • Me too answer (2.5): facing the same problem
  • Ends in question mark (2):
  • Unregistered user (0.5):
  • Single line (0.5):
  • Low reputation (1):
Posted by: Maher

79742542

Date: 2025-08-21 16:09:26
Score: 4.5
Natty:
Report link

@drodri

Can this line be removed in this case?

include(${CMAKE_BINARY_DIR}/conan_deps.cmake)  # this is not found
Reasons:
  • Low length (1):
  • Has code block (-0.5):
  • Ends in question mark (2):
  • Looks like a comment (1):
  • Low reputation (1):
Posted by: RUTUJA PATIL

79742458

Date: 2025-08-21 14:50:05
Score: 5.5
Natty: 4
Report link

Please help me fix this error. It didn't happen before...

Running "obfuscator:task" (obfuscator) task

\>> Error: The number of constructor arguments in the derived class t must be >= than the number of constructor arguments of its base class.

Warning: JavaScript Obfuscation failed at ../temp/ChartBar.js. Use --force to continue.

Aborted due to warnings.

Reasons:
  • Blacklisted phrase (1): help me
  • RegEx Blacklisted phrase (3): Please help me fix this
  • No code block (0.5):
  • Low reputation (1):
Posted by: анатолий агошков

79742410

Date: 2025-08-21 14:02:51
Score: 6
Natty: 5.5
Report link

Isn't it true that named entities are not acceptable in XML?

Reasons:
  • Low length (1.5):
  • No code block (0.5):
  • Ends in question mark (2):
  • Single line (0.5):
  • Starts with a question (0.5): Isn't it
  • Low reputation (1):
Posted by: user15758053

79742406

Date: 2025-08-21 13:58:49
Score: 4.5
Natty:
Report link

Use https://pub.dev/packages/bitsdojo_window. The documentation s straight forward and simple to implement.

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

79742275

Date: 2025-08-21 12:21:23
Score: 5
Natty: 5
Report link

A clear tutorial to solve the problem: https://dev.to/yunshan_li/setting-up-your-own-github-remote-repository-on-a-shared-server-kom

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

79742220

Date: 2025-08-21 11:39:09
Score: 7.5
Natty:
Report link

Did you find a fix for this? I think I am seeing the same problem. When I add a marker to my array of markers via long press, it doesn't appear until after the next marker is added....

If I add key={markers.length} to MapView this fixes the problem of the newest marker not showing, by forcing a reload of the map. But reloading the map is not ideal because it defaults back to its initial settings and disrupts the user experience.

My code:

import MapView, { Marker } from "react-native-maps";
import { StyleSheet, View } from "react-native";
import { useState } from "react";

function Map() {
  const [markers, setMarkers] = useState([]);

  const addMarker = (e) => {
    const { latitude, longitude } = e.nativeEvent.coordinate;

    setMarkers((prev) => [
      ...prev,
      { id: Date.now().toString() + markers.length, latitude, longitude },
    ]);
  };

  return (
    <View style={styles.container}>
      <MapView
        
        style={styles.map}
        initialRegion={{
          latitude: 53.349063173157184,
          longitude: -6.27913410975665,
          latitudeDelta: 0.0922,
          longitudeDelta: 0.0421,
        }}
        onLongPress={addMarker}
      >
        {markers.map((m) => {
          console.log(m);
          return (
            <Marker
              key={m.id}
              identifier={m.id}
              coordinate={{ latitude: m.latitude, longitude: m.longitude }}
            />
          );
        })}
      </MapView>
    </View>
  );
}

export default Map;

const styles = StyleSheet.create({
  container: {
    //flex: 1,,
  },
  map: {
    width: "100%",
    height: "100%",
  },
  button: {
    position: "absolute",
    top: 10,
    right: 10,
    width: 80,
    height: 80,
    borderRadius: 10,
    overflow: "hidden",
    borderWidth: 2,
    borderColor: "#fff",
    backgroundColor: "#ccc",
    elevation: 5,
  },
  previewMap: {
    flex: 1,
  },
});
Reasons:
  • RegEx Blacklisted phrase (3): Did you find a fix
  • RegEx Blacklisted phrase (1.5): fix for this?
  • Long answer (-1):
  • Has code block (-0.5):
  • Me too answer (2.5): I am seeing the same problem
  • Contains question mark (0.5):
  • Starts with a question (0.5): Did you find a fix for this
  • Low reputation (1):
Posted by: John C

79742219

Date: 2025-08-21 11:37:08
Score: 4.5
Natty:
Report link

No se ha dicho pero una posible solución podría ser añadir en el __init__.py de la carpeta donde están los módulos (por ejemplo si es la carpeta objects que está dentro del proyecto project) lo siguiente:

# project/objects/__init__.py

import importlib

homePageLib = importlib.import_module(
    "project.objects.homePageLib"
)
calendarLib = importlib.import_module(
    "project.objects.calendarLib"
)

Después en cada módulo homePageLib y calendarLib hacer el import de la siguiente manera:

from project.objects import homePageLib

o

from project.objects import calendarLib

y para usarlo dentro:

return calendarLib.CalendarPage()

Reasons:
  • Blacklisted phrase (1): está
  • Blacklisted phrase (3): solución
  • Long answer (-0.5):
  • Has code block (-0.5):
  • Unregistered user (0.5):
  • Low reputation (1):
Posted by: Juanjo

79742198

Date: 2025-08-21 11:16:03
Score: 4
Natty:
Report link

try looking at NativeWind as well

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

79742069

Date: 2025-08-21 09:06:33
Score: 6
Natty: 8
Report link

Can anyone have clear idea, about this issue and find any solution. kindly share your experience.

AbandonedConnectionTimeout set to 15 mins InactivityTimeout set to 30 mins,: is this work?

Reasons:
  • Blacklisted phrase (1.5): any solution
  • Low length (0.5):
  • No code block (0.5):
  • Ends in question mark (2):
  • Starts with a question (0.5): Can anyone have
  • Low reputation (1):
Posted by: yogi yogaraj

79741993

Date: 2025-08-21 07:46:12
Score: 4
Natty:
Report link

Please check out this : https://github.com/mmin18/RealtimeBlurView

I think this is the best blur overlay view in Android world

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

79741932

Date: 2025-08-21 06:53:58
Score: 8.5
Natty: 5.5
Report link

Did you find any solution for this i hope its solved by now

Reasons:
  • Blacklisted phrase (1.5): any solution
  • RegEx Blacklisted phrase (3): Did you find any solution
  • Low length (1.5):
  • No code block (0.5):
  • Single line (0.5):
  • Starts with a question (0.5): Did you find any solution for this i
  • Low reputation (1):
Posted by: Awais

79741835

Date: 2025-08-21 04:57:31
Score: 4.5
Natty:
Report link

i think the issue You are asked to design a program that displays a message box showing a custom message entered by the user. The box should include options such as OK, Cancel, Retry, and Exit. How would you implement this?

Would you like me to make a few different variations of the question (same grammar, ~220 characters) so you can choose the best one?

Reasons:
  • Blacklisted phrase (1): How would you
  • No code block (0.5):
  • Ends in question mark (2):
  • Low reputation (1):
Posted by: user28232928

79741742

Date: 2025-08-21 01:35:49
Score: 4.5
Natty: 5
Report link

Các bạn có thể tham khảo bài viết Các kiểu dữ liệu trong MySQL https://webmoi.vn/cac-kieu-du-lieu-trong-mysql/ ở bên mình.

Reasons:
  • Probably link only (1):
  • Low length (1.5):
  • No code block (0.5):
  • Single line (0.5):
  • Low reputation (1):
Posted by: Bùi Tấn Lực

79741735

Date: 2025-08-21 01:17:42
Score: 6.5
Natty:
Report link
import time

def slow_print(text, delay=0.04):
    for char in text:
        print(char, end='', flush=True)
        time.sleep(delay)
    print()

def escolha_personagem():
    slow_print("Escolha sua classe:")
    slow_print("1 - Guerreiro")
    slow_print("2 - Mago")
    slow_print("3 - Ladino")
    classe = input("Digite o número da sua escolha: ")
    if classe == "1":
        return "Guerreiro"
    elif classe == "2":
        return "Mago"
    elif classe == "3":
        return "Ladino"
    else:
        slow_print("Escolha inválida. Você será um Aventureiro.")
        return "Aventureiro"

def inicio_historia(classe):
    slow_print(f"\nVocê acorda em uma floresta sombria. Como um(a) {classe}, seu instinto o guia.")
    slow_print("De repente, um velho encapuzado aparece diante de você...")
    slow_print("Kael: 'Você finalmente despertou
Reasons:
  • Blacklisted phrase (3): Você
  • Blacklisted phrase (3): você
  • Long answer (-0.5):
  • Has code block (-0.5):
  • Unregistered user (0.5):
  • Low reputation (1):
Posted by: Mmmmzx

79741603

Date: 2025-08-20 21:29:52
Score: 4.5
Natty:
Report link

Ошибок нет, просто обновите 8.3.1 в tools - agp

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

79741592

Date: 2025-08-20 21:13:47
Score: 9
Natty: 5.5
Report link

facing same issues, what combination of recent packages work? any idea?

Reasons:
  • Blacklisted phrase (1): any idea?
  • Low length (1.5):
  • No code block (0.5):
  • Me too answer (2.5): facing same issue
  • Ends in question mark (2):
  • Single line (0.5):
  • Low reputation (1):
Posted by: sami ibn jamil

79741571

Date: 2025-08-20 20:49:41
Score: 4
Natty: 5
Report link

Exactly what I've been searching for forever. Thanks so much.

Reasons:
  • Blacklisted phrase (0.5): Thanks
  • Low length (1.5):
  • No code block (0.5):
  • Single line (0.5):
  • Low reputation (1):
Posted by: Kevin Key

79741519

Date: 2025-08-20 19:38:21
Score: 6
Natty: 4.5
Report link

I have the same problem. Since Anaconda managed my Python environment, I generated a requirement.txt file using pip, and created a virtual environment as indicated by PzKpfwlVB including auto_py_to_exe. As a result, I was able to generate the executable file including pyside6.

Reasons:
  • Blacklisted phrase (1): I have the same problem
  • Low length (0.5):
  • No code block (0.5):
  • Me too answer (2.5): I have the same problem
  • Single line (0.5):
  • Low reputation (1):
Posted by: Roger Mori

79741405

Date: 2025-08-20 17:37:48
Score: 4.5
Natty: 5
Report link

same issue im also facing pls someone help

Reasons:
  • RegEx Blacklisted phrase (1): same issue
  • Low length (1.5):
  • No code block (0.5):
  • Single line (0.5):
  • Low reputation (1):
Posted by: Gaurav Bisht

79741397

Date: 2025-08-20 17:32:46
Score: 4
Natty:
Report link

Getting below error with WebDriverIO v9.19.1.

By default the credentials are being set with my company’s user profile. How to fix this?

Please remove "incognito" from "goog:chromeOptions" args* as it is not supported running Chrome with WebDriver.

WebDriver sessions are always incognito mode and do not persist across browser sessions.

Reasons:
  • RegEx Blacklisted phrase (1.5): How to fix this?
  • No code block (0.5):
  • Contains question mark (0.5):
  • Unregistered user (0.5):
  • Low reputation (1):
Posted by: Michel

79741359

Date: 2025-08-20 16:52:35
Score: 4.5
Natty: 4.5
Report link

https://github.com/thierryH91200/WelcomeTo and also
https://github.com/thierryH91200/PegaseUIData

I wrote this application in Xcode style.
look at class ProjectCreationManager
maybe this can help you

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

79741095

Date: 2025-08-20 13:09:36
Score: 4
Natty:
Report link

I did have the same issue with my app and used the approach mentionned in the following blog.
https://blog.debertol.com/posts/riverpod-refresh/

It works until now. Hope it will help someone :)

Reasons:
  • Whitelisted phrase (-1): Hope it will help
  • Low length (1):
  • No code block (0.5):
  • Me too answer (2.5): have the same issue
  • Low reputation (1):
Posted by: Henintsoa Paul Manitraja

79740892

Date: 2025-08-20 09:35:39
Score: 4
Natty:
Report link

is the problem with the browser or what , maybe the security of the browser or the local server ins't allowing it

Reasons:
  • Low length (1):
  • No code block (0.5):
  • Unregistered user (0.5):
  • Single line (0.5):
  • Starts with a question (0.5): is the
  • Low reputation (1):
Posted by: aman

79740872

Date: 2025-08-20 09:21:34
Score: 4.5
Natty: 5.5
Report link

can i change color to red using c# assembly

Reasons:
  • Low length (1.5):
  • No code block (0.5):
  • Unregistered user (0.5):
  • Single line (0.5):
  • Starts with a question (0.5): can i
  • Low reputation (1):
Posted by: user31312862

79740776

Date: 2025-08-20 07:56:10
Score: 6
Natty: 4
Report link

Nobody in this wolrd cant give this topic a fucking answer, wow wow sucks ass

Reasons:
  • Blacklisted phrase (2): fuck
  • Low length (1.5):
  • No code block (0.5):
  • Unregistered user (0.5):
  • Single line (0.5):
  • Low reputation (1):
Posted by: lolzipzip

79740774

Date: 2025-08-20 07:53:08
Score: 4.5
Natty:
Report link

Have you tried looking at android.view.GestureDetector?

Reasons:
  • Whitelisted phrase (-1): Have you tried
  • Low length (1.5):
  • No code block (0.5):
  • Ends in question mark (2):
  • Single line (0.5):
  • Low reputation (1):
Posted by: 개구신

79740770

Date: 2025-08-20 07:51:07
Score: 12.5
Natty: 6.5
Report link

Hey did you get the answer for this one?
i am facing a similar issue regarding this.
can you tell me what did you do?

Reasons:
  • RegEx Blacklisted phrase (2.5): can you tell me what
  • RegEx Blacklisted phrase (3): did you get the answer
  • Low length (1):
  • No code block (0.5):
  • Me too answer (2.5): i am facing a similar issue
  • Ends in question mark (2):
  • Low reputation (1):
Posted by: Black Flame

79740766

Date: 2025-08-20 07:46:06
Score: 5
Natty:
Report link

Since Bundle.appStoreReceiptURL is deprecated as of iOS 18 I was wondering if anybody has successfully used AppDistributor so far?

Reasons:
  • Blacklisted phrase (2): was wondering
  • Low length (1):
  • Has code block (-0.5):
  • Ends in question mark (2):
  • Single line (0.5):
Posted by: benrudhart

79740763

Date: 2025-08-20 07:45:05
Score: 4
Natty: 4.5
Report link

This feature is currently not supported. Please follow this request: IJPL-148496 Add possibility to change selected file highlight color in Project view

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

79740749

Date: 2025-08-20 07:32:02
Score: 5
Natty:
Report link

Free & working (5 Millions installs) : https://www.devsense.com/en

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

79740709

Date: 2025-08-20 06:40:48
Score: 4.5
Natty:
Report link

How big are we talking? The new Plotly Cloud by default accepts Dash projects up to 80MB (and you could convert your excel to parquet for a more compact (and efficient footprint)

Reasons:
  • Low length (1):
  • No code block (0.5):
  • Contains question mark (0.5):
  • Unregistered user (0.5):
  • Single line (0.5):
  • Starts with a question (0.5): How
  • Low reputation (1):
Posted by: Dave Gibbon

79740693

Date: 2025-08-20 06:19:44
Score: 13.5
Natty: 7.5
Report link

I have the same issue. Did you manage to fix it?

Reasons:
  • Blacklisted phrase (1): I have the same issue
  • RegEx Blacklisted phrase (3): Did you manage to fix it
  • RegEx Blacklisted phrase (1.5): fix it?
  • Low length (1.5):
  • No code block (0.5):
  • Me too answer (2.5): I have the same issue
  • Ends in question mark (2):
  • Single line (0.5):
  • Low reputation (1):
Posted by: Simon Bowen

79740685

Date: 2025-08-20 06:13:41
Score: 5
Natty:
Report link

Pyenv is not made for windows. see https://github.com/pyenv/pyenv?tab=readme-ov-file

Have you tried pyenv-win (https://github.com/pyenv-win/pyenv-win)?

Reasons:
  • Whitelisted phrase (-1): Have you tried
  • Probably link only (1):
  • Low length (1.5):
  • No code block (0.5):
  • Ends in question mark (2):
  • Low reputation (1):
Posted by: Christoph Noll

79740605

Date: 2025-08-20 03:57:12
Score: 6
Natty: 5.5
Report link

How to detect landscape-left or rigtht in react native?

Reasons:
  • Low length (1.5):
  • No code block (0.5):
  • Ends in question mark (2):
  • Single line (0.5):
  • Starts with a question (0.5): How to
  • Low reputation (1):
Posted by: Prajwal VK

79740587

Date: 2025-08-20 03:24:06
Score: 4.5
Natty:
Report link

Open Gmail node, go to Settings and set Execute Once to true

enter image description here

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

79740568

Date: 2025-08-20 02:41:54
Score: 4
Natty:
Report link

if you use inject , make sure do it right
Inject setting with build setting

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

79740552

Date: 2025-08-20 01:52:44
Score: 4.5
Natty:
Report link

Try adding:

@rendermode InteractiveServer

to the top of your razor page.

Reasons:
  • Low length (1.5):
  • No code block (0.5):
  • Unregistered user (0.5):
  • User mentioned (1): @rendermode
  • Low reputation (1):
Posted by: Coder

79740539

Date: 2025-08-20 01:15:35
Score: 6.5
Natty: 4
Report link

Were you able to get into this API? Every query I attempt yields the same error your posted regardless of the endpoint.

Reasons:
  • RegEx Blacklisted phrase (3): Were you able
  • Low length (1):
  • No code block (0.5):
  • Contains question mark (0.5):
  • Single line (0.5):
  • Low reputation (1):
Posted by: Michael Klemens

79740534

Date: 2025-08-20 00:59:31
Score: 4.5
Natty: 4
Report link

A bit late to the party but, is there a way to use the in-app browser from Capacitor to prevent this horrific UX? If the browser window fl

Reasons:
  • Blacklisted phrase (1): is there a way
  • Low length (1):
  • No code block (0.5):
  • Contains question mark (0.5):
  • Single line (0.5):
  • Low reputation (1):
Posted by: Flobo79

79740515

Date: 2025-08-20 00:13:20
Score: 4.5
Natty:
Report link

Thanks @Hamed Jimoh and @Salketer for your comment. After studying the ricky123 VAD code base, I switched to use NonRealTimeVAD following the example (https://github.com/ricky0123/vad/blob/master/test-site/src/non-real-time-test.ts#L31). Here is the code used in a Web Worker:

    import { NonRealTimeVAD, NonRealTimeVADOptions, utils } from "@ricky0123/vad-web";
    
    var concatArrays = (arrays: Float32Array[]): Float32Array => {
        const sizes = arrays.reduce((out, next) => {
                                        out.push(out.at(-1) as number + next.length);
                                        return out;
                                    }, [0]);
        const outArray = new Float32Array(sizes.at(-1) as number);
        arrays.forEach((arr, index) => {
            const place = sizes[index];
            outArray.set(arr, place);
        });
        return outArray;
    };
    
    // const options: Partial<NonRealTimeVADOptions> = {
    //     // FrameProcessorOptions defaults
    //     positiveSpeechThreshold: 0.5,
    //     negativeSpeechThreshold: 0.5 - 0.15,
    //     preSpeechPadFrames: 3,
    //     redemptionFrames: 24,
    //     frameSamples: 512,
    //     minSpeechFrames: 9,
    //     submitUserSpeechOnPause: false,
    // };
    
    var Ricky0123VadWorker = class {
        vad: NonRealTimeVAD|null;
        sampleRate: number = 16000;
        
        constructor() {
            this.vad = null;
    
            this.init = this.init.bind(this);
            this.process = this.process.bind(this);
        }
        
        public async init(sampleRate: number) {
            console.log("VAD initialization request.");
            
            try {
                this.sampleRate = sampleRate;
                
                const baseAssetPath = '/vad-models/';
                defaultNonRealTimeVADOptions.modelURL = baseAssetPath + 'silero_vad_v5.onnx';
                // defaultNonRealTimeVADOptions.modelURL = baseAssetPath + 'silero_vad_legacy.onnx';
                this.vad = await NonRealTimeVAD.new(defaultNonRealTimeVADOptions); // default options
                
                console.log("VAD instantiated.");
                self.postMessage({ type: "initComplete" });
            }
            catch (error: any) {
                self.postMessage({ type: 'error', error: error.message });
            }
        }
        
        public async process(chunk: Float32Array) {
            // Received an audio chunk from the AudioWorkletNode.        
            
            let segmentNumber = 0;
            let buffer: Float32Array[] = [];
            for await (const {audio, start, end} of this.vad!.run(chunk, this.sampleRate)) {
                segmentNumber++;
                // do stuff with
                //   audio (float32array of audio)
                //   start (milliseconds into audio where speech starts)
                //   end (milliseconds into audio where speech ends)
                buffer.push(audio);
            }
            if (segmentNumber > 0) {
                console.log("Speech segments detected");
                const audio = concatArrays(buffer);
                self.postMessage({ type: 'speech', data: audio });
            }
            else {
                console.log("No speech segments detected");
            }
        }
        
        // Finalize the VAD process.
        public finish() {
            this.vad = null;
        }
    };
    
    var vadWorkerInstance = new Ricky0123VadWorker();
    
    self.onmessage = (event) => {
        const { type, data } = event.data;
        switch (type) {
            case "init":
                vadWorkerInstance.init(data);
                break;
            case "chunk":
                vadWorkerInstance.process(data);
                break;
            case "finish":
                vadWorkerInstance.finish();
                break;
        }
    };

The worker creation in the main thread:

    const vadWorker = new Worker(
                                          new URL('../lib/workers/ricky0123VadWorker.tsx', import.meta.url),
                                          { type: 'module' }
                                    );

Upon running the web page, it still hangs on this.vad = await NonRealTimeVAD.new() as console.log afterwards never outputs the trace message. I tried both silero_vad_legacy.onnx and silero_vad_v5.onnx. I also copied the following files into public/vad-models/ folder:

    silero_vad_v5.onnx
    silero_vad_legacy.onnx
    vad.worklet.bundle.min.js
    ort-wasm-simd-threaded.wasm
    ort-wasm-simd-threaded.mjs
    ort-wasm-simd-threaded.jsep.wasm
    ort.js

I suspect something wrong with underlying model loading. Without any error messages, it's hard to know where the problem is exactly. Could anyone enlighten me on what else I missed out to cause the hang?

Thanks

Reasons:
  • Blacklisted phrase (0.5): Thanks
  • Long answer (-1):
  • Has code block (-0.5):
  • Ends in question mark (2):
  • User mentioned (1): @and
  • User mentioned (0): @for
  • Self-answer (0.5):
  • Looks like a comment (1):
  • Low reputation (1):
Posted by: user30919975

79740503

Date: 2025-08-19 23:54:16
Score: 4.5
Natty: 5
Report link

Các bạn có thể tham khảo bài viết Toán tử REGEXP trong MySQL của bên mình https://webmoi.vn/toan-tu-regexp-trong-mysql/

Reasons:
  • Probably link only (1):
  • Low length (1.5):
  • No code block (0.5):
  • Single line (0.5):
  • Low reputation (1):
Posted by: Bùi Tấn Lực

79740364

Date: 2025-08-19 20:15:20
Score: 9.5
Natty: 8
Report link

did you figure out a solution to this issue?

Reasons:
  • RegEx Blacklisted phrase (3): did you figure out a solution to this
  • Low length (1.5):
  • No code block (0.5):
  • Ends in question mark (2):
  • Unregistered user (0.5):
  • Single line (0.5):
  • Starts with a question (0.5): did you
  • Low reputation (1):
Posted by: anonym

79740268

Date: 2025-08-19 18:14:43
Score: 5.5
Natty:
Report link

I have the same issue, and the answer is to stop the Services below in your system

  1. SQL Server (MSSQLSERVER)

  2. SQL Server Agent (MSSQLSERVER)

Now it will work.

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

79740151

Date: 2025-08-19 16:01:04
Score: 12.5
Natty: 7.5
Report link

Hi did you solve it? if yes, Could you provide the solution?

Reasons:
  • RegEx Blacklisted phrase (2.5): Could you provide the solution
  • RegEx Blacklisted phrase (3): did you solve it
  • RegEx Blacklisted phrase (1.5): solve it?
  • Low length (1.5):
  • No code block (0.5):
  • Ends in question mark (2):
  • Single line (0.5):
  • Low reputation (1):
Posted by: moon

79740111

Date: 2025-08-19 15:19:52
Score: 4
Natty:
Report link

Try to connect with the Kafka UI Plugin:
https://plugins.jetbrains.com/plugin/28167-kafka-ui-connect-to-kafka-brokers-produce-and-view-messages

With it you can connect to your Kafka Cluster easily

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

79740095

Date: 2025-08-19 15:00:46
Score: 4
Natty:
Report link

You can simply copy your HTML form and use a django forms generator tool like this one:
https://django-tutorial.dev/tools/forms-generator/

Reasons:
  • Probably link only (1):
  • Low length (1.5):
  • No code block (0.5):
  • Low reputation (1):
Posted by: nischal with no P

79740055

Date: 2025-08-19 14:33:37
Score: 4
Natty: 4
Report link

Try to connect with the Kafka UI Plugin:
https://plugins.jetbrains.com/plugin/28167-kafka-ui-connect-to-kafka-brokers-produce-and-view-messages/edit

With it you can connect to your Kafka Cluster easily

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

79740031

Date: 2025-08-19 14:19:32
Score: 4.5
Natty: 4.5
Report link

Is the package free? It seems my Mac can't find it in the pip market.

Reasons:
  • Low length (1.5):
  • No code block (0.5):
  • Contains question mark (0.5):
  • Single line (0.5):
  • Starts with a question (0.5): Is the
  • Low reputation (1):
Posted by: JOSEPH MANIA

79739942

Date: 2025-08-19 13:16:13
Score: 4.5
Natty:
Report link

@Charlie Harding "Instead of @RolesAllowed, I implemented a custom @PermissionsAllowed annotation. I created a PermissionChecker that uses a map to link specific actions (permissions) like menu.Doctors to a list of allowed roles. The system then checks if the logged-in user's roles match any of the allowed roles for that permission. This gives me a more granular, permission-based control rather than just role-based."

Reasons:
  • No code block (0.5):
  • User mentioned (1): @Charlie
  • User mentioned (0): @RolesAllowed
  • User mentioned (0): @PermissionsAllowed
  • Self-answer (0.5):
  • Single line (0.5):
  • Looks like a comment (1):
  • Low reputation (1):
Posted by: Dejan

79739907

Date: 2025-08-19 12:48:06
Score: 5.5
Natty: 5
Report link

https://marketplace.visualstudio.com/items?itemName=BuldiDev.hide-vscode-icon

I created an extension just for this reason, enjoy it

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

79739897

Date: 2025-08-19 12:38:03
Score: 11.5
Natty: 5.5
Report link

did anyone found a solution for this ?

Thx

Reasons:
  • Blacklisted phrase (1): Thx
  • Blacklisted phrase (2): anyone found
  • RegEx Blacklisted phrase (3): did anyone found a solution
  • Low length (1.5):
  • No code block (0.5):
  • Ends in question mark (2):
  • Starts with a question (0.5): did anyone
  • Low reputation (1):
Posted by: ruy

79739877

Date: 2025-08-19 12:13:58
Score: 4
Natty: 6.5
Report link

Can I also make each row's output a clickable hyperlink? Right now, it's displaying as plain text URLs that aren't clickable

Thanks

Reasons:
  • Blacklisted phrase (0.5): Thanks
  • Low length (1):
  • No code block (0.5):
  • Contains question mark (0.5):
  • Starts with a question (0.5): Can I also
  • Low reputation (1):
Posted by: LsL

79739855

Date: 2025-08-19 11:49:52
Score: 4.5
Natty: 4.5
Report link

Is there any way to attemt a removal of big files one by one?
I added old binary files, not removed, that are still in the commit history, but are completely useless.
I would like to delete only those files, and leave old source fode files untouched.

Thank you.

Reasons:
  • Blacklisted phrase (0.5): Thank you
  • Blacklisted phrase (1): Is there any
  • Low length (0.5):
  • No code block (0.5):
  • Contains question mark (0.5):
  • Starts with a question (0.5): Is there any
  • Low reputation (1):
Posted by: Luca Lista

79739852

Date: 2025-08-19 11:48:51
Score: 4.5
Natty:
Report link

Thanks to @robertklep (in comments):

The answer is: parts = str.split("\n\n");

Reasons:
  • Blacklisted phrase (0.5): Thanks
  • Low length (1.5):
  • No code block (0.5):
  • User mentioned (1): @robertklep
  • Self-answer (0.5):
  • Low reputation (0.5):
Posted by: TJS101

79739770

Date: 2025-08-19 10:24:30
Score: 5
Natty: 4
Report link

olá.. sou um completo iniciante em programação. mas com devido esforço e sagacidade, consegui escrever um bot de vendas automaticas com. entretanto ta faltando a sincronização api mercado pago, e bot telegram, no momento em que o cliente finaliza o pedido. o pix e gerado, copia e cola e imagem qr, o problema é que PUBLIC_BASE_URL precisa ser HTTPS público (Ex.: Render, Railway, Fly.io, VPS com domínio). Vá no painel do Mercado Pago e cadastre a URL do webhook: e eu não sei resolver isso. alguem pode me ajudar? abraços. sou leigo na programação, então ja sabem né

Reasons:
  • Blacklisted phrase (1): então
  • Blacklisted phrase (1): não
  • Blacklisted phrase (2): olá
  • Long answer (-0.5):
  • Has code block (-0.5):
  • Contains question mark (0.5):
  • Single line (0.5):
  • Low reputation (1):
Posted by: Diego Teodoro

79739762

Date: 2025-08-19 10:19:28
Score: 6
Natty: 5.5
Report link

Isn't this only valid for SLAVE devices? For the MASTER, isn't it safer to capture MISO at the same edge used to latch MOSI?

Reasons:
  • Low length (1):
  • No code block (0.5):
  • Ends in question mark (2):
  • Unregistered user (0.5):
  • Single line (0.5):
  • Starts with a question (0.5): Isn't this on
  • Low reputation (1):
Posted by: DoYouHumansExist

79739713

Date: 2025-08-19 09:40:19
Score: 4.5
Natty: 5
Report link

Các bạn có thể tham khảo bài viết String REPLACE() trong UPDATE MySQL của bên mình https://webmoi.vn/string-replace-trong-update-mysql/

Reasons:
  • Probably link only (1):
  • Low length (1.5):
  • No code block (0.5):
  • Single line (0.5):
  • Low reputation (1):
Posted by: Bùi Tấn Lực

79739705

Date: 2025-08-19 09:35:14
Score: 6.5
Natty:
Report link

when I try to run my C# program in VS Code I get the following message. Please help me.

Cannot activate the 'C#' extension because it depends on an unknown 'ms-dotnettools.vscode-dotnet-runtime' extension.

Reasons:
  • Blacklisted phrase (1): help me
  • RegEx Blacklisted phrase (3): Please help me
  • Low length (0.5):
  • No code block (0.5):
  • Starts with a question (0.5): when I
  • Low reputation (1):
Posted by: kourosh akbari

79739702

Date: 2025-08-19 09:32:13
Score: 4
Natty:
Report link

<div class="card-body flex-grow-1"></div>

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

79739645

Date: 2025-08-19 08:33:58
Score: 4.5
Natty:
Report link

Im getting the same issue
getReactModuleInfoProvider' overrides nothing FAILURE: Build failed with an exception. * What went wrong:

Fix : Change to this version “react-native-screens": "^2.18.1"

Reasons:
  • Low length (0.5):
  • No code block (0.5):
  • Me too answer (2.5): getting the same issue
  • Low reputation (1):
Posted by: Gowtham C

79739613

Date: 2025-08-19 08:04:50
Score: 4.5
Natty:
Report link

@Riesmeier, can you be more specific? I am encountering some issues while using the same DCMTK module. I have a multiframe image that I want to display. Before rendering each frame I pass to DicomImage::setWindow() the values corresponding to DCM_WindowCenter and DCM_WindowWidth (the "tag path" to them is PerFunctionalGroupsSequence -> Item X -> FrameVOILUTSequence -> Item X -> WindowCenter/WindowWidth, where X is the frame number).

This way, my program displays the image darker (lower contrast and lower luminosity) than it is displayed by other softwares (DICOMscope, Weasis), so I believe something is wrong with my implementation.

I tried another approach: I used the window center and window width corresponding to the first frame for all frames in the image. This way, I see no difference in luminosity and contrast to how the image is displayed in the above mentioned viewers. However, I think this is technically wrong.

What would you do to display a multiframe image where each frame has its own DCM_WindowCenter and DCM_WindowWidth ?

Does DicomImage::setWindow() expect raw values corresponding to DICOM tags or do I have to preprocess DCM_WindowCenter and DCM_WindowWidth before feeding them to DicomImage::setWindow()? If yes, what kind of preprocessing?

Reasons:
  • RegEx Blacklisted phrase (1): I want
  • Long answer (-1):
  • Has code block (-0.5):
  • Ends in question mark (2):
  • User mentioned (1): @Riesmeier
  • Looks like a comment (1):
  • Low reputation (1):
Posted by: Laurentiu

79739579

Date: 2025-08-19 07:24:41
Score: 5
Natty: 5
Report link

This is possible with GKE now: https://cloud.google.com/kubernetes-engine/docs/how-to/node-system-config#sysctl-options

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

79739374

Date: 2025-08-19 01:20:23
Score: 5
Natty:
Report link

Log Analytics Agent has been retired since August of 2024.

The Log Analytics Agent (OMS agent for Linux) was replaced by the Azure Monitoring Agent(AMA).

There are a few way to install the AMA agent but to start I would recommend referencing this document as it will be updated as the agent matures to reflect the current methods of installation overtime:
https://learn.microsoft.com/en-us/azure/azure-monitor/agents/azure-monitor-agent-manage?tabs=azure-portal

One of the biggest changes with the AMA agent is that the machine that you are installing it on has to be connected to azure, meaning that it has to be an Azure VM, or is Arc Connected: https://learn.microsoft.com/en-us/azure/network-watcher/connection-monitor-connected-machine-agent?tabs=WindowsScript

Once the AMA Agent is installed on the machine it does not gather any information by default, like the previous Log Analytics Agent. Instead you need to associate one or many Data Collection Rules to the machine in order to start the collection of data.

Data Collection Rules (DCRs) can range from pre-made (VMInsights) to custom (Performance metrics and custom logs in a single DCR). They allow for a level of granularity that could not be achieved with the Log Analytics agent: https://learn.microsoft.com/en-us/azure/azure-monitor/data-collection/data-collection-rule-overview

Once you have created a DCR to collect the data you want to collect and send that data where you would like it to be stored, you then finally need to create a Data Collection Rule Association (DCRA) that links a VM to the DCR: https://learn.microsoft.com/en-us/azure/azure-monitor/data-collection/data-collection-rule-associations?tabs=cli#create-new-association

I could write out all of the steps here and come off as thorough and impressive but the truth six months from now, the images would inaccurate and the steps would no longer work, the documents I reference will be updated as the products are, if you read something and have a question, please let me know or open a support ticket in the portal to work with CSS support.

Azure Monitoring Enterprise Support Technical Advisor - Marcus

Reasons:
  • Blacklisted phrase (1): this document
  • RegEx Blacklisted phrase (2.5): please let me know
  • Contains signature (1):
  • Long answer (-1):
  • No code block (0.5):
  • Low reputation (1):
Posted by: Marcus

79739362

Date: 2025-08-19 00:56:17
Score: 5.5
Natty:
Report link

Thanks for your message.

I am not seeing a specific version that you have the code base set to. You mentioned V2. Would you please try updating to the latest version(2.03 onwards?). The latest being V2.7.0 at https://github.com/cloudinary/cloudinary_npm/releases?page=1

Also, can you please try adding the following?

cloudinary.config({
    sdkSemver: engines.node,
});

Please let me know the outcome after trying these options?

Thanks,
Sree

Reasons:
  • Blacklisted phrase (0.5): Thanks
  • RegEx Blacklisted phrase (2.5): Please let me know
  • Has code block (-0.5):
  • Ends in question mark (2):
  • Low reputation (1):
Posted by: sreecloudinary

79739314

Date: 2025-08-18 22:55:51
Score: 4.5
Natty:
Report link

Fine,there has the answer.We should open the pycharm project in linux env . https://zhuanlan.zhihu.com/p/1926342469806715282

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

79739279

Date: 2025-08-18 21:56:35
Score: 6.5
Natty: 5
Report link

He intentado hablar con Apple , pero no me ayuda. También tengo un problema, mi ex marido era hacker , pero también ciberdelicuente . Lo conocéis todos . Pero no me deja en paz y por lo visto gana dinero conmigo. Bastante dinero . Ha hecho un block , ha publicado fotografías mías. Ha hablado de mis operaciones y etc etc .

Reasons:
  • Blacklisted phrase (2): ayuda
  • Blacklisted phrase (2): tengo
  • No code block (0.5):
  • Unregistered user (0.5):
  • Single line (0.5):
  • Low reputation (1):
Posted by: Eva

79739202

Date: 2025-08-18 20:14:08
Score: 4
Natty:
Report link
Hello I am trying to use ImageRenderer in a view containing an AsyncImage, but I have the same problem, only le placeholder appear as the result of the ImageRenderer.



struct ShareView: View {
@State private var renderedImage = Image(systemName: "photo")
    var body: some View {
            NavigationStack {
                VStack {
                    Spacer()
                    AsyncImage(url: URL(string: "http://myurl.com")) { image in
                        image.resizable()
                    } placeholder: {
                        ProgressView()
                    }
                    .frame(width: 100, height: 100)
                    .clipShape(Circle())
                    .padding()
                    
                    Spacer()
                    ShareLink("Export", item: renderedImage, preview: SharePreview(Text("Shared image"), image: renderedImage))
                    Spacer()
                }
                .onAppear {
                    render()
                }
            }
            .padding(.horizontal)
        }
        
        @MainActor func render() {
            let renderer = ImageRenderer(content: shareableView)
            if let uiImage = renderer.uiImage {
                renderedImage = Image(uiImage: uiImage)
            }
        }
    }
    }
Reasons:
  • Blacklisted phrase (1): I have the same problem
  • Blacklisted phrase (1): I am trying to
  • Long answer (-1):
  • Has code block (-0.5):
  • Me too answer (2.5): I have the same problem
  • Low reputation (1):
Posted by: Djiby

79739010

Date: 2025-08-18 16:26:03
Score: 4
Natty:
Report link

There is a hide option in the context menu

A description showing the context menu

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

79738970

Date: 2025-08-18 15:38:51
Score: 4
Natty:
Report link

I'm not sure if this will help you or not, but please don't downvote my answer if it's not helpful.

You can try using swiperjs to achieve the same behavior.

Reasons:
  • RegEx Blacklisted phrase (2): downvote
  • Low length (1):
  • No code block (0.5):
  • Low reputation (0.5):
Posted by: Ahmed Radi

79738950

Date: 2025-08-18 15:26:46
Score: 4
Natty:
Report link

For more information, refer to the following SurveyJS support thread: https://surveyjs.answerdesk.io/ticket/details/t24552/using-angular-outputting-stock-questions-but-in-our-specific-format

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

79738670

Date: 2025-08-18 12:00:46
Score: 5
Natty:
Report link

Just checking something if it wrks okay else i will delete
https://www.youtube.com/watch?v=kGo0AxoOQYw

Reasons:
  • Blacklisted phrase (1): youtube.com
  • Probably link only (1):
  • Low length (1.5):
  • No code block (0.5):
  • Low reputation (1):
Posted by: Nitin Kumar

79738522

Date: 2025-08-18 09:39:07
Score: 4
Natty: 5
Report link

Hi look into this project, could be usefull:

https://github.com/Nukepayload2/VbWinUI3Demos

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

79738503

Date: 2025-08-18 09:34:05
Score: 6
Natty: 7
Report link

How can I build a seamless charting system with both real-time and full historical OHLCV data using my own chain data and external APIs?

Reasons:
  • Blacklisted phrase (0.5): How can I
  • Low length (1):
  • No code block (0.5):
  • Ends in question mark (2):
  • Single line (0.5):
  • Starts with a question (0.5): How can I
  • Low reputation (1):
Posted by: M.WAHAJ KHAN

79738478

Date: 2025-08-18 09:15:58
Score: 7
Natty:
Report link

I have the same problem, cannot enter an .up.railway.app domain...

Reasons:
  • Blacklisted phrase (1): I have the same problem
  • Low length (1.5):
  • No code block (0.5):
  • Me too answer (2.5): I have the same problem
  • Single line (0.5):
  • Low reputation (1):
Posted by: user31296471

79738400

Date: 2025-08-18 07:48:34
Score: 7.5
Natty: 5
Report link

Please check this link also for more explanation https://usingaspdotnet.blogspot.com/2025/08/adult-validation-using-javascript.html

Reasons:
  • Blacklisted phrase (1): Please check this
  • Blacklisted phrase (1): this link
  • RegEx Blacklisted phrase (1): check this link
  • Probably link only (1):
  • Low length (1.5):
  • No code block (0.5):
  • Single line (0.5):
  • Low reputation (1):
Posted by: Dench Designs

79738365

Date: 2025-08-18 07:08:22
Score: 4.5
Natty:
Report link

so after going through everything, python versions, jdk versions etc. I finally found the solution. All thanks to @samkart, for providing the link for the similar question. there I got to know that it works with python 3.11.8 and I gave it a try and it works now. In browser as well as in vscode.
Thanks man

Reasons:
  • Blacklisted phrase (0.5): thanks
  • Blacklisted phrase (0.5): Thanks
  • Low length (0.5):
  • No code block (0.5):
  • User mentioned (1): @samkart
  • Self-answer (0.5):
  • Low reputation (1):
Posted by: supinebeing