79537192

Date: 2025-03-26 20:23:15
Score: 7.5
Natty: 7.5
Report link

@Mian Saeed Akbar

This is very useful, thanks. Will it always (in any graph) give the optimal/minimal weight of any path?

Reasons:
  • Blacklisted phrase (0.5): thanks
  • Low length (1):
  • No code block (0.5):
  • Ends in question mark (2):
  • Unregistered user (0.5):
  • User mentioned (1): @Mian
  • Looks like a comment (1):
  • Low reputation (1):
Posted by: user30072487

79537171

Date: 2025-03-26 20:09:11
Score: 6.5 🚩
Natty: 6
Report link

Please what was the answer? Thank you

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

79537116

Date: 2025-03-26 19:43:05
Score: 7 🚩
Natty: 5
Report link

I want to implement the same for my application. Could you show code snippet to see how did you implement with save_object() and renderImage()? Will be very useful.

Thanks!

Reasons:
  • Blacklisted phrase (0.5): Thanks
  • RegEx Blacklisted phrase (2.5): Could you show code
  • RegEx Blacklisted phrase (1): I want
  • Low length (1):
  • No code block (0.5):
  • Contains question mark (0.5):
  • Low reputation (1):
Posted by: Praveen

79537100

Date: 2025-03-26 19:38:03
Score: 4
Natty: 4
Report link

DDB Streams now supports PrivateLink

https://docs.aws.amazon.com/amazondynamodb/latest/developerguide/privatelink-streams.html

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

79537081

Date: 2025-03-26 19:26:01
Score: 4
Natty:
Report link

The solution was to use a Nested Scroll View, instead of a regular scroll view.

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

79537061

Date: 2025-03-26 19:17:58
Score: 12
Natty: 7
Report link

did you solve this issue? im facing the same question rn

Reasons:
  • RegEx Blacklisted phrase (3): did you solve this
  • RegEx Blacklisted phrase (1.5): solve this issue?
  • Low length (1.5):
  • No code block (0.5):
  • Me too answer (2.5): facing the same question
  • Contains question mark (0.5):
  • Unregistered user (0.5):
  • Single line (0.5):
  • Starts with a question (0.5): did you solve this is
  • Low reputation (1):
Posted by: Felipe

79537025

Date: 2025-03-26 18:59:53
Score: 6 🚩
Natty: 5.5
Report link

which dependencies did you have to download manually?

Reasons:
  • Low length (1.5):
  • No code block (0.5):
  • Ends in question mark (2):
  • Single line (0.5):
  • Starts with a question (0.5): which
  • Low reputation (1):
Posted by: Henrique Avati

79537018

Date: 2025-03-26 18:56:52
Score: 11.5 🚩
Natty:
Report link

@LMC by cropping, I meant, cutting a fragment of an image and saving as another file. So, for example

img[500:1500, 500:1500]

would give an image from 500th to 1500th pixel "vertically" and from 500th to 1500th pixel "horizontally".

@Konstantin Makarov there are two issues with your codes (both not working for me):

  1. I want to save an image as .dcm file, not .png. The reason why I need a cropped dcm file is because I got many layers from the scanner, each in the different resolutions; and I need them in the same resolution in order to be able to read them in the segmentation program, as ITKSnap or 3DSlicer.
  2. As far as I understand your codes, you assumed that I got one .dcm file with many layers - this is not true for me, I got separate files for the each layer. I mean, each layer is lets say in (x,y) coordinates, and the next layer is some distance (in z direction) from the previous one.
    Could you please edit the code, given the above clarification?
@etauger I got numpy. Your code doesnt work for me. It gives an error for the last line of code (saving file). The error is below:
"C:\Program Files\Python\Python313\python.exe" D:\praca\GUMED\serce\testy2.py 
Traceback (most recent call last):
  File "C:\Users\marci\AppData\Roaming\Python\Python313\site-packages\pydicom\tag.py", line 29, in tag_in_exception
    yield
  File "C:\Users\marci\AppData\Roaming\Python\Python313\site-packages\pydicom\filewriter.py", line 826, in write_dataset
    write_data_element(fp, get_item(tag), dataset_encoding)
    ~~~~~~~~~~~~~~~~~~^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
  File "C:\Users\marci\AppData\Roaming\Python\Python313\site-packages\pydicom\filewriter.py", line 686, in write_data_element
    raise ValueError(
    ...<3 lines>...
    )
ValueError: The (7FE0,0010) 'Pixel Data' element value hasn't been encapsulated as required for a compressed transfer syntax - see pydicom.encaps.encapsulate() for more information

The above exception was the direct cause of the following exception:

Traceback (most recent call last):
  File "D:\praca\GUMED\serce\testy2.py", line 10, in <module>
    ds.save_as(r"D:\praca\GUMED\dicom\mrxs\1_AORTA\AO_1_014_Masson\3_0-test-cropping.dcm")
    ~~~~~~~~~~^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
  File "C:\Users\marci\AppData\Roaming\Python\Python313\site-packages\pydicom\dataset.py", line 2642, in save_as
    pydicom.dcmwrite(
    ~~~~~~~~~~~~~~~~^
        filename,
        ^^^^^^^^^
    ...<6 lines>...
        **kwargs,
        ^^^^^^^^^
    )
    ^
  File "C:\Users\marci\AppData\Roaming\Python\Python313\site-packages\pydicom\filewriter.py", line 1455, in dcmwrite
    write_dataset(fp, dataset)
    ~~~~~~~~~~~~~^^^^^^^^^^^^^
  File "C:\Users\marci\AppData\Roaming\Python\Python313\site-packages\pydicom\filewriter.py", line 825, in write_dataset
    with tag_in_exception(tag):
         ~~~~~~~~~~~~~~~~^^^^^
  File "C:\Program Files\Python\Python313\Lib\contextlib.py", line 162, in __exit__
    self.gen.throw(value)
    ~~~~~~~~~~~~~~^^^^^^^
  File "C:\Users\marci\AppData\Roaming\Python\Python313\site-packages\pydicom\tag.py", line 33, in tag_in_exception
    raise type(exc)(msg) from exc
ValueError: With tag (7FE0,0010) got exception: The (7FE0,0010) 'Pixel Data' element value hasn't been encapsulated as required for a compressed transfer syntax - see pydicom.encaps.encapsulate() for more information
Traceback (most recent call last):
  File "C:\Users\marci\AppData\Roaming\Python\Python313\site-packages\pydicom\tag.py", line 29, in tag_in_exception
    yield
  File "C:\Users\marci\AppData\Roaming\Python\Python313\site-packages\pydicom\filewriter.py", line 826, in write_dataset
    write_data_element(fp, get_item(tag), dataset_encoding)
    ~~~~~~~~~~~~~~~~~~^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
  File "C:\Users\marci\AppData\Roaming\Python\Python313\site-packages\pydicom\filewriter.py", line 686, in write_data_element
    raise ValueError(
    ...<3 lines>...
    )
ValueError: The (7FE0,0010) 'Pixel Data' element value hasn't been encapsulated as required for a compressed transfer syntax - see pydicom.encaps.encapsulate() for more information


Process finished with exit code 1
Reasons:
  • Blacklisted phrase (0.5): I need
  • Blacklisted phrase (1): doesnt work
  • RegEx Blacklisted phrase (1): I want
  • RegEx Blacklisted phrase (3): not working for me
  • RegEx Blacklisted phrase (2): doesnt work for me
  • Long answer (-1):
  • Has code block (-0.5):
  • Ends in question mark (2):
  • User mentioned (1): @LMC
  • User mentioned (0): @Konstantin
  • Self-answer (0.5):
  • Looks like a comment (1):
  • Low reputation (1):
Posted by: Marcin Nowak

79537006

Date: 2025-03-26 18:49:50
Score: 10 🚩
Natty: 5
Report link

Im still facing the same error and I've followed all the suggested answers, and no avail. I've added the PHP version to my linter.yml file which matches my composer version, and Im still getting the same error. Any help is appreciated!

2025-03-26 18:40:10 [FATAL] Failed to run composer install for /github/workspace. Output: Your lock file does not contain a compatible set of packages. Please run composer update.

Reasons:
  • Blacklisted phrase (1): appreciated
  • Blacklisted phrase (1): Any help
  • RegEx Blacklisted phrase (3): Any help is appreciated
  • RegEx Blacklisted phrase (1): Im still facing the same error
  • RegEx Blacklisted phrase (1): Im still getting the same error
  • Has code block (-0.5):
  • Me too answer (2.5): facing the same error
  • Me too answer (0): getting the same error
  • Low reputation (1):
Posted by: Mohsen Mahmoud

79536960

Date: 2025-03-26 18:28:45
Score: 4
Natty: 5
Report link

OJDBC Extensions: https://github.com/oracle/ojdbc-extensions/tree/main Help you set your credentials in Azure Key Vault with no code change (though you need to add the jar dependencies). https://blogs.oracle.com/developers/post/jdbc-config-providers

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

79536943

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

i am facing another type of problem

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

79536890

Date: 2025-03-26 18:07:38
Score: 8.5 🚩
Natty:
Report link

Can you show the routes using the php bin/console debug:router command?

Reasons:
  • RegEx Blacklisted phrase (2.5): Can you show
  • Low length (1.5):
  • No code block (0.5):
  • Ends in question mark (2):
  • Single line (0.5):
  • Starts with a question (0.5): Can you
  • Low reputation (1):
Posted by: TieneN10

79536839

Date: 2025-03-26 17:48:33
Score: 4.5
Natty:
Report link

FortniteBattlePass+LebronEdits+LunchlyIsMyFavorite

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

79536798

Date: 2025-03-26 17:31:29
Score: 4
Natty:
Report link

Well when you're using FormData to submit your receipt with images, the request.body is getting processed differently than with regular JSON payloads, causing your permission guard to not properly access the employee credentials.

The main problem is that when using FileFieldsInterceptor or any file upload interceptors, the form data fields are parsed differently. Your guard is trying to destructure employeeCode and employeePassword directly from request.body, but with multipart/form-data, these might be coming in as strings rather than as part of a JSON object.

import {
  CanActivate,
  ExecutionContext,
  ForbiddenException,
  Injectable,
  UnauthorizedException,
} from '@nestjs/common'
import { PrismaService } from '../prisma/prisma.service'
import { PermissionEnum } from '@prisma/client'
import { Reflector } from '@nestjs/core'
import { compare } from 'bcryptjs'

@Injectable()
export class PermissionGuard implements CanActivate {
  constructor(
    private prisma: PrismaService,
    private reflector: Reflector,
  ) {}

  async canActivate(context: ExecutionContext): Promise<boolean> {
    const requiredPermission = this.reflector.get<PermissionEnum>(
      'permission',
      context.getHandler(),
    )

    if (!requiredPermission) {
      return true
    }

    const request = context.switchToHttp().getRequest()
    const tokenId = request.user?.sub
    const isCompany = request.user?.pharmacy
    
    // Handle both JSON and FormData formats
    let employeeCode, employeePassword
    
    if (request.body) {
      // Handle FormData - values will be strings
      employeeCode = request.body.employeeCode || request.body.employee_code
      employeePassword = request.body.employeePassword || request.body.employee_password
    }

    if (!tokenId) {
      throw new UnauthorizedException('User not authenticated')
    }

    let permissions: PermissionEnum[] = []

    if (isCompany) {
      // If company login, we need employee validation
      if (!employeeCode || !employeePassword) {
        throw new UnauthorizedException({
          statusText: 'unauthorized',
          message: 'Employee credentials required',
        })
      }

      const company = await this.prisma.company.findFirst({
        where: { id: tokenId },
        include: {
          employees: true,
        },
      })

      if (!company) {
        throw new UnauthorizedException({
          statusText: 'unauthorized',
          message: 'Farmácia não encontrada',
        })
      }

      const employee = company.employees.find(
        (employee) => employee.code === employeeCode,
      )

      if (!employee) {
        throw new UnauthorizedException({
          statusText: 'unauthorized',
          message: 'Funcionário não encontrado',
        })
      }

      const isPasswordValid = await compare(employeePassword, employee.password)

      if (!isPasswordValid) {
        throw new UnauthorizedException({
          statusText: 'unauthorized',
          message: 'Credenciais incorretas',
        })
      }

      permissions = employee.permissions
    } else {
      const user = await this.prisma.user.findFirst({
        where: {
          id: tokenId,
        },
      })

      if (!user) {
        throw new UnauthorizedException({
          statusText: 'unauthorized',
          message: 'User not found',
        })
      }

      const pharmacy = user?.pharmacies[0]?.pharmacy
      if (!pharmacy) {
        throw new UnauthorizedException({
          statusText: 'unauthorized',
          message: 'Company not encontrada',
        })
      }

      permissions = user.pharmaceutical.permissions
    }

    const hasPermission = permissions.some(
      (perm) => perm === requiredPermission,
    )

    if (!hasPermission) {
      throw new ForbiddenException(`Does not have the required permission: ${requiredPermission}`)
    }

    return true
  }
}

Key changes I made to fix your issue:

  1. More flexible field parsing: The updated guard now checks for different possible field names (employeeCode/employee_code) since form fields are sometimes sent with underscores.

  2. Null checking: Added validation to ensure the employee credentials are present when company login is detected.

  3. Better error handling: More descriptive error messages to help debug authentication issues.

  4. Safe property access: Added optional chaining in the user pharmacy access to avoid potential undefined errors.

If you're still having issues, you could also consider implementing a custom middleware specifically for handling employee authentication in FormData requests, which would run before your guard and populate request.body with the parsed credentials.

Reasons:
  • Blacklisted phrase (1): não
  • RegEx Blacklisted phrase (2): encontrada
  • RegEx Blacklisted phrase (2): encontrado
  • Long answer (-1):
  • Has code block (-0.5):
  • Low reputation (0.5):
Posted by: Ayodeji Erinfolami

79536788

Date: 2025-03-26 17:28:28
Score: 5.5
Natty: 4.5
Report link

Whereas i need an output as show below. Any suggestions on the fastest method, without using loop?

    in_column  out_column
0   5           1
1   5           2
2   5           3
3   8           1
4   13          1
5   13          2
6   13          3
7   13          4
8   13          5
Reasons:
  • Blacklisted phrase (0.5): i need
  • RegEx Blacklisted phrase (2): Any suggestions
  • Low length (0.5):
  • Has code block (-0.5):
  • Ends in question mark (2):
  • Low reputation (1):
Posted by: Vishal Narsinghani

79536767

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

This might be helpful. Works with Notebooks as well.

https://community.fabric.microsoft.com/t5/Data-Pipeline/Move-pipelines-objects-between-workspaces/m-p/4027112

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

79536684

Date: 2025-03-26 16:44:16
Score: 4
Natty: 4
Report link

This seems to be caused, according to my personal experience, by a schema conflict. YMMV.

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

79536645

Date: 2025-03-26 14:00:36
Score: 11 🚩
Natty: 6
Report link

were you able to solve this? I am facing a similar issue with servereless pyspark. It's just that I am reading a path in a zip file passed through --archives using a Java code that runs through a JAR provided using --jars file

Reasons:
  • Blacklisted phrase (1): you able to solve
  • RegEx Blacklisted phrase (1.5): solve this?
  • RegEx Blacklisted phrase (3): were you able
  • Low length (0.5):
  • No code block (0.5):
  • Me too answer (2.5): I am facing a similar issue
  • Contains question mark (0.5):
  • Single line (0.5):
  • Low reputation (1):
Posted by: Akshay

79536619

Date: 2025-03-26 13:53:33
Score: 13.5 🚩
Natty: 5.5
Report link

Did you find a solution to this issue? If so, how did you resolve it?

Reasons:
  • RegEx Blacklisted phrase (3): Did you find a solution to this
  • RegEx Blacklisted phrase (3): did you resolve it
  • RegEx Blacklisted phrase (1.5): resolve it?
  • Low length (1.5):
  • No code block (0.5):
  • Ends in question mark (2):
  • Single line (0.5):
  • Starts with a question (0.5): Did you find a solution to this is
  • Low reputation (1):
Posted by: Anas_LA

79536605

Date: 2025-03-26 13:45:31
Score: 5
Natty: 6
Report link

This is such a clear answer! I created an account just to say thank you!

It seems that QtCreator can be a little less than ... intuitive?

Reasons:
  • Blacklisted phrase (0.5): thank you
  • Low length (1):
  • No code block (0.5):
  • Ends in question mark (2):
  • Low reputation (1):
Posted by: Grant_H

79536587

Date: 2025-03-26 13:40:29
Score: 4.5
Natty:
Report link

can't separate by semicolons as I want output plots in the notebook. it is so typical of computer or software responses. a guy asks a question, and no one gives a direct answer. instead, the guy gets a lecture on some view of how the world should be.

Reasons:
  • RegEx Blacklisted phrase (1): I want
  • Low length (0.5):
  • No code block (0.5):
  • Unregistered user (0.5):
  • Single line (0.5):
  • Starts with a question (0.5): can't
  • Low reputation (1):
Posted by: arby111

79536555

Date: 2025-03-26 13:28:25
Score: 5
Natty: 5
Report link

Do you remember, that you must use different "apiKey"/"secrets" sets for demo-treading and real-trading mode?

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

79536448

Date: 2025-03-26 12:47:14
Score: 4.5
Natty:
Report link

Thank you very much - that is exactly what I was looking for.

Reasons:
  • Blacklisted phrase (0.5): Thank you
  • Low length (1.5):
  • No code block (0.5):
  • Self-answer (0.5):
  • Single line (0.5):
  • Low reputation (1):
Posted by: speedyGonzalessz

79536442

Date: 2025-03-26 12:46:14
Score: 7 🚩
Natty: 6
Report link

Any update on this? Having exactly the same issue...

Reasons:
  • Blacklisted phrase (1): update on this
  • Low length (1.5):
  • No code block (0.5):
  • Me too answer (2.5): Having exactly the same issue
  • Contains question mark (0.5):
  • Single line (0.5):
  • Low reputation (0.5):
Posted by: whiteBear22

79536411

Date: 2025-03-26 12:36:10
Score: 6.5 🚩
Natty: 6
Report link

Why not use ODBC insted of jdbc?

Reasons:
  • Low length (2):
  • No code block (0.5):
  • Ends in question mark (2):
  • Single line (0.5):
  • Starts with a question (0.5): Why not use
  • Low reputation (1):
Posted by: KM-Data

79536408

Date: 2025-03-26 12:35:09
Score: 8.5 🚩
Natty: 6
Report link

Just checking if you got any solution for this.. Please share if you found one. Thanks

Reasons:
  • Blacklisted phrase (0.5): Thanks
  • Blacklisted phrase (1.5): any solution
  • RegEx Blacklisted phrase (2.5): Please share
  • Low length (1.5):
  • No code block (0.5):
  • Unregistered user (0.5):
  • Single line (0.5):
  • Low reputation (1):
Posted by: Prabha

79536324

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

The Solution i found working is to remove the connections of OpenGIS and add conda and place conda on top for the python bindings, currently conda works but to connect with geoserver i need to add the PYNOPATH variable manually everytime and delete it when i want to use normal python installed in the windows for daily tasks.

Reasons:
  • Blacklisted phrase (0.5): i need
  • RegEx Blacklisted phrase (1): i want
  • No code block (0.5):
  • Self-answer (0.5):
  • Single line (0.5):
  • Low reputation (1):
Posted by: Rupesh Kumar Yadav Mediboyina

79536267

Date: 2025-03-26 11:37:55
Score: 4
Natty:
Report link

I am also looking for the same information.

I am trying to convert the following HF model https://huggingface.co/nickypro/tinyllama-15M/tree/main tokenizer.json into tokenizer.model inorder to run Karpathy's llama2.c - https://github.com/karpathy/llama2.c/blob/master/doc/train_llama_tokenizer.md.

I tried the following steps:

1. Extract vocabulary from tokenizer.json
2. Train the sentencepiece tokenizer using spm_train with the extracted vocabulary (vocab_size = 32000). This generates tokenizer.model
3. Use tokenizer.py to convert the tokenizer.model to tokenizer.bin.

Even though the above steps were successful, the inference resulted in gibberish. I assume this has something to do with the tokenizer.model that was generated. If anyone could assist with this, it would be really helpful.

@user2741831

Reasons:
  • Blacklisted phrase (1): I am trying to
  • Blacklisted phrase (2): I am also looking
  • Long answer (-0.5):
  • No code block (0.5):
  • Low reputation (1):
Posted by: Neetha Jyothish

79536265

Date: 2025-03-26 11:36:54
Score: 5
Natty:
Report link

Yes i connected. now i want to connect the mysql database in the live server . i have ip but the error will come

org.hibernate.exception.JDBCConnectionException: unable to obtain isolated JDBC connection [Communications link failure

please give the solution ..

my application.properties

# Application Name

spring.application.name=product

# Remote Database Configuration

spring.datasource.url=jdbc:mysql://My_IP:3306/test

spring.datasource.username=root

spring.datasource.password=my_password

spring.datasource.driver-class-name=com.mysql.cj.jdbc.Driver

# Hibernate & JPA Settings

spring.jpa.hibernate.ddl-auto=update

spring.jpa.show-sql=true

spring.jpa.database-platform=org.hibernate.dialect.MySQL8Dialect

Reasons:
  • RegEx Blacklisted phrase (2.5): please give the solution
  • RegEx Blacklisted phrase (1): i want
  • Long answer (-0.5):
  • No code block (0.5):
  • Self-answer (0.5):
  • Low reputation (1):
Posted by: Bharath m

79536232

Date: 2025-03-26 11:22:51
Score: 4
Natty: 4.5
Report link

https://gist.githubusercontent.com/bbaranoff/ba4df362e74329094828eb72bf244b64/raw/46148f76fbec12d65c0ef500bdbd10400a0dc846/tea1_opencl_crack.py

Works with RTX 4090 and i9 14HX don't know for others

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

79536220

Date: 2025-03-26 11:14:49
Score: 4.5
Natty: 5
Report link

Another option is to open that file with tools like https://app.packetsafari.com/ or https://www.qacafe.com/analysis-tools/cloudshark/

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

79536092

Date: 2025-03-26 10:24:36
Score: 5
Natty:
Report link

I've created a video that explain a way around this, let me know if this helps

https://www.youtube.com/watch?v=wu7APicI8FM&t=7s

Reasons:
  • Blacklisted phrase (1): youtube.com
  • Probably link only (1):
  • Low length (1.5):
  • No code block (0.5):
  • Low reputation (1):
Posted by: sheddyranking

79536078

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

For embedded systems, that have limited resources, installing a package manager could be not convenient.
Do you have the toolchain that was used to cross compile Linux for your machine?
If this is the case, I would recommend you to build Mosquitto inside it, so that you find it integrated in your system, hopefully without compatibility problems.

Reasons:
  • RegEx Blacklisted phrase (2.5): Do you have the
  • No code block (0.5):
  • Contains question mark (0.5):
  • Low reputation (0.5):
Posted by: Tex76

79536077

Date: 2025-03-26 10:19:34
Score: 8 🚩
Natty: 5.5
Report link

Is the above mentioned issue resolved?

Reasons:
  • RegEx Blacklisted phrase (1.5): resolved?
  • Low length (2):
  • No code block (0.5):
  • Ends in question mark (2):
  • Single line (0.5):
  • Starts with a question (0.5): Is the
  • Low reputation (1):
Posted by: Manali Shah

79536073

Date: 2025-03-26 10:18:33
Score: 8.5
Natty: 7
Report link

Where you able to show the line items content in your Accepted Host Payment Form. If yes could you tell me what your method was? Thanks

Reasons:
  • Blacklisted phrase (0.5): Thanks
  • RegEx Blacklisted phrase (2.5): could you tell me what your
  • Low length (1):
  • No code block (0.5):
  • Ends in question mark (2):
  • Single line (0.5):
  • Starts with a question (0.5): Where you
  • Low reputation (1):
Posted by: Milan K Jain

79536038

Date: 2025-03-26 10:10:31
Score: 4
Natty: 5.5
Report link

Hshshshbbdbdbdbdbbdbdbdbdjdurjrbdbxbdbbdhdd

Reasons:
  • Low length (1.5):
  • No code block (0.5):
  • Has no white space (0.5):
  • Single line (0.5):
  • Low reputation (1):
Posted by: Bonta Dc

79536026

Date: 2025-03-26 10:08:30
Score: 10.5 🚩
Natty: 5
Report link

did you ever found a solution for this? Facing the same issue.

Reasons:
  • RegEx Blacklisted phrase (3): did you ever found a solution
  • Low length (1.5):
  • No code block (0.5):
  • Me too answer (2.5): Facing the same issue
  • Contains question mark (0.5):
  • Unregistered user (0.5):
  • Single line (0.5):
  • Starts with a question (0.5): did you
  • Low reputation (1):
Posted by: Kivas

79536019

Date: 2025-03-26 10:05:29
Score: 4
Natty:
Report link

well I just checked your code and it works fine. maybe you have some error including style.css file? it should be located in "css/style.css" directory.

here is a modal window

and here is the structure you need to make it all work

Reasons:
  • Probably link only (1):
  • Low length (1):
  • No code block (0.5):
  • Contains question mark (0.5):
  • Low reputation (1):
Posted by: Arman Martirosyan

79535965

Date: 2025-03-26 09:47:23
Score: 6 🚩
Natty: 4
Report link

sfsdfsdfsdf fsdfsd dfsdf sdfsdfsdf

Reasons:
  • Low length (2):
  • No 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: asdasd

79535935

Date: 2025-03-26 09:33:19
Score: 7.5 🚩
Natty: 5.5
Report link

Is the above mentioned problem resolved?

Reasons:
  • RegEx Blacklisted phrase (1.5): resolved?
  • Low length (1.5):
  • No code block (0.5):
  • Ends in question mark (2):
  • Single line (0.5):
  • Starts with a question (0.5): Is the
  • Low reputation (1):
Posted by: Manali Shah

79535925

Date: 2025-03-26 09:31:18
Score: 4.5
Natty:
Report link

try use options("htmltools.preserve.raw" = FALSE) , found it here https://github.com/rstudio/gt/pull/1800

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

79535911

Date: 2025-03-26 09:24:16
Score: 5
Natty:
Report link

Mirth Connect 4.5.2 officially supports only JDK 17 4.5.2 What's New · nextgenhealthcare/connect Wiki

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

79535866

Date: 2025-03-26 09:04:11
Score: 5
Natty: 5
Report link

some works during removeShard can occur some temporary error accordinging to mongodb's JIRA ISSUES. I assume that it's case like that. and actually i want to know full logs

Reasons:
  • Blacklisted phrase (1): i want to know
  • RegEx Blacklisted phrase (1): i want
  • Low length (1):
  • No code block (0.5):
  • Single line (0.5):
  • Low reputation (1):
Posted by: DGun

79535848

Date: 2025-03-26 08:56:08
Score: 9 🚩
Natty: 4.5
Report link

Has someone fix this? I have the same issue

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

79535758

Date: 2025-03-26 08:17:59
Score: 12
Natty: 7
Report link

I have the same problem. I restart the machine, it works and stops working again next day. Any solution?

Reasons:
  • Blacklisted phrase (1): I have the same problem
  • Blacklisted phrase (1.5): Any solution
  • RegEx Blacklisted phrase (2): Any 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: Rajeev

79535724

Date: 2025-03-26 07:57:53
Score: 6 🚩
Natty:
Report link

enter image description here

this is show_gids output

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: Jack Cheng

79535710

Date: 2025-03-26 07:49:51
Score: 5
Natty:
Report link

There is a typo in the link u provided.

enter image description here

@florencia-cames

Reasons:
  • Blacklisted phrase (1): enter image description here
  • Low length (1.5):
  • No code block (0.5):
  • User mentioned (1): @florencia-cames
  • Low reputation (1):
Posted by: Shoueb Ahmed

79535701

Date: 2025-03-26 07:43:49
Score: 6 🚩
Natty: 5.5
Report link

This happened to us as well, we didn't find a proper solution so we ended up uploading the data by parts. If you found a solution could you please share it with us?
I don't have enough karma to write a comment, thats why I post it here.

Reasons:
  • Blacklisted phrase (1): If you found a solution
  • RegEx Blacklisted phrase (2.5): could you please share
  • Low length (0.5):
  • No code block (0.5):
  • Contains question mark (0.5):
  • Low reputation (1):
Posted by: apiuser

79535700

Date: 2025-03-26 07:42:49
Score: 4
Natty:
Report link

So , I am trying the same thing and got stuck because all the messages are dynamic, and I cannot find any appropriate selector to do the task we want, so just use my trick
Step 1 - Get your driver window where all the messages are displayed
Step 2 - Get the screenshot of the whole driver with the following code snippet
driver.save_screenshot("screenshot.png")
Step 3 - Now take that screenshot and open it with the paint and take the dimensions, which will be used further to crop out the required messages using the pillow module
Step 4 - in the last step, just extract the text of the cropped screenshot and print it in your console

Reasons:
  • Blacklisted phrase (1): I am trying the same
  • Blacklisted phrase (1.5): I cannot find
  • Blacklisted phrase (0.5): I cannot
  • Long answer (-0.5):
  • No code block (0.5):
  • Low reputation (1):
Posted by: Cosmic Entity

79535689

Date: 2025-03-26 07:34:46
Score: 7 🚩
Natty:
Report link

Any please answer this question i am facing the same issue

Failed to create session. An unknown server-side error occurred while processing the command. Original error: Cannot connect to the Dart Observatory URL ws://127.0.0.1:41443/fdfg2c_T-Dw=/ws. Check the server log for more details

Reasons:
  • RegEx Blacklisted phrase (2.5): please answer
  • 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: zohaib rana

79535634

Date: 2025-03-26 07:03:39
Score: 16.5
Natty: 8.5
Report link

Did you solve your problem ??? I get the same issue? Can you share your solution please?

Reasons:
  • Blacklisted phrase (1): ???
  • RegEx Blacklisted phrase (2.5): Can you share your solution
  • RegEx Blacklisted phrase (3): Did you solve your problem
  • RegEx Blacklisted phrase (1.5): solve your problem ???
  • Low length (1.5):
  • No code block (0.5):
  • Me too answer (2.5): I get the same issue
  • Ends in question mark (2):
  • Single line (0.5):
  • Starts with a question (0.5): Did you solve you
  • Low reputation (1):
Posted by: Christodoulos Zacharia

79535628

Date: 2025-03-26 07:02:37
Score: 7.5 🚩
Natty: 4.5
Report link

Did you get the answer for "What is the best way (or the industry standard) to enforce a particular sign convention for the eigenvectors?"

Reasons:
  • RegEx Blacklisted phrase (3): Did you get the answer
  • Low length (1):
  • No code block (0.5):
  • Contains question mark (0.5):
  • Unregistered user (0.5):
  • Single line (0.5):
  • Starts with a question (0.5): Did you
  • Low reputation (1):
Posted by: jyoti

79535597

Date: 2025-03-26 06:48:34
Score: 4
Natty: 4
Report link

Enable auto_ingest=true while creating pipe

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

79535511

Date: 2025-03-26 06:02:24
Score: 4
Natty:
Report link

Ok, I understood I just had to "yarn build" the package :) Sorry, question closed.

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

79535463

Date: 2025-03-26 05:31:17
Score: 4.5
Natty: 4.5
Report link

is this true? Google map still not showing in Android app

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): is this
  • Low reputation (1):
Posted by: ToXSL Technologies

79535427

Date: 2025-03-26 04:51:10
Score: 6 🚩
Natty: 5.5
Report link

how do we take the input in marks as an user?

Reasons:
  • Low length (1.5):
  • No code block (0.5):
  • Ends in question mark (2):
  • Single line (0.5):
  • Starts with a question (0.5): how do we
  • Low reputation (1):
Posted by: Saatyak Srivastav

79535413

Date: 2025-03-26 04:38:06
Score: 6.5 🚩
Natty: 5.5
Report link

related to this....

how to turn on like for example http://www.example.com/\~username etc?

Reasons:
  • Probably link only (1):
  • Low length (1.5):
  • No code block (0.5):
  • Ends in question mark (2):
  • Unregistered user (0.5):
  • Low reputation (1):
Posted by: Internetking

79535380

Date: 2025-03-26 04:18:02
Score: 8.5 🚩
Natty:
Report link

I am having the issue, please help!

Reasons:
  • RegEx Blacklisted phrase (3): please help
  • RegEx Blacklisted phrase (1): I am having the issue, please
  • Low length (2):
  • No code block (0.5):
  • Unregistered user (0.5):
  • Single line (0.5):
  • Low reputation (1):
Posted by: Danny S.

79535345

Date: 2025-03-26 03:45:56
Score: 4
Natty:
Report link

Updating docker fixed this for me.

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

79535216

Date: 2025-03-26 01:33:30
Score: 4
Natty:
Report link
  1. https://vt.tiktok.com/ZSr8Qt1wq/
header 1 header 2
cell 1 cell 2
cell 3 cell 4 8
Reasons:
  • Probably link only (1):
  • Low length (1.5):
  • No code block (0.5):
  • Low reputation (1):
Posted by: Muhammad Hasnain

79535173

Date: 2025-03-26 00:50:20
Score: 6.5 🚩
Natty: 4.5
Report link

ช่วยเป็นพยานในชั้นศาลของสหราชอณาจักร และ ศาลสหภาพยุโรปและศาลรัฐบาลกลางสหรัฐอเมริกา ว่ามีการปลอมแปลงและเปลี่ยนแปลงข้อมูลในการส่งและรับของระบบต่างๆในการเข้าใช้บัญชีภายใต้ชื่อ(นาย อนุรักษ์ ศรีจันทรา)ด้วยครับ "องค์กรสเเต็ค"ขอบพระคุณอย่างสูงครับ

Reasons:
  • Contains signature (1):
  • Low length (0.5):
  • No code block (0.5):
  • No latin characters (3.5):
  • Low reputation (1):
Posted by: อนุรักษ์ ศรีจันทรา

79535118

Date: 2025-03-26 00:07:11
Score: 8.5 🚩
Natty:
Report link

Hi did you solve this issue, i am experiencing the same?

i would appreciate any help

Reasons:
  • Blacklisted phrase (1): any help
  • Blacklisted phrase (1.5): would appreciate
  • RegEx Blacklisted phrase (3): did you solve this
  • Low length (1.5):
  • No code block (0.5):
  • Contains question mark (0.5):
  • Low reputation (0.5):
Posted by: inly

79535108

Date: 2025-03-25 23:57:08
Score: 7 🚩
Natty: 5.5
Report link

sorry to bump an old thread, but this is driving me mad. do you have any idea how to remove this orange bar at the top of every embedded player, by any chance?

https://imgur.com/a/3B97ytF

Reasons:
  • RegEx Blacklisted phrase (2.5): do you have any
  • Low length (1):
  • No code block (0.5):
  • Ends in question mark (2):
  • Low reputation (1):
Posted by: user30062095

79534930

Date: 2025-03-25 21:42:39
Score: 9 🚩
Natty: 6.5
Report link

hey guys i really need your help. I've been trying to create an app instance for messaging on amazon chime sdk but I've never seen anything to lead me to achieve this. kindly help me guys on how to achieve this.

thanks.

Reasons:
  • Blacklisted phrase (0.5): thanks
  • Blacklisted phrase (1): help me
  • Blacklisted phrase (3): kindly help
  • Blacklisted phrase (1): how to achieve
  • RegEx Blacklisted phrase (1): hey guys
  • Low length (0.5):
  • No code block (0.5):
  • Unregistered user (0.5):
  • Low reputation (1):
Posted by: adebaba

79534926

Date: 2025-03-25 21:38:38
Score: 10
Natty: 8
Report link

Hey I'm trying to do the same. did you figure it out?

Reasons:
  • Blacklisted phrase (1): trying to do the same
  • RegEx Blacklisted phrase (3): did you figure it out
  • Low length (1.5):
  • No code block (0.5):
  • Ends in question mark (2):
  • Unregistered user (0.5):
  • Single line (0.5):
  • Low reputation (1):
Posted by: user30061307

79534860

Date: 2025-03-25 21:02:30
Score: 8 🚩
Natty:
Report link

any solution yet? I tried updating to kotlin 2.1 but then kapt starts crying and that leads to this other issue https://youtrack.jetbrains.com/issue/KT-68400/K2-w-Kapt-currently-doesnt-support-language-version-2.0.-Falling-back-to-1.9.

Reasons:
  • Blacklisted phrase (1.5): any solution
  • RegEx Blacklisted phrase (2): any solution yet?
  • Probably link only (1):
  • Low length (1):
  • No code block (0.5):
  • Contains question mark (0.5):
  • Single line (0.5):
  • Low reputation (1):
Posted by: Rocco

79534803

Date: 2025-03-25 20:36:23
Score: 5
Natty:
Report link

Please subscribe the .Net Core, Angular channel for tech queries and guidance

https://www.youtube.com/watch?v=xW1ntwvivmw

Reasons:
  • Blacklisted phrase (1): youtube.com
  • Probably link only (1):
  • Low length (1.5):
  • No code block (0.5):
  • Low reputation (1):
Posted by: Lkinfolab Ites

79534760

Date: 2025-03-25 20:17:18
Score: 4.5
Natty:
Report link

Thanks for sharing a sandbox! I removed some containers and height settings. The display flex is not useful and not needed here. I see now the banner and the table as full height. Was this your approach?

 <v-app>
    <v-main>
      <div style="height: 50px; background-color: black"></div>
      <v-container fluid>
        <UsersTable :items="users" />
      </v-container>
    </v-main>
  </v-app>
Reasons:
  • Blacklisted phrase (0.5): Thanks
  • Blacklisted phrase (2): Thanks for sharing
  • Has code block (-0.5):
  • Ends in question mark (2):
  • Low reputation (0.5):
Posted by: devnik

79534757

Date: 2025-03-25 20:16:18
Score: 4.5
Natty: 5
Report link

I think what you're looking for is described at https://www.jetbrains.com/help/idea/using-file-and-code-templates.html

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

79534725

Date: 2025-03-25 20:02:15
Score: 4.5
Natty:
Report link

You can simply pipe the first field into the field label of the second field using square brackets:

Is [preferred_name] over 12 years old?

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

79534693

Date: 2025-03-25 19:47:10
Score: 11.5 🚩
Natty: 4
Report link

Hey @mez did you have any luck with this? I am facing a similar issue, though my issue is downstream: getting Mapbox to accept a different raster-dem than its own.

Reasons:
  • Blacklisted phrase (1.5): any luck
  • RegEx Blacklisted phrase (3): did you have any luck
  • Low length (1):
  • No code block (0.5):
  • Me too answer (2.5): I am facing a similar issue
  • Contains question mark (0.5):
  • User mentioned (1): @mez
  • Single line (0.5):
  • Low reputation (1):
Posted by: Matt R.

79534618

Date: 2025-03-25 19:03:00
Score: 4.5
Natty:
Report link

do you use vite?

I use https://www.npmjs.com/package/vite-plugin-remove-console

// https://vitejs.dev/config/
export default defineConfig({
  plugins: [vue(), removeConsole()]
});
Reasons:
  • Probably link only (1):
  • Low length (1):
  • Has code block (-0.5):
  • Ends in question mark (2):
  • Low reputation (1):
Posted by: Oxicode

79534584

Date: 2025-03-25 18:40:54
Score: 4
Natty: 5
Report link

Do you still have the tutorial? I'm trying to find one but couldn't find a good one to follow

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

79534485

Date: 2025-03-25 17:54:43
Score: 7.5 🚩
Natty: 5
Report link

Did you find a solution ??I am doing the same thing and i really can't wrap around my head of how to do it ..................1127£77_7_+_+_+_+_+_++_+_++#(#!"++"+£+£+£+£+"+_++"+_+_+_+_++_+_!_+_!_+_!_!_!_+

Reasons:
  • RegEx Blacklisted phrase (3): Did you find a solution
  • Low length (0.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 solution
  • No latin characters (0.5):
  • Filler text (0.5): ..................
  • Low reputation (1):
Posted by: Giselle Dmello

79534479

Date: 2025-03-25 17:53:41
Score: 8 🚩
Natty:
Report link

did you get a solution for this? I am facing the exact same problem but unable to find a solution yet.. the problem is with using the RESt endpoints of keycloak for 2FA and not the browser flow.

With keycloak's forms(browser flow) its way too simpler but unable to implement 2FA using token generation thru rest endpoints of keycloak.

Kindly respond if you have figured out a way to do so

Reasons:
  • RegEx Blacklisted phrase (3): did you get a solution
  • No code block (0.5):
  • Me too answer (2.5): I am facing the exact same problem
  • Contains question mark (0.5):
  • Starts with a question (0.5): did you
  • Low reputation (1):
Posted by: aki a

79534412

Date: 2025-03-25 17:23:34
Score: 5.5
Natty: 5.5
Report link

In which file do I have to run the script?

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

79534299

Date: 2025-03-25 16:37:23
Score: 6 🚩
Natty:
Report link

Jaime Lopez, as Banno's client who is working with TruStage on this project, can I request a working session to help troubleshoot the issues that we're running into? Thank you.

Reasons:
  • Blacklisted phrase (0.5): Thank you
  • 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: Jamie Ethington

79534253

Date: 2025-03-25 16:15:18
Score: 11 🚩
Natty: 5.5
Report link

I'm having the same issue. Have you been able to resolve it?

Reasons:
  • Blacklisted phrase (1.5): Have you been able to
  • RegEx Blacklisted phrase (1.5): resolve it?
  • Low length (1.5):
  • No code block (0.5):
  • Me too answer (2.5): I'm having the same issue
  • Ends in question mark (2):
  • Single line (0.5):
  • Low reputation (1):
Posted by: Melleo

79534251

Date: 2025-03-25 16:14:17
Score: 4
Natty:
Report link

Wrapping all #Previews with #if DEBUG makes the project build again for AppStore Connect. Seems to be an issue with the sample data in the Preview Content folder, also see: https://stackoverflow.com/a/77646138/28960225

Thanks @Joakim!

Reasons:
  • Blacklisted phrase (0.5): Thanks
  • Blacklisted phrase (1): stackoverflow
  • Low length (0.5):
  • Has code block (-0.5):
  • User mentioned (1): @Joakim
  • Self-answer (0.5):
  • Low reputation (1):
Posted by: user28960225

79534184

Date: 2025-03-25 15:50:11
Score: 4
Natty: 4
Report link

In vue3.js
Same than as @Halfer I import VueReCaptcha in main.js.
Then in my component I give it a try.

SO I guess I need to verify if the token is available ?? How to do ? a post request to https://www.google.com/recaptcha/api/siteverify ?
see https://developers.google.com/recaptcha/docs/verify

 <template><button type="button" @click="recaptcha">reCAPTCHA</button></template>
<script>
export default {
  methods: {
    async recaptcha() {
      // (optional) Wait until recaptcha has been loaded.
      await this.$recaptchaLoaded();

      // Execute reCAPTCHA with action "login".
      const token = await this.$recaptcha('login');
      const data = {
        secret:'<my_secret_id>',
        response:token
      }
      
      // I guess I need to verify if the token is available ?? //
       const response = await fetch('https://developers.google.com/recaptcha/docs/verify',
        {
            method:'POST',
            body: JSON.stringify(data)
        });
       if (!response.success){ return; }

        // Go ahead with submission .... //

    },
   }
}
</script>
Reasons:
  • Blacklisted phrase (0.5): I need
  • Probably link only (1):
  • Long answer (-0.5):
  • Has code block (-0.5):
  • Ends in question mark (2):
  • User mentioned (1): @Halfer
  • Low reputation (0.5):
Posted by: Robert

79534130

Date: 2025-03-25 15:30:06
Score: 4.5
Natty:
Report link

Problem solved, the issue is related to the transformers dependency.

See: https://github.com/Blaizzy/mlx-vlm/issues/274

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

79534119

Date: 2025-03-25 15:23:04
Score: 11.5
Natty: 7.5
Report link

Thanks for your question as I have the same issues.

@Skin's answer works best when I need to extract only one item from an array. But in case I want to get a list of values such as [mv_something1, mv_something2...], what would be the feasible solution?

Reasons:
  • Blacklisted phrase (0.5): Thanks
  • Blacklisted phrase (0.5): I need
  • Blacklisted phrase (1): I have the same issue
  • RegEx Blacklisted phrase (1): I want
  • Low length (0.5):
  • No code block (0.5):
  • Me too answer (2.5): I have the same issue
  • Ends in question mark (2):
  • User mentioned (1): @Skin's
  • Looks like a comment (1):
  • Low reputation (1):
Posted by: Bao Nguyen

79534116

Date: 2025-03-25 15:20:03
Score: 5
Natty:
Report link

I don't have enough reputation to comment yet.
I want to add more on @BSSchwarzkopf response.

for VS2022, if you want to compare vice-versa (in opposite direction) you can't do that.
it will always compare older_branch vs newer_branch .
older_branch = branch that last commit date is earlier.
newer_branch = branch that last commit date is latest.
no matter what branch you checkout.

Reasons:
  • Blacklisted phrase (1): to comment
  • RegEx Blacklisted phrase (1.5): I don't have enough reputation to comment
  • RegEx Blacklisted phrase (1): I want
  • Has code block (-0.5):
  • User mentioned (1): @response
  • Low reputation (1):
Posted by: N. Wigi

79534114

Date: 2025-03-25 15:20:02
Score: 9 🚩
Natty: 5.5
Report link

Were you able to find the problem? I have the same problem with an Intel 13th Gen CPU... onboard graphics card (Intel)

Intel network card... but ESXi v7 starts!

But I also need v6.7... :-/

Reasons:
  • Blacklisted phrase (1): I have the same problem
  • RegEx Blacklisted phrase (3): Were you able
  • Low length (0.5):
  • No code block (0.5):
  • Me too answer (2.5): I have the same problem
  • Contains question mark (0.5):
  • Low reputation (1):
Posted by: chv

79534047

Date: 2025-03-25 14:55:56
Score: 4
Natty: 4.5
Report link

Any update regarding this? I saw that bug on the plugin repo is closed as invalid.

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

79533900

Date: 2025-03-25 14:05:44
Score: 5.5
Natty: 5
Report link

I have the same problem as yours, maybe try sim_residuals <- simulateResiduals(model_fitted,plot = T,n=>1) , try changing the n(number of simulations) as mentioned here (https://cran.r-project.org/web/packages/DHARMa/vignettes/DHARMa.html#general-remarks-on-interperting-residual-patterns-and-tests), additionally try adding dispersion model as well after checking plotResiduals(sim_residuals, data$pred1). Hope it helps.

Reasons:
  • Blacklisted phrase (1): I have the same problem
  • Whitelisted phrase (-1): Hope it helps
  • Low length (0.5):
  • No code block (0.5):
  • Me too answer (2.5): I have the same problem
  • Unregistered user (0.5):
  • Single line (0.5):
  • Low reputation (1):
Posted by: Akshda

79533873

Date: 2025-03-25 13:57:42
Score: 5
Natty: 5
Report link

Here is the source about timeouts: https://learn.microsoft.com/en-us/troubleshoot/azure/app-service/web-apps-performance-faqs#why-does-my-request-time-out-after-230-seconds

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

79533854

Date: 2025-03-25 13:45:38
Score: 4.5
Natty:
Report link

To add to @Hariharan's answer, you need to add the Family Controls (Development) capability in XCode, runner. Otherwise, no data will be shown. This caught me off guard, since they don't tell you why nothing is showing otherwise...

If you use flutter, make use of rendering native views: https://www.youtube.com/watch?v=czErmevSbuY to render the ExampleView in his answer.

Good luck!

Reasons:
  • Blacklisted phrase (1): youtube.com
  • Contains signature (1):
  • No code block (0.5):
  • User mentioned (1): @Hariharan's
  • Low reputation (1):
Posted by: Wing

79533841

Date: 2025-03-25 13:39:37
Score: 4
Natty:
Report link

@Heavy Mask
Wanted to thank you for this. I don't know if you ever found a solution, but your script inspired me to create the below script. Might be able to use it yourself?

;;∙============================================================∙
#NoEnv
#Persistent
#SingleInstance, Force
SetBatchLines, -1
SetTitleMatchMode 2
SetWinDelay, 0

^!LButton::    ;;∙------∙🔥∙(Ctrl + Alt + Left Click)  

;;∙------------∙• RUN SCRIPT AS ADMIN •∙----------------------------------------------------∙
if !A_IsAdmin
{
    MsgBox, 4, Admin Required, This Script Needs To`nRun As Administrator To`nTerminate Certain Processes...`n`n`tRestart With Admin Privileges?
    IfMsgBox, Yes
    {
        Run *RunAs "%A_ScriptFullPath%"
        ExitApp
    }
    else
    {
        MsgBox, 16, Error, !  !  !  A T T E N T I O N  !  !  !`n`n Script Will Not Continue`nWithout Admin Privileges!!,5
        ExitApp
    }
}

MouseGetPos,,, id
WinGet, pid, PID, ahk_id %id%

if (!pid) {
    MsgBox, 16, Error, Failed To Retrieve Process ID.,2
    Return
}

WinGetTitle, winTitle, ahk_id %id%
if (winTitle = "") 
    winTitle := "Unknown Window"

WinGet, exeName, ProcessName, ahk_id %id%

;;∙------------∙• PREVENT TERMINATION OF CRITICAL SYSTEM PROCESSES •∙-------∙
criticalProcesses := "explorer.exe, csrss.exe, wininit.exe, winlogon.exe, smss.exe, services.exe, lsass.exe, svchost.exe"
if exeName in %criticalProcesses%
{
    MsgBox, 16, Warning, Termination Of %exeName%`nIs Blocked To Prevent System Instability.,5
    Return
}

MsgBox, 4, Confirm Termination, Terminate Process %pid% ("%winTitle%", %exeName%)?  
IfMsgBox, No
    Return

hProcess := DllCall("OpenProcess", "UInt", 1, "Int", 0, "UInt", pid, "Ptr")
if (!hProcess) {
    MsgBox, 16, Error, Failed To Open Process.`nIt May Require Admin Privileges.,5
    Return
}

result := DllCall("ntdll\NtTerminateProcess", "ptr", hProcess, "UInt", 0)
DllCall("CloseHandle", "ptr", hProcess)

if (result != 0) {
    MsgBox, 16, Error, Failed To Terminate Process.,5
} else {
    MsgBox, 64, Success, Process %pid% ("%winTitle%", %exeName%) Terminated.,3

;;∙------------∙• LOG TERMINATED PROCESSES WITH TIMESTAMP •∙------------------∙
FormatTime, timeStamp, , H:mm:ss tt  -  MMMM dd, yyyy

;;∙------------∙___EXAMPLE 1___∙---------------------------------------------------------------∙
/*    ;;∙------∙SAVE LOG FILE WITH DIRECT PATH.
logFilePath := "C:\Users\username\Full\File\Path\ProcessKillLog.txt"    ;;∙------∙Example Path.
*/

;;∙------------∙___EXAMPLE 2___∙---------------------------------------------------------------∙
/*    ;;∙------∙SAVE LOG FILE IN DOCUMENTS FOLDER.
documentsDir := A_MyDocuments    ;;∙------∙Get the user's Documents folder.
logFilePath := documentsDir . "\ProcessKillLog.txt"    ;;∙------∙Define the Log File path (Documents folder).
if !FileExist(documentsDir)    ;;∙------∙Create directory if it doesn't exist.
{
    FileCreateDir, %documentsDir%
}
*/

;;∙------------∙___EXAMPLE 3___∙---------------------------------------------------------------∙
;;∙------∙SAVE LOG FILE IN SCRIPTS FOLDER.  <∙------ Currently In Use ---∙<<
    scriptDir := A_ScriptDir    ;;∙------∙Get the script's directory.
    logFilePath := scriptDir . "\ProcessKillLog.txt"    ;;∙------∙Define the Log File path (Script folder).
    if !FileExist(scriptDir)    ;;∙------∙Create directory if it doesn't exist.
    {
        FileCreateDir, %scriptDir%
    }

file := FileOpen(logFilePath, "a")    ;;∙------∙Append log details.
if (file) {
    file.WriteLine("____________________________________________")
    file.WriteLine("* Process Killed *  [ " . timeStamp . " ]`nProcess:`t"  . exeName . "`nPID:`t" . pid . "`nTitle:`t" . winTitle)
    file.WriteLine("____________________________________________`n")
    file.Close()
    MsgBox, 64, Success, Log File Successfully Updated.,5
} else {
    MsgBox, 16, Error, Failed To Open Log File For Writing.,5
}

}
Return
;;∙============================================================∙
Reasons:
  • Blacklisted phrase (0.5): thank you
  • Long answer (-1):
  • Has code block (-0.5):
  • Ends in question mark (2):
  • User mentioned (1): @Heavy
  • Looks like a comment (1):
  • Low reputation (1):
Posted by: SturgeonGeneral

79533834

Date: 2025-03-25 13:36:35
Score: 10 🚩
Natty: 4.5
Report link

Did you find a solution to this? I'm having the same issue.

Reasons:
  • RegEx Blacklisted phrase (3): Did you find a solution to this
  • Low length (1.5):
  • No code block (0.5):
  • Me too answer (2.5): I'm having the same issue
  • Contains question mark (0.5):
  • Single line (0.5):
  • Starts with a question (0.5): Did you find a solution to this
  • Low reputation (1):
Posted by: B C

79533780

Date: 2025-03-25 13:13:30
Score: 12.5
Natty: 7.5
Report link

hey did you find any solution to this?

Reasons:
  • Blacklisted phrase (1.5): any solution
  • RegEx Blacklisted phrase (3): did you find any solution to this
  • RegEx Blacklisted phrase (2): any solution to this?
  • Low length (2):
  • No code block (0.5):
  • Ends in question mark (2):
  • Single line (0.5):
  • Low reputation (1):
Posted by: Estefanía Gallo

79533747

Date: 2025-03-25 13:03:27
Score: 9
Natty: 7
Report link

How did you solve the doesn't exist on the resource '00000003-0000-0000-c000-000000000000' issue?

Reasons:
  • RegEx Blacklisted phrase (3): did you solve the
  • Low length (1):
  • No code block (0.5):
  • Ends in question mark (2):
  • Single line (0.5):
  • Starts with a question (0.5): How did you solve the
  • Filler text (0.5): 000000000000
  • Low reputation (1):
Posted by: Yang Feng

79533746

Date: 2025-03-25 13:03:26
Score: 6 🚩
Natty:
Report link

I am having the same issue with Nitrosense not opening at all, it happened all of a sudden and has been months now without any sort of resolution. I have a Acer Nitro 5 AN518-58 operating Windows 11 Home 12th Gen Intel core i5 - 12500H..Intel UHD Graphics and NVIDIA GeForce RTX 3050.

I have done the uninstall reinstall many times I have the latest BIOS and have tired several online repairs all of which failed to bring back Nitrosense. I have written to ACER and Microsoft and have the latest updates available still nothing has fixed the issue.As so many have the same issue why can't ACER offer a repair update as it is when working a great asset to be able to use the fans at max when required as well as operate the RGB lighting.

Hope sone can help us who have this issue

Robert

Reasons:
  • RegEx Blacklisted phrase (1): help us
  • Contains signature (1):
  • Long answer (-0.5):
  • No code block (0.5):
  • Me too answer (2.5): I am having the same issue
  • Me too answer (0): have the same issue
  • Unregistered user (0.5):
  • Low reputation (1):
Posted by: Robert

79533672

Date: 2025-03-25 12:33:19
Score: 5
Natty: 5
Report link

Full outer join with different distribution column types errors out in Citus. Do table1 and table2 have different column distribution types?

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

79533667

Date: 2025-03-25 12:32:19
Score: 4
Natty: 4.5
Report link

Please refer to the blog below to play videos in recycler view.

https://engineering.cred.club/implementing-multi-video-playback-in-recyclerview-56a4bdf99a29

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

79533621

Date: 2025-03-25 12:11:14
Score: 5.5
Natty:
Report link

I would like to add that there might be an issue caused libraries save attribute with initialization and declaration happening at the same time. We were seeing the same issue on our end. Cmake might handle this in a way that causes unwanted persistence just like the save attribute has.

Reasons:
  • Low length (0.5):
  • No code block (0.5):
  • Me too answer (2.5): seeing the same issue
  • Unregistered user (0.5):
  • Single line (0.5):
  • Low reputation (1):
Posted by: Daniel

79533593

Date: 2025-03-25 12:00:10
Score: 6.5
Natty: 7
Report link

If my poetry creates a virtual environment as .venv, and I want my WORKDIR to be called apps, how would I need to change the WORKDIR?

Reasons:
  • Blacklisted phrase (0.5): I need
  • RegEx Blacklisted phrase (1): I want
  • Low length (1):
  • No code block (0.5):
  • Ends in question mark (2):
  • Single line (0.5):
  • Low reputation (1):
Posted by: Poorvi

79533576

Date: 2025-03-25 11:55:08
Score: 4
Natty:
Report link

Same issue here on Free autonomous database. Database is located in London.

After refresh the page, it works properly

Reasons:
  • RegEx Blacklisted phrase (1): Same issue
  • Low length (1):
  • No code block (0.5):
  • Unregistered user (0.5):
  • Low reputation (1):
Posted by: user30055533

79533568

Date: 2025-03-25 11:52:08
Score: 10.5
Natty: 8
Report link

Where did you find the Advanced Access permission options? I have developer access but can't seem to locate them. Could you guide me on where to enable Advanced Access for permissions like email and public_profile?

Reasons:
  • Blacklisted phrase (1): guide me
  • RegEx Blacklisted phrase (2.5): Could you guide me
  • RegEx Blacklisted phrase (3): did you find the
  • Low length (0.5):
  • Has code block (-0.5):
  • Ends in question mark (2):
  • Single line (0.5):
  • Starts with a question (0.5): Where did you find the
  • Low reputation (1):
Posted by: Aman

79533455

Date: 2025-03-25 11:10:57
Score: 4
Natty: 5
Report link

Disable "Auto-generate binding redirects"

Source: https://github.com/tmenier/Flurl/issues/597

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