79791048

Date: 2025-10-15 10:30:10
Score: 3.5
Natty:
Report link

You are not allowed to proxy the method with annotation @PostConstruct, that is the reason why the aspect will not be executed. You can remove the code from @PostContruct and use it in a separate method to avoid the issue.

Reasons:
  • Low length (0.5):
  • No code block (0.5):
  • User mentioned (1): @PostConstruct
  • User mentioned (0): @PostContruct
  • Single line (0.5):
  • Low reputation (1):
Posted by: Sathya Priya

79791026

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

Github released rulesets which now allow, for given branches, specific allowed merge methods

enter image description here

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

79791012

Date: 2025-10-15 09:48:59
Score: 4
Natty: 5
Report link

I had this issue with a payroll system displaying REP-0606 error. After resizing the image to below 8KB it finally worked. Thanks for the insights!

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

79791005

Date: 2025-10-15 09:40:56
Score: 2.5
Natty:
Report link

You can set the application to run at server.port=5000

You need to allow traffic from the security group of your beanstalk environment into your database's security group.

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

79791001

Date: 2025-10-15 09:38:56
Score: 1
Natty:
Report link

For me adding a @config '../tailwind.config.ts' line to globals.css works
(current package.json: next: 15.5.3, react: 19.1.0, tailwindcss: 4.1.14, postcss: 8.5.6)

my app/globals.css now:

@import 'tailwindcss';

@config '../tailwind.config.ts';

@theme {
  --color-primary: #000;
}

tailwind.config.ts:

import type { Config } from 'tailwindcss';

const config: Config = {
  content: ['./app/**/*.{js,ts,jsx,tsx,mdx}', './components/**/*.{js,ts,jsx,tsx,mdx}'],
  theme: {
    //rest default tailwind colors
    colors: {},
  },
  plugins: [],
};
export default config;

postcss.config.mjs:

const config = {
  plugins: {
    '@tailwindcss/postcss': {},
  },
};

export default config;

app/layout.tsx:

...
import '@/app/globals.css';
...
Reasons:
  • Long answer (-0.5):
  • Has code block (-0.5):
  • User mentioned (1): @config
  • Low reputation (1):
Posted by: saldatkin

79790989

Date: 2025-10-15 09:25:51
Score: 1
Natty:
Report link

I solved the problem of running the project using "npx yarn react native run android" after building it;

Reasons:
  • Whitelisted phrase (-2): I solved
  • Low length (1):
  • No code block (0.5):
  • Single line (0.5):
  • Low reputation (1):
Posted by: Ha_ha_ha_ha

79790976

Date: 2025-10-15 09:10:48
Score: 3.5
Natty:
Report link

Is your JSON string properly formatted? Check for missing quotes around keys or missing braces. If it isn't properly formatted, then json.decode(s) will throw a FormatException

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

79790967

Date: 2025-10-15 08:56:44
Score: 1.5
Natty:
Report link

Super late reply here, but putting this here in case someone needs it later:

The second test is not using the Http header "Accept" with value "application/json"

The first test is using postJson and getJson which adds this header automatically. Therefore you are not receiving json for your get, and seem to be redirected to a login-form.

Assuming this is Laravel + Passport & phpUnit heh.

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

79790961

Date: 2025-10-15 08:51:43
Score: 4
Natty:
Report link

From Spring 4.3 version, dependency will be considered automatically without adding @Autowired. But @Autowired is mandatory if multiple constructors are used.

Reasons:
  • Low length (1):
  • No code block (0.5):
  • User mentioned (1): @Autowired
  • User mentioned (0): @Autowired
  • Single line (0.5):
  • Low reputation (1):
Posted by: Sathya Priya

79790956

Date: 2025-10-15 08:48:42
Score: 1
Natty:
Report link

If you’re using an older version (e.g., 1.0.x):

CRYPTO_set_locking_callback(lock_function);
CRYPTO_set_id_callback(id_function);

Ensure each thread allocates and initializes its own SHA context:

SHA_CTX ctx;
SHA1_Init(&ctx);
SHA1_Update(&ctx, data, len);
SHA1_Final(hash, &ctx);
Reasons:
  • Low length (0.5):
  • Has code block (-0.5):
  • Low reputation (1):
Posted by: star

79790953

Date: 2025-10-15 08:45:41
Score: 2
Natty:
Report link

After searching in Oracle documentation:

If your password contains the "@" character, then the password must be enclosed in double quotes, and the quotes must be escaped using backslash (\).

sqlplus USER/\"P@123\"@TNS_ENTRY

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

79790947

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

So in App.Razor I needed to add renderMode

<Routes @rendermode="InteractiveServer" />

The component now shows as expected.

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

79790943

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

The Dapper doesn't support Positional record syntax.
For more details, you can see this answer A parameterless default constructor or one matching signature is required

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

79790938

Date: 2025-10-15 08:30:37
Score: 1
Natty:
Report link

Try This

Two ways:-

a) Comma-separated

npx tsc --init --types node,express,jest

"types": ["node", "express", "jest"]

b) Quoted comma-separated

npx tsc --init --types "node,express,jest"

Reasons:
  • Whitelisted phrase (-1): Try This
  • Low length (0.5):
  • No code block (0.5):
  • Low reputation (1):
Posted by: Krishan Salgotra

79790935

Date: 2025-10-15 08:26:36
Score: 1.5
Natty:
Report link

The issue was that AsyncImagePainterState only loads when the image is present on screen. My component had two separate modifiers, one for the whole group (loader and image), one just for the image. If the image Modifier is not defined, the image has no dimension, is not considered present, and Coil does not attempts to load it.

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

79790930

Date: 2025-10-15 08:18:33
Score: 1.5
Natty:
Report link

You have to properly set the "authority" value in your application's settings.

Authority should be in this format:

https://techmindfactoryforcustomers.ciamlogin.com/eb79875d-bf91-4654-9af1-62aa93e6554e/v2.0/

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

79790929

Date: 2025-10-15 08:18:33
Score: 0.5
Natty:
Report link

add this config

  "topic.creation.enable": "true",
  "topic.creation.default.replication.factor": "1",
  "topic.creation.default.partitions": "1"
Reasons:
  • Low length (1):
  • Has code block (-0.5):
Posted by: seunggabi

79790914

Date: 2025-10-15 08:01:29
Score: 1
Natty:
Report link

I've modified my code to the following:

var sel = app.activeDocument.selection;
for (var i = 0; i < sel.length; i++) {
    if (sel[i].typename === "TextFrame") {
        sel[i].textRange.characterAttributes.textFont = textFonts.getByName("ArialMT");
    }
}

Which outputs an alert:

Error 21: undefined is not object.
Line:16
-> if(sel[i].typename==="TextFrame"){

I select the text

My edition is 28.1 (64bit).

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

79790913

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

.over for pandas is implemented via groupby operation, in which we only support elementary expressions (as we want to avoid running .groupby(...).apply(...) for the user).

One workaround is to split it into two chained over statements:

(
    pd_df
    .with_columns(x = nw.col('x').cum_sum().over('group'))
    .with_columns(x = nw.col('x').shift(1).over('group'))
)

I am not sure we will be able to support complex expressions.


linking because the tag doesn't exist on stackoverflow yet

Fun fact: SO doesn't let me create a narwhals tag as there is a narwhal one and they are too similar. Should I create python-narwhals?

Reasons:
  • Blacklisted phrase (1): stackoverflow
  • Long answer (-0.5):
  • Has code block (-0.5):
  • Ends in question mark (2):
  • High reputation (-1):
Posted by: FBruzzesi

79790911

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

Resolved. This is a known issue when your Flutter or Xcode project lives inside an iCloud-synced directory (like Desktop or Documents).
macOS offloads files that aren’t frequently used, leaving “cloud placeholders” instead of actual files.

How to fix this

Create a directory that’s not part of iCloud sync, for example:

mkdir ~/Development
mv ~/Desktop/my_flutter_app ~/Development/
Reasons:
  • Has code block (-0.5):
  • Self-answer (0.5):
  • Low reputation (0.5):
Posted by: Daniel Xav De Oliveira

79790907

Date: 2025-10-15 07:55:27
Score: 1.5
Natty:
Report link

Or by using saschiwy/HeicConverter:

for %%f in (*.heic) do heicconverter --skip-prompt --files "%%f"
Reasons:
  • Low length (1):
  • Has code block (-0.5):
  • Low reputation (1):
Posted by: Amadeus

79790902

Date: 2025-10-15 07:49:26
Score: 1.5
Natty:
Report link

I was unable to reproduce the issue, as running your example on Presidio's demo site detected all the names you've mentioned (Karthik, Priya Sharma, Rajesh Gupta) on most of the NER models.

Maybe you are running on a different spacy model or different spacy version?

I would also recommend trying to replace spacy with transformers before training a custom model, see the documentation site for full explanations and samples.

Reasons:
  • No code block (0.5):
  • Contains question mark (0.5):
  • Low reputation (0.5):
Posted by: Sharon Hart

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