79539173

Date: 2025-03-27 14:30:33
Score: 1
Natty:
Report link

You can do all this with pure "JavaScript" without using the "DOM".

const sheet = (await imoprt("css-url", { with: { type: "css" } })).default;
//  This can also be used in "shadowRoot".
document.adoptedStyleSheets = [sheet];
Reasons:
  • Low length (0.5):
  • Has code block (-0.5):
  • Low reputation (1):
Posted by: 半导体果冻

79539171

Date: 2025-03-27 14:28:33
Score: 1
Natty:
Report link

The usage can be found here: http://www.cypherspace.org/rsa/story2.html

If the code is place in a file called rsa, then it can be run with arguments -k for the key. The file to encrypt / decrypt is read from STDIN, and the result is written to STDOUT.

In short: to encrypt to a public key:

rsa -k=public-key -n=rsa-modulus < msg > msg.rsa

And to decrypt the message with the private key

rsa -k=private-key -n=rsa-modulus < msg.rsa > msg.out

The Perl code is a condensed version of the already small code which can be found here:

http://www.cypherspace.org/rsa/org-post.html

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

79539169

Date: 2025-03-27 14:27:32
Score: 3
Natty:
Report link

I used https://icon.kitchen. It is pretty neat and easy to use.

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

79539158

Date: 2025-03-27 14:23:31
Score: 4
Natty:
Report link

iuno Broski frfr no cap 100 boxed like a fish

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

79539143

Date: 2025-03-27 14:17:30
Score: 1
Natty:
Report link

Always using long tags just fixed my mystery problem of legacy code in updating to PHP 8.2 from PHP 7.4.

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

79539142

Date: 2025-03-27 14:17:30
Score: 0.5
Natty:
Report link

Answers to your questions:

I. Breakpoints are grayed out when breakpoint information is not available. The compiler must generate the necessary information for the debugger. For this:

  1. It is necessary to enable the generation of this debugging information in the project settings: Project options/Building/Delphi Compiler/Linking/Debug information.

  2. Enable Projects/Your Project/Build Configurations/Debug.

  3. Conditional compilation directives should be checked - they can disable part or all of the file from generating information for the {$D-} debugger.

  4. It is necessary to rebuild the project: Projects/Your Project/Build.

    The *.rsm files will be created.

  5. Now you can debug.

II. The procedure is simple: If there is no debug information, there is no breakpoint.

III. You won't have any breakpoints in gray.

PS. It is necessary to build a project with the option of adding debugging information enabled. She won't add herself! Only then will the project be fully ready for debugging.

When creating a finished project, debugging information is deleted from it (Release mode).

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

79539128

Date: 2025-03-27 14:13:29
Score: 1.5
Natty:
Report link

You need to make PremiumDataState abstract or sealed.

Follow the migration guide from v2 to v3 for more information.

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

79539116

Date: 2025-03-27 14:10:28
Score: 1.5
Natty:
Report link

Imagine you are watching a game of chess. You keep track of the time since the players started on your wristwatch. This is the runtime.

The chess players have a clock on the table which only ticks when its the respective players time to make a move. This is the CPU time.

If a player is playing several games concurrently, that players clock is ticking on all the tables whenever its that players time to make a move. The time spent by a player playing several matches concurrently may rapidly increase beyond your wristwatch.

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

79539111

Date: 2025-03-27 14:09:25
Score: 6 🚩
Natty:
Report link

I'm encountering a very similar issue , the plugin is installed and the IAM role is correctly configured, but when I attempt to submit a SessionJob, I receive the following error in the Kubernetes Operator.

I have flink-deployment spec like below

  flinkConfiguration:
    fs.s3.impl: org.apache.hadoop.fs.s3a.S3AFileSystem
    fs.s3a.aws.credentials.provider: com.amazonaws.auth.WebIdentityTokenCredentialsProvider
Caused by: org.apache.hadoop.fs.s3a.auth.NoAuthWithAWSException: No AWS Credentials provided by DynamicTemporaryAWSCredentialsProvider TemporaryAWSCredentialsProvider SimpleAWSCredentialsProvider Environ │
│     at org.apache.hadoop.fs.s3a.AWSCredentialProviderList.getCredentials(AWSCredentialProviderList.java:216)                                                                                                │
│     at com.amazonaws.http.AmazonHttpClient$RequestExecutor.getCredentialsFromContext(AmazonHttpClient.java:1269)                                                                                            │
│     at com.amazonaws.http.AmazonHttpClient$RequestExecutor.runBeforeRequestHandlers(AmazonHttpClient.java:845)                                                                                              │
│     at com.amazonaws.http.AmazonHttpClient$RequestExecutor.doExecute(AmazonHttpClient.java:794)                                                                                                             │
│     at com.amazonaws.http.AmazonHttpClient$RequestExecutor.executeWithTimer(AmazonHttpClient.java:781)                                                                                                      │
│     at com.amazonaws.http.AmazonHttpClient$RequestExecutor.execute(AmazonHttpClient.java:755)                                                                                                               │
│     at com.amazonaws.http.AmazonHttpClient$RequestExecutor.access$500(AmazonHttpClient.java:715)                                                                                                            │
│     at com.amazonaws.http.AmazonHttpClient$RequestExecutionBuilderImpl.execute(AmazonHttpClient.java:697)                                                                                                   │
│     at com.amazonaws.http.AmazonHttpClient.execute(AmazonHttpClient.java:561)                                                                                                                               │
│     at com.amazonaws.http.AmazonHttpClient.execute(AmazonHttpClient.java:541)                                                                                                                               │
│     at com.amazonaws.services.s3.AmazonS3Client.invoke(AmazonS3Client.java:5456)                                                                                                                            │
│     at com.amazonaws.services.s3.AmazonS3Client.getBucketRegionViaHeadRequest(AmazonS3Client.java:6432)                                                                                                     │
│     at com.amazonaws.services.s3.AmazonS3Client.fetchRegionFromCache(AmazonS3Client.java:6404)                                                                                                              │
│     at com.amazonaws.services.s3.AmazonS3Client.invoke(AmazonS3Client.java:5441)                                                                                                                            │
│     at com.amazonaws.services.s3.AmazonS3Client.invoke(AmazonS3Client.java:5403)                                                                                                                            │
│     at com.amazonaws.services.s3.AmazonS3Client.getObjectMetadata(AmazonS3Client.java:1372)                                                                                                                 │
│     at org.apache.hadoop.fs.s3a.S3AFileSystem.lambda$getObjectMetadata$10(S3AFileSystem.java:2545)                                                                                                          │
│     at org.apache.hadoop.fs.s3a.Invoker.retryUntranslated(Invoker.java:414)                                                                                                                                 │
│     at org.apache.hadoop.fs.s3a.Invoker.retryUntranslated(Invoker.java:377)                                                                                                                                 │
│     at org.apache.hadoop.fs.s3a.S3AFileSystem.getObjectMetadata(S3AFileSystem.java:2533)                                                                                                                    │
│     at org.apache.hadoop.fs.s3a.S3AFileSystem.getObjectMetadata(S3AFileSystem.java:2513)                                                                                                                    │
│     at org.apache.hadoop.fs.s3a.S3AFileSystem.s3GetFileStatus(S3AFileSystem.java:3776)                                                                                                                      │
│     ... 29 more                                                                                                                                                                                             │
│ Caused by: com.amazonaws.SdkClientException: Unable to load AWS credentials from environment variables (AWS_ACCESS_KEY_ID (or AWS_ACCESS_KEY) and AWS_SECRET_KEY (or AWS_SECRET_ACCESS_KEY))                │
│     at com.amazonaws.auth.EnvironmentVariableCredentialsProvider.getCredentials(EnvironmentVariableCredentialsProvider.java:49)                                                                             │
│     at org.apache.hadoop.fs.s3a.AWSCredentialProviderList.getCredentials(AWSCredentialProviderList.java:177)

Does anyone have suggestions on how to identify and resolve this issue using Flink 1.17?

Reasons:
  • RegEx Blacklisted phrase (3): Does anyone have
  • RegEx Blacklisted phrase (1): I receive the following error
  • Long answer (-1):
  • Has code block (-0.5):
  • Ends in question mark (2):
  • Unregistered user (0.5):
  • Low reputation (1):
Posted by: Niro

79539104

Date: 2025-03-27 14:07:25
Score: 0.5
Natty:
Report link

This is simply a funny "this is the current state, I like Star Wars" message in the python uWSGI code. See:

https://uwsgi-docs.readthedocs.io/en/latest/Emperor.html

"As soon as a vassal manages a request it will became “loyal”. This status is used by the Emperor to identify bad-behaving vassals and punish them."

So if a new request comes it, it is given to a child (a vassal). If the "vassal" signals it has accepted the request, the process manager designates the status of the child (vassal) as "loyal".

This has nothing to do with Perl, but everything with the Python uWSGI implementation.

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

79539091

Date: 2025-03-27 14:03:24
Score: 4
Natty:
Report link

Ok I found the issue.

The ingress type of the symfony container has to be tcp not http

enter image description here

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

79539090

Date: 2025-03-27 14:03:24
Score: 2
Natty:
Report link

adding 'react-jsx-runtime' to dependencies in functions.php seems to work for me.

wp_enqueue_script('my-react-theme-app', get_template_directory_uri() . '/build/index.js', array('react-jsx-runtime', 'wp-element'), '1.0.0', true);

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

79539089

Date: 2025-03-27 14:03:23
Score: 4
Natty:
Report link

Solved. Just forgot to add some parameters.

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

79539088

Date: 2025-03-27 14:02:23
Score: 1
Natty:
Report link

From here: https://gist.github.com/azu/376356adf1c56e0822584b0681d5a775

Solution

failed to register layer: rename <src> <dist>: file exists

Deleting the rubbish file in this <dist> dir will cure the problem, but this file is in Docker, In Docker for macOS, you can delete it by going into Docker and forcibly rm it.

$ docker run -it --rm --privileged --pid=host alpine:edge nsenter -t 1 -m -u -n -i rm -rf /var/lib/docker/image/overlay2/layerdb/sha256/<sha>
Reasons:
  • Has code block (-0.5):
  • Unregistered user (0.5):
  • Low reputation (1):
Posted by: Laura

79539073

Date: 2025-03-27 13:56:22
Score: 1
Natty:
Report link

This issue does not occur if you define the image scaling gesture alone.

Problems arise when SimultaneousGesture allows multiple gestures to be performed simultaneously.

.gesture(scaleGesture)  --->  No problems occur

.gesture(SimultaneousGesture(rotateGesture, scaleGesture))  ----> Problems occur
Reasons:
  • Low length (0.5):
  • Has code block (-0.5):
  • Self-answer (0.5):
  • Low reputation (0.5):
Posted by: BB-8

79539069

Date: 2025-03-27 13:53:21
Score: 2.5
Natty:
Report link

I had a same problem and followed recommended answer by Longsam @HuyNA : I followed your comment for answer by Longsam. It works but it clears the document. My requirement is like chromeTabs. My richtextbox is inside the Tab and for each Tab It should be dock and undock from main window. SO contents must not be cleared.

Reasons:
  • No code block (0.5):
  • User mentioned (1): @HuyNA
  • Low reputation (1):
Posted by: Heena Thakkar

79539066

Date: 2025-03-27 13:51:21
Score: 1
Natty:
Report link

You can add the following code in your .cargo/config.toml :

[build]
rustflags = ["-Clink-arg=-lobjc", "-Clink-arg=-framework", "-Clink-arg=AppKit"]

With this you don't have to pass arguments every time and can just do cargo run --release

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

79539047

Date: 2025-03-27 13:43:19
Score: 0.5
Natty:
Report link

For me the source of this and other errors was trying to use pnpm dlx with expo start.

If you're using pnpm just use pnpm expo start

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

79539044

Date: 2025-03-27 13:42:19
Score: 1
Natty:
Report link

Since I don’t know the exact data type of your stored data, I can’t provide a precise solution. However, there is an open-source tool that can read various data formats and transform FHIR resources into different flat structures (such as CSV, relational database tables, or JSON arrays). It allows you to define mappings and work with different file types effortlessly. I believe this tool can be highly beneficial in transforming your data into FHIR-compliant data.

Disclaimer: I am the lead developer of this tool.

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

79539033

Date: 2025-03-27 13:36:18
Score: 1.5
Natty:
Report link

Besides the b.data_oss < a.data_oss +10 criteria, I see no meaningful optimizations.

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

79539030

Date: 2025-03-27 13:35:18
Score: 1.5
Natty:
Report link

was so easy - should have known - just a change in the table join!

ON Sub.DateReceived <= Main.Week AND (Sub.OutcomeDate IS NULL OR
                                                                                     Sub.OutcomeDate > Main.Week)
Reasons:
  • Low length (0.5):
  • Has code block (-0.5):
  • Self-answer (0.5):
  • Low reputation (1):
Posted by: Paula Morrison

79539028

Date: 2025-03-27 13:35:18
Score: 3
Natty:
Report link

Thanks for replying Tom.

According to my study in I2C protocol after 8th clock pulse Master leaves the SDA line and Slave needs to pull that to LOW if slave Address matches for ACK and for NACK the left SDA line stays high.

As per our observation in Logic Analyzer:

slave address of OV5640 camera is 0X78 for Write
enter image description here-

We are able to receive 0 as ACK bit from slave but according to SCCB Datasheet enter image description here-Datasheet snapshot
there can be possible of sending 0 and 1 or Don't care (x) contradict for ACK bit.

So we are not able to consider as proper ACK from slave side.

If anyone has proof for Slave will send only 0 for ACK and not send don't care at 9th clock pulse is most preferable for us.

Reasons:
  • Blacklisted phrase (0.5): Thanks
  • Blacklisted phrase (1): enter image description here
  • Long answer (-0.5):
  • No code block (0.5):
  • Self-answer (0.5):
  • Low reputation (1):
Posted by: VHIGNESHWARAN_L 701

79539020

Date: 2025-03-27 13:32:17
Score: 1
Natty:
Report link

The issue happens because the root component is wrapped with <React.StrictMode> which mounts twice in development mode. This leads to double fetching of the default API category.

const root = ReactDOM.createRoot(document.getElementById('root'));
root.render(
  <React.StrictMode>
    <Provider store={store}>
      <App />
    </Provider>
  </React.StrictMode>
);
Reasons:
  • Has code block (-0.5):
  • Self-answer (0.5):
  • Low reputation (1):
Posted by: Jaymode

79539014

Date: 2025-03-27 13:28:16
Score: 0.5
Natty:
Report link

Deleting .idea folder, restarting pycharm and selecting the interpreter again did the trick for me.

I think in my case the issue might have occurred due to deleting the old .venv folder created with poetry and re-creating .venv with uv. Maybe pycharm caches something in .idea

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

79539012

Date: 2025-03-27 13:28:16
Score: 0.5
Natty:
Report link

The autocomplete doesn't include Materials.

Classroom.Courses

The Classroom API docs have Material type, but not a REST resource with such name. Try using CourseWorkMaterials instead.

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

79539007

Date: 2025-03-27 13:27:16
Score: 2.5
Natty:
Report link

I tried to open Anaconda3 by admin and then typing at the prompt jupyter notebook password. It works.

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

79539005

Date: 2025-03-27 13:26:16
Score: 3.5
Natty:
Report link

endicontintmode to use an image and set endicondrawable

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

79538997

Date: 2025-03-27 13:24:15
Score: 2
Natty:
Report link

Turns out it was caused by the Loom Chrome extension. It was injecting its own Emotion CSS into the page, which ended up interfering with our font styles.

Disabling Loom resolved the issue right away.

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

79538994

Date: 2025-03-27 13:23:14
Score: 8 🚩
Natty: 4
Report link

I am trying to achieve something similar but I am always getting some error related to JSON. I tried using the code from microsoft doc aswell as the code you guys are using.
Help me troubleshoot what could be the issue and how do I create a policy for lifetime token for a specific app in entra.enter image description here

Reasons:
  • Blacklisted phrase (1): Help me
  • Blacklisted phrase (1): how do I
  • Blacklisted phrase (1): I am trying to
  • Blacklisted phrase (1): enter image description here
  • Blacklisted phrase (1): what could be
  • RegEx Blacklisted phrase (1): I am always getting some error
  • Low length (0.5):
  • No code block (0.5):
  • Low reputation (1):
Posted by: Ayush Adhikari

79538992

Date: 2025-03-27 13:23:14
Score: 3.5
Natty:
Report link

Je suis content de savoir que vous faites tout sa pour nous merci

Reasons:
  • Low length (1.5):
  • No code block (0.5):
  • Single line (0.5):
  • Low reputation (1):
Posted by: Youl sie Salem Michel Salem

79538989

Date: 2025-03-27 13:22:14
Score: 3.5
Natty:
Report link

Thanks. I had a similar issue and could not figure this part about formatter return value with class identifier. Now everything works correctly :)

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

79538985

Date: 2025-03-27 13:22:14
Score: 3
Natty:
Report link

If you are using breeze, the issue might be a livewire one and not a mary-ui one

Removing Laravel Breeze's Alphine

Reasons:
  • Low length (1.5):
  • No code block (0.5):
  • Low reputation (1):
Posted by: Lance Munyao

79538974

Date: 2025-03-27 13:16:12
Score: 1.5
Natty:
Report link

I do agree with Thomas' point and am posting the solution for the community's benefit. If anyone is having the same issue, they can resolve it with the posted answer.

Reference: https://learn.microsoft.com/en-us/azure/container-apps/revisions

https://azure.status.microsoft/en-us/status

Reasons:
  • Long answer (-0.5):
  • No code block (0.5):
  • Me too answer (2.5): having the same issue
  • High reputation (-1):
Posted by: Venkat V

79538961

Date: 2025-03-27 13:10:11
Score: 1
Natty:
Report link

No; the only way is to reinitialize logical replication from scratch.

If you happened to know the exact LSN to which you replayed the data, there would be a way. But you don't know that, do you?

Reasons:
  • Low length (0.5):
  • No code block (0.5):
  • Ends in question mark (2):
  • High reputation (-2):
Posted by: Laurenz Albe

79538959

Date: 2025-03-27 13:10:11
Score: 1
Natty:
Report link

Open file ~/.config/sublime-text/Packages/Prettierd\ Format/prettierd_formatter.py

and instead the line: default_path = shutil.which("prettierd")

Insert this line: default_path ='/home/user/.nvm/versions/node/v22.14.0/bin/prettierd'

The line '/home/user.../prettierd' on your system you can get from command 'which prettierd' and add 'prettierd' to it.

P.S. It seems to me shutil.which('prettierd') cannot find the right path to "prettierd" even though in "prettierd_format.sublime-settings" the path was clear { "prettierd_path": "/home/user/.nvm/versions/node/v22.14.0/bin/prettierd" }

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

79538952

Date: 2025-03-27 13:09:11
Score: 4
Natty:
Report link

The flow you explained above seems the only way to update phone number. I can add that you can unenroll the old phone number. There is unenroll method available. https://pub.dev/documentation/firebase_auth/latest/firebase_auth/MultiFactor/unenroll.html

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

79538951

Date: 2025-03-27 13:08:10
Score: 2.5
Natty:
Report link

So it looks like running multiple project setup.py at once, and having them finish close to the same time, causes problems with the `lib/python3.10/site-packages/easy-install.pth` file, removing xformers, and removing its visibility from `pip list`.

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

79538949

Date: 2025-03-27 13:06:10
Score: 1.5
Natty:
Report link

The error you are getting is referring to the Citus partition column of the distributed partitioned table, i.e., the distribution column. In Citus, you cannot modify the value of the distribution column. The name partition column in Citus can be a bit confusing in this case, so better to address it as distribution column. Think of your error like this:

ERROR:  modifying the value of the distribution column of rows is not allowed
  • Is there any way to enable this kind of row movement in Citus?

  • Or do I need to manually delete and reinsert the row?

There is no way to modify the value of the distribution column in Citus with an UPDATE statement. Your second question is the only way to modify the value of the distribution column in Citus.

  • Is there a recommended workaround when working with partition keys in Citus?

Your table contact_details is partitioned by range on the created_at column and judging by the error you are facing during UPDATE, your table is also distributed on the created_at column. The workaround, and the recommended practice, is to actually distribute the table on the id column. This way, it will work, and moreover Citus will route your UPDATE query to the relevant shard because that query filters on the id column, and Citus will execute it effectively.

Reasons:
  • Blacklisted phrase (0.5): I need
  • Blacklisted phrase (1): Is there any
  • Long answer (-1):
  • Has code block (-0.5):
  • Contains question mark (0.5):
  • Low reputation (1):
Posted by: Naisila

79538943

Date: 2025-03-27 13:05:10
Score: 1
Natty:
Report link

You should type

key:abc value:123456789

in the field with the hint 'Search issue title, subtitle or keys'.

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

79538938

Date: 2025-03-27 13:05:10
Score: 1
Natty:
Report link

If you are using coil version 3.x.x, You must add the coil-okhttp3 dependency in your build.gradle, along with the composed one

  implementation("io.coil-kt.coil3:coil-compose:3.1.0")
  implementation("io.coil-kt.coil3:coil-network-okhttp:3.1.0")

coil github

It enables Coil to fetch images from network sources

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

79538937

Date: 2025-03-27 13:04:09
Score: 1.5
Natty:
Report link

I figreout that the backgroundColor of the graph it was made it by the View, so just change it there. And about to remove the grid lines you can pass

 axisOptions={{ lineColor:'transparent',}}
Reasons:
  • Low length (0.5):
  • Has code block (-0.5):
  • Self-answer (0.5):
  • Low reputation (1):
Posted by: Guilherme Alves

79538934

Date: 2025-03-27 13:03:09
Score: 1
Natty:
Report link

After a long day (and not the first) of searching I finally arrived at a solution. @Jason Pan is correct. During the sign-out process you have to call the Microsoft logout URI. My code ended up something like the following:

accountGroup.MapPost("/Logout", async (
    ClaimsPrincipal user,
    SignInManager<ApplicationUser> signInManager,
    [FromForm] string returnUrl,
    HttpContext httpcontext) =>
{
    // Clear the existing browser cookie
    await signInManager.SignOutAsync();
    //If there isn't a return URL, redirect to the login page
    returnUrl = string.IsNullOrEmpty(returnUrl) ? "/Account/Login" : returnUrl;

    if (user.Claims.Any(c => c.ToString().Contains("Microsoft")))
    {
        //If the user is authenticated with a Microsoft account, redirect to the Microsoft logout page
        var redirectUrl = $@"{httpcontext.Request.Scheme}://{httpcontext.Request.Host}{returnUrl}";
        string url = $@"https://login.microsoftonline.com/common/oauth2/v2.0/logout?post_logout_redirect_uri={redirectUrl}";
        return TypedResults.Redirect(url);
    }
    //Otherwise, redirect to the return URL
    return TypedResults.LocalRedirect(returnUrl);
});

If you have a single MS account logged in (for that browser) it will sign you out and redirect to the provided post_logout_redirect_uri. If you have multiple MS log ins it will ask which one you want to sign out of. In this case I find it does NOT reliably work (i.e. your still signed in w/Microsoft). But I've always had issues with a browser dealing with multiple MS logins.

I don't know if the order of sign out is important or not. If you want to call the MS log out URI first then you'll have to do the signInManager.SignoutAsync() on the callback URI.

I think there is a way to configure this when setting up the external provider but haven't found the right syntax yet. For now this works for my prototype.

It's also worth noting that EACH external provider will have their own logout URI. Somewhere a long time ago I found one for Github. Why oh why do they make it so hard to find? I guess you can check in but never leave :)

Reasons:
  • Long answer (-1):
  • Has code block (-0.5):
  • Contains question mark (0.5):
  • User mentioned (1): @Jason
  • Self-answer (0.5):
  • Low reputation (0.5):
Posted by: TexasJetter

79538916

Date: 2025-03-27 12:57:08
Score: 1.5
Natty:
Report link
=IF(SUM($A$2:A2) <= 100, SUM($A$2:A2),
IF(LARGE(IF(ISNUMBER($D$1:D1),$D$1:D1),1)+A2<=100,
LARGE(IF(ISNUMBER($D$1:D1),$D$1:D1),1)+A2,"Over"))

With legacy Excel such as Excel 2013 you can apply this formula. The formula must be entered with ctrl+shift+enter as an arrayformula.

enter image description here

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

79538914

Date: 2025-03-27 12:56:08
Score: 1
Natty:
Report link

Thanks Yarden for your answer.

Unfortunately, apt-key is deprecated and your command line can't process. But you gave me tips to find:

curl -sS  https://releases.jfrog.io/artifactory/jfrog-gpg-public/jfrog_public_gpg.key | sudo tee /usr/share/keyrings/jfrog.asc && echo "deb [signed-by=/usr/share/keyrings/jfrog.asc] https://releases.jfrog.io/artifactory/jfrog-debs xenial contrib" > /etc/apt/sources.list.d/jfrog.list

that gave me the key lacking to have a functional apt update. My 7.98 version should be updated (not sure, I am at 7.98.13 and should be at 7.98.15). But to upgrade it to the 7.104.14 (last current version) I had problems.

Your apt-get install jfrog-artifactory-oss=7.104.13 gives me an error: the package is deprecated or missing

Artifactory help website (can we say it is really a "help"? ...) gives me:

curl -g -L -O -J 'https://releases.jfrog.io/artifactory/artifactory-pro-debs/pool/jfrog-artifactory-pro/jfrog-artifactory-pro-[RELEASE].deb'

which is ok with pro version efficiently downloaded but doesn't compute if I replace pro by oss version

I tried to download the file from https://jfrog.com/fr/community/download-artifactory-oss/ and I got a .gz file that gave me a directory artifactory-oss-7.104.14 where I expected a .deb file

I am a bit at a loss there to update Artifactory... The key error is fixed but I can't get new versions.

Reasons:
  • Blacklisted phrase (0.5): Thanks
  • Long answer (-1):
  • Has code block (-0.5):
  • Contains question mark (0.5):
  • Self-answer (0.5):
  • Low reputation (1):
Posted by: Giannis

79538913

Date: 2025-03-27 12:56:08
Score: 1.5
Natty:
Report link

I cannot reproduce it using Apache JMeter 5.6.3 and Java 24:

enter image description here

enter image description here

As you can see, HTTP Request sampler is successful and response can be seen in the View Results Tree listener.

And Debug Sampler shows that I'm running Java 24.

It might be the case you're behind a proxy, in this case you need to make JMeter aware of this proxy

Reasons:
  • Blacklisted phrase (0.5): I cannot
  • Probably link only (1):
  • Low length (0.5):
  • No code block (0.5):
  • High reputation (-1):
Posted by: Ivan G

79538911

Date: 2025-03-27 12:55:07
Score: 1.5
Natty:
Report link

Chiming in because I found an instance where the right click -> Rename option was not shown. If you have any file relating to the Form1.cs open, the Rename option will not show on the context menu.

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

79538910

Date: 2025-03-27 12:55:07
Score: 5.5
Natty: 4.5
Report link

i am not able to get the data from cloudfront even after setting the cookie, can you please let me know how did you setup the cloudfront for cookie based and also how you are sending the cookie in nextjs

Reasons:
  • Blacklisted phrase (1): i am not able to
  • RegEx Blacklisted phrase (2.5): can you please let me know how
  • Low length (0.5):
  • No code block (0.5):
  • Single line (0.5):
  • Low reputation (0.5):
Posted by: Sanjoy Pator

79538909

Date: 2025-03-27 12:55:07
Score: 1.5
Natty:
Report link

As the example in documentation (https://tanstack.com/query/latest/docs/framework/react/reference/QueryClientProvider#queryclientprovider), you have to instantiate your queryClient outside of your app component.

This solved the problem for me.

import { QueryClient, QueryClientProvider } from '@tanstack/react-query'

const queryClient = new QueryClient()

function App() {
  return <QueryClientProvider client={queryClient}>...</QueryClientProvider>
}

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

79538908

Date: 2025-03-27 12:55:07
Score: 1.5
Natty:
Report link

First you must declare a variable in the PLC program to hold the value. Then you must link this variable to your actual hardware, the EL3356 IO terminal.

How to do this is explained in the EL3356 manual, section 5.1.2

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

79538907

Date: 2025-03-27 12:55:07
Score: 1
Natty:
Report link

***My Function App is using Azure Durable Functions triggered by Service Bus to process scheduled messages. Sometimes, these messages aren't being received by my Function App but the messages disappear from the queue and after the full activity time they are being rescheduled and put on the queue for next week, which is part of my logic at the end of my activity function. So while none of the code inside is being logged or executed on my Function App end, the rescheduling shows that maybe it's being received and processed elsewhere?

To resolve this you need to check few things mentioned below. ****Check Function App Scaling Settings Your Azure Function App may be scaling out unexpectedly, causing multiple instances of the function to run and potentially lead to competing consumers or missing messages.

****Check for Competing Consumers on Service Bus Queue It sounds like the messages might be getting consumed by something other than your function app. You need to ensure there are no other consumers (such as other functions or apps) consuming messages from the same Service Bus queue.

***Check Service Bus Subscriptions: If your Service Bus queue is being used by multiple consumers, they could be picking up the messages. In that case, ensure that only your Durable Function is processing messages, and check for other consumers.

***Test OSC Message Sending Independently:

****Check and Adjust Service Bus Message Lock Duration If your messages are being locked but not fully processed in the expected time frame, the Service Bus lock might expire, and the message might be released back into the queue. This can cause issues where your function doesn’t complete the processing before the lock expires.

**** Monitor Function App Logs Using Application Insights If your Function App isn’t processing messages, there may be an issue with the function execution, and logs could help identify why.

****Check for Function Timeouts or Long-Running Activities If your function is processing long-running activities, it may be running into timeouts. For Durable Functions, this can be especially important because activities that take too long can be retried or rescheduled.

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

79538903

Date: 2025-03-27 12:54:06
Score: 4
Natty: 5
Report link

Bit old now, but this repo has helped me: https://github.com/hashicorp/go-bexpr

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

79538900

Date: 2025-03-27 12:51:06
Score: 1.5
Natty:
Report link

Found the answare here.

First install packages.

#r "nuget:Microsoft.DotNet.Interactive.SqlServer,*-*"

enter image description here

Then create the kernels of SQL and Python.

I use a conda environment.

#!connect mssql --kernel-name DB "Server=server_name;Database=DB_name;Integrated Security=True;TrustServerCertificate=true;"

#!connect jupyter --kernel-name python --conda-env env_prueba2 --kernel-spec python3

enter image description here

And them to share data between languages in the same notebook.

Extract from SQL Server a query.

Note the first line, the data as a name to share from SQL to Python.

enter image description here
And now it can be use with Python.

As you can see the query result save in pandas dataframe.

enter image description here

The only problem that I found is that querys result must to be small. I try share 500,000 rows and crash.

By!

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

79538896

Date: 2025-03-27 12:50:05
Score: 4.5
Natty:
Report link

Вы можете использовать бесплатный компонент TJvComputerInfoEx.
В нём много детальной информации по каждому параметру компьютера.

В вашем случае: CPU / Name

Reasons:
  • Low length (1):
  • No code block (0.5):
  • No latin characters (2):
  • Low reputation (1):
Posted by: owt

79538894

Date: 2025-03-27 12:49:05
Score: 2.5
Natty:
Report link

You need to generate a token and enable SSO for the generated token. Here are the steps to follow

  1. Go to Github Tokens https://github.com/settings/tokens

  2. Generate new Token (Classic) enter image description here

  3. Select the access that you require enter image description here

  4. Once token is generated, Configure SSO and authorize it. enter image description here

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

79538879

Date: 2025-03-27 12:43:04
Score: 1
Natty:
Report link

Can you bake your own class for this? I've written a little sudo code for a demo, if you need a more concrete example I can provide one at a later time.

InMemoryOptionsMonitor {
    
    T _value;

    ctor(T value) {
        _value = value;
    }   

    event EventHandler<T> OnChange;

    void Replace(T newValue)
    {
        _value = newValue;
        OnChange.Invoke(this, newValue);
    }
    ## OR
    void Update(Action<T> update)
    {
        update(_value);
        OnChange.Invoke(this, _value);
    }

    T Current() => _value;
}

I would preferable use T to be a readonly struct/record, then consumers can only update the value in the Options monitor through the replace method

Reasons:
  • Long answer (-0.5):
  • Has code block (-0.5):
  • Contains question mark (0.5):
  • Starts with a question (0.5): Can you
  • Low reputation (1):
Posted by: Daniel Brandenburg

79538860

Date: 2025-03-27 12:35:02
Score: 2
Natty:
Report link

This was resolved by ensuring the virtual environment was created using Python 3.11.6. Although I had installed the Python version and selected it as the python interpreter in vscode, it was not the interpreter used. I used the command pallet and selected Python: Create Environment instead.

The error was incompatibility between pandas and the python version

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

79538851

Date: 2025-03-27 12:32:01
Score: 0.5
Natty:
Report link

All major browser have support for the :user-invalid pseudo class since 2023.

It sounds exactly like what you are looking for:

The :user-invalid CSS pseudo-class represents any validated form element whose value isn't valid based on their validation constraints, after the user has interacted with it.

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

79538842

Date: 2025-03-27 12:29:01
Score: 2
Natty:
Report link

CPython's Lib/heapq.py is implemented using the binary heap. Your implementation is based on another data structures with different asymptotic runtime complexity.

Runtime complexity of heaps

As such, it's totally possible there exists a graph where your implementation can perform faster than the official one. In any case, it's important to benchmark both of them on different graphs.

References:

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

79538836

Date: 2025-03-27 12:27:00
Score: 3
Natty:
Report link

If you still need this, during the installation, you have to edit elasticsearch.yml file and replace the '_site_' with the IP of the server.

Tricky, but it works.

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

79538833

Date: 2025-03-27 12:26:00
Score: 3.5
Natty:
Report link

Maybe late and someone already said it but convert it to ssml

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

79538824

Date: 2025-03-27 12:21:59
Score: 1.5
Natty:
Report link

If p<alpha, that means they're dependent, not independent.

Simply put, if p<alpha, there is a relationship between your categorical variables

Source: the literal documentation

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

79538823

Date: 2025-03-27 12:20:59
Score: 0.5
Natty:
Report link

I tried with the first solution by deleting .idea folder and reopen it. The problem got fixed by a few seconds then went back. Luckily, this way works for me.

In PHPSTORM, File -> New Project

In the location, type your problematic project. Then PhpStorm will complain 'This directory is not empty', so choose Create from Existing Source

Works !

Reasons:
  • Whitelisted phrase (-1): works for me
  • No code block (0.5):
  • Low reputation (1):
Posted by: Rita555-Simon

79538808

Date: 2025-03-27 12:17:57
Score: 8 🚩
Natty: 6
Report link

can any one suggest ? what can we do ? @google developer or @anyone

Reasons:
  • RegEx Blacklisted phrase (2.5): can any one suggest
  • Low length (1.5):
  • No code block (0.5):
  • Contains question mark (0.5):
  • User mentioned (1): @google
  • User mentioned (0): @anyone
  • Single line (0.5):
  • Starts with a question (0.5): can any one
  • Low reputation (1):
Posted by: Software developer

79538803

Date: 2025-03-27 12:16:57
Score: 2
Natty:
Report link

The answer with the manual certificate installation hasn't helped me - it just changed the error to the following:

Installer encountered an error: 0x800b0109

A certificate chain processed, but terminated in a root certificate which is not trusted by the trust provider.

What did help me is the Support for urgent Trusted Root updates for Windows Root Certificate Program in Windows (KB3004394)

Reasons:
  • Blacklisted phrase (1): help me
  • RegEx Blacklisted phrase (2): urgent
  • Low length (0.5):
  • No code block (0.5):
  • High reputation (-2):
Posted by: Ilya Serbis

79538802

Date: 2025-03-27 12:16:57
Score: 1
Natty:
Report link

So what wound up working for me was replacing [band] with [line_renderer]. I assume the problem was because Band was no longer a valid target for bokeh's hover tool as bigreddot mentioned in their comment.

So that section of the code now looks like this:

    # Adding hover tool for confidence band
    hover_band = HoverTool(renderers=[line_renderer], tooltips=[
        ("Speed", "@x"),
        ("Lower Bound", "@lower"),
        ("Upper Bound", "@upper")
    ])
    p.add_tools(hover_band)
Reasons:
  • Has code block (-0.5):
  • Self-answer (0.5):
  • Low reputation (1):
Posted by: Zay

79538793

Date: 2025-03-27 12:13:56
Score: 2
Natty:
Report link

Try the Google Gen AI SDK instead.

pip install -q -U google-genai
from google import genai

client = genai.Client(api_key="YOUR_API_KEY")

response = client.models.generate_content(
    model="gemini-2.0-flash", contents="Explain how AI works in a few words"
)
print(response.text)
Reasons:
  • Probably link only (1):
  • Low length (0.5):
  • Has code block (-0.5):
  • Low reputation (1):
Posted by: HT Tsang

79538789

Date: 2025-03-27 12:12:56
Score: 1
Natty:
Report link

To save your commit message and exit your text editor, follow these steps:

  1. Type your commit message as usual.

  2. Press ESC to exit insert mode.

  3. Type :wq (which stands for write and quit) and press Enter.

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

79538787

Date: 2025-03-27 12:11:56
Score: 3.5
Natty:
Report link

I spent a lot of time trying to make it work.

Accidentally the fix was to toggle "Keyboard navigation" off and back on in System Settings.System settings screenshots

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

79538785

Date: 2025-03-27 12:10:56
Score: 3.5
Natty:
Report link

after multiple search i think that alfresco doesn't have the possibility to access a file without login, the only way is by the quickshare button

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

79538776

Date: 2025-03-27 12:03:54
Score: 3
Natty:
Report link

The solution above requires a static height, why not implement a dynamic one for easy to use

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

79538770

Date: 2025-03-27 11:58:53
Score: 0.5
Natty:
Report link

I reached out to the friendly dev team on libera.chat #passt .

The issue is related to the current version of passt in the debian repository and has been reported.

sudo apt show passt

Package: passt
Version: 0.0\~git20230309.7c7625d-1

As the recommended in the github issue, upgrading to version 20241121.g238c69f-1.el9 should resolve it.

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

79538769

Date: 2025-03-27 11:58:53
Score: 3.5
Natty:
Report link

After applying this php my website is crashed!

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

79538766

Date: 2025-03-27 11:58:53
Score: 3
Natty:
Report link

You can run PHP Code through server either wamp or xampp and for linux lamp server. And your extension must be .php not html.

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

79538762

Date: 2025-03-27 11:57:53
Score: 2
Natty:
Report link

@Hanna the flag belongs over the diagram. But the arrows are right. Thanks.

I finished the solution and I wanted to post the code:

%matplotlib inline
import pandas as pd
import numpy as np
import matplotlib.pyplot as plt
from ipywidgets import interact, Output
from IPython.display import display

# Beispiel-Daten erstellen
data = {
    'Club Path': [5.89, 5.2, 4.9, 5.7],
    'Face Angle': [3.12, 2.8, 3.3, 2.7]
}
df = pd.DataFrame(data)

# Ausgabe-Widget für das Diagramm
output = Output()

# Interaktive Tabelle erstellen
def create_table():
    table = pd.DataFrame(df)
    display(table)

# Funktion zum Zeichnen des Diagramms
def plot_data(selected_row):
    # Calculating the angle in radians
    selected_data = df.iloc[selected_row]
    club_path = np.radians(selected_data['Club Path'])  # Club Path
    face_angle = np.radians(selected_data['Face Angle'])  # Face Angle

    # Create a figure and an axis
    fig, ax = plt.subplots()

    # Axis limits
    ax.set_xlim(-1, 1)
    ax.set_ylim(-1, 1)

    # Draw x- and y-axis
    ax.axhline(0, color='black', linewidth=0.5, ls='--')
    ax.axvline(0, color='black', linewidth=1.5, ls='--')

    # Draw angles
    club_vector = np.array([np.sin(club_path), np.cos(club_path)])
    face_vector = np.array([np.sin(face_angle), np.cos(face_angle)])

    ax.quiver(0, 0, club_vector[0], club_vector[1], angles='xy', scale_units='xy', scale=1, color='blue', label='Club Path (5.89°)')
    ax.quiver(0, 0, face_vector[0], face_vector[1], angles='xy', scale_units='xy', scale=1, color='orange', label='Face Angle (3.12°)')

    # draw lines
    ax.plot([0, -club_vector[0]], [0, -club_vector[1]], color='blue', linewidth=3)
    ax.plot([0, -face_vector[0]], [0, -face_vector[1]], color='orange', linewidth=3)

    # Calculte angle between the to vectors
    dot_product = np.dot(club_vector, face_vector)
    norm_club = np.linalg.norm(club_vector)
    norm_face = np.linalg.norm(face_vector)

    # Calculating the angle in radians
    angle_radians = np.arccos(dot_product / (norm_club * norm_face))
    angle_degrees = np.degrees(angle_radians)

    # Add angle in ledgend
    ax.legend(title=f"Face to Path: {angle_degrees:.2f}°")

    # Delete diagram frame
    for spine in ax.spines.values():
        spine.set_visible(False)

    # Delete x- and y-axis
    ax.set_xticks([])
    ax.set_yticks([])

    # Print diagram
    plt.show()

# Interaktive Auswahl der Zeile
def on_row_click(selected_row):
    plot_data(selected_row)

# Tabelle anzeigen
create_table()

# Interaktive Auswahl der Zeile
interact(on_row_click, selected_row=(0, len(df)-1))

# Ausgabe-Widget anzeigen
display(output)

This is the solution. The only downside you need to klick the selector instead of the table row you wanna show.

enter image description here

Reasons:
  • Blacklisted phrase (0.5): Thanks
  • Probably link only (1):
  • Long answer (-1):
  • Has code block (-0.5):
  • User mentioned (1): @Hanna
  • Self-answer (0.5):
  • Low reputation (0.5):
Posted by: 0x53olution

79538756

Date: 2025-03-27 11:55:53
Score: 3
Natty:
Report link

This issue may occur if there is no value assigned to the key used in the HTML template. To fix this, use the ternary (safe navigation) operator to handle undefined values.

Example: Before: <p *ngIf="someKey.Value"> Some Text

After: <p *ngIf="someKey?.Value"> Some Text

Reasons:
  • Low length (0.5):
  • No code block (0.5):
  • Contains question mark (0.5):
  • Unregistered user (0.5):
  • Low reputation (1):
Posted by: Devaprakash M

79538748

Date: 2025-03-27 11:52:52
Score: 0.5
Natty:
Report link

actions.order.create is deprecated and should not be used for any integration. delete it.

Follow the guide to create an order for vaulting from your backend service using the API https://developer.paypal.com/docs/checkout/save-payment-methods/during-purchase/js-sdk/paypal/

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

79538744

Date: 2025-03-27 11:51:51
Score: 1
Natty:
Report link

From ChatGPT:
In SQL Server, SUBSTRING() does not support negative indexes. So SUBSTRING('ANYSTRING', -1, 1) doesn't return the last character — it actually returns nothing.

To get the last character of the 'ANYSTRING' , you need to calculate the position using LEN('ANYSTRING').

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

79538737

Date: 2025-03-27 11:48:51
Score: 4
Natty:
Report link

The solution offered by @Ako in the OP's comments saved my day.

It still valid for sql server 2019 and 2022 versions

In a previous 2012 to 2019 migration I was not able to solve the Web References to a ssrs and I had to modify the export process of the reports.

Adding the references.cs class, modifying the default url and removing the web reference works perfectly.

I have renamed references.cs to ssrs.cs, updated the namespace to ssrs (this is the name of the Web Reference I usually use) and just need to import this file into my scripts for it to run.

Reasons:
  • Blacklisted phrase (2): saved my day
  • Long answer (-0.5):
  • No code block (0.5):
  • User mentioned (1): @Ako
  • Low reputation (1):
Posted by: Borja

79538726

Date: 2025-03-27 11:45:50
Score: 3
Natty:
Report link

What you need to do is getting and putting messages within MQ syncpoint.

This sample shows you how to do both with JMS and Spring:

https://github.com/ibm-messaging/mq-jms-spring/blob/master/samples/s2/src/main/java/sample2/Application.java

Reasons:
  • Probably link only (1):
  • Low length (1):
  • No code block (0.5):
  • Starts with a question (0.5): What you
Posted by: Attila Repasi

79538723

Date: 2025-03-27 11:43:49
Score: 3
Natty:
Report link

The issue occurs due to React's Strict Mode. To fix it in development, simply disable Strict Mode, and the issue should be resolved.

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

79538718

Date: 2025-03-27 11:41:49
Score: 2
Natty:
Report link

​In a web application, base436 ID conversion is typically handled in the presentation layer. This is where integer IDs are encoded or decoded for a URL-friendly representation. This approach maintains internal consistency with integer IDs while presenting user-friendly URLs. However, the optimal layer may vary based on specific architectural requirements and design preferences.

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

79538717

Date: 2025-03-27 11:41:49
Score: 2
Natty:
Report link

Hi I'm a little late lmao

Nobody know if there is a way for compare the message of SystemExit with this method when SystemExit is called like this SystemExit('Error Message')

Reasons:
  • Blacklisted phrase (0.5): lmao
  • Low length (1):
  • Has code block (-0.5):
  • Low reputation (1):
Posted by: Blantheon

79538714

Date: 2025-03-27 11:39:48
Score: 1
Natty:
Report link

This work for me

import express, {Express, Request, Response} from "express";

const app:Express = express();
app.get('/test', (req:Request, res:Response) => {
  res.send({ message: 'Welcome to Express!' });
});

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

79538706

Date: 2025-03-27 11:36:48
Score: 3
Natty:
Report link

I've solved by changing chart type line, to bar. In line mode the center is the value point, and in the bar mode, there is a range in each value

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

79538669

Date: 2025-03-27 11:19:44
Score: 2.5
Natty:
Report link

Ответы на ваши вопросы:

I. Точки останова помечаются серым когда не доступна информация о точке останова. Компилятор должен сгенерировать необходимую информацию для отладчика. Для этого:

  1. Необходимо в настройках проекта включить генерацию этой отладочной информации: Project options/Building/Delphi Compiler/Linking/Debug information.
    Включить Projects/Your Project/Build Configurations/Debug.

  2. Необходимо построить заново проект: Projects/Your Project/Build.
    Создадутся файлы *.rsm.

  3. Теперь можно отлаживать.

Директивы условной компиляции надо проверить - они могут отключать часть или весь файл из генерации информации для отладчика {$D-}.

II. Процедура проста: нет информации - нет и точки останова.

III. У вас не будет точек останова серым цветом.

PS. Необходимо построить проект с включенной опцией добавки отладочной информации. Сама она не добавится! Только после этого проект полностью будет готов к отладке.
При создании готового проекта отладочная информация удаляется из него (режим Release).

Reasons:
  • Long answer (-1):
  • No code block (0.5):
  • No latin characters (2):
  • Low reputation (1):
Posted by: owt

79538664

Date: 2025-03-27 11:17:44
Score: 2.5
Natty:
Report link

Today I encountered the same problem with a Maui iOS app while trying to get data from repositories in release mode, and downgrading to Sqlite-net-pcl 1.7.335 appeared to be, once again, the solution.

Thanks, for documenting this.

Reasons:
  • Blacklisted phrase (0.5): Thanks
  • Low length (0.5):
  • No code block (0.5):
  • Low reputation (1):
Posted by: Audric Skv

79538647

Date: 2025-03-27 11:10:41
Score: 6 🚩
Natty:
Report link

I think you are right, the export of the specific program is in another Excel instance.

Do you have a solution for this?

Thanks for your help.

BR

Reasons:
  • Blacklisted phrase (0.5): Thanks
  • Whitelisted phrase (-0.5): Thanks for your help
  • RegEx Blacklisted phrase (2.5): Do you have a
  • Low length (1):
  • No code block (0.5):
  • Contains question mark (0.5):
  • Self-answer (0.5):
  • Low reputation (1):
Posted by: Stijn

79538644

Date: 2025-03-27 11:09:41
Score: 5
Natty: 6
Report link

I'm trying to do something very similar to what you did, but being a beginner, I'm having a lot of difficulty getting my form to work. I've tried following several tutorials, but none are as close to what I want to do as what you have achieved. Could you please detail a little more how you managed to set this up ? Especially on the JS part which is the one I have the most trouble with. Thank you very much for any help you could give me.

Reasons:
  • Blacklisted phrase (0.5): Thank you
  • Blacklisted phrase (1): any help
  • RegEx Blacklisted phrase (1): I want
  • No code block (0.5):
  • Contains question mark (0.5):
  • Single line (0.5):
  • Low reputation (1):
Posted by: Matthieu Le Verger

79538628

Date: 2025-03-27 11:04:39
Score: 4.5
Natty: 7
Report link

pour la relation many to many, la table se cree et contient les cles etrangeres des deux tables. comment faire pour enregistrer les donnees dans cette nouvelle table en Spring boot ?

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

79538615

Date: 2025-03-27 10:58:37
Score: 7 🚩
Natty: 4.5
Report link

Thanks for this post, I have the same issue. It's crazy the amount of trial and error this requires :)

Reasons:
  • Blacklisted phrase (0.5): Thanks
  • Blacklisted phrase (1): I have the same issue
  • Low length (1):
  • No code block (0.5):
  • Me too answer (2.5): I have the same issue
  • Single line (0.5):
  • Low reputation (1):
Posted by: JihedC

79538601

Date: 2025-03-27 10:56:36
Score: 0.5
Natty:
Report link

If I’m not wrong, currently all your servers are running under a single user account sysadmin. But you wish to create individual credentials for developers.

To achieve this, create individual users with useradd and set up SSH key based authentication.

Edit the /etc/ssh/sshd_config file to set AllowUsers <userlist> replace with developers usernames.

After editing restart the SSH services with Sudo systemctl restart sshd

NOTE:
Before restricting sysadmin make sure you have another account with sudo privileges.

For more information refer to this blog by tenable.

For Activity logging :

The auditd tool on centos can log user activities like file access, modifications and login attempts.

As per this Digital ocean tutorial by Veena k john and Tammy fox, the main configuration file for auditd is /etc/audit/auditd.conf. This file consists of configuration parameters that include where to log events, how to deal with full disks, and log rotation.

Since you have 70 servers, consider centralizing logs for easy monitoring. Use the Google cloud Logging and Install the Google cloud logging agent on each server. You can configure the agent to send logs from /var/log/secure and auditd logs to cloud logging.

Reasons:
  • Blacklisted phrase (1): this blog
  • Long answer (-1):
  • No code block (0.5):
Posted by: Sai Chandini Routhu

79538599

Date: 2025-03-27 10:55:36
Score: 5.5
Natty: 4.5
Report link

I am struggling with the same issue.

Also with Rasa 3.6.2.

I have multiple different types of slots. After the first few slots, the form is interrupted with my custom fallback action.

Particularly, I see that:

rasa.core.policies.memoization  - There is no memorised next action

Then it finds that the fallback should occur. I do not understand why it goes into the AugmentedMemoization Policy in the first place, if I have specified the form in a rule already.

Have you found a working solution to your problem?

Reasons:
  • Blacklisted phrase (1): I am struggling
  • RegEx Blacklisted phrase (2.5): Have you found a working solution to your problem
  • Long answer (-0.5):
  • Has code block (-0.5):
  • Ends in question mark (2):
  • Low reputation (1):
Posted by: grow_bonsai_not_binary_trees

79538590

Date: 2025-03-27 10:52:35
Score: 2
Natty:
Report link

The answer I took from this video: https://youtu.be/mN4259vL4QE

What you need to do is reference EF Core, EF Core Design and any EF Core related provider in infrastructure layer, but you need to change PrivateAssets property in Microsoft.EntityFrameworkCore.Design to none or comment whole line.

As you expected there's no need to reference design on startup project, but it will be anyway referenced implicitly, because you have reference to infrastructure layer

Reasons:
  • Blacklisted phrase (1): youtu.be
  • Blacklisted phrase (1): this video
  • Has code block (-0.5):
  • Low reputation (0.5):
Posted by: Redplcs

79538585

Date: 2025-03-27 10:49:34
Score: 1
Natty:
Report link

If running eas build -p ios --clear-cache is not works for you, follow these steps:

In your app.json, update the ios object by adding "useFrameworks": "static"

Here’s an example:

"ios": { "supportsTablet": true, "bundleIdentifier": "com.bircube.MILKYFY", "useFrameworks": "static", "infoPlist": { "ITSAppUsesNonExemptEncryption": false } },

Reasons:
  • No code block (0.5):
  • Low reputation (0.5):
Posted by: Waqas Khan Roghani

79538583

Date: 2025-03-27 10:48:34
Score: 2.5
Natty:
Report link

In the above answer by Fabske when persisting the status to the Outlook Server you should call:

mail.Update(ConflictResolutionMode)

in stead of mail.Save(), since mail.Save() is used to save a new mail to the Outlook Server.

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

79538574

Date: 2025-03-27 10:44:33
Score: 1
Natty:
Report link

The issue was solved by upgrading @azure/functions to a version >=4.3.0. The root cause is the same as the issue Cannot read properties of undefined (reading 'type'). The issue was fixed with Fix out-of-sync binding names causing null ref error and released with 4.3.0 of the npm package.

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

79538565

Date: 2025-03-27 10:39:32
Score: 4
Natty:
Report link

If still actually. Click on icon with "i", then "Remove Local Configs". If needed click on icon "+" and click on "Update all subscriptions"

enter image description here

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

79538562

Date: 2025-03-27 10:38:31
Score: 3
Natty:
Report link

I've solved the Thingsboard alarm problem by using alarms triggered from a rule chain. Works just fine now. Could not get the Device Profile alarm rules on the Thingsboard demo site to work at all.

Thanks for looking at this post but it can be closed now.

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

79538560

Date: 2025-03-27 10:38:31
Score: 1
Natty:
Report link

I think you got misunderstanding with canvas and camera coordinate system (hereinafter referred as cs). Camera cs are built different. It's a Rectangle with start of cs in a point with offset (-1000; -1000) and end of cs at point (1000; 1000).

As i understand it, it's because hardware camera are circled, and sensor itself is a square, and we got rectangle from square projection of circle camera view. (Sorry if it's sounds not so technically as it could)

According to documentation:

The direction is relative to the sensor orientation, that is, what the sensor sees. The direction is not affected by the rotation or mirroring of Camera.setDisplayOrientation(int). Coordinates of the rectangle range from -1000 to 1000. (-1000, -1000) is the upper left point. (1000, 1000) is the lower right point.

also

No matter what the zoom level is, (-1000,-1000) represents the top of the currently visible camera frame. The metering area cannot be set to be outside the current field of view, even when using zoom.

P.S.
link from android.developers

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

79538554

Date: 2025-03-27 10:33:30
Score: 3.5
Natty:
Report link

I managed to improve my performance by switching to native code to create my image for display. This provides decent performance.

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