79234086

Date: 2024-11-28 13:35:40
Score: 2.5
Natty:
Report link

I have some tools that can do this. See https://github.com/clach04/puren_tonbo?tab=readme-ov-file#vimcrypt

Supports both cat-like operations as well as recursive grep-like tools.

Note only supports reading / decrypting vimcrypt version 1-3.

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

79234082

Date: 2024-11-28 13:34:39
Score: 2
Natty:
Report link

note: This error originates from a subprocess, and is likely not a problem with pip. ERROR: Failed building wheel for TA-Lib Failed to build TA-Lib ERROR: ERROR: Failed to build installable wheels for some pyproject.toml based projects (TA-Lib)

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

79234081

Date: 2024-11-28 13:34:39
Score: 3
Natty:
Report link

In profiles.yml file you can include sslmode:disable .let me know if you need further clarification

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

79234080

Date: 2024-11-28 13:32:39
Score: 4
Natty:
Report link

i am having the same problem now, when i try to migrate with truffle, that error appears.

Deploying 'Migrations'

*** Deployment Failed ***

"Migrations" hit an invalid opcode while deploying. Try:

Exiting: Review successful transactions manually by checking the transaction hashes above on Etherscan.

Reasons:
  • No code block (0.5):
  • Me too answer (2.5): i am having the same problem
  • Low reputation (1):
Posted by: Jose Emilio

79234076

Date: 2024-11-28 13:32:38
Score: 0.5
Natty:
Report link

For everyone who is looking for a up-to-date solution (in 2024): The spring-for-graphql framework is providing a graphql-request-interceptor. We can use such an interceptor to put all the request headers into the graphql-context.

/**
 * Interceptor that extracts headers from the request and adds them to the GraphQL context.
 * This allows you to access them in your GraphQL resolvers via '@ContextValue'.
 */
@Component
class GraphQlRequestHeaderInterceptor(
    private val log: KLogger = KotlinLogging.logger {}
) : WebGraphQlInterceptor {

    override fun intercept(request: WebGraphQlRequest, chain: Chain): Mono<WebGraphQlResponse> {
        val headers = getHeadersFromRequest(request)
        log.trace { "Found ${headers.size} headers that will be added to the GQL-context: $headers" }
        addHeadersToGraphQLContext(request, headers)
        return chain.next(request)
    }

    private fun getHeadersFromRequest(request: WebGraphQlRequest): Map<String, Any> {
        return request.headers.mapValues { it.value.first() }
    }

    private fun addHeadersToGraphQLContext(
        request: WebGraphQlRequest, customHeaders: Map<String, Any>
    ) = request.configureExecutionInput { _, builder ->
        builder.graphQLContext(customHeaders).build()
    }
}

After that, we can access the headers by marking method-parameters in our resolvers with @ContextValue. You can find a full solution on Medium & GitHub:

@Controller
class AddTaskController(private val useCase: AddTaskUseCase) {

    private val log = KotlinLogging.logger {}

    @MutationMapping
    fun addTask(
        @Argument payload: TaskInput,
        @ContextValue(X_USER_ID) userId: String
    ): TaskDto {
        log.debug { "Received graphql-request to add task: $payload" }
        val command = payload.toAddTaskCommand(userId)
        val task = useCase.addTask(command)
        return TaskDto.from(task)
    }
}
Reasons:
  • Contains signature (1):
  • Long answer (-1):
  • Has code block (-0.5):
  • Low reputation (1):
Posted by: emaarco

79234070

Date: 2024-11-28 13:31:38
Score: 3
Natty:
Report link

This actually works for me !!! The issue actually comes from the fact that Node.js JavaScript Runtime is not enabled in the Inbound rules in the Firewall. After enabling it, I can finally run the app on Expo Go on my iPhone. https://stackoverflow.com/a/70785955/9207104

enter image description here

Reasons:
  • Blacklisted phrase (1): stackoverflow
  • Whitelisted phrase (-1): works for me
  • Probably link only (1):
  • Low length (0.5):
  • No code block (0.5):
  • Low reputation (1):
Posted by: Yeon

79234064

Date: 2024-11-28 13:29:38
Score: 1.5
Natty:
Report link

My findings on a Chromebook:

  1. You don't need Android Studio open. Running DHU on a terminal is enough.
  2. You need to enable the USB device on Linux. This option is presented in the notification area when you connect your phone to chromebook.
  3. I was able to Connect using ADB tunneling. Other method didn't work no matter what I tried.
Reasons:
  • Low length (0.5):
  • No code block (0.5):
  • Low reputation (0.5):
Posted by: Cagin Uludamar

79234057

Date: 2024-11-28 13:27:37
Score: 1.5
Natty:
Report link

I hope this solves your problem.

  1. Check if the .env.local file is correctly located in the root.
  2. Use console.log(process.env) to debug which variables are available.
  3. Ensure dotenv is installed and correctly loaded if running outside Next.js.
  4. Ensure you are not adding the NEXT_PUBLIC_ prefix to MONGODB_URI, as it is meant for server-side usage.

Thanks. Good Luck!

Reasons:
  • Blacklisted phrase (0.5): Thanks
  • No code block (0.5):
  • Low reputation (0.5):
Posted by: AlphaCoX

79234056

Date: 2024-11-28 13:26:37
Score: 4.5
Natty:
Report link

I hope my solution solves the issue you faced.

By default, process.env variables in Next.js are only available in the client and server-side code executed by Next.js. However, in your backend server, you need to ensure the environment variables are properly loaded.

Please try to use a .env.local file in the root of your project to define your environment variables.

In Next.js, environment variables used in the client-side code must start with NEXT_PUBLIC_. However, this does not apply to server-side code, including your database connection.

Ensure you are not adding the NEXT_PUBLIC_ prefix to MONGODB_URI, as it is meant for server-side usage.

Thanks in advance.

Reasons:
  • Blacklisted phrase (0.5): Thanks
  • RegEx Blacklisted phrase (3): Thanks in advance
  • Long answer (-0.5):
  • No code block (0.5):
  • Low reputation (1):
Posted by: AnJun Luo

79234050

Date: 2024-11-28 13:24:36
Score: 4
Natty: 6
Report link

en el string del updatecommand al capo de fecha pasarle un getdate()

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

79234024

Date: 2024-11-28 13:15:33
Score: 1
Natty:
Report link

Remember that - is forgotten before 'Name' and 'Force' in the first command of the powershell:

New-ItemProperty -Path "HKLM:\SYSTEM\CurrentControlSet\Services\stornvme\Parameters\Device" -Name   "ForcedPhysicalSectorSizeInBytes" -PropertyType MultiString -Force -Value "* 4095" 
Reasons:
  • Low length (0.5):
  • Has code block (-0.5):
  • Low reputation (1):
Posted by: Mahyar Tabari

79234022

Date: 2024-11-28 13:14:33
Score: 0.5
Natty:
Report link
  1. Set Up OAuth Authentication:Securely connect your Python application to the Clover API by configuring OAuth authentication. Obtain the necessary credentials, such as the client ID and client secret, and set up the authentication flow as per the Clover API documentation.
  2. Retrieve Merchant and Employee IDs:After successful authentication, fetch the Merchant ID and Employee ID from the Clover API. These identifiers are crucial for identifying your business and the authorized user within the payment gateway.
  3. Process Form Submissions:When a user submits a form in your Python application, initiate the integration process with the Clover payment gateway. This involves making appropriate API calls to the Clover API, using the credentials and identifiers obtained earlier, to start a payment transaction.
  4. Utilize Available Resources:To ensure you're following best practices and avoiding common mistakes, make use of Clover's official documentation, API reference, and any available tutorials or sample code. These resources can provide guidance on making API calls, handling responses, and troubleshooting issues. In summary, integrating the Clover payment gateway using Python involves setting up OAuth authentication, retrieving necessary IDs, processing form submissions, and utilizing available resources. By following these steps, you can ensure a smooth and secure integration process.
Reasons:
  • Long answer (-1):
  • No code block (0.5):
  • Low reputation (1):
Posted by: xiaowang

79234021

Date: 2024-11-28 13:14:33
Score: 10.5
Natty: 7.5
Report link

Have you managed to solve this?

Reasons:
  • Blacklisted phrase (3): Have you managed
  • RegEx Blacklisted phrase (1.5): solve this?
  • Low length (2):
  • No code block (0.5):
  • Ends in question mark (2):
  • Single line (0.5):
  • Low reputation (1):
Posted by: Esteban Vazquez

79234020

Date: 2024-11-28 13:14:33
Score: 1.5
Natty:
Report link

Yosys provides a yosys-config executable that allows you to build your C/C++ project in the same way and create a loadable plugin or link against the libyosys.so shared library. libyosys.so is undocummented, you can build it by running something like make ENABLE_LIBYOSYS=1.

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

79234016

Date: 2024-11-28 13:13:32
Score: 2.5
Natty:
Report link

If you want to create on a current commit a tag "v0.1", you can do the following:

git push https://[Your token]@github.com/[Your login]/[Name of repository].git v0.1

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

79234015

Date: 2024-11-28 13:11:32
Score: 1.5
Natty:
Report link

If using updated version then add the below lines into ESAPI.properties file.

ESAPI.Logger=org.owasp.esapi.logging.slf4j.Slf4JLogFactory

Logger.UserInfo=false

Logger.ClientInfo=false

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

79234009

Date: 2024-11-28 13:10:31
Score: 9.5 🚩
Natty: 5.5
Report link

Did you find out what was the issue ?

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

79234003

Date: 2024-11-28 13:07:30
Score: 5.5
Natty:
Report link

There is no event for that, neither any plans to implement it.

Reasons:
  • 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: SigmaTel71

79233992

Date: 2024-11-28 13:05:29
Score: 2.5
Natty:
Report link

Can't you use the value of the referer header? This should contain the page that you are coming from. You could check the domain and based on that decide where the user comes from. I doubt you want to do this with session variables/cookies.

Obviously the most reliable/foolproof method would be the one you ruled out: using query parameters.

In case you want more information, here you can read up on the referer header: https://developer.mozilla.org/en-US/docs/Web/HTTP/Headers/Referer

Keep in mind anyone can manipulate the value of this header.

Reasons:
  • No code block (0.5):
  • Contains question mark (0.5):
  • Starts with a question (0.5): Can't you use the
  • Low reputation (1):
Posted by: Tsukirid

79233978

Date: 2024-11-28 13:00:28
Score: 3.5
Natty:
Report link

Rename the *.adp file to *.mdb and you can open it with Access for Office 16

Reasons:
  • Low length (1.5):
  • No code block (0.5):
  • Single line (0.5):
  • Low reputation (1):
Posted by: Niall O'Dwyer

79233975

Date: 2024-11-28 13:00:28
Score: 1.5
Natty:
Report link

Windows 11 Pro, nowadays it's:

The settings: Apps-> Default apps-> Visual Studio 2022 doesn't have .sln as a possible choice...

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

79233966

Date: 2024-11-28 12:55:27
Score: 2
Natty:
Report link

Resolved in kotlin 2.0.21 & 2.1.0

For more details: https://youtrack.jetbrains.com/issue/KT-70700

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

79233961

Date: 2024-11-28 12:53:27
Score: 0.5
Natty:
Report link

Keep your Crystal-related dlls at .NET 4.8.

Later (AKA .NET Core) versions are not supported (due to COM dependencies in the Crystal runtime).

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

79233960

Date: 2024-11-28 12:53:27
Score: 1
Natty:
Report link

Finally, I have found how to do so:

statistic = list(
  all_continuous() ~ "{mean} ± ({sd})",
  all_categorical() ~ "{n} / {N} ({p}%)"
  ),
digits = list(
  all_continuous() ~ 2,
  all_categorical() ~ c(0, 0, 2))
Reasons:
  • Low length (0.5):
  • Has code block (-0.5):
  • Low reputation (1):
Posted by: Y.M.S

79233959

Date: 2024-11-28 12:53:27
Score: 2.5
Natty:
Report link

I'm trying to setup Databricks Asset Bundle and Terraform on an Azure DevOps Pipeline with Windows Agent. I'm restricted to not use internet hence cannot download the binaries databricks.exe, terraform.exe, and terraform-provider-databricks_v1.xx.zip file through repository.

As an alternative, I'm trying below:

When I run the repo/assets/databricks.exe it tries to download Terraform from internet but I overwrite it by providing DATABRICKS_TF_EXEC_PATH to the repo/assets/terraform.exe path. It is working.

Now Terraform tries to download Databricks provider, for that I added a configuration file to repo/assets/config.tfrc with env variable DATABRICKS_CLI_CONFIG_FILE pointing to that path along with DATABRICKS_TF_PROVIDER_VERSION=1.55.0. TF provider path is repo/assets/terraform/databricks/terraform-provider-databricks_v1.55.0.zip.

here is the config.tfrc file content:

provider_installation {
    filesystem_mirror {
        path = "C:/a/1/s/assets/databricks/terraform-provider-databricks_v1.55.0.zip"
    }
    direct {
        exclude = [
            "registry.terraform.io/databricks/databricks",
            "registry.terraform.io/*/*",
            "https://registry.terraform.io/.well-known/terraform.json",
            "https://registry.terraform.io/.well-known/*",
            "https://registry.terraform.io/*/*",
            ]
    }
}

So configuration file is picking up the zip file but still below error:

11:39:13 ERROR Error: terraform init: exit status 1
Error: Failed to query available provider packages
Could not retrieve the list of available versions for provider
databricks/databricks: could not connect to registry.terraform.io: failed to
request discovery document: Get
"https://registry.terraform.io/.well-known/terraform.json": EOF

Do you have any advice on this? I do not have internet connection so everything must come from local.

Reasons:
  • RegEx Blacklisted phrase (2.5): Do you have any
  • Long answer (-1):
  • Has code block (-0.5):
  • Contains question mark (0.5):
  • Low reputation (1):
Posted by: StackOverflowUser

79233958

Date: 2024-11-28 12:52:26
Score: 4
Natty:
Report link

I solve this problem with installing CH340 driver.

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

79233957

Date: 2024-11-28 12:52:26
Score: 0.5
Natty:
Report link

in template strings (like ...${btn}... ) the replacement values are converted to their String representation ([object HTMLButtonElement] here).

inner-/outerHTML are considered unsafe and slow. There are several alternatives to inject html into an existing element. In the snippet append is used. For handling the button, by the way, the snippet uses event delegation.

See also ...

document.addEventListener(`click`, handle);

// ↓ create a button with class .doclickme
const btn = Object.assign(document.createElement('button'), {className: `doclickme` });

// ↓ append text to the button
btn.append(document.createTextNode(`do click me!`));

// ↓ append the button to the div
document.querySelector(`div`).append(btn);

// ↓ the document wide handling function
function handle(evt) {
  if ( evt.target.closest(`.doclickme`) ) {
    console.clear();
    return console.log(`Hi. I am indeed added dynamically`);
  }
}
<div>
  Please give me a button!
</div>

Reasons:
  • RegEx Blacklisted phrase (2.5): Please give me
  • Contains signature (1):
  • Long answer (-0.5):
  • Has code block (-0.5):
  • High reputation (-2):
Posted by: KooiInc

79233954

Date: 2024-11-28 12:51:26
Score: 2
Natty:
Report link

From Slack support:

For messages posted via the Slack API, we currently only support attaching image files via the slack_file or image block. Alternatively, you could try using remote files to see if that works for you - https://api.slack.com/messaging/files#remote

If remote files doesn't work, your best bet is option 4 to be honest. Sorry for the bad news here.

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

79233953

Date: 2024-11-28 12:51:26
Score: 3
Natty:
Report link

Try https://www.flexihub.com/ It’s easy to use. Install it on both computers, then connect the remote port to your host from the computer you need.

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

79233948

Date: 2024-11-28 12:50:26
Score: 2.5
Natty:
Report link

Evolving the schema doesn't mean you can have incompatible types, only that new nullable columns can be added, see here for more details: https://stackoverflow.com/a/67114160/1028537 and upvote that answer.

Reasons:
  • Blacklisted phrase (1): stackoverflow
  • Blacklisted phrase (0.5): upvote
  • Low length (1):
  • No code block (0.5):
  • Single line (0.5):
  • High reputation (-1):
Posted by: Chris

79233947

Date: 2024-11-28 12:50:26
Score: 0.5
Natty:
Report link

To update on this question for anyone that comes after, recently there is a feature in Keycloak that allows to authenticate with the Google token on Keycloak API. It's called Token Exchange.

This is currently a preview feature, so it needs to be enabled by passing some feature flags --features=token-exchange,admin-fine-grained-authz

You can read more about it in this issue in Github, where everything is explained in more detail.

Then just enable token exchange on Keycloak and send the token to the keycloak endpoint /realms/{realm-name}/protocol/openid-connect/token

Reasons:
  • Blacklisted phrase (1): update on this
  • Long answer (-0.5):
  • Has code block (-0.5):
  • Low reputation (0.5):
Posted by: therock24

79233946

Date: 2024-11-28 12:49:25
Score: 2
Natty:
Report link

I also had this problem but when I run it only shows dotnet. But when I changed the app version from 2.1 to 2.2 it got solved and now it shows IIS Esxpress.

for the show hosting process name following code //System.Diagnostics.Process.GetCurrentProcess().ProcessName

Reasons:
  • Low length (0.5):
  • No code block (0.5):
  • Low reputation (1):
Posted by: 2mahesh tukadiya

79233936

Date: 2024-11-28 12:46:24
Score: 2
Natty:
Report link

Android Studio run/debug button

I had MainActivity selected here, therefore MainActivity ran instead of app. Took me half hour to figure this. I should have inadvertently selected Main and did not pay attention when click to run.

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

79233923

Date: 2024-11-28 12:43:24
Score: 2
Natty:
Report link

The error has been fixed as my imports were incorrect , I was not using use crate::controllers.., I was directly importing use controllers::.., The working code is at this commit

Reasons:
  • Low length (1):
  • Has code block (-0.5):
  • Self-answer (0.5):
  • Single line (0.5):
  • Low reputation (0.5):
Posted by: Shivank Anchal

79233920

Date: 2024-11-28 12:43:24
Score: 1.5
Natty:
Report link

Try update gradle version to this:

distributionUrl=https\://services.gradle.org/distributions/gradle-7.4.2-all.zip
Reasons:
  • Low length (1):
  • Has code block (-0.5):
  • Low reputation (1):
Posted by: AzPsu

79233916

Date: 2024-11-28 12:41:22
Score: 4.5
Natty: 5
Report link

It's a false positive, Check the official Documentation https://docs.flutter.dev/reference/security-false-positives

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

79233904

Date: 2024-11-28 12:36:20
Score: 3.5
Natty:
Report link

Copy your static folder inside public_html

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

79233901

Date: 2024-11-28 12:36:20
Score: 2.5
Natty:
Report link

This site is best viewed in Firefox 29+ and Chrome 34+ at 1024 by 768 resolution. Designed and Hosted By: National Informatics Center - UP State Unit ,

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

79233898

Date: 2024-11-28 12:36:20
Score: 4.5
Natty:
Report link

I have been to resolve issue by giving "/" in Override backend path in backend settings enter image description here

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: Vaibhav Mittal

79233893

Date: 2024-11-28 12:34:20
Score: 1
Natty:
Report link

As mentioned by @ben-manes cleanUp() needs to be called prior factors.asMap().keys

Reasons:
  • Low length (1.5):
  • Has code block (-0.5):
  • User mentioned (1): @ben-manesneeds
  • Self-answer (0.5):
  • Single line (0.5):
  • High reputation (-2):
Posted by: pixel

79233886

Date: 2024-11-28 12:31:19
Score: 3
Natty:
Report link

Over loaded and Over Ridden is not the same .... Two different words not meaning the Same thing here ! Over Loaded is not NO-WHERE near a Contradiction at all .

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

79233884

Date: 2024-11-28 12:29:18
Score: 10 🚩
Natty:
Report link

Did you find out the solution to this? I'm facing a similar problem

Reasons:
  • RegEx Blacklisted phrase (3): Did you find out the solution to this
  • Low length (1.5):
  • No code block (0.5):
  • Me too answer (2.5): I'm facing a similar problem
  • Contains question mark (0.5):
  • Single line (0.5):
  • Starts with a question (0.5): Did you find
  • Low reputation (1):
Posted by: James Hunter

79233882

Date: 2024-11-28 12:28:17
Score: 4
Natty: 4.5
Report link

Apparently it is possible as per bitbucket documentation: https://confluence.atlassian.com/bbkb/building-multi-architecture-docker-images-with-bitbucket-pipelines-1252329371.html

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

79233877

Date: 2024-11-28 12:27:17
Score: 1
Natty:
Report link

I have a similar requirement (see here) and thought it useful to add @adamo89's comment in a new post as runnable code:

locals {
  vpc = {
    for k, v in var.vpcs : k =>
    k != "mgmt" ?
    [
      for i in range(2 * var.amount_of_az) : (
        i <= 2 ?
        (cidrsubnet(v.cidr_block, 8, i + 10)) :
        (cidrsubnet(v.cidr_block, 8, i + 20 - var.amount_of_az))
      )
    ] :
    [for i in range(0, var.amount_of_az) : cidrsubnet(v.cidr_block, 8, i)]
  }

}

variable "vpcs" {
  type = object({
    mgmt = object({
      cidr_block = string
    })
    dev = object({
      cidr_block = string
    })
  })

  default = {
    mgmt = {
      cidr_block = "10.10.0.0/16"
    },
    dev = {
      cidr_block = "10.20.0.0/16"
    }
  }
}

variable "amount_of_az" {
  type    = number
  default = 3
}

output "vpc" {
  value = local.vpc
}
Reasons:
  • Long answer (-0.5):
  • Has code block (-0.5):
  • User mentioned (1): @adamo89's
  • Low reputation (1):
Posted by: Robin Bowes

79233871

Date: 2024-11-28 12:25:16
Score: 3
Natty:
Report link
  1. Open Settings > Keymap > Change it to anything other than Windows, and press OK button, then close IntelliJ enter image description here
  2. Change it back to Windows and press OK. That's it you are good to go enter image description here
Reasons:
  • Probably link only (1):
  • Low length (1):
  • No code block (0.5):
  • Low reputation (0.5):
Posted by: Absaar Hunzai

79233856

Date: 2024-11-28 12:20:14
Score: 3
Natty:
Report link

I am facing a related error. A package was working from Visual Studio but failed while running from the SQL job.

The SSIS catalog says, "Cannot open the data file." One difference is that I'm using a flat file connection manager with a dynamics file string. So, a workaround for this kind of issue is you set a test file path into the variable and deploy the package, it will solve the error.

Thanks Abdul Majeed

Reasons:
  • Blacklisted phrase (0.5): Thanks
  • Contains signature (1):
  • No code block (0.5):
  • Low reputation (1):
Posted by: Abdul Majeed

79233847

Date: 2024-11-28 12:17:13
Score: 0.5
Natty:
Report link

at least a viable alternative. Your answer can say “don’t do that,” but it should also say “try this instead.” Any answer that fully addresses at least part of the question is helpful and can get the asker going in the right direction. State any limitations, assumptions or simplifications in your answer. Brevity is acceptable, but fuller explanations are better.

Provide context for links

Reasons:
  • Whitelisted phrase (-1): try this
  • No code block (0.5):
  • Low reputation (1):
Posted by: Awais Anwar

79233842

Date: 2024-11-28 12:16:13
Score: 1
Natty:
Report link

Coming late to this question, but now you can use BCP47J, a Java library that provides several functions related to BCP47 language tags.

Reasons:
  • Whitelisted phrase (-1.5): you can use
  • Low length (1):
  • No code block (0.5):
  • Single line (0.5):
  • Low reputation (0.5):
Posted by: Rodolfo M. Raya

79233837

Date: 2024-11-28 12:14:12
Score: 1
Natty:
Report link

Simple Answer - There are six types of Header Tags.

How to Write in the Code ->

<h1>This is heading 1</h1>
<h2>This is heading 2</h2>
<h3>This is heading 3</h3>
<h4>This is heading 4</h4>
<h5>This is heading 5</h5>
<h6>This is heading 6</h6>

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

79233830

Date: 2024-11-28 12:12:12
Score: 2
Natty:
Report link

You will need to add a sidecar container (with a CWAgent or something like Vector) to the Vault pods, and write the audit log into the file located in a directory shared between Vault and this container. This sidecar will be responsible for watching the file, parsing it, and forwarding the logs to CloudWatch Logs.

Reasons:
  • Low length (0.5):
  • No code block (0.5):
  • Single line (0.5):
  • Low reputation (0.5):
Posted by: ei-grad

79233826

Date: 2024-11-28 12:10:11
Score: 1.5
Natty:
Report link

Somehow, switching from gevent to threads resolves the problem.

$ celery -A WEBAPPLIAL worker -l info -P threads 100
Reasons:
  • Low length (1):
  • Has code block (-0.5):
  • Self-answer (0.5):
  • Low reputation (0.5):
Posted by: Mougnou

79233816

Date: 2024-11-28 12:07:10
Score: 4.5
Natty:
Report link

The official Spring Batch documentation has a page dedicated to this: https://docs.spring.io/spring-batch/reference/step/chunk-oriented-processing/commit-interval.html#page-title

Is that what you are looking for?

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

79233814

Date: 2024-11-28 12:07:10
Score: 0.5
Natty:
Report link

I don't know why, but I checked my latest changes in my home directory and found that .config/gtk-3.0/settings.ini and .gtkrc-2.0 had the following change:

-gtk-icon-theme-name=Papirus-Dark-Maia
+gtk-icon-theme-name=breeze-dark

Going back to the Papirus-Dark-Maia icon theme solved the audio and video problem. However it didn't solve the bluetooth output, and vlc video stopped working.

Reasons:
  • Has code block (-0.5):
  • Self-answer (0.5):
  • Low reputation (0.5):
Posted by: Miguel Fernández

79233804

Date: 2024-11-28 12:04:10
Score: 1.5
Natty:
Report link

Please include a minimal reproducible example when you ask a question.

For now I have made one with your code. https://editor.p5js.org/Metabyte/sketches/l10Cctomw

There doesn't seem to be any stutters when running this version, so the system you must be running on has to have someone else making the mainloop busy.

Try running this sketch on another machine and see if the stutters still continue.

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

79233798

Date: 2024-11-28 12:03:09
Score: 5
Natty: 4
Report link

Hello I want to know the sse timeout, is it a timeout between two packets, or a timeout for the entire link length? From the phenomena I tested, he showed a timeout of the entire link length, for example: SseEmitter emitter = new SseEmitter(30 * 1000L); 2024-11-28 19:45:07.082 [http-nio-8080-exec-1] INFO cn.kaipuyun.chatapi.controller.v1.ChatController:76 - 建立连接 2024-11-28 19:45:37.215 [http-nio-8080-exec-3] WARN o.s.w.s.m.support.DefaultHandlerExceptionResolver:537 - Async request timed out

enter image description here

Reasons:
  • Blacklisted phrase (1): I want to know
  • Blacklisted phrase (1): enter image description here
  • RegEx Blacklisted phrase (1): I want
  • No code block (0.5):
  • Contains question mark (0.5):
  • Low reputation (1):
Posted by: user28507409

79233792

Date: 2024-11-28 12:01:08
Score: 1
Natty:
Report link

I just faced similar issue and I've work around for this

Just add a delay of mew milliseconds or one second like this before calling play() method

await Future.delayed(const Duration(seconds: 1));

Again This is just a work around;)

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

79233781

Date: 2024-11-28 11:57:07
Score: 1.5
Natty:
Report link

As of springboot 3.4, it has builtin support for that, by using @Bean(defaultCandidate=false)

see https://github.com/spring-projects/spring-boot/wiki/Spring-Boot-3.4-Release-Notes#defining-additional-beans

Additionally, in this case, the type-based @Autowired needs changing. Otherwise it will inject the auto-configured one.

Reasons:
  • Probably link only (1):
  • Low length (0.5):
  • Has code block (-0.5):
  • Low reputation (0.5):
Posted by: imba-tjd

79233779

Date: 2024-11-28 11:57:07
Score: 2
Natty:
Report link

When you create a new model, you must also create the security access rules Usually there's a security folder on each module with the files security.xml and ir.model.access.csv

Reasons:
  • Low length (1):
  • No code block (0.5):
  • Starts with a question (0.5): When you
Posted by: Canilho

79233774

Date: 2024-11-28 11:54:06
Score: 7 🚩
Natty: 5.5
Report link

Can you provide this whl file for 32-bit if you have it still

Reasons:
  • RegEx Blacklisted phrase (2.5): Can you provide
  • Low length (1.5):
  • No code block (0.5):
  • Unregistered user (0.5):
  • Single line (0.5):
  • Starts with a question (0.5): Can you
  • Low reputation (1):
Posted by: Pratyush Mishra

79233772

Date: 2024-11-28 11:54:06
Score: 0.5
Natty:
Report link

You can concatenate the data attributes of a class by overriding the__str__method. Here's how you can do it:

  1. Define the Class with Correct Initialization:Ensure that your class is defined correctly with the__init__method properly spelled and formatted. Your class should look like this:

【python】 class Phone: def init(self, brand, name): self.brand = brand self.name = name

  1. Override the__str__Method:In the class definition, override the__str__method to return a string that concatenates thebrandandnameattributes. Use an f-string for a clean and concise concatenation:

【python】 def str(self): return f"{self.brand};{self.name}"

  1. Create an Instance and Print It:When you create an instance of thePhoneclass and print it, the__str__method will be automatically called, producing the concatenated string.

【python】 phone = Phone("apple", "iphone3") print(phone) # Output: apple;iphone3

By following these steps, you will be able to concatenate thebrandandnameattributes of yourPhoneclass instances and print them in the desired format.

Analysis:

• The original code had a typo in the__init__method (--init_instead of__init__).

• The attributesself.brandandself.namewere assigned correctly but with additional incorrect text (brand brandandnaneinstead ofname).

• Overriding the__str__method allows for a custom string representation of class instances, which is useful for concatenation and other formatting needs.

• Using an f-string in the__str__method provides a readable and efficient way to concatenate strings.

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

79233766

Date: 2024-11-28 11:53:05
Score: 3
Natty:
Report link

In my case, Updating Xcode made it work.

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

79233762

Date: 2024-11-28 11:53:05
Score: 4
Natty:
Report link

Use real device, do not use simulator.

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

79233746

Date: 2024-11-28 11:49:04
Score: 1.5
Natty:
Report link

front()

  1. Returns a reference to the first element of the array
  2. Provides direct access to the first element.
  3. Can modify the first element alone

begin()

  1. Returns an iterator pointing to the first element of the array.
  2. It is used to iterate over the array or access elements using iterator operations.
  3. Can modify elements through iteration
Reasons:
  • No code block (0.5):
  • Low reputation (1):
Posted by: Sai Sumanth Kovuru

79233742

Date: 2024-11-28 11:48:04
Score: 3.5
Natty:
Report link

Downgrade the python version to 3.9 and everything will be install and work fine

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

79233740

Date: 2024-11-28 11:48:04
Score: 1
Natty:
Report link

I discovered the problem. It was simply that the information in my .env file was being ignored, so the value for QUEUE_CONNECTION was still being "synced".

Clearing the cache solved it for me:

php artisan config:clear

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

79233739

Date: 2024-11-28 11:47:02
Score: 4.5
Natty:
Report link

Мне помог таймаут:

  useEffect(() => {
     setTimeout(()=> loadCaptchaEnginge(6), 0)
  },[])
Reasons:
  • Low length (1):
  • Has code block (-0.5):
  • No latin characters (3):
  • Low reputation (1):
Posted by: Denis Kokorev

79233737

Date: 2024-11-28 11:46:01
Score: 1.5
Natty:
Report link

One more problem may be if your parent element, or element to which you want to apply tooltip has pointer-events: none CSS property.

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

79233733

Date: 2024-11-28 11:46:01
Score: 2.5
Natty:
Report link

It looks to me that you haven't used await characteristic.startNotifications()

Reasons:
  • Low length (1.5):
  • Has code block (-0.5):
  • Single line (0.5):
  • Low reputation (1):
Posted by: Christopher Reineborn

79233719

Date: 2024-11-28 11:42:00
Score: 2
Natty:
Report link

We managed to implement split tunneling with the following approach:

For Android 33+, we used builder.excludeRoute to exclude the desired IPs from the VPN. For versions below Android 33, we relied on builder.addRoute and included the required IP addresses calculated using the WireGuard AllowedIPs Calculator.

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

79233715

Date: 2024-11-28 11:42:00
Score: 0.5
Natty:
Report link

In my case I had do add Connection: Close header before sending request to backend service:

val targetHeaders = HttpHeaders().apply {
                    put("Connection", mutableListOf("Close"))
                }
Reasons:
  • Low length (0.5):
  • Has code block (-0.5):
  • Low reputation (0.5):
Posted by: westman379

79233712

Date: 2024-11-28 11:40:59
Score: 4
Natty: 4.5
Report link

check the appspec file in github , use this doc for reference https://gbengaoni.com/blog/Deploy-a-PHP-application-on-EC2-with-Github-and-AWS-CodePipeline-fb38cf204cbb

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

79233709

Date: 2024-11-28 11:39:58
Score: 3.5
Natty:
Report link

Great solution, it's works on my site, best of the best, grab it!!

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

79233703

Date: 2024-11-28 11:37:58
Score: 1
Natty:
Report link

ls -l /data/ca-certs/ca-bundle.pem

• If the file does not exist, download the CA bundle:

curl -o ca-bundle.pem https://curl.se/ca/cacert.pem

mkdir -p ~/ca-certs
mv ca-bundle.pem ~/ca-certs/

• Export the correct path:

export AWS_CA_BUNDLE="/data/ca-certs/ca-bundle.pem"
export NODE_EXTRA_CA_CERTS="$AWS_CA_BUNDLE"
Reasons:
  • Has code block (-0.5):
  • Unregistered user (0.5):
  • Low reputation (1):
Posted by: Prasanna

79233702

Date: 2024-11-28 11:36:58
Score: 1
Natty:
Report link

Sample Output --- Movie Ticket Booking System ---

  1. Display Movies
  2. Book a Ticket
  3. Cancel a Ticket
  4. Generate Report
  5. Exit Enter your choice: 2 Available Movies:
  6. Inception
  7. Dangal Select a movie (1 or 2): 1 Enter seat number: 5 Enter seat type (Regular/Premium): Premium Ticket Booked: Ticket ID: 1, Movie: Inception, Seat: 5, Seat Type: Premium, Price: $300 --- Movie Ticket Booking System ---
  8. Display Movies
  9. Book a Ticket
  10. Cancel a Ticket
  11. Generate Report
  12. Exit Enter your choice: 3 Enter ticket ID to cancel: 1 Enter the movie for this ticket (1 for Inception, 2 for Dangal): 1 Enter the ticket price ($200 for Regular, $300 for Premium): 300 Ticket with ID 1 cancelled. Refund: $300 --- Movie Ticket Booking System ---
  13. Display Movies
  14. Book a Ticket
  15. Cancel a Ticket
  16. Generate Report
  17. Exit Enter your choice: 4 Booking Summary: Tickets Sold: 0 Total Revenue: $0.0
Reasons:
  • Long answer (-0.5):
  • No code block (0.5):
  • Low reputation (1):
Posted by: Pasindu Denuwan

79233698

Date: 2024-11-28 11:36:58
Score: 1
Natty:
Report link

The above answer by Ted is not quite correct and would not work for me. You need to set binding culture in your specflow.json file for .net by doing the following:

{
    "bindingCulture": {
        "name": "en-US"
    }
}
Reasons:
  • Low length (0.5):
  • Has code block (-0.5):
  • Low reputation (1):
Posted by: howardcrick

79233695

Date: 2024-11-28 11:35:57
Score: 2
Natty:
Report link

You can use Ctrl + E for zed, using linux, same for others

Reasons:
  • Whitelisted phrase (-1.5): You can use
  • Low length (1.5):
  • No code block (0.5):
  • Single line (0.5):
  • Low reputation (1):
Posted by: i0verlord

79233689

Date: 2024-11-28 11:33:56
Score: 6
Natty: 7.5
Report link

asasdasdcxasdwa dassssssssssssssssssssssssssssssssssssssssssssssssssss

Reasons:
  • Low length (1.5):
  • No code block (0.5):
  • Unregistered user (0.5):
  • Has no white space (0.5):
  • Single line (0.5):
  • Filler text (0.5): ssssssssssssssssssssssssssssssssssssssssssssssssssss
  • Low entropy (1):
  • Low reputation (1):
Posted by: user28530331

79233674

Date: 2024-11-28 11:28:54
Score: 3
Natty:
Report link

I was running this command inside rails console and faced this error, if you are doing same mistake, then do exit from console and run it on actual terminal.

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

79233673

Date: 2024-11-28 11:27:54
Score: 1.5
Natty:
Report link

I tried to address the inserts and updates with sample data as you mentioned it did not work.

Final_table

INSERT INTO final_table (id, pid, code, date) VALUES
(1, 101, 'A001', '2023-11-01'),
(2, 102, 'B001', '2023-11-02'),
(3, 103, 'C001', '2023-11-03'),
(4, 104, 'D001', '2023-11-04');

Source_table

INSERT INTO source_table (id, pid, code) VALUES
(2, 102, 'B002'),  -- Matching record, code needs to be updated
(5, 105, 'E001'),  -- New record, needs to be inserted
(3, 103, 'C002');  -- Matching record, code needs to be updated

Merge

MERGE INTO final_table AS T
USING source_table AS S
ON T.pid = S.pid

-- For updates
WHEN MATCHED AND (
    T.code IS DISTINCT FROM S.code  -- Update only if 'code' differs
) THEN
    UPDATE
    SET 
        T.code = S.code 

-- For inserts
WHEN NOT MATCHED THEN 
    INSERT (id, code, pid)
    VALUES (S.id, S.code, S.pid);

Result

enter image description here

Reasons:
  • Blacklisted phrase (1): did not work
  • Probably link only (1):
  • Long answer (-0.5):
  • Has code block (-0.5):
  • Low reputation (0.5):
Posted by: samhita

79233671

Date: 2024-11-28 11:27:54
Score: 2
Natty:
Report link

I Found this answer

Here is the correct way to receive the data from the previous screen

From Screen B

Navigator.pop(context,"Pass your data here");

In Screen A

String results;

var receiedValue =await Navigator.push(
              context,
              MaterialPageRoute(builder: (context) => ScreenB()),
            );
            // How do I refresh the widget here to fetch updated data?
           setState(){
          results = receiedValue;
            }
Reasons:
  • Blacklisted phrase (1): How do I
  • Has code block (-0.5):
  • Self-answer (0.5):
  • Low reputation (1):
Posted by: Keshav Passi

79233669

Date: 2024-11-28 11:27:54
Score: 1
Natty:
Report link

It turns out that installing command line tools for SourceTree helped.

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

79233668

Date: 2024-11-28 11:27:54
Score: 5
Natty:
Report link

Thanks to @pmf and @GillesQuénot. My file was in CrLf format.

Reasons:
  • Blacklisted phrase (0.5): Thanks
  • Low length (1.5):
  • No code block (0.5):
  • User mentioned (1): @pmf
  • User mentioned (0): @GillesQuénot
  • Self-answer (0.5):
  • Single line (0.5):
  • Low reputation (0.5):
Posted by: Mr. Clear

79233666

Date: 2024-11-28 11:27:54
Score: 1
Natty:
Report link

Many of the comments here are useful and describe the practical aspects of macro usage. However, I noticed a lack of detailed explanation regarding the semantics, so I hope my comment helps clarify additional details.

Functions:

Macros:

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

79233650

Date: 2024-11-28 11:22:52
Score: 4
Natty: 4.5
Report link

ok good, what is I have all_categorical() ~ "{n} / {N} ({p}%) and I desire only to have the percentage in 2 digits?

How to do that?

Thanks

Reasons:
  • Blacklisted phrase (0.5): Thanks
  • Low length (1):
  • Has code block (-0.5):
  • Ends in question mark (2):
  • Low reputation (1):
Posted by: Y.M.S

79233645

Date: 2024-11-28 11:22:51
Score: 2
Natty:
Report link

I'm not sure but you might need key: UniqueKey(), in your GoRoute widgets.

Reasons:
  • Low length (1.5):
  • Has code block (-0.5):
  • Single line (0.5):
  • Low reputation (0.5):
Posted by: Csaba Mihaly

79233641

Date: 2024-11-28 11:21:51
Score: 1.5
Natty:
Report link

All requested functionality is provided by FireDAC's component named TFDSchemaAdapter. This component handles all id assignments.

Delphi documentantion: https://docwiki.embarcadero.com/Libraries/Sydney/en/FireDAC.Comp.Client.TFDSchemaAdapter

Examples: https://docwiki.embarcadero.com/CodeExamples/Athens/en/FireDAC.SchemaAdapterMemTable_Sample

Or examples on GitHub: https://github.com/Embarcadero/RADStudio12Demos/tree/main/Object%20Pascal/Database/FireDAC/Samples/Comp%20Layer/TFDQuery/CachedUpdates/Centralized

Very simple snippet showing data saving do db, once everything is set according manual above:

 if FDSchemaAdapter1.UpdatesPending then
  begin
    FDSchemaAdapter1.ApplyUpdates; //applies correct IDs to all binded queries
    FDQuery1.CommitUpdates;
    FDQuery2.CommitUpdates;
    FDQuery3.CommitUpdates;
  end;
Reasons:
  • Probably link only (1):
  • Has code block (-0.5):
  • Self-answer (0.5):
  • Low reputation (0.5):
Posted by: Aleš

79233639

Date: 2024-11-28 11:20:50
Score: 6 🚩
Natty: 6
Report link

Is there an update on this? I want to make only products selectable in a reference editor, without allowing subtypes to be chosen.

Reasons:
  • Blacklisted phrase (1): update on this
  • RegEx Blacklisted phrase (1): I want
  • Low length (1):
  • No code block (0.5):
  • Contains question mark (0.5):
  • Single line (0.5):
  • Starts with a question (0.5): Is there an
  • Low reputation (1):
Posted by: va4n

79233617

Date: 2024-11-28 11:16:48
Score: 5
Natty:
Report link

link it good to see this link,will answer you

Reasons:
  • Blacklisted phrase (1): this link
  • RegEx Blacklisted phrase (1): see this link
  • Low length (1.5):
  • No code block (0.5):
  • Low reputation (1):
Posted by: Wei Yang

79233614

Date: 2024-11-28 11:16:48
Score: 1.5
Natty:
Report link

For me it worked when I ran RStudio as an administrator. I still don't get why it doesn't work when starting RStudio "normally", but at least now I can work again. When I reinstalled RStudio and R, it didn't work either.

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

79233610

Date: 2024-11-28 11:15:48
Score: 1.5
Natty:
Report link

In this link, you can easily find the topic Retrieve a list of all smart collections for a certain product_id

# Session is activated via Authentication
test_session = ShopifyAPI::Context.active_session

ShopifyAPI::SmartCollection.all(
  session: test_session,
  product_id: "632910392",
)
Reasons:
  • Blacklisted phrase (1): this link
  • Low length (0.5):
  • Has code block (-0.5):
  • Low reputation (0.5):
Posted by: Paras Pansuriya

79233601

Date: 2024-11-28 11:12:47
Score: 0.5
Natty:
Report link

The --Override argument is only for use with the installargs parameter.

It can't be used to override the softwareName being passed in to, e.g., Uninstall-ChocolateyPackage (or further down, Get-UninstallRegistryKey).

You'll need to modify your uninstall script to say newforma* instead of newforma12.1*.

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

79233597

Date: 2024-11-28 11:11:47
Score: 1
Natty:
Report link

Just a clarification between Dart and Flutter, as you imply something about it, which seems to have needed some attention.

You do not need to install Dart separately as the Flutter SDK includes the full Dart SDK.

To learn more.

Additional tips: You can also use VS Code, but it is recommended to install Android Studio for some development reasons.

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

79233591

Date: 2024-11-28 11:09:46
Score: 1.5
Natty:
Report link

Do NOT HOST on GOOGLE Workspace primarily! Dependable Google Workspace Support Matters More Than Ever “Relying solely on Google Workspace support could cost your business more than many realize.” The name Google is closely associated with the reliability of “GOD,” but the facts are far from that. This message is based on our disastrous personal experience and is intended for every IT professional, business owner, and tech enthusiast. Since November 6, 2024, we’ve faced chaos due to Google Workspace support's negligence. Our attempts to escalate the issue have been ignored, leaving us stranded and suffering immense losses. This isn’t just a complaint; it’s a wake-up call. Our Story: When Google Workspace Failed Us

  1. Request us for Evidence: If you’re considering Google Workspace, talk to us first. We have documentation that will help you make an informed decision.
  2. The Problem: A critical issue arose, but Google support’s response was a time-consuming protocol from ages ago: silence and inaction. [Put here the screenshot of the 6-7 days]. For each minor doubt, instead of solving what is expected within a few hours, they are routing back to a repeating protocol of 6-7 days AGAIN!
  3. The Fallout, current situation: Weeks of unresolved issues led to operational disruptions, damaged client relationships, and significant financial losses.

The result: Lost Clients Broken Trust Financial Damage Why This Matters As a tech leader, Google should set the standard for reliable support. Instead: Negligence: Our case was dismissed with shocking indifference. Risk to Businesses: Unresponsive support can cripple IT operations, putting businesses at serious risk. This experience isn’t just our story; it’s a warning to others considering complete reliance on GoogleWorkspace. Use Google Workspace only as a secondary tool. The advice is to use a local, regional hosting provider with direct helpdesk support. Our Demands Accountability: Google must address the damages their negligence caused. Overhaul Support: Fix the broken system to prioritize businesses. Action from Leadership: Sundar Pichai and Google employees must take this seriously to ensure no other company suffers the same fate. What You Can Do Share this story to raise awareness. Tag @Google and @SundarPichai to demand better support. Join the conversation if you’ve had similar experiences; let your voice be heard! Protect Your Business: Diversify and Prepare While Google Workspace offers excellent tools, companies should rely on something other than them as a premium provider. Diversify your solutions, document issues, and research alternatives to ensure your business can survive without interruptions. Together, we can demand better from Google and ensure businesses get the support they deserve. Don’t stay silent; your voice matters!

Reasons:
  • Long answer (-1):
  • No code block (0.5):
  • User mentioned (1): @Google
  • User mentioned (0): @SundarPichai
  • Low reputation (1):
Posted by: Muntazir Mehdi

79233581

Date: 2024-11-28 11:06:45
Score: 2.5
Natty:
Report link

I am also facing an issue to connect with Mariadb v10.11. My code,

MySqlConnection mySqlConn = new MySqlConnection("server=XXXXX;port=3306;database=XXXX;uid=XXXX;password=XXXX;commandinterceptors=Jf.MySql.Data.Collations.Interceptor,Jf.MySql.Data.Collations"); Utf8mb3.Enable(); mySqlConn.Open();

Note : Using above MySqlConnection i am able to connect with Mariadb 10.5 but its failing for Mariadb v10.11. I am using MySql.Data.dll (Ver: 6.9.8.0) and Jf.MySql.Data.Collations.dll ( Ver: 0.2.0.0).

What could be wrong here. Thanks!

Reasons:
  • Blacklisted phrase (0.5): Thanks
  • Blacklisted phrase (1): What could be
  • Long answer (-0.5):
  • No code block (0.5):
  • Low reputation (1):
Posted by: Riyajodin Shaikh Phonologies

79233577

Date: 2024-11-28 11:05:44
Score: 4
Natty:
Report link

This functionality has moved to the sidebar and can be re-added to the bottom bar here:

enter image description here

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

79233568

Date: 2024-11-28 11:04:44
Score: 1
Natty:
Report link

While writing your codes, use the uses section. implementation

{$IFDEF MSWINDOWS}
  uses Winapi.ShellAPI, Winapi.Windows,vcl.Forms,IdUri;
{$ENDIF}

between these phrases If you write your procedures and functions between these phrases, they will be compiled.

{$IFDEF MSWINDOWS}
  your codes
{$ENDIF}
Reasons:
  • Low length (0.5):
  • Has code block (-0.5):
  • Low reputation (1):
Posted by: Erol Akyuz

79233565

Date: 2024-11-28 11:03:44
Score: 1.5
Natty:
Report link

You can try configuring the setExposeRepositoryMethodsByDefault to false and check.

Sample code snippet:

@Configuration public class AppRepositoryConfig implements RepositoryRestConfigurer {

@Override
public void configureRepositoryRestConfiguration(RepositoryRestConfiguration config, CorsRegistry cors) {

    config.setExposeRepositoryMethodsByDefault(false);
}

}

Reasons:
  • Has code block (-0.5):
  • User mentioned (1): @Configuration
  • Low reputation (1):
Posted by: xiaowang

79233558

Date: 2024-11-28 11:01:43
Score: 1
Natty:
Report link

As mentionned in @keith comment, you should do this since node22:

import packageJson from "./package.json" with { type: "json" };

or for dynamic import:

const { default } = await import('./file.json', {with: {type: 'json' }});
Reasons:
  • Low length (0.5):
  • Has code block (-0.5):
  • User mentioned (1): @keith
Posted by: MathKimRobin

79233554

Date: 2024-11-28 11:01:43
Score: 1
Natty:
Report link

Not a fix, but a workaround is to enable "Legacy Previews Execution":

Editor > Canvas > Use Legacy Previews Execution

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

79233545

Date: 2024-11-28 10:59:42
Score: 4
Natty:
Report link

clear client(browser) cache: ctrl + f5

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