79790899

Date: 2025-10-15 07:44:25
Score: 2.5
Natty:
Report link

In Excel window:

Click File -> Options -> Add-in -> Go

Then:

Right click on the xlam file -> Properties -> check Unblock -> Apply -> Ok

Check the xlam file

Restart file excel

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

79790892

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

Hi,it looks you are testing with creating a new issue from APS Viewer with the cut planes are applied. Could you try with the code below? I believe you are using pushpinExtension. e.value.data is what comes from the event: pushpin.created of pushpinExtension. With this newIssue, use its position and viewState etc when calling POST Issues API.

 const newIssue = _this.pushPinExtension.getLegacyPushPinData
                      ? _this.pushPinExtension.getLegacyPushPinData(e.value)
                      : e.value.data;  

If this is not helpful and your scenario / code is different, please share the details on how you reproduced the problem.

Reasons:
  • RegEx Blacklisted phrase (2.5): please share
  • Long answer (-0.5):
  • Has code block (-0.5):
  • Contains question mark (0.5):
  • High reputation (-1):
Posted by: Xiaodong Liang

79790890

Date: 2025-10-15 07:30:21
Score: 3
Natty:
Report link

I can use iOS 26 device for debugging after changing the flutter stable version to the master version, for complete details you can check here : https://github.com/flutter/flutter/issues/163984

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

79790886

Date: 2025-10-15 07:23:19
Score: 1
Natty:
Report link

I feel the simplest way is to check the value.

bool_value = "false"
convert_to_bool = True if bool_value.lower() == 'true' else False
Reasons:
  • Low length (1):
  • Has code block (-0.5):
  • Low reputation (0.5):
Posted by: Sam

79790881

Date: 2025-10-15 07:16:17
Score: 3.5
Natty:
Report link

你的问题看起来是一个刚接触训练的人会有的困惑。

使用EOS充当PAD会导致模型不会预测EOS本身就是一个错误的观测。首先,PAD token具体是什么没有意义,因为在正确的设置里,他不会被注意力观测(通过MASK屏蔽),不会被学习,PAD位置的标签应当被设置成-100(torch的默认屏壁值),因此即使EOS被充当PAD,也不会影响EOS本身的行为。

让我简单举一个例子,

Hello [EOS] [PAD] 假设有这样一句话,他需要被补齐一个token,而EOS是你选择的PAD,那么这句话看上去会是Hello [EOS] [EOS],第一个EOS是会作为hello的label被正常要求学习的。

Reasons:
  • Low length (0.5):
  • No code block (0.5):
  • No latin characters (1.5):
  • Low reputation (1):
Posted by: How Range

79790880

Date: 2025-10-15 07:15:16
Score: 0.5
Natty:
Report link

Currently, Snowflake does not have a built-in feature that provides a straightforward, Databricks-like event history for Inference Service ingress URLs. The available service logs may contain some relevant information, but extracting access history details (such as user identity and timestamps for ingress URL access) is not directly supported or well-documented.

But instead, there are other General Logging and Auditing in Snowflake as below:

Account Usage Views, Access History, Event Tables

Account Usage Views: Snowflake offers a set of ACCOUNT_USAGE and INFORMATION_SCHEMA views that allow administrators to track query history, login attempts, user activity, and changes to objects. These are useful for monitoring SQL-based interactions and general platform usage.

Access History: The ACCESS_HISTORY view provides information about which users accessed which data, when, and how. This is primarily focused on data access within Snowflake tables and objects, not external service endpoints.

Event Tables: Snowflake supports event tables for capturing certain types of activity, but these are generally focused on data changes and task executions.

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

79790879

Date: 2025-10-15 07:14:16
Score: 0.5
Natty:
Report link

In the latest Keycloak release 26.4.0 the first milestone for the new workflows feature was introduced.

Workflows in Keycloak are aiming to automate administrative tasks as described in this blog post: https://www.keycloak.org/2025/10/workflows-experimental-26-4.

In the near future, with Keycloak 27, workflows will allow bulk edits on users (like setting required actions) and more.

Reasons:
  • Blacklisted phrase (1): this blog
  • Has code block (-0.5):
Posted by: aemaem

79790878

Date: 2025-10-15 07:13:16
Score: 0.5
Natty:
Report link

I have added this to .profile and it worked!

export PATH:$PATH:/Applications/Postgres.app/Contents/Versions/latest/bin

Reasons:
  • Whitelisted phrase (-1): it worked
  • Low length (1):
  • Has code block (-0.5):
  • Low reputation (1):
Posted by: DevKasun

79790877

Date: 2025-10-15 07:12:15
Score: 2.5
Natty:
Report link

Does anyone know if I can nest the schedule inside an object like so:

{
  "$schema": "https://docs.renovatebot.com/renovate-schema.json",
  {
   "description": "Schedule to run daily at night",
   "schedule": ["* 20-23,0-6 * * *"]
  }
  "timezone": "Europe/London",
  ...
}

Because I saw in the documentation they use:

{
  "description": "Schedule daily before 4 AM",
  "schedule": ["* 0-3 * * *"]
}

but it's probably referring to the top level config braces...

Reasons:
  • RegEx Blacklisted phrase (2): Does anyone know
  • Has code block (-0.5):
  • Low reputation (1):
Posted by: Daniel Sergeievich Karamazov

79790874

Date: 2025-10-15 07:11:15
Score: 1
Natty:
Report link

We faced the same problem as we realized that the Upload control for Domino 12.0.2 still would only upload on file.

On OpenNTF there's a project YouAtNotes HTML5 Multi File Upload control that showed us a way to solve our problem. In short: as the Upload control renders as standard HTML <input type="file"> the OpenNTF solution uses a hidden upload control and some JavaScript code to iterate through all files and do a XHR post request for each of these files.

Probably the OpenNTF project can guide you to a solution, too.

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

79790868

Date: 2025-10-15 07:01:12
Score: 1
Natty:
Report link

I had exactly the same problem. Please check here. In short, I think that the core of this problem was with either Jupyter extension for VSCode or version 7.0.0 of ipykernel. Those two have been recently updated. Right now I work on Jupyter extension 2025.9.1 and ipykernel 7.0.1 and haven't noticed any problems.

Reasons:
  • Low length (0.5):
  • Has code block (-0.5):
  • Single line (0.5):
  • Low reputation (0.5):
Posted by: Soren V. Raben

79790867

Date: 2025-10-15 06:59:11
Score: 1.5
Natty:
Report link

replacing

echo $x

with

printf "%q" "$x"

to escape non-printable characters with the POSIX $'' syntax

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

79790864

Date: 2025-10-15 06:56:11
Score: 2
Natty:
Report link

I think its more of performance issue. When we are building a React application we have to keep this thing in mind that the more code gets large there are chances of performance getting poor. I think you should probably check your app performance and optimize it. There are couple of ways you can optimize the app performance. I can refer to this article which you can study: https://www.freecodecamp.org/news/react-performance-optimization-techniques/

Also if you want to take chance deploy the app on another platform like AWS. If it works fine there then GCP has something to do with it.

Reasons:
  • Blacklisted phrase (1): this article
  • Long answer (-0.5):
  • No code block (0.5):
  • Low reputation (1):
Posted by: Ayan Upadhaya

79790863

Date: 2025-10-15 06:54:10
Score: 1.5
Natty:
Report link

To save a trained machine learning model as a zip file, frameworks like ML.NET and TensorFlow Keras offer built-in methods to save models into compressed files containing architecture and learned weights. This approach allows easy later loading or deployment. In Python, models can be serialized using pickle or joblib, then compressed as zip files for transport and reuse. Proper model saving is essential for efficient deployment in machine learning workflows.

An OMS software (Order Management System software) is a crucial digital solution used by businesses in India, including AI order management software in Chandigarh, India, to automate and manage the entire lifecycle of customer orders. It integrates inventory management, order tracking, fulfillment automation, and customer communication to ensure efficient operations and improve order accuracy. OMS software in india streamlines multi-channel sales, provides real-time inventory visibility, and supports performance monitoring, helping businesses meet customer demands effectively without promotional language.

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

79790862

Date: 2025-10-15 06:52:09
Score: 0.5
Natty:
Report link

In the android/gradle.properties file changed newArchEnabled=true to newArchEnabled=false

This works for me

Reasons:
  • Whitelisted phrase (-1): works for me
  • Low length (1):
  • Has code block (-0.5):
  • Low reputation (1):
Posted by: Harsha Pamnani

79790857

Date: 2025-10-15 06:41:07
Score: 2
Natty:
Report link

You probably should take a look at lazy loading your routes. Since your index.js is so big, i guess you are not doing any lazy loading of routes and thus end up with 1 giant bundle. Lazy loading routes is dependent on the router you are using, but for react-router i would take a look at https://reactrouter.com/6.30.1/route/lazy#lazy

Reasons:
  • Low length (0.5):
  • No code block (0.5):
  • Single line (0.5):
  • Low reputation (0.5):
Posted by: Kenneth Van den Berghe

79790855

Date: 2025-10-15 06:36:06
Score: 3.5
Natty:
Report link

maybe you can use a professional Shopify Theme Detector to detect and recognize the active theme.

enter image description here

Reasons:
  • Blacklisted phrase (1): enter image description here
  • Whitelisted phrase (-1.5): you can use
  • Probably link only (1):
  • Low length (1.5):
  • No code block (0.5):
  • Low reputation (1):
Posted by: user5177

79790854

Date: 2025-10-15 06:36:06
Score: 1
Natty:
Report link

Customizing or injecting new notifications from outside Fusion is not straightforward.

Creating completely custom bell notifications typically requires development using Oracle Fusion Application Composer or using Notification Message Framework APIs if available.

OIC can integrate with Fusion apps using REST APIs or SOAP services.

However, there is no direct public API to send custom bell notifications into Fusion’s notification bell system.

You can trigger business processes or workflows inside Fusion via OIC that, as a side effect, generate notifications.

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

79790848

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

The dialog shown in the above image is called a targeted in-meeting notification. It requires the bot to be present in the meeting. The bot captures all participants’ meeting IDs and sends the notification once the organizer triggers it from your app.

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

79790840

Date: 2025-10-15 06:13:01
Score: 2.5
Natty:
Report link

The CAT S62 Pro is not supported by ARCore, so AR features would not work. Using professional AR Development Services, you can implement alternative AR SDKs like Vuforia or OpenXR to make AR work on unsupported devices

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

79790838

Date: 2025-10-15 06:08:59
Score: 4
Natty:
Report link

after uninstalling some latests updates iis working again

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

79790837

Date: 2025-10-15 06:08:59
Score: 5.5
Natty:
Report link

I'm having the same problem with my clients, and I have to uninstall the security update KB5066835 I'm having the same problem with my clients, and I have to uninstall the security update KB5066835 to make it work.

If someone has a better solution, it would be better.

Reasons:
  • Blacklisted phrase (1): I'm having the same problem
  • Low length (0.5):
  • No code block (0.5):
  • Me too answer (2.5): I'm having the same problem
  • Low reputation (1):
Posted by: Tatarry

79790836

Date: 2025-10-15 06:06:58
Score: 3.5
Natty:
Report link

You should build framework in code part of the IDE.It should be located on at the bottom

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

79790834

Date: 2025-10-15 05:58:56
Score: 1.5
Natty:
Report link
fun composer( a: () -> Int, b: () -> Int) -> Int {
    return a() + b()
}



val first: (Int, Int) -> Int = { a, b -> a + b }
val second: (Int, Int) -> Int = { a, b -> a - b }

var x = composer( { first(1,2)}, {second(3,4)})
Reasons:
  • Low length (0.5):
  • Has code block (-0.5):
  • Unregistered user (0.5):
  • Low reputation (1):
Posted by: Guest

79790825

Date: 2025-10-15 05:41:53
Score: 2.5
Natty:
Report link

I have tried to use these commands

  1. Version my python script for each change and push to S3 with new version

    aws s3 cp aws_glue_script_v1.0.3_1.py s3://mytestcicdglue/glue-scripts/aws_glue_script_v1.0.3_1.py

  2. I have skeleton json of glue job downloaded and i keep changing the s3 location to apply changes for the glule job

    aws glue update-job --job-name glue-cicd-test --job-update file://glue_job_updated_sample.json

Issue with this approach : With this implementation i see is once a new file is pushed automatically glue is updating the script that is currently there which is old code. Is there any other solution or approach to update glue job script only while retaining all the other properties of data sources ?

Sample : glue_job_updated_sample.json

{
  "JobMode": "VISUAL",
  "JobRunQueuingEnabled": false,
  "Description": "",
  "Role": "arn:aws:iam::xxxxx:role/Glue-cicd-test-role",
  "ExecutionProperty": {
    "MaxConcurrentRuns": 1
  },
  "Command": {
    "Name": "gluestreaming",
  // Below file name needs to be changed 
    "ScriptLocation": "s3://mytestcicdglue/glue-scripts/aws_glue_script_v1.0.3_1.py",
    "PythonVersion": "3"
  },
  "DefaultArguments": {
    "--enable-metrics": "true",
    "--enable-spark-ui": "true",
    "--extra-py-files": "s3://aws-glue-studio-transforms-xxxxx-prod-ap-southeast-1/misc/openpyxl.zip,s3://aws-glue-studio-transforms-xxxxxx-prod-ap-southeast-1/misc/et_xmlfile.zip",
    "--spark-event-logs-path": "s3://aws-glue-assets-xxxxx-ap-southeast-1/sparkHistoryLogs/",
    "--enable-job-insights": "true",
    "--enable-observability-metrics": "false",
    "--enable-glue-datacatalog": "true",
    "--job-bookmark-option": "job-bookmark-disable",
    "--job-language": "python",
    "--TempDir": "s3://aws-glue-assets-xxxxx-ap-southeast-1/temporary/"
  },
  "MaxRetries": 0,
  "Timeout": 480,
  "WorkerType": "G.1X",
  "NumberOfWorkers": 10,
  "GlueVersion": "5.0",
  "CodeGenConfigurationNodes": {
    "node-1759912958741": {
      "CatalogKafkaSource": {
        "Name": "Apache Kafka",
        "WindowSize": 100,
        "DetectSchema": true,
        "Table": "glue-cicd-test",
        "Database": "testdb",
        "StreamingOptions": {
          "StartingOffsets": "earliest"
        }
      }
    },
    "node-1759909124967": {
      "S3ExcelSource": {
        "Name": "Amazon S3",
        "Paths": [
          "s3://xxxxx/access-list_v1.1.xlsx"
        ],
        "Exclusions": [],
        "Recurse": true,
        "AdditionalOptions": {
          "EnableSamplePath": false,
          "SamplePath": "s3://xxxx/access-list_v1.1.xlsx"
        },
        "OutputSchemas": [
          {
            "Columns": []
          }
        ]
      }
    }
  },
  "ExecutionClass": "STANDARD"
}
Reasons:
  • Blacklisted phrase (1): Is there any
  • Long answer (-1):
  • Has code block (-0.5):
  • Ends in question mark (2):
  • Low reputation (1):
Posted by: aparnagottumukkala

79790824

Date: 2025-10-15 05:41:53
Score: 1.5
Natty:
Report link
Reasons:
  • Has code block (-0.5):
  • Contains question mark (0.5):
  • Unregistered user (0.5):
  • Low reputation (1):
Posted by: Arash

79790822

Date: 2025-10-15 05:29:50
Score: 1
Natty:
Report link
Execution failed for task ':app:kspDebugKotlin'.
> Inconsistent JVM-target compatibility detected for tasks 'compileDebugJavaWithJavac' (1.8) and 'kspDebugKotlin' (11).

* Try:
> Run with --info or --debug option to get more log output.
> Run with --scan to get full insights.
> Get more help at https://help.gradle.org.

* Exception is:
org.gradle.api.tasks.TaskExecutionException: Execution failed for task ':app:kspDebugKotlin'.

there is something you missing in lib versing or hilt module annotation check this for
Error:Execution failed for task ':app:kaptDebugKotlin'
Hilt: https://developer.android.com/training/dependency-injection/hilt-android[Hilt](https://developer.android.com/training/dependency-injection/hilt-android)
kapt to ksp: https://developer.android.com/build/migrate-to-ksp

Reasons:
  • Probably link only (1):
  • Long answer (-0.5):
  • Has code block (-0.5):
  • Low reputation (1):
Posted by: KridaDEV

79790815

Date: 2025-10-15 05:10:45
Score: 1
Natty:
Report link

My code:

import math
import os
import random
import re
import sys


def even_or_odd(n):
    r=n%2
    if r==0:
      return False
    else:
      return True
    
n=int(input(""))
type= even_or_odd(n)
if (type) or (6<=n<=20):
    print("Weird")
else:
    print("Not Weird")

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

79790806

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

And if you want to search for a word that starts with a letter this works:

This will find any columns that have a word starting with the letter m, case insensitive.

Where <column name> REGEXP '\\bm.*\\b'

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

79790798

Date: 2025-10-15 04:27:36
Score: 0.5
Natty:
Report link

When you open talend using big data integration, dont use thte usual "standard" design. but use the big data batch version. then there is component like telasticsearchinput, telasticoutput and telasiticsearchconfiguration. then you can input the connection, and in input n output you can use "use an existing configuration". pardon my english
this is the example component
big data batch design

Reasons:
  • Whitelisted phrase (-1.5): you can use
  • No code block (0.5):
  • Starts with a question (0.5): When you
  • Low reputation (1):
Posted by: Clean Sepokat

79790790

Date: 2025-10-15 04:07:31
Score: 1
Natty:
Report link

No, the Google Analytics Data API v1 does not directly provide a method for retrieving pre-built Path Exploration reports. The API is designed to return tabular data based on dimensions and metrics you specify, not the complex, visual graph-like structure of a Path Exploration report.

There has been a feature request submitted to Google to add this capability, but it is not currently implemented.

Reasons:
  • No code block (0.5):
  • Low reputation (0.5):
Posted by: Chowdhury Tafsir Ahmed Siddiki

79790775

Date: 2025-10-15 03:14:20
Score: 3.5
Natty:
Report link

This issue was fixed in go 1.24
https://tip.golang.org/doc/go1.24#linker
It seems that there has been a change in the behavior of macOS
https://developer.apple.com/documentation/technotes/tn3178-checking-for-and-resolving-build-uuid-problems

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

79790770

Date: 2025-10-15 03:08:19
Score: 5
Natty:
Report link

My app is experiencing the same issue — the watchdog stack trace is almost identical to the one you provided. Are you able to reproduce this situation consistently?

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

79790751

Date: 2025-10-15 02:29:10
Score: 1.5
Natty:
Report link

Now you can. External print operations are added from v25.x onwards. You need to trigger the print functions at once.

Check out the sample app where this is in action - https://angular-pdf-viewer-demo.vercel.app/

PS: I am the author of ng2-pdfjs-viewer

Reasons:
  • Low length (0.5):
  • No code block (0.5):
  • Low reputation (0.5):
Posted by: Aneesh Gopalakrishnan

79790748

Date: 2025-10-15 02:26:09
Score: 2
Natty:
Report link

Try the latest version 25.0.11. Most phone viewing issues are addressed.

PS: I am the author of the library in question here.

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

79790746

Date: 2025-10-15 02:23:08
Score: 1.5
Natty:
Report link

I have upgraded the library to v5.x of PDFjs. This should solve most of the annotation problems. Use v25.0.11 or above to see this in work.

The tagging of me in your question didn't work and I didn't get notified. Sorry for the delayed reply.

PS: I authored the ng2-pdfjs-viewer

Reasons:
  • Low length (0.5):
  • No code block (0.5):
  • Low reputation (0.5):
Posted by: Aneesh Gopalakrishnan

79790743

Date: 2025-10-15 02:19:08
Score: 0.5
Natty:
Report link

Try this with the latest version of ng2-pdfjs-viewer (As of this writing, v 25.0.11), and this issue should be fixed as the underlying viewer is upgraded to 5.x

PS: I am the author of ng2-pdfjs-viewer

Reasons:
  • Whitelisted phrase (-1): Try this
  • Low length (0.5):
  • No code block (0.5):
  • Low reputation (0.5):
Posted by: Aneesh Gopalakrishnan

79790741

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

Sure! Here's your updated version of the website code with a real working Google Form link placeholder added. Just replace it with your actual form link when you're ready.


✅ Example (With Form Link Inserted)

<a href="https://forms.gle/your-google-form-id" target="_blank" class="button">Register Now</a>

Now here’s the full updated HTML website code with that link included:

<!DOCTYPE html>
<html lang="en">
<head>
  <meta charset="UTF-8" />
  <meta name="viewport" content="width=device-width, initial-scale=1.0" />
  <title>Pritesh Band Wale - Workshop</title>
  <style>
    body {
      font-family: 'Segoe UI', sans-serif;
      margin: 0;
      padding: 0;
      background: #fdfdfd;
      color: #333;
    }
    header {
      background: #b30000;
      color: #fff;
      padding: 2rem;
      text-align: center;
    }
    header h1 {
      margin: 0;
      font-size: 2.5rem;
    }
    section {
      padding: 2rem;
      max-width: 800px;
      margin: auto;
    }
    .highlight {
      background: #ffe6e6;
      border-left: 5px solid #b30000;
      padding: 1rem;
      margin: 1rem 0;
    }
    .button {
      display: inline-block;
      background: #b30000;
      color: #fff;
      padding: 0.8rem 1.5rem;
      text-decoration: none;
      border-radius: 5px;
      margin-top: 1rem;
    }
    footer {
      text-align: center;
      background: #f0f0f0;
      padding: 1rem;
      margin-top: 3rem;
    }
  </style>
</head>
<body>

  <header>
    <h1>Pritesh Band Wale</h1>
    <p>🎺 Workshop & Band Promotion Event</p>
  </header>

  <section>
    <h2>📅 Workshop Opening</h2>
    <div class="highlight">
      <strong>Date:</strong> 20 October<br>
      <strong>Location:</strong> Chopda Shahar Mai
    </div>

    <h2>🎯 Workshop Topic</h2>
    <p>This workshop is focused on <strong>band promotions</strong> and aims to educate participants about <strong>band facilities and study</strong>. Whether you're part of a band or looking to understand the industry better, this is the place to be.</p>

    <h2>👥 Who Should Attend?</h2>
    <ul>
      <li>Band Facility Providers</li>
      <li>Students interested in band services</li>
      <li>Event organizers</li>
    </ul>

    <h2>📝 Registration</h2>
    <p>Seats are limited! Register now using the Google Form below:</p>
    <a href="https://forms.gle/your-google-form-id" target="_blank" class="button">Register Now</a>
    <!-- Replace the link above with your actual Google Form URL -->

  </section>

  <footer>
    © 2025 Pritesh Band Wale | All Rights Reserved
  </footer>

</body>
</html>

🚀 To Finish Your Site:

  1. Go to Google Forms.

  2. Create your workshop registration form.

  3. Click Send → Link icon → Copy the shortened URL.

  4. Replace https://forms.gle/your-google-form-id in the code with your actual form link.


Would you like me to help:

Let me know!

Reasons:
  • Long answer (-1):
  • Has code block (-0.5):
  • Ends in question mark (2):
  • Low reputation (1):
Posted by: Manas Patil

79790738

Date: 2025-10-15 02:04:04
Score: 0.5
Natty:
Report link

I would like to share with you an amazing component library called React Aria.

React Aria is not a UI library, it's an unstyled component library by Adobe. It's accessibility-first, internationalized, functionality-included, interactive library of utility components.

One component that React Aria includes is the Autocomplete component. It includes a keyboard-controllable dropdown and a text input. It's currently in rc (Release Candidate), so if you're not looking to be ready for production too soon, it should be suitable for your needs. Do check it out!

If you'd like to implement the functionality you requested in your question yourself, you can see my other answer.

Reasons:
  • Blacklisted phrase (0.5): check it out
  • Long answer (-0.5):
  • Has code block (-0.5):
  • Low reputation (1):
Posted by: MaxCodes

79790737

Date: 2025-10-15 01:59:03
Score: 1
Natty:
Report link

You should be able to use split() with ';' as the delimiter:

{
  ...
  "encoding": {
    "x": {
      ...
      "axis": {
        ...
        "labelExpr": "split(datum.label, ';')"
      }
    }
  },
  ...
}

I don't have your data, but I did a quick mockup with just the categories on the x channel, which hopefully satisfies your requirements:

simple column chart with x-axis labels, split by delimiter

Reasons:
  • Probably link only (1):
  • Has code block (-0.5):
  • Low reputation (0.5):
Posted by: Daniel Marsh-Patrick

79790733

Date: 2025-10-15 01:44:00
Score: 1.5
Natty:
Report link

https://gcc.gnu.org/onlinedocs/gcc-3.0.4/gcc/Cross-Headers.html

seems to indicate that getting the fixincludes, exactly so, is important: I think maybe sys-include gets marked 'COPIED' and so not fix'd? I am not noticing that without --with-sysroot in the options I get the wrong headers (the host/build headers) fixd in.

Reasons:
  • Low length (0.5):
  • No code block (0.5):
  • Contains question mark (0.5):
Posted by: Dru

79790726

Date: 2025-10-15 01:28:56
Score: 1.5
Natty:
Report link

Use toolbarForegroundStyle to set up the color for a navigation bar:

content
    .navigationTitle(title)
    .toolbarForegroundStyle(.blue, for: .navigationBar)
Reasons:
  • Low length (1):
  • Has code block (-0.5):
  • Self-answer (0.5):
  • Low reputation (0.5):
Posted by: aaajiulong

79790724

Date: 2025-10-15 01:22:55
Score: 0.5
Natty:
Report link

PostgreSQL support jsonb_each_text function.
sample code like this.
Please do some search whether the below code will be supported on MySQL/MariaDB

select
    key, value
from
    jsonb_each_text(
        to_jsonb(
            (select t from your_table as t where t.table_pk = 'PK_!!!!')
        )
    )
;
Reasons:
  • Low length (0.5):
  • Has code block (-0.5):
  • Low reputation (0.5):
Posted by: PM11

79790722

Date: 2025-10-15 01:15:54
Score: 3
Natty:
Report link

This is just terrible programming from Navicat. Odds you are under attack? .00000000000001%

Odds your host updated something? Literally guaranteed. So yeah, break. No option to just update the key like every other program (putty, WinScp). The default they picked is to break.

Reasons:
  • Low length (0.5):
  • No code block (0.5):
  • Contains question mark (0.5):
  • Filler text (0.5): 0000000000000
  • Low reputation (1):
Posted by: Trent Tompkins

79790708

Date: 2025-10-15 00:49:48
Score: 6.5 🚩
Natty: 4
Report link

They sold his shit or stole it from him he sees someone else which is my mom slim draught i telling you they stole his laptop I've been rape by dog at the trailer park skyway and they killed tammy in front of me I've been raped none stop and pregnant in library in Renton they killed her at the trailer park cut her up in front me. Raily is asshole to me rude has fuck. I'm done I can't get my EBT or SSI back. I CANT MAKE EEMAIL SOMEONE HACKS IN MY STUFF. CHECK ELLENBRUG FOOR TAMMY THAT WHERE SHE WAS LIVING AND CHECK 2223 177TH ST SE BOTHELL WA 98012 CHECK LORN TOO HIS GRANDPA INVOVLE MILISING ME WIHT A DOG AND SHOT GUN. I NEED KNOW HHOW MANY MISSING IN COURT EVERY COUNTY AND MISSING ON EVERY STREET REPORT MISSING SO I KNOW BECASUE THERE ARE FEW PLACES KILLING SWAT TEAM. i WANT THEM DEAD OR CUFF AND I WANT MY KLOAD THEY STOLE FROM ME THE FAKE DJ MOM IS UP THERE TOO EVERYONE YOU WANT IS THERE

Reasons:
  • Blacklisted phrase (0.5): I NEED
  • Blacklisted phrase (2): fuck
  • RegEx Blacklisted phrase (1): i WANT
  • RegEx Blacklisted phrase (1): I WANT
  • Long answer (-0.5):
  • No code block (0.5):
  • Unregistered user (0.5):
  • Single line (0.5):
  • Low reputation (1):
Posted by: NIKKI Neon

79790694

Date: 2025-10-15 00:01:39
Score: 2
Natty:
Report link

This was very helpful to me. Thank you.

My use case is converting ASCII-encoded text that is representing Myanmar letters. The Unicode output is fine, but without the complex script handling, the font name and font size could not be set.

The function fix_cs_formatting_runs has resolved my big problems. Thank you so much.

Reasons:
  • Blacklisted phrase (0.5): Thank you
  • No code block (0.5):
  • Low reputation (1):
Posted by: Sven Oly

79790676

Date: 2025-10-14 22:50:23
Score: 3
Natty:
Report link

My sincere gratitude to BTC Web Recovery for his professionalism, truly, he is a real deal. I would not waste my time with any other hacker and wished I had known them sooner. I am writing this review to be of help to everyone out there, who in one or two ways has been scammed by online investment platforms. After going through a lot to recover my bitcoin although many people told me it’s impossible. If you’ve lost your bitcoin as a result of investing in binary options, trading platforms, your account was hacked or other bitcoin related scams or lost money to scammers online in whichever ways then You’re not alone. (I lost over $97,950 to skyrockettrade). Being a scam victim myself, I tried several means to recover my funds all to no avail, until one day I came upon an article in the Local News about Btc Hackers Recovery, they literally saved my life, all i lost to these fake investors skyrockettrade was recouped in just a few days (a total of 3.7721 BTC) was recovered, Kindly send a message to the contact below if you’ve been in such situations and you are seeking recovery. contact them via:

Email: [email protected]

Telegram: @Btchackercyberservices

Reasons:
  • Contains signature (1):
  • Long answer (-1):
  • No code block (0.5):
  • Unregistered user (0.5):
  • User mentioned (1): @Btchackercyberservices
  • Low reputation (1):
Posted by: BTC HACKER

79790672

Date: 2025-10-14 22:42:20
Score: 10 🚩
Natty: 5.5
Report link

did you find any solution for this?
As far as I know we have to build the entire thing on our own using the data we get form webhook

Reasons:
  • Blacklisted phrase (1.5): any solution
  • RegEx Blacklisted phrase (3): did you find any solution
  • RegEx Blacklisted phrase (2): any solution for this?
  • Low length (1):
  • No code block (0.5):
  • Contains question mark (0.5):
  • Starts with a question (0.5): did you find any solution for this
  • Low reputation (1):
Posted by: Kanishk

79790669

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

There is a way using the azure portal.

Go to the API Management service.

In the side nav under the APIs dropdown. Click on the backends menu item. Create a new backend to match your api that you want to turn off SSL cert validation for. Before creating the new backend, there is an advanced dropdown. Click it and uncheck the checkbox labelled as "Validate certificate chain".

I could not find this in documentation anywhere or on other answers. So I am adding it here. It may change in the future.

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

79790662

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

@BatchSize is a Hibernate-specific annotation that optimizes the N+1 query problem by fetching lazy-loaded associations in batches rather than one at a time, then you can optimize as:

@OneToMany(mappedBy = "courses", fetch = FetchType.LAZY)
@BatchSize(size = 25) 
private Set<CourseModules> courseModules = new HashSet<>();
Reasons:
  • Has code block (-0.5):
  • Starts with a question (0.5): is a
  • Low reputation (1):
Posted by: Alvaro Montesinos

79790659

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

I had the exact same problem as you so I made a simple command-line tool to relabel footnotes in Markdown files in numerical order. The link to the repo: github.com/dhanushka2001/citeorder

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

79790652

Date: 2025-10-14 22:03:10
Score: 15 🚩
Natty: 5.5
Report link

@Teshan N. how did you fix this error?, I also have the same error

Reasons:
  • Blacklisted phrase (1): how did you fix
  • RegEx Blacklisted phrase (3): did you fix this
  • RegEx Blacklisted phrase (1.5): fix this error?
  • RegEx Blacklisted phrase (1): I also have the same error
  • Low length (1.5):
  • No code block (0.5):
  • Me too answer (2.5): I also have the same error
  • Contains question mark (0.5):
  • User mentioned (1): @Teshan
  • Single line (0.5):
  • Looks like a comment (1):
  • Low reputation (1):
Posted by: Stiven Munera Quintero

79790650

Date: 2025-10-14 21:59:09
Score: 2.5
Natty:
Report link

in the returned url, there is a field called `&tempauth=v1.ey123.restData`, if you base64 decode the "ey123" part, you can find the expiry. it is 1 hour.

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

79790646

Date: 2025-10-14 21:47:06
Score: 0.5
Natty:
Report link

Is there any way for my app to record audio during calls as well — or at least to prevent my microphone from being muted during calls?

Quoting the documentation, on Android 10 and higher:

Two ordinary apps can never capture audio at the same time.

At best, if you take over the foreground, your app can get microphone input, but then the other app (e.g., Discord) will not. That may not even work if the other app is "privacy-sensitive", and I expect that most of the apps that you cite qualify for that.

Reasons:
  • Blacklisted phrase (1): Is there any
  • No code block (0.5):
  • Contains question mark (0.5):
  • Starts with a question (0.5): Is there any
  • High reputation (-2):
Posted by: CommonsWare

79790634

Date: 2025-10-14 21:14:59
Score: 1.5
Natty:
Report link

pygame.quit is inside your loop. This means that after one iteration of your main run-loop

After pygame.quit, pygame will no longer be ready for any calls.

You would get similar errors if you forgot to call pygame.init().

Reasons:
  • Low length (0.5):
  • Has code block (-0.5):
  • Me too answer (2.5): get similar error
  • High reputation (-1):
Posted by: julaine

79790633

Date: 2025-10-14 21:11:58
Score: 8
Natty: 7
Report link

nice script. Do get an error message, because my adapter has spaces in the name. how can I fix this?

Reasons:
  • Blacklisted phrase (0.5): how can I
  • Blacklisted phrase (1): how can I fix this
  • RegEx Blacklisted phrase (1.5): how can I fix this?
  • Low length (1):
  • No code block (0.5):
  • Ends in question mark (2):
  • Single line (0.5):
  • Low reputation (1):
Posted by: Bert Gerstemann

79790632

Date: 2025-10-14 21:10:57
Score: 1.5
Natty:
Report link

I encountered a similar error. Not sure if this will solve your problem, but this is the fix for mine.

In Glue you have to attach connections in the "Job Detail". By default Glue will use the subnet of the first connection in that list. If you have multiple connections with different subnets, you may get an error if you try to load data using a connection that doesn't share the subnet with the first connection (in the list of connections).

I re-ordered my connections in the "Job Detail" and it fixes the issue.

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

79790630

Date: 2025-10-14 21:09:56
Score: 8 🚩
Natty: 5.5
Report link

Did you manage to fix it ? I've just finished updating my react native due to some new playstore compliance issues and was testing the pipes and release the ios geolocation isn't working on the release build but works fine locally on debug. Maybe it could be the same issue or something similar

Reasons:
  • RegEx Blacklisted phrase (3): Did you manage to fix it
  • RegEx Blacklisted phrase (1.5): fix it ?
  • Low length (0.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: Fillipe Augusto

79790629

Date: 2025-10-14 21:07:56
Score: 1
Natty:
Report link

Let me start with the Dataflow question first. It appears that the pipeline is using a custom source/sink. Only supported source and sinks are supporting lineage out of box: https://cloud.google.com/dataflow/docs/guides/lineage#limitations . Emitting lineage from the custom source is possible, but would require code changes to the source/sink. Relevant API documentation: https://beam.apache.org/releases/javadoc/current/org/apache/beam/sdk/metrics/Lineage.html.

Per Dataplex documentation, https://cloud.google.com/dataplex/docs/about-data-lineage#lineage_sources lineage is also supported automatically from integrated Google Cloud services and manually, by using the Data Lineage API for custom sources.

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

79790617

Date: 2025-10-14 20:50:51
Score: 1
Natty:
Report link

I would recommend to use MMX Code-Explorer and use this feature from there, because of 2 reasons:

  1. Prototyping does Not Work properly if any newer language Features in use, Like inline variables.
  2. Since Delphi 13 will Miss refactoring in General and the official "solution" is to use MMX Code Explorer.

The shortcode is alt + ctrl + y

Reasons:
  • No code block (0.5):
  • Low reputation (0.5):
Posted by: fisi-pjm

79790610

Date: 2025-10-14 20:43:49
Score: 2.5
Natty:
Report link

Thanks to @jaco0646:

Note that @DataJpaTest is itself annotated with @Transactional causing the whole test to run in a single transaction. Try using @SpringBootTest to see if that makes a difference.

– jaco0646

Infact with @SpringBootTest it works, basically the @DataJpaTest are itself @Transactional, so it performes rollback only at the end of the test, not at the end of the method orderService.insertNewOrder.

Reasons:
  • Blacklisted phrase (0.5): Thanks
  • Has code block (-0.5):
  • User mentioned (1): @jaco0646
  • User mentioned (0): @SpringBootTest
  • User mentioned (0): @DataJpaTest
  • User mentioned (0): @Transactional
  • Self-answer (0.5):
  • Low reputation (1):
Posted by: VezzoLayer

79790600

Date: 2025-10-14 20:30:46
Score: 2.5
Natty:
Report link

It appears your VS Code is using a different interpreter than the one you installed into. Double check the terminal and make sure to choose the interpreter associated with your current project instead of an old one from a different project.

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

79790599

Date: 2025-10-14 20:30:46
Score: 0.5
Natty:
Report link

This css works. For example, for header level 2.
Likewise for other levels.

The a.twosharps is needed only if some of your h2 entries in the body is an anchor <a ...
(I needed that; probably nobody else does).
In that case in the h2 entry use <a class=twosharps ...

h2{   /* elements (tags)*/
  font-size: 20pt;
  color: darkgreen;
  font-style: italic;
}
ul[data-tag="2"] {
  color:darkgreen!important;
}
a.twosharps{
  color:darkgreen!important;

}
Reasons:
  • Blacklisted phrase (0.5): I need
  • Has code block (-0.5):
  • Low reputation (0.5):
Posted by: Roger

79790584

Date: 2025-10-14 20:15:42
Score: 1.5
Natty:
Report link

I'm thinking that you should train a new model. Human and yeast genomes are incredibly, incredibly different. Did you take into account things like genome size, gene density, codon usage, and repetitive sequences? So weights trained on human data are likely biased and could hurt performance on yeast.

Using the old weights for transfer learning is maybe possible if your dataset is tiny and the model learns very generic sequence patterns, but it often has negative transfer. Since yeast datasets are smaller and simpler, training from scratch is probably faster and better.

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

79790575

Date: 2025-10-14 20:02:38
Score: 1
Natty:
Report link

update to answer `November 2024, Python3`: for multi-level pathnames there should be a small fixup at line #61:

- print(mypath + '/' + ''.join(map(str, filenamepath)))
+ print(mypath + '/' + '/'.join(map(str, filenamepath)))
Reasons:
  • Low length (0.5):
  • Has code block (-0.5):
  • Low reputation (1):
Posted by: Олег

79790564

Date: 2025-10-14 19:48:34
Score: 2.5
Natty:
Report link

Here's an update for anyone else searching for this. To change your account, go to the Extensions Menu, right-click on the GitHub Copilot extension, and select 'Account Preferences'. A menu will open, allowing you to select your preferred account.

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

79790562

Date: 2025-10-14 19:44:33
Score: 1
Natty:
Report link

You cannot hide individual Spring Data repository methods, all interface methods are public by design. Spring Data creates a proxy that implements your repository interface. The methods it implements must be part of that public contract. A method in an interface is effectively public for consumers (and Spring Data won’t create a query for a private interface method anyway). So annotating a private method with @Query won’t be picked up.

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

79790558

Date: 2025-10-14 19:42:32
Score: 3
Natty:
Report link

Sorry for not getting back earlier. Anyway, didn't work on the first go, but definitely helped me to look into the right direction. I get the non-breaking space in the wrong spot, but I suspect I can figure that out.

Thanks a lot again.

Reasons:
  • Blacklisted phrase (0.5): Thanks
  • Low length (0.5):
  • No code block (0.5):
  • Self-answer (0.5):
  • Low reputation (1):
Posted by: Martin Merkel

79790543

Date: 2025-10-14 19:28:29
Score: 1
Natty:
Report link

It looks like an issue with your certificates. Try updating them:

brew update && brew upgrade openssl
brew install ca-certificates

restart rails console

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

79790527

Date: 2025-10-14 19:06:21
Score: 9 🚩
Natty: 5.5
Report link

Did you ever get this to work and if so, how?

Reasons:
  • RegEx Blacklisted phrase (3): Did you ever get this to
  • Low length (1.5):
  • No code block (0.5):
  • Ends in question mark (2):
  • Single line (0.5):
  • Starts with a question (0.5): Did you
  • Low reputation (1):
Posted by: Cameron Tebbenham

79790513

Date: 2025-10-14 18:47:17
Score: 1
Natty:
Report link

Maybe you could save the original entry in request.session (maybe as JSON data) at the end of the first view, and then only create a real model instance from it if the user rejects the duplicates.

In either case, at the end of the second view you would delete the data from the session.

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

79790507

Date: 2025-10-14 18:38:14
Score: 4
Natty:
Report link

Check your zod version -- I was hitting the same error, but resolved it after downgrading to zod@3. https://www.npmjs.com/package/@openai/agents#installation

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

79790492

Date: 2025-10-14 18:20:10
Score: 2
Natty:
Report link

you have to apply the gator feature in your IDE before installing the gt500x power tool for web api enhancement capabilities, i think the last book that albert einstein wrote has the exact code formation that you might be looking for. such an old trick in the bag your attempting make me wonder if there will ever be a better software developer that Albert Einstien

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

79790488

Date: 2025-10-14 18:15:09
Score: 0.5
Natty:
Report link

FIXED!!! - --WORKING!!- Changing it from while(true) to limit the number of times the loop is executed, AND restoring the headers in the php file made it work! Thanks everyone for the help!! It is sending a continual stream!

This comment also has useful information:

@AustinJones It should be noted that PHP settings usually have a cap on how long the current request is active. You can use ini_set to modify max_execution_time or probably more easier: set_time_limit. Limiting the while loop likely made it so that your request ended before the max execution time was reached. Hope this helps.

– William Merfalen

Reasons:
  • Blacklisted phrase (0.5): Thanks
  • Whitelisted phrase (-1): Hope this helps
  • Whitelisted phrase (-1.5): You can use
  • Long answer (-0.5):
  • No code block (0.5):
  • User mentioned (1): @AustinJones
  • Self-answer (0.5):
  • Low reputation (1):
Posted by: Austin Jones

79790483

Date: 2025-10-14 18:09:07
Score: 4
Natty:
Report link

I have a similar problem with https://banno.com/a/oidc-provider/api/v0/auth, which is returning the response below. My client id is 05815133-6c9e-4fa0-9e53-d56b753d1800. I'm using the Node sample application for this test.

{"error":"invalid_client","error_description":"client is invalid","state":"f2pg3di9cdh9h3luvopcf","iss":"https://banno.com/a/oidc-provider/api/v0","request_id":"8f4b1950351fc5eca23a55d5b0548314"}
Reasons:
  • Blacklisted phrase (1): I have a similar problem
  • Has code block (-0.5):
  • Me too answer (2.5): I have a similar problem
  • Low reputation (1):
Posted by: Mark Challen

79790481

Date: 2025-10-14 18:07:06
Score: 1.5
Natty:
Report link

After some fiddling I figured out that if I abstracted the middlewear code into it's own swift package library I could get it to compile outside Xcode and them import the library into Xcode. It's possible there was some sort of namespace collision, but even explicitly specifying the module for each type didn't solve it so I'm still not sure what was going on. Any insights would be appreciated for future learning.

Reasons:
  • Blacklisted phrase (1): appreciated
  • Whitelisted phrase (-2): I figured out
  • No code block (0.5):
  • Self-answer (0.5):
  • Single line (0.5):
  • Low reputation (1):
Posted by: Andrew Paterson

79790479

Date: 2025-10-14 18:06:06
Score: 1
Natty:
Report link

i think your client is not generated yet try to generate it two three times same happened with me i did and it worked for me

Reasons:
  • Whitelisted phrase (-1): it worked
  • Whitelisted phrase (-1): worked for me
  • Low length (1):
  • No code block (0.5):
  • Single line (0.5):
  • Low reputation (1):
Posted by: yashwardhan pathak

79790478

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

I was able to use your code to generate my own token with a trial account. The only thing I can see is you might need to double check your keys and secrets. Double check the following:

ACCOUNT_SID = your account

SID API_KEY = api key

SID API_SECRET = secret from the API Key you created

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

79790477

Date: 2025-10-14 18:06:06
Score: 1
Natty:
Report link

To solve the issue, I replaced DataCollatorWithPadding with DataCollatorForLanguageModeling.

data_collator = DataCollatorForLanguageModeling(tokenizer=tokenizer,mlm=False)

DataCollatorForLanguageModeling automatically creates the labels column, so you don’t need to generate it manually in your code. This change fixed the problem.

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

79790467

Date: 2025-10-14 17:50:02
Score: 1.5
Natty:
Report link

I successfully managed to resolve the issue. Here's a step-by-step guide:

  1. Click on the "Generate Token" button.

  2. Instead of clicking on the "Reconnect" button, click on the link "Edit previous settings".

  3. Select one of the two options then hit the "Continue" button.

  4. Repeat again if it doesn't work on the first attempt.

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

79790453

Date: 2025-10-14 17:32:57
Score: 0.5
Natty:
Report link

For me the suggestion shared were not working for me.

Net 9.0 SDK 9.0.305

So this worked for me.

I define the Behavior on the DatePicker using the current context of the page:

<DatePicker Date="{Binding Path=FieldDate, Mode=TwoWay}">
    <DatePicker.Behaviors>
        <toolkit:EventToCommandBehavior BindingContext="{Binding Path=BindingContext, Source={x:Reference Page}, x:DataType=ContentPage}"
                                        EventName="DateSelected" Command="{Binding DatePickedCommand}"/>
    </DatePicker.Behaviors>
</DatePicker>

Then on my view model:

    [ObservableProperty] private DateTime fieldDate;    
    [RelayCommand]
    private void DatePicked()
    {
        if (FieldDate > DateTime.Now)
            //Todo
    }

Don't forget the give a name of your content page for the Reference to work: x:Name="Page"

References:

https://learn.microsoft.com/en-us/dotnet/communitytoolkit/maui/behaviors/event-to-command-behavior#using-the-eventtocommandbehavior

Reasons:
  • Whitelisted phrase (-1): this worked for me
  • Whitelisted phrase (-1): worked for me
  • RegEx Blacklisted phrase (3): not working for me
  • Long answer (-0.5):
  • Has code block (-0.5):
  • Low reputation (0.5):
Posted by: Rodas PT

79790450

Date: 2025-10-14 17:27:56
Score: 1
Natty:
Report link

You can get page content using the Notion API, but it returns content as block objects, not as plain text or markdown. You'll need to:

  1. Call the Retrieve block children endpoint
  2. Manually parse each block type and convert it to your desired format.

Alternative: If you need markdown output instead of parsing blocks manually, I built an API service that handles the conversion automatically: Mark2Notion. It extracts Notion pages as clean markdown with proper formatting, tables, lists, etc.

Docs: https://docs.mark2notion.com/api-reference/notion-to-markdown

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

79790439

Date: 2025-10-14 17:13:52
Score: 2
Natty:
Report link

I found the solution, I bought a new module.

Reasons:
  • Whitelisted phrase (-2): I found the solution
  • Low length (1.5):
  • No code block (0.5):
  • Self-answer (0.5):
  • Single line (0.5):
  • Low reputation (1):
Posted by: Moritz Ende

79790426

Date: 2025-10-14 16:59:48
Score: 4
Natty: 4
Report link

idk man, try asking chatgpt or copilot tbh, coding kinda hard

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

79790416

Date: 2025-10-14 16:47:45
Score: 0.5
Natty:
Report link

For Map and WeakMap, the TC39 proposal was named getOrInsert and getOrInsertComputed.

This only supported by Firefox 144 for now.

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

79790412

Date: 2025-10-14 16:46:45
Score: 1
Natty:
Report link

You have a couple issues with this:

  1. Your outer do while loop requires a zero balance to exit. If they choose 'n' to exit, then you need to also zero the balance so the outer loop condition is met.
  2. You are adding a negative amount, which will add that to the balance rather than subtracting it. If you are entering negative numbers as an issuance, then it would be cleaner to simply state bal += amt, and then put the outputs in their own if statement.
Reasons:
  • No code block (0.5):
  • Low reputation (0.5):
Posted by: JohnP

79790407

Date: 2025-10-14 16:41:44
Score: 0.5
Natty:
Report link

it meant that $ isn’t available inside your apiCalls.js file. Just import the jQuery at the top of your apiCalls.js file:

import $ from 'jquery';

function getBlogInfo() {
...
Reasons:
  • Low length (1):
  • Has code block (-0.5):
Posted by: user9371102

79790406

Date: 2025-10-14 16:38:42
Score: 5.5
Natty: 4.5
Report link

I am doing the exact same thing on a WatchOS application. Same results, works in simulator but not on watch. I get the same error message.

Hoping this reply might get this topic going again

Reasons:
  • RegEx Blacklisted phrase (1): I get the same error
  • Low length (0.5):
  • No code block (0.5):
  • Me too answer (2.5): I get the same error
  • Low reputation (1):
Posted by: Mark R ausgator

79790402

Date: 2025-10-14 16:31:41
Score: 1
Natty:
Report link

Best method today, used by listed++ etc, is

https://arxiv.org/abs/1805.10941

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

79790394

Date: 2025-10-14 16:23:39
Score: 0.5
Natty:
Report link

Newage approach, nothing fancy, 792 bytes uncompressed ... i think youd like it if you understand functional programming

https://github.com/kapenike/JSUI

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

79790392

Date: 2025-10-14 16:22:38
Score: 0.5
Natty:
Report link

tilt ci is used to test your Tiltfile: https://docs.tilt.dev/cli/tilt_ci.html

You could run your make service in Tilt or run tilt up & to run Tilt in the background to run it as a dependent service. If it's only postgres I would recommend just running docker compose up -d instead of setting up Tilt.

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

79790391

Date: 2025-10-14 16:21:38
Score: 0.5
Natty:
Report link

I think I've come to understand what has been happening. My pyproject.toml names the project "example". Since my source directory has a folder named "example" with an __init__.py in it, scikit-build has been copying that directory, possibly from install(TARGETS example LIBRARY DESTINATION example)

My fix was to remove the CMakeLists.txt from the "example" directory, and remove add_subdirectory(src/example) from my top-level CMake file.

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

79790382

Date: 2025-10-14 16:13:36
Score: 1
Natty:
Report link

I had the same issue and returning CreatedAtAction(nameof(GetById), new { id = breed.Id }, newBreed) instead of CreatedAtRoute() worked for me!

Reasons:
  • Whitelisted phrase (-1): I had the same
  • Whitelisted phrase (-1): worked for me
  • Low length (1):
  • No code block (0.5):
  • Single line (0.5):
  • Low reputation (1):
Posted by: Mrunal

79790379

Date: 2025-10-14 16:08:35
Score: 1.5
Natty:
Report link

I found out that Blazorise is bringing in its own compiled Tailwind.
This means that Blazorise is owning the Tailwind itself. Which takes the control away from the user.

This is a very strange idea!

This means Blazorise is not really compatible with a Blazor/Tailwind solution. And therefore I am abandoning it.

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

79790375

Date: 2025-10-14 16:01:33
Score: 1.5
Natty:
Report link

So I ended up making a new object for each. This way we don't run into reference issues.

So we have a new object called CustomerDeletionCountAdjustment that maps with the new value batchsize.

Reasons:
  • Low length (0.5):
  • No code block (0.5):
  • Self-answer (0.5):
Posted by: James Andrew Smith

79790374

Date: 2025-10-14 16:00:33
Score: 1.5
Natty:
Report link

Please take a look at PacketSmith available at packetsmith.ca, a comprehensive CLI utility for editing, transforming, and analyzing PCAP network traffic.

It does what you asked for, and much more.

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

79790363

Date: 2025-10-14 15:50:30
Score: 0.5
Natty:
Report link

Use @EntityGraph for Fetch Joins

Spring Data JPA supports @EntityGraph to fetch associations in a single query:

@EntityGraph(attributePaths = {"courseModules"})
List<CourseEntity> findAll();

This tells Spring Data to generate a JOIN FETCH under the hood.

Use JPQL with JOIN FETCH

If you're writing custom queries, use JOIN FETCH to eagerly load associations:

@Query("SELECT c FROM CourseEntity c JOIN FETCH c.courseModules")
List<CourseEntity> findAllWithModules();

This avoids the N+1 problem by fetching all data in one query.

Avoid fetch = FetchType.EAGER

Using EAGER by default can lead to unexpected behavior and performance issues. Prefer LAZY and control fetching explicitly via queries or entity graphs.

Use @BatchSize (Hibernate-specific)

If you must use lazy loading, you can reduce the number of queries using batching:

@OneToMany(mappedBy = "courses", fetch = FetchType.LAZY)
@BatchSize(size = 10)
private Set<CourseModules> courseModules;

This tells Hibernate to fetch related entities in batches instead of one-by-one.

Reasons:
  • Long answer (-1):
  • Has code block (-0.5):
  • User mentioned (1): @EntityGraph
  • User mentioned (0): @BatchSize
  • Low reputation (1):
Posted by: Sathya Priya Mounasamy

79790353

Date: 2025-10-14 15:44:28
Score: 3.5
Natty:
Report link

I had to switch back to ios 5.....idk but that was the fix for me.....

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

79790340

Date: 2025-10-14 15:27:24
Score: 3.5
Natty:
Report link

This is quite an old Q now, but I will give my take.
I'm not sure I can provide a full answer, but will write down my understanding based on having a similar issue.

You cannot post messages to clients during the "install" event due to the fact that an event listener for messages on your serviceWorker will only pick up messages from your active controller.

During install, the previous serviceWorker is still in control.

I am using broadcast channels to get around this. i.e.

Notify to a specific broadcast channel in the new serviceworker on install.
Subscribe to the same broadcast channel in your .js and use that for your onmessage event listener.

I would be interested to hear if there are other "better" solutions.

Reasons:
  • Long answer (-0.5):
  • No code block (0.5):
  • Me too answer (2.5): having a similar issue
  • Low reputation (1):
Posted by: TheBoshington

79790333

Date: 2025-10-14 15:20:22
Score: 0.5
Natty:
Report link

On my Fairphone 5 with Android 15:

Order Why How
Enable the display adb shell input keyevent 82
Enter the passcode screen adb shell input keyevent 66
Enter the passcode adb shell input text $passcode
Accept entered passcode adb shell input keyevent 66
Reasons:
  • Low length (0.5):
  • Has code block (-0.5):
  • Low reputation (0.5):
Posted by: RokeJulianLockhart