79423254

Date: 2025-02-08 13:31:02
Score: 5.5
Natty:
Report link

So, I was able to migrate my database, but spring boot always use the "default" database and doesn't take database on my "DBManage" schemas.

    spring:
  
  datasource:
    username: speed
    url: jdbc:postgresql://localhost:5432/DBManage
    password: userpass66!
  jpa:
    properties:
      hibernate:
        dialect: org.hibernate.dialect.PostgreSQLDialect
        format_sql: 'true'
    hibernate:
      ddl-auto: update
    show-sql: 'true'
  logging:
    level:
        org.flywaydb: DEBUG
        org.hibernate.SQL: DEBUG
        org.hibernate.type.descriptor.sql.BasicBinder: TRACE

  flyway:
    enabled: 'true'
    baseline-version: 0
    url: jdbc:postgresql://localhost:5432/DBManage
    user: speed
    password: userpass66!
    default-schema: DBManage
    locations: classpath:db/migration

but it takes only the default schema :

2025-02-08T14:21:13.071+01:00  INFO 18208 --- [  restartedMain] 

o.f.core.internal.command.DbValidate     : Successfully validated 3 migrations (execution time 00:00.241s)
2025-02-08T14:21:13.171+01:00  INFO 18208 --- [  restartedMain] o.f.core.internal.command.DbMigrate      : Current version of schema "DBManage": 1
2025-02-08T14:21:13.182+01:00  INFO 18208 --- [  restartedMain] o.f.core.internal.command.DbMigrate      : Schema "DBManage" is up to date. No migration necessary.
2025-02-08T14:21:13.293+01:00  INFO 18208 --- [  restartedMain] o.hibernate.jpa.internal.util.LogHelper  : HHH000204: Processing PersistenceUnitInfo [name: default]
2025-02-08T14:21:13.391+01:00  INFO 18208 --- [  restartedMain] org.hibernate.Version                    : HHH000412: Hibernate ORM core version 6.6.5.Final
2025-02-08T14:21:13.439+01:00  INFO 18208 --- [  restartedMain] o.h.c.internal.RegionFactoryInitiator    : HHH000026: Second-level cache disabled
2025-02-08T14:21:13.815+01:00  INFO 18208 --- [  restartedMain] o.s.o.j.p.SpringPersistenceUnitInfo      : No LoadTimeWeaver setup: ignoring JPA class transformer
2025-02-08T14:21:13.885+01:00  INFO 18208 --- [  restartedMain] com.zaxxer.hikari.HikariDataSource       : HikariPool-1 - Starting...
2025-02-08T14:21:13.962+01:00  INFO 18208 --- [  restartedMain] com.zaxxer.hikari.pool.HikariPool        : HikariPool-1 - Added connection org.postgresql.jdbc.PgConnection@25

Can anyone tell me why please ?

Reasons:
  • RegEx Blacklisted phrase (2.5): Can anyone tell me
  • Long answer (-1):
  • Has code block (-0.5):
  • Ends in question mark (2):
  • Self-answer (0.5):
  • Looks like a comment (1):
  • Low reputation (1):
Posted by: Speedskillsx

79423201

Date: 2025-02-08 12:49:53
Score: 4
Natty: 5
Report link

ok thank you, I didn't know you could put a autoload script on an instanciated object

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

79423143

Date: 2025-02-08 12:10:42
Score: 7.5 🚩
Natty:
Report link

Did you able to solve this as I am also facing the same problem

Reasons:
  • Blacklisted phrase (1): you able to solve
  • Low length (1.5):
  • No code block (0.5):
  • Me too answer (2.5): I am also facing the same problem
  • Single line (0.5):
  • Starts with a question (0.5): Did you
  • Low reputation (1):
Posted by: Khushhal Sharma

79423120

Date: 2025-02-08 11:54:37
Score: 9
Natty: 7.5
Report link

Did you manage to find a solution in the end?

Reasons:
  • RegEx Blacklisted phrase (3): Did you manage to find a solution
  • 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: Ziyed Hammadi

79423104

Date: 2025-02-08 11:47:35
Score: 4.5
Natty:
Report link

Please refer to the MySql installer(https://downloads.mysql.com/archives/installer/) to install the MySql server or workbench.

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

79423063

Date: 2025-02-08 11:23:29
Score: 4
Natty:
Report link

With jsoneditor-cli you could edit your jsons directly in a web-based interface.

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

79423053

Date: 2025-02-08 11:12:25
Score: 5
Natty:
Report link

Did you find a way round this? I have an old model in pickle format and no way to recreate it.

Reasons:
  • RegEx Blacklisted phrase (3): Did you find a way
  • Low length (1):
  • No code block (0.5):
  • Contains question mark (0.5):
  • Single line (0.5):
  • Starts with a question (0.5): Did you find a
  • High reputation (-1):
Posted by: simon

79422999

Date: 2025-02-08 10:34:16
Score: 10 🚩
Natty:
Report link

I have the same Error message.

{
  "name": "popular-pegasi",
  "type": "module",
  "version": "0.0.1",
  "scripts": {
    "dev": "astro dev",
    "build": "astro build",
    "preview": "astro preview",
    "astro": "astro",
    "start": "astro preview --port $PORT --host"
  },
  "dependencies": {
    "astro": "^5.2.4"
  }
}
// @ts-check
import { defineConfig } from 'astro/config';

// https://astro.build/config
export default defineConfig({
    site: "https://my-website.de",

    vite: {
        preview: {
          allowedHosts: [
            'my-website.de',  
          ]
        }
      }
});

Can you help me? PS.: I do not have an Dockerfile. I am using node.js (I'm a beginner)

Reasons:
  • Blacklisted phrase (1): help me
  • RegEx Blacklisted phrase (3): Can you help me
  • RegEx Blacklisted phrase (1): I have the same Error
  • RegEx Blacklisted phrase (2): I'm a beginner
  • Long answer (-0.5):
  • Has code block (-0.5):
  • Me too answer (2.5): I have the same Error
  • Contains question mark (0.5):
  • Low reputation (1):
Posted by: KodingFarming

79422971

Date: 2025-02-08 10:16:12
Score: 4.5
Natty: 4.5
Report link

Use Autodesk MotionBuilder. How to mirror animation

Reasons:
  • Probably link only (1):
  • Low length (2):
  • No code block (0.5):
  • Low reputation (1):
Posted by: Максим Гутиков

79422959

Date: 2025-02-08 10:03:09
Score: 11.5
Natty: 7.5
Report link

the tool which you are using to show call stack is awsome. could you please give me some info about the tool? thx

Reasons:
  • Blacklisted phrase (1): thx
  • Blacklisted phrase (3): give me some
  • RegEx Blacklisted phrase (2.5): could you please give me some
  • Low length (1):
  • No code block (0.5):
  • Ends in question mark (2):
  • Single line (0.5):
  • Low reputation (1):
Posted by: xinzhang

79422958

Date: 2025-02-08 10:02:07
Score: 12.5 🚩
Natty: 6.5
Report link

were you able to figure out the problem? I am facing a similar problem.

Reasons:
  • RegEx Blacklisted phrase (3): were you able to figure out
  • RegEx Blacklisted phrase (3): were you able
  • Low length (1.5):
  • No code block (0.5):
  • Me too answer (2.5): I am facing a similar problem
  • Contains question mark (0.5):
  • Single line (0.5):
  • Low reputation (1):
Posted by: Elias Abud

79422861

Date: 2025-02-08 08:51:51
Score: 4
Natty: 4
Report link

https://docs.spring.io/spring-boot/reference/testing/spring-boot-applications.html#testing.spring-boot-applications.detecting-configuration

@SpringBootConfiguration is mainly for unit test and integration test to automatically find configuration without having you to use @ContextConfiguration and nested configuration class

Reasons:
  • Probably link only (1):
  • Low length (0.5):
  • No code block (0.5):
  • User mentioned (1): @SpringBootConfiguration
  • User mentioned (0): @ContextConfiguration
  • Low reputation (1):
Posted by: Vidhya Ambethkar

79422859

Date: 2025-02-08 08:46:49
Score: 4
Natty:
Report link

In VS Code, open the terminal, click on the dropdown arrow next to the + button, select 'Select Default Profile,' and then choose the terminal you want to use.enter image description here

Reasons:
  • Blacklisted phrase (1): enter image description here
  • Low length (1):
  • No code block (0.5):
  • Single line (0.5):
  • Low reputation (1):
Posted by: PrathamBhandari

79422855

Date: 2025-02-08 08:43:48
Score: 4
Natty:
Report link

When deploying for my project it is giving error that some jpg file in the sec/pages/asset is missing but it is there and hence build creation is failing

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

79422851

Date: 2025-02-08 08:38:46
Score: 4
Natty:
Report link

Have you fixed this error yet? I found a solution using "lite-server", however the new problem is that "lite-server" reloads the entire files every time it updates.

I'm still looking for live-server solution.

Reasons:
  • RegEx Blacklisted phrase (1.5): fixed this error yet?
  • Low length (0.5):
  • No code block (0.5):
  • Contains question mark (0.5):
  • Low reputation (1):
Posted by: VSRS

79422831

Date: 2025-02-08 08:21:43
Score: 4.5
Natty:
Report link

I think this has the same design trade off as discussed here for single queue vs multiple queue When to use one queue vs multiple?.

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

79422809

Date: 2025-02-08 08:00:38
Score: 4
Natty:
Report link

For someone using MS Pinyin, this setting also matters:

MS Pinyin settings about Ctrl+Space

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

79422804

Date: 2025-02-08 07:56:36
Score: 4
Natty:
Report link

please look at the following url

https://help.sap.com/docs/SAP_BUSINESSOBJECTS_BUSINESS_INTELLIGENCE_PLATFORM/09382741061c40a989fae01e61d54202/46758c5e6e041014910aba7db0e91070.html

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

79422801

Date: 2025-02-08 07:52:31
Score: 4
Natty: 5
Report link

Triton 3 wheels published for Windows and working https://github.com/woct0rdho/triton/releases

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

79422768

Date: 2025-02-08 07:22:25
Score: 8.5 🚩
Natty: 6.5
Report link

did you find the answer to this? I am in a very similar situation.

Reasons:
  • Blacklisted phrase (1): answer to this?
  • RegEx Blacklisted phrase (3): did you find the answer to this
  • Low length (1.5):
  • No code block (0.5):
  • Contains question mark (0.5):
  • Single line (0.5):
  • Starts with a question (0.5): did you find the answer to this
  • Low reputation (1):
Posted by: Girivinay Padegal

79422746

Date: 2025-02-08 06:46:18
Score: 4
Natty: 4
Report link

I like reading about stuff like this because i can kind of grasp what you guys are saying

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

79422715

Date: 2025-02-08 06:14:12
Score: 8 🚩
Natty: 5.5
Report link

5 years later, I have the exact same issue and struggle to find an answer. Can you, please, share how you managed to solve the issue?

Your response is much appreciated! Ana (Wordpress Newbie)

Reasons:
  • Blacklisted phrase (1): appreciated
  • RegEx Blacklisted phrase (1.5): solve the issue?
  • Low length (0.5):
  • No code block (0.5):
  • Me too answer (2.5): I have the exact same issue
  • Contains question mark (0.5):
  • Unregistered user (0.5):
  • Low reputation (1):
Posted by: Ana-Maria Badea

79422659

Date: 2025-02-08 05:05:57
Score: 14 🚩
Natty:
Report link

did you find any answer for this i have the same problem please provide the solution

Reasons:
  • Blacklisted phrase (1): i have the same problem
  • RegEx Blacklisted phrase (2.5): please provide the solution
  • RegEx Blacklisted phrase (3): did you find any answer
  • RegEx Blacklisted phrase (1): i have the same problem please
  • Low length (1.5):
  • No code block (0.5):
  • Me too answer (2.5): i have the same problem
  • Single line (0.5):
  • Starts with a question (0.5): did you find any answer for this i have the
  • Low reputation (1):
Posted by: satya Gopal

79422582

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

Found the solution. We can just reset via this function overload ApplyRefreshPolicy()

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

79422558

Date: 2025-02-08 02:48:32
Score: 4
Natty:
Report link

You can try =SUM(COUNTIF(B2:B24,J2:J24))

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

79422545

Date: 2025-02-08 02:36:27
Score: 6 🚩
Natty:
Report link

Currently I'm trying to change thingsboard ce logo how to do it?

Im sucessfuly built thingsboard from source and run thingsboard service but logo not changed yet.. pls help

Reasons:
  • RegEx Blacklisted phrase (3): pls help
  • Low length (1):
  • No code block (0.5):
  • Contains question mark (0.5):
  • Low reputation (1):
Posted by: Wibit Innovations

79422513

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

It is solved here in this issue https://github.com/rabbitmq/amqp091-go/issues/296#issue-2825813767

Reasons:
  • Whitelisted phrase (-1): It is solved
  • Probably link only (1):
  • Low length (2):
  • No code block (0.5):
  • Self-answer (0.5):
  • Single line (0.5):
  • Low reputation (1):
Posted by: Anish

79422512

Date: 2025-02-08 01:57:18
Score: 5
Natty: 5.5
Report link

why not use python feature importlib.reload?

Reasons:
  • Low length (1.5):
  • Has code block (-0.5):
  • Ends in question mark (2):
  • Single line (0.5):
  • Starts with a question (0.5): why not use
  • Low reputation (1):
Posted by: 黄大胆

79422486

Date: 2025-02-08 01:31:13
Score: 7.5 🚩
Natty: 6.5
Report link

I'm having the same problem, just sharing solution; I tried and its working for me;

https://support.hashicorp.com/hc/en-us/articles/4547786359571-Reading-and-using-environment-variables-in-Terraform-runs

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

79422475

Date: 2025-02-08 01:19:10
Score: 4
Natty:
Report link

In general, for each shard: General time More detailed: general time

Meaning - You won't be going to have read downtime at all if you have read from a replica.
You will write downtime for single shard each time of few seconds. Generally, the downtime is when the new and old masters replace the DNS, so it's the time it takes to replace the DNS.

Migrating to Valkey 8?
Resource: https://docs.aws.amazon.com/AmazonElastiCache/latest/dg/VersionManagement.html

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

79422441

Date: 2025-02-08 00:51:05
Score: 4
Natty: 5
Report link

pleases Dealte. The orator. From the same sung. Phone Jeanna spigener 42. G mail com. I need to call Erica Hawkins in the next hour at 7:00 pm. Pleases get. The orator off the phone right now go way. Jeanna spigener 42 @ g mail com.

Reasons:
  • Blacklisted phrase (0.5): I need
  • Contains signature (1):
  • Low length (0.5):
  • No code block (0.5):
  • Single line (0.5):
  • Low reputation (1):
Posted by: Jeanna Spigener

79422424

Date: 2025-02-08 00:36:01
Score: 5.5
Natty: 5
Report link

when run npm install --save @types/react-datepicker i get dependecy errors because i have [email protected]

how is the import DatePicker now ?

Sorry Im totally newbie on this, just need a hand, even openai cant give me an answer.

Thanks!

Reasons:
  • Blacklisted phrase (0.5): Thanks
  • RegEx Blacklisted phrase (1): i get dependecy error
  • Low length (0.5):
  • No code block (0.5):
  • Contains question mark (0.5):
  • Starts with a question (0.5): when
  • Looks like a comment (1):
  • Low reputation (1):
Posted by: Cristo Jaraba

79422294

Date: 2025-02-07 22:31:38
Score: 4.5
Natty:
Report link

import pandas as pd import numpy as np

Crear los datos como un diccionario

data = { 2015: [90, 100, 85, 100, 100, 100, 100, 0, 0, 0], 2016: [80, 75, 75, 0, 80, 80, 70, 0, 0, 0], 2017: [80, 0, 70, 70, 80, 75, 80, 80, 80, 80], 2018: [0, 0, 65, 70, 70, 75, 80, 0, 0, 0], 2019: [100, 95, 100, 0, 80, 55, 80, 65, 90, 80], 2020: [0, 70, 80, 0, 80, 100, 100, 0, 0, 0], 2021: [80, 100, 100, 95, 100, 100, 0, 0, 0, 0], 2022: [80, 100, 95, 0, 100, 100, 0, 0, 0, 100], 2023: [80, 95, 90, 0, 90, 90, 100, 95, 95, 95], 2024: [80, 95, 90, 95, 95, 90, 90, 95, 95, 95] } # Crear el DataFrame df = pd.DataFrame(data) # Reemplazar los 0 por NaN (considerándolos como valores faltantes) df.replace(0, np.nan, inplace=True) # Calcular la media, mediana y desviación estándar media = df.mean().round(2) mediana = df.median().round(2) desviacion_estandar = df.std().round(2) # Mostrar los resultados print(f"Media por año:\n{media}") print(f"\nMediana por año:\n{mediana}") print(f"\nDesviación Estándar por año:\n{desviacion_estandar}")

Reasons:
  • Blacklisted phrase (1): está
  • Blacklisted phrase (1): Está
  • Blacklisted phrase (2): Crear
  • Long answer (-1):
  • No code block (0.5):
  • Low reputation (1):
Posted by: S.G.C. ESPIRA SGC-Espira

79422290

Date: 2025-02-07 22:28:36
Score: 4
Natty:
Report link

Linking to the Issue in the repo where we have talked about possible solutions to this. https://github.com/microsoft/ApplicationInsights-JS/issues/2477

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

79422269

Date: 2025-02-07 22:18:34
Score: 4.5
Natty: 5
Report link

Good solutions with different versions: https://github.com/AlbertKarapetyan/api-gateway

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

79422251

Date: 2025-02-07 22:06:30
Score: 9 🚩
Natty: 5
Report link

I have the same issue, tried this trick and it does work.

However, still not really sure how and why it works, can someone explain? Thank you.

I assume now the hidden should stay for the production as well.

Reasons:
  • Blacklisted phrase (0.5): Thank you
  • Blacklisted phrase (1): I have the same issue
  • RegEx Blacklisted phrase (2.5): can someone explain
  • Low length (0.5):
  • No code block (0.5):
  • Me too answer (2.5): I have the same issue
  • Contains question mark (0.5):
  • Low reputation (1):
Posted by: tplletscode

79422171

Date: 2025-02-07 21:18:17
Score: 7 🚩
Natty:
Report link

I don't have a complete answer. Through testing I can confirm that "mode" does need to be set to "All", even though MS documentation shows "all". Azure's Policy policy editor will require an uppercase 'A'. Policy editor yellow squiggly underline with view problem: "Value is not accepted. Valid values: "All", "Indexed", "Microsoft.KeyVault.Data", "Microsoft.ContainerService.Data", "Microsoft.CustomerLockbox.Data", "Microsoft.Kubernetes.Data", "Microsoft.Network.Data"." When setting my policy to "Indexed" the policy did not work during resource group creation. I needed to use "All". MS statements about what each mode does is confusing; since, resource groups support tags and location.

  • all: evaluate resource groups, subscriptions, and all resource types
  • indexed: only evaluate resource types that support tags and location

You may want to exclude resources and/or resource groups that might get created by automation, as they might not be able to handle the new tag requirement. While not answering this array question, SoMundayn on Reddit created a policy that should excluded the most common resource groups to avoid enforcing a "deny" on. I tried to include code but stackoverflow was breaking on the last curly brace.

Currently @Naveen Sharma answer is not working for me. I suspect that the "field": "tags[*]", is returning a string. This is based on combining his solution with my own. When I require "Environment" and "DepartmentResponsibility" tags and add those tags to the group with values I get the following error message:

Policy enforcement. Value does not meet requirements on resource: ForTestingDeleteMe-250217_6 : Microsoft.Resources/subscriptions/resourceGroups The field 'Tag *' with the value '(Environment, DepartmentResponsibility)' is required

I suspect I might be able to use the "field count" or "value count" as described in MS doc Azure Policy definition structure policy rule. I have thus far failed to find a working solution, but still feel these are key points to finding an answer.

Reasons:
  • Blacklisted phrase (0.5): I need
  • Blacklisted phrase (1): did not work
  • Blacklisted phrase (1): stackoverflow
  • RegEx Blacklisted phrase (1): I get the following error
  • RegEx Blacklisted phrase (3): not working for me
  • Long answer (-1):
  • Has code block (-0.5):
  • User mentioned (1): @Naveen
  • Low reputation (1):
Posted by: Michael Fisher

79422096

Date: 2025-02-07 20:29:06
Score: 8.5 🚩
Natty: 5.5
Report link

I got the exact same issue, did you ever figure it out?

Reasons:
  • RegEx Blacklisted phrase (3): did you ever figure it out
  • Low length (1.5):
  • No code block (0.5):
  • Ends in question mark (2):
  • Single line (0.5):
  • Low reputation (1):
Posted by: Tom Monnier

79422081

Date: 2025-02-07 20:22:04
Score: 11.5
Natty: 7
Report link

Thank you for posting this, as it has helped. It is doing what I need it to, however, I can't get a trigger to work with it because I keep getting the following error:

"TypeError: input.reduce is not a function"

Can anyone advise? Thanks in advance!

Reasons:
  • Blacklisted phrase (0.5): Thank you
  • Blacklisted phrase (0.5): Thanks
  • Blacklisted phrase (0.5): I need
  • RegEx Blacklisted phrase (2.5): Can anyone advise
  • RegEx Blacklisted phrase (3): Thanks in advance
  • Low length (0.5):
  • No code block (0.5):
  • Ends in question mark (2):
  • Unregistered user (0.5):
  • Low reputation (1):
Posted by: James

79422018

Date: 2025-02-07 19:54:56
Score: 7 🚩
Natty: 6.5
Report link

Got this error today, was building fine until i upgrade my eas-cli because the credentials were somehow bugged. Now credentials are not bugged anymore but i am stuck in compressing files.

Any thoughts?

Reasons:
  • Blacklisted phrase (1.5): Any thoughts
  • RegEx Blacklisted phrase (1.5): i am stuck
  • Low length (0.5):
  • No code block (0.5):
  • Ends in question mark (2):
  • Low reputation (1):
Posted by: joaodev

79422001

Date: 2025-02-07 19:44:53
Score: 4.5
Natty:
Report link

I cannot reproduce this issue either. Code looks fine on the most part. Could you share more?

Text on my case, was being cut with the height manually set to 56.dp. Removing .height(56.dp) fixed it for me.

Reasons:
  • Blacklisted phrase (0.5): I cannot
  • RegEx Blacklisted phrase (2.5): Could you share
  • Low length (0.5):
  • Has code block (-0.5):
  • Contains question mark (0.5):
  • Low reputation (1):
Posted by: Mario

79421997

Date: 2025-02-07 19:40:51
Score: 4
Natty:
Report link

recently created this project to solve that problem: scrapy-proxy-headers. It will let you correctly send and receive custom headers to proxies (such as proxymesh) when making https requests.

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

79421979

Date: 2025-02-07 19:32:49
Score: 5
Natty: 6.5
Report link

thank you The plugin that I want to put in the WordPress repository has this problem, the problem was solved with your code. But I want to know if there is any problem in the plugin approval process in the WordPress repository? // phpcs:ignore WordPress.DB.DirectDatabaseQuery

Reasons:
  • Blacklisted phrase (0.5): thank you
  • Blacklisted phrase (1): I want to know
  • RegEx Blacklisted phrase (1): I want
  • Low length (0.5):
  • No code block (0.5):
  • Contains question mark (0.5):
  • Low reputation (1):
Posted by: amir

79421915

Date: 2025-02-07 19:05:41
Score: 10
Natty: 8
Report link

I am stuck with the same issue. Did you come up with a solution?

Reasons:
  • RegEx Blacklisted phrase (1.5): I am stuck
  • Low length (1.5):
  • No code block (0.5):
  • Me too answer (2.5): I am stuck with the same issue
  • Ends in question mark (2):
  • Unregistered user (0.5):
  • Single line (0.5):
  • Low reputation (1):
Posted by: Thomas

79421899

Date: 2025-02-07 19:00:39
Score: 4
Natty: 4.5
Report link

In Redshift, this can only be done in a procedure. https://docs.aws.amazon.com/redshift/latest/dg/stored-procedure-trapping-errors.html

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

79421880

Date: 2025-02-07 18:51:36
Score: 9.5
Natty: 8
Report link

Please tell me how to do this on VBScript. How to programmatically add folders to Quick Access?

Reasons:
  • Blacklisted phrase (1.5): tell me how to
  • RegEx Blacklisted phrase (2.5): Please tell me how
  • Low length (1):
  • No code block (0.5):
  • Ends in question mark (2):
  • Unregistered user (0.5):
  • Single line (0.5):
  • Low reputation (1):
Posted by: user29551496

79421860

Date: 2025-02-07 18:43:33
Score: 6 🚩
Natty: 6
Report link

I'm just doing a BECMI implementation ... are you still interested in ?

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

79421839

Date: 2025-02-07 18:34:30
Score: 4
Natty:
Report link

As noted in the JanusGraph docs, JanusGraph 1.0.0 does not supports Cassandra 5.x.

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

79421799

Date: 2025-02-07 18:19:25
Score: 6.5 🚩
Natty:
Report link

Answer provided indirectly by someone else having the same problem and was replying to a page that I had previously visited: https://github.com/originjs/vite-plugin-federation/issues/549

The comment that resolved my issue: https://github.com/originjs/vite-plugin-federation/issues/502#issuecomment-1727954152

Reasons:
  • Probably link only (1):
  • Low length (1):
  • No code block (0.5):
  • Me too answer (2.5): having the same problem
  • Self-answer (0.5):
  • Low reputation (1):
Posted by: paapaa000

79421785

Date: 2025-02-07 18:11:23
Score: 6 🚩
Natty: 5.5
Report link

Which Visio version supports this feature please?

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

79421677

Date: 2025-02-07 17:22:10
Score: 4
Natty:
Report link

I would then put the data in the power pivot data model (or Fabric Semantic Model) and do CUBEVALUE formula on it. Here is a good link on CUBE functions: https://dataempower.net/excel/excel-cube-functions-explained-cubevalue-cubeset-cubemember/

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

79421657

Date: 2025-02-07 17:10:06
Score: 4.5
Natty: 5
Report link

Does your invoked input match the provided regex pattern of ^(\|+|User:)$?

Reasons:
  • Low length (1.5):
  • Has code block (-0.5):
  • Ends in question mark (2):
  • Single line (0.5):
  • Low reputation (1):
Posted by: Lu___

79421572

Date: 2025-02-07 16:36:58
Score: 4
Natty: 4
Report link

you is the experience and share the sure to opinion them Making

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

79421515

Date: 2025-02-07 16:17:52
Score: 11.5 🚩
Natty: 6.5
Report link

did it work? I am stuck with the same issue.please help.

Reasons:
  • RegEx Blacklisted phrase (3): please help
  • RegEx Blacklisted phrase (1.5): I am stuck
  • Low length (1.5):
  • No code block (0.5):
  • Me too answer (2.5): I am stuck with the same issue
  • Contains question mark (0.5):
  • Single line (0.5):
  • Starts with a question (0.5): did it
  • Low reputation (1):
Posted by: Ankita Ghosh

79421445

Date: 2025-02-07 15:51:45
Score: 9 🚩
Natty: 5
Report link

IN USING XD: Did anyone figure out how to fix this? Does the background color need to stay the color of what the text is top of? Then do we use a colored box with text on top for a background color - instead of making the background a color?

Reasons:
  • RegEx Blacklisted phrase (3): Did anyone figure out
  • RegEx Blacklisted phrase (1.5): how to fix this?
  • Low length (0.5):
  • No code block (0.5):
  • Ends in question mark (2):
  • Single line (0.5):
  • Low reputation (1):
Posted by: amanda nelson

79421426

Date: 2025-02-07 15:45:43
Score: 4
Natty:
Report link

I have similar question: even if I add "--names-only" to the request like:

apt search --names-only bind

I received very long list inadequate results consisting of, among others, e.g.:

[...]elpa-bind-chord/jammy[...]
gir1.2-keybinder-3.0/jammy [...]
libbind-config-parser-perl/jammy[...]

19 pages... I don't get why. Looking for the explanation.

Reasons:
  • Blacklisted phrase (1): I have similar
  • Has code block (-0.5):
  • Me too answer (2.5): I have similar question
  • Low reputation (1):
Posted by: Przemek

79421334

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

I'm new to launching a React Native app using Android Studio, and I'm encountering this error as well.

What could be the possible causes of this issue, and what are some potential solutions?

I can provide the code, but I'm unsure which specific file is needed.

Reasons:
  • Blacklisted phrase (1): What could be
  • RegEx Blacklisted phrase (1.5): I'm new
  • Low length (0.5):
  • No code block (0.5):
  • Contains question mark (0.5):
  • Low reputation (1):
Posted by: Anastasia Pzysiazhna

79421333

Date: 2025-02-07 15:15:33
Score: 9.5 🚩
Natty: 6
Report link

did you find the reason behind that issue?

Reasons:
  • RegEx Blacklisted phrase (3): did you find the
  • Low length (1.5):
  • No code block (0.5):
  • Ends in question mark (2):
  • Unregistered user (0.5):
  • Single line (0.5):
  • Starts with a question (0.5): did you find the
  • Low reputation (1):
Posted by: chaima

79421315

Date: 2025-02-07 15:08:30
Score: 10 🚩
Natty: 6.5
Report link

Did you manage to figure it out? Having the same issue here.

Reasons:
  • RegEx Blacklisted phrase (3): Did you manage to figure it out
  • Low length (1.5):
  • No code block (0.5):
  • Me too answer (2.5): Having the same issue
  • Contains question mark (0.5):
  • Single line (0.5):
  • Starts with a question (0.5): Did you
  • Low reputation (1):
Posted by: Gabriel Carvalho

79421212

Date: 2025-02-07 14:36:21
Score: 11.5
Natty: 7
Report link

did you find the solution ? i have the same problem

Reasons:
  • Blacklisted phrase (1): i have the same problem
  • RegEx Blacklisted phrase (3): did you find the solution
  • Low length (1.5):
  • No code block (0.5):
  • Me too answer (2.5): i have the same problem
  • Contains question mark (0.5):
  • Unregistered user (0.5):
  • Single line (0.5):
  • Starts with a question (0.5): did you find the solution
  • Low reputation (1):
Posted by: larvel shadow jutsu

79421208

Date: 2025-02-07 14:35:20
Score: 4
Natty: 4
Report link

So if i had the following $driverInfo = Get-WmiObject Win32_PnpSignedDriver | Where-Object {$_.DeviceId -eq $device.DeviceId }

How would i convert the $driverInfo.DriverDate into something readable from the WMI date form, example "20230823000000.***+" ?

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

79421203

Date: 2025-02-07 14:31:18
Score: 4
Natty: 4.5
Report link

Well, i know it's a bit outdated but I use https://central.sonatype.com/artifact/se.bjurr.gitchangelog/git-changelog-maven-plugin for automated generation of the CHANGELOG.md based on commit messages (utilizing the Conventional Commits convention - https://www.conventionalcommits.org/en/v1.0.0/ ).

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

79421189

Date: 2025-02-07 14:24:15
Score: 7 🚩
Natty:
Report link

I'm also facing the same error, have you resolved this

Reasons:
  • RegEx Blacklisted phrase (1): I'm also facing the same error
  • Low length (1.5):
  • No code block (0.5):
  • Me too answer (2.5): I'm also facing the same error
  • Single line (0.5):
  • Low reputation (1):
Posted by: Lasjihad

79421141

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

@J_Dubu @DazWilkin

Thank you so much for your help and suggestions! I finally discovered the issue: I was accidentally using the project number (numeric value) instead of the project ID (alphanumeric). Once I corrected that, everything worked as expected.

Thanks again for all your support!

Reasons:
  • Blacklisted phrase (0.5): Thank you
  • Blacklisted phrase (0.5): Thanks
  • Low length (0.5):
  • No code block (0.5):
  • User mentioned (1): @J_Dubu
  • User mentioned (0): @DazWilkin
  • Self-answer (0.5):
  • Low reputation (0.5):
Posted by: rafik

79421136

Date: 2025-02-07 14:06:08
Score: 4
Natty:
Report link

it's local package, you need to install github repository of janus. https://github.com/deepseek-ai/Janus/issues/40

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

79421111

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

But if my menu content content changes based on pages (a menù based o context). If I put header in app.vue, How can I pass the menu content dinamically?

Thanks

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

79421078

Date: 2025-02-07 13:43:01
Score: 4
Natty:
Report link

Issue was resolved after downgrading to 'org.springdoc:springdoc-openapi-ui:1.6.6'.

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

79421060

Date: 2025-02-07 13:36:59
Score: 4.5
Natty:
Report link

I have faced the same isuue please, configure your buidpath properly.

Reasons:
  • RegEx Blacklisted phrase (1): I have faced the same isuue please
  • Low length (1.5):
  • No code block (0.5):
  • Single line (0.5):
  • Low reputation (1):
Posted by: Vijayanand

79421026

Date: 2025-02-07 13:25:56
Score: 5.5
Natty:
Report link

I am facing the same issue. In the AWS Academy's AWS Details, it mentions that students can use LabRole to assume roles, but in practice, I found that LabRole does not have the Assume Role policy. I haven't found a workaround yet, so I hope someone here can help.

Reasons:
  • Low length (0.5):
  • No code block (0.5):
  • Me too answer (2.5): I am facing the same issue
  • Unregistered user (0.5):
  • Single line (0.5):
  • Low reputation (1):
Posted by: user29547542

79420977

Date: 2025-02-07 13:07:50
Score: 7 🚩
Natty:
Report link

I used this code and it works fine. I tested it on local. Sometimes instead of adding one number, it adds more numbers to the visitors. For example, on the first refresh, it adds 11 numbers and on subsequent refreshes, more than 15 numbers are added per refresh. Is there a way to solve this problem?

Reasons:
  • Blacklisted phrase (1): Is there a way
  • RegEx Blacklisted phrase (1.5): solve this problem?
  • Low length (0.5):
  • No code block (0.5):
  • Ends in question mark (2):
  • Self-answer (0.5):
  • Low reputation (1):
Posted by: Sina

79420969

Date: 2025-02-07 13:04:49
Score: 5.5
Natty:
Report link

This is not a response, but I cannot add comments yet. I also face some challenges when developing a React Native app. I tried to install and run expo doctor, this helps a lot. If you also face problems after successfully building the APK, it's good to connect a phone to Android Studio and check the logs in the terminal.

Reasons:
  • Blacklisted phrase (0.5): I cannot
  • Blacklisted phrase (3): comments yet
  • No code block (0.5):
  • Single line (0.5):
  • Low reputation (1):
Posted by: xavi zamora

79420772

Date: 2025-02-07 11:51:26
Score: 6.5 🚩
Natty:
Report link

I have made the two SIP registrations. I have attached one to scenario A (Openai) and the other to a new scenario B (testing scenario). I have a routing rule for each scenario, do I need just one that applies to both?

scenario A:

require(Modules.ASR)

async function sendUtterance(query,session){
    const url = "xxxxxxxx"
    Logger.write("Session: " + session)
    const options = {
      headers: {
        "Content-Type": "application/json",
        "Ocp-Apim-Subscription-Key": "xxxxxxx"
      },
      method: "POST",
      postData: JSON.stringify({
        "query": query,
        "session": session,
        "origin": "phone"
      })
    }
    const result = await Net.httpRequestAsync(url, options);
    Logger.write(result.text);
    const response = JSON.parse(result.text)
    var textresponse = ""
    response.responses.forEach(element => {
      textresponse += element.text + ". "
    });
    return textresponse
}

var waitMessagePlaying = false;
var isProcessing;
var isResponding = false;

var waitingMessages = [
    "Un momento, por favor.",
    "Deme un instante.",
    "Permítame un momento.",
    "Necesito un segundo.",
    "Deme un momento.",
    "Un instante si es tan amable.",
    "Un segundito, por favor.",
    "Espere un momento, por favor.",
    "Un segundito, si es tan amable.",
];
var waitingIndex = 0;

async function waitMessage(){
    if (waitMessagePlaying){
        return
    }
    waitMessagePlaying = true;

    function recursiveWait() {
        if (isProcessing && !isResponding) {
            var message = waitingMessages[waitingIndex];
            player = VoxEngine.createTTSPlayer(message, {
                language: defaultVoice,
                progressivePlayback: true
            })
            player.sendMediaTo(call)
            player.addMarker(-300)
            player.addEventListener(PlayerEvents.PlaybackMarkerReached, (ev) => {
                player.removeEventListener(PlayerEvents.PlaybackMarkerReached)
                setTimeout(recursiveWait,6000)
                waitingIndex++;
                if (waitingIndex == waitingMessages.length) {
                    waitingIndex = 0;
                }
            })
        } else {
            waitMessagePlaying = false;
        }
    }

    recursiveWait();
}


async function queryProc(messages,session){
    if (messages == ""){
        return
    }
    if (messages != "/start"){
        timer = setTimeout(waitMessage,2000)
    }
    isProcessing=true;
    try {
        let ts1 = Date.now();
        var res = await sendUtterance(messages, session)
        let ts2 = Date.now();
        Logger.write("Petición completada en " + (ts2 - ts1) + " ms")
        isResponding = true;
        if (timer){clearTimeout(timer);}
        if (waitMessagePlaying) {
            player.stop()
            waitMessagePlaying = false;
        }
        player = VoxEngine.createTTSPlayer(res,
            {
                language: defaultVoice,
                progressivePlayback: true
            })
        player.sendMediaTo(call)
        player.addMarker(-300)
    } catch(err){
        player = VoxEngine.createTTSPlayer('Disculpe, no le escuché, ha habido un error en sistema, ¿me lo puede repetir?',
           {
                language: defaultVoice,
                progressivePlayback: true
            })
        player.sendMediaTo(call)
        player.addMarker(-300)
    }
    player.addEventListener(PlayerEvents.PlaybackMarkerReached, (ev) => {
        player.removeEventListener(PlayerEvents.PlaybackMarkerReached)
        call.sendMediaTo(asr)
        isProcessing=false;
        isResponding = false;
    })
}

var call, player, asr, timer;
const defaultVoice = VoiceList.Microsoft.Neural.es_ES_LiaNeural

// Procesar la llamada entrante
VoxEngine.addEventListener(AppEvents.CallAlerting, (e) => {
    call = e.call
    const session = uuidgen()

    asr = VoxEngine.createASR({
        profile: ASRProfileList.Microsoft.es_ES,
        singleUtterance: true
    })
    // Procesar el resultado del ASR
    asr.addEventListener(ASREvents.Result, async (e) => {
        messages = e.text
        Logger.write("Enviando query '" + messages + "' al dto")
        // Tiempo de respuesta
        if (!isProcessing){
            await queryProc(messages,session)
        }
    }) 
    call.addEventListener(CallEvents.Connected, async (e) => {
        await queryProc('/start',session)
    })
    
    call.addEventListener(CallEvents.Disconnected, (e) => {
        VoxEngine.terminate()
    })
    
    call.answer()
})

scenario B:

require(Modules.ASR);
VoxEngine.addEventListener(AppEvents.CallAlerting, e => {
 e.call.startEarlyMedia();
 e.call.say("Hola melón, soy el contestador de las clínicas", VoiceList.Microsoft.Neural.es_ES_ElviraNeural);
 e.call.answer();
});

In the documentation I see this method:

const call = VoxEngine.callSIP("sips:[email protected]:5061", {
  callerid: "5510",
  displayName: "Steve Rogers",
  password: "shield",
  authUser: "captain",
 });

But I don't know how to integrate it into scenario A. Can you help?

Reasons:
  • Blacklisted phrase (0.5): I need
  • Blacklisted phrase (1): ¿
  • RegEx Blacklisted phrase (3): Can you help
  • Long answer (-1):
  • Has code block (-0.5):
  • Ends in question mark (2):
  • Self-answer (0.5):
  • Low reputation (1):
Posted by: Jesus Paul

79420768

Date: 2025-02-07 11:51:24
Score: 6 🚩
Natty:
Report link

I have data in sheet1 I want to place a few data based on multiple criteria onto another sheet I tried excel but couldn’t Can you guide with VBA

Reasons:
  • RegEx Blacklisted phrase (2.5): Can you guide
  • RegEx Blacklisted phrase (1): I want
  • Low length (1):
  • No code block (0.5):
  • Low reputation (1):
Posted by: Anil Kumar

79420766

Date: 2025-02-07 11:50:23
Score: 4
Natty: 4
Report link

I start using an Espressif ESP32-C3-Mini and I'm not able to get any data on the Monitor ! To see any return on the monitor window I need to change the Baud-Rate I.E 115200 to 9600 and then the monitor work. Can anyone try to test this code (using NimBLE-Arduino library see Github to download) :

#include <NimBLEDevice.h>

void setup()
{
    Serial.setTxTimeoutMs(0);  // Use it with USB CDC On Boot is enabled.
    Serial.begin(115200);
 //   delay(3000);  // Wait serial monitor

    Serial.println("Init the NimBLE...");
    NimBLEDevice::init(""); // Init the NimBLE

    Serial.println("NimBLE initialized!");
}

void loop() 
{
}

I try many setup on IDE (I use 1.8.19) but nothing works ... Any idea ? Thanks.

Reasons:
  • Blacklisted phrase (0.5): Thanks
  • Blacklisted phrase (1): but nothing work
  • Blacklisted phrase (0.5): I need
  • Long answer (-0.5):
  • Has code block (-0.5):
  • Ends in question mark (2):
  • Low reputation (1):
Posted by: vidalv

79420739

Date: 2025-02-07 11:42:21
Score: 4.5
Natty: 5.5
Report link

Smshggahahaggabshsuahaggahwbzhhza

Reasons:
  • Low length (2):
  • No code block (0.5):
  • Has no white space (0.5):
  • Single line (0.5):
  • Low reputation (1):
Posted by: Matt

79420728

Date: 2025-02-07 11:37:19
Score: 4.5
Natty:
Report link

Had a lot of issues with this, found a native solution provided by Apple after three days: https://stackoverflow.com/a/79420711/11890457

Reasons:
  • Blacklisted phrase (1): stackoverflow
  • Probably link only (1):
  • Low length (1):
  • No code block (0.5):
  • Single line (0.5):
  • Low reputation (0.5):
Posted by: Nikola Matijevic

79420715

Date: 2025-02-07 11:33:16
Score: 10 🚩
Natty: 4.5
Report link

Did you find a solution? I have the exact same issue

Reasons:
  • RegEx Blacklisted phrase (3): Did you find a solution
  • Low length (1.5):
  • No code block (0.5):
  • Me too answer (2.5): I have the exact same issue
  • Contains question mark (0.5):
  • Single line (0.5):
  • Starts with a question (0.5): Did you find a solution
  • Low reputation (1):
Posted by: Samoht

79420707

Date: 2025-02-07 11:29:15
Score: 4
Natty:
Report link

https://github.com/tmds/Tmds.Ssh is a modern .NET SSH client library that supports certificates.

Reasons:
  • Probably link only (1):
  • Low length (1.5):
  • No code block (0.5):
  • Single line (0.5):
  • Starts with a question (0.5): is a
Posted by: Tom Deseyn

79420701

Date: 2025-02-07 11:27:13
Score: 10.5 🚩
Natty: 5
Report link

Did you get any solution for this.I have to work on same kind of requirement. Can you share your implementation if your's is working.

Reasons:
  • Blacklisted phrase (1.5): any solution
  • RegEx Blacklisted phrase (2.5): Can you share your
  • RegEx Blacklisted phrase (3): Did you get any solution
  • Low length (1):
  • No code block (0.5):
  • Single line (0.5):
  • Starts with a question (0.5): Did you
  • Low reputation (1):
Posted by: Lakshmi Adari

79420698

Date: 2025-02-07 11:26:12
Score: 4
Natty:
Report link

https://github.com/tmds/Tmds.Ssh is a modern .NET SSH client library that supports certificates.

Reasons:
  • Probably link only (1):
  • Low length (1.5):
  • No code block (0.5):
  • Single line (0.5):
  • Starts with a question (0.5): is a
Posted by: Tom Deseyn

79420639

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

but.... our problem is a little bit more complicated as we want to use column definitions for a datatable. with c:set the value will not be displayed because it refers to the "var" attribute of the datatable. here a short sample

so first datatable doesn't display data and 2nd datatable displays the data but we can't implement a loop for each column inside datatable.

is there any other solution?

here a short sample

TestView.xhtml

import at.sozvers.kgkk.faces.ViewScoped;
import jakarta.annotation.PostConstruct;
import jakarta.inject.Named;

@ViewScoped
@Named("testView")
public class TestView implements Serializable
{
    private static final long serialVersionUID = 4290918565613185179L;

    private List<Product> products = new ArrayList<>();;

    @PostConstruct
    public void init()
    {
        if (products.isEmpty())
        {
            products.add(new Product(1000, "f230fh0g3", "Bamboo Watch"));
            products.add(new Product(1001, "nvklal433", "Black Watch"));
            products.add(new Product(1002, "zz21cz3c1", "Blue Band"));
        }
    }

    public List<Product> getProducts()
    {
        return products;
    }

    public void setProducts(List<Product> products)
    {
        this.products = products;
    }
}

test.xhtml

    <h:head>
    <title>PF TEST VIEW</title>
    </h:head>
    <h:body id="body">
    <!-- bean and dto definitions -->
    <ui:param name="bean" value="#{testView}" />
    <ui:param name="DTO_List" value="#{bean.products}" />
    <ui:param name="count_columns_max" value="3" />
    <ui:param name="updateViewSpecificComponents" value="#{datatableId}" />
    <h:form id="form">
    <!-- initialize all columns for 1st datatable -->
    <c:forEach begin="1" end="#{count_columns_max}" var="idx">
    <c:set var="#{'column'.concat(idx).concat('_label')}" value="" scope="view" />
    <c:set var="#{'column'.concat(idx).concat('_value')}" value="" scope="view" />
    </c:forEach>
    <!-- define view specific columns for 1st datatable -->
    <c:set var="column1_label" value="Id" scope="view" />
    <c:set var="column1_value" value="#{data.id}" scope="view" />
    <c:set var="column2_label" value="Code" scope="view" />
    <c:set var="column2_value" value="#{data.code}" scope="view" />
    <c:set var="column3_label" value="Name" scope="view" />
    <c:set var="column3_value" value="#{data.name}" scope="view" />
    <ui:param name="datatable_rowKey" value="#{data.id}" />
    <ui:param name="datatableId" value="dataTable1" />
    <h2>DATATABLE 1: with c:set vor value</h2>
    <p></p>
    <div>
    <p:dataTable id="#{datatableId}" value="#{DTO_List}" var="data" rowKey="#{datatable_rowKey}">
    <c:forEach begin="1" end="#{count_columns_max}" var="idx">
    <p:column headerText="#{viewScope['column' += idx += '_label']}">
    <h:outputText value="#{viewScope['column' += idx += '_value']}" />
    </p:column>
    </c:forEach>
    </p:dataTable>
    </div>
    <!-- initialize all columns for 2nd datatable -->
    <c:forEach begin="1" end="#{count_columns_max}" var="idx">
    <c:set var="#{'column'.concat(idx).concat('_label')}" value="" scope="view" />
    <ui:param name="#{'column'.concat(idx).concat('_value')}" value="" />
    </c:forEach>
    <!-- define view specific columns for 2nd datatable -->
    <c:set var="column1_label" value="Id" scope="view" />
    <ui:param name="column1_value" value="#{data.id}" />
    <c:set var="column2_label" value="Code" scope="view" />
    <ui:param name="column2_value" value="#{data.code}" />
    <c:set var="column3_label" value="Name" scope="view" />
    <ui:param name="column3_value" value="#{data.name}" />
    <ui:param name="datatable_rowKey" value="#{data.id}" />
    <ui:param name="datatableId" value="dataTable2" />
    <h2>DATATABLE 2: with ui:param for value</h2>
    <p></p>
    <div>
    <p:dataTable id="#{datatableId}" value="#{DTO_List}" var="data" rowKey="#{datatable_rowKey}">
    <p:column headerText="#{viewScope['column1_label']}">
    <h:outputText value="#{column1_value}" />
    </p:column>
    <p:column headerText="#{viewScope['column2_label']}">
    <h:outputText value="#{column2_value}" />
    </p:column>
    <p:column headerText="#{viewScope['column3_label']}">
    <h:outputText value="#{column3_value}" />
    </p:column>
    </p:dataTable>
    </div>
    </h:form>
    </h:body>
Reasons:
  • Blacklisted phrase (1): is there any
  • Long answer (-1):
  • Has code block (-0.5):
  • Ends in question mark (2):
  • Self-answer (0.5):
  • Looks like a comment (1):
  • Low reputation (1):
Posted by: Andrew Churchill

79420618

Date: 2025-02-07 11:04:06
Score: 4
Natty:
Report link

I just wrote a big rant about this on Reddit:

https://www.reddit.com/r/arm/comments/1igprj8/arm_branch_prediction_hardware_is_fubar/

I present an example there where the condition codes are set 14 instructions in advance, and at least 40 clock cycles.

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

79420569

Date: 2025-02-07 10:46:00
Score: 10 🚩
Natty: 6.5
Report link

@Jreppe I have the same problem with "value of formula". Can you show me how you solved the problem, please? :)

Reasons:
  • Blacklisted phrase (1): I have the same problem
  • RegEx Blacklisted phrase (2.5): Can you show me how you
  • Low length (1):
  • No code block (0.5):
  • Me too answer (2.5): I have the same problem
  • Contains question mark (0.5):
  • User mentioned (1): @Jreppe
  • Low reputation (1):
Posted by: colaidolie

79420526

Date: 2025-02-07 10:26:55
Score: 4.5
Natty:
Report link

this is not the answer to your challenge. And I hope that after 3 years my message will be seen.

Regarding your application, it seems that you have the problem that you want your application to be closed by swiping the application. And this is the opposite for us. We have bluetooth app. And when the program is swiped, Everything breaks, and we don't want that to happen, Like this is the case with you. And I want you to help me to make the app not close when I swipe to connect bluetooth. What have you done that the bluetooth connection does not close?

Please contact me here or on my email([email protected]). I'm really mad about the bluetooth running in the background thing.

Reasons:
  • Blacklisted phrase (1): help me
  • Blacklisted phrase (0.5): contact me
  • Blacklisted phrase (1): Please contact me
  • RegEx Blacklisted phrase (1): I want
  • Long answer (-0.5):
  • No code block (0.5):
  • Contains question mark (0.5):
  • Low reputation (0.5):
Posted by: Iman Ghasemi Arani

79420523

Date: 2025-02-07 10:26:53
Score: 6 🚩
Natty:
Report link

Unhandled Exception: NoSuchMethodError: The method '+' was called on null. i am getting same error in the code of background service code where i am storing the pedometer steps to the sqlite db on daily basis.

Reasons:
  • RegEx Blacklisted phrase (1): i am getting same error
  • Low length (0.5):
  • No code block (0.5):
  • Me too answer (2.5): i am getting same error
  • Unregistered user (0.5):
  • Low reputation (1):
Posted by: user29545517

79420423

Date: 2025-02-07 09:54:44
Score: 4
Natty:
Report link

oh my god,how to resolve this problem on Eclipse 2025

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

79420397

Date: 2025-02-07 09:43:39
Score: 7.5 🚩
Natty:
Report link

I'm new to debezium and could you share how to get that data and create visualization like that. Is there any other information to tracking debezium's activities. Sorry for that my English is not good at all.

Reasons:
  • Blacklisted phrase (1): Is there any
  • RegEx Blacklisted phrase (2.5): could you share how
  • RegEx Blacklisted phrase (1.5): I'm new
  • Low length (0.5):
  • No code block (0.5):
  • Single line (0.5):
  • Low reputation (1):
Posted by: thaison

79420395

Date: 2025-02-07 09:43:39
Score: 4.5
Natty:
Report link

I believe it is a bug. I have created a GitHub issue: https://github.com/liquibase/liquibase/issues/6711

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

79420333

Date: 2025-02-07 09:26:34
Score: 8.5 🚩
Natty: 5
Report link

user23292793 Hi. Can you show a working variant of the code for ADC interrupt mode on cmsis?

Reasons:
  • RegEx Blacklisted phrase (2.5): Can you show
  • Low length (1):
  • No code block (0.5):
  • Ends in question mark (2):
  • Unregistered user (0.5):
  • User mentioned (1): user23292793
  • Low reputation (1):
Posted by: Ihar

79420311

Date: 2025-02-07 09:18:31
Score: 4
Natty: 5
Report link

Perfect solution! Thank you. This was causing me great mental trauma.

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

79420289

Date: 2025-02-07 09:06:26
Score: 6.5
Natty: 7
Report link

I want to ask something else... It is not the data that I label as a class, some of the attributes I use are ordinal (1-5 Likert scale) and I want to classify in Weka, I do not want to leave this data numerical or nominal, but how can I use it as ordinal?

Reasons:
  • Blacklisted phrase (0.5): how can I
  • RegEx Blacklisted phrase (1): I want
  • Low length (0.5):
  • No code block (0.5):
  • Ends in question mark (2):
  • Unregistered user (0.5):
  • Single line (0.5):
  • Low reputation (1):
Posted by: ysmn

79420208

Date: 2025-02-07 08:35:18
Score: 4
Natty:
Report link

Using the same directive in the Environment Varaible work like a sharm:

enter image description here

Hope helps.

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

79420180

Date: 2025-02-07 08:26:14
Score: 6 🚩
Natty:
Report link

I have had the same issue but my problem is that I dont want to start the file I want to open it in VsCode itself what should I do, as I am getting an error $ code chapter1.txt bash: code: command not found

Reasons:
  • Blacklisted phrase (2): what should I do
  • RegEx Blacklisted phrase (1): I want
  • RegEx Blacklisted phrase (1): I am getting an error
  • Low length (0.5):
  • No code block (0.5):
  • Low reputation (1):
Posted by: parihar anjali

79420164

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

Did you fing the solution? i need to fix the same issues

Reasons:
  • Blacklisted phrase (0.5): i need
  • Low length (1.5):
  • No code block (0.5):
  • Contains question mark (0.5):
  • Single line (0.5):
  • Starts with a question (0.5): Did you
  • Low reputation (1):
Posted by: Lals

79420121

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

I'm having the same experience, and I suspect it may be a regional issue. Have you tried using a VPN and then restart your CodeGPT/VSCode to see if that resolves the problem?

Reasons:
  • Whitelisted phrase (-1): Have you tried
  • RegEx Blacklisted phrase (1.5): resolves the problem?
  • Low length (1):
  • No code block (0.5):
  • Ends in question mark (2):
  • Single line (0.5):
  • Low reputation (0.5):
Posted by: m.musni

79420101

Date: 2025-02-07 07:55:03
Score: 9 🚩
Natty: 4.5
Report link

sorry to bother you, has your issue been resolved? I am facing the same problem.

Reasons:
  • Blacklisted phrase (1): m facing the same problem
  • RegEx Blacklisted phrase (1.5): resolved?
  • Low length (1.5):
  • No code block (0.5):
  • Me too answer (2.5): I am facing the same problem
  • Contains question mark (0.5):
  • Single line (0.5):
  • Low reputation (1):
Posted by: user29543664

79420080

Date: 2025-02-07 07:45:59
Score: 6.5 🚩
Natty:
Report link
I'm trying to do a manual signing with dnssec-signzone with this 
command:
dnssec-signzone -t -N INCREMENT -o gentil.cat -f 
/etc/bind/gentil.cat.signed 
gentil.cat Kgentil.cat.+013+17694.key Kgentil.cat.+013+06817.key

This is my zone archive (it's named gentil.cat.hosts and it is in 
/etc/bind)
Screenshot of the archive:
https://i.sstatic.net/lQUPTvy9.png

And then the result of the command is this:
https://i.sstatic.net/f55JRMh6.png

Here is a screenshot with all de archives I have in /etc/bind
https://i.sstatic.net/ziubA75n.png
Note: "signat" is "signed" in catalan

Please can you help me?
Thanks
Reasons:
  • Blacklisted phrase (0.5): Thanks
  • Blacklisted phrase (1): help me
  • RegEx Blacklisted phrase (3): can you help me
  • Long answer (-0.5):
  • Has code block (-0.5):
  • Ends in question mark (2):
  • Low reputation (1):
Posted by: Adrià Gentil Solà

79420063

Date: 2025-02-07 07:39:56
Score: 9 🚩
Natty: 5.5
Report link

I am also facing this error since last month. did you happen to find a fix for this?

Reasons:
  • Blacklisted phrase (1): also facing this
  • RegEx Blacklisted phrase (1.5): fix for this?
  • RegEx Blacklisted phrase (1): I am also facing this error
  • Low length (1.5):
  • No code block (0.5):
  • Ends in question mark (2):
  • Single line (0.5):
  • Low reputation (1):
Posted by: Temporary Juxtaposition

79420037

Date: 2025-02-07 07:24:52
Score: 4
Natty: 5
Report link

I am currently in the same boat with setting up egress gateway using mTLS at origination. In our case we want to terminate ssl connection at gateway and then establish new mTLS connection via destination rule and following the doc doesn’t seems to be working. Currently setting this in GKE ASM managed and using gateway api for gateway deployment. When test http://externalservixe.com errors out 503 server unavailable error. Openssl vtls1.3 failed to verify certificate. Any tips or steps is appreciated. Istio documentation is very confusing. Thanks!

Reasons:
  • Blacklisted phrase (0.5): Thanks
  • Blacklisted phrase (1): appreciated
  • Blacklisted phrase (1): Any tips
  • Long answer (-0.5):
  • No code block (0.5):
  • Single line (0.5):
  • Low reputation (1):
Posted by: Ash

79419905

Date: 2025-02-07 03:07:11
Score: 5
Natty: 4
Report link

I have the same problem, and I think it is caused by the fact that I had Spyder installed separately before I installed Anaconda. The solution for me was to select the anaconda python path. In Spyder, click on the pyhton icon and make sure it points to anaconda and un-check the separate spyder installation root.

Spyder Python Icon

Then go to file and from the drop down click restart to restart the Sypedr application. This seems to solve the problem.

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