79629275

Date: 2025-05-19 18:23:20
Score: 6 🚩
Natty: 6
Report link

Have you been able to find a solution? I'm currently stuck on the same issue and would really appreciate any help you can provide.

Thank you!

Reasons:
  • Blacklisted phrase (0.5): Thank you
  • Blacklisted phrase (1.5): Have you been able to
  • Blacklisted phrase (1): any help
  • Low length (1):
  • No code block (0.5):
  • Contains question mark (0.5):
  • Low reputation (1):
Posted by: gurman deep

79629271

Date: 2025-05-19 18:20:19
Score: 1.5
Natty:
Report link

So from what I understand the way the oracle is structured is that you give it an input of |x>|y> , where x is the actual input state to the function that the oracle is implementing , and y is a sort of blank bit , that is used to govern the output. This is probably done because oracles use CNOT gates, which very naturally implement the XOR function. This helps with not just reversibility , but also controlling the phase of the state , without changing the state itself , if instead of the "blank" state y , you give it the state |->. This is because XOR with |-> implements (-1)^f(x) * |-> as its output.

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

79629267

Date: 2025-05-19 18:18:19
Score: 1
Natty:
Report link

I found a way to get the result I wanted - but it seems a little bit like a hack to me. What do you think?

Since all controls (=widgets) are stored in a list, you can delete and add items from that list at any position/index of the list.

I did it the following way:

def reset(e):
    # remove the Dropdown completly from the GUI
    page.remove_at(0) # 0 is the index of the control in the list

    # add the Dropdown again at the same position
    dropdown = ft.Dropdown(
        label = 'Examples',
        expand = True,
        options = [
            ft.DropdownOption(text='Option 1'),
            ft.DropdownOption(text='Option 2'),
            ft.DropdownOption(text='Option 3'),
        ]
    )
    page.insert(0, dropdown)
Reasons:
  • Long answer (-0.5):
  • Has code block (-0.5):
  • Contains question mark (0.5):
  • Self-answer (0.5):
  • Low reputation (1):
Posted by: Alex

79629254

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

You need to pass the child elements as a single list or a tuple instead of separate positional arguments.

Change this:

Body(title, SimSetup, Header, Status, style="margin:20px; width: 1500px")

to:

Body([title, SimSetup, Header, Status], style="margin:20px; width: 1500px")
Reasons:
  • Low length (0.5):
  • Has code block (-0.5):
  • Low reputation (0.5):
Posted by: J. James

79629248

Date: 2025-05-19 18:00:13
Score: 1
Natty:
Report link

When you run this as a .py file in Command Prompt, Python reads the entire file and interprets the indentation correctly. However, in VS Code's interactive mode (Python REPL), each line is executed as you enter it, and the continuation of code blocks works differently.

hence correct code(for vs-code) will be:

squares = []
for value in range(0,11):
    square = value ** 2
    squares.append(square)
print(squares)
Reasons:
  • Has code block (-0.5):
  • Starts with a question (0.5): When you
  • Low reputation (1):
Posted by: Shubham Darekar

79629244

Date: 2025-05-19 17:55:12
Score: 1.5
Natty:
Report link

It worked!

uname -a ==> Linux DellDesktop 5.15.167.4-microsoft-standard-WSL2 #1 SMP Tue Nov 5 00:21:55 UTC 2024 x86_64 Linux

cat .profile ==> echo Welcome Alpine!!!!!!!!!!!!!!!!!!!!

source .profile ==> Welcome Alpine!!!!!!!!!!!!!!!!!!!!

Reasons:
  • Whitelisted phrase (-1): It worked
  • Low length (0.5):
  • No code block (0.5):
  • Filler text (0.5): !!!!!!!!!!!!!!!!!!!!
  • Filler text (0): !!!!!!!!!!!!!!!!!!!!
  • Low reputation (1):
Posted by: José Emidio

79629243

Date: 2025-05-19 17:51:11
Score: 2
Natty:
Report link

The latest Tailwind CSS lib and postcss plugin don't work well with postcss. I had to downgrade Tailwind CSS to make it work again.

Maybe it's something that will be fixed in a future version.

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

79629229

Date: 2025-05-19 17:45:09
Score: 2
Natty:
Report link

Looks like Microsoft Entra id keyless authentication is not currently supported for machine learning serverless endpoint models

https://learn.microsoft.com/en-us/azure/ai-foundry/concepts/deployments-overview

enter image description here

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

79629209

Date: 2025-05-19 17:27:04
Score: 2
Natty:
Report link

Let users vote off-chain (e.g., Firebase, IPFS), and submit the result on-chain once voting ends.

  1. Still decentralized (if you include hashes or commitments on-chain).

  2. Prevents MetaMask popups entirely for voters.

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

79629203

Date: 2025-05-19 17:24:03
Score: 4
Natty:
Report link

here you can see the render flex in the menu mode with the advanced drawer

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

79629201

Date: 2025-05-19 17:23:03
Score: 1
Natty:
Report link

Just to build upon the answer from @NickNgn, could even make SensitiveInfo a generic class for other data types as well. Something like this:

record SensitiveInfo<T>(T value) {

  @Override
  public String toString() {
    return "SensitiveInfo{" +
           "value=*****" +
           "}";
  }
}

Then could use for different types like this:

record SomeRecord(..., SensitiveInfo<byte[]> byteField, SensitiveInfo<String> stringField)
Reasons:
  • Has code block (-0.5):
  • User mentioned (1): @NickNgn
  • Low reputation (0.5):
Posted by: Bradford2000

79629200

Date: 2025-05-19 17:21:02
Score: 3
Natty:
Report link

Keep the Datatype TEXT in Sequelize, just change the Datatype in Database to LONGTEXT, its working fine.

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

79629193

Date: 2025-05-19 17:13:00
Score: 1.5
Natty:
Report link

I had a similar issue, and with pip it got resolved:

e.g., pip install torch==1.10.1 torchvision==0.11.2 torchaudio==0.10.1

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

79629167

Date: 2025-05-19 16:51:54
Score: 0.5
Natty:
Report link

It seems it happens because of text adjustment inflation - display: flex; shrinks the container and text snaps to correct size value.

Putting height: 100%; works too for me, which impacts less than display: flex;, so I'm sticking to this for now. (width: 100% or *-content might work also).

What I'm doing right now to let other developers know the hell happens I came up with this little snippet in SCSS (you can reduce it down to a class name).

/**
 * https://developer.mozilla.org/en-US/docs/Web/CSS/text-size-adjust
 * https://stackoverflow.com/questions/39550403/css-displayinline-block-changes-text-size-on-mobile
 */
@mixin DisabledTextSizeAdjust {
    @supports (text-size-adjust: 80%) {
        text-size-adjust: none
    }

    @supports not (text-size-adjust: 80%) {
        height: 100%;
    }
}

And use it on the weird texts

.box {
  @include DisabledTextSizeAdjust;
}
Reasons:
  • Blacklisted phrase (1): stackoverflow
  • Long answer (-0.5):
  • Has code block (-0.5):
  • Low reputation (0.5):
Posted by: FrameMuse

79629161

Date: 2025-05-19 16:47:53
Score: 3
Natty:
Report link

Good question.

What happens if you run it just like that.

Does it terminate.

Reasons:
  • Low length (1.5):
  • No code block (0.5):
  • Low reputation (1):
Posted by: Abdullah Syed Abudahir

79629147

Date: 2025-05-19 16:39:50
Score: 2.5
Natty:
Report link

A shorter syntax that also performs a substring under the hood

"123,"[..^1]

Reasons:
  • Low length (1.5):
  • Has code block (-0.5):
  • Unregistered user (0.5):
  • Low reputation (1):
Posted by: zeldo

79629133

Date: 2025-05-19 16:29:47
Score: 7 🚩
Natty: 6
Report link

@Dmitri T what would be the values you have provided in this login thread group example: what would be the duration to be specified in Login API thread group, how my threads we have to take (do we need to mention the no of threads in Login API thread group or the Other APIs group), etc... can you please share a sample example Screen shot of both Login API and Other API thread groups. for better understanding.

Reasons:
  • RegEx Blacklisted phrase (2.5): can you please share
  • No code block (0.5):
  • Unregistered user (0.5):
  • User mentioned (1): @Dmitri
  • Single line (0.5):
  • Looks like a comment (1):
  • Low reputation (1):
Posted by: Sathvik

79629124

Date: 2025-05-19 16:23:45
Score: 3
Natty:
Report link

Accessing secrets stored in the AWS Systems Manager Parameter Store within your React API routes is currently not supported (please see here and here).

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

79629122

Date: 2025-05-19 16:19:44
Score: 3
Natty:
Report link

Windows 10

NET SHARE NAME=PATH /grant:User,Permission /grant:User,Permission

Example

NET SHARE Zona-A=c:\zonas\z-a /grant:luis,full /grant:Charle,full

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

79629114

Date: 2025-05-19 16:16:43
Score: 1
Natty:
Report link

You can use these query in athena for load the data using partition columns present in s3

ALTER TABLE orders ADD PARTITION (State = 'RJ', country = 'IN') LOCATION 's3://a...'

Reasons:
  • Whitelisted phrase (-1.5): You can use
  • Low length (1):
  • No code block (0.5):
  • Low reputation (1):
Posted by: Shivansh Keshari

79629099

Date: 2025-05-19 15:59:39
Score: 1.5
Natty:
Report link

As @Ashetynw pointed out, the problem in my case was that I wasn't including the id column in the DataTable.

I was purposefully excluding it because I thought it was a good practice for an autoincremental id.

The error I was receiving seemed to imply that the SQL columns in the DB were not aligning with the ones I was constructing in the DataTable, since it said that string was not convertable to int. I made sure to align the columns I constructed in the DataTable with the values in the rows I provided. So the error was not there. I promised, I debugged the columns and rows and they aligned perfectly.

After reading the response from @Ashetynw, I realized that the missing id must be the problem, since adding the id column would align the int-expected column with the next column, which was in fact an int.

Since doing and INSERT in SQL providing an id to a table with an incremental id doesn't affect anything, since the table will just ignore the provided id and calculate the next id increment as usual, I just added the id to the columns and rows of the DataTable and the problem was completely solved.

TL:DR

Include the DB id column in your DataTable columns and provide whatever value in its rows, since it will get overridden by the autoincrement logic.

Reasons:
  • Long answer (-1):
  • No code block (0.5):
  • User mentioned (1): @pointed
  • Low reputation (1):
Posted by: Delphoenyx

79629093

Date: 2025-05-19 15:57:38
Score: 1.5
Natty:
Report link

May I offer a modest harumph and pose a mildly philosophical question?

Harumph

class, interface, virtual, pure - surely the English language has more to offer. Yet SystemVerilog insists on shuffling these same tokens into different constructs. Reminds me LEGO of the 70s. Building a dog out 6 bricks.

Question

Has there been any serious thoughts given to incorporating interface class into the UVM base classes, as a formal vehicle for hooks, something like Python’s dunder methods?

It could be rather civilized to have iter(), add() and more, already having copy(), pack(), unpack(), print()... It might introduce a bit of structure and decorum to what otherwise be rather unruly DV code.

Reasons:
  • Contains signature (1):
  • Long answer (-0.5):
  • Has code block (-0.5):
  • Contains question mark (0.5):
  • Low reputation (1):
Posted by: Y T

79629083

Date: 2025-05-19 15:51:36
Score: 0.5
Natty:
Report link

Here's a pure JS implementation that works oh so smoothly.

h/t Alvaro Trigo

const scrollContainer = document.querySelector('main');

scrollContainer.addEventListener('wheel', (evt) => {
  // The magic happens here.
});
Reasons:
  • Low length (0.5):
  • Has code block (-0.5):
  • Low reputation (0.5):
Posted by: buildpax

79629080

Date: 2025-05-19 15:50:36
Score: 0.5
Natty:
Report link

Not params for e-mail and password

It should be form-data of Body

URL

POST https://activecollab.com/api/v1/external/login

enter image description here

Detail REST API in here

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

79629079

Date: 2025-05-19 15:49:36
Score: 0.5
Natty:
Report link

Here is a simple solution, which allows you to specify different formats for each column:

import numpy as np

a = ["str1", "str2", "str3"]
b = [1.1, 2.2, 3.3]

np.savetxt("file.dat", np.array([a, b], dtype=object).T, fmt=["%s", "%.18e"], delimiter="\t")
Reasons:
  • Low length (0.5):
  • Has code block (-0.5):
  • Low reputation (0.5):
Posted by: scavi

79629073

Date: 2025-05-19 15:43:34
Score: 2
Natty:
Report link

Just use \\"\\" inside snowflake javascript stored proc:

SELECT distinct ord.SO_Number as \\"Sales Order\\" ,cast(cast(SO_Item as Number(38,2)) as VARCHAR) as \\"Sales Order Item\\" From SaleTable

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

79629069

Date: 2025-05-19 15:39:33
Score: 1.5
Natty:
Report link

I have used the below configurations but it didn't work
I have my redis running in my machine and the connection is successful but my application is unable to find it

please check for any mistake and help me if you find the solution

spring:
  data:
    redis:
      host: localhost
      port: 6379
      connect-timeout: 5
      timeout: 1000
      username: default
      password: password
      sentinel:
        master: localhost
        nodes:
          - 127.0.0.1
Reasons:
  • Blacklisted phrase (1): help me
  • Has code block (-0.5):
  • Low reputation (1):
Posted by: kolapalli aravind

79629064

Date: 2025-05-19 15:37:32
Score: 1.5
Natty:
Report link

"Quota exceeded for aiplatform.googleapis.com/generate_content_requests_per_minute_per_project_per_base_model with base model: imagen-3.0-generate. Please submit a quota increase request. https://cloud.google.com/vertex-ai/docs/generative-ai/quotas-genai."

I am using Paid tier, using vertex AI imagen model. I am hitting the limit with just 1 image attempt generation even tohugh for my region quota is 50 rpm. One would think taht Google wants Devs to use more their platform, yet the facts points otherwise.

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

79629063

Date: 2025-05-19 15:36:32
Score: 2.5
Natty:
Report link

I suggest looking into the R quanteda package, and in particular its kwic function and its dictionary capabilities.

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

79629060

Date: 2025-05-19 15:35:31
Score: 0.5
Natty:
Report link
I found a solution

1. Set wire:key inside blade loop:


@forelse($recipes as $recipe)
<div wire:key="{{ $recipe->id }}">
     <x-recipe-card :recipe="$recipe" wire:key="{{ $recipe->id }}"/>
</div>
@empty
    <p>error</p>
@endforelse

2. Set :key for livewire component in x-recipe-card:
<livewire:like-dislike :recipe="$recipe" :key="$recipe->id"/>
Reasons:
  • Has code block (-0.5):
  • Self-answer (0.5):
  • Low reputation (0.5):
Posted by: Dmytro Shved

79629057

Date: 2025-05-19 15:33:30
Score: 0.5
Natty:
Report link

While not officially recommended, it's possible to use final ref = ProviderScope.containerOf(context) to get a ProviderContainer object, which can be used to read (but not watch) values from a Riverpod provider.

Alternatively, you can just use a Riverpod Provider to provide the whole GoRouter object.

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

79629051

Date: 2025-05-19 15:27:29
Score: 0.5
Natty:
Report link

If you're just getting started with AWS as a developer, it's best to begin with the core services that you'll use most often. Focus first on EC2 (for running virtual servers), S3 (for storing files), and RDS or DynamoDB (for databases). Once you're comfortable with those, explore Lambda for serverless functions, API Gateway for building APIs, and IAM for managing access and security.

To learn effectively, I recommend using AWS Skill Builder, which offers free learning paths and hands-on labs. You can also check out AWS Workshops and Serverless Land for practical tutorials that walk you through real-world use cases.

If you're interested in certifications, the AWS Certified Cloud Practitioner is a great starting point. After that, the AWS Developer Associate certification is more hands-on and focused on skills relevant to coding and building applications.

As a first project, try building something small like a to-do app using Lambda, API Gateway, and DynamoDB. It’s a great way to see how these services work together without getting overwhelmed. Once you complete that, you’ll have a solid foundation to build more complex applications.

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

79629050

Date: 2025-05-19 15:27:29
Score: 1
Natty:
Report link

After various shielding logic tests, the problem was identified.

The 5% performance difference is mainly due to the different TieredPGO Settings.

The 50% performance loss is due to the BUG of memory leaks in Monitor.Wait(object) and Monitor.Pulse(object) of the AOT mode, Memory leaks have caused abnormal memory usage and the decline of GC performance.

To reduce the operation of new objects in performance-insensitive scenarios, I directly use the RPC request object for Monitor operations to achieve thread synchronization. However, the AOT mode will cause this object to be leaked, resulting in no memory release for all request objects until the relevant thread ends.

After I replaced Monitor with ManualResetEvent to handle the thread synchronization issue, the request object was normally reclaimed, the memory usage returned to normal, and the performance test results also returned to normal.

I guess it's because in the AOT mode, the Monitors related operations save the request object in a certain global set bound to the thread context. After Monitor.Pulse(object) wakes up the synchronous thread, this request object is not removed from this global set, resulting in a memory leak. It can only be released after the thread ends.

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

79629042

Date: 2025-05-19 15:22:27
Score: 3
Natty:
Report link

In my case, I discovered I had a recursive call in my app.
After failing to run the tests, I ran the app itself (API) and, when calling certain method, the app would just get stuck loading and sometimes crash.

It was a copy-paste oversight where some reference was pointing to itself. Not so hard to find when I figured it was a recursive reference, thanks to the answer from @asma.

Reasons:
  • Blacklisted phrase (0.5): thanks
  • No code block (0.5):
  • User mentioned (1): @asma
  • Low reputation (1):
Posted by: Delphoenyx

79629034

Date: 2025-05-19 15:18:25
Score: 4.5
Natty: 4
Report link

You can find the balena Standalone LoRaWAN gateway project here https://github.com/xoseperez/standalone-lorawan-gateway-balena or here https://github.com/xoseperez/the-things-stack-docker

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

79629026

Date: 2025-05-19 15:15:23
Score: 0.5
Natty:
Report link

You can't make items final in Java array. You should use unmodifiable list for it.

final Object[] arr = new Object[10];
final List<?> items = Collections.unmodifiableList(Arrays.asList(arr));
Reasons:
  • Low length (0.5):
  • Has code block (-0.5):
  • Low reputation (0.5):
Posted by: TevinS

79629003

Date: 2025-05-19 15:02:20
Score: 3
Natty:
Report link

No, Java does not support directly creating an array with final elements. There's no syntax like final object final [] that will make each element final.

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

79629002

Date: 2025-05-19 15:01:20
Score: 1.5
Natty:
Report link

The "-sources.jar" is a convention used to deliver documentation in the form of Javadoc comments for the corresponding library. IDEs parse the Java files inside just for the documentation purposes and not to use the implementation. In fact, the implementation (method bodies) in the Java files contained in the "*-sources.jar" file does not have to be present. Only the comments nd method signatures must parseable.

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

79628999

Date: 2025-05-19 14:58:19
Score: 1
Natty:
Report link

I get this exception when attempting to connect to a secure websocket server on an address other than the addresses specified in the certificate (i.e. cert wildcard for *.acme.co.uk and connecting to PC1110 as opposed to PC1110.acme.co.uk)

Changing the connection to connect to an address which is covered by the certificate (i.e. PC1110.acme.co.uk in this example) fixes the issue.

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

79628992

Date: 2025-05-19 14:55:17
Score: 2
Natty:
Report link

Cast it a list with list(df.columns) and put that in a separate cell and run it.

Reference: having-trouble-showing-all-columns-of-a-dataframe

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

79628991

Date: 2025-05-19 14:54:17
Score: 4
Natty: 5
Report link

Puedes hacerlo agregando un campo con la hora actual al objeto que estás enviando. new Date().toISOString():

Reasons:
  • Blacklisted phrase (1): está
  • Low length (1):
  • No code block (0.5):
  • Single line (0.5):
  • Low reputation (1):
Posted by: Gabriel Cabrera

79628990

Date: 2025-05-19 14:54:17
Score: 3.5
Natty:
Report link

The search api lets you add 'expand=changelog' directly.

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

79628988

Date: 2025-05-19 14:53:16
Score: 4.5
Natty:
Report link

You can try this plugin: https://wpdatatables.com/ exists free version

Reasons:
  • Blacklisted phrase (1): this plugin
  • Whitelisted phrase (-1): try this
  • Probably link only (1):
  • Low length (1.5):
  • No code block (0.5):
  • Single line (0.5):
  • Low reputation (1):
Posted by: Danilo Iannone

79628980

Date: 2025-05-19 14:50:14
Score: 7.5 🚩
Natty: 4.5
Report link

enter image description here

how to handle this chrome pop up which is not able to inspect the pop up help me out

Reasons:
  • Blacklisted phrase (1): help me
  • Blacklisted phrase (1): enter image description here
  • RegEx Blacklisted phrase (2): help me out
  • Low length (1.5):
  • No code block (0.5):
  • Starts with a question (0.5): how to
  • Low reputation (1):
Posted by: gowtham p

79628970

Date: 2025-05-19 14:47:12
Score: 3
Natty:
Report link

IntelliJ finally started working on Workspaces features. Hopefully it will address the requirements in the coming future.
https://blog.jetbrains.com/idea/2024/08/workspaces-in-intellij-idea/

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

79628969

Date: 2025-05-19 14:46:12
Score: 0.5
Natty:
Report link

Adding the following lines to my AndroidManifest.xml file inside the <activity> tag solved it. It's suggested in Android Documentation. You can checkout the documentation here https://developer.android.com/guide/components/intents-common#Email.

<intent-filter>
        <action android:name="android.intent.action.SENDTO" />
        <data android:scheme="mailto" />
        <category android:name="android.intent.category.DEFAULT" />
</intent-filter>
Reasons:
  • Has code block (-0.5):
  • Self-answer (0.5):
  • Low reputation (0.5):
Posted by: Abinash Dash

79628948

Date: 2025-05-19 14:36:09
Score: 3
Natty:
Report link

I have the same issue but in my case it causes an uncatchable exception 0xc00000fd in gdi32full.dll as event viewer reviels.

This happens on some systems only. There are systems that work fine for 30k+ rows, others crash at 10k.

The only workaround I found is to set the initial FirstDisplayedScrollingRowIndex delayed via a Windows.Forms.Timer within Form1_Load:

    var scrollTimer         = new System.Windows.Forms.Timer();
    scrollTimer.Interval    = 500;
    scrollTimer.Enabled     = true;

    scrollTimer.Tick += (object sender, EventArgs e) =>
    {
        scrollTimer.Stop();

        dg.FirstDisplayedScrollingRowIndex = dg.RowCount - 1;

        scrollTimer.Dispose();
    };

This is c# but it shows the intention.

Reasons:
  • Blacklisted phrase (1): I have the same issue
  • Long answer (-0.5):
  • Has code block (-0.5):
  • Me too answer (2.5): I have the same issue
  • Low reputation (0.5):
Posted by: TomB

79628946

Date: 2025-05-19 14:36:09
Score: 1.5
Natty:
Report link

The error "PROTOCOL_CONNECTION_LOST" typically occurs when your MySQL server isn't running, the database doesn't exist, or the connection is improperly configured. First, verify your MySQL server is running (try brew services list on macOS or sudo systemctl status mysql on Linux) and ensure the charity_tracker database exists (check with mysql -u root then SHOW DATABASES;). Your connection code appears correct for a local setup with no password, but consider using a connection pool for better reliability. If the issue persists, try restarting MySQL (sudo /usr/local/mysql/support-files/mysql.server restart) or temporarily removing the database: 'charity_tracker' line to test the connection, then create the database manually if missing. Also check for any MySQL error logs which might reveal why the server is closing the connection.

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

79628944

Date: 2025-05-19 14:35:09
Score: 1.5
Natty:
Report link

The issue is due to the fact that Power BI does not always know which side of a many-to-many relationship to filter by.

In SQL -- joins produce a "cartesian product", or, a raw join like you would in a "merge" operation in Power BI. In Power BI, relationships just work via filter propagation to determine which rows to match in certain situations.

If you need to avoid this kind of ambiguity or it's causing problems, try merging your queries to bring in the data fields you need via a join, that's what I typically do when I need to avoid many to many relationships.

Reasons:
  • Blacklisted phrase (0.5): I need
  • Long answer (-0.5):
  • No code block (0.5):
  • Low reputation (1):
Posted by: Tiko Coassin

79628941

Date: 2025-05-19 14:33:08
Score: 4
Natty:
Report link

When I bound my local source files to the container but excluded the build files, hot reload started working correctly.

This resolves my question. Thank you!

Reasons:
  • Blacklisted phrase (0.5): Thank you
  • Low length (1):
  • No code block (0.5):
  • Self-answer (0.5):
  • Starts with a question (0.5): When I
  • Low reputation (1):
Posted by: user77602

79628930

Date: 2025-05-19 14:27:06
Score: 1.5
Natty:
Report link

//In component

console.log('User before passing to service', user); this.userService.addUser(user);

//in service give with below spread operator check once keep the debugger verify at what point it cuasing the issue.

const newUser = { ...user, id: this.users.length + 1 }; this.users.push(newUser);

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

79628922

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

I ran into a similar problem in the Positron IDE.

I found the issue to be missing break after the chunk.

```{r}
code
```
Text

This would run into the problem but adding an additional break after the chunk fixed this.

```{r}
code
```

Text

Hope this helps someone else running into similar issues

Reasons:
  • Whitelisted phrase (-1): Hope this helps
  • Low length (0.5):
  • No code block (0.5):
  • Low reputation (1):
Posted by: Andre

79628919

Date: 2025-05-19 14:22:04
Score: 0.5
Natty:
Report link
Install
npm install -D tailwindcss@^3.3.7 autoprefixer@^10.4.16 @tailwindcss/postcss@latest

package.json{
  "dependencies": {
    "react": "^19.1.0",
    "react-dom": "^19.1.0"
  },
  "devDependencies": {
    "@tailwindcss/postcss": "^4.1.7",
    "autoprefixer": "^10.4.21",
    "parcel": "^2.15.1",
    "react-router-dom": "^7.6.0",
    "tailwindcss": "^3.4.17"
  }
}


create .postcssrc.json in root directory

//.postcssrc.json
{
  "plugins": {
    "tailwindcss": {}
  }
}


create tailwind.config.js in root directory
//tailwind.config.js
/** @type {import('tailwindcss').Config} */
module.exports = {
  content: [
    "./src/**/*.{js,jsx,ts,tsx}",
    "./public/index.html",
  ],
  theme: {
    extend: {
      colors: {
        primary: '#FF0000', // Custom primary color
      },
      fontFamily: {
        sans: ['Graphik', 'sans-serif'], // Custom font family
      },
    },
  },
  plugins: [],
}

install  Tailwind CSS IntelliSense Extension 

[enter image description here][1]


[1]: https://i.sstatic.net/GbZRDbQE.png
Reasons:
  • Blacklisted phrase (1): enter image description here
  • Long answer (-1):
  • Has code block (-0.5):
  • Low reputation (1):
Posted by: Mahal Teja Pilla

79628904

Date: 2025-05-19 14:14:01
Score: 4.5
Natty: 4
Report link

You check this medium article which explains the full walkthrough of how you can implement https://medium.com/@avijit007/detect-face-in-flutter-using-googles-mediapipe-latest-on-device-ml-model-2025-5bb8d9c1b625

Reasons:
  • Blacklisted phrase (0.5): medium.com
  • Probably link only (1):
  • Low length (1):
  • No code block (0.5):
  • Single line (0.5):
  • Low reputation (1):
Posted by: Avijit Goswami

79628903

Date: 2025-05-19 14:13:01
Score: 2
Natty:
Report link

I Confirm that the post sent by Sumit was the root cause of the problem. I do not have reputation enough to add a coment into their post.

So, yeah it is a problem with the property advertised.listeners and how it is invoked when using command line inside the bash.

KAFKA_ADVERTISED_LISTENERS: PLAINTEXT://kafka:29092,PLAINTEXT_HOST://localhost:9092

kafka-console-consumer --bootstrap-server PLAINTEXT://kafka:29092 --topic dummy-topic

Reasons:
  • RegEx Blacklisted phrase (1.5): I do not have reputation
  • Has code block (-0.5):
  • Low reputation (1):
Posted by: gruerei

79628896

Date: 2025-05-19 14:08:00
Score: 1
Natty:
Report link

In modern Twig you can easily use escape filter.

{{ ' href="%s%s"' | format('/test-route', '#anchor') | escape }}

format will act like sprintf replacing the string

escape will allow you to use whatever character you want.

reference: https://twig.symfony.com/doc/3.x/filters/escape.html

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

79628885

Date: 2025-05-19 14:01:57
Score: 5
Natty: 6
Report link

Looking for a free WoW macro generator? This one is solid.
https://raidline.com/en/blogdetail/wow-macro-generator

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

79628874

Date: 2025-05-19 13:54:55
Score: 0.5
Natty:
Report link

I got this to work using the following component. Any number of headers can be added as metrics tags by modifying the list getHeadersToTag statically


import static org.springframework.util.StringUtils.hasText;

import io.micrometer.common.KeyValue;
import io.micrometer.common.KeyValues;
import jakarta.servlet.http.HttpServletRequest;
import java.util.ArrayList;
import java.util.List;
import org.springframework.http.server.observation.DefaultServerRequestObservationConvention;
import org.springframework.http.server.observation.ServerRequestObservationContext;
import org.springframework.stereotype.Component;

/*
 * This component is responsible for extracting the headers(by default VCC-Client-Id) from incoming HTTP
 * request and appending it as tag to all the controller metrics.
 */
@Component
public class HeaderAsMetricTagAppender extends DefaultServerRequestObservationConvention {
  private static List<String> headersToTag;
  public static final String DEFAULT_VCC_CLIENT_ID = "default";

  static {
    headersToTag = new ArrayList<>();
    headersToTag.add(DEFAULT_VCC_CLIENT_ID);
  }

  @Override
  public KeyValues getLowCardinalityKeyValues(ServerRequestObservationContext context) {
    return super.getLowCardinalityKeyValues(context).and(additionalTags(context));
  }

  protected static KeyValues additionalTags(ServerRequestObservationContext context) {
    KeyValues keyValues = KeyValues.empty();

    for (String headerName : headersToTag) {
      String headerValue = "undefined";
      HttpServletRequest servletRequest = context.getCarrier();
      if (servletRequest != null && hasText(servletRequest.getHeader(headerName))) {
        headerValue = servletRequest.getHeader(headerName);
      }
      // header tag will be added in all the controller metrics
      keyValues = keyValues.and(KeyValue.of(headerName, headerValue));
    }

    return keyValues;
  }

  /**
   * The list of headers to be added as tags can be modified using this list.
   *
   * @return reference to the list of all the headers to be added as tags
   */
  public static List<String> getHeadersToTag() {
    return headersToTag;
  }
}
Don't add headers that can have large set value possibilities. This would the increase the metric cardinality\

Thanks to Bunty Raghani https://github.com/BootcampToProd/spring-boot-3-extended-server-request-observation-convention/tree/main

Reasons:
  • Blacklisted phrase (0.5): Thanks
  • Probably link only (1):
  • Long answer (-1):
  • Has code block (-0.5):
  • Low reputation (0.5):
Posted by: Ansel Zandegran

79628873

Date: 2025-05-19 13:54:55
Score: 4.5
Natty:
Report link

Answering my own question:

Thanks to @bestbeforetoday's comment, I managed to rewrite the signing code and now it looks like this, for anyone having the same problem as I had:

function getPrivKey(pemFile) {
  const pemContent = fs.readFileSync(pemFile, 'utf8');
  const key = crypto.createPrivateKey(pemContent);
  const jwk = key.export({ format: 'jwk' });
  const d = jwk.d; 
  return Buffer.from(d, 'base64url'); 
}

function fabricSign(message, privateKeyPemFile) {
  const privateKeyBytes = getPrivKey(privateKeyPemFile);
  const msgHash = crypto.createHash('sha256').update(message).digest();
  const signature = p256.sign(msgHash, privateKeyBytes);
  const signaturep1 = signature.normalizeS();
  const signaturep2 = signaturep1.toDERRawBytes();
  return signaturep2;
}
Reasons:
  • Blacklisted phrase (0.5): Thanks
  • Long answer (-0.5):
  • Has code block (-0.5):
  • Me too answer (2.5): having the same problem
  • User mentioned (1): @bestbeforetoday's
  • Self-answer (0.5):
  • Low reputation (1):
Posted by: Eduardo Valente

79628871

Date: 2025-05-19 13:53:54
Score: 5
Natty: 5
Report link

I might be a tiny bit late too the party. But I assume that WP_Query by default retrieves the 10 most recently added/edited posts correct?

Reasons:
  • Low length (1):
  • No code block (0.5):
  • Ends in question mark (2):
  • Single line (0.5):
  • Low reputation (1):
Posted by: That won't happen

79628865

Date: 2025-05-19 13:48:53
Score: 1
Natty:
Report link

Hope you will find this useful----
-----Median in SQL------

1st- Know the Median terminology for odd no.(2n+1) and even no.(2n)

Now I will show two scenarios of above with examples

suppose you have two data set with Table_1 with odd(499) and Table_2 with even(500).

Now querying for median of column_1(Table_1) and for median of column_1(Table_2)

--- Table_1 with odd(499) ------- :
SELECT

TOP 1 CAST(Column_1) AS Odd_Median

FROM

( SELECT TOP 250 Column_1 FROM Table_1 ORDER BY Column_1 DESC ) as T

ORDER BY Column_1 ASC;

--- Table_2 with even(500) ------- :

SELECT

(a+b)/2 AS Even_Median

FROM
(

SELECT

TOP 1 CAST(Column_1) AS a

FROM

( SELECT TOP 250 Column_1 FROM Table_1 ORDER BY Column_1 DESC ) UT

ORDER BY Column_1 ASC ) AS T

)
UNION

(
(SELECT TOP 1 CAST(Column_1) AS b

FROM

( SELECT TOP 251 Column_1 FROM Table_1ORDER BY Column_1 DESC ) as T

ORDER BY Column_1 ASC
)

;

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

79628864

Date: 2025-05-19 13:47:52
Score: 2
Natty:
Report link

Have you designed the architecture yourself?
If yes, have you tried changing the architecture?

BR,

Bip-Bip

Reasons:
  • Whitelisted phrase (-1): have you tried
  • Low length (1):
  • No code block (0.5):
  • Contains question mark (0.5):
  • Low reputation (1):
Posted by: angel dambrosio

79628863

Date: 2025-05-19 13:47:52
Score: 2.5
Natty:
Report link

Since this was never flagged as solved:

Preston PHX's hint solved the exact same issue for me. After being properly categorized by urlfiltering.paloaltonetworks.com/query the paypal webhook messages arrived without issues.

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

79628855

Date: 2025-05-19 13:42:51
Score: 1
Natty:
Report link

The solution that fixed the problem for me was setting the Interaction Mode under
Edit → Preferences → General → Interaction Mode to Monitor Refresh Rate.

My new monitor has a relatively low refresh rate, and after changing this setting, Unity’s editor performance improved significantly — especially when dragging the Scene View with right-click, where performance spikes appeared.

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

79628850

Date: 2025-05-19 13:39:50
Score: 0.5
Natty:
Report link

You're running into this error because the Docker container is trying to create or write to the db.sqlite3 file, but the user it's running as (appuser) doesn't have permission. This usually happens when you mount your local project directory (.) into the container (/app), which overrides the internal folder's permissions. To fix it, you can either run the container as root, change the permissions of your local folder with chmod -R 777 ., or make sure the /app directory inside the container is owned by the right user by using COPY --chown=appuser:appuser . . and setting write permissions if needed.

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

79628840

Date: 2025-05-19 13:34:48
Score: 1
Natty:
Report link

A new possible solution is to use this "Repair IDE". From the link: "Using the Repair IDE action, you can troubleshoot the issues with unresolved code or corrupted caches in your project without invalidating the cache and restarting the IDE."

Reasons:
  • Whitelisted phrase (-1): solution is
  • Low length (0.5):
  • No code block (0.5):
  • Single line (0.5):
  • Low reputation (0.5):
Posted by: Gustavo

79628834

Date: 2025-05-19 13:30:47
Score: 0.5
Natty:
Report link

This is my proposal:

% --- facts
#const n=11.

seq_pos(1..n).
seq_val(0..n-1).
diff_val(1..n-1).

% --- choice rules
1 { seq(P,V) : seq_val(V) } 1 :- seq_pos(P).
diff(P,D) :- seq(P,V1), seq(P+1,V2), P < n, D = |V1 - V2|.

% --- constraints
:- seq(P1,V), seq(P2,V), P1 != P2.
:- diff_val(D), not diff(_,D).

% --- output
#show seq/2.

Output:

clingo version 5.7.2 (6bd7584d)
Reading from stdin
Solving...
Answer: 1
seq(1,5) seq(2,8) seq(3,3) seq(4,7) seq(5,6) seq(6,0) seq(7,10) seq(8,1) seq(9,9) seq(10,2) seq(11,4)
SATISFIABLE

Models       : 1+
Calls        : 1
Time         : 0.085s (Solving: 0.01s 1st Model: 0.01s Unsat: 0.00s)
CPU Time     : 0.000s

.

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

79628826

Date: 2025-05-19 13:21:44
Score: 0.5
Natty:
Report link

You can update your package.json instead just like this

{
    "private": true,
    "type": "module",   /*add this line to your package.json */
    "scripts": {
        "dev": "vite",
        "build": "vite build"
    },
    "devDependencies": {
        "@tailwindcss/forms": "^0.5.2",
        "alpinejs": "^3.4.2",
        "autoprefixer": "^10.4.21",
        "axios": "^1.1.2",
        "laravel-vite-plugin": "^0.7.2",
        "postcss": "^8.4.31",
        "tailwindcss": "^3.1.0",
        "vite": "^4.0.0"
    }
}

remember to remove the comment from the snippet.
thanks.

Reasons:
  • Blacklisted phrase (0.5): thanks
  • Long answer (-0.5):
  • Has code block (-0.5):
  • Low reputation (1):
Posted by: Dinesh Rao

79628824

Date: 2025-05-19 13:20:44
Score: 0.5
Natty:
Report link

There are different width and height sizes on all phones. When often phones have higher height.

But you want to look at how much pixels you want to use.

Depending on your video creation program, some can show right your video

Here is the list of pixel sizes and viewports that you can learn from:

https://mediag.com/blog/popular-screen-resolutions-designing-for-all/

By my definition I would use 1080 x 1920 pixels for a video. And 1440 x 2280 pixels for more detailed video. This range will become a good video uploaded on perhaps TikTok. And the downscale upscale will be lesser beat than putting a square video out. Especially phones do not render square video properly unless in the middle of the screen.

By using 320 x 568 you can then have videos that are lesser in pixel, but still will look good on most phones. This truly costs lesser for upload through paid internet. But this size will have lesser details. It's good for posters or simple things that need to get out that does not need full quality.

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

79628822

Date: 2025-05-19 13:20:44
Score: 3
Natty:
Report link

Use ${/} variable to get the proper slash. An it also depends on your shell configures in VSCode. IE: you could use git-bash in windows.

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

79628821

Date: 2025-05-19 13:19:43
Score: 1.5
Natty:
Report link
if(greaterOrEquals(int(formatDateTime(utcNow(),'MM')),4),
   concat('FY',formatDateTime(utcNow(),'yyyy'),'-',substring(string(add(int(formatDateTime(utcNow(),'yyyy')),1)),2,2)),
   concat('FY',string(sub(int(formatDateTime(utcNow(),'yyyy')),1)),'-',substring(formatDateTime(utcNow(),'yyyy'),2,2)))
Reasons:
  • Low length (0.5):
  • Has code block (-0.5):
  • Self-answer (0.5):
  • Has no white space (0.5):
  • Low reputation (0.5):
Posted by: Sid

79628814

Date: 2025-05-19 13:12:41
Score: 5
Natty:
Report link

This blog offers a helpful guide for migrating from Amazon OpenSearch (Elasticsearch) to a Google Cloud VM-based cluster. https://medium.com/google-cloud/migrating-from-amazon-opensearch-elasticsearch-to-a-google-cloud-vm-based-cluster-fe9f8a637ff0

Reasons:
  • Blacklisted phrase (1): This blog
  • Blacklisted phrase (0.5): medium.com
  • Probably link only (1):
  • Low length (1):
  • No code block (0.5):
  • Single line (0.5):
  • Low reputation (0.5):
Posted by: Utkarsh Sharma

79628811

Date: 2025-05-19 13:10:40
Score: 1.5
Natty:
Report link

Only option is [ConnectCallback](https://learn.microsoft.com/en-us/dotnet/api/system.net.http.socketshttphandler.connectcallback?view=net-9.0).

You can create SslStream, save certificates to HttpRequestMessage, and return that stream. When you return SslStream from ConnectCallback, SocketHttpHandler will skip it's own ssl connection establishment.

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

79628810

Date: 2025-05-19 13:10:40
Score: 2.5
Natty:
Report link

I hope this answer can help you.

  1. Verify GPUDirect RDMA Support:

    • Check if the kernel module nvidia-peermem is installed and loaded.

    • If it’s missing, you’ll need to install it using NVIDIA’s MOFED software stack.

  2. Test with Host (CPU) Memory First:

    • Before using GPU memory, test RDMA transfers using regular host memory.

    • This helps confirm that your RDMA setup and code are working correctly.

  3. Hardware Limitation:

    • Since your system shows a "NODE" connection, true GPUDirect RDMA is not possible in this configuration.

    • Unless you can physically move the GPU or NIC to a PCIe slot under the same root complex, you won't get direct GPU-to-GPU transfers.

  4. Current Behavior:

    • Your code likely performs an RDMA write, but the GPU memory on the receiver side isn’t updated because GPUDirect is not functional.

    • That’s why the receiver’s GPU buffer shows no change

If you have any further question please let me know.

BR,

Dolle

Reasons:
  • RegEx Blacklisted phrase (2.5): please let me know
  • Long answer (-0.5):
  • Has code block (-0.5):
  • Low reputation (1):
Posted by: ferferfer

79628808

Date: 2025-05-19 13:09:39
Score: 3
Natty:
Report link

Write an email to the support, they can help you in a few days

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

79628797

Date: 2025-05-19 13:01:36
Score: 0.5
Natty:
Report link

I've tried all suggestions, nothing helped. Than it struck me. I have an external screen that I am using with is regular density, while the built in screen of my MacBook is indeed retina.

Then I grabbed the Safari window, put it on the retina screen, and boom, every font became clear and just the weight as it was supposed to be.

So what happens is that Safari renders fonts different for high DPI screens and regular screens. But when you have both a high-dpi retina screen and a regular screen attached at the same time, Safari activates the retina font rendering, but the retina font renderer somehow messes up the antialiasing when the actual rendering happens on a regular screen and suddenly every font looks just way too bold.

Moral of the story: don't try to fix it in CSS, because it is a lower level issue with how Safari and macOS handles the font rendering. In other words it is an edge case apple bug that happens when you use different resolution screens together.

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

79628796

Date: 2025-05-19 13:00:36
Score: 2
Natty:
Report link

The Regular expression (<p[^>]*>*?<\/p>)(*SKIP)(*F)|<p[^>]*>.*?<\/h\d+> helped match the needful, that is, it matched line 2 and then line 3, separately

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

79628785

Date: 2025-05-19 12:52:34
Score: 1.5
Natty:
Report link

# is the CSS selector for an ID, but since social-icons-dRoPrU-Itp is a class, you would want to use ., so you would have to use .social-icons-dRoPrU-Itp (notice the period before it), which selects all elements in that class.

Reasons:
  • Low length (0.5):
  • Has code block (-0.5):
  • Single line (0.5):
  • Starts with a question (0.5): is the
  • Low reputation (0.5):
Posted by: Twineee The Zelda Wizard

79628783

Date: 2025-05-19 12:50:33
Score: 3
Natty:
Report link

Natgr8f

header 1 header 2
cell 1 cell 2
cell 3 cell 4
Reasons:
  • Low length (1.5):
  • No code block (0.5):
  • Low reputation (1):
Posted by: nahid alam

79628778

Date: 2025-05-19 12:47:32
Score: 5
Natty: 5
Report link

I am running int othe same issue.
what type of SD card worked? is it an SDHC or an SDUC?

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

79628758

Date: 2025-05-19 12:35:29
Score: 2.5
Natty:
Report link

Have you considered any answer to this question Migrating existing Nextcloud user account to LDAP already? There is mentioned a manual solution with some database manipulation as well as a semiautomatical solution using the User Migration app.

Update: This post also mentions the transfer-ownership solution.

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

79628740

Date: 2025-05-19 12:24:25
Score: 1.5
Natty:
Report link

Try npm login

username
password

install packages again: npm install

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

79628724

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

Within the "Storage"-tab in developer tools the indexeddb will be listed.

https://developer.mozilla.org/en-US/docs/Tools/Storage_Inspector

However, to get a look at the indexes, it's a bit different than in chromium (Chrome/Edge..) developer tools: In FF you have to select the database itself. After that you can select the object store on the right to get a more detailed view of the object store meta data.

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

79628718

Date: 2025-05-19 12:16:23
Score: 3
Natty:
Report link

From what I've seen (at least for 2D arrays)
np.dot(a , b.T ) = np.inner( a , b )

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

79628716

Date: 2025-05-19 12:16:23
Score: 3
Natty:
Report link

What you also could use is some container technology. Docker is very invasive. Charliecloud/singularity/apptainer maybe less so.

That way, you can have a rather new glibc inside the container, which is used by your program then, while your host system still has a rather old glibc.

Reasons:
  • Low length (0.5):
  • No code block (0.5):
  • Unregistered user (0.5):
  • Starts with a question (0.5): What you also
  • Low reputation (1):
Posted by: Joe

79628710

Date: 2025-05-19 12:12:22
Score: 3
Natty:
Report link

interessanter Ansatz aber das hat nicht so einwandfrei funktioniert

Kuss und gruß

Marvin u. Luis

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

79628709

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

https://support.google.com/accounts/answer/14012355?hl=en&sjid=6320154799544542694-EU

Describe: Manage data in your Google Account: Third-party apps or services may request permission to edit, upload, create, or delete data in your Google Account.

For example:
    A film editor app may edit your video and upload it to your YouTube channel.

So, yes, is possible to give permissions to an application, to write in someone else Youtube-channel. Even if is a potencial security issue, Google warn about this permissions, giving the user the hability to manage those application.

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

79628705

Date: 2025-05-19 12:11:21
Score: 0.5
Natty:
Report link

A Progressive Web App (PWA) is essentially a website that behaves like a mobile app. It’s accessed through a web browser but offers app-like features such as offline access, push notifications, and the ability to be installed on a device's home screen; without needing to go through app stores. PWA are built using standard web technologies like HTML, CSS, and JavaScript, and they’re designed to work on any device with a modern browser. They are lightweight, fast, and ideal for businesses looking to offer a mobile-friendly experience without the cost and complexity of native apps.

On the other hand, a Hybrid Mobile App is a real app that you download from app stores like Google Play or the Apple App Store. It’s also built using web technologies, but it runs inside a native container that allows it to access device features such as the camera, GPS, or file system; features that are often limited or unavailable in PWA. Hybrid apps offer more native-like functionality but may involve more development time and cost, especially when dealing with performance optimisation and app store compliance.

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

79628701

Date: 2025-05-19 12:08:21
Score: 2
Natty:
Report link

The "Future home of something quite cool" message is GoDaddy's default placeholder page that appears when your domain is properly pointing to GoDaddy's servers, but your Django application files aren't being served correctly.

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

79628700

Date: 2025-05-19 12:08:21
Score: 0.5
Natty:
Report link

In case this helps anyone.
In my case, a simple 'ehcache.xml' (without / or classpath or anything fancy) works.

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

79628693

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

Kafka throw this exception whenever SSL client tries to connect Non-SSL Broker

You will also get this error if you try SSL broker connection with Non-SSL Controller

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

79628692

Date: 2025-05-19 12:05:20
Score: 5
Natty: 5.5
Report link

nice!

biggest b2b food trade show

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

79628690

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

The issue was that I was using the same notification ID as the bubbles for the service.

Once I separated the service notification from the bubbles notifications, everything works as intended.

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

79628689

Date: 2025-05-19 12:03:19
Score: 0.5
Natty:
Report link

found the source of the problem, it's because i nested Menu element within the MenuItem element, which is unnecessary and a mistake on my part

adjusted Titlebar.xaml code

<Menu
    Grid.Column="0"
    HorizontalAlignment="Left"
    VerticalAlignment="Center"
    Style="{StaticResource MenuStyle1}">
    <MenuItem Header="File" Style="{StaticResource MenuItemStyle1}">
        <MenuItem
            Command="{Binding OpenCommand}"
            Header="Open"
            Style="{StaticResource MenuItemStyle1}" />
        <MenuItem
            Command="{Binding SaveCommand}"
            Header="Save"
            Style="{StaticResource MenuItemStyle1}" />
        <MenuItem Header="Close" Style="{StaticResource MenuItemStyle1}" />
    </MenuItem>

</Menu>
Reasons:
  • Long answer (-0.5):
  • Has code block (-0.5):
  • Self-answer (0.5):
  • Low reputation (1):
Posted by: AAng

79628687

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

I'm going to throw out there that the "Size" and "Color" columns...as in the columns that simply say "Size" and "Color" on every row are completely pointless and can just be deleted. You can then create a pivot table from the actual data like so:

Pivot table example

Reasons:
  • Low length (0.5):
  • No code block (0.5):
  • Single line (0.5):
Posted by: andrewb

79628678

Date: 2025-05-19 11:56:15
Score: 1
Natty:
Report link

You must use promise.all Example:

const promise1 = new Promise(resolve => setTimeout(() => resolve("Result 1"), 1000));
const promise2 = new Promise(resolve => setTimeout(() => resolve("Result 2"), 1500));
const promise3 = new Promise(resolve => setTimeout(() => resolve("Result 3"), 500));

Promise.all([promise1, promise2, promise3])
  .then(([result1, result2, result3]) => {
    console.log(result1);
    console.log(result2);
    console.log(result3);
  })
  .catch(error => {
    console.error(error);
  });

async function run() {
  try {
    const [result1, result2, result3] = await Promise.all([promise1, promise2, promise3]);
    console.log(result1);
    console.log(result2);
    console.log(result3);
  } catch (error) {
    console.error(error);
  }
}

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

79628673

Date: 2025-05-19 11:53:14
Score: 0.5
Natty:
Report link

It should work simply setting the value to None and optionally refreshing the UI:

def reset():
    dropdown.value = None  # Reset the dropdown to its initial state
    dropdown.update()      # Refresh the UI
Reasons:
  • Low length (0.5):
  • Has code block (-0.5):
  • Low reputation (0.5):
Posted by: André

79628658

Date: 2025-05-19 11:46:12
Score: 1
Natty:
Report link

Following on Nick's kind answer, here are two concrete ways to solve my problem (which is caused by all syntax options that start on "no" to be "rephrased" by Stata into the contrapositive statement without the "no"):

  1. syntax [, nosort]

if "`sort'" != "" ...

  1. syntax [, NOSort]

if "`nosort'" != "" ...

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

79628656

Date: 2025-05-19 11:44:12
Score: 1
Natty:
Report link

The issue seems to be that the tileDisabled function is not correctly filtering out weekends (Saturdays and Sundays) and is allowing them to be displayed as enabled, even though they are not in the availableDates array. The current logic in tileDisabled only checks if a date is in sanitizedAvailableDates or if it's before the current date, but it doesn't explicitly account for weekends.

Try modifying the tileDisabled function to explicitly disable any date that is not in sanitizedAvailableDates. If you want to ensure weekends are not mistakenly enabled, you can add a check for weekends if needed, but the primary issue is that the tileDisabled logic isn't strict enough.

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

79628654

Date: 2025-05-19 11:40:11
Score: 1.5
Natty:
Report link

This should simply your search, finding file names that ends with *.rdc
$currSourceFolder = "C:\MyReports\MDX\"
Get-Childitem -Path $currSourceFolder | ? {$_.name -like "*.rdc"}

or even a specific search with extensions only like

get-childitem -Path "C:/temp/" | ? {$_.extension -like ".rdc"}

both should give the desired result, obvuiously you can more parameters

Reasons:
  • No code block (0.5):
  • Contains question mark (0.5):
  • Low reputation (0.5):
Posted by: BALAJI PILLAI