79787452

Date: 2025-10-10 14:38:48
Score: 0.5
Natty:
Report link

I notice the same thing, there might be a bug in Safari.

The selected response provides a very clunky way of updating the permission state, which is valid but not optimal.

Optimally the change event fires and the assigned listeners trigger (if it would work as expected). But if a separate optimal way of figuring out permissions is wanted (like Nightwalker's answer attempted to propose) you would just await the getUserMedia promise, and if it resolves with no errors, then permission is granted.

No need for intervals or any weird hacky solutions.

If the user denies, the getUserMedia request will throw with a DOMException name of NotAllowedError (some browsers may handle it with a different error, but you can infer it by testing in a catch/log).

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

79787447

Date: 2025-10-10 14:31:46
Score: 2
Natty:
Report link

You could just use a free AI model's API and connect it through flask as a backend so no one can see your API key. Try Cohere. If you want your AI model locally installed which means users of your website would directly interact with your server, try llama.

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

79787437

Date: 2025-10-10 14:20:43
Score: 1
Natty:
Report link

With GROUPBY the formula in cell D1 looks like this:

=GROUPBY(B:B,A:A,SUM,3,0)

result table

GROUPBY function reference

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

79787420

Date: 2025-10-10 14:03:39
Score: 0.5
Natty:
Report link

Years later but if anyone else is looking, tou can get the version from the .msi with this:

        private String GetVersionFromMsi(string FilePath)
        {
            //var FilePath = @"C:\Users\self\path\to\your\installFile.msi";
            var view = ((dynamic)Activator.CreateInstance(Type.GetTypeFromProgID("WindowsInstaller.Installer")))
                .OpenDatabase(FilePath, 0)
                .OpenView("SELECT Value FROM Property WHERE Property = 'ProductVersion'");
            view.Execute();
            string version = view.Fetch().StringData(1);
            return version;
        }

From https://stackoverflow.com/a/76829255/7303640

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

79787419

Date: 2025-10-10 14:03:39
Score: 0.5
Natty:
Report link

There will be two issues in the code which might be causing the filter problem , below fixes solve the problem

  1. "enforceFocus" needs to be part of Dialog box, so that its need to be editable on Dialog window

  2. Another issue can be with DataGrid implementation where getRowId needs to be unique for each field.
    example as
    getRowId={(row) => row.lineNumber +row.errorDescription}

Reasons:
  • No code block (0.5):
Posted by: Sandeep Jain

79787416

Date: 2025-10-10 14:02:38
Score: 0.5
Natty:
Report link

@cimentadaj
You've answered your own question on the "echo t doesn't get executed"
that's it, the echo t is skipped and the false part is, then, executed

Thisk this way: We have to see && as then and || as else

Only one of them is executed after the IF ( [[ ]] ) evaluation

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

79787388

Date: 2025-10-10 13:30:31
Score: 3
Natty:
Report link

go to git bash terminal and run for example

curl --proto '=https' --tlsv1.2 -sSf https://sh.rustup.rs | sh

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

79787380

Date: 2025-10-10 13:24:29
Score: 2
Natty:
Report link

No such function in IntelliJ as of now. But there is an open source app that I use for this. You can configure how your F-keys behave per app. So you can set them as F1-F12 in IntelliJ and keep them as media control everywhere else. https://github.com/Pyroh/Fluor

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

79787367

Date: 2025-10-10 13:09:25
Score: 4
Natty: 4.5
Report link

You now can just use <DataGrid d:ItemsSource="{d:SampleData}"/>

https://learn.microsoft.com/en-us/visualstudio/xaml-tools/xaml-design-time-sample-data?view=vs-2022

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

79787363

Date: 2025-10-10 13:00:23
Score: 2
Natty:
Report link

Works just fine:

baseContext.resources.configuration.setLocale(Locale.GERMAN)
Reasons:
  • Low length (1.5):
  • Has code block (-0.5):
  • Has no white space (0.5):
  • Low reputation (0.5):
Posted by: kalinjul

79787359

Date: 2025-10-10 12:52:21
Score: 3.5
Natty:
Report link

I have't solution for my issue. But I does custom field and changed my update form with tis way. Why Backpack have't simply solutions for relations? All Laravel bulds with relations. Very strange situation!

Reasons:
  • Low length (0.5):
  • No code block (0.5):
  • Contains question mark (0.5):
  • Self-answer (0.5):
  • Single line (0.5):
  • Low reputation (1):
Posted by: Alex Cool

79787356

Date: 2025-10-10 12:46:20
Score: 1
Natty:
Report link

I have figured it out ... I've just added pointless data that I can ignore elsewhere in a normal SQL SELECT column, and kept the data that I need in the secondary column.

Here is the 'ALTER' statement:

SET ANSI_NULLS ON
GO
SET QUOTED_IDENTIFIER ON
GO
ALTER VIEW [dbo].[INF_GetWebOrder_JsonNoBillNoLines] AS
SELECT 
  dbassyOrderio.OrderNo AS 'OrderyNumNum',
  JSON_OBJECT(
    /*StaticDataStart*/
    'currencyCode': 'GBP',
    /*StaticDataEnd*/
    'phoneNumber':dbassyOrderio.Telephone,
    'email':dbassyLoggyLogins.Email
   ABSENT ON NULL) AS 'OrderishData'
FROM
    db_Orders AS dbassyOrderio
INNER JOIN 
    db_Logins AS dbassyLoggyLogins ON dbassyOrderio.LoginId = dbassyLoggyLogins.Id
GO

PERFECT!

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

79787341

Date: 2025-10-10 12:30:16
Score: 2
Natty:
Report link

There is a feature request about it:

Support for the C++ decimal floating-point types (for "decimal floating point arithmetic")
https://bugreports.qt.io/browse/QTBUG-33026

where you can vote.

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

79787336

Date: 2025-10-10 12:24:14
Score: 1.5
Natty:
Report link

BUT… if your route is not under api/*, then CSRF validation will still run, and Postman does not send a CSRF token by default. This causes Laravel to reject the request with 401 (or sometimes 419, depending on your Laravel version).

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

79787335

Date: 2025-10-10 12:23:14
Score: 2.5
Natty:
Report link

Got an answer from Microsoft on a mail I sent:

To improve LOB read performance, you can update the additional linked service property initialLobFetchSize to -1.

It works! Additional info about the setting: https://docs.oracle.com/en/database/oracle/oracle-database/21/odpnt/CommandInitialLOBFetchSize.html

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

79787333

Date: 2025-10-10 12:20:13
Score: 0.5
Natty:
Report link

I ran into this issue and took some time to explore what the underlying layout rules were that were causing it.

It turns out that CSS is very quirky in the way that it calculates scroll container sizing.

Adding an empty wrapping container is enough to make the padding be ignored.

In the end I made the parent container display flex and it respected the padding.

Here's a playground describing the issue that I built with claude: https://play.tailwindcss.com/mMfH4nM2xo

Reasons:
  • No code block (0.5):
Posted by: Marcos Pereira

79787328

Date: 2025-10-10 12:12:11
Score: 2
Natty:
Report link

You most likely need to set the hostname that Duplicati should accept:

environment:
          - DUPLICATI__WEBSERVICE_INTERFACE=any
          - DUPLICATI__WEBSERVICE_ALLOWED_HOSTNAMES: example.com;other.example.com

This is described in the docs:

https://docs.duplicati.com/detailed-descriptions/using-duplicati-from-docker#hostname-access

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

79787327

Date: 2025-10-10 12:10:11
Score: 1
Natty:
Report link

It seems Google has recently restricted access to Colab from Iran (like almost every other service). Honestly, I'm a bit surprised it took them this long (considering they have cut Iranian access to most of their services years ago). They usually return a 403 error, but this time the error is 404.

Consider using a VPN. I think there is no other way currently

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

79787325

Date: 2025-10-10 12:08:10
Score: 2.5
Natty:
Report link

Currently, to close the last Jupyter notebook version properly from the web browser File --> Shut Down. It completely stops the server and shuts down all kernels in the notebook.

enter image description here

Terminal screen shows that all the processes were shut down. Terminal screen can be closed.

enter image description here

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

79787324

Date: 2025-10-10 12:08:10
Score: 1
Natty:
Report link

For me the problem was that my venv was somehow damaged, probably after a VS update, as @user2577923 pointed out. The solution was rather simple:

  1. Export the dependencies from the existing venv to a requirements.txt (if not already present)
  2. Remove the existing venv
  3. Create a new venv, using the right python version and requirements.txt

Now it should work again. I used the python environments extensions to perform these actions, although you could also do this using the command line.

Reasons:
  • Has code block (-0.5):
  • User mentioned (1): @user2577923
  • Low reputation (0.5):
Posted by: Sam Beard

79787320

Date: 2025-10-10 12:06:10
Score: 1
Natty:
Report link

The SonarQube rule cpp:S5213 ("Functions should not be declared with a default argument value of an empty lambda expression") does not explicitly mandate that functions accepting lambdas must be implemented in the header (.h) file. Instead, it addresses a specific issue related to the use of default lambda expressions as function parameters.What cpp:S5213 is AboutThe rule flags functions that declare a default argument value for a parameter that is a lambda expression (e.g., [](){}).

The concern is that default lambda expressions can lead to unclear or unexpected behavior, as lambdas are often used for customization, and providing a default (especially an empty one) might obscure the function's intent or lead to maintenance issues.

It encourages developers to avoid default lambda arguments or to carefully consider their necessity.

Does it Imply Implementation in the .h File?No, the rule does not directly relate to where the function is implemented (header file vs. source file). It focuses solely on the declaration of the function and the use of default lambda arguments. Whether the function is implemented in a .h file (inline) or a .cpp file (separate compilation) is orthogonal to this rule. However, there are scenarios where implementing a function accepting a lambda in a header file might be relevant:Templates: If the function is a template that accepts a lambda (e.g., template<typename Func> void foo(Func&& func)), it typically needs to be defined in the header file because template definitions must be visible at the point of instantiation. This is a C++ language requirement, not a SonarQube rule.

Inline Functions: If the function is marked inline or is implicitly inline (e.g., defined within a class in a header), it would naturally reside in the .h file. But this is a design choice, not a requirement of cpp:S5213.

ExampleThe following would trigger cpp:S5213:cpp

// In header or source file

void process(int x, std::function<void(int)> callback = [](){});

The rule would flag the default empty lambda [](){}. It doesn't care whether process is implemented in a .h or .cpp file—it only cares about the default argument.To comply with cpp:S5213, you could:Remove the default lambda:cpp

void process(int x, std::function<void(int)> callback);

Or provide a meaningful default if necessary:cpp

void process(int x, std::function<void(int)> callback = [](int x){ std::cout << x; });

Key TakeawayThe cpp:S5213 rule is about avoiding default empty lambda expressions in function declarations, not about mandating where the function is implemented. The decision to place the implementation in a .h or .cpp file depends on other factors, such as whether the function is a template, inline, or part of a class, and is not influenced by this rule.

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

79787294

Date: 2025-10-10 11:45:04
Score: 2
Natty:
Report link

Try UIGlassEffect!

This should replicate the glassEffect behavior from SwiftUI introduced in iOS 26.

Reasons:
  • Low length (1.5):
  • No code block (0.5):
Posted by: Erika Electra

79787283

Date: 2025-10-10 11:33:02
Score: 1.5
Natty:
Report link

Support of data_assets in Flutter can be activated by command:

flutter config --enable-dart-data-assets
Reasons:
  • Low length (1):
  • Has code block (-0.5):
  • Self-answer (0.5):
  • Low reputation (0.5):
Posted by: blackbearman

79787279

Date: 2025-10-10 11:27:01
Score: 1.5
Natty:
Report link

The issue was that I used pyenv-win that incorrectly parsed the arguments in this case . I am not sure what the exact issue , but when working directly with the python exe it is solved.

Reasons:
  • Whitelisted phrase (-1): it is solved
  • Low length (0.5):
  • No code block (0.5):
  • Self-answer (0.5):
  • Single line (0.5):
  • Low reputation (0.5):
Posted by: user2679290

79787278

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

to use colors in WPF, you can do this:


txbName.BorderBrush = (SolidColorBrush)(new BrushConverter().ConvertFrom("#00b4d8"));

//-- OR

txbName.BorderBrush = new SolidColorBrush(Color.FromRgb(255, 0, 128));

This way, you should be able to use both Hex and RGB colors :)

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

79787277

Date: 2025-10-10 11:27:01
Score: 0.5
Natty:
Report link

The best option i found was to use

<mat-slide-toggle [checked]="isChecked()" (mousedown)="toggle($event)" />

then in the function

toggle(event: any) {
  event.preventDefault();
}

this basically helps to capture the mouse event before any click event is done

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

79787276

Date: 2025-10-10 11:26:00
Score: 0.5
Natty:
Report link

I changed kadmin command to kadmin.local and it worked for me

Reasons:
  • Whitelisted phrase (-1): it worked
  • Whitelisted phrase (-1): worked for me
  • Low length (1.5):
  • Has code block (-0.5):
  • Single line (0.5):
  • Low reputation (1):
Posted by: khushi jain

79787273

Date: 2025-10-10 11:21:59
Score: 1
Natty:
Report link

When ActiveMQ Artemis brokers use replication, the master node needs to confirm backup replication before acknowledging client messages. When the backup node is not shut down gracefully, the master nodes wait for a timeout before giving up on the backup replication.

Reasons:
  • Low length (0.5):
  • No code block (0.5):
  • Single line (0.5):
  • Starts with a question (0.5): When
  • High reputation (-1):
Posted by: Domenico Francesco Bruscino

79787256

Date: 2025-10-10 11:03:55
Score: 0.5
Natty:
Report link

You can create new mock for particular test method:

service = Mockito.mock(Service.class)

Or use Mockito.reset(service) in the test case.

Bot methods will override your @BeforeEach configuration.

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

79787248

Date: 2025-10-10 10:52:52
Score: 1
Natty:
Report link

You can extract the email using: outputs('YourComposeStep')?['storeManager']?['Email']

If storeManager is an array, you can use: outputs('YourComposeStep')?['storeManager'][0]?['Email'] Adjust the index [0] based on the position of the person in the array.

Reasons:
  • Whitelisted phrase (-1.5): you can use
  • Low length (0.5):
  • No code block (0.5):
  • Contains question mark (0.5):
  • Low reputation (1):
Posted by: Priyanka Dhande

79787247

Date: 2025-10-10 10:52:52
Score: 2.5
Natty:
Report link

In Artemis MQ, disabling the backup node can lead to connection timeouts as failover coordination is disrupted. Ensure proper cluster configuration and graceful shutdown to maintain message flow and stability.

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

79787236

Date: 2025-10-10 10:36:49
Score: 1
Natty:
Report link

To use a custom font in a Python visual in Power BI:

  1. Install the font on your system.

  2. Use Python libraries like matplotlib and set the font:

import matplotlib.pyplot as plt
plt.rcParams['font.family'] = 'YourCustomFontName'
plt.plot([1,2,3], [4,5,6])
plt.title('Chart with Custom Font')
plt.show()
  1. Refresh the visual in Power BI Desktop.

Note: Custom fonts may not render in Power BI Service, so consider exporting the visual as an image if needed.

💡 Pro Tip: To master Power BI and learn advanced techniques like Python visuals, DAX, and interactive dashboards, ABCD Academy offers the best Power BI online course in Hyderabad with hands-on projects and real-world examples.

Reasons:
  • Contains signature (1):
  • Long answer (-0.5):
  • Has code block (-0.5):
  • Low reputation (1):
Posted by: ABCD Academy

79787226

Date: 2025-10-10 10:18:46
Score: 0.5
Natty:
Report link

You can try adding __init__.py in src/ and src/agent/, then set

export PYTHONPATH=src

or maybe add PYTHONPATH=src to your .env

Also update langgraph.json to use

"Graph with Memory": "agent.graph:graph"

so langgraph dev can import it properly

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

79787225

Date: 2025-10-10 10:18:46
Score: 3
Natty:
Report link

You can retrieve and reply to Teams channel messages in PowerApps, but not directly. You’ll need to use Microsoft Graph API or Power Automate as intermediaries

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

79787220

Date: 2025-10-10 10:09:44
Score: 1
Natty:
Report link

Thank you for that response @Argyll. You helped me go from this utter monstrosity:

=let(myarray, MAKEARRAY(6, MAX(Lookup!$F$2:$G$7), LAMBDA(row_index, column_index, if(column_index<=INDEX(Lookup!$F$2:$G$7, row_index, 2), if(column_index=1, INDEX(Lookup!$F$2:$G$7, row_index, 1), CONCATENATE(INDEX(Lookup!$F$2:$G$7, row_index, 1), "+", column_index-1)), ""))), MAKEARRAY(SUM(Lookup!$F$2:$G$7), 1, LAMBDA(row_index, column_index, INDEX(SPLIT(TEXTJOIN(",", 1, myarray), ","), column_index, row_index))))

To this:

=LET(ranks, TRANSPOSE(SPLIT(JOIN(", ", BYROW(F2:G7, LAMBDA(r, REPT(concat(index(r, 1, 1), ", "), index(r, 1, 2))))), ", ", FALSE, TRUE)), sca, scan(0, ranks, LAMBDA(a, c, a+1)), res, scan(0, sca, LAMBDA(a, c, if(c-1<1,"", if(index(ranks, c-1, 0)=index(ranks, c, 0), concat("+",TEXT(a+counta(c), 0)), "")))), byrow(sca, LAMBDA(a, CONCAT(index(ranks, a, 0), index(res, a, 0)))))

Which is much cleaner, or at least I *think* it is. It does the job anyway and uses no 'makearray' functions. Both take this in F1:G7 ;

Colour Levels
White 1
Green 2
Blue 3
Violet 4
Orange 5
Red 3

and turns it into;

White
Green
Green+1
Blue
Blue+1
Blue+2
Violet
Violet+1
Violet+2
Violet+3
Orange
Orange+1
Orange+2
Orange+3
Orange+4
Red
Red+1
Red+2

I know it doesn't use Offset, but you showing Offset gave me the idea to use Index the same way.

Reasons:
  • Blacklisted phrase (0.5): Thank you
  • Long answer (-1):
  • Has code block (-0.5):
  • User mentioned (1): @Argyll
  • Low reputation (1):
Posted by: Eewec

79787218

Date: 2025-10-10 10:07:43
Score: 2
Natty:
Report link

I tested the patch proposed for openpyxl ver 3.1.5 at https://foss.heptapod.net/openpyxl/openpyxl/-/issues?sort=created_date&state=opened&search=ValueError%3A+I%2FO+operation+on+closed+file.&first_page_size=20&show=eyJpaWQiOiIyMjc5IiwiZnVsbF9wYXRoIjoib3BlbnB5eGwvb3BlbnB5eGwiLCJpZCI6MjA3ODQ4fQ%3D%3D

The patch does NOT comment the closing file pointer in openpyxl\dawing\image.py , but organize in a different way the if statement (maybe it was a formatting error ?)

I tested both the version with commenting the #fp.close() , and the version in the proposed patch.
Both seems to work...
Maybe better to keep the proposed patch, because of possible too many files open error due to many fp opened if your are dealing with maaaany images...

Reasons:
  • Probably link only (1):
  • Has code block (-0.5):
  • Contains question mark (0.5):
  • Low reputation (1):
Posted by: Giuliano69

79787207

Date: 2025-10-10 10:00:42
Score: 1
Natty:
Report link

Just in case anybody is still looking for it, there is an option now to just re-run the tests only:

https://learning.postman.com/docs/tests-and-scripts/write-scripts/test-scripts/#add-a-post-response-test

In the Test Results tab, you can click Refresh results in the upper right of the response pane to refresh your test results. This gives you the option to refresh your test results without re-sending the request.

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

79787206

Date: 2025-10-10 09:59:41
Score: 2.5
Natty:
Report link

Look as far as i know EBC trek one of the best adventure you can have and my experience was stunning and fantastic. I booked travel agency in Nepal that was Sherpa expedition and trekking company. This was the agency i booked 2 years ago and the guide was fabulous and i enjoyed a lot.

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

79787199

Date: 2025-10-10 09:53:40
Score: 2.5
Natty:
Report link

Great insights on StackOverflow! Your clear explanations and collaborative spirit make problem-solving so much easier.

Abacus Trainer provides innovative learning programs that introduce abacus for schools, helping students strengthen their mental arithmetic skills. By integrating the abacus in mathematics, the platform enhances calculation speed, accuracy, and concentration, making abacus in maths an engaging and effective tool for young learners.

<a href="https://www abacus for schools,/contactus"> abacus in mathematics, /a>

Reasons:
  • Blacklisted phrase (1): StackOverflow
  • Long answer (-0.5):
  • No code block (0.5):
  • Unregistered user (0.5):
  • Low reputation (1):
Posted by: deccan spark

79787178

Date: 2025-10-10 09:30:34
Score: 0.5
Natty:
Report link

There will be two issues pretending for the same :

  1. "enforceFocus" needs to be part of Dialog box, so that its need to be editable on Dialog window
  2. Another issue can be with DataGrid implementation where getRowId needs to be unique for each field.
    example as
    getRowId={(row) => row.lineNumber +row.errorDescription}
Reasons:
  • No code block (0.5):
Posted by: Sandeep Jain

79787177

Date: 2025-10-10 09:29:34
Score: 0.5
Natty:
Report link

In postgres max query parameter limit is 65535, so if you have more parameters than that itll throw an error.

So for instance, an insert of 10,000 rows each having 7 columns, will have 70,000 params to be sent to the query and hence it will break.

Keep the parameters under 65535 limit.

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

79787171

Date: 2025-10-10 09:18:31
Score: 0.5
Natty:
Report link
affinity:
  nodeAffinity:
    preferredDuringSchedulingIgnoredDuringExecution:
      - weight: 80
        preference:
          matchExpressions:
            - key: topology.kubernetes.io/zone
              operator: In
              values:
                - aps-1
      - weight: 20
        preference:
          matchExpressions:
            - key: topology.kubernetes.io/zone
              operator: In
              values:
                - aps-2

Lets say I want to keep 80% of my workload in aps-1 and 20% in aps-2 so will my config work in that case

Reasons:
  • RegEx Blacklisted phrase (1): I want
  • Long answer (-0.5):
  • Has code block (-0.5):
  • Low reputation (0.5):
Posted by: Sujay_ks

79787155

Date: 2025-10-10 08:58:27
Score: 1
Natty:
Report link

On macOS (and other Unix-based systems), the way strings are encoded into bytes can differ slightly if you use non-ASCII characters (like ú, ő, or other accented letters) in your JWT secret key.
Because SymmetricSecurityKey expects a byte-exact key, even a small encoding difference makes the token signature invalid.

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

79787150

Date: 2025-10-10 08:54:26
Score: 0.5
Natty:
Report link

I don't know Grape, but you probably need to add the groovy plugin in your dependencies in order to compile the Spock tests.

Gradle example:

plugins {
    id 'java'
    id 'groovy'
}
Reasons:
  • Low length (0.5):
  • Has code block (-0.5):
  • Low reputation (0.5):
Posted by: august0490

79787148

Date: 2025-10-10 08:53:26
Score: 3
Natty:
Report link

Your questions is underrated and deserved more engagement. I am working on building that so everyone can import with one-to-a few lines of code.

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

79787147

Date: 2025-10-10 08:51:25
Score: 2.5
Natty:
Report link

I downloaded the Oracle installation in the folder: C:\sw\WINDOWS.X64_193000_client\client

When i select "Administrator" in step 1, the installation does not proceed.

enter image description here

In the Task Manager the installation process exceeded one gigabyte of memory.

My PC is a

Lenovo P16 GEn.2

32 GB Ram

Intel i7-13850HX

O.S.

Windows 11 Enterprise 10.0.26100 build 2600

Reasons:
  • Blacklisted phrase (1): enter image description here
  • No code block (0.5):
  • Low reputation (1):
Posted by: Senna79

79787144

Date: 2025-10-10 08:48:24
Score: 0.5
Natty:
Report link

this correctly type checks and has identical behavior:

let x = 10;
const obj = ((function Y<B>(a:(_:() => B) => () => B): () => B {
    function Y1(b: typeof Y2): () => B {
        return b(b);
    }
    function Y2(c: typeof Y2): () => B {
        return a(() => c(c)());
    }
    return Y1(Y2);
})((rec: () => {}) => function() {
  if(--x) return rec();
  return {};
}))();
Reasons:
  • Has code block (-0.5):
  • Self-answer (0.5):
  • Low reputation (0.5):
Posted by: Bobby Morelli

79787140

Date: 2025-10-10 08:42:23
Score: 1
Natty:
Report link

Setting a production database to simple recovery is a bad idea, as it will affect your backup strategy and you won't be able to do a point in time restore.

When you run DBCC LOGINFO, you will see that the column status has values of 0 and 2. If there are 2s at the end of your log file, you won't be able to shrink it.

A way to go around is to choose a small clustered index, and rebuild it multiple times. That will start moving the 0s to the end of the file and when you run DBCC LOGINFO and see 0s at the end, you should be able to shink it.

I would put my index rebuild command into a loop of like 100 times and then check the output of DBCC LOGINFO when rebuild is done and if its 0s at the end then shrink should work.

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

79787137

Date: 2025-10-10 08:38:19
Score: 9 🚩
Natty:
Report link

Did you ever find a solution for this?
I am having the same problem.

Reasons:
  • RegEx Blacklisted phrase (3): Did you ever find a solution
  • Low length (1.5):
  • No code block (0.5):
  • Me too answer (2.5): I am having the same problem
  • Contains question mark (0.5):
  • Starts with a question (0.5): Did you
  • Low reputation (0.5):
Posted by: p45

79787135

Date: 2025-10-10 08:37:18
Score: 2
Natty:
Report link

Simple JetBrains IDEs solution (Intellij IDEA, WebStorm, etc.)

  1. Execute SELECT statement

  2. In the resulting view find Data Extractor settings: https://www.jetbrains.com/help/idea/data-extractors.html

  3. Choose "SQL Inserts", press "Export Data"

enter image description here

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

79787133

Date: 2025-10-10 08:33:17
Score: 0.5
Natty:
Report link

Using anonymous union , we can get address without such warning:

 #pragma pack(push, 4)
 typedef struct {
    union {
      int a;
      char a_addr[sizeof(int)];
    };
    union {
      double b;
      char b_addr[sizeof(double)];
    };
 } my_t;
 #pragma pack(pop)

use it as this: &my.b_addr.

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

79787130

Date: 2025-10-10 08:26:15
Score: 4
Natty:
Report link

MudLink has the property Underline. https://www.mudblazor.com/components/link#api

MudNavLink does NOT have the property Underline. https://www.mudblazor.com/api/mudnavlink#pages

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

79787128

Date: 2025-10-10 08:26:15
Score: 1.5
Natty:
Report link

Ok, so I ran into the same issue today, and none of the answers here seemed to work. However, there should be a very easy solution to this problem.

Instead of trying to see the values during the exception, can't you just add a breakpoint slightly before when the exception occurs? This way, your variable values should still be correct and viewable.

The only time this wouldn't work is when the exception occurs when changing the value that you want to view, but this in this case:

  1. The variable change is bases off of other variables that you CAN view just before the exception occurrence.

  2. The variable does not change based on any other factors except randomisers, magic numbers, etc. and should be easy to debug on itself.

  3. There is a scenario where I haven't thought of and there actually is a problem (although very unlikely).

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

79787122

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

Looks like this problem is back with Compose 2025.10, reverting back to compose 2025.09 solved my issue.

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

79787100

Date: 2025-10-10 07:50:07
Score: 2
Natty:
Report link

Finally client reached out to their Github Enterprise admin to find out.

Their Enterprise Admin told us this:

Your GitHub Enterprise Server version is affected by a known issue between the webhook service and the background job queue service. Running the following commands should reset the service and resolve the problem:

nomad job stop --purge haproxy-cluster-proxy
sudo nomad job run /etc/nomad-jobs/haproxy/haproxy-cluster-proxy.hcl

Upgrading to version 3.16.9 is recommended to prevent this issue from recurring.
If these commands don’t resolve the issue, please let me know.

Reasons:
  • RegEx Blacklisted phrase (2.5): please let me know
  • Long answer (-0.5):
  • Has code block (-0.5):
  • Self-answer (0.5):
Posted by: Patlatus

79787094

Date: 2025-10-10 07:42:05
Score: 0.5
Natty:
Report link

I've added support for this in Python 3.14:

$ python -V
Python 3.14.0
>>> from datetime import date
>>> date.strptime("01-01-2000", "%d-%m-%Y")
datetime.date(2000, 1, 1)
Reasons:
  • Low length (1):
  • Has code block (-0.5):
Posted by: Nice Zombies

79787087

Date: 2025-10-10 07:37:04
Score: 2
Natty:
Report link
file_put_contents('php://stdout', "\n".$message."\n\n");

$message = output message

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

79787085

Date: 2025-10-10 07:31:02
Score: 4
Natty:
Report link

While using Responsive file manager as a standalone program, I am getting the followng error

53450177_a004.jpg

Error Syntax Error: JSON.parse: unexpected keyword at line 1 column 1 of the JSON data

enter image description here

My system is having PHP 8.3 and version of RF as RFM 9.14.0

Reasons:
  • Blacklisted phrase (1): enter image description here
  • RegEx Blacklisted phrase (1): I am getting the followng error
  • Low length (0.5):
  • No code block (0.5):
  • Low reputation (1):
Posted by: Susenjit C

79787084

Date: 2025-10-10 07:30:02
Score: 1
Natty:
Report link

You can see page views by full path (including query strings) using the “Page path + query string” dimension in GA4 or the pagePathPlusQueryString field in Looker Studio. In BigQuery, you can extract it from the page_location parameter in page_view events.

It’s mostly a configuration issue, but sometimes the query string isn’t passed because the tag setup trims URLs by default. I ran an audit with GAfix.ai, where the Event Parameter Mapping Check verifies if page_location is correctly passed with each page_view. If it’s missing, this checkpoint flags it immediately — any GA4 audit tool with similar checks can help you catch it quickly.

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

79787077

Date: 2025-10-10 07:21:56
Score: 6.5 🚩
Natty:
Report link

hey did you find any way to do this, i was working on kinda same project.

Reasons:
  • RegEx Blacklisted phrase (3): did you find any
  • Low length (1.5):
  • No code block (0.5):
  • Single line (0.5):
  • Low reputation (1):
Posted by: Satvik Batra

79787076

Date: 2025-10-10 07:19:55
Score: 1
Natty:
Report link

Microsoft has documented pagination requirement with Search-AzGraph cmdlet

Documentation link : https://learn.microsoft.com/en-us/azure/governance/resource-graph/paginate-powershell?source=recommendations

Adding code below for reference in case in future links becomes inactive:

$kqlQuery = "Resources | join kind=leftouter (ResourceContainers | where
type=='microsoft.resources/subscriptions' | project subscriptionName = name, subscriptionId) on
subscriptionId | where type =~ 'Microsoft.Compute/virtualMachines' | project VMResourceId = id,
subscriptionName, resourceGroup, name"

$batchSize = 5
$skipResult = 0

[System.Collections.Generic.List[string]]$kqlResult

while ($true) {

if ($skipResult -gt 0) {
    $graphResult = Search-AzGraph -Query $kqlQuery -First $batchSize -SkipToken $graphResult.SkipToken
  }
  else {
    $graphResult = Search-AzGraph -Query $kqlQuery -First $batchSize
  }

$kqlResult += $graphResult.data

if ($graphResult.data.Count -lt $batchSize) {
    break;
  }
  $skipResult += $skipResult + $batchSize
}
Reasons:
  • Probably link only (1):
  • Long answer (-0.5):
  • Has code block (-0.5):
  • Low reputation (1):
Posted by: navid8102

79787074

Date: 2025-10-10 07:13:53
Score: 2
Natty:
Report link

https://github.com/screenlite/web-kiosk This is an open-source project that creates a kiosk-like experience for a single website. Not sure if that helps you lock-down your device for your use case, but may provide a starting point.

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

79787071

Date: 2025-10-10 07:05:51
Score: 3.5
Natty:
Report link

AG Charts provides a zoom event - https://ag-grid.com/charts/r/events/#zoom - which is fired whenever the zoom level or position changes. This event gives you the range and ratio of the axes currently within the viewport.

This event is also fired when the zoom is reset - either by clicking the 'reset' button or by double-clicking an empty area on the canvas.

There is currently no way to distinguish how the zoom was triggered. However, you can often infer it by looking at the range and ratio values provided. For example a ratio of [0,1] indicates no zoom is applied and suggests a reset.

Could you share more about why it matters for your use case to know the exact interaction? That might help in suggesting a workaround.

Reasons:
  • RegEx Blacklisted phrase (2.5): Could you share
  • Long answer (-0.5):
  • No code block (0.5):
  • Contains question mark (0.5):
  • Low reputation (0.5):
Posted by: David Glickman

79787066

Date: 2025-10-10 07:01:50
Score: 2
Natty:
Report link

When you open a Flutter app the system first launches the native Android/iOS activity, and only then your splash screen load.

Use flutter_native_splash package

This helps to configure native splash screen that appears before yours.

Reasons:
  • Low length (0.5):
  • No code block (0.5):
  • Starts with a question (0.5): When you
  • Low reputation (0.5):
Posted by: Akhil George

79787063

Date: 2025-10-10 06:56:49
Score: 2
Natty:
Report link

Fine Art Solutions is not just another audio visual solution provider — we’re an experience-driven integration company committed to precision engineering and seamless execution. It provides best visual studio solution to any shared model. Fine Art Solutions is the leading audio visual company in Faridabad (Delhi NCR).

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

79787054

Date: 2025-10-10 06:41:46
Score: 1.5
Natty:
Report link

In short: No, variable name lengths usually do not matter.

Interpreted languages usually parse variable names and assign IDs or some other form of identifier, so usually all variable names tend to end up with names of the same lengths internally.

There are a few other performance concerns that may arise depending on database access, data transfer, and so on. Since some of these processes might actually involve the storage or transfer of these huge variable names, it would indeed slow down the process, increase the amount of data transferred and various other issues. Normally though? A variable name that isn't 200+ characters barely makes a difference and i don't know if 200 characters would already even be measurable in useful frames of reference.

Just be advised that long names can hurt readability.
Hope this answers your question!

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

79787047

Date: 2025-10-10 06:29:43
Score: 3
Natty:
Report link

unplugin-tailwindcss-mangle I found this plugin useful for obfuscating tailwindcss classes

https://github.com/sonofmagic/tailwindcss-mangle/tree/main/packages/unplugin-tailwindcss-mangle

Tested with tailwind version 4.

Reasons:
  • Blacklisted phrase (1): this plugin
  • Probably link only (1):
  • Low length (1):
  • Has code block (-0.5):
  • Low reputation (0.5):
Posted by: Anand A.S

79787041

Date: 2025-10-10 06:17:41
Score: 2
Natty:
Report link

How to fix “PRODUCT_SPECIFIC_LDFLAGS assigned at level: target. This setting is append-only and cannot be overridden without prepending $(inherited).” error in Xcode

click at framework....CharacterDetailExtension -> Build Settings -> and then search for PRODUCT_SPECIFIC_LDFLAGS and then double click at there (PRODUCT_SPECIFIC_LDFLAGS) and write $(inherited) in that box

and then it will solve

Reasons:
  • No code block (0.5):
  • Starts with a question (0.5): How to fix
  • Low reputation (1):
Posted by: touheed lodhi khan lodhi

79787035

Date: 2025-10-10 06:09:40
Score: 2
Natty:
Report link

To Fix 16 kb Size issue
Step1- Use unity 6
Step2- Update Packages Admobe 9.6 or Lestest
Step3- Update Firebase use 13.0 or Lastest
Step4- Check Other Package which is old and not support 16kb update them

This is will solve the Issue of 16 KB Size

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

79787029

Date: 2025-10-10 06:00:38
Score: 3
Natty:
Report link

Discover eco-friendly medium voltage switchgear and vacuum circuit breakers at Degatech Electric. Reliable and safe power solutions!
👉 Degatech Electric

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

79787024

Date: 2025-10-10 05:53:36
Score: 2
Natty:
Report link

An ambulance ride can still be costly even with insurance. Ground transport typically costs $400–$1,200, while air ambulance rides can exceed $20,000, depending on distance, care, and insurance coverage. Knowing your policy and coverage helps avoid surprise bills.

read more about;https://doctorambulance.com/how-much-is-an-ambulance-ride-with-insurance/

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

79787019

Date: 2025-10-10 05:42:34
Score: 0.5
Natty:
Report link

It depends on the application design flow,
This is what I think:
Is there a possibility that the User registered and logged in, but his details are missing in the database, in the application process?.

If its possible without an internal bug in the backend service, I think it should be 400
Or else its a bug in the backend service, Then it is 500

Reasons:
  • Has code block (-0.5):
  • Contains question mark (0.5):
  • Low reputation (0.5):
Posted by: Sasindu Dilshara

79787018

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

Pokémon Go uses Google Maps API to create real-world locations inside the game. It customizes the map data to show PokéStops, Gyms, and paths that match actual streets. An augmented reality development company can build similar experiences by blending real map data with virtual objects to make gameplay feel real and interactive.

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

79787009

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

It would appear that you are piping only the set_sfc function to st_set_crs and not the actual network. I believe R executes the pipe before the + in a line.

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

79787006

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

Downgrade to a stable version pairing where template fetching is not done. For example:

!pip install -q --upgrade transformers==4.45.0 huggingface_hub

It worked for me.

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

79787005

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

The error which you shared in refund api is most likely due to you Public IP address not being whitelisted.
You can contact ccavenue support team and once they will whitelist you public IP in both staging and production ENV, this error resolves

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

79786991

Date: 2025-10-10 04:35:19
Score: 0.5
Natty:
Report link

It works for me setting both ISSUER and SUBJECT. I'm editing Windows register. I'm using the following value:

{"pattern": "*", "filter": { "ISSUER": { "CN": "SOME_CN" }, "SUBJECT": { "CN": "SOME_CN" } }}.

Make sure you are using the exact CN by checking the certificate details in Windows certificate manager, if you are using Windows.

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

79786951

Date: 2025-10-10 01:57:48
Score: 7.5 🚩
Natty:
Report link

Was this only today? Is this related to outage that Azure saw today and resolved itself?

Reasons:
  • RegEx Blacklisted phrase (1.5): resolved itself?
  • Low length (1.5):
  • No code block (0.5):
  • Ends in question mark (2):
  • Single line (0.5):
  • Starts with a question (0.5): Was this on
  • Low reputation (1):
Posted by: CodingTotoro

79786937

Date: 2025-10-10 00:55:36
Score: 3.5
Natty:
Report link

I have spent 4+ hours trying to figure it out and, finally did.

I have created a gist on how i did it, you can check it out here:

https://gist.github.com/PrenSJ2/0213e60e834e66b7e09f7f93999163fc

Reasons:
  • Blacklisted phrase (0.5): check it out
  • Contains signature (1):
  • Low length (1):
  • No code block (0.5):
  • Low reputation (0.5):
Posted by: prensj

79786934

Date: 2025-10-10 00:51:35
Score: 1
Natty:
Report link

never mind, i figured it out! but will leave here in case someone wants to do something similar. i was using onPlayerReady as the event when i should have used onPlayerStateChange . And the console.log was nonsense that I forgot to delete... ain't that just the way.

Reasons:
  • Whitelisted phrase (-2): i figured it out
  • Low length (0.5):
  • No code block (0.5):
  • Self-answer (0.5):
  • Single line (0.5):
  • Low reputation (1):
Posted by: alaska22

79786929

Date: 2025-10-10 00:40:33
Score: 1
Natty:
Report link

I think what is going on is that in all cases, the Python file is read from top to bottom. For function definitions, this doesn't matter because the function calls are not actually instantiated during the definition.

However, when calling a class constructor 'MyFirstClass' to define a class level attribute of 'MySecondClass', an attribute which will be integral to the definition of the class itself, then necessarily 'MyFirstClass' must be defined, because it must be instantiated at the moment of definition of the class, as opposed to being instantiated later, e.g., during later call from a method.

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

79786924

Date: 2025-10-10 00:26:29
Score: 2
Natty:
Report link

This in @orad Comment Jul 28, 2015 at 23:51 but I feel like it should be an answer as well:

$date = Get-Date 
'{0:yyyyMMdd}' -f $date

works.

Specifically 4-digit year, 0-padded 2-digit month and day. The 'M' specifier is capitalized for month to differentiate it from minute which is lowercase 'm'. 2 chars means 0-padded.

See "The following table describes the custom date and time format specifiers..." in this link: https://learn.microsoft.com/en-us/dotnet/standard/base-types/custom-date-and-time-format-strings for more specifiers.

Reasons:
  • Blacklisted phrase (1): this link
  • Has code block (-0.5):
  • User mentioned (1): @orad
  • Low reputation (0.5):
Posted by: john v kumpf

79786908

Date: 2025-10-09 23:31:17
Score: 0.5
Natty:
Report link
Reasons:
  • Low length (0.5):
  • Has code block (-0.5):
  • Low reputation (0.5):
Posted by: calamari

79786890

Date: 2025-10-09 22:34:05
Score: 1
Natty:
Report link

This happens because pandas optimizes away copies when one input is empty, so they share the same memory.
To prevent linkage without forcing a deep copy, enable Copy-on-Write in pandas 2.x:

pd.options.mode.copy_on_write = True
Reasons:
  • Low length (0.5):
  • Has code block (-0.5):
  • Low reputation (1):
Posted by: fateme mosleh

79786886

Date: 2025-10-09 22:20:01
Score: 4
Natty:
Report link

She holds has a Master’s Degree of Science in Health Management.

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

79786882

Date: 2025-10-09 22:16:00
Score: 0.5
Natty:
Report link

I think resources based access control is something beyond a role based access control. With roles, a user is bound to a permanent identification. it is very limiting when you work in environment where one account is shared across multiple applications.

With resources based access control, a user have permission to resources based on specific specific target. For example, a user can be owner of one store and a simple manager of a different store without being globally labelled a manager or a store owner.

Another exemple is a aws, your account doesn't directly have access to all features in services, you create a IAM user and give a specific permission on a specific resources to that IAM user. It makes it easier to introduce new authorities and permissions without touching the core of your auth. Instead of (user , user role) you have (user, target, permissions of user in the target).

It makes it also really easy to have real-time access control. Still, case of a store manager and owner, a manager can have access to create product now for example, and on the next request no longer have access to it, while still have access to other permissions in the store, all that without needing to affect the global identify of the user in any way.

It's important to mention that this can lead to larger queries for permissions. For exemple, instead of just checking if a user has a specific role, you need to check if a user a a specific permission on a specific target. But with a good caching layer, it's way more powerful in every single way compared to role based access control.

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

79786873

Date: 2025-10-09 21:59:56
Score: 1
Natty:
Report link

Just been tackling the same issue - horizontally rather than vertically:

<ul class="list">
    <li class="item">Jan</li>
    <li class="item">Feb</li>
    <li class="item">Mar</li>
    <li class="item active">Apr</li>
    <li class="item">May</li>
    <li class="item active">Jun</li>
    <li class="item active">Jul</li>
    <li class="item active">Aug</li>
    <li class="item">Sep</li>
    <li class="item active">Oct</li>
    <li class="item active">Nov</li>
    <li class="item">Dec</li>
</ul>
/* If element has a sibling immediately after it, remove its right radius */
.item.active:has(+ .item.active) {
  border-top-right-radius: 0;
  border-bottom-right-radius: 0;
}
/* and the left radius of the adjacent active siblings in the group  */
.item.active + .item.active {
    border-top-left-radius: 0;
    border-bottom-left-radius: 0;
}

merged border-radius of list elements

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

79786872

Date: 2025-10-09 21:57:56
Score: 1
Natty:
Report link

As a contribution to the acepted answer you could use

`

const ctx = this.ctx;
ctx.save();
ctx.translate(pin.x, pin.y);

const scaleFactor = pin.radius * 3;
ctx.scale(scaleFactor, scaleFactor);

const path = new Path2D();
const steps = 100;

// --- Droplet contour polar curve ---
for (let i = 0; i <= steps; i++) {
  const t = Math.PI + i * (Math.PI / steps);
  const x = 0.6 * Math.sin(t) * Math.cos(t);
  const y = Math.sin(t);

  if (i === 0) path.moveTo(x, y);
  else path.lineTo(x, y);
}

// close curve
path.lineTo(0, 0);
path.closePath();

// --- Holle ---
const holeY = -0.7; // topo da gota
const holeRadius = 0.13
path.moveTo(0 + holeRadius, holeY);
path.arc(0, holeY, holeRadius, 0, Math.PI * 2, true);


ctx.fillStyle = pin.color;
ctx.fill(path, 'evenodd'); // importante: 'evenodd' cria o furo

ctx.strokeStyle = "black";
ctx.lineWidth = 0.02;
ctx.stroke(path);

ctx.restore();`

enter image description here

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

79786870

Date: 2025-10-09 21:48:54
Score: 0.5
Natty:
Report link

An Addition to "https://stackoverflow.com/a/79786806/31654810", "fstream file(argv[1], ios::in | ios::app);" didn't work for me when I tried running it but you could open the file in just ios::in mode and when you want to append, you can create another fstream or ofstream in append mode to actually write it.

#include <iostream>
#include <fstream>
#include <sstream>
#include <string>

using namespace std;

void testFile(const char *fileName)
{
    fstream file(fileName, ios::in);
    string line, word;

    while (getline(file, line))
    {
        istringstream checker_str(line);
        if (checker_str >> word && word == "ret")
        {
            cout << "Message: " << "\033[92msuccess: \033[0m" << "\"ret\" keyword was already written." << endl;
            return;
        }
    }

    //cout << "Message: " << "\033[93mwarning: \033[0m" << "\"ret\" keyword was not written." << endl;


    cout << "Message: " << "\033[93mwarning: \033[0m" << "\"ret\" keyword was not written and has been written for you." << endl;
    ofstream file1(fileName, ios::app);
    file1 << "\nret";

    return;
}

int main(){
    testFile("no_ret.txt");
    testFile("Yes_Ret.txt");


    return 0;
}

This would be the right code referenced/inspired from "https://stackoverflow.com/a/79786806/31654810".

Updated Demo

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

79786868

Date: 2025-10-09 21:47:54
Score: 2.5
Natty:
Report link

You class from image dont recognize class.getresource(url) because the image are located with mistake, you have to put your images on src/main/resources and you have to compile the resources with maven. Grettings

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

79786865

Date: 2025-10-09 21:42:53
Score: 1
Natty:
Report link

No.

  1. In C23, <stdalign.h> provides no content. There is no alignas macro, no alignof macro, and no __alignas_is_defined or __alignof_is_defined macros.

  2. In C++, both alignas and alignof are keywords, and the C++ standard forbids C++ standard library headers from defining macros with names that are C++ keywords. So <stdalign.h> in C++ must not define an alignas macro or an alignof macro. eel.is

  3. What <stdalign.h> can still provide in C++23 are the feature-test macros. __alignas_is_defined is present but deprecated in C++23, and __alignof_is_defined is also provided via the “same as C header” wording and is being explicitly tracked so it can be deprecated as well. Both expand to 1. GitHub

For reference, the current C++ working draft points <stdalign.h> at C23’s header, which is empty, so including it in C++ has no effect. The general prohibition on keyword-named macros remains in force. eel.is

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

79786862

Date: 2025-10-09 21:28:49
Score: 0.5
Natty:
Report link

I think that the idea that you might have to swap to Controller when "development becomes more serious" is silly. Controllers aren´t inherently more serious or clean. They prescribe you an architecture. Minimal API gives you much more freedom. For example it is much easier to swap out a few routes depending on deployments. Whats more clean depends on how you use either.

For the most part people using Controllers also throw together a lot of methods that somehow loosely connect to some arbitrary word. Sometimes the word is HomeController. What's "Home" supposed to be? Well... just about anything on this "Home" page that just so happens to have 15 sub menus. Seen this a lot.

There is absolutely no issue mixing controllers and minimal API. In fact you probably do it already if you use controllers without knowing it. As a lot of stuff like 3rd party login, or openapi docs will use minimal API under the hood. You just did not write the minimal API part yourself.

Reasons:
  • Long answer (-0.5):
  • No code block (0.5):
  • Contains question mark (0.5):
Posted by: Max

79786855

Date: 2025-10-09 21:20:48
Score: 1
Natty:
Report link

The issue isn't with VtValue itself. We were calling GetLightParamValue(), which does some additional steps before returning the value. Including throwing away types it doesn't recognize. Calling Get() avoids those extra steps and solves the problem in this case.

Reasons:
  • Low length (0.5):
  • Has code block (-0.5):
  • Self-answer (0.5):
  • Single line (0.5):
Posted by: B_old

79786845

Date: 2025-10-09 21:06:44
Score: 1
Natty:
Report link

Thanks for the help. You can't imagine how useful your answer was to me. I would be picking at least 7 different workarounds if I didn't reach you.

Just to clarify and let the step-by-step guide:

  1. Pick an option: User-assigned or System-assigned managed identity. I had picked System-assigned one.
  2. To enable managed identity you need to go to "Identity" section in the left panel. You can simply enable system-assigned or create a user-assigned one and add it to the the list.
  3. Go to your DevOps organization settings and add this identity as a new user to the whole organization (you might have to give it admin permissions).
  4. Now you can select the managed identity in this HTTP request block as Authorization header.
Reasons:
  • Blacklisted phrase (0.5): Thanks
  • Long answer (-0.5):
  • No code block (0.5):
  • Low reputation (0.5):
Posted by: Gabriel Antonio

79786830

Date: 2025-10-09 20:27:35
Score: 0.5
Natty:
Report link

After upgrading to Windows 11, I encountered the "The emulator process for AVD Nexus_6_API_33 has terminated" error, so I checked the idea.log file, searched online, and eventually found the solution involving a missing C++ file that needed to be updated.

The emulator may require certain DLLs that are not present so I have downloaded the latest supported redistributed version from this link:

https://learn.microsoft.com/en-us/cpp/windows/latest-supported-vc-redist?view=msvc-170
X64 Redistributable package contains both ARM64 and X64 binaries
After successful installation then restart the PC. Error solved and Hope it helps.

Reasons:
  • Blacklisted phrase (1): this link
  • Whitelisted phrase (-1): Hope it helps
  • Probably link only (1):
  • No code block (0.5):
  • High reputation (-1):
Posted by: Pratik Dodiya

79786827

Date: 2025-10-09 20:23:34
Score: 0.5
Natty:
Report link

After upgrading to Windows 11, I encountered the "The emulator process for AVD Nexus_6_API_33 has terminated" error, so I checked the idea.log file, searched online, and eventually found the solution involving a missing C++ file that needed to be updated.

The emulator may require certain DLLs that are not present so I have downloaded the latest supported redistributed version from this link:
https://learn.microsoft.com/en-us/cpp/windows/latest-supported-vc-redist?view=msvc-170
X64 Redistributable package contains both ARM64 and X64 binaries

After successful installation then restart the PC. Error solved and Hope it helps.

Reasons:
  • Blacklisted phrase (1): this link
  • Whitelisted phrase (-1): Hope it helps
  • Probably link only (1):
  • No code block (0.5):
  • High reputation (-1):
Posted by: Pratik Dodiya

79786824

Date: 2025-10-09 20:20:33
Score: 1.5
Natty:
Report link

Which version of LCOV are you using?
What do you see, when you run lcov --summary ....Client/Web.UI/coverage/lcov.info (_.e., ask lcov to summarize your .info file).
You may want to add --branch and/or --mcdc - depending on your lcov version and the source of your coverage data.

Reasons:
  • Low length (0.5):
  • Has code block (-0.5):
  • Contains question mark (0.5):
  • Starts with a question (0.5): Which
  • Low reputation (0.5):
Posted by: Henry Cox

79786818

Date: 2025-10-09 20:10:31
Score: 0.5
Natty:
Report link

For anyone conquering the same demons as I am: I did actually find a concrete difference between the two functions: I found a library that used eglCreateImageKHR to import DMABUFs using the EXT_image_dma_buf_import EGL extension. It was using OpenGL ES as its rendering API. Replicating this in my OpenGL application would raise an unexplainable EGL_BAD_PARAMETER error. When I replaced it with eglCreateImage instead, it finally worked. As such my best guess is that eglCreateImageKHR might be more an OpenGL ES thing or be related in some way to it that the non khr suffix version isn't.

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

79786816

Date: 2025-10-09 20:09:31
Score: 0.5
Natty:
Report link

After upgrading to Windows 11, I encountered the "The emulator process for AVD Nexus_6_API_33 has terminated" error, so I checked the idea.log file, searched online, and eventually found the solution involving a missing C++ file that needed to be updated.

The emulator may require certain DLLs that are not present so I have downloaded the latest supported redistributed version from this link:
https://learn.microsoft.com/en-us/cpp/windows/latest-supported-vc-redist?view=msvc-170

X64 Redistributable package contains both ARM64 and X64 binaries

After successful installation then restart the PC. Error solved and Hope it helps.

Reasons:
  • Blacklisted phrase (1): this link
  • Whitelisted phrase (-1): Hope it helps
  • Probably link only (1):
  • No code block (0.5):
  • High reputation (-1):
Posted by: Pratik Dodiya

79786815

Date: 2025-10-09 20:05:30
Score: 0.5
Natty:
Report link

After upgrading to Windows 11, I encountered the "The emulator process for AVD Nexus_6_API_33 has terminated" error, so I checked the idea.log file, searched online, and eventually found the solution involving a missing C++ file that needed to be updated.

The emulator may require certain DLLs that are not present so I have downloaded the latest supported redistributed version from this link:

https://learn.microsoft.com/en-us/cpp/windows/latest-supported-vc-redist?view=msvc-170

X64 Redistributable package contains both ARM64 and X64 binaries

After successful installation then restart the PC. Error solved and Hope it helps.

Reasons:
  • Blacklisted phrase (1): this link
  • Whitelisted phrase (-1): Hope it helps
  • Probably link only (1):
  • No code block (0.5):
  • High reputation (-1):
Posted by: Pratik Dodiya