79483754

Date: 2025-03-04 12:57:15
Score: 5
Natty:
Report link

How should I be able to edit wsdl if it is generated by third party sources,

Reasons:
  • Blacklisted phrase (1): How should I
  • Low length (1.5):
  • No code block (0.5):
  • Single line (0.5):
  • Starts with a question (0.5): How
  • Low reputation (1):
Posted by: user29885133

79483717

Date: 2025-03-04 12:36:10
Score: 4.5
Natty:
Report link

This comment was writen to test stackoverflow api. Sorry for inconvenience

Reasons:
  • Blacklisted phrase (1): stackoverflow
  • Low length (1.5):
  • No code block (0.5):
  • Single line (0.5):
  • Low reputation (1):
Posted by: user29884903

79483674

Date: 2025-03-04 12:20:06
Score: 4
Natty: 5.5
Report link

Can be a memory issue? Got the same error and fixed only by increasing memory

Reasons:
  • Low length (1.5):
  • No code block (0.5):
  • Contains question mark (0.5):
  • Single line (0.5):
  • Starts with a question (0.5): Can
  • Low reputation (0.5):
Posted by: Leo Badellino

79483651

Date: 2025-03-04 12:13:04
Score: 7.5 🚩
Natty: 4.5
Report link

did you find a bug? I can't configure ssl either, looking for solutions

Reasons:
  • RegEx Blacklisted phrase (3): did you find a
  • Low length (1.5):
  • No code block (0.5):
  • Contains question mark (0.5):
  • Single line (0.5):
  • Starts with a question (0.5): did you find a
  • Low reputation (1):
Posted by: Medina

79483596

Date: 2025-03-04 11:54:59
Score: 5.5
Natty:
Report link

enter image description hereThere will be a missing field, just fill this field.

Reasons:
  • Blacklisted phrase (1): enter image description here
  • Probably link only (1):
  • Low length (1.5):
  • No code block (0.5):
  • Single line (0.5):
  • Low reputation (1):
Posted by: sadiq husaini

79483573

Date: 2025-03-04 11:47:57
Score: 6 🚩
Natty:
Report link

enter image description here

enter image description here

Reasons:
  • Blacklisted phrase (1): enter image description here
  • Probably link only (1):
  • Low length (2):
  • No code block (0.5):
  • Self-answer (0.5):
  • Low reputation (1):
Posted by: peachnice

79483521

Date: 2025-03-04 11:29:52
Score: 5
Natty:
Report link

Ok solved @Superbuilder is unusefull...

Reasons:
  • Low length (2):
  • No code block (0.5):
  • User mentioned (1): @Superbuilder
  • Self-answer (0.5):
  • Single line (0.5):
  • Low reputation (0.5):
Posted by: SkyBlackHawk

79483425

Date: 2025-03-04 10:51:44
Score: 4.5
Natty:
Report link

After allowing the performance counter, ncu correctly profiles my program.

If you have same problem, follow this page

  1. Open the NVIDIA Control Panel in your window 11
  2. Check "Enable Developer Settings"
  3. Under 'Developer' > 'Manage GPU Performance Counters', select 'Allow access to the GPU performance counter to all users'

Why do I have to set these settings in "Window", even if I profile CUDA programs in Ubuntu-18.04, WSL2?

Following this page, this page says:

Once a Windows NVIDIA GPU driver is installed on the system, CUDA becomes available within WSL 2. The CUDA driver installed on Windows host will be stubbed inside the WSL 2 as libcuda.so, therefore users must not install any NVIDIA GPU Linux driver within WSL 2.

I think this is the reason why I need to check the driver in Window. The point is I was not in the native linux, I was in the linux with the WSL

Reasons:
  • Blacklisted phrase (0.5): I need
  • Long answer (-0.5):
  • No code block (0.5):
  • Me too answer (2.5): have same problem
  • Contains question mark (0.5):
  • Self-answer (0.5):
  • Low reputation (0.5):
Posted by: kdh

79483394

Date: 2025-03-04 10:43:40
Score: 6 🚩
Natty:
Report link

Have you been able to resolve your issue ? I am having same problem I tried with javascript incetion but it did not work.

 ModelViewer(
              src: 'assets/model.glb', // Your model path
              id: 'myModelViewer',
              ar: true,
              cameraControls: true,
              onModelViewerCreated: (controller) {
                controller.runJavaScript("""
                  let points = [];
                  const modelViewer = document.querySelector("#myModelViewer");

                  modelViewer.addEventListener('scene-graph-ready', () => {
                    modelViewer.addEventListener("click", async (event) => {
                      const hit = await modelViewer.positionAndNormalFromPoint(event.clientX, event.clientY);
                      if (hit) {
                        points.push(hit.position);
                        if (points.length === 2) {
                          let dx = points[0].x - points[1].x;
                          let dy = points[0].y - points[1].y;
                          let dz = points[0].z - points[1].z;
                          let distance = Math.sqrt(dx * dx + dy * dy + dz * dz);
                          // Send the calculated distance to Flutter
                          window.flutter_inappwebview.callHandler('distanceCalculated', distance);
                          points = [];  // Reset after measuring
                        }
                      }
                    });
                  });
                """);
              },
            ),

Since onModelViewerCreated is not invoking

Reasons:
  • Blacklisted phrase (1.5): Have you been able to
  • Blacklisted phrase (1): did not work
  • RegEx Blacklisted phrase (1.5): resolve your issue ?
  • Long answer (-1):
  • Has code block (-0.5):
  • Me too answer (2.5): I am having same problem
  • Contains question mark (0.5):
  • Low reputation (0.5):
Posted by: Przemo

79483374

Date: 2025-03-04 10:34:37
Score: 4
Natty:
Report link

Your questions are scattered among multiple topics, so I will be focusing on the one in the title; for other questions please research them first ("what is parallel computing vs. parallel processing?").

I'm focusing on the questions: "Is there any parallel computing involved in scipy.linalg.solve?" and "Does it necessarily need all the matrice elements at once?".

Question 1: "Is there any parallel computing involved in scipy.linalg.solve?"

SciPy's linalg.solve itself does not directly handle parallelization, but it relies on optimized libraries for linear algebra operations like LAPACK (Linear Algebra PACKage), which can make use of parallelization internally (i.e. when running on multi-core processors). Whenever the installed libraries are compiled with parallelism or not depends on your system, of course, so the answer would depend on your installation.

For example, PLASMA is optimized for multi-core processors, since it is it's key feature.

Question 2: "Does it necessarily need all the matrice elements at once?".

When you use scipy.linalg.solve, you are solving the system Ax=b for x, and this function requires the matrix A and vector b as inputs. You need the entire matrix, yes.

If you have a sparse matrix, you should use scipy.sparse.linalg.spsolve instead, but if you need to solve for x or calculate the full inverse, SciPy expects access to all the elements of the matrix A at the start.

Reasons:
  • Blacklisted phrase (1): Is there any
  • RegEx Blacklisted phrase (1.5): solve?
  • Long answer (-1):
  • No code block (0.5):
  • Contains question mark (0.5):
  • Unregistered user (0.5):
  • Low reputation (1):
Posted by: Sobek Sage

79483343

Date: 2025-03-04 10:23:35
Score: 5.5
Natty: 6.5
Report link

can shap values be generated using model built on pyspark or do we necessarily need to convert to pandas?

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
  • Low reputation (1):
Posted by: Sudeshna Dutta

79483196

Date: 2025-03-04 09:24:21
Score: 5
Natty: 5
Report link

same error for me, on RN 0.76.7

Reasons:
  • RegEx Blacklisted phrase (1): same error
  • Low length (2):
  • No code block (0.5):
  • Single line (0.5):
  • Low reputation (1):
Posted by: jules

79483113

Date: 2025-03-04 08:55:14
Score: 9.5 🚩
Natty: 6
Report link

Is the problem solved? If the app is in the background, I want to start the Intent(Settings.ACTION_MANAGE_ALL_SIM_PROFILES_SETTINGS) in the action button of the notification. It cannot send the broadcast and start the Activity at the same time. Is there any way to solve this?

Reasons:
  • Blacklisted phrase (1): Is there any
  • RegEx Blacklisted phrase (1.5): solved?
  • RegEx Blacklisted phrase (1.5): solve this?
  • RegEx Blacklisted phrase (1): I want
  • Low length (0.5):
  • No code block (0.5):
  • Ends in question mark (2):
  • Starts with a question (0.5): Is the
  • Low reputation (1):
Posted by: Ericer

79483105

Date: 2025-03-04 08:50:12
Score: 4
Natty:
Report link

try this package : google_navigation_flutter 0.5.1

Reasons:
  • Whitelisted phrase (-1): try this
  • Probably link only (1):
  • Low length (2):
  • No code block (0.5):
  • Single line (0.5):
  • Low reputation (1):
Posted by: LiChen Lee

79483079

Date: 2025-03-04 08:41:10
Score: 4.5
Natty:
Report link

I got the same issue i was using js to open custom link to open the app since we rely on messenger to send our link to users to claim something in the app it was working a month ago but not anymore i did everything even setup meta tags as mentioned in facebook docs but nothing seem to work i had made an arrow pointing to the right bottom of the screen to open the safari which will open the app like i want please if any one has a solution just let us know thank you !!

Reasons:
  • Blacklisted phrase (0.5): thank you
  • RegEx Blacklisted phrase (1): i want
  • RegEx Blacklisted phrase (1): I got the same issue i was using js to open custom link to open the app since we rely on messenger to send our link to users to claim something in the app it was working a month ago but not anymore i did everything even setup meta tags as mentioned in facebook docs but nothing seem to work i had made an arrow pointing to the right bottom of the screen to open the safari which will open the app like i want please
  • No code block (0.5):
  • Single line (0.5):
  • Low reputation (1):
Posted by: Anoir

79483077

Date: 2025-03-04 08:41:09
Score: 5
Natty: 4.5
Report link

I encountered this same problem. I searched everywhere until I discovered that Linux enviroment is case sensitive.

I changed {% include "partials/partial_add_Initiative.html" %} to {% include "partials/partial_add_initiative.html" %}. Just because of capital letter "I" in initiative, it did not work until I changed it to small letter "i". Windows allows the different letters. Or is there anywhere in the setting one can escape the case sensitivity? I will check.

Reasons:
  • Blacklisted phrase (1): did not work
  • Blacklisted phrase (1): is there any
  • No code block (0.5):
  • Ends in question mark (2):
  • Low reputation (0.5):
Posted by: Bioscom

79483027

Date: 2025-03-04 08:17:04
Score: 4
Natty:
Report link

enter image description here

У меня была такая ситуация: что lbl_style подсвечивался желтым цветом вместо красного. Нужно просто установить настройки по умолчанию:

Settings > Editor > Inspections > Python

Profile > ... > Restore Defaults

И моя проблема ушла.

Reasons:
  • Blacklisted phrase (1): enter image description here
  • Low length (0.5):
  • No code block (0.5):
  • No latin characters (1):
  • Low reputation (1):
Posted by: Stepan Belopolsky

79483016

Date: 2025-03-04 08:13:02
Score: 9 🚩
Natty: 6.5
Report link

Have you solved this problem? I have the same problem now.

Reasons:
  • Blacklisted phrase (1): I have the same problem
  • RegEx Blacklisted phrase (1.5): solved this problem?
  • Low length (1.5):
  • No code block (0.5):
  • Me too answer (2.5): I have the same problem
  • Contains question mark (0.5):
  • Single line (0.5):
  • Low reputation (1):
Posted by: Enchanter

79482989

Date: 2025-03-04 07:57:58
Score: 11 🚩
Natty: 4.5
Report link

I’m actually facing the same issue as well. Have you found any updates on it? Let me know!

Reasons:
  • Blacklisted phrase (1): any updates on
  • RegEx Blacklisted phrase (2.5): Have you found any updates on it
  • Low length (1):
  • No code block (0.5):
  • Me too answer (2.5): facing the same issue
  • Ends in question mark (2):
  • Single line (0.5):
  • Low reputation (1):
Posted by: Parag Yelonde

79482959

Date: 2025-03-04 07:43:55
Score: 5
Natty:
Report link

edtthffffddgddgdgdddfd csfsgfd dsg

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

79482952

Date: 2025-03-04 07:38:53
Score: 7 🚩
Natty: 5.5
Report link

I used your code for the drawing and I wondered if it was possible to draw a complete circle not filled

I tried several times but I can't find can you help me?

This text was translated into English by translate because I am French

PS: I can have your contact I want to become a mathematician but I don't know what study to do

Reasons:
  • Blacklisted phrase (1): help me
  • RegEx Blacklisted phrase (3): can you help me
  • RegEx Blacklisted phrase (1): I want
  • No code block (0.5):
  • Contains question mark (0.5):
  • Low reputation (1):
Posted by: TechnoScript

79482925

Date: 2025-03-04 07:30:50
Score: 4.5
Natty:
Report link

After adding 127.0.0.1 in Firebase Console → Authentication → Settings → Authorized Domains, if your code is still not working or showing the same error (INVALID_APP_CREDENTIAL), try using 127.0.0.1 as the URL instead of localhost.

Reasons:
  • Blacklisted phrase (2): still not working
  • Low length (0.5):
  • No code block (0.5):
  • Single line (0.5):
  • Low reputation (1):
Posted by: Shivam Parvat

79482913

Date: 2025-03-04 07:25:49
Score: 6.5 🚩
Natty: 5.5
Report link

John that is so cool thanks for sharing!

Reasons:
  • Blacklisted phrase (0.5): thanks
  • Blacklisted phrase (2): thanks for sharing
  • Low length (1.5):
  • No code block (0.5):
  • Unregistered user (0.5):
  • Single line (0.5):
  • Low reputation (1):
Posted by: guest poster 8911

79482893

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

Fixed by delete video_trimmer dependency in pubspec.yaml

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

79482864

Date: 2025-03-04 07:04:43
Score: 4
Natty:
Report link

Additional Scopes should remove "openid"

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

79482756

Date: 2025-03-04 05:53:29
Score: 5.5
Natty: 5.5
Report link

Pure dart dtls implementation: https://github.com/KellyKinyama/dartls/tree/master/lib/src/dtls/examples/server

Reasons:
  • Probably link only (1):
  • Low length (2):
  • No code block (0.5):
  • Unregistered user (0.5):
  • Single line (0.5):
  • Low reputation (1):
Posted by: Kelly Kinyama

79482727

Date: 2025-03-04 05:27:24
Score: 5
Natty: 5
Report link

This extension is no longer available because it doesn't follow best practices for Chrome extensions.

There have any alternative solution ?

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

79482720

Date: 2025-03-04 05:22:22
Score: 6.5 🚩
Natty: 5
Report link

I have been trying to alter this Answer so that only Mondays are allowed entry (and are also highlighted). I am also trying to start the week on Sun instead of Mon and remove the week numbers. I can't seem to make the changes necessary to make this happen. Any suggestions?

Reasons:
  • RegEx Blacklisted phrase (2): Any suggestions?
  • Low length (0.5):
  • No code block (0.5):
  • Ends in question mark (2):
  • Single line (0.5):
  • Low reputation (1):
Posted by: Mike Emerson

79482713

Date: 2025-03-04 05:13:20
Score: 4.5
Natty: 5.5
Report link

What about public repositories? To checkout them, do one needs to create Github service connections in ADO?

Reasons:
  • Low length (1):
  • No code block (0.5):
  • Ends in question mark (2):
  • Starts with a question (0.5): What
  • Low reputation (0.5):
Posted by: Gaurav Tandon

79482707

Date: 2025-03-04 05:08:19
Score: 6.5 🚩
Natty:
Report link

how to add a set amount of exponents in c++?

Reasons:
  • Low length (1.5):
  • No code block (0.5):
  • Ends in question mark (2):
  • Self-answer (0.5):
  • Single line (0.5):
  • Starts with a question (0.5): how to add a
  • Low reputation (1):
Posted by: Amazon Amazon

79482692

Date: 2025-03-04 04:54:16
Score: 12.5 🚩
Natty: 6
Report link

I'm in this exact situation, did you find any solution? If so please post the solution. I'm using react.js

Reasons:
  • Blacklisted phrase (1.5): any solution
  • RegEx Blacklisted phrase (2.5): please post the solution
  • RegEx Blacklisted phrase (3): did you find any solution
  • RegEx Blacklisted phrase (2): any solution?
  • Low length (1):
  • No code block (0.5):
  • Contains question mark (0.5):
  • Single line (0.5):
  • Low reputation (1):
Posted by: Ryal amanna

79482665

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

use "break;" statement.

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

79482659

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

Why don`t u try RSC in Expo its promissing , https://docs.expo.dev/guides/server-components/

Reasons:
  • Probably link only (1):
  • Low length (1.5):
  • No code block (0.5):
  • Unregistered user (0.5):
  • Single line (0.5):
  • Starts with a question (0.5): Why do
  • Low reputation (1):
Posted by: Mayank

79482612

Date: 2025-03-04 03:38:01
Score: 5.5
Natty:
Report link

Biraj Verma [email protected]

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

79482584

Date: 2025-03-04 03:16:56
Score: 7.5 🚩
Natty:
Report link

Since you've already tried Defender Exclusions, can you share your logs with loglevel verbose? Here is the docs for current npm

Reasons:
  • RegEx Blacklisted phrase (2.5): can you share your
  • Low length (1):
  • No code block (0.5):
  • Ends in question mark (2):
  • Single line (0.5):
  • Low reputation (1):
Posted by: Vesta Tian

79482572

Date: 2025-03-04 03:04:53
Score: 4.5
Natty:
Report link

I was using Gmail and facing same issues. Changed port to 465 and secure set to true. Works for now. Would do more testing regarding this.

Reasons:
  • Low length (1):
  • Has code block (-0.5):
  • Me too answer (2.5): facing same issue
  • Single line (0.5):
  • Low reputation (1):
Posted by: Raphael Fadimu

79482566

Date: 2025-03-04 02:58:50
Score: 7 🚩
Natty: 4.5
Report link

Did you ever figure this out? I have a very similar use case in mind and I too am stumped.

Reasons:
  • RegEx Blacklisted phrase (3): Did you ever figure this out
  • Low length (1):
  • No code block (0.5):
  • Contains question mark (0.5):
  • Single line (0.5):
  • Starts with a question (0.5): Did you
  • Low reputation (1):
Posted by: Peter Nolan

79482552

Date: 2025-03-04 02:42:46
Score: 8.5 🚩
Natty: 6
Report link

Okay so I'm trying to do a kernel build from a make file board config and I so I'm trying to do it with three options in that order okay so if the first option fails or the directory doesn't exist it defaults to the second and then with the second directory if it fails or doesn't exist I'm trying to default to the third to a pre-built kernel directory so how would I do that exactly? because it's driving me nuts .. please help me out with this

Reasons:
  • Blacklisted phrase (1): help me
  • RegEx Blacklisted phrase (3): please help me
  • RegEx Blacklisted phrase (2): help me out
  • No code block (0.5):
  • Contains question mark (0.5):
  • Single line (0.5):
  • Low reputation (1):
Posted by: Rog

79482544

Date: 2025-03-04 02:38:45
Score: 9
Natty: 7.5
Report link

would like to ask how you did the azure data factory pipeline that copies a file from sftp folder and drops to azure blob storage? Could you please share the specific steps and configurations? Please, thank you in advance.

Reasons:
  • Blacklisted phrase (0.5): thank you
  • RegEx Blacklisted phrase (2.5): Could you please share
  • RegEx Blacklisted phrase (3): thank you in advance
  • Low length (0.5):
  • No code block (0.5):
  • Contains question mark (0.5):
  • Single line (0.5):
  • Low reputation (1):
Posted by: Shuqi

79482472

Date: 2025-03-04 01:22:30
Score: 4
Natty: 4
Report link

Disgusting. A sent notification should not be possible to remove

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

79482415

Date: 2025-03-04 00:20:19
Score: 8.5 🚩
Natty:
Report link

Did you find the answer to this @jack

Reasons:
  • RegEx Blacklisted phrase (3): Did you find the answer to this
  • Low length (2):
  • No code block (0.5):
  • User mentioned (1): @jack
  • Single line (0.5):
  • Starts with a question (0.5): Did you find the answer to this
  • Low reputation (1):
Posted by: Sagar Jain

79482412

Date: 2025-03-04 00:18:17
Score: 7 🚩
Natty: 4
Report link

Having the same problem. A simple link beginning with "tel:" doesnt open inside a TMA, but on a regular web page it does.

The link: +46777111111

Using this for webapp:

script src="https://telegram.org/js/telegram-web-app.js">

It works on Android, though. Is there a way to force the mini-app to use the newest TMA update?

Reasons:
  • Blacklisted phrase (1): Is there a way
  • No code block (0.5):
  • Me too answer (2.5): Having the same problem
  • Ends in question mark (2):
  • Low reputation (1):
Posted by: Staffay Kayser

79482358

Date: 2025-03-03 23:39:10
Score: 4
Natty: 4.5
Report link

Hey Tamdim was there any resolution to this? I'm experiencing the same issue.

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

79482282

Date: 2025-03-03 22:31:55
Score: 5.5
Natty:
Report link

This all depends on packages, code, etc. There is nowhere near enough information here to provide a sufficient answer. Please provide more information and I will get back to you!

Reasons:
  • RegEx Blacklisted phrase (2.5): Please provide
  • Low length (1):
  • No code block (0.5):
  • Single line (0.5):
  • Low reputation (1):
Posted by: Cole Bauml

79482278

Date: 2025-03-03 22:30:54
Score: 7.5 🚩
Natty: 5
Report link

can you post listener code also @ofithch79

Reasons:
  • RegEx Blacklisted phrase (2.5): can you post
  • Low length (1.5):
  • No code block (0.5):
  • User mentioned (1): @ofithch79
  • Single line (0.5):
  • Starts with a question (0.5): can you post
  • Low reputation (1):
Posted by: AK_R

79482132

Date: 2025-03-03 21:03:34
Score: 7.5 🚩
Natty:
Report link

I have the same error but with SES. I would like to use the IAM Role which has the AmazonSESFullAccess and the AdministratorAccess-Amplify. But im keep getting this error what you mentioned: [CredentialsProviderError]: Could not load credentials from any providers. This is how im using it.

"use server" 
import { SESClient, SendEmailCommand } from "@aws-sdk/client-ses";
const sesClient = new SESClient({region: process.env.SES_REGION});

Have you gotten any solution for this issue? Ive tried also adding fromNodeProviderChain() but same result.

Reasons:
  • Blacklisted phrase (1.5): any solution
  • RegEx Blacklisted phrase (1): I have the same error
  • RegEx Blacklisted phrase (2): any solution for this issue?
  • Long answer (-0.5):
  • Has code block (-0.5):
  • Me too answer (2.5): I have the same error
  • Contains question mark (0.5):
  • Low reputation (1):
Posted by: user29875536

79482123

Date: 2025-03-03 20:59:33
Score: 4.5
Natty: 5
Report link

Not in the out-of-the-box usage metrics reporting, however you can capture slicer values in a tracking pixel. This blog post details the process: https://web.archive.org/web/20200922010331/https://datachant.com/2020/01/06/power-bi-pixel-a-new-way-to-track-usage-on-power-bi/

Reasons:
  • Blacklisted phrase (1): This blog
  • Probably link only (1):
  • Low length (1):
  • No code block (0.5):
  • Single line (0.5):
  • Low reputation (0.5):
Posted by: Chris Decker

79482082

Date: 2025-03-03 20:39:27
Score: 13 🚩
Natty:
Report link

same problem Did you find any solution?

Reasons:
  • Blacklisted phrase (1.5): any solution
  • RegEx Blacklisted phrase (3): Did you find any solution
  • RegEx Blacklisted phrase (1): same problem
  • RegEx Blacklisted phrase (2): any solution?
  • Low length (2):
  • No code block (0.5):
  • Ends in question mark (2):
  • Low reputation (1):
Posted by: akszczot

79482067

Date: 2025-03-03 20:31:24
Score: 8 🚩
Natty: 4.5
Report link

Хорошее видео на ютубе иллюстрирующее вашу работу https://www.youtube.com/watch?v=xmw3iIKXDlE https://www.youtube.com/watch?v=XrrTgCNT3cg

Reasons:
  • Blacklisted phrase (1): youtube.com
  • Probably link only (1):
  • Low length (1.5):
  • No code block (0.5):
  • No latin characters (3):
  • Low reputation (1):
Posted by: Пётр Ларин

79482038

Date: 2025-03-03 20:18:20
Score: 6.5 🚩
Natty: 5
Report link

So, is it possible to remove the metadata from an electronically signed PDF file and keep the signature valid?

If it is possible, I would appreciate some code to implement it.

Thank you.

Reasons:
  • Blacklisted phrase (0.5): Thank you
  • Blacklisted phrase (1): is it possible to
  • Blacklisted phrase (1.5): would appreciate
  • Low length (0.5):
  • No code block (0.5):
  • Contains question mark (0.5):
  • Looks like a comment (1):
  • Low reputation (1):
Posted by: rampunseng

79481970

Date: 2025-03-03 19:37:11
Score: 5.5
Natty: 5
Report link

Works on iOS, Android, and Tablets without extra configuration.

https://www.npmjs.com/package/@ammarwahid/react-native-responsive-layout

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

79481830

Date: 2025-03-03 18:27:56
Score: 4
Natty: 4.5
Report link

This is application for naming photo before capture. It's easy and function

https://play.google.com/store/apps/details?id=com.lumir.TakeNamedPhoto

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

79481744

Date: 2025-03-03 17:56:47
Score: 4.5
Natty:
Report link

If anyone wants to do this in Swift, I made a library based on Myndex's answer that you may find useful: https://github.com/gregmturek/color-perception

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

79481709

Date: 2025-03-03 17:38:43
Score: 5
Natty: 4
Report link

Do you still have a copy of this GATS Generators data? I am starting to work with this dataset and noticed that PJM does not publish an archive. So I am looking for some historic files to identify any changes over time.

Reasons:
  • Blacklisted phrase (2): I am looking for
  • Low length (0.5):
  • No code block (0.5):
  • Contains question mark (0.5):
  • Single line (0.5):
  • Low reputation (1):
Posted by: newuser12345

79481696

Date: 2025-03-03 17:29:41
Score: 6 🚩
Natty: 4
Report link

Extension to this problem, I do face the similar issue that my jenkins slave node taking lot of time to provision in ECS Fargate. In the ECS it showing the node is provisioning. In the cloudwatch it showing the following Error.

i.j.plugins.sqs.SqsPollerImpl#getMessagesAndDelete: Error to retrieve messages from . java.net.MalformedURLException: no protocol:

any idea on this?

Reasons:
  • No code block (0.5):
  • Me too answer (2.5): face the similar issue
  • Ends in question mark (2):
  • Low reputation (1):
Posted by: Bellamkonda Narendra Venkata S

79481670

Date: 2025-03-03 17:20:38
Score: 5.5
Natty: 5
Report link

Iam trying something similar but cannot get it to work. can you please elaborate on how you got the udp stream to play on the vlc media player.

Reasons:
  • RegEx Blacklisted phrase (2.5): can you please elaborate
  • Low length (1):
  • No code block (0.5):
  • Unregistered user (0.5):
  • Low reputation (1):
Posted by: Nado

79481654

Date: 2025-03-03 17:12:35
Score: 4
Natty:
Report link

The answer is in the question.

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

79481652

Date: 2025-03-03 17:11:35
Score: 14.5
Natty: 9.5
Report link

I have the same problem as you, do you have a solution?

Reasons:
  • Blacklisted phrase (1): I have the same problem
  • Blacklisted phrase (3): have a solution?
  • RegEx Blacklisted phrase (2.5): do you have a
  • Low length (1.5):
  • No code block (0.5):
  • Me too answer (2.5): I have the same problem
  • Ends in question mark (2):
  • Single line (0.5):
  • Low reputation (1):
Posted by: Hưng Vũ

79481642

Date: 2025-03-03 17:08:34
Score: 5
Natty:
Report link

Newbie here but maybe create different turtles so that they can follow a + 1 or + 2 for how many patches they are allowed to move per tick?

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

79481622

Date: 2025-03-03 16:58:31
Score: 4.5
Natty: 5
Report link

Triggers are now available in preview in CockroachDB v25.1: https://www.cockroachlabs.com/docs/stable/triggers

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

79481571

Date: 2025-03-03 16:40:26
Score: 9 🚩
Natty: 5.5
Report link

Hi how did you solve this ...I am facing same issue

Reasons:
  • RegEx Blacklisted phrase (3): did you solve this
  • Low length (1.5):
  • No code block (0.5):
  • Me too answer (2.5): I am facing same issue
  • Single line (0.5):
  • Low reputation (1):
Posted by: Rabia Anand

79481551

Date: 2025-03-03 16:32:24
Score: 4
Natty: 5
Report link

thanks for the answer. its working fine now

Reasons:
  • Blacklisted phrase (0.5): thanks
  • Low length (1.5):
  • No code block (0.5):
  • Single line (0.5):
  • Low reputation (1):
Posted by: Anish Adhikari

79481513

Date: 2025-03-03 16:19:20
Score: 4
Natty:
Report link

Thanks for the responses.

After much searching the issue was that I was missing the decorator on the python view

@xframe_options_sameorigin def home(request):

Once I added the @xframe_options_sameorigin decorator, I was able to use in the iframe.

Reasons:
  • Blacklisted phrase (0.5): Thanks
  • Low length (0.5):
  • No code block (0.5):
  • User mentioned (1): @xframe_options_sameorigin
  • User mentioned (0): @xframe_options_sameorigin
  • Self-answer (0.5):
  • Low reputation (1):
Posted by: Bob D

79481476

Date: 2025-03-03 16:08:17
Score: 6 🚩
Natty:
Report link

did you ever figure this out? I am running into the same error, install went great until I added an input.

Reasons:
  • RegEx Blacklisted phrase (3): did you ever figure this out
  • Low length (1):
  • No code block (0.5):
  • Contains question mark (0.5):
  • Single line (0.5):
  • Starts with a question (0.5): did you
Posted by: Drewdin

79481472

Date: 2025-03-03 16:07:16
Score: 4
Natty: 5.5
Report link

Thank you for the very comprehensive answer! Is anyone else running into the following error Cannot access 'RowScopeImplInstance': it is private in file when trying to set the GlanceModifier.defaultWeight? Or is there a different way to set the default weight now other than Modifier that I'm supposed to use?

Reasons:
  • Blacklisted phrase (0.5): Thank you
  • Low length (0.5):
  • Has code block (-0.5):
  • Ends in question mark (2):
  • Single line (0.5):
  • Low reputation (1):
Posted by: Jing Chen

79481439

Date: 2025-03-03 15:53:13
Score: 4.5
Natty:
Report link

Case with PATH variable works not all the time. You will still have this issue if you have spaces in your build directory path.

Example: "/Users/youruser/project/my lovely project/WireGuardKitGo"

Also you will have the same error if you have spaces in your build scheme name.

Reasons:
  • Low length (0.5):
  • No code block (0.5):
  • Me too answer (2.5): have the same error
  • Low reputation (1):
Posted by: Mihail Konoplitskyi

79481386

Date: 2025-03-03 15:34:08
Score: 8 🚩
Natty: 4
Report link

Is this still the case? I am looking for a use case where I want to find categorymembers that belong to two categories (category type like food etc and specific country). Is there a workaround for this?

Reasons:
  • Blacklisted phrase (2): I am looking for
  • RegEx Blacklisted phrase (1): I want
  • Low length (0.5):
  • No code block (0.5):
  • Ends in question mark (2):
  • Single line (0.5):
  • Starts with a question (0.5): Is this
  • Low reputation (1):
Posted by: CuriousKitten

79481370

Date: 2025-03-03 15:26:05
Score: 5
Natty: 4.5
Report link

Link to the google sheets document and work

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

79481321

Date: 2025-03-03 15:07:59
Score: 8.5 🚩
Natty:
Report link

im trying to update my hadoop version from 3.3.0 to 3.4.1 and when i try to open a filesystem instance im getting below error

Exception in thread "Thread-5" java.lang.IllegalAccessError: class org.apache.hadoop.hdfs.protocol.proto.ClientNamenodeProtocolProtos$GetAdditionalDatanodeRequestProto tried to access method 'org.apache.hadoop.thirdparty.protobuf.LazyStringArrayList org.apache.hadoop.thirdparty.protobuf.LazyStringArrayList.emptyList()' (org.apache.hadoop.hdfs.protocol.proto.ClientNamenodeProtocolProtos$GetAdditionalDatanodeRequestProto and org.apache.hadoop.thirdparty.protobuf.LazyStringArrayList are in unnamed module of loader org.apache.catalina.loader.ParallelWebappClassLoader @458342d3)

i tried all the above solutions . still im facing the issue ? any suggestions ?

Reasons:
  • RegEx Blacklisted phrase (2): any suggestions
  • RegEx Blacklisted phrase (1): im getting below error
  • Long answer (-0.5):
  • No code block (0.5):
  • Ends in question mark (2):
  • Unregistered user (0.5):
  • User mentioned (1): @458342d3
  • Looks like a comment (1):
  • Low reputation (1):
Posted by: satish

79481246

Date: 2025-03-03 14:42:51
Score: 8 🚩
Natty:
Report link

Could you share the code where you're trying to use the component?

Reasons:
  • RegEx Blacklisted phrase (2.5): Could you share the code
  • Low length (1.5):
  • No code block (0.5):
  • Ends in question mark (2):
  • Single line (0.5):
  • Low reputation (1):
Posted by: Rainier Paolo Punzalan

79481203

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

I think all of the Exchange comandlet wont honor those variables. extremely bad, when you want to find misconfigured ones. get-mailuser is the same. found no way to extract warnings.

you have to look at the patterns and, eg two prim mail addresses and find them that way or scroll the whole ps window...bad if you have thousands of mail users

anyone got that working? get-mailuser -warningvariable $wv

Reasons:
  • RegEx Blacklisted phrase (2): working?
  • No code block (0.5):
  • Contains question mark (0.5):
  • Low reputation (1):
Posted by: Devon99

79481142

Date: 2025-03-03 14:00:42
Score: 5
Natty:
Report link

How was the cert-chain.pem file created? Does this start with "-----BEGIN CERTIFICATE-----"?

Reasons:
  • Low length (1):
  • No code block (0.5):
  • Ends in question mark (2):
  • Single line (0.5):
  • Starts with a question (0.5): How was the
  • Low reputation (0.5):
Posted by: Marc Gathier

79481119

Date: 2025-03-03 13:51:40
Score: 4
Natty:
Report link

Are you sure this is a browser problem? This basic authentication pop-up often comes after a session timeout, while a JavaScript tries to access the backend via REST and gets told to re-authenticate.

Do you perhaps have a load-balancer in front of IdentityIQ without sticky sessions?

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

79481108

Date: 2025-03-03 13:44:38
Score: 12
Natty: 7.5
Report link

I have the same problem after upgrading camera to the latest version, did someone find the solution? thank you

Reasons:
  • Blacklisted phrase (0.5): thank you
  • Blacklisted phrase (1): I have the same problem
  • RegEx Blacklisted phrase (3): did someone find the solution
  • Low length (1):
  • No code block (0.5):
  • Me too answer (2.5): I have the same problem
  • Ends in question mark (2):
  • Single line (0.5):
  • Low reputation (1):
Posted by: Simona Elena Rata

79481088

Date: 2025-03-03 13:34:35
Score: 4.5
Natty:
Report link

Found it, at last: I needed

[DllImport(crionFilename, EntryPoint = "run_kernel", CallingConvention=CallingConvention.Winapi)]
private static extern int crion(ref string inf, ref string outf);

and call like

info = crion(ref f1, ref f2);

, I think. Weird: I'v been puzzling all morning(s), can't find the solution, Pose a questionon SO, try a bit more and find the solution...

Reasons:
  • Blacklisted phrase (0.5): I need
  • RegEx Blacklisted phrase (1.5): can't find the solution
  • RegEx Blacklisted phrase (2): can't find the solution
  • Has code block (-0.5):
  • Self-answer (0.5):
  • Low reputation (0.5):
Posted by: Erik

79480951

Date: 2025-03-03 12:23:20
Score: 8
Natty: 7.5
Report link

Experiencing the same issue. Have you found a solution so far?

Reasons:
  • RegEx Blacklisted phrase (2.5): Have you found a solution so far
  • Low length (1.5):
  • No code block (0.5):
  • Ends in question mark (2):
  • Single line (0.5):
  • Low reputation (1):
Posted by: Simon Paul

79480939

Date: 2025-03-03 12:18:18
Score: 10 🚩
Natty: 5.5
Report link

Im new to Docker and I have a problem related to the one you had, I can get the docker image running but the GUI is not showing. Could you tell me the process? thanx

Reasons:
  • Blacklisted phrase (1): thanx
  • RegEx Blacklisted phrase (2.5): Could you tell me
  • RegEx Blacklisted phrase (1.5): Im new
  • Low length (1):
  • No code block (0.5):
  • Ends in question mark (2):
  • Single line (0.5):
  • Low reputation (1):
Posted by: juan carlos hidalgo

79480895

Date: 2025-03-03 11:55:13
Score: 8 🚩
Natty: 4.5
Report link

Were you able to solve it? I created the two WS Proxy on app and apps to handle wss requests and events. And everything works when I do some tests. However, when I implement with echo it always generates an error in the console: "Uncaught You must pass your app key when you instantiate Pusher." and I can't find window.Echo

Thanks

Reasons:
  • Blacklisted phrase (0.5): Thanks
  • Blacklisted phrase (1): you able to solve
  • RegEx Blacklisted phrase (1.5): solve it?
  • RegEx Blacklisted phrase (3): Were you able
  • No code block (0.5):
  • Contains question mark (0.5):
  • Low reputation (1):
Posted by: j8lud

79480889

Date: 2025-03-03 11:51:12
Score: 4
Natty: 5
Report link

YOU NEED Flash Builder to open that. But no response in 11 years is CRAZY!!

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

79480874

Date: 2025-03-03 11:41:10
Score: 9
Natty: 8
Report link

how you fix this issue ? can you explain ? thanks for your future answer

Reasons:
  • Blacklisted phrase (0.5): thanks
  • RegEx Blacklisted phrase (2.5): can you explain
  • RegEx Blacklisted phrase (1.5): fix this issue ?
  • Low length (1.5):
  • No code block (0.5):
  • Contains question mark (0.5):
  • Single line (0.5):
  • Starts with a question (0.5): how you fix this is
  • Low reputation (1):
Posted by: Matt James

79480824

Date: 2025-03-03 11:16:04
Score: 4
Natty:
Report link

Kindly,refer to this next js documentation on Hydration. https://nextjs.org/docs/messages/react-hydration-error in case you need further help do let me know.

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

79480756

Date: 2025-03-03 10:35:55
Score: 4.5
Natty:
Report link

Unlimited wifi long time 9999999999

Reasons:
  • Low length (2):
  • No code block (0.5):
  • Single line (0.5):
  • Filler text (0.5): 9999999999
  • Low reputation (1):
Posted by: JUNRY MARIN

79480735

Date: 2025-03-03 10:22:52
Score: 6.5 🚩
Natty:
Report link

I am facing the same issue with Nucleo G0B1RE board..My physical layer is fine and external loopback works too..Like you my Fifo gets full in 3 attempts and then bus enters in BUS-OFF mode. I am getting LEC as 0x05 which is Bit0Error.. Please share the solution if it is solved for you

Thanks.

Reasons:
  • Blacklisted phrase (0.5): Thanks
  • Whitelisted phrase (-1): it is solved
  • RegEx Blacklisted phrase (2.5): Please share the solution
  • Low length (0.5):
  • No code block (0.5):
  • Me too answer (2.5): I am facing the same issue
  • Low reputation (1):
Posted by: Zeal02

79480696

Date: 2025-03-03 10:03:47
Score: 7 🚩
Natty: 4.5
Report link

@Aminah Nuraini, where should I write that config

Reasons:
  • Blacklisted phrase (1.5): where should I
  • Low length (1.5):
  • No code block (0.5):
  • User mentioned (1): @Aminah
  • Single line (0.5):
  • Looks like a comment (1):
  • Low reputation (1):
Posted by: dili timor

79480627

Date: 2025-03-03 09:37:40
Score: 6 🚩
Natty:
Report link

I have found the answer to all my questions. Thanks for the support. The source code is here: https://github.com/Radonoxius/kotlin_native_interop_gradle

Reasons:
  • Blacklisted phrase (0.5): Thanks
  • Probably link only (1):
  • Contains signature (1):
  • Low length (1):
  • No code block (0.5):
  • Self-answer (0.5):
  • Single line (0.5):
  • Low reputation (1):
Posted by: Radon

79480618

Date: 2025-03-03 09:35:39
Score: 6 🚩
Natty:
Report link

Do you have this property set?

quarkus.grpc.server.use-separate-server=false
Reasons:
  • RegEx Blacklisted phrase (2.5): Do you have this
  • Low length (1.5):
  • Has code block (-0.5):
  • Ends in question mark (2):
  • Low reputation (0.5):
Posted by: alesj

79480593

Date: 2025-03-03 09:19:35
Score: 4
Natty:
Report link

Please post here working solution, if known. Somewhere I seen al-folio theme solved problem with jekyll-scholar, but switching themes might require a lot of effort.

For ~2 years solution given by Gemma Danks for use Jekyll-Scholar with GH Pages worked, with downgraded ruby version to 2.7.2. Today it stopped working for some arcane reasons.

Github required to upgrade Workflow file: Jekyll.yml given by Gemma:

This request has been automatically failed because it uses a deprecated version of `actions/upload-artifact: v3`

Then after update to v4 it fails to build:

 Run bundle exec jekyll build --baseurl ""
bundler: failed to load command: jekyll (/home/runner/work/photin_web/photin_web/vendor/bundle/ruby/2.7.0/bin/jekyll)
/opt/hostedtoolcache/Ruby/2.7.2/x64/lib/ruby/gems/2.7.0/gems/bundler-2.4.22/lib/bundler/runtime.rb:304:in `check_for_activated_spec!': You have already activated uri 0.10.0, but your Gemfile requires uri 1.0.3. Since uri is a default gem, you can either remove your dependency on it or try updating to a newer version of bundler that supports uri as a default gem. (Gem::LoadError)
    from /opt/hostedtoolcache/Ruby/2.7.2/x64/lib/ruby/gems/2.7.0/gems/bundler-2.4.22/lib/bundler/runtime.rb:25:in `block in setup'

On local server, bundle exec jekyll serve works fine, as far as I understand it use bundler 2.3.5, whereas GH Pages tries to use 2.4.22, and maybe this is why it fails to build GH Pages.

How to set bounty for solving this persistent jekyll-scholar issue with GH Pages?

Reasons:
  • RegEx Blacklisted phrase (2.5): Please post
  • Long answer (-1):
  • Has code block (-0.5):
  • Ends in question mark (2):
  • Low reputation (1):
Posted by: Photin LLC

79480588

Date: 2025-03-03 09:17:34
Score: 13 🚩
Natty: 5.5
Report link

I encounter the same issue when using smolagents library, when running with stream=True configured. were you able to fix it?

Reasons:
  • Blacklisted phrase (3): were you able to fix it
  • RegEx Blacklisted phrase (1.5): fix it?
  • RegEx Blacklisted phrase (3): were you able
  • Low length (1):
  • No code block (0.5):
  • Ends in question mark (2):
  • Unregistered user (0.5):
  • Single line (0.5):
  • Low reputation (1):
Posted by: Oar Lilac

79480580

Date: 2025-03-03 09:14:33
Score: 4
Natty:
Report link

I found the answer myself. The user must login SPO to provisioning the account in SPO.

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

79480559

Date: 2025-03-03 09:04:29
Score: 7 🚩
Natty:
Report link

do you have a problem with the csrf token? How do you send data to the controller? Provide us with all the code that is responsible for your functionality.

Reasons:
  • Blacklisted phrase (1): How do you
  • RegEx Blacklisted phrase (2.5): do you have a
  • Low length (1):
  • No code block (0.5):
  • Contains question mark (0.5):
  • Single line (0.5):
  • Low reputation (1):
Posted by: belo

79480558

Date: 2025-03-03 09:03:28
Score: 9 🚩
Natty:
Report link

were you able to resolve it. we're facing the same issue

Reasons:
  • RegEx Blacklisted phrase (3): were you able
  • Low length (1.5):
  • No code block (0.5):
  • Me too answer (2.5): facing the same issue
  • Single line (0.5):
  • Low reputation (1):
Posted by: Team Lunacal

79480541

Date: 2025-03-03 08:59:26
Score: 4
Natty:
Report link

Use useEffect to apply dynamic classes

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

79480523

Date: 2025-03-03 08:49:23
Score: 8 🚩
Natty: 4.5
Report link

i did it but it does not working please help me screenshot 1 screenshot 2

Reasons:
  • Blacklisted phrase (1): help me
  • RegEx Blacklisted phrase (3): please help me
  • RegEx Blacklisted phrase (1): i did it but it does not working please
  • Low length (1.5):
  • No code block (0.5):
  • Low reputation (1):
Posted by: samandar

79480476

Date: 2025-03-03 08:26:18
Score: 4
Natty: 4
Report link

please follow the document here: https://www.mongodb.com/docs/manual/core/indexes/index-types/index-text/create-wildcard-text-index/#std-label-create-wildcard-text-index

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

79480423

Date: 2025-03-03 07:51:10
Score: 4
Natty: 4
Report link

oh my. Noob present. I still don't understand this at all. What confuses me a little. and i guess its why i got an F in maths at school.

Is, why we are using %. i thought / was divide by?

or is this on about / or / ?

Example So 7 % 5 = 2. Is apparently 7 divided by 5? I thought the answer is 1.4?

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

79480404

Date: 2025-03-03 07:42:07
Score: 5
Natty: 5
Report link

I noticed that user is getting "Temporarily locked" along with being disabled with Permanent lockout. Is this correct behavior?

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

79480357

Date: 2025-03-03 07:10:00
Score: 4
Natty:
Report link

Try to open vs in adminstrative mode

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

79480331

Date: 2025-03-03 06:52:56
Score: 5.5
Natty:
Report link

You need to format your column with JSON to create a button and integrate the button with Power Automate, take a reference to this article: Button in SharePoint List to Trigger Power Automate or this video: SharePoint Power Hour: List Button Trigger Power Automate.

Reasons:
  • Blacklisted phrase (1): this article
  • Blacklisted phrase (1): this video
  • Probably link only (1):
  • Low length (1):
  • No code block (0.5):
  • Single line (0.5):
  • Low reputation (0.5):
Posted by: Allen_MSFT

79480293

Date: 2025-03-03 06:21:50
Score: 7 🚩
Natty:
Report link

i did exactly like @steve-ed said, i changed my optimizer to RMSprop. You save my day. Thanks sincerely!

Reasons:
  • Blacklisted phrase (0.5): Thanks
  • Blacklisted phrase (2): save my day
  • Low length (1):
  • No code block (0.5):
  • User mentioned (1): @steve-ed
  • Self-answer (0.5):
  • Single line (0.5):
  • Low reputation (1):
Posted by: LOYINuts

79480292

Date: 2025-03-03 06:21:50
Score: 5
Natty: 5
Report link

No se si es que estas viendo el mismo tutorial que yo pero si es el mismo para hacer un dashboard administrativo , vas a tener adaptar todo lo que este relacionado con pro-sidebar hasta en el app.js

Reasons:
  • RegEx Blacklisted phrase (2.5): mismo
  • Low length (0.5):
  • No code block (0.5):
  • Single line (0.5):
  • Low reputation (1):
Posted by: Gabriel Gomez