79623541

Date: 2025-05-15 14:14:57
Score: 7 🚩
Natty:
Report link

Thank you for your answer! It was really helpful

Now I can send a recorded file to TV by chunks. It is strange because TV recognize voice when I send file by 120 bytes but TV can't recognize if I send by 119 bytes. Maybe you know this issue and can help. However I can do it with recorded wav file.

My next question is about realtime audio stream. Do you know how it can be implemented?

I will be really grateful for your additional help

Reasons:
  • Blacklisted phrase (0.5): Thank you
  • RegEx Blacklisted phrase (2): I will be really grateful
  • RegEx Blacklisted phrase (2.5): Do you know how
  • No code block (0.5):
  • Contains question mark (0.5):
  • Low reputation (1):
Posted by: Nick Malevich

79623540

Date: 2025-05-15 14:12:56
Score: 4
Natty:
Report link

I'm sorry I may not be explaining this well. We have a field ltd that will have a 2 digit currency value. I want to verify the field is any valid 2 digit currency, for example 12000.00, 23.55, 23910.01 would all be valid. 1.1, 24552.134, etc would be invalid.

Reasons:
  • RegEx Blacklisted phrase (1): I want
  • Low length (0.5):
  • No code block (0.5):
  • Unregistered user (0.5):
  • Single line (0.5):
  • Low reputation (1):
Posted by: Abby

79623539

Date: 2025-05-15 14:12:56
Score: 2
Natty:
Report link

I tried this in my test environment I also facing the same issue, where keycloak failed to connect to the database.

After troubleshooting I got the main issue was incorrect service dependencies and connection setup b/w keycloak and mysql in docker on azure, especially when the containers start.

I have used a simple docker-compose.yml (instead of dockerfile) and setup with the official images and proper healthchecks, make sure the keycloak only starts after mysql is ready.

docker-compose.yml file like this:

version: "3.8"

services:
  mysql:
    image: mysql:8.0
    container_name: keycloak-mysql
    environment:
      MYSQL_ROOT_PASSWORD: rootpassword
      MYSQL_DATABASE: keycloak_db
      MYSQL_USER: keycloak
      MYSQL_PASSWORD: password
    healthcheck:
      test: ["CMD", "mysqladmin", "ping", "-h", "localhost"]
      interval: 5s
      timeout: 5s
      retries: 5
    ports:
      - "3306:3306"
    volumes:
      - mysql_data:/var/lib/mysql

  keycloak:
    image: bitnami/keycloak:24.0.4
    container_name: keycloak
    depends_on:
      mysql:
        condition: service_healthy
    environment:
      KEYCLOAK_DATABASE_VENDOR: mysql
      KEYCLOAK_DATABASE_HOST: mysql
      KEYCLOAK_DATABASE_PORT: 3306
      KEYCLOAK_DATABASE_NAME: keycloak_db
      KEYCLOAK_DATABASE_USER: keycloak
      KEYCLOAK_DATABASE_PASSWORD: password
      KEYCLOAK_ADMIN_USER: admin
      KEYCLOAK_ADMIN_PASSWORD: admin
    ports:
      - "8080:8080"

volumes:
  mysql_data:


Save the file and then > docker-compose up -d

the above process is working correctly it will also connect when MySQL database is ready before connecting to keycloak, i also added the health check to MySQL container the docker understand when MySQL is up and running. using the depends_on setting docker waits to start keycloak until MySQL is connections this process avoids making custom dockerfiles, if something is missing ot misconfigured it will be tricky and may cause errors. finally, by using PV for MySQL we make sure the database keeps its data even if the container restarts.

Make sure azure vm firewall and network security groups allow inbound traffic on port 8080.
Ensure docker is properly installed and running on your vm, you can view logs with docker-compose logs -f to check container startup progress

Reasons:
  • Long answer (-1):
  • Has code block (-0.5):
  • Me too answer (2.5): I also facing the same issue
  • Low reputation (1):
Posted by: Bheemani Anji Babu

79623536

Date: 2025-05-15 14:12:56
Score: 2.5
Natty:
Report link

I'm not 100% sure I understand your issue, but you should definitely assume that it is possible for the password to be read by other JS running on the same page.

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

79623535

Date: 2025-05-15 14:12:56
Score: 2
Natty:
Report link

Check whether there is any token have set with your account or not, the same have been happened with me also.

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

79623525

Date: 2025-05-15 14:09:55
Score: 1
Natty:
Report link

Do we have any idiom for creating one or more item resources at once?, without affecting existing sibling resources?

Exactly the same

The 201 (Created) status code indicates that the request has been fulfilled and has resulted in one or more new resources being created. The primary resource created by the request is identified by either a Location header field in the response or, if no Location header field is received, by the target URI. -- RFC 9110

Emphasis added

So single POST Request, server produces multiple resources, HTTP response headers identify the primary resource created, is all straight forward.

The response body... I don't think there are any fixed standards on how to describe the created resources in the response body. On the web, it would normally just be an HTML page showing the human a bunch of links....

Reasons:
  • RegEx Blacklisted phrase (2.5): Do we have any
  • Long answer (-0.5):
  • No code block (0.5):
  • Contains question mark (0.5):
  • High reputation (-2):
Posted by: VoiceOfUnreason

79623512

Date: 2025-05-15 14:02:53
Score: 4.5
Natty:
Report link

A bug report has been submitted for this issue under https://forge.typo3.org/issues/106707

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

79623511

Date: 2025-05-15 14:01:52
Score: 2
Natty:
Report link

Flutter Mapbox v4 supports high-performance vector tiles, offering smooth, interactive maps with customizable styles and layers. Perfect for mobile apps, it ensures fast rendering, offline capabilities, and crisp visuals at any zoom level. Build beautiful, responsive maps using Flutter’s flexible UI and Mapbox’s powerful vector tile technology.

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

79623510

Date: 2025-05-15 14:01:52
Score: 1.5
Natty:
Report link

Is there a better way to nest if blocks in google spreadsheets ?

Yes. Use the SWITCH function. Here is an example using your code:

=SWITCH(H4
1, "CORRECT",
2, "CORRECT",
3, "CORRECT",
4, "CORRECT",
"Incorrect")

The last entry is the default, if H4 does not = 1, 2, 3, or 4 then the last entry is the result.

It is very similar to the standard programming function called SELECT CASE.

Reasons:
  • Has code block (-0.5):
  • Contains question mark (0.5):
  • Starts with a question (0.5): Is there a
  • Low reputation (1):
Posted by: D.W.

79623506

Date: 2025-05-15 14:00:52
Score: 1.5
Natty:
Report link

Can you please double check your entity definitions?

I also had a similar issue, and after hours of debugging I found that I need to enable the synchronize attribute to allow typeorm to consider a given entity for migration.

The entity decorator should look like:

@Entity({ name: "table_name", synchronize: true })

If you want to run typeorm cli on typescript prrojects, you can install a wrapper for that purpose using the command below

npm install typeorm-ts-node-commonjs

After installing this, you can run commands with typesacript based data sources too

For ex, to generate a migration, once can use below command:

npx typeorm-ts-node-commonjs migration:generate path/to/migration -d path/to/typescript/datasource
Reasons:
  • Blacklisted phrase (0.5): I need
  • Long answer (-0.5):
  • Has code block (-0.5):
  • Contains question mark (0.5):
  • Starts with a question (0.5): Can you please
  • Low reputation (1):
Posted by: Abhishek

79623503

Date: 2025-05-15 13:59:51
Score: 2
Natty:
Report link

It looks like you are running into a known issue with the latest Redshift driver. According to the description in this issue you can still use the latest Liquibase release (4.31.1) by downgrading the driver to a previous version. You can download older drivers here: https://docs.aws.amazon.com/redshift/latest/mgmt/jdbc20-previous-driver-version-20.html

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

79623497

Date: 2025-05-15 13:54:50
Score: 1.5
Natty:
Report link

I solve in this way:

.ui-datepicker {
  z-index: 9999 !important;
}

.ui-datepicker.ui-widget {
  position: absolute !important;
}
Reasons:
  • Low length (1):
  • Has code block (-0.5):
  • Low reputation (1):
Posted by: Farjana Sultana

79623490

Date: 2025-05-15 13:52:49
Score: 2.5
Natty:
Report link

Hi I don't know how Hyperledger works, but here is an idea, each file has a unique sha256 code that can be added to the blockchain is easier and cheaper, and the file remains private. Only people that have the file can check its hash against the hash that is stored on the blockchain and thus proving the authenticity of the file. I found a site that does this on Ethereum : doc2block, it allows you to add files to ethereum blockchain

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

79623486

Date: 2025-05-15 13:51:49
Score: 2
Natty:
Report link

i had faced this issue
check if you had already downloaded the Dev Containers extensions in your VS Code
and that should be in updated version
once downloaded once run docker ps in terminal
if the error still persists then try attaching manually

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

79623483

Date: 2025-05-15 13:49:48
Score: 1.5
Natty:
Report link

In a job, you can use the stage "Move files", setting source directory and destination directory with "Wildcard (RegExp)" field empty (in case there are no restrictions on file type).

In a transformation, you can use the stage "Process files". Read two input parameters ("Dir source" and "Dir destination") with the stage "Get variables", the list of files you want to move with the stage "Get file names" where "Filename is defined in a field?" is checked and "Get filename from field" is filled with your "Dir source" parameter and two stages "Concat fields" to build full source path and full destination path that "Process files" will process

Below the transformation design screenshot.

Best regards

Transformation screenshot

Reasons:
  • Blacklisted phrase (0.5): Best regards
  • Blacklisted phrase (1): regards
  • Whitelisted phrase (-1.5): you can use
  • Long answer (-0.5):
  • No code block (0.5):
  • Contains question mark (0.5):
  • Low reputation (1):
Posted by: Maxhouston

79623472

Date: 2025-05-15 13:45:47
Score: 5.5
Natty: 4
Report link

Just on the off chance can you advice which files were missing and where you moved them to? I've got the same issue and tried various options to publish the files, but not getting anywhere.

Reasons:
  • RegEx Blacklisted phrase (2.5): can you advice
  • Low length (0.5):
  • No code block (0.5):
  • Contains question mark (0.5):
  • Single line (0.5):
  • Low reputation (1):
Posted by: Valdearg

79623469

Date: 2025-05-15 13:44:45
Score: 4
Natty:
Report link

figured out, it needs to wait support on below new spec, in which it is not in JAVA MCP SDK yet, while it is python and typescript support today.

https://modelcontextprotocol.io/specification/2025-03-26/basic/transports#streamable-http

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

79623467

Date: 2025-05-15 13:42:45
Score: 1.5
Natty:
Report link

In your Start Method change

ReturnToMainMenuIsOpen = ReturnToMainMenuObject.activeSelf;

in ReturnToMainMenuObject.SetActive(false);

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

79623460

Date: 2025-05-15 13:38:43
Score: 1
Natty:
Report link

Please update, it now supports Vue 3.

npm install vue-pivottable@latest 
# or 
npm install [email protected]
Reasons:
  • Low length (1):
  • Has code block (-0.5):
  • Low reputation (0.5):
Posted by: seungwoo lee

79623459

Date: 2025-05-15 13:37:43
Score: 4
Natty: 4
Report link

In v7 they added web support, so it would work for now https://reactnavigation.org/docs/web-support/ enter image description here

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

79623455

Date: 2025-05-15 13:35:42
Score: 4
Natty: 4
Report link

React navigation v7 added support for web https://reactnavigation.org/docs/web-support/ enter image description here

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

79623454

Date: 2025-05-15 13:35:42
Score: 0.5
Natty:
Report link

Try select different color for drawing, not black оn white, and it will work.

enter image description here

This code works:

import SwiftUI
import PencilKit
import Vision

struct HandwritingRecognizerView: View {
    @State private var canvasView = PKCanvasView()
    @State private var toolPicker = PKToolPicker()
    
    @State private var recognizedText = ""
    @State private var isRecognizing = false
    
    var body: some View {
        VStack {
            HStack {
                Button("Recognize") {
                    recognizeHandwriting()
                }
                .padding()
                .background(Color.blue)
                .foregroundColor(.white)
                .cornerRadius(8)
                
                Button("Clear") {
                    canvasView.drawing = PKDrawing()
                    recognizedText = ""
                }
                .padding()
                .background(Color.red)
                .foregroundColor(.white)
                .cornerRadius(8)
            }
            .padding()
            
            Text(recognizedText)
                .font(.headline)
                .padding()
                .frame(maxWidth: .infinity, alignment: .leading)
                .background(Color.green.opacity(0.1))
                .cornerRadius(8)
                .padding(.horizontal)

            PencilKitCanvasRepresentable (canvasView: $canvasView, toolPicker: $toolPicker)
                .onAppear {
                    toolPicker.setVisible(true, forFirstResponder: canvasView)
                    toolPicker.addObserver(canvasView)
                    canvasView.becomeFirstResponder()
                }
                .frame(maxWidth: .infinity, maxHeight: .infinity)
            
           
        }
    }
    
    func recognizeHandwriting() {
        isRecognizing = true
        
        // Convert PKDrawing to UIImage
        let image = canvasView.drawing.image(from: canvasView.drawing.bounds, scale: 1.0)
      
         // Create a request handler
        guard let cgImage = image.cgImage else {
            print("Could not get CGImage from UIImage")
            isRecognizing = false
            return
        }
    
        // Important: Create the request with the recognition level set to accurate
        let request = VNRecognizeTextRequest { (request, error) in
            if let error = error {
                print("Error: \(error)")
                isRecognizing = false
                return
            }
            
            guard let observations = 
                         request.results as? [VNRecognizedTextObservation] else {
                print("No text observations")
                isRecognizing = false
                return
            }
            
            // Process the recognized text
            let recognizedStrings = observations.compactMap { observation in
                observation.topCandidates(1).first?.string
            }
            
            DispatchQueue.main.async {
                self.recognizedText = recognizedStrings.joined(separator: " ")
                self.isRecognizing = false
            }
        }
        
        // Configure for handwritten text
        request.recognitionLevel = .fast//.accurate
        request.recognitionLanguages = ["en-US"]
        request.usesLanguageCorrection = true
        
        // THIS IS THE KEY: Set recognition to handwriting mode
        request.recognitionLevel =  .accurate//.fast.
        request.recognitionLanguages = ["en-US"]
        request.customWords = ["o3Draw"] // Add custom words that might appear in your app
        
        // Very important - set this to true for handwriting
        if #available(iOS 16.0, *) {
            request.automaticallyDetectsLanguage = false
            request.revision = VNRecognizeTextRequestRevision3
        }
        
        DispatchQueue.global(qos: .userInitiated).async {
            do {
                let requestHandler = VNImageRequestHandler(cgImage: cgImage, options: [:])
                try requestHandler.perform([request])
            } catch {
                print("Failed to perform recognition: \(error.localizedDescription)")
                DispatchQueue.main.async {
                    self.recognizedText = "Recognition failed."
                }
            }
        }
        //---
    }
}

// PencilKit Canvas SwiftUI wrapper
struct PencilKitCanvasRepresentable: UIViewRepresentable {
    @Binding var canvasView: PKCanvasView
    @Binding var toolPicker: PKToolPicker
    
    func makeUIView(context: Context) -> PKCanvasView {
        canvasView.drawingPolicy = .anyInput
        canvasView.alwaysBounceVertical = false
        canvasView.backgroundColor = .clear
        canvasView.isOpaque = false
        return canvasView
    }
    
    func updateUIView(_ uiView: PKCanvasView, context: Context) {
        // Updates happen through the binding
    }
}
// For iOS 16+ specific optimizations for handwriting
extension VNRecognizeTextRequest {
    @available(iOS 16.0, *)
    var revision3: Int {
        return VNRecognizeTextRequestRevision3
    }
}

#Preview {
    HandwritingRecognizerView()
}
Reasons:
  • Blacklisted phrase (1): enter image description here
  • Long answer (-1):
  • Has code block (-0.5):
  • Low reputation (1):
Posted by: Tatiana Kornilova

79623435

Date: 2025-05-15 13:28:39
Score: 3.5
Natty:
Report link

This is still broken in datagrip 2024.2.2 Build #DB-242.21829.162, built on August 29, 2024

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

79623423

Date: 2025-05-15 13:21:36
Score: 5
Natty:
Report link
afadsfasdfasdfasdfasfdsfasfadf
Reasons:
  • Low length (2):
  • Has code block (-0.5):
  • Unregistered user (0.5):
  • Has no white space (0.5):
  • Single line (0.5):
  • Low entropy (1):
  • Low reputation (1):
Posted by: Ramesh

79623417

Date: 2025-05-15 13:20:36
Score: 1
Natty:
Report link

Adding this setting in settings.json turns on inline variable display

"debug.inlineValues": "on",
Reasons:
  • Low length (1):
  • Has code block (-0.5):
  • Low reputation (0.5):
Posted by: Micah Kwaka

79623415

Date: 2025-05-15 13:19:35
Score: 3.5
Natty:
Report link

shuni chizishish kere. phtone idle dasturidaa. cod bilan. yordam ber

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

79623399

Date: 2025-05-15 13:14:34
Score: 1
Natty:
Report link

The default retention period when set from the console is 7 days. Which is what you currently see. The only way I've found to change this is to disable cross-region backup replication and then enable it again, this time setting the desired retention period in days.

During the period of time when the backup replication is disabled no changes will be replicated, but disabling current replication will not delete existing replicated data.

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

79623396

Date: 2025-05-15 13:13:34
Score: 0.5
Natty:
Report link

Download lastest version from official website and install,

updated to new version. for verfication check in GIT BASH

It worked for me..!

Reasons:
  • Whitelisted phrase (-1): It worked
  • Whitelisted phrase (-1): worked for me
  • Low length (1):
  • No code block (0.5):
  • Low reputation (1):
Posted by: HARSHITH GRANDHI

79623395

Date: 2025-05-15 13:12:34
Score: 0.5
Natty:
Report link

Anyone who uses the Adobe Photoshop App can get any image changed from any format to RGB

Edit -> Mode -> Choose RGB.

It can also be done by using the Shell command: convert cmyk images to rgb in folder use shell command

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

79623389

Date: 2025-05-15 13:10:33
Score: 0.5
Natty:
Report link

You can access rows separately and apply a replace only to each row, respectively:

workbook = Workbook('test.xlsx')

def replace_in_row(worksheet, row, old_value, new_value):
    for cell in worksheet.getCells().getRows().get(row):
        if old_value in str(cell.getValue()):
            cell.setValue(str(cell.getValue()).replace(old_value, new_value))

worksheet = workbook.getWorksheets().get(0)
replace_in_row(worksheet, 0, "one", "two")
replace_in_row(worksheet, 9, "one", "five")

or alternatively - adding to @MahrezBenHamad's answer - determine the column range and

max_column = worksheet.getCells().getMaxColumn()

worksheet.getCells().replace("one", "two", ReplaceOptions(), CellArea(0, 0, 0, max_column))
worksheet.getCells().replace("one", "five", ReplaceOptions(), CellArea(9, 0, 9, max_column))
Reasons:
  • Long answer (-0.5):
  • Has code block (-0.5):
  • User mentioned (1): @MahrezBenHamad's
  • Low reputation (0.5):
Posted by: André

79623386

Date: 2025-05-15 13:07:32
Score: 3.5
Natty:
Report link

استعادة البرنامج الاساس onReceivedHttpError يحصل دائمًا على خطأ 404 (errorResonse.getStatusCode() == 404)، ولكن عنوان URL يعمل بشكل جيد حتى على Chrome

Reasons:
  • Low length (1):
  • No code block (0.5):
  • Single line (0.5):
  • No latin characters (0.5):
  • Low reputation (1):
Posted by: حميد احمد

79623383

Date: 2025-05-15 13:06:31
Score: 2
Natty:
Report link

there is a workaround that still uses MapStruct but avoids @AfterMapping or a full custom mapper implementation.

    @Mapping(target = "id", expression = "java(context.getId())")
    Target sourceToTarget(Source source, @Context IdContext context);
Reasons:
  • Low length (0.5):
  • Has code block (-0.5):
  • User mentioned (1): @AfterMapping
  • Low reputation (1):
Posted by: Nikhil Maurya

79623376

Date: 2025-05-15 13:03:31
Score: 0.5
Natty:
Report link

Issue was that I didn't have

using Microsoft.AspNetCore.Components.WebAssembly.Hosting;

var builder = WebAssemblyHostBuilder.CreateDefault(args);

// This line
builder.Services.AddScoped(http => new HttpClient
{
    BaseAddress = new Uri(builder.HostEnvironment.BaseAddress)
});

await builder.Build().RunAsync();

in my code and only registered an httpclient in the server. This messed something up in the @inject HttpClient Http that was not visible in the f12 console for some reason.

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

79623363

Date: 2025-05-15 12:55:29
Score: 1
Natty:
Report link

Resolved by myself.

Laravel uses PHP hash for storing passwords.

So I run the following code to get Hash and put it in DB

<?php


$plaintext_password = "newPassword";


$hash = password_hash($plaintext_password,
        PASSWORD_DEFAULT);


echo "Generated hash: ".$hash;
?>

You can run it on OneCompiler

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

79623361

Date: 2025-05-15 12:54:28
Score: 2
Natty:
Report link

Aaand now I've finally found the answer here: How I can ignore PathVariable conditionally on swagger ui using springdoc openapi

Right now, I'm doing this from the constructor of my SwaggerConfig class, and that works:

@Configuration
@ComponentScan
class SwaggerConfig {

    init {
        SpringDocUtils.getConfig().addAnnotationsToIgnore(AuthenticatedUser::class.java)
    }
.
.
}

Feels a bit smelly to do so statically in a constructor, maybe there's a better place for this?

Reasons:
  • Has code block (-0.5):
  • Ends in question mark (2):
  • Self-answer (0.5):
Posted by: UncleBob

79623356

Date: 2025-05-15 12:53:28
Score: 0.5
Natty:
Report link

I would like to point that despite the AWS Lambda Limits of Payload data being 6MB, in practice your file may be encoded into Base64 which would mean that your limit becomes 4.5MB because the Base64 encoding results in 33% size increase.

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

79623352

Date: 2025-05-15 12:50:27
Score: 2
Natty:
Report link

I hit this exact issue recently and seem to be able to have overcome it.

In the Enterprise appliction under single-sign on there is a section for adding in option claims, only when adding something here did it work for me. The token configuration of the app registration itself had no impact on the values passed back in the JWT.

In my case I have used the email field but called it userprincipalname as my app will be getting tokens from both Entra ID and External Entra ID of which this is the only like for like claim I could use.

I hope that makes sense but let me know if not.

enter image description here

Reasons:
  • Blacklisted phrase (1): enter image description here
  • Long answer (-0.5):
  • No code block (0.5):
  • Low reputation (1):
Posted by: Paul Souch

79623349

Date: 2025-05-15 12:49:27
Score: 2
Natty:
Report link

I managed to fix that by reseting cache:

yarn start --reset-cache
Reasons:
  • Low length (1.5):
  • Has code block (-0.5):
  • Low reputation (1):
Posted by: S K

79623346

Date: 2025-05-15 12:47:26
Score: 4
Natty:
Report link

how did you make it work with LWC? I've tried it and didn't have luck so I had to use Aura cmp

Reasons:
  • Low length (1):
  • No code block (0.5):
  • Contains question mark (0.5):
  • Single line (0.5):
  • Starts with a question (0.5): how did you
  • Low reputation (1):
Posted by: Luca Pero

79623341

Date: 2025-05-15 12:46:26
Score: 0.5
Natty:
Report link

After hours of debugging, I found what the issue was. Each of my entity class was decorated with the below decorator

@Entity({ name: "table_name", synchronize: false })

I mark all the entities with synchronize: false to avoid any accidental schema changes, as if I enable the synchronization on data source level, it will apply to all the entities (or tables).

Setting this to synchronize: true enabled typeorm to consider this entity for migration, and thus, I were able to generate migrations for all modified entities by temporarily enabling this synchronization attribute for entities requiring migration script to be generated automatically.

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

79623329

Date: 2025-05-15 12:36:23
Score: 2
Natty:
Report link

It's doable today with Customizable select elements.

https://developer.mozilla.org/en-US/docs/Learn_web_development/Extensions/Forms/Customizable_select

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

79623318

Date: 2025-05-15 12:30:21
Score: 0.5
Natty:
Report link

Is the FDW host IP 10.252.86.4 reachable from the source PostgreSQL server?

This could likely be the root cause, the source PostgreSQL server (a managed Azure PaaS) cannot directly connect to that private IP.

Azure PostgreSQL managed instances have outbound restrictions:

You cannot SSH into the managed instance to test connectivity, but you can try:

Using an Azure VM in the same subnet/VNet as the source server to test connectivity to the foreign IP.

If the two servers are in different VNets, set up VNet peering or use public endpoints.

Try using the public IP of the target PostgreSQL in the FDW server definition instead of private IP

Since external ODBC connects work, the public endpoint is reachable. Example:

CREATE SERVER foreign_server

FOREIGN DATA WRAPPER postgres_fdw

OPTIONS (host 'public-ip-or-dns-name-of-target', port '5432', dbname 'target_db');

Make sure the firewall on the target server allows the IP of the source server or Azure subnet:

Check firewall rules on the target Azure PostgreSQL to allow inbound connections from the source server’s outbound IP.

If security requires private IPs only:

Consider setting up Azure Private Link / Private Endpoint and ensure both servers are in peered VNets with proper routing.

Reasons:
  • Long answer (-1):
  • Has code block (-0.5):
  • Contains question mark (0.5):
  • Starts with a question (0.5): Is the
  • Low reputation (1):
Posted by: Mohit-B

79623317

Date: 2025-05-15 12:29:21
Score: 0.5
Natty:
Report link

In PyTorch, model.eval() switches the model to evaluation mode, which is crucial when performing inference or validating model performance. This is because certain layers, specifically Dropout and BatchNorm, behave differently during training versus evaluation. For instance, during training, Dropout randomly zeroes some of the elements of the input tensor to prevent overfitting, and BatchNorm computes running statistics from the current batch. However, during evaluation, these behaviors are not desirable, Dropout should be turned off to ensure deterministic results, and BatchNorm should use the running statistics accumulated during training for stable outputs.

Reasons:
  • Long answer (-0.5):
  • Has code block (-0.5):
  • Single line (0.5):
  • Low reputation (1):
Posted by: Manas Parashar

79623316

Date: 2025-05-15 12:29:21
Score: 2
Natty:
Report link

You can try to use Build Blocker plugin.

It allows to specify list of jobs to check before running the current job.

Reasons:
  • Low length (1):
  • No code block (0.5):
  • Low reputation (0.5):
Posted by: Алексей

79623309

Date: 2025-05-15 12:26:20
Score: 1.5
Natty:
Report link

We ended up switching to Kualitee, and it’s been working well for us. It supports both SAML and OAuth-based SSO, and the transition was pretty smooth.

Feature-wise, it covers most of what TestRail offers (test case management, requirements traceability, reporting, etc.), and the UI is fairly straightforward. Might be worth checking out if SSO is a must-have for your setup.

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

79623305

Date: 2025-05-15 12:24:19
Score: 1
Natty:
Report link

I agree with @Prasad-MSFT, this restriction is to uphold a strong security boundary between tenants, preventing unauthorized access to another tenant’s data without explicit permission.

Hence you need to make use of getAllMessages endpoint only and this API always comply with organization’s privacy and compliance policies.

GET https://graph.microsoft.com/v1.0/users/UserID/chats/getAllMessages

enter image description here

This API is not a security loophole — it’s approved officially.

Reasons:
  • Long answer (-0.5):
  • Has code block (-0.5):
  • User mentioned (1): @Prasad-MSFT
  • Low reputation (1):
Posted by: Deepthi R

79623297

Date: 2025-05-15 12:19:18
Score: 2.5
Natty:
Report link

Great insights on setting up index routes in Symfony 7 with EasyAdmin 4 super helpful for managing different environments! For anyone working on web projects or online stores, I recommend checking out Wearable Outfit for the best oversized t-shirts Pakistan. Stylish and comfy.

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

79623279

Date: 2025-05-15 12:04:14
Score: 2.5
Natty:
Report link

This simply turned out to be caused by incorrect .NET packages on the web server, and correction of web server configuration.

Basically:

Reasons:
  • Low length (0.5):
  • No code block (0.5):
  • Self-answer (0.5):
  • Low reputation (1):
Posted by: Peter Rasmussen

79623268

Date: 2025-05-15 12:00:12
Score: 1.5
Natty:
Report link

I can reproduce the issue in a similar way since upgrading to macOS 15.5. I can't access my Spring Boot backend running on localhost (just as my Angular app) but on a different port without modifying CORS rules in the backend.

The issue is likely related to CVE-2025-31205 and its fix in Webkit, see:

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

79623266

Date: 2025-05-15 11:59:12
Score: 0.5
Natty:
Report link

In PyTorch, both .flatten() and .view(-1) are used to reshape tensors into 1D, but they differ subtly in behavior. .view(-1) requires the tensor to be contiguous in memory; if it’s not (e.g., after operations like .transpose()), .view() will throw a runtime error unless you call .contiguous() first. On the other hand, .flatten() internally handles non-contiguous tensors by calling .contiguous() before reshaping, making it more robust but slightly less performant in some edge cases due to the additional memory copy. So yes, .flatten() may copy data when needed, while .view(-1) does not but is less flexible. Use .flatten() when you want safer, more general code, and .view(-1) when you're sure the tensor is contiguous and want slightly better performance.

Reasons:
  • Long answer (-0.5):
  • Has code block (-0.5):
  • Single line (0.5):
  • Low reputation (1):
Posted by: Manas Parashar

79623261

Date: 2025-05-15 11:58:11
Score: 4
Natty:
Report link

It was necessary to add "SelectionCountRule" with "Minimum = 1" to the enable rules

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

79623259

Date: 2025-05-15 11:57:11
Score: 5.5
Natty:
Report link

Did you find a way to fix this?
I also have some questions on your debugging process:

inspecting the queue (task-queue describe ) and no task in the backlog

Do you mean tctl tq desc --taskqueue taskqueuename ? This returns workers that are present, not the task backlog.

/etc/temporal$ tctl tq desc --taskqueue TestWorkflowQueue
  WORKFLOW POLLER IDENTITY |   LAST ACCESS TIME    
  17720@worker     | 2025-05-15T11:48:11Z  
/etc/temporal$ tctl tq desc --taskqueue TestActivitiesQueue
  WORKFLOW POLLER IDENTITY | LAST ACCESS TIME  
Reasons:
  • RegEx Blacklisted phrase (3): Did you find a way to fix this
  • RegEx Blacklisted phrase (1.5): fix this?
  • Long answer (-0.5):
  • Has code block (-0.5):
  • Contains question mark (0.5):
  • Starts with a question (0.5): Did you find a
  • Low reputation (1):
Posted by: Edvinas

79623258

Date: 2025-05-15 11:57:11
Score: 2
Natty:
Report link

You can try simplified web socket client. Clone it from GitHub and use only wsclient.html file.

git clone https://github.com/lukcad/wsclient.git

Your browser will be able save all your test cases as a projects. More information you can find here:

wsclient

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

79623256

Date: 2025-05-15 11:55:09
Score: 3
Natty:
Report link

I was getting the same error but then I noticed that I was printing my np array for debugging and had not removed that line. The error was coming to that print apparently. It went away when I removed the print

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

79623253

Date: 2025-05-15 11:54:09
Score: 3
Natty:
Report link

As I know , new model like AudioLDM 1 and ALDM 2 can not generate long music. The youtube link

https://www.youtube.com/watch?v=1wAdQhFJy54 has 4 minutes and this music is high quality.

I recommand the InspireMusic model https://github.com/FunAudioLLM/InspireMusic that is announced in 2025. This model can generate long music, support complicated prompt text, generate high quality music.

Reasons:
  • Blacklisted phrase (1): youtube.com
  • Low length (0.5):
  • No code block (0.5):
  • Low reputation (1):
Posted by: CCC

79623248

Date: 2025-05-15 11:50:08
Score: 1
Natty:
Report link

The WebKit version used by Playwright is not exactly Safari — it's a custom build, and not all features (like media or touch events) behave identically to Safari on macOS, testing WebKit on Windows doesn't fully replace testing on Safari/macOS if you're aiming for real-world parity.

If your 3D model site relies heavily on WebGL, canvas, or GPU-accelerated rendering, and especially if Safari support is important, then:

A 3D scene might render slightly differently on macOS Safari (WebKit) due to its WebGL backend, even if the same test passes on Windows WebKit (Playwright uses a patched version of WebKit, not Safari itself).

Hugs!

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

79623243

Date: 2025-05-15 11:47:07
Score: 4.5
Natty: 5
Report link

So, This is clear but there is one thing I want to know.
Do we need to first make the solution, then create a flow in it and add the global variable there or is it also possible to add already created flows to the solution and the nadd global variable?

I am encountering some weird shizzle.

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

79623242

Date: 2025-05-15 11:47:07
Score: 1.5
Natty:
Report link

if your positioned widget is outside of you parent area it will not work. But you can use follwoing package to solve the issues . https://pub.dev/packages/defer_pointer

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

79623241

Date: 2025-05-15 11:46:06
Score: 1.5
Natty:
Report link

persidict provides a fast, disk-backed dictionary using pickle or json under the hood, and supports in-place updates with minimal code changes.

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

79623227

Date: 2025-05-15 11:41:05
Score: 1.5
Natty:
Report link

I had been struggling with this for so long, but I have found a very good solution to this, which suits my needs.
I will add all the information I had to go around look for so it's easier for others, just in case.
It is a combination of these two answers, so the respective credit goes to them:

https://stackoverflow.com/a/57775666/28946680
https://stackoverflow.com/a/44411205/28946680

This works for WIndows Powershell or any similar shells which are built on top of that and can use their own profiles.

To make this, you first need to find out where your profiles are stored for WindowsPowershell
It will be in either of these locations:
1. $UserHome\Documents\WindowsPowerShell\
2. $UserHome\One Drive\Documents\WindowsPowerShell\ (This second one will be your path if you have one drive configured)

Look at this article for more information: https://learn.microsoft.com/en-us/powershell/module/microsoft.powershell.core/about/about_profiles?view=powershell-7.5

Then you can make your script with the name profile.ps1

function Write-BranchName () {

    $git_cmd = "git rev-parse --abbrev-ref HEAD"
    Invoke-Expression $git_cmd 2> $null | Tee-Object -Variable git_branch | Out-Null
    $git_branch_text = $None
    
    # If we are inside a git repo
    if  ($git_branch -And -Not $git_branch.StartsWith($git_cmd)) {

        if ($git_branch -eq "HEAD") {
            $git_branch = git rev-parse --short HEAD
            if ($git_branch) {
                # we're probably in detached HEAD state, so print the SHA
                Write-Host " ($git_branch)" -NoNewline -ForegroundColor "red"
            } else {
                # we'll end up here if we're in a newly initiated git repo
                Write-Host " (no branches yet)" -NoNewline -ForegroundColor "yellow"
            }
        }
        else {
            # we're on an actual git_branch, so print it
            Write-Host " ($git_branch)" -NoNewline -ForegroundColor "blue"
        }
    }
}

function prompt {
    $base = "PS "
    $path = "$($executionContext.SessionState.Path.CurrentLocation)"
    $userPrompt = "$('>' * ($nestedPromptLevel + 1)) "

    Write-Host "`n$base" -NoNewline

    Write-Host $path -NoNewline -ForegroundColor "green"
    Write-BranchName

    return $userPrompt
}

This handles the case for if there's no current branch, no branch selected as well a particular commit in different colours (The colours are easily configurable from the code)

The screenshots can be found in the above link where I took this from.

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

79623224

Date: 2025-05-15 11:39:04
Score: 1
Natty:
Report link

The Email constructor has a parameter draft. This internally sets the flag MSGFLAG_UNSENT in the .msg file, which should be recognized by Outlook.

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

79623218

Date: 2025-05-15 11:33:03
Score: 2.5
Natty:
Report link

Use Dash callbacks to dynamically update the layout. Based on the selected dropdown value, trigger a callback that returns different input components in the Output of a container like htmt.

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

79623207

Date: 2025-05-15 11:26:01
Score: 0.5
Natty:
Report link

Try this: Create new user, remember the password of newly created user. Now copy/paste the newly created user's encrypted password to admin's passwords field and check new user's password as admin's password! It should work.

Reasons:
  • Whitelisted phrase (-2): Try this:
  • Low length (0.5):
  • No code block (0.5):
  • Single line (0.5):
  • Low reputation (1):
Posted by: Kashyap Hindocha

79623205

Date: 2025-05-15 11:25:00
Score: 5
Natty: 5.5
Report link

Suppose if there is an pixelated image given to us and we need to clear it and find the image then what should we do ??????? Reply as soon as possible

Reasons:
  • Blacklisted phrase (1): ???
  • Low length (1):
  • No code block (0.5):
  • Contains question mark (0.5):
  • Unregistered user (0.5):
  • Single line (0.5):
  • Low reputation (1):
Posted by: Ansh

79623193

Date: 2025-05-15 11:20:59
Score: 1
Natty:
Report link

Try this : https://tailwindcss.com/docs/installation/play-cdn

Add the Play CDN script to your HTML Add the Play CDN script tag to the of your HTML file, and start using Tailwind’s utility classes to style your content.

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

79623188

Date: 2025-05-15 11:16:57
Score: 1
Natty:
Report link

This question seems to be unanswered for a while, but while reading through the documentation below, I found an interesting spreadsheet with the platform availability of skia and impeller.

Documentation: https://docs.flutter.dev/resources/architectural-overview

Spreadsheet: https://flutter.dev/go/can-i-use-impeller

So the answer is yes, all other platforms use skia, but they are migrating to impeller. Web is the only one that remains skia only.

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

79623165

Date: 2025-05-15 11:02:54
Score: 4.5
Natty:
Report link

Fixed it, used AI to find a solution.

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

79623160

Date: 2025-05-15 10:58:52
Score: 9 🚩
Natty:
Report link

did you resolve it? if so plz share it here

Reasons:
  • RegEx Blacklisted phrase (3): did you resolve it
  • RegEx Blacklisted phrase (1.5): resolve it?
  • Low length (1.5):
  • No code block (0.5):
  • Contains question mark (0.5):
  • Single line (0.5):
  • Starts with a question (0.5): did you
  • Low reputation (1):
Posted by: Umar Fayaz Khan

79623147

Date: 2025-05-15 10:51:50
Score: 1
Natty:
Report link

Convert Bytes to Int / uint in C

get_byte(bytes, 0)::bigint +
(get_byte(bytes, 1)::bigint << 8*1) +
(get_byte(bytes, 2)::bigint << 8*2) +
(get_byte(bytes, 3)::bigint << 8*3) +
(get_byte(bytes, 4)::bigint << 8*4) +
(get_byte(bytes, 5)::bigint << 8*5) +
(get_byte(bytes, 6)::bigint << 8*6) +
(get_byte(bytes, 7)::bigint << 8*7)
Reasons:
  • Probably link only (1):
  • Low length (0.5):
  • Has code block (-0.5):
Posted by: n0099

79623145

Date: 2025-05-15 10:51:49
Score: 6 🚩
Natty: 5.5
Report link

anyone got this issue with macOS ?

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

79623143

Date: 2025-05-15 10:48:48
Score: 6
Natty: 7
Report link

But we can do it on latest Mac OS?? Seqouia? Thanks. No one!

Reasons:
  • Blacklisted phrase (0.5): Thanks
  • Low length (1.5):
  • No code block (0.5):
  • Ends in question mark (2):
  • Unregistered user (0.5):
  • Low reputation (1):
Posted by: EiMac

79623140

Date: 2025-05-15 10:46:46
Score: 10 🚩
Natty: 6
Report link

Did you ever get a resolution for this? I'm having the same problem: any view that references a UDF causes an error in the GET_OBJECT_REFERENCES function. If I had sufficient privileges, I could possibly use the account view OBJECT_DEPENDENCIES to get what I need, but I don't have such privileges. What I really need is for GET_OBJECT_REFERENCES not to fail because of UDF references in the views being investigated (or even in upstream views).

Reasons:
  • Blacklisted phrase (0.5): I need
  • Blacklisted phrase (1): I'm having the same problem
  • RegEx Blacklisted phrase (3): Did you ever get a
  • No code block (0.5):
  • Me too answer (2.5): I'm having the same problem
  • Contains question mark (0.5):
  • Single line (0.5):
  • Starts with a question (0.5): Did you
  • Low reputation (1):
Posted by: Andrew Sturt

79623137

Date: 2025-05-15 10:45:46
Score: 1
Natty:
Report link

Update:

I have to empty the package's README.md to make the publish success, it seems some keywords in README.md make Verdaccio reject the package.

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

79623133

Date: 2025-05-15 10:43:45
Score: 1
Natty:
Report link

Found the answer:

Do not use underscore in the scheme name

Fails...

'com.eis.good_day://login-redirect/';

Works

'com.eis.good-day://login-redirect/';
Reasons:
  • Low length (1):
  • Has code block (-0.5):
  • Self-answer (0.5):
Posted by: user2868835

79623131

Date: 2025-05-15 10:40:44
Score: 3
Natty:
Report link

I was able to log into the site only using the token from the cookie

import requests

cookies = {'token': 'MyToken'}
requests.post('https://dikidi.ru', cookies=cookies)

enter image description here

Reasons:
  • Blacklisted phrase (1): enter image description here
  • Low length (1):
  • Has code block (-0.5):
  • Self-answer (0.5):
  • Low reputation (1):
Posted by: SY DIE

79623128

Date: 2025-05-15 10:40:44
Score: 2.5
Natty:
Report link

in my case the problem because i install two of torch version , try to uninstall old version

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

79623126

Date: 2025-05-15 10:39:44
Score: 1
Natty:
Report link

The best way is SectionTable[]. SectionTable (part of PE header) has PointerToRawData field. Code section (.text/.code/CODE32) doesn’t always follow strictly the SectionTables array.

Maybe you have a chance to skip FileHeader and OptionalHeader (if you know PE32/+ magic word).

In another angle:

You need to know

  1. required architecture

  2. file alignment (set in PE header)

For raw disassembling a binary. You can find POP or MOV instructions (ex. for IA32e) and this way to determine the start of code.

It seems to me that this way is very unsafe or at least very inaccurate in most cases.

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

79623121

Date: 2025-05-15 10:35:43
Score: 0.5
Natty:
Report link

You need to add transition to your button: something like this:

.btn {
    float: left;
    font-size: 18px;
    font-weight: 500;
    padding: 13px 39px;
    margin-bottom: 0;
    background-color: transparent;
    text-decoration: none;
    text-align: center;
    cursor: pointer;
    border: 2px solid #2F3C7E;
    border-radius: 7px;
    color: #2F3C7E;

    // Transition added (You can add transition to a specific thing like color or background color or just use all)
    transition: all ease-in-out 0.2s;
}

also have a look at this: https://developer.mozilla.org/en-US/docs/Web/CSS/transition

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

79623120

Date: 2025-05-15 10:35:43
Score: 1.5
Natty:
Report link

Yes, you can. How to do it:

1 - Add your JavaScript files as embedded resources

2 - Add your JS files to your project In the file properties, set ‘Build action’ to ‘Embedded resource’.

enter image description here

Do not forget : <script src="@Url.Action("GetScript", "Script", new { id = "monScript" })"></script>

For the last part : cache headers to the controller to avoid loading scripts on each request.

Reasons:
  • Blacklisted phrase (1): enter image description here
  • Has code block (-0.5):
  • Low reputation (1):
Posted by: Djamal ADAM

79623116

Date: 2025-05-15 10:31:41
Score: 3
Natty:
Report link

You can also use MoreLINQ's GroupAdjacent function for this.

https://github.com/morelinq/MoreLINQ/blob/master/MoreLinq/GroupAdjacent.cs

Examples to be found here:

https://github.com/morelinq/MoreLINQ/blob/master/MoreLinq.Test/GroupAdjacentTest.cs

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

79623115

Date: 2025-05-15 10:31:41
Score: 1.5
Natty:
Report link

Do not do this. We did this across 5 sites and when we passed session Id as a user property, the cookie did not properly update session id so we started to undercount our sessions. This led to a high session duration and multiple sessions being counted only once

When we rolled back this deployment, the issue resolved.

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

79623108

Date: 2025-05-15 10:28:40
Score: 2.5
Natty:
Report link

For me it worked when I ended up few tasks in task manager

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

79623103

Date: 2025-05-15 10:26:40
Score: 2.5
Natty:
Report link

Big-O notation describes the upper bound of an algorithm's running time in terms of input size .for example if the input size is n .
1.By understanding the code

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

79623102

Date: 2025-05-15 10:25:39
Score: 2.5
Natty:
Report link

The social graph example suggests that a transitive closure is required, remove all edges where both extremities have the same label (same first name), and then the solutions would be finding all Maximum Cliques: this can be solved using the well known Bron–Kerbosch algorithm.

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

79623100

Date: 2025-05-15 10:23:39
Score: 3.5
Natty:
Report link

Thank you very much. You even don't imagine how many time you saved for me...

Happy to find this solution here. Thanks a lot.

Reasons:
  • Blacklisted phrase (0.5): Thank you
  • Blacklisted phrase (0.5): Thanks
  • Low length (1):
  • No code block (0.5):
  • Low reputation (1):
Posted by: Maria Karpov

79623097

Date: 2025-05-15 10:21:38
Score: 4.5
Natty:
Report link

you don't need to do anything because it's already exist in the log as below

enter image description here

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

79623091

Date: 2025-05-15 10:18:37
Score: 3
Natty:
Report link

You should check the Ivy Dependencies. IF that don't fix it try to Explicitly Add Dependency by manually adding an older JAR that contains it might work as a temporary solution.

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

79623075

Date: 2025-05-15 10:10:35
Score: 3.5
Natty:
Report link

Button doesn't have height, try add padding !

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

79623069

Date: 2025-05-15 10:08:35
Score: 0.5
Natty:
Report link

Removing the resources tags fixed the issue. Swagger UI now shows the Project name, version and description instead of placeholders.

Commented out the resources tags in pom.xml as below.

<build>
    <!--<resources>
        <resource>
            <directory>src/main/resources</directory>
            <filtering>true</filtering>
        </resource>
    </resources>-->
    <plugins>
        <plugin>
            <artifactId>maven-enforcer-plugin</artifactId>
        </plugin>
        <plugin>
            <groupId>org.springframework.boot</groupId>
            <artifactId>spring-boot-maven-plugin</artifactId>
        </plugin>
        <plugin>
            <groupId>com.googlecode.maven-download-plugin</groupId>
            <artifactId>download-maven-plugin</artifactId>
        </plugin>
        <plugin>
            <groupId>org.apache.maven.plugins</groupId>
            <artifactId>maven-pmd-plugin</artifactId>
        </plugin>
        <plugin>
            <groupId>org.jacoco</groupId>
            <artifactId>jacoco-maven-plugin</artifactId>
        </plugin>
    </plugins>
</build>

Thanks.

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

79623066

Date: 2025-05-15 10:05:34
Score: 3
Natty:
Report link

fixed it by chaning xpath to css selector

and adding data-testid

Reasons:
  • Low length (1.5):
  • No code block (0.5):
  • Self-answer (0.5):
  • Low reputation (0.5):
Posted by: Aditya Dand

79623063

Date: 2025-05-15 10:04:33
Score: 1.5
Natty:
Report link

Add @babel/core and @better-auth/cli to your dev dependencies, install and try again the command npx @better-auth/cli generate. This should solve the problem.

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

79623059

Date: 2025-05-15 10:03:33
Score: 2.5
Natty:
Report link

When you build your project then in the tool window "Error list" should appear the files with the error you specified, then edit them, like... write a character and then delete that character, save, rebuild... and all the errors will disappear. Don't ask me why

Reasons:
  • Low length (0.5):
  • No code block (0.5):
  • Single line (0.5):
  • Starts with a question (0.5): When you
  • Low reputation (0.5):
Posted by: Phantom Lord

79623058

Date: 2025-05-15 10:01:33
Score: 2
Natty:
Report link

Following on from @Guido T's answer, I had to add this line of code as well:

sudo cp /mnt/c/Users/<user>/AppData/Local/Android/sdk/platform-tools/adb.exe /mnt/c/Users/<user>/AppData/Local/Android/sdk/platform-tools/adb
Reasons:
  • Low length (0.5):
  • Has code block (-0.5):
  • User mentioned (1): @Guido
  • Low reputation (1):
Posted by: badr2001

79623045

Date: 2025-05-15 09:53:30
Score: 1
Natty:
Report link
management:
  tracing:
    enabled: true
    propagation:
      type: W3C

in your configuration tells Spring Boot with Micrometer and OpenTelemetry to automatically propagate the tracing context across services, including Feign client calls.

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

79623033

Date: 2025-05-15 09:47:28
Score: 3.5
Natty:
Report link

I want to know how do i pass a variable as a argument in a function

df[col_name] not in range(18,121) was wrong, as @Panagiotis Kanavos pointed out. A simpler method if you're not df['single'].between 18 and 120.all():`

In addition, if df['single'].isnull(): was the wrong value. .any() can be utilized.

Snippet:

df, meta = pyreadstat.read_sav("SL_2025.sav")

def single_check(single):
    if df['single'].isnull().any():
        print("Missing values")
    
    if not df['single'].between(18, 120).all():
        print("Range error")
    else:
        print("Data is correct")

You can pass a variable as a argument in a function.

single_check(df['hCurrAge'])

Reasons:
  • Blacklisted phrase (1): how do i
  • Blacklisted phrase (1): I want to know
  • RegEx Blacklisted phrase (1): I want
  • Long answer (-0.5):
  • Has code block (-0.5):
  • User mentioned (1): @Panagiotis
  • Low reputation (0.5):
Posted by: Adios Gringo

79623030

Date: 2025-05-15 09:46:28
Score: 3.5
Natty:
Report link

I found the problem: Flux CD was reconfiguring the deployment every X minutes, causing KEDA to scale down to zero the number of replicas and restart from scratch.

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

79623019

Date: 2025-05-15 09:39:26
Score: 2
Natty:
Report link

Try this az webapp create --resource-group MyResourceGroup --plan MyAppServicePlan --name MyAppName --runtime NODE:16-lts

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

79623008

Date: 2025-05-15 09:31:24
Score: 1
Natty:
Report link
/*
 *      random_uint64.c
 */

#include <stdlib.h>
#include <stdint.h>

uint64_t
random_uint64()
{
        return( (uint64_t)random( ) ^ ( (uint64_t)random( ) << 17 ) ^ ( (uint64_t)random( ) << 33 ) );
}
Reasons:
  • Low length (0.5):
  • Has code block (-0.5):
  • Low reputation (1):
Posted by: Rogier van de Pol

79623006

Date: 2025-05-15 09:30:23
Score: 2
Natty:
Report link

🧠 Problem: Your JavaScript code uses $(...) and .click(...), which means it's using jQuery. But you didn't add a tag to load jQuery, so the browser doesn't understand $.

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

79623004

Date: 2025-05-15 09:30:23
Score: 3
Natty:
Report link

I can answer for your first question, you can set up playwright tracer and they are as good as html report if not better.Tracers

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