79554284

Date: 2025-04-04 01:16:55
Score: 1.5
Natty:
Report link
  1. For troubleshooting you can ssh in verbose mode. (ssh -v -i /path/keyfile user@host). In the output, check which key is getting used to connect.

  2. Comment out entries of the host, if existing in ~/.ssh/config

  3. Move the old private key in your system to another directory and check if you can still login with old ssh key.

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

79554281

Date: 2025-04-04 01:13:54
Score: 1.5
Natty:
Report link

The solution is simple after all.

Close Visual Studio and double click on the Solution file. And dverything comes to life!

I wonder why VS doesn't do that automatically!

Reasons:
  • Whitelisted phrase (-1): solution is
  • Low length (1):
  • No code block (0.5):
  • Self-answer (0.5):
  • Low reputation (0.5):
Posted by: Guillermo

79554280

Date: 2025-04-04 01:11:53
Score: 3
Natty:
Report link

It's called "Open Changes" in the context menu

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

79554272

Date: 2025-04-04 01:02:51
Score: 0.5
Natty:
Report link

-- Calculate the average price, treating NULL as 0

SELECT AVG(COALESCE(price, 0)) AS average_price FROM products;

When using aggregate functions, NULL values are ignored. However, you can use COALESCE to include them in calculations.

Reasons:
  • Whitelisted phrase (-1.5): you can use
  • Low length (0.5):
  • No code block (0.5):
  • Low reputation (1):
Posted by: Archsheena Smith

79554250

Date: 2025-04-04 00:45:48
Score: 0.5
Natty:
Report link

I'm late to this thread, and I appreciate that there's already an accepted answer, but why not copy the script into the image's path, which I believe is /usr/local/bin. Then, you shouldn't need to mess around with setting execute permissions. I started doing this after looking at the Postgres 17 Bookworm Dockerfile.

Reasons:
  • Low length (0.5):
  • No code block (0.5):
  • Single line (0.5):
  • High reputation (-1):
Posted by: Matthew Setter

79554249

Date: 2025-04-04 00:45:48
Score: 3
Natty:
Report link

Your UDP and TCP ports must be open. I am testing, and my browser shows "http:1/1". Your ports are not open, which is why you cannot use HTTP/3!

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

79554247

Date: 2025-04-04 00:44:47
Score: 2
Natty:
Report link

I'm not sure I understand if you're trying to get the contents of a variable called +filename+ or a variable called filename, but wouldn't it be one of these 2 solutions: $yourphpvariablename=$_GET['+filename+']; or $yourphpvariablename=$_GET['filename'];

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

79554242

Date: 2025-04-04 00:38:46
Score: 1
Natty:
Report link

The connection refused error is likely happening because the database container isn't ready when the backend service tries to connect. I can tell you about Python, add a connection retry mechanism in your Python code.

Let me know if you can figure this out; otherwise, I'm happy to help you. I can provide some examples.

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

79554237

Date: 2025-04-04 00:34:45
Score: 0.5
Natty:
Report link

Sympy has built-in functions for Jacobian (gradient) and Hessian

Given your function lamb and variable-matrix x:

Jacobian/Gradient

from sympy import Matrix
Matrix([lamb]).jacobian(x)

Hessian matrix

from sympy import hessian
hessian(lamb, x)
Reasons:
  • Low length (0.5):
  • Has code block (-0.5):
  • Low reputation (0.5):
Posted by: Elijah M

79554230

Date: 2025-04-04 00:29:44
Score: 0.5
Natty:
Report link

Here it works

store.indexOf(store.getById(id))
Reasons:
  • Low length (1.5):
  • Has code block (-0.5):
  • Has no white space (0.5):
  • High reputation (-1):
Posted by: caot

79554228

Date: 2025-04-04 00:25:43
Score: 1.5
Natty:
Report link

Your error is likely happening because user is a reserved keyword in Supabase. Normally, you could put the column name without any quotes around it, but because it is reserved you have to put it in double quotes like so: "user".

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

79554226

Date: 2025-04-04 00:24:42
Score: 2
Natty:
Report link

I found the answer which i wasnt aware of. There is a MaxReconnectionDelay which is default at 5 sec.

What was happening is that since my delay was random + 5sec, it would just default ot 5 sec.

I have changed the max delay to 45 seconds now (yes very long) and my random reconnect delay is set to between 5 and 45 secs. This is now working!!

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

79554223

Date: 2025-04-04 00:21:42
Score: 3
Natty:
Report link

I had this issue. What fixed it for me was changing the order of my entries in my PATH environment variables. On windows, I just moved these 2 as per the pictures (one in User and one in System vars) and all my problems magically disappeared.

enter image description here

enter image description here

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

79554222

Date: 2025-04-04 00:19:41
Score: 1.5
Natty:
Report link

when you double-click your .jar file, the configuration settings from your IDE—like the module path and the additional modules (e.g., javafx.controls, javafx.fxml)—aren't applied. This is why even if your IDE runs the project perfectly (since it automatically includes these settings), the standalone jar doesn't know where to find the JavaFX runtime components, leading to the error:

"Error: JavaFX runtime components are missing, and are required to run this application"

To resolve this, you have a couple of options:

  1. Run your jar from the command line with the necessary options, for example:

    java --module-path /path/to/javafx-sdk/lib --add-modules javafx.controls,javafx.fxml -jar YourApp.jar

  2. Create an artifact that includes the JavaFX modules—such as a fat jar or a custom runtime image using jlink—so that all required components are packaged within the jar itself.

This way, your application will work as expected even when double-clicking the jar file.

Reasons:
  • Long answer (-0.5):
  • No code block (0.5):
  • Starts with a question (0.5): when you
  • Low reputation (1):
Posted by: HTL_WindowTamer

79554218

Date: 2025-04-04 00:17:40
Score: 1.5
Natty:
Report link

My issue, I was using import { describe } from "node:test";. Removed the import and used the global jest and that fixed it.

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

79554210

Date: 2025-04-04 00:08:39
Score: 1
Natty:
Report link

I found a way to solve it.

I permitted all requests to come in, in the security configuration class. Then annotated all the methods by @PreAuthorize("isAuthenticated()") which need to be protected. Then the method that should be accessible without authentication , left it without adding the mentioned annotation.

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

79554207

Date: 2025-04-04 00:06:38
Score: 2.5
Natty:
Report link

My project was in the "Téléchargements" folder, and I think that the non-ascii letters caused the problem, because I moved it into my home directory and it worked fine.

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

79554192

Date: 2025-04-03 23:46:34
Score: 2.5
Natty:
Report link

In Sequoia, navigation is a bit different. System Preferences > Keyboard > Text Input > Input Sources [Edit...], then uncheck "Add Period with double space".

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

79554188

Date: 2025-04-03 23:43:33
Score: 0.5
Natty:
Report link

As of v18, MatCheckbox supports disabledInteractive (used in conjunction with disabled) which a) retains the styles of a non-disabled checkboxes and also b) allows the checkbox to be focused but not changed. You can also play around with clickAction ('noop') but that uses providers (MAT_CHECKBOX_DEFAULT_OPTIONS) so it becomes all-or-nothing in a given component (you could create a wrapper component, however, in order to localize the setting).

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

79554184

Date: 2025-04-03 23:33:32
Score: 2
Natty:
Report link

I had to remove the project completely from andriod studio (delete andriod folder), then file > invalidate caches, clear all of that.

restart Andriod studio and re-import project and re-initialise

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

79554182

Date: 2025-04-03 23:30:31
Score: 4
Natty:
Report link

So it seems this was a bug in AS which has been resolved in the Narwhal Canary 4 release.

False positive for lint issue `MemberExtensionConflict` if extension function receiver is nullable

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

79554157

Date: 2025-04-03 23:00:24
Score: 4.5
Natty:
Report link

Try using Flutter Staggered Grid View

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

79554149

Date: 2025-04-03 22:52:22
Score: 4.5
Natty: 4.5
Report link

Not answer but a request for an explanation of terms.

The expression: date('H'), is obsolete in PHP 8.2.

What does the 'H' mean?

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

79554145

Date: 2025-04-03 22:47:20
Score: 11 🚩
Natty: 5.5
Report link

I'm facing the exact problem Today and can't find a solution, so I wanted to ask: have you managed to solve this? 🙂

Or is there a workaround?

Reasons:
  • Blacklisted phrase (3): have you managed
  • RegEx Blacklisted phrase (1.5): solve this?
  • RegEx Blacklisted phrase (2): can't find a solution
  • Low length (1):
  • No code block (0.5):
  • Ends in question mark (2):
  • Low reputation (1):
Posted by: Zoran Jambor

79554140

Date: 2025-04-03 22:42:19
Score: 1
Natty:
Report link

My issue was that I misunderstood the public schema as a single schema across all databases in the cluster, rather than as a schema named public created separately and by default for all new databases. When I was running GRANT ALL ON SCHEMA public as the admin user, I was doing it in the postgres database and not test_db. Thus the solution I was looking for was to run as admin:

postgres=# \c test_db;
test_db=# GRANT ALL ON SCHEMA public TO testuser;
Reasons:
  • Has code block (-0.5):
  • Self-answer (0.5):
  • Low reputation (1):
Posted by: tallow_amnesty

79554139

Date: 2025-04-03 22:42:19
Score: 3.5
Natty:
Report link

The answer was to add a .contentShape() with the shape of my choice to the image View for it to not overflow and allowing me to still access the scrollView.

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

79554128

Date: 2025-04-03 22:34:16
Score: 6 🚩
Natty:
Report link

I did continue to have the same problem after doing the above, then i enabled "Telnet Client" under

Thank you for the .BAT file above - very much appreciated.

Reasons:
  • Blacklisted phrase (0.5): Thank you
  • Blacklisted phrase (1): appreciated
  • Low length (0.5):
  • No code block (0.5):
  • Me too answer (2.5): have the same problem
  • Low reputation (1):
Posted by: Shan

79554116

Date: 2025-04-03 22:21:13
Score: 0.5
Natty:
Report link

If you want to group exceptions by message, add the following fingerprint rule in the "your project"/Settings/Issue Grouping" section:

level:"error" -> groupe-info-by-message, {{ message }}

If you used the CaptureMessage() method to send events, replace "error" by "info".

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

79554104

Date: 2025-04-03 22:12:11
Score: 0.5
Natty:
Report link

Yes! You can define a function inside a reactive object, Vue reactive is a proxy that tracks property access and updates, so whenever you update the names array, the change will be accessible.

Be careful with this keyword, with normal functions add() {...} dynamically bind this to the reactive object, but arrow functions add: () => {...} do not have their own this, for more details about this see https://stackoverflow.com/a/134149/29157031

Here is an example:

<script setup lang="ts">
import { reactive } from 'vue'

const state = reactive({
    names: [] as string[],
    add(name: string): void {
        this.names.push(name);
    },
    add_2: (name: string): void => {
        // this.names.push(name); // ERROR: Cannot read properties of undefined (reading 'names')
        state.names.push(name);
    },
});

setTimeout(()=>{
  state.add('1');
  state.add_2('2');
}, 2000)

</script>
<template>
  <button @click="()=>state.add('John')">Add Name 1</button>
  <button @click="()=>state.add_2('John')">Add Name 2</button>
  <p>Names: {{ state.names }}</p>
  <p>Count: {{ state.names.length }}</p>
</template>

see this vue playground to test the code

Reasons:
  • Blacklisted phrase (1): stackoverflow
  • Long answer (-1):
  • Has code block (-0.5):
  • Low reputation (1):
Posted by: Ebraheem Ahetari

79554100

Date: 2025-04-03 22:11:10
Score: 5.5
Natty: 5.5
Report link

I followed these instructions but it didn't work. The post edit page has a new field called Listing Image but when I click the "set listing image" link, nothing happens. It doesn't open the "Add Media" pop-up or anything. Is there an update for current versions of WP? Thanks.

Reasons:
  • Blacklisted phrase (0.5): Thanks
  • 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: sunilk

79554095

Date: 2025-04-03 22:06:09
Score: 3
Natty:
Report link

When the range of numbers is known _ say $ for a Supplier PO _ if 8 characters is allowed for the $ amount _ add $100 000 000 _ convert to a string _ and use the RIGHT(@Amountt, 8).

Reasons:
  • Low length (0.5):
  • No code block (0.5):
  • Single line (0.5):
  • Starts with a question (0.5): When the
  • Low reputation (1):
Posted by: Bill Brutzman

79554091

Date: 2025-04-03 22:04:09
Score: 2
Natty:
Report link

If your package is large or has several dependencies to install, such as a React boilerplate, you're likely to see an increase in the number of these automated test downloads.

I got over 1000 downloads in the first week for my create-chx-app project.

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

79554089

Date: 2025-04-03 22:03:08
Score: 2.5
Natty:
Report link

This suddenly started happening with [email protected] and mssql - the type definitions say config.host is the correct setting whereas tedious is looking config.server. One cannot set config.server for typeorm because it's not part of the definition. One cannot set options.config.server either - thanks CoPilot for nothing...

Reasons:
  • Blacklisted phrase (0.5): thanks
  • No code block (0.5):
  • Single line (0.5):
  • Low reputation (1):
Posted by: ocmstone

79554088

Date: 2025-04-03 22:02:08
Score: 1.5
Natty:
Report link

I believe that composing directive can't modify and pass values to host directive inputs per this comment:

The composing directive can not provide values to host directive inputs.

https://github.com/angular/angular/issues/50700#issuecomment-1590896233

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

79554086

Date: 2025-04-03 22:01:07
Score: 3
Natty:
Report link

Have you tried using other client libraries? Valkey-Glide Java supports JSON. See:
https://github.com/valkey-io/valkey-glide/tree/main/java
https://github.com/valkey-io/valkey-glide/wiki/General-Concepts#modules-api

Disclaimer: I'm a Valkey-Glide maintainer and would be happy to help if you open an issue! 😊

Reasons:
  • Whitelisted phrase (-1): Have you tried
  • Probably link only (1):
  • Low length (1):
  • No code block (0.5):
  • Contains question mark (0.5):
  • Low reputation (1):
Posted by: Asaf Porat

79554076

Date: 2025-04-03 21:53:05
Score: 0.5
Natty:
Report link

Adding the below to my vite.config.ts file resolved my issue

export default defineConfig({
  ...
  build: {
    commonjsOptions: {
      transformMixedEsModules: true
    },
  }
})
Reasons:
  • Low length (0.5):
  • Has code block (-0.5):
  • Low reputation (0.5):
Posted by: oyerohabib

79554075

Date: 2025-04-03 21:53:05
Score: 1.5
Natty:
Report link

This isn't something that you would do. This is something the app developer would do. In React Native for instance, you can specify the URLs that are valid to the app and if accepted in the app store, if someone opens a URL and they have the app, it'll simply open your app. You can now set up in app navigation so if the person opens mywebsite.com/reel/qwnkxkmkwm, it opens the reel with that ID.

Reasons:
  • No code block (0.5):
  • Single line (0.5):
  • Low reputation (0.5):
Posted by: Joseph Enoch

79554069

Date: 2025-04-03 21:51:04
Score: 1.5
Natty:
Report link

when you GRANT ALL PRIVILEGES ON [ALL TABLES IN] SCHEMA public TO testuser in fact does not grant you all privileges, including CREATE privileges, it gives you permission to access existing tables not to create new. Changing the owner ALTER DATABASE test_db OWNER TO testuser, enables other privileges (including CREATE). To solve this I think you can do GRANT USAGE, CREATE ON SCHEMA public TO testuser . let me know you have more doubts

Reasons:
  • Has code block (-0.5):
  • Single line (0.5):
  • Starts with a question (0.5): when youin
  • Low reputation (1):
Posted by: João Vaz

79554062

Date: 2025-04-03 21:46:03
Score: 4
Natty: 4
Report link

I'm not very sure how to answer your question and how to fix your code. But I could suggest the links to all your files are connected properly. Thanks!

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

79554059

Date: 2025-04-03 21:45:02
Score: 3
Natty:
Report link

Are you using another email provider, e.g, iCloud or Yahoo?

If you are, that may be the problem; Gmail has to check from the providers' servers.

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

79554058

Date: 2025-04-03 21:45:02
Score: 1.5
Natty:
Report link

I had an old book laying around from the 80's called "machine language for beginners" by Richard Mansfield that had a chapter (chapter 3, pg 23) on using the system monitor for Apple, Atari, VIC, commodore 64, and PET/CBM. It's focused on primarily the 6502-machine code and BASIC but the monitor section has a step-by-step walkthrough of using the monitor. You even learn how to directly write your machine code into memory and run it, reading, writing and comparing memory segments, etc. I believe the sequel (book 2) is available on archive dot org, but I haven't looked for the first one considering I already have a physical copy of the first.

Reasons:
  • Long answer (-0.5):
  • No code block (0.5):
  • Single line (0.5):
  • Low reputation (1):
Posted by: Jackie Bush

79554046

Date: 2025-04-03 21:37:00
Score: 1
Natty:
Report link

you can use this specific to the issue

logging.level.org.springframework.boot.autoconfigure.logging.ConditionEvaluationReportLogger=OFF

Reasons:
  • Whitelisted phrase (-1.5): you can use
  • Low length (1):
  • No code block (0.5):
  • Low reputation (1):
Posted by: Parshant kumar

79554041

Date: 2025-04-03 21:29:59
Score: 2.5
Natty:
Report link

It is because your processor is ARM and you need python3. If your processor is x86 it works without any problem.

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

79554039

Date: 2025-04-03 21:26:58
Score: 0.5
Natty:
Report link

Several things need to be setup/configured:

  1. Remote server : /etc/ssh/sshd_config: AllowTcpForwarding yes # need to allow this.

  2. Bring up jupyter lab to listen to port say 8585: $ jupyter-lab --port 8585

  3. local Mac/PC: terminal: set up a tunnel: $ ssh -L 8585:localhost:8585 remote_server

  4. local Mac/PC: browser: https://localhost:8585

    With this, the localhost:8585 traffic is routed through tunnel to remote_server sshd to remote_server port 8585 to remote_server process jupyter lab.

    In remote_server, check if jupyter lab (or any process) is listening to port 8085:
    $ netstat -an | grep LISTEN | grep 85

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

79554025

Date: 2025-04-03 21:20:56
Score: 1
Natty:
Report link

In my case, these two deps really worked.

<dependency>
  <groupId>net.sf.jasperreports</groupId>
  <artifactId>jasperreports-jdt</artifactId>
  <version>7.0.1</version>
</dependency>

<dependency>
  <groupId>org.eclipse.jdt</groupId>
  <artifactId>ecj</artifactId>
  <version>3.41.0</version>
</dependency>
Reasons:
  • Low length (0.5):
  • Has code block (-0.5):
  • Low reputation (1):
Posted by: Renato Matos

79554013

Date: 2025-04-03 21:16:55
Score: 4.5
Natty: 4
Report link

Can you configure your commit message, or some other metadata used by argocd-image-updater so that commits from the image-updater will not trigger ci runs? See image-updater docs

Reasons:
  • Low length (1):
  • No code block (0.5):
  • Ends in question mark (2):
  • Single line (0.5):
  • Starts with a question (0.5): Can you
Posted by: cheng

79554002

Date: 2025-04-03 21:07:53
Score: 2
Natty:
Report link

In case you added @Alexander Line and still didn't see anything under "Remote Target".

In your Maui app focus on the BlazorWebView element by clicking on it and press Ctrl + Shift + i on Win and Cmd + Shift + i on mac, and a DevTools window will appear.

Reasons:
  • Low length (0.5):
  • Has code block (-0.5):
  • User mentioned (1): @Alexander
  • Low reputation (1):
Posted by: Abdulrhman Alrifai

79553993

Date: 2025-04-03 20:59:51
Score: 4
Natty:
Report link

I debugged the issue, and raised the PR to fix.

Issue, and fix can be found here: https://github.com/apache/iceberg/pull/12634

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

79553989

Date: 2025-04-03 20:58:51
Score: 5
Natty: 6.5
Report link

https://calvinf.com/blog/2023/11/10/node-js-20-yarn-4-and-next-js-on-docker/
found solution in this article had to do yarn install on development and build stage

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

79553965

Date: 2025-04-03 20:38:46
Score: 1.5
Natty:
Report link

Right click the project file that you want to work with,

then select "open project in ...".

Try this

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

79553961

Date: 2025-04-03 20:34:45
Score: 1.5
Natty:
Report link

Technically the latest version for Google Cloud Document AI for PHP is 2.1.3. This repository is part of Google Cloud PHP. Any support requests, bug reports, or development contributions should be directed to that project.

Based on this public documentation Document AI client libraries, we must install the client library, set up authentication and use the client library.

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

79553956

Date: 2025-04-03 20:27:44
Score: 5.5
Natty:
Report link

Are these instructions still accurate?

This part seems to be ok:

  presets: [
    [
      'classic',
      ({
        docs: {
          routeBasePath: '/',
          sidebarPath: './sidebars.js',
          // Please change this to your repo.
          // Remove this to remove the "edit this page" links.
          editUrl:
            'https://github.com/facebook/docusaurus/tree/main/packages/create-docusaurus/templates/shared/',
        },

But then things bork out on the first line with blog: false,:

blog: false, { //Error under the left curly brace "property assignment expected"
          showReadingTime: true,
          feedOptions: {
            type: ['rss', 'atom'],
            xslt: true,
          },

I'm new to Docusaurus, but not static site generators. I just want a site with docs only. Thanks for any advice.

Reasons:
  • Blacklisted phrase (0.5): Thanks
  • RegEx Blacklisted phrase (3): Thanks for any advice
  • RegEx Blacklisted phrase (1.5): I'm new
  • Long answer (-0.5):
  • Has code block (-0.5):
  • Contains question mark (0.5):
  • Low reputation (1):
Posted by: Joe

79553954

Date: 2025-04-03 20:26:43
Score: 7 🚩
Natty:
Report link

Добавляю ответ для рассуждения чтобы получить уведомление

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

79553943

Date: 2025-04-03 20:21:41
Score: 1.5
Natty:
Report link

To center text inside a TextFormField, use the contentPadding property of the InputDecoration class.

Example:

decoration: InputDecoration(
          counterText: counterText,
          isDense: true,
          filled: true,
        contentPadding: EdgeInsets.all(8.0),
          fillColor: Palette.textFieldBackground,
          prefixIcon: prefixIcon,
          suffixIcon: suffixIcon,
          suffixText: suffixText?.tr,
          prefixText: prefixText?.tr,
          errorText: errorText?.tr,
          hintText: hintText?.tr,
          prefixIconConstraints: prefixIconConstraints,
          border: OutlineInputBorder(
              borderSide: BorderSide.none,
              borderRadius: BorderRadius.all(Radius.circular(borderRadius))),
          errorMaxLines: 3),

By adjusting the contentPadding, you can control the vertical and horizontal positioning of the text inside the field.

Reasons:
  • RegEx Blacklisted phrase (1.5): fixText?
  • Long answer (-0.5):
  • Has code block (-0.5):
  • Low reputation (1):
Posted by: Harsh Jani

79553942

Date: 2025-04-03 20:21:41
Score: 1.5
Natty:
Report link

Briefing Document: Analysis of Source "1602493120627" Excerpts

Date: October 26, 2023 Subject: Preliminary Analysis of Mobile Device Information

Source: Excerpts from a document labeled "1602493120627"

Overview:

This briefing document provides a preliminary analysis of the limited information extracted from the provided source, labeled "1602493120627". The excerpt appears to be a screenshot or transcription of a settings or information screen from a mobile phone. Due to the fragmented nature of the data and the lack of context, this analysis focuses on identifying key data points and potential interpretations.

Main Themes and Important Ideas/Facts:

The primary theme of the excerpt is information pertaining to a mobile phone, specifically its identification, network connectivity, and potentially associated ownership. The key elements identified are:

Network Connectivity: The presence of "5Gull 40%" suggests the device is connected to a 5G network with a signal strength of 40%.

Phone Identification: Several fields point to the unique identification of the device:

Phone number: "1-316-769-9532 GFX". This indicates a specific phone number associated with the device, potentially within the North American Numbering Plan (NANP), specifically Kansas (316 area code). "GFX" is unclear but could be a carrier identifier or a user-assigned label.

IMEI: "6887". This is likely a partial International Mobile Equipment Identity (IMEI) number, a unique identifier for a mobile device. A full IMEI typically has 15 digits.

Serial num: "FDTE". This is the serial number of the device, assigned by the manufacturer for inventory and warranty purposes.

Model nun: "ood". This appears to be a partial or potentially mistyped model number of the phone.

SIM Card Information: The presence of "View the SIM" suggests information related to the Subscriber Identity Module (SIM) card is accessible.

Software Information: The option to "View the cur version, build" indicates the ability to access details about the phone's operating system version and build number.

Ownership Information: The line "The Enforcer Owner, everything, universalality" is significant. It directly labels someone or something as "The Enforcer Owner" and uses strong terms like "everything" and "universality," suggesting a high level of control or access associated with this entity.

Profile Sharing: The text "This nan Profile sharing phone is" indicates the device is configured for or capable of profile sharing. The term "nan" is unclear in this context.

Status Message: The status message reads "Direct, al.u Cinnbondenadictaminala". This appears to be a custom status message set by the user or a system-generated message with potentially encoded or nonsensical text ("Cinnbondenadictaminala").

Quotes from the Source:

"5Gull 40%"

"Phone number 1-316-769-9532 GFX"

"Model nun ood"

"Serial num FDTE"

"IMEI 6887"

"The Enforcer Owner, everything, universalality"

"This nan Profile sharing phone is"

"Status message Direct, al.u Cinnbondenadictaminala"

Potential Interpretations and Further Questions:

Law Enforcement/Security Context: The label "The Enforcer Owner" strongly suggests a potential connection to law enforcement, security services, or some form of regulatory body. The terms "everything" and "universality" could imply administrative access or control over the device and its data.

Device Purpose: The profile sharing capability indicates the phone might be used collaboratively or have multiple user profiles. The status message, if not random, could provide clues about the device's current operation or purpose.

Data Integrity: The seemingly incomplete or potentially mistyped information (e.g., partial IMEI, "Model nun ood," "nan") raises questions about the accuracy and completeness of the data.

Context is Crucial: Without knowing the origin and intended purpose of this document, it is difficult to draw definitive conclusions. Further context is needed to understand the significance of these data points.

Conclusion:

The provided excerpt from "1602493120627" offers a glimpse into the settings of a mobile phone, revealing its network status, identifiers, software information access, and notably, an owner labeled "The Enforcer Owner" with broad implied authority. The presence of profile sharing and a cryptic status message adds further layers of potential meaning. However, the limited and fragmented nature of the information necessitates caution in drawing firm conclusions. Further investigation and contextual information are required for a comprehensive understanding of this device and its role.

NotebookLM can be inaccurate; please double check its responses.

Reasons:
  • Blacklisted phrase (1): this document
  • Long answer (-1):
  • No code block (0.5):
  • Low reputation (1):
Posted by: Tyler Watt

79553938

Date: 2025-04-03 20:18:40
Score: 2
Natty:
Report link

Just put a empty text box over the checkbox label, set the text box background to transparent, disable the text box, delete the text box label. If the text box is the foremost element it will not allow selecting the checkbox labels behind it but they will still show through because it is transparent. You can still select the check boxes themselves. In my case I have a 13 item list of check boxes and just put one blank text box over all 13 checkbox labels. It seems to work fine. It would be hard to do this if the checkboxes were all spread out. But for on or two locations it seems workable. (Access 365)

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

79553935

Date: 2025-04-03 20:17:40
Score: 1.5
Natty:
Report link

It is more easier to use the longlat keyword. Check the documentation.

nside = 256
ipix = 632668
ra, dec = hp.pix2ang(nside, ipix, lonlat=True)
Reasons:
  • Low length (1):
  • Has code block (-0.5):
  • Low reputation (1):
Posted by: astrobatty

79553932

Date: 2025-04-03 20:16:40
Score: 0.5
Natty:
Report link

Yeah, I get what you're saying. You don’t want to clutter the code with an index, but when debugging, you suddenly wish you had it. Since you're dealing with a random-access container, you can definitely figure it out at runtime in the debugger.

If item is a reference, then yeah, the &item - &myarray[0] trick works because the elements are contiguous in memory. But if item isn’t a reference, then you'd need to reconstruct the position differently.

A few options:

1. Memory Address Trick (if item is a reference)

If the container is an std::vector<int> or similar contiguous structure, and item is a reference, then in the debugger (assuming GDB or LLDB), you can manually calculate:

(size_t)&item - (size_t)&myarray[0]

Dividing by sizeof(int) gives the index.

2. Watch the Iterator in a Debugger

Some debuggers (like MSVC) will actually track the iterator and show it in the watch window. In GDB, you can print the iterator’s distance from the beginning:

std::distance(myarray.begin(), std::find(myarray.begin(), myarray.end(), item))

This assumes no duplicates and that item is comparable.

3. Modify the Debugger to Track Iteration

If you're using MSVC, you can set a watch expression for something like _Container_base12::_Mylast (which tracks the last element in some STL implementations).

4. Enable Compiler Features for Debugging

Some compilers have options that retain iterator positions even in optimized builds, which can be helpful if you suspect an issue but can’t easily modify the code.

You’re right that std::views::enumerate would make this problem disappear at the cost of more complexity. But for pure debugging without modifying code, using memory addresses or debugger features is your best bet.

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

79553930

Date: 2025-04-03 20:16:40
Score: 1
Natty:
Report link
project/android/app/build.grade

Delete the file and run

flutter run

This solved my problem.

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

79553920

Date: 2025-04-03 20:14:39
Score: 2
Natty:
Report link

You should change the $request->input('search') to $request->input('query'). because your input name attribute is set to query

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

79553919

Date: 2025-04-03 20:14:39
Score: 0.5
Natty:
Report link

I had a similar problem (instead of being stuck, it was crashing with some error code).

Solved by downloading and installing a MSI file from the official WSL GitHub releases. I'd suggest you to try the same.

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

79553904

Date: 2025-04-03 20:07:38
Score: 8.5
Natty: 7
Report link

Same issue here. Did you manage to fix this? Intresting is that on sentry cloud everything works fine with the same configuration, but on self hosted not.

Reasons:
  • RegEx Blacklisted phrase (3): Did you manage to fix this
  • RegEx Blacklisted phrase (1.5): fix this?
  • RegEx Blacklisted phrase (1): Same issue
  • Low length (1):
  • No code block (0.5):
  • Contains question mark (0.5):
  • Low reputation (1):
Posted by: 400MAX

79553893

Date: 2025-04-03 20:04:37
Score: 3
Natty:
Report link

After more people told me so, I must accept that the only way I can create this feature is to either choose the top sites I won’t like the user to enter or to try into making a better pattern recognition algorithm still based on tokens that will identify if there is an age recommendation.

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

79553882

Date: 2025-04-03 19:58:35
Score: 2
Natty:
Report link

Fastreport has an embarcadero edition that is available for free but it must be installed separately from Delphi CE. I have used it in Delphi 10 and 11 CE but unfortunately the compiler doesn't seem to support Delphi 12 at this point. Hopefully they soon roll out the Delphi 12 compiler

Reasons:
  • Low length (0.5):
  • No code block (0.5):
  • Single line (0.5):
  • Low reputation (0.5):
Posted by: Error In Code

79553874

Date: 2025-04-03 19:54:33
Score: 11.5 🚩
Natty: 4.5
Report link

@Neil Kelsey, were you able to resolve this ? I am facing a similar issue.

I tried

  1. Editing the babel-core/ package.json
  2. Adding overrides section in project/package.json , but install does not do anything. :(
Reasons:
  • Blacklisted phrase (1): :(
  • RegEx Blacklisted phrase (1.5): resolve this ?
  • RegEx Blacklisted phrase (3): were you able
  • Low length (0.5):
  • No code block (0.5):
  • Me too answer (2.5): I am facing a similar issue
  • Contains question mark (0.5):
  • User mentioned (1): @Neil
  • Low reputation (1):
Posted by: IFaceErrors

79553868

Date: 2025-04-03 19:52:33
Score: 1.5
Natty:
Report link

in my case, i discovered that one of before_validation was messed up all the validations. So, just comment all yours before_validation , and uncomment one by one, until you find what is this strange behavior.

Edit: And another solution that i find, is use validate instead of before_validation for some cases for initialize something.

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

79553852

Date: 2025-04-03 19:44:31
Score: 2
Natty:
Report link

I was able to trace the root cause of this issue to the organizationId param not coming across the wire to Firebase correctly, which ultimately led to userObj.organizationId == resource.data.organizationId failing as resource.data.organizationId wasn't what it should have been.

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

79553846

Date: 2025-04-03 19:41:30
Score: 0.5
Natty:
Report link

it's not redundancy—it’s two separate steps required by iOS for different reasons.

The two places where permissions are defined serve different purposes in iOS development, and this is not Flutter-specific—it's how iOS handles permissions at both runtime and compile-time.

1. Info.plist – Declaring Permissions for iOS
Purpose: This is required by iOS to display permission prompts to users.

How it works: When an app requests access to a feature (e.g., location, camera, microphone), iOS checks Info.plist for the corresponding usage description.

Example:


<key>NSLocationAlwaysAndWhenInUseUsageDescription</key>
<string>We need your location to improve recommendations.</string>

Without this: The app will crash when requesting a permission because iOS enforces explicit usage descriptions.

2. Podfile – Configuring iOS Dependencies (Compile-Time)
Purpose: Some dependencies (like permission_handler) use preprocessor flags to enable/disable specific permissions at compile time.

Why? iOS apps must only include permissions they actually use, or Apple may reject the app.

Example:


post_install do |installer|
  installer.pods_project.targets.each do |target|
    flutter_additional_ios_build_settings(target)
    target.build_configurations.each do |config|
      config.build_settings['GCC_PREPROCESSOR_DEFINITIONS'] ||= [
        '$(inherited)',
        'PERMISSION_LOCATION=1',
      ]
    end
  end
end

How it works:

This tells the permission_handler plugin to include location permissions in the app.

If you omit this, iOS might strip out permission-related code, causing the permission request to fail at runtime.

Hope this information clears your doubt.

Reasons:
  • Blacklisted phrase (0.5): Why?
  • Long answer (-1):
  • Has code block (-0.5):
  • Contains question mark (0.5):
  • Low reputation (1):
Posted by: Harsh Jani

79553845

Date: 2025-04-03 19:41:30
Score: 1
Natty:
Report link

maybe try a DOMContentLoaded event listener to begin?

document.addEventListener("DOMContentLoaded", (event) => {
  console.log("DOM fully loaded and parsed");
  setTimeout(startObserver, 2000);
});

function startObserver() {
        const observedArea = document.querySelector(".c_ChatRoom__list-item-counter");
        
        if (!observedArea) {
            console.log("⚠️ Observed area not found! Retrying in 1s...");
            setTimeout(startObserver, 1000);
            return;
        }

        const observer = new MutationObserver(() => {
            const highlightedElement = observedArea.querySelector(".c_ChatRoom__list-item-counter.is-highlighted");

            if (highlightedElement) {
                console.log("🔥 Spot available! Waiting 0.1s before clicking...");
                setTimeout(() => {
                    const counter = highlightedElement.closest(".c_ChatRoom__list-item").querySelector(".c_ChatRoom__list-item-counter");
                    if (counter) {
                        console.log("🖱️ Clicking on the available spot now!");
                        counter.click();
                    }
                    observer.disconnect();
                    console.log("🔌 Observer deactivated.");
                    
                    setTimeout(() => {
                        console.log("🔄 Reactivating observer...");
                        observer.observe(observedArea, { childList: true, subtree: true });
                    }, 5000);
                }, 100);
            }
        });

        observer.observe(observedArea, { childList: true, subtree: true });
        console.log("👀 Observing changes inside the chat rooms availability list...");
}
Reasons:
  • Long answer (-1):
  • Has code block (-0.5):
  • Ends in question mark (2):
  • Low reputation (0.5):
Posted by: dbakr

79553832

Date: 2025-04-03 19:36:29
Score: 2
Natty:
Report link
  1. Go to the post and click the curved arrow to Share.
  2. Choose Send in Messenger.
  3. Send it to yourself.
  4. In messenger hover the mouse over the message and voilà... you will see the shortened link!
  5. Copy it for further use by right click and Copy Link.
Reasons:
  • Low length (0.5):
  • No code block (0.5):
  • Self-answer (0.5):
  • Low reputation (0.5):
Posted by: Bálint Sass

79553824

Date: 2025-04-03 19:33:28
Score: 1
Natty:
Report link

When you use Redux Toolkit (createSlice), Immer automatically creates a draft copy of the state so that you can "mutate" it directly. However:

If state is a primitive (number, string, boolean) → Immer cannot create a draft because drafts only work on reference types (objects/arrays).

When state is an array or object → Immer tracks changes and applies them correctly.

let loggerSlice = createSlice({
    name:"logger",
    initialState:"",   //will not work instead use { msg :""}
  })
Reasons:
  • Has code block (-0.5):
  • Starts with a question (0.5): When you use
  • Low reputation (1):
Posted by: Shubham More

79553807

Date: 2025-04-03 19:22:25
Score: 1
Natty:
Report link
SELECT 
    jobid,
    schedule,
    command,
    nodename,
    database,
    username,
    active
FROM cron.job;
Reasons:
  • Low length (1):
  • Has code block (-0.5):
  • Low reputation (0.5):
Posted by: Pnar Sbi Wer

79553804

Date: 2025-04-03 19:21:25
Score: 3
Natty:
Report link

I have tried the given options. But it didn't work for me. So I disconnected the server and connected it again. It worked.

Reasons:
  • Blacklisted phrase (1): it didn't work for me
  • Whitelisted phrase (-1): It worked
  • Low length (1):
  • No code block (0.5):
  • Single line (0.5):
  • Low reputation (1):
Posted by: Sujith S

79553803

Date: 2025-04-03 19:21:25
Score: 1
Natty:
Report link

per @cmgchess -

This can all be done in two steps:

{
  _id: 1,
  categories: [123, 234],
  // other fields
}
{
  "_id": 1,
  "categories": [
    {
      "_id": 123,
      "value": "Category name"
    },
    {
      "_id": 234,
      "value": "Other category name"
    }
  ],
  // other fields
}
// operation:
{
  $set: {
    categories: {
      $map: {
        input: "$categories",
        as: "category",
        in: "$$category.value"
      }
    }
  }
}
// result:
{
  "_id": 1,
  "categories": [
    "Category name",
    "Other category name"
  ],
  // other fields
}

paydirt. :)

Reasons:
  • Long answer (-0.5):
  • Has code block (-0.5):
  • User mentioned (1): @cmgchess
  • Self-answer (0.5):
  • Low reputation (0.5):
Posted by: dinx

79553799

Date: 2025-04-03 19:19:24
Score: 3
Natty:
Report link

I have since added close to the end, changed the i2c timing and it is much better performing now

open i2c
write addr, registry
read addr,registry
add/subtract char values

wait 50 milliseconds
write addr,registry,new_value

Thanks for the replies

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

79553793

Date: 2025-04-03 19:16:24
Score: 2
Natty:
Report link

Feature Unavailable

To date, Google hasn't released a fix to stop deleted events from appearing in Google Calendar API results.


The only workaround that you may do as of now is to set singleEvents to true or set showDeleted to false.

What I recommend:

submit a Feature Request to Google using this link, detailing the need for a workaround to this current limitation.

See how to create an issue in the Google Issue Tracker.

Reasons:
  • Blacklisted phrase (1): this link
  • No code block (0.5):
  • Low reputation (0.5):
Posted by: Gyul

79553786

Date: 2025-04-03 19:09:22
Score: 2
Natty:
Report link

Instead of applying a background modifier on List, you should apply a listRowBackground on its rows. For example:

List {
    ForEach(selectedSheet, id: \.self) { sheet in
        Text(sheet)
            .padding(10)
            .frame(maxWidth: .infinity)

    }
    .listRowBackground(Color.clear)
}

enter image description here

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

79553779

Date: 2025-04-03 19:05:21
Score: 1
Natty:
Report link

I suggest to use SpringApplicationRunListener:

class AppListenerExcluder implements SpringApplicationRunListener {

    AppListenerExcluder(SpringApplication app, String[] args) {
        app.setListeners(
                app.getListeners().stream()
                        .filter(not(listener -> listener instanceof UnwantedListener))
                        .toList());
    }
}

We have to declare It in spring.factories in app "resources" folder:
src
ㅤmain
ㅤㅤresources
ㅤㅤㅤMETA-INF
ㅤㅤㅤㅤspring.factories

ㅤㅤㅤㅤㅤorg.springframework.boot.SpringApplicationRunListener=\
ㅤㅤㅤㅤ  ㅤdev.rost.client.config.AppListenerExcluder

GitHub 🔗

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

79553775

Date: 2025-04-03 19:03:19
Score: 6 🚩
Natty: 6
Report link

I'm having this exact issue. Did you figure out how to log out without opening a new tab? I think they should have an API endpoint for signing out the user, but it seems they don't

Reasons:
  • RegEx Blacklisted phrase (3): Did you figure out
  • Low length (0.5):
  • No code block (0.5):
  • Contains question mark (0.5):
  • Single line (0.5):
  • Low reputation (1):
Posted by: Caio Accioly

79553774

Date: 2025-04-03 19:03:19
Score: 1.5
Natty:
Report link

How I understand your problem as having two parts

PART 1: An attacker can intercept API requests from your application, allowing them to understand your API structure and make unauthorized requests by replicating your application's communication patterns. PART 2: You also would like to intercept and view network requests.

Solution for Part 1: Preventing malicious attacks on your API

Well, it is a very broad issue, I'd say. There are various ways to ensure your API is regarded as safe from external attacks. Now, there may always be vulnerabilities out of your control, although following best practices like using "https", "authorization headers", and Android SafetyNet (see this response and also this thread should make a difference.

Solution for Part 2: Intercepting Your Own Requests

You can try using Proxyman which has a solid free tier.

Reasons:
  • Long answer (-0.5):
  • No code block (0.5):
  • Starts with a question (0.5): How I
  • Low reputation (1):
Posted by: LogicalLegend007

79553773

Date: 2025-04-03 19:01:18
Score: 8 🚩
Natty:
Report link

thanks, all good!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!

Reasons:
  • Blacklisted phrase (0.5): thanks
  • Low length (1.5):
  • No code block (0.5):
  • Self-answer (0.5):
  • Has no white space (0.5):
  • Single line (0.5):
  • No latin characters (1.5):
  • Filler text (0.5): !!!!!!!!!!!!!!!!!!!!!!!!!!!!!!
  • Low entropy (1):
  • Low reputation (1):
Posted by: user138226

79553766

Date: 2025-04-03 18:54:16
Score: 2.5
Natty:
Report link

is the second data was something new or similar.

if it is new check whether the data is clean for the model to process.

if the dataset is similar I think the model will learn little from it.

I think that the cause can be in data

Reasons:
  • Low length (0.5):
  • No code block (0.5):
  • Starts with a question (0.5): is the
  • Low reputation (1):
Posted by: Vijayaragul

79553761

Date: 2025-04-03 18:51:15
Score: 5
Natty:
Report link

This seems to document exactly what I need to do: https://fastapi.tiangolo.com/advanced/events/#lifespan

Reasons:
  • Blacklisted phrase (0.5): I need
  • 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: Ivan Webber

79553757

Date: 2025-04-03 18:48:15
Score: 2
Natty:
Report link

Looks like the night is darkest before dawn - I finally managed to crack a working version, which then allowed me to finally make sense of all the stuff that was confusing me.

The heart of my confusions was this: transactions in JDBC (and anything that builds on it) and reactive clients are completely incompatible and cannot be interchanged. This is because, fundamentally, they go through entirely different database connections, managed by entirely different pools and clients:

As a consequence:

Now, a big reason for this confusion was what is said in the docs on transactions and reactive extensions, as from that, it seemed like these two worlds are interoperable. However, this only applied to reactive pipelines using JDBC connections, and NOT to reactive pipelines using reactive clients. For pipelines using JDBC connections, and only those, the JDBC transaction is propagated via context propagation so its lifecycle matches the lifecycle of the reactive pipeline, not the function from which it is returned.

Another source of confusion: for the reactive client specifically, if you want to perform multiple operations within the reactive transaction, you need to manually pass around the connection - unlike with JDBC (and everything that builds on it, such as JPA, Hibernate, etc.) there's no behind-the-scenes magic that extracts the connection from some place. I think this could be done in theory, but it's not done in practice, and this key difference is not really emphasized in the docs.

Given that, the answers to my questions are:

Hope this helps any wanderers that stumble upon this.

Reasons:
  • Blacklisted phrase (1): I have to do
  • Blacklisted phrase (0.5): I need
  • Blacklisted phrase (0.5): I cannot
  • Whitelisted phrase (-1): Hope this helps
  • RegEx Blacklisted phrase (1): I want
  • Long answer (-1):
  • Has code block (-0.5):
  • Self-answer (0.5):
  • Low reputation (1):
Posted by: Gabriel Shanahan

79553754

Date: 2025-04-03 18:48:15
Score: 0.5
Natty:
Report link

The answer from @damp11113 I believe is now outdated. This error message is generated because the user you are attempting to connect with does not have the relevant permissions to do so. (using password: YES) only means that the user attempted to provide a password during the failed login.

To give all permissions to a MySQL user, type the following into the command line:

mysql -u YourUserName -p

-p means you will be providing a password. If logging in without a password, do not include -p. The command line will now prompt you for your password. Then:

GRANT ALL ON YourDatabaseName.* TO 'YourUserName';

And save the changes:

COMMIT;

See also the relevant documentation.

Reasons:
  • Long answer (-0.5):
  • Has code block (-0.5):
  • User mentioned (1): @damp11113
  • Low reputation (0.5):
Posted by: mwolfe 11

79553752

Date: 2025-04-03 18:47:14
Score: 3.5
Natty:
Report link

I bought domain and then setup nginx on server and attached public IP to domain name and then using win-acme I created free SSL certificate and its working now

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

79553749

Date: 2025-04-03 18:44:14
Score: 2
Natty:
Report link

The FitnessGram Pacer test is a multistage aerobic capacity test that progressively gets more difficult as it continues. The 20 meter Pacer test will begin in 30 seconds. Line up at the start. The running speed starts slowly, but gets faster each minute after you hear this signal *boop*. A single lap should be completed each time you hear this sound *ding*. Remember to run in a straight line, and run as long as possible. The second time you fail to complete a lap before the sound, your test is over. The test will begin on the word start. On your mark, get ready, start.

Reasons:
  • Long answer (-0.5):
  • No code block (0.5):
  • Unregistered user (0.5):
  • Single line (0.5):
  • Low reputation (1):
Posted by: fitnessgram man

79553732

Date: 2025-04-03 18:38:12
Score: 3
Natty:
Report link

Using FreeRTOS in tight RAM spaces is hard. You might want to avoid using heap and write your program that will work with minimal heap. You can create your all RTOS related things (semaphores, queues, tasks etc.) in stack and you can avoid creation of them in runtime, but still, after all that you might left out with very limited RAM. You can change your heap scheme to a simpler one like heap_1 or 2. If not necessary, try to avoid using FreeRTOS in MCUs that have low memory since it's possible to write the program without an OS requirement. But if it's a necessity, I was able to create an RTOS project with I2C, SPI and UART enabled. You can:

task settings

That way, i was able to build the project and still left with 1.36kb of RAM space

ram space

You can find the example .ioc file here

Please keep in mind that I have never used stm32 with heap size of 0. Please share your experiences after testing.

Reasons:
  • RegEx Blacklisted phrase (2.5): Please share your
  • Long answer (-1):
  • No code block (0.5):
  • Low reputation (1):
Posted by: cserp

79553720

Date: 2025-04-03 18:31:10
Score: 3
Natty:
Report link

That is from the files not being part of source control. Errors will show a squiggle line under the project / sln. Add them to your source control and they will be green / white.

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

79553715

Date: 2025-04-03 18:29:10
Score: 1.5
Natty:
Report link

If you're not hearing back after submitting your resume, it might be getting lost in the ATS (Applicant Tracking System). These systems filter resumes based on keywords, formatting, and relevant skills, and if your resume doesn’t pass, it never reaches a recruiter.

How can you optimize your resume for ATS and increase your chances of landing an interview?

ATSAnalyzer.com is a free, AI-powered tool that instantly analyzes your resume and gives you actionable feedback to help it pass ATS filters.

Key Features:

Why Use ATSAnalyzer.com?

Take control of your job search and make sure your resume gets noticed by the right people!

Try it now at ATSAnalyzer.com

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

79553704

Date: 2025-04-03 18:25:08
Score: 1
Natty:
Report link

So I've duplicated this question to Apple support forum and it looks like it is current known behaviour. https://developer.apple.com/forums/thread/779223

As for other app as far as I understand they use share extensions to open this kind of file. And ones that I thought don't use share extension actually use it but without proper UI and invoking opening main app using objective C runtime to overpass extension limitations that is actually looks like a bad way to use extension. Some of the ways to do this may be found here. Also I've tried sample app with Action extension it works with p12 as well.

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

79553702

Date: 2025-04-03 18:23:08
Score: 1.5
Natty:
Report link

The problem is solved. A simple example was built using FXML and combining the GUI from the failing FXML program with code from the working non-FXML example and the failing FXML based program. The result works correctly for zooming with both slider and the scroll wheel, and panning to the edges of the image with zoom factors from 0.2 > 5.0, which is the eventual desired range. A test image is provided.

The only problem remaining is that when the image is zoomed smaller than the scroll pane, the image is not centered. Work continues.

The reason for the failure of the initial attempt or the first simplified program is not known.

Code for the working FXML based example is at:

https://github.com/windyweather/PanImageTwo

Thanks for your help.

Reasons:
  • Blacklisted phrase (0.5): Thanks
  • Whitelisted phrase (-0.5): Thanks for your help
  • Long answer (-0.5):
  • No code block (0.5):
  • Self-answer (0.5):
  • Low reputation (1):
Posted by: windyplayer

79553692

Date: 2025-04-03 18:14:05
Score: 4.5
Natty:
Report link

Usually, the HTTP 401 is a response related to an issue in the authentication process in the code due to invalid, missing or expired tokens.

Codes shared by @guillaume has similar logic from the official doc / GitHub and should work (but I guess not in this case).

Below steps / alternatives might be worth double checking:

Could you share the link referencing that Serverless VPC Access connector is a potential cause?

As a last resort, you can reach out to the paid support for detailed troubleshooting of the issue with Cloud Run functions specialist.

Reasons:
  • RegEx Blacklisted phrase (2.5): Could you share
  • Long answer (-0.5):
  • No code block (0.5):
  • Contains question mark (0.5):
  • User mentioned (1): @guillaume
  • Low reputation (0.5):
Posted by: J_Dubu

79553682

Date: 2025-04-03 18:09:03
Score: 2.5
Natty:
Report link

I'm not sure I am doing this right but the code below return 0. Shouldn't it be 10?

        select @startId:= 0;

        select id 
        from tableA a 
        where id>@startId
          and   id not in (select id from tableB) 
        order by id 
        limit 10;

        select @this_id:= MAX(id) from tableA;
Reasons:
  • Has code block (-0.5):
  • Ends in question mark (2):
  • Self-answer (0.5):
  • Low reputation (0.5):
Posted by: user3052443

79553681

Date: 2025-04-03 18:08:03
Score: 3
Natty:
Report link

enter image description hereIf your IP address changes frequently, you can also use a CIDR block to indicate the range of IPs that should be allowed to access your DB. As in the screenshot example, it's a 0.0.0.0/0, that would allow all IPs.

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

79553679

Date: 2025-04-03 18:07:03
Score: 2
Natty:
Report link

<input type="time" name="time" placeholder="hrs:mins" pattern="^([0-1]?[0-9]|2[0-4]):([0-5][0-9])(:[0-5][0-9])?$" class="inputs time" required>

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

79553674

Date: 2025-04-03 18:04:02
Score: 3
Natty:
Report link

For me, it was a matter of going into the project properties -> Configuration properties -> VCC++Directories -> Library Directories (I am using openGL), and including : ";$(LibraryPath)" at the end of my path, which automatically worked for the include path, but I had to do manually do for the Lib path I don't know why but it solved it

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

79553672

Date: 2025-04-03 18:04:02
Score: 1
Natty:
Report link

Open Task Manager -> On Processes tab, find 'Python' (or something like 'Python (3)') -> End task

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

79553667

Date: 2025-04-03 18:01:01
Score: 2
Natty:
Report link

Sometimes you should just clear the Cache and reload the window:

  1. Open the Command Palette in Visual Studio Code by pressing Ctrl+Shift+P.

  2. Type "Python Debugger"

  3. Choose "Clear Cache and Reload Window"

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

79553666

Date: 2025-04-03 18:01:01
Score: 1
Natty:
Report link

This might work but it's not the best way of doing this because flash memories are not infinitely writeable/readable. STM32s flash typically have 10.000 cycles of flash endurance since it's not designed to be written into repetitiely. Although it might work after that amount of cycles, it's not guaranteed. You might wear the flash down and make it unusable after repetitive writes. The best option here would be connecting a SPI controlled volatile or non-volatile memory to your STM. Using QSPI would be better because it's memory mapped and faster than SPI. Choosing between volatile or non-volatile memory is completely based on your design choice.

You can find the list of possible ICs here

You need to consider the clock speed, write and read times, size and interface of the IC you choose according to your needs

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