79703271

Date: 2025-07-16 10:28:19
Score: 4
Natty: 4
Report link

Such a great job you are doing I am proud

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

79703223

Date: 2025-07-16 09:46:06
Score: 5.5
Natty:
Report link

Currently I am also facing similar issue with Qwen2.5-3B model where full fine tuning on 5k dataset takes only 38 minutes while inference on 1319 data take 1 hour 24 minutes.

Reasons:
  • Low length (1):
  • No code block (0.5):
  • Me too answer (2.5): I am also facing similar issue
  • Single line (0.5):
  • Low reputation (1):
Posted by: Saurabh Kumar

79703191

Date: 2025-07-16 09:21:58
Score: 5.5
Natty:
Report link

hello i had this same issue today also,some forums are suggesting it is a gateway issue but my data is sharepoint so it should not be related to that?

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

79703176

Date: 2025-07-16 09:08:54
Score: 5.5
Natty:
Report link

Timpan,s storms,inside bot satlte.program.bluhets.order.77FFY5.O98.6651.CB6.P04tecnologey component , of yanotengonada

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

79703160

Date: 2025-07-16 08:56:50
Score: 6
Natty: 7
Report link

If you are communicating with one service to another microservice and no response comes from 1 microservice,then how do you handle it?

Reasons:
  • Blacklisted phrase (1): how do you
  • Low length (1):
  • No code block (0.5):
  • Ends in question mark (2):
  • Single line (0.5):
  • Low reputation (1):
Posted by: Manish Mahajan

79703155

Date: 2025-07-16 08:50:48
Score: 4.5
Natty: 5
Report link

for version v23.0, you could see this page: https://developers.facebook.com/docs/graph-api/reference/v23.0/insights

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

79703094

Date: 2025-07-16 07:58:35
Score: 5
Natty: 5.5
Report link

The solution how to connect is described here: https://blog.consol.de/software-engineering/ibm-mq-jmstoolbox/

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

79703087

Date: 2025-07-16 07:54:33
Score: 4.5
Natty:
Report link

implementation found its way into

Đèn Led Paragon Đèn led Philips  Đèn led MPE  Đèn led Duhal

Reasons:
  • Probably link only (1):
  • Low length (2):
  • No code block (0.5):
  • Low reputation (1):
Posted by: dung ngo

79703039

Date: 2025-07-16 07:16:21
Score: 6.5
Natty: 4.5
Report link

Any news on that topic? I do have exactly the same problem.

Reasons:
  • Low length (1.5):
  • No code block (0.5):
  • Me too answer (2.5): have exactly the same problem
  • Contains question mark (0.5):
  • Single line (0.5):
  • Low reputation (1):
Posted by: Cuprum

79702962

Date: 2025-07-16 05:58:01
Score: 5.5
Natty: 5
Report link

Is there a code that will perfectly parse a rpt file and convert to csv, just using python code and libs?

Reasons:
  • Low length (1):
  • No code block (0.5):
  • Ends in question mark (2):
  • Single line (0.5):
  • Starts with a question (0.5): Is there a code that
  • Low reputation (1):
Posted by: Isagi Yoichi

79702537

Date: 2025-07-15 18:52:29
Score: 4.5
Natty: 5
Report link

I realize this is a very old thread, but I thought perhaps I could add some info.

My app has 19 Oracle 19c database servers and Weblogic installations situated coast to coast, all connected via military network. I discovered some "invalid records" in one particular table on one of the databaes, an was curious as to whethr this sam type of problem existed in our other databases. I wrote a small SQL script to locate/identify the bad records.

Our databases have two database functions we wrote years ago. CHECK_NUMBER and CHECK_DATE. There is a single parameter passed to the function. The functions simply return a TRUE or FALSE depending on whether the data passed to the function is a valid date or number. Simple.

BUT - I was trying to gather data from all 19 remote databases into one central table (with the identical structure) on one of our development servers. Call it "ADAMDEV".

When I wrote INSERT INTO MYTABLE@ADAMDEV(select... <whatever>), if the Select Statement included any references to the CHECK_NUMBER or CHECK_DATE functions, SqlPlus would constantly throw a ORA-02069: global names parameter must be set to TRUE for this operation.

We don't WANT to set Global Names to TRUE because it messes up other stuff.

So... To get around it... I created the "temporary data holder" table in each of the 19 databases, ran the Sql query to populate each LOCAL version of the table using the FUNCTIONS in my query to filter to only "bad" records, then, after each database was done, I ran a script that connected to each database one at a time, and just did a direct insert (Insert into MYTABLE@ADAMDEV (Select * from...)) etc. from the remote database to the same table on my ADAMDEV server.

My question: Is there a way (without setting Global Names to TRUE) to execute a query that will be acting on a remote database (via a pre-created database link) that contains references to local database functions? Or perhaps I should specify "@ADAMDEV" prepended to my function calls? (will that even work? CHECK_DATE@ADAMDEV?) It was not a big deal to add a few extra steps to get what my bosses wanted, but it would be good to know if there were a way to do something similar, but being able to FILTER a query using a local function, while INSERTING the selected data into a remote database via a DB Link Anyone know if it can be done/how?

Reasons:
  • Blacklisted phrase (1): Is there a way
  • Long answer (-1):
  • No code block (0.5):
  • Ends in question mark (2):
  • Looks like a comment (1):
  • Low reputation (1):
Posted by: Terrence Chicote

79702474

Date: 2025-07-15 17:42:09
Score: 5.5
Natty: 5.5
Report link

This article contains all the info about API that you need: https://hw.glich.co/p/what-is-an-api

Reasons:
  • Blacklisted phrase (1): This article
  • Probably link only (1):
  • Low length (1.5):
  • No code block (0.5):
  • Single line (0.5):
  • Low reputation (1):
Posted by: Aniket Rawat

79702430

Date: 2025-07-15 17:15:00
Score: 4.5
Natty:
Report link

see if this helps.

github.com/chiranjeevipavurala/gocollections

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

79702373

Date: 2025-07-15 16:29:46
Score: 5
Natty:
Report link

Please help me with this error.

2025-07-15 16:17:22 SERVER -> CLIENT: 220 smtp.gmail.com ESMTP 41be03b00d2f7-b3bbe728532sm12105356a12.69 - gsmtp
2025-07-15 16:17:22 CLIENT -> SERVER: EHLO localhost
2025-07-15 16:17:22 SERVER -> CLIENT: 250-smtp.gmail.com at your service, [103.214.61.50]250-SIZE 36700160250-8BITMIME250-STARTTLS250-ENHANCEDSTATUSCODES250-PIPELINING250 SMTPUTF8
2025-07-15 16:17:22 CLIENT -> SERVER: STARTTLS
2025-07-15 16:17:23 SERVER -> CLIENT: 220 2.0.0 Ready to start TLS
SMTP Error: Could not connect to SMTP host.
2025-07-15 16:17:23 CLIENT -> SERVER: QUIT
2025-07-15 16:17:23 SERVER -> CLIENT:
2025-07-15 16:17:23 SMTP ERROR: QUIT command failed:
SMTP connect() failed. https://github.com/PHPMailer/PHPMailer/wiki/Troubleshooting

PHPMailer Error: SMTP connect() failed. https://github.com/PHPMailer/PHPMailer/wiki/Troubleshooting

Error sending message! Please try again.

Reasons:
  • Blacklisted phrase (1): help me
  • RegEx Blacklisted phrase (3): Please help me
  • Long answer (-0.5):
  • No code block (0.5):
  • Low reputation (1):
Posted by: Naga Yashas VR

79702364

Date: 2025-07-15 16:25:44
Score: 4
Natty: 4.5
Report link

have you seen , the new Graph EXPORT / IMPORT api use SFP too ... :

https://learn.microsoft.com/en-us/graph/import-exchange-mailbox-item#request-body

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

79702286

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

como andan ? Tengo un error 404 al crear una api con flask con.

<!doctype html>
<html lang=en>
<title>404 Not Found</title>
<h1>Not Found</h1>
<p>The requested URL was not found on the server. If you entered the URL manually please check your spelling and try
    again.</p>


Les adjunto el codigo si me pueden ayudar donde le estoy errando gracias. 
from flask import Flask, request, jsonify
from iso8583 import encode, decode
from iso8583.specs import default_ascii as spec
import re
import os
import json
from datetime import datetime
def obtener_valor_campo(parsed, campo):
    valor = parsed.get(campo)
    if isinstance(valor, dict) and "value" in valor:
        return valor["value"]
    return valor 

app = Flask(__name__)

def reconstruir_mensaje(texto):
    bloques = re.findall(r'\[(.*?)\]', texto)
    return ''.join(bloques)

def extraer_campos_iso(mensaje_iso):
    try:
        iso_bytes = mensaje_iso.encode()
        parsed, _ = decode(iso_bytes, spec=spec)
        return {
            "mti": parsed.get("mti"),
            "campo_3": obtener_valor_campo(parsed, "3"),
            "campo_4": obtener_valor_campo(parsed, "4"),
            "campo_7": obtener_valor_campo(parsed, "7")
        }
    except Exception as e:
        return {"error": f"Error decodificando mensaje ISO: {str(e)}"}

@app.route('/extraer_campos', methods=['GET'])
def procesar_texto():
    try:
        datos = request.get_json()
        texto = datos.get("texto", "")
        mensaje_iso = reconstruir_mensaje(texto)
        resultado = extraer_campos_iso(mensaje_iso)
        return jsonify(resultado)
    except Exception as e:
        return jsonify({"error": f"Error general: {str(e)}"}), 500


def es_binario(cadena):
    return all(c in '01' for c in cadena)

def limpiar_a_binario(cadena):
    return ''.join(c for c in cadena if c in '01')

def procesar_archivo(ruta_archivo, ruta_json, codificacion='utf-8'):
    lista_datos = []
    try:
        with open(ruta_archivo, 'r', encoding=codificacion) as archivo_lectura:
            for i, linea in enumerate(archivo_lectura, start=1):
                linea = linea.strip()
                if not linea:
                    continue
                if es_binario(linea):
                    binario_entrada = linea
                else:
                    binario_entrada = limpiar_a_binario(linea)
                if not binario_entrada:
                    print(f"Línea {i}: no contiene dígitos binarios válidos, se omite.")
                    continue
                decimal = int(binario_entrada, 2)
                hora_actual = datetime.now().strftime('%H:%M:%S.%f')[:-3]
                origen_trx = "POS"
                destino_trx = "EPS"
                mti = '0200'
                iso_message_fields = {
                    't': mti,
                    '3': '001000',
                    '4': '000000100002',
                    '7': '0508155540',
                    '11': '000002',
                    '12': '155540',
                    '13': '0508',
                    '22': '021',
                    '19': '032',
                    '24': '111',
                    '25': '00',
                    '35': '6799990100000000019D2512101045120844',
                    '41': '38010833',
                    '42': '23659307       ',
                    '46': '1',
                    '48': '001',
                    '49': '032',
                    '52': 'AEDB54B10FF671F5',
                    '59': '021000100407070840001023209FFFFF0220002200000DB02800010040784',
                    '60': 'WPH0001',
                    '62': '0002',
                }
                encoded_iso_raw, _ = encode(iso_message_fields, spec)
                decoded_iso_data, _ = decode(encoded_iso_raw, spec)
                lista_datos.append({
                    'hora_procesamiento': hora_actual,
                    'origen_transaccion': origen_trx,
                    'destino_transaccion': destino_trx,
                    'decimal_from_input': decimal,
                    'iso_message_raw': encoded_iso_raw.decode('ascii'),
                    'iso_message_decoded': decoded_iso_data
                })
        with open(ruta_json, 'w', encoding=codificacion) as f_json:
            json.dump(lista_datos, f_json, indent=2)
        print(f"Archivo JSON guardado en: {ruta_json}")
    except FileNotFoundError as fnf_error:
        print(f"Error: archivo no encontrado: {fnf_error}")
    except Exception as e:
        print(f"Error inesperado: {e}")


if __name__ == "__main__":
    # Define aquí las rutas de entrada y salida:
    ruta_archivo = r"C:\Users\mbale\Downloads\AutomatizacionAudit\LecturaAudit\POS-EPS\LecturaAudit.txt"
    ruta_json = r"C:\Users\mbale\Downloads\AutomatizacionAudit\LecturaAudit\POS-EPS\Salida.json"
    procesar_archivo(ruta_archivo, ruta_json)
    app.run(debug=True, host="127.0.0.1", port=5000)
Reasons:
  • Blacklisted phrase (2): ayuda
  • Blacklisted phrase (2): Tengo
  • Blacklisted phrase (2): gracias
  • Blacklisted phrase (2): estoy
  • Blacklisted phrase (2): crear
  • RegEx Blacklisted phrase (2): encontrado
  • Long answer (-1):
  • Has code block (-0.5):
  • Contains question mark (0.5):
  • Low reputation (1):
Posted by: matias bale

79702264

Date: 2025-07-15 15:00:14
Score: 8
Natty: 4.5
Report link

I'm with the same problem, could you solve it?

Reasons:
  • Blacklisted phrase (2): could you solve
  • 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):
Posted by: AleGallagher

79702246

Date: 2025-07-15 14:45:10
Score: 6
Natty:
Report link

Should it be "/src" or "src"?

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

79702240

Date: 2025-07-15 14:41:08
Score: 6
Natty: 6
Report link

The issue still continues for me even though I tried every solution, from going incognito to creating a copy of the file. I am stuck on the pop up where it says something went wrong.

This is very frustrating, everything was working properly and all of a sudden I am stuck in this pop up. Is there any alternative solutions?

Reasons:
  • Blacklisted phrase (1): Is there any
  • RegEx Blacklisted phrase (1.5): I am stuck
  • No code block (0.5):
  • Ends in question mark (2):
  • Low reputation (1):
Posted by: Yigit Toprak

79702227

Date: 2025-07-15 14:34:05
Score: 4
Natty: 4
Report link

Just tested this and both methods give Users and Groups as response.

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

79702213

Date: 2025-07-15 14:22:02
Score: 4.5
Natty: 4
Report link

You can remove this ' new lines' with online tools like https://webtexttools.com/texttools/delete-whitespaces/

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

79702173

Date: 2025-07-15 13:48:51
Score: 4
Natty:
Report link

Changed browser and problem solved.

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

79702172

Date: 2025-07-15 13:47:51
Score: 5
Natty: 4
Report link

getting the same issue , tried almost everything , but i dont know why anyone haven't worked on it , to hide the scrollbar of whole body in a nextjs/reactjs tailwind project , frustating a lot !!!

Reasons:
  • Low length (0.5):
  • No code block (0.5):
  • Me too answer (2.5): getting the same issue
  • Single line (0.5):
  • Low reputation (1):
Posted by: True Champion

79702116

Date: 2025-07-15 13:14:41
Score: 4.5
Natty:
Report link

After opening an issue on github related to this question, i received an response from the maintainers. Here is the link for the issue: https://github.com/micronaut-projects/micronaut-data/issues/3373

Reasons:
  • Blacklisted phrase (1): Here is the link
  • Low length (1):
  • No code block (0.5):
  • Self-answer (0.5):
  • Single line (0.5):
  • Low reputation (1):
Posted by: pdjudice

79702083

Date: 2025-07-15 12:56:35
Score: 5
Natty: 5
Report link

Have a look at MDG Technology Icons: https://sparxsystems.com/enterprise_architect_user_guide/17.1/the_application_desktop/projectbrowseroverlays.html

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

79702067

Date: 2025-07-15 12:40:31
Score: 5
Natty:
Report link

trying to get it to work on my side. But when I want to run the questy i get below error...

What is wrong?

DataSource.Error: Web.Contents failed to get contents from 'https://portail.agir.orange.com/rest/api/2/search?jql=project%3DSOMEPROJECT&fields=summary%2Creporter%2Cstatus&maxResults=1000' (400): 
Details:
    DataSourceKind=Web
    DataSourcePath=https://portail.agir.orange.com/rest/api/2/search
    Url=https://portail.agir.orange.com/rest/api/2/search?jql=project%3DSOMEPROJECT&fields=summary%2Creporter%2Cstatus&maxResults=1000

enter image description here

Reasons:
  • Blacklisted phrase (1): enter image description here
  • RegEx Blacklisted phrase (1): I want
  • RegEx Blacklisted phrase (1): i get below error
  • Long answer (-0.5):
  • Has code block (-0.5):
  • Ends in question mark (2):
  • Low reputation (1):
Posted by: Bart Ramakers

79702063

Date: 2025-07-15 12:35:29
Score: 5
Natty:
Report link

I have converted this wrong snippet following the Grafana Alloy Syntax Guide for the new .alloy file syntax and the Graphana Components reference documentation.

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

79702015

Date: 2025-07-15 11:56:18
Score: 5
Natty: 5.5
Report link

use blur image tool ,find some ideas

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

79702005

Date: 2025-07-15 11:52:16
Score: 4
Natty:
Report link

Thank you, I tried the Troubleshooter and it's showing "No apps on your account." but it's not true I have some apps (see screenshot) and some of them are showing ads and my Ad unit ID are correct from Admob

enter image description here

Reasons:
  • Blacklisted phrase (0.5): Thank you
  • Blacklisted phrase (1): enter image description here
  • Low length (0.5):
  • No code block (0.5):
  • Self-answer (0.5):
  • Low reputation (1):
Posted by: Elhadj

79701955

Date: 2025-07-15 11:04:03
Score: 4
Natty: 4.5
Report link

I wrote a short, two-part article about the differences between B-tree indexes and MongoDB Atlas Search; it might help you https://medium.com/@sanyaaxel94/from-ground-level-b-trees-to-atlas-search-heaven-part-1-c9bda1c201f6

Reasons:
  • Blacklisted phrase (0.5): medium.com
  • Probably link only (1):
  • Low length (1):
  • No code block (0.5):
  • Single line (0.5):
  • Low reputation (0.5):
Posted by: WhoKnows

79701954

Date: 2025-07-15 11:03:03
Score: 4
Natty: 4.5
Report link

I wrote a short, two-part article about the differences between B-tree indexes and MongoDB Atlas Search; it might help you https://medium.com/@sanyaaxel94/from-ground-level-b-trees-to-atlas-search-heaven-part-1-c9bda1c201f6

Reasons:
  • Blacklisted phrase (0.5): medium.com
  • Probably link only (1):
  • Low length (1):
  • No code block (0.5):
  • Single line (0.5):
  • Low reputation (0.5):
Posted by: WhoKnows

79701939

Date: 2025-07-15 10:50:59
Score: 4
Natty:
Report link

StackOverflow is dead

StackOverflow is dead

StackOverflow is dead

StackOverflow is dead

StackOverflow is dead

StackOverflow is dead

StackOverflow is dead

Reasons:
  • Blacklisted phrase (1): StackOverflow
  • Low length (1):
  • No code block (0.5):
  • Unregistered user (0.5):
  • Low reputation (1):
Posted by: Maulik

79701854

Date: 2025-07-15 09:45:40
Score: 4.5
Natty: 4.5
Report link

If anyone is still searching for one, Created my own custom Processor that Captures Changes using MongoDB Change Stream.

https://github.com/tomsajuk/nifi-custom-processors/releases/download/nifi-spcx-1.1/nifi-spcx-nar-1.1.nar

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

79701852

Date: 2025-07-15 09:44:39
Score: 4.5
Natty:
Report link

Any luck on this Rob, i got stuck in the same place when the provision status says "In Progress".

Reasons:
  • Blacklisted phrase (1.5): Any luck
  • Low length (1):
  • No code block (0.5):
  • Single line (0.5):
  • Low reputation (1):
Posted by: Miraj Ali Salabudeen

79701806

Date: 2025-07-15 09:16:30
Score: 9.5
Natty:
Report link

I have only changed the JS part and also added comments in code.

Is this how you want it?

const chatLauncher = document.getElementById('chatLauncher');
const chatContainer = document.getElementById('chatContainer');
const sidebar = document.getElementById('sidebar');

// just changed the name
function closeChat() {
  chatContainer.style.display = 'none';
  chatLauncher.style.display = 'flex';
}

chatLauncher.addEventListener('click', () => {
  chatContainer.style.display = 'flex';
  chatLauncher.style.display = 'none';
  
  // when opening the chat, it should not be fullscreen
  chatContainer.classList.remove('fullscreen');
  // with collapsed sidebar
  sidebar.querySelector('.content').style.display = 'none';
  
  // this is not needed because you don't have 
  // the option to close chat when sidebar is fullwidth
  // in case you implment it later
  // sidebar.classList.remove('fullwidth');
});

function toggleFullscreen() {
  chatContainer.classList.toggle('fullscreen');
  
  // also toggle sidebar content
  sidebar.querySelector('.content').style.display =
    chatContainer.classList.contains('fullscreen') ? 'block' : 'none';
}

function toggleSidebar() {
  const isFullscreen = chatContainer.classList.contains('fullscreen');
  // isMobile is always false if isFullscreen is true
  // isFullscreen = !isMobile
  // const isMobile = chatContainer.offsetWidth <= 400;

  if (!isFullscreen) {
    sidebar.classList.toggle('fullwidth');
    
    // there is no collapsed class defined??
    // sidebar.classList.remove('collapsed');
    
    sidebar.querySelector('.content').style.display =
      sidebar.classList.contains('fullwidth') ? 'block' : 'none';
  } else {
    // you mentioned, collapsing sidebar in fullscreen should not be possible
    // sidebar.classList.toggle('collapsed');
    // sidebar.querySelector('.content').style.display =
    //   sidebar.classList.contains('collapsed') ? 'none' : 'block';
  }
}
* {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: 'Segoe UI', sans-serif;
  background: #f3f3f3;
}

/* ---------- launcher ---------- */
.chat-launcher {
  position: fixed;
  bottom: 20px;
  right: 20px;
  background: #000;
  color: #fff;
  border-radius: 50%;
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
  cursor: pointer;
  z-index: 1000;
}

/* ---------- chat container ---------- */
.chat-container {
  display: none;
  height: 600px;
  width: 400px;
  max-width: 90vw;
  position: fixed;
  bottom: 80px;
  right: 20px;
  background: #fff;
  box-shadow: 0 0 12px rgba(0, 0, 0, 0.15);
  border-radius: 12px;
  overflow: hidden;
  z-index: 1001;
  transition: all .3s ease;
}

/* ---------- fullscreen overrides ---------- */
.chat-container.fullscreen {
  width: 100vw;
  height: 100vh;
  bottom: 0;
  right: 0;
  border-radius: 0;
  display: flex;
  flex-direction: row;
}

/* sidebar in fullscreen */
.chat-container.fullscreen .sidebar {
  width: 250px;
  border-right: 1px solid #ddd;
}

.chat-container.fullscreen .sidebar .content {
  display: block;
}

/* chat area in fullscreen */
.chat-container.fullscreen .container {
  display: flex;
  flex: 1 1 auto;
}

/* ---------- sidebar ---------- */
.sidebar {
  width: 60px;
  background: #fff;
  border-right: 1px solid #ddd;
  padding: 20px;
  transition: width .3s;
  flex-shrink: 0;
}

.sidebar .toggle-btn {
  font-size: 20px;
  cursor: pointer;
  margin-bottom: 20px;
}

.sidebar .content {
  display: none;
}

.sidebar.fullwidth {
  width: 100%;
  border-right: none;
}

.sidebar.fullwidth .content {
  display: block;
}

.sidebar.fullwidth~.container {
  display: none;
}

/* ---------- chat area ---------- */
.container {
  flex: 1;
  display: flex;
  flex-direction: column;
  overflow: hidden;
  min-width: 0;
}

.header {
  background: #f5f5f5;
  padding: 10px 16px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.header h2 {
  flex: 1;
  text-align: center;
  font-size: 18px;
  margin: 0;
}

.header .icons {
  display: flex;
  gap: 10px;
  font-size: 20px;
  color: #333;
  cursor: pointer;
}

.blue-banner {
  background: linear-gradient(to right, #2979ff, #1976d2);
  color: white;
  padding: 15px;
  margin: 10px;
  border-radius: 10px;
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 14px;
}

.messages {
  flex: 1;
  padding: 20px;
  overflow-y: auto;
}

.message {
  margin-bottom: 20px;
}

.message.bot {
  background: #fff;
  border-radius: 10px;
  padding: 15px;
  box-shadow: 0 0 4px rgba(0, 0, 0, .1);
  max-width: 80%;
}

.message.user {
  text-align: right;
}

.message.user .bubble {
  display: inline-block;
  background: #1976d2;
  color: white;
  border-radius: 20px;
  padding: 10px 20px;
}

.timestamp {
  font-size: 12px;
  color: gray;
  margin-top: 5px;
}

.input-area {
  display: flex;
  align-items: center;
  padding: 10px;
  background: white;
  border-top: 1px solid #ccc;
}

.input-area input {
  flex: 1;
  padding: 10px;
  border: 1px solid #ccc;
  border-radius: 20px;
  outline: none;
}

.input-area button {
  background: #1976d2;
  color: white;
  border: none;
  border-radius: 50%;
  padding: 10px 15px;
  margin-left: 10px;
  cursor: pointer;
}

.upload-btn {
  margin-right: 10px;
  font-size: 12px;
  color: #1976d2;
  cursor: pointer;
}
<div class="chat-launcher" id="chatLauncher">💬</div>

<div class="chat-container" id="chatContainer">
  <!-- sidebar -->
  <div class="sidebar" id="sidebar">
    <div class="toggle-btn" onclick="toggleSidebar()">☰</div>
    <div class="content">
      <h2>{nameHere}</h2>
      <p>{descriptionHere}</p>
      <h3>Continue Conversations</h3>
      <button style="padding:10px;border:1px solid #1976d2;border-radius:10px;width:100%;margin-bottom:10px;background:#E3F2FD;color:#000;">Sender: Clickable →</button>
      <h3>Talk to our experts</h3>
      <button style="padding:10px;width:100%;margin-bottom:10px;background:#F3E5F5;border:1px solid #CCC;border-radius:10px;">👨‍💼 Support</button>
      <div style="padding: 10px; border-radius: 10px; background: linear-gradient(to right, #d1c4e9, #f8bbd0);">
        <p><strong>Need specialized help?</strong><br/>Our teams are ready to assist you with any questions</p>
        <button style="padding: 5px 10px; background: blue; color: white; border: none; border-radius: 5px;">Call Us</button>
      </div>
    </div>
  </div>

  <!-- chat -->
  <div class="container">
    <div class="header">
      <div class="icons" onclick="closeChat()">✖</div>
      <h2>Support</h2>
      <div class="icons">
        <span onclick="alert('Call Clicked')">📞</span>
        <span onclick="toggleFullscreen()">⤢</span>
      </div>
    </div>
    <div class="blue-banner">
      📄
      <div>
        <strong>Enter your details</strong><br>
        <small>Click here to provide your information</small>
      </div>
    </div>
    <div class="messages">
      <div class="message bot">
        Hey 😃 How can I assist you with services today? Could you please share your username to help you better?
        <ul>
          <li>1. I have an issue with SMS</li>
          <li>2. I need help with Email</li>
          <li>3. Other service query</li>
        </ul>
        <div class="timestamp">10:26 am</div>
      </div>
      <div class="message user">
        <div class="bubble">hey</div>
        <div class="timestamp">10:26 am</div>
      </div>
      <div class="message bot">
        Hey 😃 How can I help you with today? Please share your username so I can assist you better.
        <ul>
          <li>1. I have an issue with SMS</li>
          <li>2. I need help with Email</li>
          <li>3. Other service query</li>
        </ul>
        <div class="timestamp">10:27 am</div>
      </div>
    </div>
    <div class="input-area">
      <span class="upload-btn">📎 Upload Files</span>
      <input type="text" placeholder="Message AI Assistant...">
      <button>➤</button>
    </div>
  </div>
</div>

Reasons:
  • Blacklisted phrase (0.5): How can I
  • Blacklisted phrase (0.5): I need
  • Blacklisted phrase (2.5): I need help
  • RegEx Blacklisted phrase (2.5): Could you please share your
  • RegEx Blacklisted phrase (2.5): Please share your
  • Long answer (-1):
  • Has code block (-0.5):
  • Ends in question mark (2):
  • Low reputation (0.5):
Posted by: Prango

79701637

Date: 2025-07-15 06:19:47
Score: 4
Natty:
Report link

Find a tool, https://sqliagram.pages.dev/. It visualizes SQL in a DAG, this may help

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

79701620

Date: 2025-07-15 06:02:42
Score: 5.5
Natty: 5
Report link

May be it's Gradle JDK problem:

https://www.youtube.com/watch?v=3ByuOHZKeLE

Reasons:
  • Blacklisted phrase (1): youtube.com
  • Probably link only (1):
  • Low length (2):
  • No code block (0.5):
  • Low reputation (1):
Posted by: Weizhen Liu

79701525

Date: 2025-07-15 03:40:10
Score: 5
Natty: 6.5
Report link

https://www.electronforge.io/config/makers/squirrel.windows#handling-startup-events

this document has the answer what you need

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

79701523

Date: 2025-07-15 03:34:04
Score: 10.5
Natty:
Report link

Did you find how to fix this, I have same error, Image

Reasons:
  • RegEx Blacklisted phrase (3): Did you find
  • RegEx Blacklisted phrase (1): I have same error
  • Low length (1.5):
  • No code block (0.5):
  • Me too answer (2.5): I have same error
  • Single line (0.5):
  • Starts with a question (0.5): Did you find
  • Low reputation (1):
Posted by: Jose Yasbet Alvarez Godinez

79701498

Date: 2025-07-15 02:37:52
Score: 5
Natty: 5
Report link

I have answerd it here,it works. https://github.com/rapid7/metasploit-framework/issues/13231#issuecomment-3071689469

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

79701395

Date: 2025-07-14 22:30:59
Score: 4
Natty:
Report link

i have figured it out, i was doing the "*A1" twice. fixed it! lol thank you for helping though

Reasons:
  • Blacklisted phrase (0.5): thank you
  • Low length (1):
  • No code block (0.5):
  • Self-answer (0.5):
  • Single line (0.5):
  • Low reputation (1):
Posted by: AmongTheShadows

79701159

Date: 2025-07-14 16:55:35
Score: 6
Natty:
Report link

Thank you @jme11, that was exactly what was causing the error. I updated the link and it’s working now.

Reasons:
  • Blacklisted phrase (0.5): Thank you
  • Low length (1):
  • No code block (0.5):
  • User mentioned (1): @jme11
  • Self-answer (0.5):
  • Single line (0.5):
  • Looks like a comment (1):
  • Low reputation (1):
Posted by: NeverFallingDown 94

79701100

Date: 2025-07-14 15:50:19
Score: 4.5
Natty:
Report link

Have you tried replacing scope='session' with scope='function' in the mocked_app and client fixtures?

Reasons:
  • Whitelisted phrase (-1): Have you tried
  • RegEx Blacklisted phrase (1.5): fixtures?
  • Low length (1):
  • Has code block (-0.5):
  • Ends in question mark (2):
  • Single line (0.5):
  • Low reputation (1):
Posted by: Данил Тополь

79701077

Date: 2025-07-14 15:20:12
Score: 9.5
Natty: 5.5
Report link

did you find a solution to this?

Reasons:
  • RegEx Blacklisted phrase (3): did you find a solution to this
  • Low length (2):
  • No code block (0.5):
  • Ends in question mark (2):
  • Single line (0.5):
  • Starts with a question (0.5): did you find a solution to this
  • Low reputation (1):
Posted by: Junhao Chin

79701015

Date: 2025-07-14 14:20:56
Score: 4.5
Natty: 5.5
Report link

Bro thank you so much, I was struggling on this problem for so long

Reasons:
  • Blacklisted phrase (0.5): thank you
  • Low length (1.5):
  • No code block (0.5):
  • Unregistered user (0.5):
  • Single line (0.5):
  • Low reputation (1):
Posted by: tester

79700809

Date: 2025-07-14 11:30:11
Score: 4
Natty:
Report link

It was a bug and will be fixed in the next release.

https://github.com/scipy/scipy/pull/23322

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

79700777

Date: 2025-07-14 11:01:03
Score: 4
Natty: 4.5
Report link

Thank you for code above, work perfectly. However how about to get coupon code based on customer email only? Without any specific discout type.

Reasons:
  • Blacklisted phrase (0.5): Thank you
  • Low length (1):
  • No code block (0.5):
  • Contains question mark (0.5):
  • Single line (0.5):
  • Low reputation (1):
Posted by: Weetameal

79700734

Date: 2025-07-14 10:26:54
Score: 5
Natty:
Report link

The error is thrown by your AWS because it cannot assume Snowflake, and is definitely related to the AWS permissions.
Your trust policy is correct as per https://docs.snowflake.com/en/user-guide/data-load-snowpipe-auto-s3#step-5-grant-the-iam-user-permissions-to-access-bucket-objects

I could not think of other reason for the error.
Were you able to get this work? If you still need help, let me know. I can assist through a Snowflake support case.

Reasons:
  • RegEx Blacklisted phrase (3): Were you able
  • No code block (0.5):
  • Contains question mark (0.5):
  • Low reputation (1):
Posted by: Ankesha Agrawal

79700723

Date: 2025-07-14 10:14:51
Score: 4
Natty: 4.5
Report link

RabbitMQ has introduced Streams for this use case https://www.rabbitmq.com/blog/2021/07/13/rabbitmq-streams-overview

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

79700717

Date: 2025-07-14 10:11:49
Score: 10
Natty: 6
Report link

I am facing the same issue googleapiclient.errors.HttpError: <HttpError 500 when requesting https://forms.googleapis.com/v1/forms?alt=json returned "Internal error". Details: "Internal error"> can any one solve ????

Reasons:
  • Blacklisted phrase (1): ???
  • RegEx Blacklisted phrase (1.5): solve ????
  • Low length (1):
  • No code block (0.5):
  • Me too answer (2.5): I am facing the same issue
  • Ends in question mark (2):
  • Single line (0.5):
  • Low reputation (1):
Posted by: Kranthi Naremsetti

79700600

Date: 2025-07-14 08:26:21
Score: 4
Natty: 5
Report link

What I don't even understand, actually, is which URI am I expected to put there, in the most normal case?
Which resources are expected to be available on this URI if I open it?
What is the purpose of setting more than one?
Which syntax should I use for setting more than one?

Reasons:
  • Low length (0.5):
  • No code block (0.5):
  • Ends in question mark (2):
  • Starts with a question (0.5): What I
  • Low reputation (0.5):
Posted by: GingkoFr

79700542

Date: 2025-07-14 07:30:07
Score: 4.5
Natty: 4
Report link

All apps on one page like it was before

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

79700529

Date: 2025-07-14 07:18:03
Score: 14.5
Natty: 7.5
Report link

I am facing the same problem. how did you solve it?

Reasons:
  • Blacklisted phrase (1): how did you solve it
  • Blacklisted phrase (1): m facing the same problem
  • RegEx Blacklisted phrase (3): did you solve it
  • RegEx Blacklisted phrase (1.5): solve it?
  • Low length (1.5):
  • No code block (0.5):
  • Me too answer (2.5): I am facing the same problem
  • Ends in question mark (2):
  • Single line (0.5):
  • Low reputation (1):
Posted by: Mohamed Farouk

79700488

Date: 2025-07-14 06:16:50
Score: 5
Natty: 4
Report link

Title : Tauri + React: Image not displaying after saving in AppData folder

Hello everyone,
I’m working on a project using Tauri with React, and I’ve run into an issue with image handling.

I’m creating an images folder inside the AppData directory and copying uploaded images into that folder. I also store the image path in the SQLite database. Everything works fine during upload — the image is saved correctly, and the path is stored — but when I try to display the image later in my app, it doesn’t show up.

Here’s the function I’m using to add a product and save the image:

async function addProduct( file, productName, category, price, description ) { try { const database = await initDatabase(); const tokenExists = await exists("images", { baseDir: BaseDirectory.AppData, }); if (!tokenExists) { await mkdir("images", { baseDir: BaseDirectory.AppData, }); } const filename = await basename(file); const uniqueName = `${Date.now()}${filename}`; const destinationPath = `images/${uniqueName}`; await copyFile(file, destinationPath, { toPathBaseDir: BaseDirectory.AppData, }); await database.execute( "INSERT INTO product (productImage, productName, category, price, description) VALUES (?, ?, ?, ?, ?)", [destinationPath, productName, category, price, description] ); return { ok: true, message: "Product added successfully" }; } catch (error) { console.error("❌ Failed to add product:", error.message); throw error; } }

To display the image, I’m trying to load it like this:

<img src={`C:\\Users\\YourUser\\AppData\\Roaming\\com.product.app\\images\\${item.productImage}`} />

But the image is not rendering, and the console shows an error:
"Not allowed to load local resource"

Question:

Any help would be appreciated

Reasons:
  • Blacklisted phrase (1): appreciated
  • Blacklisted phrase (1): Any help
  • RegEx Blacklisted phrase (3): Any help would be appreciated
  • Long answer (-1):
  • Has code block (-0.5):
  • Contains question mark (0.5):
  • Low reputation (1):
Posted by: Mudasir Nadeem

79700417

Date: 2025-07-14 03:46:19
Score: 9
Natty: 6.5
Report link

did you manage to fix it ? would love to know how

Reasons:
  • 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):
  • Contains question mark (0.5):
  • Single line (0.5):
  • Starts with a question (0.5): did you
  • Low reputation (1):
Posted by: Tally Loterman

79700374

Date: 2025-07-14 02:10:57
Score: 4
Natty: 4
Report link

stack overflow sucks the homo dick and microsoft sucks the nggr dick

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

79700316

Date: 2025-07-13 23:36:24
Score: 12
Natty: 7.5
Report link

I'm having the same problem. Did you find a solution for this?

Reasons:
  • Blacklisted phrase (1): I'm having 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): I'm having the same problem
  • Ends in question mark (2):
  • Single line (0.5):
  • Low reputation (1):
Posted by: Aslı Yüksel

79700176

Date: 2025-07-13 18:38:16
Score: 5
Natty: 5.5
Report link

This is not an answer it's a question how can I remove the diagonal lines using VBA code

Reasons:
  • Blacklisted phrase (0.5): how can I
  • Blacklisted phrase (1): not an answer
  • Low length (1.5):
  • No code block (0.5):
  • Single line (0.5):
  • Low reputation (1):
Posted by: ujjal shill

79700146

Date: 2025-07-13 17:43:03
Score: 4
Natty:
Report link

i think you should use onSelect or onChange props in Select from Antd instead of onClick

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

79700094

Date: 2025-07-13 16:27:45
Score: 4
Natty:
Report link

i ended up fixing this by changing the [now - countDownDate] to [countDownDate - now].

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

79700091

Date: 2025-07-13 16:24:44
Score: 4
Natty:
Report link

only exchange object is passed as tool context to server,

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

79700046

Date: 2025-07-13 15:09:26
Score: 5.5
Natty:
Report link

I’ve found a way to at least work around the issue so that the proxy can be used:

If you load another website first — for example, Wikipedia — before navigating to csfloat.com, it seems to work fine. You can add something like this to your code:

await page.goto("http://wikipedia.com/", {
  waitUntil: "domcontentloaded",
  timeout: 30000,
});

Then, after that, navigate to csfloat. Everything seems to work correctly this way.
Does anyone have an idea why this might be happening?

Reasons:
  • RegEx Blacklisted phrase (3): Does anyone have an idea
  • Has code block (-0.5):
  • Ends in question mark (2):
  • Self-answer (0.5):
  • Low reputation (0.5):
Posted by: UsAA12

79700000

Date: 2025-07-13 13:47:06
Score: 5.5
Natty:
Report link

https://i.postimg.cc/VkTnRjzk/Przechwytywanie.png

i hope you help me, this is important for me.

Reasons:
  • Blacklisted phrase (1): help me
  • Probably link only (1):
  • Low length (1.5):
  • No code block (0.5):
  • Self-answer (0.5):
  • Low reputation (1):
Posted by: Mark Femnis

79699806

Date: 2025-07-13 07:41:39
Score: 6
Natty: 4
Report link

jQuery now has major contender. The Juris.js enhance() API.
Refer to this article for reference. It's a relatively new solution to DOM manipulation and progressive enhancement.
https://medium.com/@resti.guay/jquery-vs-juris-js-enhance-api-technical-comparison-and-benefits-d94b63c63bf6

Reasons:
  • Blacklisted phrase (1): this article
  • Blacklisted phrase (0.5): medium.com
  • Probably link only (1):
  • Contains signature (1):
  • Low length (1):
  • No code block (0.5):
  • Low reputation (1):
Posted by: resti

79699743

Date: 2025-07-13 05:12:02
Score: 9.5
Natty:
Report link

Strange! this one of our old functions that we had and working in our Windows server but now we moved to linux I got this error, Do you know how can I get the error message return by this event, my code still failing and would like to catch the error message? Thanks

Reasons:
  • Blacklisted phrase (0.5): Thanks
  • Blacklisted phrase (0.5): how can I
  • RegEx Blacklisted phrase (1): I get the error
  • RegEx Blacklisted phrase (2.5): Do you know how
  • Low length (0.5):
  • No code block (0.5):
  • Ends in question mark (2):
  • Self-answer (0.5):
  • Single line (0.5):
  • Low reputation (1):
Posted by: ROCHDI

79699716

Date: 2025-07-13 03:43:44
Score: 4
Natty:
Report link

How about this? You identify peaks by getting numbers that have a smaller number after and before it (only after or before for first and last), then take the 2 highest from these peaks?

Reasons:
  • Low length (0.5):
  • No code block (0.5):
  • Ends in question mark (2):
  • Single line (0.5):
  • Starts with a question (0.5): How
Posted by: SpicyCatGames

79699640

Date: 2025-07-12 23:01:45
Score: 8.5
Natty: 4.5
Report link

Hy i have the same problem on an old installation; no buttos for upload,..

        $tableColumns['dateiname'] = array(
            'display_text' => 'datei',
            'maxlen'   => 100,
            'perms' => 'EVCTAXQSHOF',
            'file_upload' => array(
                'upload_fun' => array(&$this, 'handleUpload'), 
                'delete_fun' => array(&$this, 'handleDeleteFile')),
            'table_fun' => array(&$this, 'formatLinkDownload'), 
            'view_fun' => array(&$this, 'formatLinkDownload')
);

function formatLinkDownload($col,$val,$row,$instanceName,$rowNum)
    {
        $html = '';
        if (!empty($val))
        {
            $html = '<a target="_blank" href="'.htmlspecialchars($val).'">test</a>';
        }
        return $html;
    }


i tried with you code snipsets a little bit but my fiel is rendered as type="text"
can you show the                 'upload_fun' => array(&$this, 'handleUpload'), 
                'delete_fun' => array(&$this, 'handleDeleteFile')),
funktions?


Thanks
Reasons:
  • Blacklisted phrase (0.5): Thanks
  • Blacklisted phrase (1): i have the same problem
  • RegEx Blacklisted phrase (2.5): can you show
  • Long answer (-1):
  • Has code block (-0.5):
  • Me too answer (2.5): i have the same problem
  • Ends in question mark (2):
  • Unregistered user (0.5):
  • Low reputation (1):
Posted by: user31027931

79699614

Date: 2025-07-12 21:56:31
Score: 7
Natty: 4
Report link

([0-9]+([.][0-9]+)?|[0-9]+.d0|.d[0-9])

Reasons:
  • Low length (2):
  • No code block (0.5):
  • Contains question mark (0.5):
  • Has no white space (0.5):
  • Single line (0.5):
  • No latin characters (2):
  • Low reputation (1):
Posted by: adob

79699598

Date: 2025-07-12 21:31:25
Score: 4.5
Natty: 4.5
Report link

Use map and area tags to slice image.

https://www.w3schools.com/html/html_images_imagemap.asp

Reasons:
  • Probably link only (1):
  • Low length (2):
  • No code block (0.5):
  • Low reputation (1):
Posted by: amir jamshidi

79699576

Date: 2025-07-12 20:47:14
Score: 5
Natty:
Report link

Sajjad Ali game carrom pool coin seller don key seller don ab deal kaisa chal raha hai sajjad game carrom pool coin seller don bhai sir bolo sir fast

Reasons:
  • RegEx Blacklisted phrase (2): bhai
  • Low length (1):
  • No code block (0.5):
  • Single line (0.5):
  • Low reputation (1):
Posted by: randy pradana

79699569

Date: 2025-07-12 20:39:12
Score: 5.5
Natty: 6
Report link

u gon get hacked lmaoooooooooo

Reasons:
  • Blacklisted phrase (0.5): lmao
  • Low length (2):
  • No code block (0.5):
  • Unregistered user (0.5):
  • Single line (0.5):
  • Filler text (0.5): oooooooooo
  • Low reputation (1):
Posted by: trolr

79699488

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

Can use this approach wokrks fine

https://medium.com/@shubham9032/loading-dynamic-images-in-live-activities-with-push-to-start-tokens-in-ios-9273c0235905
https://medium.com/@shubham9032/loading-dynamic-images-in-live-activities-with-push-to-start-tokens-in-ios-9273c0235905

Reasons:
  • Blacklisted phrase (0.5): medium.com
  • Probably link only (1):
  • Low length (2):
  • No code block (0.5):
  • Starts with a question (0.5): Can u
  • Low reputation (0.5):
Posted by: shubh14896

79699471

Date: 2025-07-12 17:53:32
Score: 4.5
Natty:
Report link

Sii Cómo te sientes

Por favor Siii

Reasons:
  • Blacklisted phrase (1): Cómo
  • Low length (2):
  • No code block (0.5):
  • Low reputation (1):
Posted by: Guadalupe Mara del Carmen Riva

79699456

Date: 2025-07-12 17:28:25
Score: 6.5
Natty: 5.5
Report link

السلام عليكم ورحمة الله وبركاته ياخوي كيف سويت ايموجيات بالجوال اتمنى الرد باسرع وقت او بجلدك

Reasons:
  • Low length (1):
  • No code block (0.5):
  • Single line (0.5):
  • No latin characters (3.5):
  • Low reputation (1):
Posted by: Iii Ii

79699406

Date: 2025-07-12 16:09:08
Score: 4
Natty:
Report link
Reasons:
  • Blacklisted phrase (1): but not working
  • RegEx Blacklisted phrase (3): not working for me
  • Probably link only (1):
  • Long answer (-0.5):
  • Has code block (-0.5):
Posted by: Nor.Z

79699390

Date: 2025-07-12 15:35:00
Score: 4.5
Natty: 4
Report link

i lwk dont know NGGER NGGER NGGERNGGER

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

79699373

Date: 2025-07-12 15:05:54
Score: 5
Natty:
Report link

Hi i have a similar issue. However, when querying the bucket i get denied

arn:aws:s3:::bucketname/AWSLogs/111111111/CloudTrail/ap-south-1/2025/07/09/111111111_CloudTrail_ap-south-1_20250709T1405Z_zwwNmrzBpawBJ0my.json.gz

Pretty much any prefix in AP.north or south. The bucket policy is lightly different.

            },
            "Action": "s3:*",
            "Resource": "arn:aws:s3:::cloudtrailcentralizedbucket",
            "Condition": {
                "StringLike": {
                    "s3:prefix": [
                        "AWSLogs/111111111/*",
                        "AWSLogs/111111111/CloudTrail/*",
                        "AWSLogs/111111111/CloudTrail/ap-northeast-2/*",
                        "AWSLogs/111111111/CloudTrail/ap-northeast-3/*",
                        "AWSLogs/111111111/CloudTrail/ap-southeast-1/*",
                        "AWSLogs/111111111/CloudTrail/ap-northeast-1/*"
                    ]
                }
Reasons:
  • RegEx Blacklisted phrase (2): Hi i have a
  • Long answer (-0.5):
  • Has code block (-0.5):
  • Me too answer (2.5): i have a similar issue
  • Filler text (0.5): 111111111
  • Filler text (0): 111111111
  • Low reputation (1):
Posted by: D' go

79699224

Date: 2025-07-12 11:20:02
Score: 5.5
Natty: 4.5
Report link

This issue return again since 2 days ago
https://developer.apple.com/forums/thread/792545?login=true&page=1#848727022

does there another sloution ?
like ecrypt the model without depend on Apple server ?

Reasons:
  • Probably link only (1):
  • Low length (1):
  • No code block (0.5):
  • Ends in question mark (2):
  • Low reputation (1):
Posted by: X901

79699223

Date: 2025-07-12 11:18:01
Score: 4
Natty:
Report link

Ashwani Raj

header 1 header 2
cell 1 cell 2
cell 3 cell 4
Reasons:
  • Contains signature (1):
  • Low length (1.5):
  • No code block (0.5):
  • Low reputation (1):
Posted by: Ashwani Raj

79699205

Date: 2025-07-12 10:48:53
Score: 9.5
Natty: 5.5
Report link

aaaaaaaaaaa

aaaaaaaaaaaaaaaaaaaa

Reasons:
  • Low length (2):
  • No code block (0.5):
  • Unregistered user (0.5):
  • Has no white space (0.5):
  • No latin characters (3.5):
  • Filler text (0.5): aaaaaaaaaaa
  • Filler text (0): aaaaaaaaaaaaaaaaaaaa
  • Low entropy (1):
  • Low reputation (1):
Posted by: Spicetify

79699196

Date: 2025-07-12 10:36:49
Score: 6
Natty:
Report link

Possible Solution which does work:

I was able to run the ui file by adding the plugins path at the beginning of my script to point towards the correct directory.

qt_plugin_path = r"<<path>>" 
os.environ['QT_QPA_PLATFORM_PLUGIN_PATH'] = qt_plugin_path

I would like to know if this is the correct method and if there are any pointers to check to see if the setup installation is correct! I would appreciate any solutions or helpful suggestions.

Thanks

Reasons:
  • Blacklisted phrase (0.5): Thanks
  • Blacklisted phrase (1.5): I would like to know
  • Blacklisted phrase (1.5): any solution
  • Blacklisted phrase (1.5): would appreciate
  • Has code block (-0.5):
  • Self-answer (0.5):
  • Low reputation (1):
Posted by: Agni Sen

79699166

Date: 2025-07-12 09:49:33
Score: 8
Natty:
Report link

I Face the same issue but for now doesn't working can you give your solution sbd what package you

Reasons:
  • RegEx Blacklisted phrase (2.5): can you give your solution
  • Low length (1):
  • No code block (0.5):
  • Me too answer (2.5): I Face the same issue
  • Single line (0.5):
  • Low reputation (1):
Posted by: Altan

79699160

Date: 2025-07-12 09:39:30
Score: 5
Natty: 4.5
Report link

print("You are an adult.")

print("Congratulations! You are an adult now.")

age = int(input("Please tell me your age: "))

Reasons:
  • RegEx Blacklisted phrase (2.5): Please tell me your
  • Low length (1):
  • No code block (0.5):
  • Low reputation (1):
Posted by: Hera lon

79699148

Date: 2025-07-12 09:29:26
Score: 6
Natty: 5
Report link

''ve tried restarting the emulator, updating Android Studio, and adjusting RAM settings, but nothing seems to help. My setup includes Android Studio and the latest emulator version. Any advice on how to fix this?

Reasons:
  • RegEx Blacklisted phrase (1.5): how to fix this?
  • Low length (0.5):
  • No code block (0.5):
  • Ends in question mark (2):
  • Single line (0.5):
  • Low reputation (1):
Posted by: MD.ALAMGIR HOSEN

79699104

Date: 2025-07-12 07:46:03
Score: 4.5
Natty: 4.5
Report link

I'm having this same issue. When I test the command, it cannot be found. Howevwer, when I do "chmod" +x test.txt it responds with: chmod: test.txt: No such file or directory.

Please help.

Reasons:
  • RegEx Blacklisted phrase (3): Please help
  • Low length (0.5):
  • Has code block (-0.5):
  • Unregistered user (0.5):
  • Low reputation (1):
Posted by: Seak000

79699086

Date: 2025-07-12 07:22:57
Score: 8
Natty: 4.5
Report link

stuck in same problem, @BullyWiiPlaza did you find any solution for this and other new applications onboarded are working fine but the one we migrated showing the exact same behaviour which you have mentioned

Reasons:
  • Blacklisted phrase (1.5): any solution
  • RegEx Blacklisted phrase (3): did you find any solution
  • Low length (0.5):
  • No code block (0.5):
  • User mentioned (1): @did
  • Single line (0.5):
  • Low reputation (1):
Posted by: Prateek Singh Chauhan

79699016

Date: 2025-07-12 05:02:26
Score: 5.5
Natty:
Report link

i have the same problem with codeigniter 3.

just test different version of php_sqlsrv_ts_x64.dll and check one of them will work

Reasons:
  • Blacklisted phrase (1): i have the same problem
  • Low length (1):
  • No code block (0.5):
  • Me too answer (2.5): i have the same problem
  • Low reputation (0.5):
Posted by: Mohammadreza Esmaeeli

79698884

Date: 2025-07-11 22:26:04
Score: 5.5
Natty:
Report link
Hello. I have a ZX800S module. How can I find out the ASCII code of this module?
Reasons:
  • Blacklisted phrase (0.5): How can I
  • Low length (1.5):
  • Has code block (-0.5):
  • Ends in question mark (2):
  • Unregistered user (0.5):
  • Single line (0.5):
  • Low reputation (1):
Posted by: unsal

79698795

Date: 2025-07-11 20:22:35
Score: 10.5
Natty: 4.5
Report link

MAN I'm looking for the mirror program

It's about 5 folders in file manager, the other website and then mirrorsearch, mirror, that's 3 folders, I lack 2 more

If anyone can help me out here, I would appreciate it

[email protected]

Reasons:
  • Blacklisted phrase (1): help me
  • Blacklisted phrase (1.5): would appreciate
  • RegEx Blacklisted phrase (3): anyone can help me
  • RegEx Blacklisted phrase (2): help me out
  • RegEx Blacklisted phrase (0.5): anyone can help
  • Low length (0.5):
  • No code block (0.5):
  • Unregistered user (0.5):
  • Low reputation (1):
Posted by: Steven Baldwin

79698794

Date: 2025-07-11 20:21:34
Score: 8.5
Natty: 4
Report link

how did u fix it? i hadnt used vs code for a while and now that i use it, it appears that errors when before it didnt happens

Reasons:
  • RegEx Blacklisted phrase (3): did u fix it
  • RegEx Blacklisted phrase (1.5): fix it?
  • Low length (1):
  • No code block (0.5):
  • Contains question mark (0.5):
  • Single line (0.5):
  • Starts with a question (0.5): how did
  • Low reputation (1):
Posted by: richard gonzalez

79698767

Date: 2025-07-11 19:44:25
Score: 4.5
Natty:
Report link

Same problem, no solution.

I tried wrapping my NextJS layout.tsx in GoogleOAuthProvider, or just the component that uses useGoogleLogin - still getting the same error.

Reasons:
  • RegEx Blacklisted phrase (1): Same problem
  • Low length (1):
  • Has code block (-0.5):
  • Me too answer (2.5): getting the same error
  • Low reputation (0.5):
Posted by: Kirill E.

79698744

Date: 2025-07-11 19:14:12
Score: 6
Natty:
Report link

I tried both, removing the frequency parameter and verifying whether the GPIO pins mentioned in the code are correct, but I am still getting the same error. I am using ADS7924 as an external ADC with Raspberry Pi Pico W.

Reasons:
  • RegEx Blacklisted phrase (1): I am still getting the same error
  • Low length (0.5):
  • No code block (0.5):
  • Me too answer (2.5): getting the same error
  • Single line (0.5):
  • Low reputation (1):
Posted by: Shloka Shah

79698717

Date: 2025-07-11 18:39:03
Score: 4
Natty:
Report link

GCP CloudSQL now has a pre-GA offering for MySQL and PostgreSQL which provides this functionality under the name "Read Pools"

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

79698682

Date: 2025-07-11 17:41:47
Score: 4
Natty:
Report link

I have to use the Components[] array or specify (component) in the methods.

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

79698622

Date: 2025-07-11 16:39:28
Score: 7.5
Natty:
Report link

Did you read all the manual @ https://devdocs.prestashop-project.org/9/basics/installation/environments/docker/

Did you check out Clément Désiles docker-compose-kickstarter ?

Reasons:
  • Probably link only (1):
  • Low length (1.5):
  • No code block (0.5):
  • Ends in question mark (2):
  • Starts with a question (0.5): Did you
  • Looks like a comment (1):
  • Low reputation (1):
Posted by: skipper-henrik

79698599

Date: 2025-07-11 16:16:21
Score: 5
Natty: 7
Report link

hay problemas con el Internet explorer , los mensajes no se muestran, lo probaste con google, ahi si se deben mostrar?

Reasons:
  • Low length (1):
  • No code block (0.5):
  • Ends in question mark (2):
  • Single line (0.5):
  • Low reputation (1):
Posted by: juan orlando cueva moreano

79698512

Date: 2025-07-11 14:57:59
Score: 7
Natty: 4.5
Report link

Has anyone figured this out? Having this particular issue at the moment

Reasons:
  • RegEx Blacklisted phrase (3): Has anyone figured
  • Low length (1.5):
  • No code block (0.5):
  • Contains question mark (0.5):
  • Single line (0.5):
  • Low reputation (1):
Posted by: Absolute Zero

79698493

Date: 2025-07-11 14:39:54
Score: 4
Natty:
Report link

With the latest updates the problem has been solved, now it no longer goes into error.

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

79698375

Date: 2025-07-11 13:05:26
Score: 7
Natty: 7.5
Report link

how can i fork and run it locally?

Reasons:
  • Blacklisted phrase (0.5): how can i
  • Low length (2):
  • No code block (0.5):
  • Ends in question mark (2):
  • Single line (0.5):
  • Starts with a question (0.5): how can i for
  • Low reputation (1):
Posted by: matteohcf

79698339

Date: 2025-07-11 12:42:19
Score: 9.5
Natty: 5.5
Report link

Did you find a solution to this?

Reasons:
  • RegEx Blacklisted phrase (3): Did you find a solution to this
  • Low length (2):
  • No code block (0.5):
  • Ends in question mark (2):
  • Single line (0.5):
  • Starts with a question (0.5): Did you find a solution to this
  • Low reputation (1):
Posted by: Lucas Adbroad