79670385

Date: 2025-06-18 09:50:03
Score: 2.5
Natty:
Report link

The 6 digit code, called the shortcode, is returned in a GET organisations request. There is a link to this within the article that Doel posted above.

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

79670384

Date: 2025-06-18 09:49:02
Score: 2
Natty:
Report link

DSMR5 serial output uses inverted polarity comparing to UART. You should invert signal back before applying it to RX pin.

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

79670382

Date: 2025-06-18 09:48:02
Score: 0.5
Natty:
Report link

Assign it to a variable and return it once.

from typing import Literal, assert_never, reveal_type

def foo(x: Literal["a", "b"]):
    match x:
        case "a":
            result = 42
        case "b":
            result = "string"
        case _:
            assert_never(x)
    return result

reveal_type(foo)  # Pyright infers: (x: Literal['a', 'b']) -> Literal[42, 'string']
Reasons:
  • Has code block (-0.5):
  • Self-answer (0.5):
  • Low reputation (0.5):
Posted by: Danilo Horta

79670368

Date: 2025-06-18 09:37:59
Score: 1
Natty:
Report link

I found this question while trying to solve the exact same issue. I am not sure if you have managed to solve this by now, but what I discovered is that the default value in the Helm chart for dags.gitSync.subPath is set to "tests/dags" so unless your DAG files are in that folder inside your repo the serialization process running on the scheduler pod never picks them up. They therefor never land up in your DB and the web frontend can't see them.

Setting this configuration parameter correctly for my repo structure solved my problem.

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

79670361

Date: 2025-06-18 09:34:58
Score: 4
Natty:
Report link

This deep link guide might help

https://developer.xero.com/documentation/guides/how-to-guides/deep-link-xero

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

79670360

Date: 2025-06-18 09:33:57
Score: 3
Natty:
Report link

The question is what do you want to do with the Formula tab?

are you trying to do something there eg create a named reference?

if not alt +M will take you to the Formula menu

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

79670353

Date: 2025-06-18 09:28:56
Score: 1
Natty:
Report link

We faced the same error after upgrading Rancher to v2.11.2.

I am not 100% sure, but I believe running fleet as a StatefulSet is no longer expected. Instead it is always running as a Deployment, so that you can have multiple pods for failover situations.

We managed to fix this error by triggering a complete re-deploy of the downstream fleet agent: https://fleet.rancher.io/troubleshooting#agent-is-no-longer-registered

Afterwards the StatefulSet got removed, a new Deployment created and the fleet-agent Pod ist running without any errors. The cluster can now be viewed in the Continuous Delivery interface and is "Active".

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

79670351

Date: 2025-06-18 09:28:56
Score: 1
Natty:
Report link

I Started using the ADO Task of Microsoft which will replace the json values in the zip file

steps:
- task: FileTransform@2
  displayName: 'File Transform: '
  inputs:
    enableXmlTransform: false
    jsonTargetFiles: paramters.json
Reasons:
  • Low length (0.5):
  • Has code block (-0.5):
  • Self-answer (0.5):
  • Low reputation (0.5):
Posted by: karthik

79670339

Date: 2025-06-18 09:22:55
Score: 2.5
Natty:
Report link

Looking for a way to upvote; however we run several redis nodes and I'm also seeing this problem.

The issue is accentuated by the fact our instances are managed by redis sentinel (Also 8.x) which performs a CONF REWRITE when it performs a failover on replicated instances

Reasons:
  • Blacklisted phrase (0.5): upvote
  • Low length (0.5):
  • No code block (0.5):
  • Low reputation (1):
Posted by: Nick Lello

79670326

Date: 2025-06-18 09:12:52
Score: 0.5
Natty:
Report link

It sounds like your validation annotations @Email and @NonNull aren't being enforced when saving a @Document entity in MongoDB. Here are a few things to check:

  1. Ensure Spring Boot Validation Dependency
    Spring Boot doesn't include validation by default. You need to add this dependency in your pom.xml:
<dependency>
    <groupId>org.springframework.boot</groupId>
    <artifactId>spring-boot-starter-validation</artifactId>
</dependency>
    1. This ensures that Hibernate Validator (Jakarta Bean Validation) is available.

    2. Enable Validation in MongoDB Configuration
      Spring Data MongoDB requires a ValidatingMongoEventListener to trigger validation before persisting documents:

    @Configuration
    @EnableMongoRepositories("your.package.repository")
    public class MongoConfig {
        @Bean
        public ValidatingMongoEventListener validatingMongoEventListener(LocalValidatorFactoryBean factory) {
            return new ValidatingMongoEventListener(factory);
        }
    }
    
    1. This ensures that validation is applied when saving entities.

    2. Use @Valid in Service or Controller Layer
      If you're saving the entity manually, ensure that validation is triggered by using @Valid:

    3. public void saveUser(@Valid User user) { userRepository.save(user); }

    4. If you're using a REST controller, annotate the request body:

    5. @PostMapping("/users") public ResponseEntity createUser(@RequestBody @Valid User user) { userRepository.save(user); return ResponseEntity.ok("User saved successfully"); }

    6. Check MongoDB Schema Validation
      MongoDB allows schema validation using JSON Schema. If validation isn't working at the application level, you can enforce it at the database level.

    If you've already done all this and validation still isn't triggering, let me know what errors (or lack thereof) you're seeing! We can troubleshoot further.

Reasons:
  • Long answer (-1):
  • Has code block (-0.5):
  • User mentioned (1): @Email
  • User mentioned (0): @NonNull
  • User mentioned (0): @Document
  • User mentioned (0): @Valid
  • User mentioned (0): @Valid
  • Low reputation (1):
Posted by: Akash Singhal

79670324

Date: 2025-06-18 09:11:52
Score: 1.5
Natty:
Report link

Yes, breadcrumbs can positively impact SEO, but they are not mandatory.

Why breadcrumbs help SEO:

They enhance internal linking structure, helping Google crawl your site better.

They often appear in Google search results as navigational links (known as breadcrumb-rich snippets).

They improve user experience and site hierarchy, especially for large or complex websites.

But removing them does not cause a penalty. It's just a missed opportunity, not a red flag.

Reasons:
  • No code block (0.5):
  • Low reputation (1):
Posted by: Vijay reddy 23

79670314

Date: 2025-06-18 09:06:50
Score: 2.5
Natty:
Report link

u have to code it for your self .... nvidia sell's u more work, not a complete solution, use rather ROCm, install driver and up u go with parallel processing .... if u re not coder, CUDA is useless (performance only on paper for over-overpriced GPU) ... throw away money for something that u need to use but something that u cant use anyway, designed that way to the core .... why u think they sell complete proprietary AI solutions for obnoxious amount of money (closed architecture so u re dependent on it) ? Think again ! They don't want people to run what so ever parallel processing on home workstations or powerhouse home PC's ! They only pretend for doing so, that's why people have so much headaches with it ! And open source is crap and junk at supporting parallel processing, i have try to use it, instead of dong data mining and testing models its all about the code and about code and not end user end results ! YES its not a RANT, its a TRUTH !

Reasons:
  • Long answer (-0.5):
  • No code block (0.5):
  • Contains question mark (0.5):
  • Unregistered user (0.5):
  • Single line (0.5):
  • Low reputation (1):
Posted by: Jaff

79670311

Date: 2025-06-18 09:03:49
Score: 0.5
Natty:
Report link

you can try to use "use", I did like this when I got this problem, I added it after all the routes:

app.use(req: Request, res: Response) => {
    res.status(404).json({
        message: `The URL ${req.originalUrl} doesn't exist`
    });
});
Reasons:
  • Low length (0.5):
  • Has code block (-0.5):
  • Low reputation (0.5):
Posted by: FaFa

79670308

Date: 2025-06-18 08:59:48
Score: 1
Natty:
Report link

Another solution for supabase specifically:
Add topology to the extra search path

Go to Project Settings -> Configuration -> Data API
Change extra search path's value from public, extensions to public, extensions, topology

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

79670306

Date: 2025-06-18 08:58:47
Score: 3
Natty:
Report link

I am facing this exact problem. It would be a great help if you can share how you used TextureView instead of SurfaceView for PlayerView.

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

79670304

Date: 2025-06-18 08:57:47
Score: 0.5
Natty:
Report link
WITH    temp_table AS
        (SELECT  TO_DATE('01-JAN-2020', 'DD-MON-YYYY')  start_with_date
                ,DATEADD('Days', 0, start_with_date)    start_date
                ,DATEADD('Days', 1, start_with_date)    end_date
                ,1                                      level
         FROM   dual
        )
SELECT   DATEADD('Days', level, start_date) n_start_date
        ,DATEADD('Days', level, end_date)   n_end_date
        ,start_date
        ,end_date
        ,(level +1) AS level
FROM    temp_table
START WITH start_date = TO_DATE('01-JAN-2020', 'DD-MON-YYYY')
CONNECT BY
        start_date + LEVEL      >= PRIOR end_date
AND     end_date        < TO_DATE('01-JAN-2021', 'DD-MON-YYYY')
LIMIT 25
;
Reasons:
  • Long answer (-0.5):
  • Has code block (-0.5):
  • Unregistered user (0.5):
  • Low reputation (1):
Posted by: GC Shekar

79670300

Date: 2025-06-18 08:56:47
Score: 0.5
Natty:
Report link

You're absolutely right that %autoreload 2 is powerful — but it has one key caveat: it doesn't fully work with from module import something style imports. When you do:

from mymodule.utils import my_function

Python stores a reference to my_function in your notebook's namespace. If the function's code changes in the source file, the reference doesn't automatically update — auto reload can’t help you here because it's only watching the module, not the symbol reference.

Solutions

Best Practice (Recommended): Use Module-Level Imports

Instead of importing individual functions, import the module:

import mymodule.utils as utils

Then use:

utils.my_function()

This way, %autoreload 2 can detect and reload the updated code.

Alternative : Manually Reload + Reimport

If you really want to keep using from ... import ..., you can manually reload and re-import:

import importlib

import mymodule.utils

importlib.reload(mymodule.utils)

from mymodule.utils import my_function # re-import the updated version

Still a bit messy, but much faster than restarting the kernel.

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

79670298

Date: 2025-06-18 08:56:47
Score: 3.5
Natty:
Report link

It's ok to look at the code, can you confirm the settings of Lambda proxy integration on the AWS console?

enter image description here

After changing the API Gateway settings, you need to republish for them to take effect.

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

79670291

Date: 2025-06-18 08:50:45
Score: 1.5
Natty:
Report link

Use PHP with language files (like .po/.mo or associative arrays), serve clean URLs with language slugs (e.g., /en/, /fr/), and set proper <html lang="">, hreflang tags, and localized meta tags for SEO. Tools like Pairaphrase can help manage translations more efficiently across large content sets.

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

79670290

Date: 2025-06-18 08:50:45
Score: 3
Natty:
Report link

Check that the .sh file is in CRLF format.
Must be in LF format.

Reasons:
  • Low length (1.5):
  • No code block (0.5):
  • Low reputation (1):
Posted by: 문준호

79670285

Date: 2025-06-18 08:47:45
Score: 2.5
Natty:
Report link

Seems like the issue was that the script rc.update_crl called by exec() reloads php-fpm daemon at some point which completely shuts down the script that makes the exec call (the one above).

So, this explains why I could not see any instruction executed after exec() call.

Thank you all for your help and quick responses !

Reasons:
  • Blacklisted phrase (0.5): Thank you
  • No code block (0.5):
  • Self-answer (0.5):
  • Low reputation (1):
Posted by: abens

79670284

Date: 2025-06-18 08:45:44
Score: 2.5
Natty:
Report link

Is it possible also to change che colour of the group label in objectlistview ?
I know this is a huge limitation of winforms since windows vista, but maybe there are some ownerdraw example ready available to be used in ObjectListView as well.

Reasons:
  • Low length (0.5):
  • No code block (0.5):
  • Contains question mark (0.5):
  • Starts with a question (0.5): Is it
  • Low reputation (0.5):
Posted by: user2991288

79670281

Date: 2025-06-18 08:40:43
Score: 3.5
Natty:
Report link

Using `EntityFrameworkCore\` solved the issue

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

79670264

Date: 2025-06-18 08:31:40
Score: 2
Natty:
Report link

make a safe copy in a fisical notepad (old school whriting stuff) for passwords etc.

and in another page write all the cookies names and sites related to those cookies

some ways to find about the cookies my implie to use tracerout tools or whois tools

go and delete preferably your browser config files

and before you start again your browser go to your network router and in the firewall settings try to block all the sites or ip related to the cookies that cause trouble

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

79670257

Date: 2025-06-18 08:19:37
Score: 3
Natty:
Report link

It might be that the Quartz API level considers the deletion successful, but the actual persistence or cluster synchronization fails

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

79670250

Date: 2025-06-18 08:13:35
Score: 1
Natty:
Report link

Just adding to the list of solution. I have faced the similar problem before. All I did was to update/add the admin user with an Email (turn on email verified), added both the "First Name" and the "Last Name" too, and the problem went away. Hope this helps.

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

79670244

Date: 2025-06-18 08:11:35
Score: 2
Natty:
Report link

To build gRPC 1.46.x, you'll need Abseil, as it's a required dependency. For the smoothest experience, it's best to use the versions of Abseil and Protobuf specifically referenced by the gRPC 1.46.x branch.

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

79670241

Date: 2025-06-18 08:09:34
Score: 1.5
Natty:
Report link

It worked when I added this code. Thanks for helping.

if (!empty($_GET['s'])) : ?>
<input type="hidden" name="s" value="<?php echo esc_attr($_GET['s']); ?>">
<?php endif; ?>
Reasons:
  • Blacklisted phrase (0.5): Thanks
  • Whitelisted phrase (-1): It worked
  • Low length (1):
  • Has code block (-0.5):
  • Self-answer (0.5):
  • Low reputation (1):
Posted by: Lisa

79670240

Date: 2025-06-18 08:07:34
Score: 2.5
Natty:
Report link

probably you are in an env without it installed type pip install tensorflow and you will be fine

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

79670229

Date: 2025-06-18 08:01:32
Score: 2.5
Natty:
Report link

I was looking for the same solution. ScriptMan's answer worked for me.

Reasons:
  • Whitelisted phrase (-1): worked for me
  • Low length (1.5):
  • No code block (0.5):
  • Single line (0.5):
  • Low reputation (1):
Posted by: Bence Zovits

79670226

Date: 2025-06-18 07:59:31
Score: 2
Natty:
Report link

I got the same error, where I am using window Machine. You can just resolve this by using this simple steps.

import os

import certifi

os.environ['SSL_CERT_FILE'] = certifi.where()

#certifi.where() - it take the paths directly.

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

79670213

Date: 2025-06-18 07:49:29
Score: 2
Natty:
Report link

To confirm, you're looking to understand how to invoke a Bedrock agent.

Take a look at this article on the AWS KB that provides some sample code in the comment.

https://repost.aws/questions/QUcVSATe0bRJCCs7ibxz8-Dg/how-do-i-use-java-sdk-to-invoke-an-bedrock-agent

Unlike with conversation AI's like AWS Lex, these LLM's take much longer to respond.
So you cannot expect a synchronous response like you would get from Lex.

Instead, you need to wait for the response to come through in chunks before putting them together to get the final, completed response.

Reasons:
  • Blacklisted phrase (1): this article
  • No code block (0.5):
  • Low reputation (0.5):
Posted by: Reegz

79670206

Date: 2025-06-18 07:44:28
Score: 0.5
Natty:
Report link

vcpkg has learned the --classic command line switch that can be used to force classic mode even if a manifest file was found.

To be used like this:

vcpkg install --classic <portname>
Reasons:
  • Low length (0.5):
  • Has code block (-0.5):
  • Low reputation (0.5):
Posted by: jobor

79670205

Date: 2025-06-18 07:44:28
Score: 1
Natty:
Report link

Now Android Github action with Gradle Managed Device are working now, see running pull requests

https://github.com/hannesa2/testing-samples/pulls

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

79670201

Date: 2025-06-18 07:43:27
Score: 1.5
Natty:
Report link

I found the cause and a workaround from Flutter github. The issue appears when showing a form with textfields in a dialog using the following widgets hierarchy:

showDialog -> Material -> Stack -> [form_with_text_fields, ... other widgets]

To solve the issue in Firefox and Safari embed the Stack in a SelectableArea:
showDialog -> Material -> SelectableArea -> Stack -> [form_with_text_fields, ... other widgets]

Reference: https://github.com/flutter/flutter/issues/157579

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

79670198

Date: 2025-06-18 07:38:26
Score: 5
Natty:
Report link

after executing this script: matching the findtext sp is dropped and i cannot find the SP in the database !! ideally updated SP should be there...
not working for me.

Declare @spnames CURSOR
Declare @spname nvarchar(max)
Declare @moddef nvarchar(max)
Set @spnames = CURSOR FOR
select distinct object_name(c.id) 
from syscomments c, sysobjects o 
where c.text like '%findtext%'
and c.id = o.id
and o.type = 'P'    
OPEN @spnames
FETCH NEXT
FROM @spnames into @spname
WHILE @@FETCH_STATUS = 0
BEGIN   
    Set @moddef =
    (SELECT
    Replace ((REPLACE(definition,'findtext','replacetext')),'ALTER','create')
    FROM sys.sql_modules a
    JOIN 
    (   select type, name,object_id
    from sys.objects b
    where type in (
    'p' -- procedures
    )
    and is_ms_shipped = 0
    )b
    ON a.object_id=b.object_id where b.name = @spname)              
    exec('drop procedure dbo.' + @spname)
    execute sp_executesql @moddef
    FETCH NEXT FROM @spnames into @spname
END
Reasons:
  • Blacklisted phrase (1.5): i cannot find
  • Blacklisted phrase (0.5): i cannot
  • RegEx Blacklisted phrase (3): not working for me
  • Long answer (-0.5):
  • Has code block (-0.5):
  • Low reputation (1):
Posted by: Arsha Hasan

79670194

Date: 2025-06-18 07:34:25
Score: 2.5
Natty:
Report link

If the code runner icon is not showing even after installing Python + Python extension and Code runner extension than you need to right click on the (Split editor right - icon present on the right top ) and tick the option [Run or Debug] ...It will solve your problem for sure, signing off adi.

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

79670193

Date: 2025-06-18 07:32:24
Score: 1.5
Natty:
Report link

I looked all day for the answer for this same question and stumbled upon the answer this morning.

When creating an Office Addin using Office JS API and Angular they run in a SharedRuntime Enviroment. This shared runtime means that every TaskpaneId has to be the same Id for Office JS to know they are the same application. The Title and Source Location can be different.

Additionally, ensure that your manifest supports the Ribbon API

Contextual Tab Json
Manifest XML File Taskpane Action

Ribbon Api Support in Manifest XML

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

79670184

Date: 2025-06-18 07:28:23
Score: 0.5
Natty:
Report link

looks like just a syntax error and typo based on your code provided.

#[On( 'selected-dateslot'"]

should be

#[On( 'selected-dateslot' )]

and your Dateslot component class, should be

public function selectedDateslot()
Reasons:
  • Low length (0.5):
  • Has code block (-0.5):
  • Low reputation (0.5):
Posted by: elegisandi

79670167

Date: 2025-06-18 07:10:19
Score: 1.5
Natty:
Report link

Absolutely, Salesforce has the capacity to deliver sophisticated questionnaires with advanced business logic that will allow conditional logic, scoring, and questions that are used by an admin using either custom objects or Flow Builder. The above is an example of a simple scenario that a Salesforce Partner can easily implement. You can take the plunge into Flow Builder and custom objects to start building, or you can reach out to a partner using the Salesforce Partner Finder.

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

79670160

Date: 2025-06-18 07:04:18
Score: 1.5
Natty:
Report link

We use a little tool called gt to pull files from a git repository. I think this could help with this. It includes GPG signature verification and can syncing can be automated with GitHub workflows. It's available and documented at GitHub: https://github.com/tegonal/gt

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

79670158

Date: 2025-06-18 07:04:18
Score: 3
Natty:
Report link

enter image description here

I found that after the latest release version 1.6.0 of Stetho, changes were made to fix the compatibility issue between the new version of Chrome and Stetho. Therefore, the Stetho 1.6.0 imported from remote Maven cannot find the app process. It is recommended to pull the official repository and then upload it to MavenLocal.

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

79670154

Date: 2025-06-18 07:01:17
Score: 1
Natty:
Report link
 $date = date("d-m-Y"); 
        $filename = "$date.txt"; 
        $data = "Date: $date, LastName: $Lastname, Phone: $phone, Payment: $payment, Room No: $roomno, Lock No: $lockno\n"; 
        $file = fopen($filename, "a"); 
        fwrite($file, $data); 
        fclose($file); 
Reasons:
  • Low length (0.5):
  • Has code block (-0.5):
  • Low reputation (1):
Posted by: Jaimini bharatbhai Shyora

79670151

Date: 2025-06-18 06:59:16
Score: 2
Natty:
Report link

For reference, this problem seems to to be related to changes Google introduced on or around Nov 18, 2020 and reverted (at least partially) about a week later. See these posts in Google Docs Editors Help pages.

Reasons:
  • Low length (1):
  • No code block (0.5):
  • Low reputation (0.5):
Posted by: João Manuel Rodrigues

79670143

Date: 2025-06-18 06:58:16
Score: 0.5
Natty:
Report link

First!

If you do not call .send() within 30 seconds the connection will be closed. If you want to keep it alive forever, send heartbeat to client.

sseEmitter.send(SseEmitter.event().name("heartbeat").data("keep-alive"));

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

79670120

Date: 2025-06-18 06:40:11
Score: 0.5
Natty:
Report link

If you are using Kentico 9 for email marketing and want to customize your NewsletterSubscription web part, this guide may help.

I had a requirement to add a required checkbox field to the default subscriber form — for example, a user consent or agreement checkbox that must be ticked before subscribing.

Kentico’s official documentation suggests modifying subscriber fields through the Modules application:
https://docs.kentico.com/k82/on-line-marketing-features/email-marketing/working-with-email-campaigns/managing-email-marketing-subscribers

I made changes in the Newsletter - Subscriber class using the module system table and added a new Boolean field (checkbox).

Here’s what happens:

More on editing system tables here:
https://docs.kentico.com/k9/custom-development/editing-system-tables

This approach works well if you want to collect extra information or enforce specific terms for subscriptions.

Let me know if you’ve tried this on newer versions of Kentico or used conditional logic with macro rules for checkbox validation.

Reasons:
  • Blacklisted phrase (1): this guide
  • Long answer (-1):
  • Has code block (-0.5):
  • Low reputation (1):
Posted by: Ritik Dhall

79670104

Date: 2025-06-18 06:23:06
Score: 5
Natty: 5.5
Report link

For who is looking for the referenced pdf: https://web.archive.org/web/20090919234008if_/http://www.sphinx.at:80/it-consulting/upload/pdf/ECM_01.20009.pdf

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

79670103

Date: 2025-06-18 06:22:05
Score: 11 🚩
Natty: 4.5
Report link

were you able to fix the error? im facing same issue

Reasons:
  • RegEx Blacklisted phrase (1.5): fix the error?
  • RegEx Blacklisted phrase (3): were you able
  • Low length (1.5):
  • No code block (0.5):
  • Me too answer (2.5): facing same issue
  • Contains question mark (0.5):
  • Single line (0.5):
  • Low reputation (1):
Posted by: shoki s

79670100

Date: 2025-06-18 06:18:04
Score: 1
Natty:
Report link
Thanks to Selaka Nanayakkara for the response.I translated this answer into DolphinDB script and added the case for negative movement. 

def myRoll(x, mutable n) {
    len = size(x)
    n = n % len
    
    if (n == 0) return x
    
    if (n > 0) {
        result = move(x, n)
        result[0:n] = x[len-n:]
        return result
    } 
    else {
        n = abs(n)
        result = move(x, -n)
        result[len-n:] = x[0:n]
        return result
    }
}
Reasons:
  • Blacklisted phrase (0.5): Thanks
  • Has code block (-0.5):
  • Self-answer (0.5):
  • Low reputation (0.5):
Posted by: Boye

79670098

Date: 2025-06-18 06:17:03
Score: 1.5
Natty:
Report link

I am solving one DSA question I want extract character only to check whether given sentence is Palindrome or not, so I want to remove spaces and other punctuations following code is useful for it.

string str1;
        for(char c : str)
        {
            if(isalnum(c))
            {
                str1+=tolower(c);
            }
        }
Reasons:
  • RegEx Blacklisted phrase (1): I want
  • Has code block (-0.5):
  • Low reputation (1):
Posted by: Prajwal Thorat

79670097

Date: 2025-06-18 06:16:03
Score: 3.5
Natty:
Report link

Maybe you should try set MouseArea{ preventStealing: true; }

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

79670094

Date: 2025-06-18 06:11:01
Score: 1
Natty:
Report link

To integrate a .h5 (Keras) model into your Flutter app, you’ll need to expose the model’s functionality through a backend service—since Flutter (written in Dart) cannot directly run Python code or load .h5 files.

Create a Python Backend Use a Python web framework like Flask or Django to:

Run this Flask app locally for testing or deploy it to a cloud service like Heroku, AWS, or Render for production. In your Flutter app, use http package to send data to the Python API and receive the prediction.

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

79670084

Date: 2025-06-18 05:56:57
Score: 11.5 🚩
Natty: 5.5
Report link

Did you find a solution to this in the end? I am facing the same issue.

(Not an answer? But I could not comment yet as I’m new here, so don’t have the “reputation” yet)

Reasons:
  • Blacklisted phrase (1): Not an answer
  • RegEx Blacklisted phrase (1.5): reputation
  • RegEx Blacklisted phrase (3): Did you find a solution to this
  • Low length (1):
  • No code block (0.5):
  • Me too answer (2.5): I am facing the same issue
  • Contains question mark (0.5):
  • Starts with a question (0.5): Did you find a solution to this in the
  • Low reputation (1):
Posted by: user30831107

79670082

Date: 2025-06-18 05:54:57
Score: 2
Natty:
Report link

Check Locking Logic: Ensure that locks are released properly after use.

Use Timeouts: Instead of indefinite waiting, set timeouts for acquiring locks.

Reduce Contention: Optimize the number of threads accessing shared resources.

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

79670078

Date: 2025-06-18 05:48:54
Score: 8.5 🚩
Natty:
Report link

user30706264 Hi,

Did you resolve this issue, Because i'm also facing same issue..

Reasons:
  • RegEx Blacklisted phrase (3): Did you resolve this
  • Low length (1.5):
  • No code block (0.5):
  • Me too answer (2.5): i'm also facing same issue
  • Low reputation (1):
Posted by: Anji

79670075

Date: 2025-06-18 05:45:53
Score: 1
Natty:
Report link

Thanks for this, I had to move to your 'if' workaround after installing Firebase Firestore. As I was getting the following error:

ld: warning: ignoring duplicate libraries: '-lc++'
ld: framework 'FirebaseFirestoreInternal' not found
clang++: error: linker command failed with exit code 1 (use -v to see invocation)
Reasons:
  • Blacklisted phrase (0.5): Thanks
  • Has code block (-0.5):
  • Low reputation (1):
Posted by: Karthik Modugula

79670072

Date: 2025-06-18 05:41:52
Score: 2
Natty:
Report link

you can now exlude a folder from searching in it

right click on a folder in file structure on the left

Mark directory as -> exluded

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

79670069

Date: 2025-06-18 05:34:51
Score: 2.5
Natty:
Report link

Education is the foundation for personal growth, social development, and national progress. It empowers individuals with knowledge, values, skills, and confidence to shape their own future and contribute meaningfully to society. As a journey of lifelong learning, education goes beyond textbooks, encouraging curiosity, critical thinking, creativity, and moral responsibility

Reasons:
  • No code block (0.5):
  • Single line (0.5):
  • Starts with a question (0.5): is the
  • Low reputation (1):
Posted by: TIME School

79670061

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

For a docked terminal window in eclipse make sure you are using git/bin/bash.exe NOT git/git-bash.exe

git/bin/git-bash.exe opens in an external window
git/bash.exe opens in a docked window in eclipse

Both versions are otherwise functionally equivalent

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

79670056

Date: 2025-06-18 05:15:45
Score: 6.5 🚩
Natty: 3.5
Report link

ကျနော်အကာက်ကပြန်ယူလို့လို့လည်းမရလက်မှတ်ထိုးဝင်လည်းမရခများတို့ကဗျာလုပ်နေတာကျနော်အားြဖင့်အရန်သိမ်းထားတဲ့ပုံတွvdတွေအမှတ်အသားဖိုင်တွေရောလီဘဲထများတို့ဘယ်သူကဝင်ဖို့ကြိုးစားနလိုလဲ?ကျနော်ဘဲကြိုးစားနတာ လေ ခများတို့ကလီးကိုကာကွယ်ဖို့လား

Reasons:
  • Low length (0.5):
  • No code block (0.5):
  • Contains question mark (0.5):
  • Has no white space (0.5):
  • Single line (0.5):
  • No latin characters (3):
  • Low reputation (1):
Posted by: Min kaung Lay

79670055

Date: 2025-06-18 05:14:44
Score: 1
Natty:
Report link

[ OS: Ubuntu -24.04, kafka version: - kafka_2.13-4.0.0, Variant: Only Kafka and no Zookeeper.] - OP asked for windows. this is for ubuntu folks landing on this page.
Kafka might fail due to file permissions on /tmp/kafka-combined-logs or there is no meta.properties in that directory.
1. Find the logs directory - check kafka/config/server.properties. - look for "logs.dir"
my case: logs.dir=/tmp/kraft-combined-logs.
2. Give permissions to that folder. /tmp/kafka-combined-logs or remove the directory entirely.
chmod 644 /tmp/kafka-combined-logs/meta.properties
3. Generate a new cluster id.
CLUSTER_ID=$(bin/kafka-storage.sh random-uuid)
echo $CLUSTER_ID

4. Start the kafka server again.
bin/kafka-server-start.sh config/server.properties
5. Kafka should be running now.

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

79670053

Date: 2025-06-18 05:14:44
Score: 2.5
Natty:
Report link

You're on the right track exploring single-app management with dual-display support. For device management, consider using MDMs like Esper, Scalefusion, or 42Gears, they offer tools to manage app behavior, display settings, and remote configurations effectively for Android-based POS systems.

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

79670047

Date: 2025-06-18 05:02:40
Score: 2.5
Natty:
Report link

React Native Track Player does not natively emit events for Bluetooth disconnection or audio output route changes (e.g., switching from Bluetooth to speaker). You’ll need to listen to system-level audio route changes manually.

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

79670034

Date: 2025-06-18 04:50:37
Score: 2.5
Natty:
Report link

I feel the problem is because you are reading the array while operating on the array,list.subList is to read the view, but at the same time you are using removeAll to delete the data

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

79670029

Date: 2025-06-18 04:47:36
Score: 3
Natty:
Report link

A student account can't update their own grade. Only the teacher can submit a grade.

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

79670027

Date: 2025-06-18 04:42:35
Score: 1
Natty:
Report link

az login --use-device-code

this worked for me

Reasons:
  • Whitelisted phrase (-1): this worked for me
  • Whitelisted phrase (-1): worked for me
  • Low length (1.5):
  • No code block (0.5):
  • Low reputation (1):
Posted by: eren

79670025

Date: 2025-06-18 04:38:34
Score: 3.5
Natty:
Report link

I found the solution it will take just 5 min to resolve check out this youtube video : https://youtu.be/YI9BVB3o8_4?si=k1sxnlCp6TdHsuaF

Reasons:
  • Blacklisted phrase (1): youtu.be
  • Whitelisted phrase (-2): I found the solution
  • Probably link only (1):
  • Low length (1.5):
  • No code block (0.5):
  • Single line (0.5):
  • Low reputation (1):
Posted by: Janvi

79670021

Date: 2025-06-18 04:28:32
Score: 2
Natty:
Report link

I prefer the first structure.

--> In my opinion, related files should be kept together, so I prefer to organize my company's project using this structure. This is advantageous when we are developing a large software project with multiple developers working on it.

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

79670013

Date: 2025-06-18 04:12:29
Score: 1
Natty:
Report link

I've had this issue with the latest version Safari (16+) and I had no choice but to fork the project and fix it. The issue is that pdf.js is written using modern JS features that Safari does not support (yep, I know, Safari sucks... Safari is the new IE... Thanks Apple!). For example, it does not support `Promise.withResolvers` which required polyfills and so on.

In case this helps, here is my fork https://github.com/nicolasdao/pdf.js

I've included at the top of that README how to install it in your JS project.

Reasons:
  • Blacklisted phrase (0.5): Thanks
  • No code block (0.5):
Posted by: Nicolas Dao

79670009

Date: 2025-06-18 04:11:28
Score: 3
Natty:
Report link

I have a project name cause I have to make its index page responsive so I use media query but when my screen size reduces from 1630 it behaves irresponsible and and again responsive when size is at 983 give me. A better solution so that I make my page repaonsive

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

79670005

Date: 2025-06-18 04:01:26
Score: 0.5
Natty:
Report link

Recent versions of Firebase require at least Xcode 16.2. Details in the release notes.

Reasons:
  • Low length (1.5):
  • No code block (0.5):
  • Single line (0.5):
  • High reputation (-2):
Posted by: Paul Beusterien

79670002

Date: 2025-06-18 03:56:25
Score: 1.5
Natty:
Report link

There is this option in commit settings which appears when commiting a renamed file

enter image description here

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

79669999

Date: 2025-06-18 03:51:24
Score: 1.5
Natty:
Report link

As of .NET 8, for Azure Functions in the isolated worker model, MS recommends that you use 64-bit only owing to 'performance optimizations' only available for them.
Source - https://learn.microsoft.com/en-gb/azure/azure-functions/dotnet-isolated-process-guide

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

79669976

Date: 2025-06-18 03:10:15
Score: 2.5
Natty:
Report link

In my case the problem was that I changed the name of the test, but kept running old test Goland configuration

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

79669974

Date: 2025-06-18 03:05:14
Score: 2
Natty:
Report link

Though it's a bit late, I'm leaving this reply because I experienced the exact same issue as you.
I tried many different approaches, but in the end, upgrading SeleniumBase resolved everything.
That's all.

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

79669968

Date: 2025-06-18 02:44:09
Score: 1
Natty:
Report link

Try these =>

  1. Wrap your TextInput components in a KeyboardAvoidingView to ensure the input remains visible when the keyboard appears. Use a ScrollView with the keyboardShouldPersistTaps="handled" prop to prevent taps from dismissing the keyboard unnecessarily.

  2. Configure the behavior prop based on the platform (padding for iOS, height or undefined for Android) to adjust the view when the keyboard opens.

  3. If the TextInput is inside a FlatList or ScrollView, set removeClippedSubviews={false} to prevent the input from being unmounted when it goes off-screen, which can cause focus loss.

  4. Use a ref to programmatically manage focus if needed, ensuring the TextInput retains focus after the keyboard opens.

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

79669950

Date: 2025-06-18 02:23:04
Score: 4
Natty: 5
Report link

justo me sirvió, tenia unas carpetas que no estaba usando y no sabia porque me daba ese error hasta que las borre.

Reasons:
  • Blacklisted phrase (1): porque
  • Low length (1):
  • No code block (0.5):
  • Single line (0.5):
  • Low reputation (1):
Posted by: Lester Meneses

79669949

Date: 2025-06-18 02:22:03
Score: 2.5
Natty:
Report link

Just install python from Microsoft Store and after that press Ctrl + Shift + P and search for select interpreter there on the top it will show you all the python interpreters configured in you system.

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

79669941

Date: 2025-06-18 02:11:01
Score: 3.5
Natty:
Report link

Also, try making changes to your .htaccess file with the following line -

AddType application/octet-stream vcf

I have not tried it myself but see if that works for you.

Regards

Reasons:
  • Blacklisted phrase (1): Regards
  • Low length (1):
  • No code block (0.5):
  • Low reputation (1):
Posted by: Manu

79669940

Date: 2025-06-18 02:03:59
Score: 1
Natty:
Report link

Hey I saw your post during the power hour. If you're going to be providing the value to check for (i.e. "Washington"), you could use a filter action and join the values of the stops to see if they contain that value. The filter action would still return your full (but filtered) array of records.

For your filter action input, enter your array of data.
For the filter query,
join(item()?['Stops'],',') contains 'Washington'
Reasons:
  • Has code block (-0.5):
  • Unregistered user (0.5):
  • Low reputation (1):
Posted by: user30829544

79669937

Date: 2025-06-18 01:59:58
Score: 1.5
Natty:
Report link

نعم، من الممكن جدًا تحقيق ذلك باستخدام استدعاء واحد لـ GraphQL في GitLab API، وهذا هو أحد الأسباب الرئيسية لاستخدام GraphQL: القدرة على طلب بيانات متعددة ومترابطة في استعلام واحد فقط، بدلًا من إجراء عدة طلبات REST API منفصلة.

النهج الحالي الخاص بك يتضمن:

  1. استدعاء repository/tree للحصول على قائمة الملفات.

  2. ثم استدعاء repository/commits لكل ملف بشكل منفصل للحصول على آخر تحديث له. هذا هو ما يسبب مشكلة الكفاءة (مشكلة N+1).

كيفية الحصول على سجلات الملفات وأحدث وقت تحديث باستخدام GraphQL:

يمكنك استخدام استعلام GraphQL لطلب معلومات عن الشجرة (repository tree) والالتزامات (commits) المرتبطة بها في نفس الطلب. ستحتاج إلى التركيز على كائنات TreeEntry (لتمثيل الملفات والمجلدات في الشجرة) وكيفية الوصول إلى معلومات الالتزامات الخاصة بها.

إليك مثال على استعلام GraphQL يمكنك استخدامه (مع افتراض أن لديك الـ projectId والـ ref المناسبين):

GraphQL

query GetRepositoryTreeWithLastCommitInfo($projectPath: ID!, $ref: String!) {
  project(fullPath: $projectPath) {
    repository {
      tree(ref: $ref) {
        # يمكننا طلب عقد الشجرة مباشرة (الملفات والمجلدات)
        nodes {
          # يمكن أن يكون هذا ملفاً أو مجلدًا
          name
          path
          type # FILE, TREE, BLOB, etc.
          # إذا كان ملفاً، يمكننا طلب آخر التزام له
          ... on TreeEntry { # نستخدم фрагment للتركيز على TreeEntry (الملفات)
            lastCommit {
              # معلومات عن آخر التزام
              id
              sha
              message
              authoredDate # هذا هو الوقت الذي تم فيه التحديث الأخير
              author {
                name
                email
              }
            }
          }
        }
      }
    }
  }
}

المتغيرات (Variables) التي ستحتاجها لهذا الاستعلام:

JSON

{
  "projectPath": "your-group/your-project-name", # مسار المشروع الكامل (مثلاً "my-group/my-project")
  "ref": "main" # أو hash الالتزام الخاص بك (مثلاً "8af436d5abd261d32919d6525dbad617f7207bcc")
}

شرح الاستعلام:

  1. project(fullPath: $projectPath): نحدد المشروع باستخدام المسار الكامل (أفضل من الـ ID في GraphQL عادةً).

  2. repository { tree(ref: $ref) { ... } }: نصل إلى الشجرة في المستودع بالـ ref المحدد (سواء كان فرعًا أو هش التزام).

  3. nodes { ... }: نطلب جميع العناصر داخل الشجرة (ملفات ومجلدات).

  4. name و path و type: معلومات أساسية عن كل عنصر في الشجرة.

  5. ... on TreeEntry { lastCommit { ... } }: هذا هو الجزء الأهم. نستخدم Inline Fragment لتحديد أننا نريد حقل lastCommit فقط إذا كان الكائن الحالي هو TreeEntry (أي ملف).

  6. lastCommit { ... }: داخل lastCommit، يمكنك طلب تفاصيل مثل authoredDate (وهو آخر وقت تحديث تريده غالبًا)، message، author، وغيرها.

خطوات التنفيذ:

  1. الحصول على projectPath: بدلاً من project_id (66677391)، ستحتاج إلى المسار الكامل للمشروع (مثل my-org/my-project). يمكنك الحصول عليه من واجهة GitLab على الويب أو من استدعاء API آخر إذا لزم الأمر.

  2. استخدام نقطة نهاية GraphQL: بدلًا من repository/tree أو repository/commits، ستقوم بإرسال هذا الاستعلام إلى نقطة نهاية GraphQL العامة لـ GitLab، وهي عادةً: https://gitlab.com/api/graphql

  3. المصادقة (Authentication): ستحتاج إلى تضمين الـ Private Token الخاص بك في رأس الطلب (Header)، عادةً كـ Authorization: Bearer <your_personal_access_token>.

مميزات هذا النهج:

جرب هذا الاستعلام في أداة اختبار GraphQL (مثل GraphiQL المدمجة في بعض منصات GitLab، أو Postman، أو أي عميل GraphQL). هل هذا يساعدك على فهم كيفية البدء؟

Reasons:
  • Long answer (-1):
  • Has code block (-0.5):
  • No latin characters (2):
  • Low reputation (1):
Posted by: Hamad Ayed

79669935

Date: 2025-06-18 01:55:57
Score: 1
Natty:
Report link

I once tested this and determined that the widest column width for display on GitHub without horizontal scrollbars being added was 116 characters. YMMV.

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

79669929

Date: 2025-06-18 01:39:54
Score: 0.5
Natty:
Report link
  1. f2py doesn’t currently support binding interface blocks. Workarounds:

1.1. Comment all module, contains, ... statements;

1.2. See Using FYPP for binding generic interfaces

  1. Your code is F90 with a fixed form. You can use a --f90flags=-ffixed-form, but not all versions of Numpy (f2py) will work stably. It might be worth converting the file to a free form.

Jupyter Notebook with your code: https://github.com/Serge3leo/temp-cola/blob/main/stackoverflow-79661744.ipynb

Reasons:
  • Blacklisted phrase (1): stackoverflow
  • Whitelisted phrase (-1.5): You can use
  • Contains signature (1):
  • Has code block (-0.5):
  • Low reputation (0.5):
Posted by: Serge3leo

79669927

Date: 2025-06-18 01:38:53
Score: 2.5
Natty:
Report link

After much trial and error, it turned out to be malformed html on the page. an open <br caused the files input component to be "outside" of the form. So, when laravel did it's magic, it didn't see that control in the form so it didn't bundle it in my post $request. I'll leave this question though, because it is a working example of filepond, which automatically adds the tmp filename to the files input component perfectly!

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

79669925

Date: 2025-06-18 01:36:53
Score: 1
Natty:
Report link

Try use float16 not bfloat16, it seems that bfloat16 will use more VRAM.

torch_dtype=torch.float16

or try to use xformers to reduce VRAM usage.

self.pip.enable_xformers_memory_efficient_attention()
Reasons:
  • Low length (0.5):
  • Has code block (-0.5):
  • Low reputation (1):
Posted by: YE Chen

79669923

Date: 2025-06-18 01:29:51
Score: 2
Natty:
Report link

I cannot reproduce this issue on my side with my SSA account. Please verify if your SSA account has the access to the folder where the model locates in your ACC project. At least, it must have the view permission. https://help.autodesk.com/view/DOCS/ENU/?guid=Folder_Permission_Levels

enter image description hereenter image description here

Reasons:
  • Blacklisted phrase (0.5): I cannot
  • Probably link only (1):
  • Low length (0.5):
  • No code block (0.5):
  • Single line (0.5):
  • High reputation (-1):
Posted by: Eason Kang

79669922

Date: 2025-06-18 01:27:50
Score: 4
Natty:
Report link

“I’ve been using Flymaxis non‑marking badminton shoes in Raipur during my weekend indoor badminton sessions. The cushioning and outsole grip are top‑notch—really helps with quick lateral movements

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

79669921

Date: 2025-06-18 01:24:49
Score: 2.5
Natty:
Report link

This is the doc for the endpoint you want:

https://learn.microsoft.com/en-us/graph/api/serviceprincipal-update?view=graph-rest-1.0&tabs=http

There will be a service principal associated with the app:
https://learn.microsoft.com/en-us/graph/api/resources/serviceprincipal?view=graph-rest-1.0

Updating the accountEnabled property on this service principal as mentioned in the comment would accomplish what you are asking for.

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

79669919

Date: 2025-06-18 01:22:49
Score: 1
Natty:
Report link

If you are running on a HPC cluster, one common reason for this error is are running test on a node without GPU.

Under the context of HPC, It's a common practice to setup environment on login nodes which are without GPU in most cases. You have to run your test on a node that with GPU and Nvidia drivers.

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

79669915

Date: 2025-06-18 01:14:47
Score: 1
Natty:
Report link

The v3 of the Classic Release "ARM template deployment" support Bicep.

https://github.com/microsoft/azure-pipelines-tasks/blob/master/Tasks/AzureResourceManagerTemplateDeploymentV3/README.md

In action:

enter image description here

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

79669914

Date: 2025-06-18 01:14:47
Score: 4
Natty:
Report link

Resolved

The version of the Gem I had installed was 0.4.0, and since the for_handle filter was implemented in a later version, I wasn’t able to use it. https://rubygems.org/gems/google-apis-youtube_v3/versions/0.4.0

Updating the Gem to a newer version resolved the issue. https://rubygems.org/gems/google-apis-youtube_v3/versions/0.56.0

Thank you to SpicyCatGames for the comment!

Reasons:
  • Blacklisted phrase (0.5): Thank you
  • Probably link only (1):
  • Low length (0.5):
  • No code block (0.5):
  • Self-answer (0.5):
  • Low reputation (1):
Posted by: mousu

79669906

Date: 2025-06-18 00:53:42
Score: 0.5
Natty:
Report link

echo adds a line feed, try this instead

<nul set/p z=a>1.txt

OR

cd|set/p="a">1.txt

Second method requires double quotes, and you can place a variable in place of a.

Note that both methods set ERRORLEVEL to 1.

Reasons:
  • Whitelisted phrase (-1): try this
  • Low length (0.5):
  • Has code block (-0.5):
  • Unregistered user (0.5):
  • Low reputation (1):
Posted by: zovbot

79669897

Date: 2025-06-18 00:47:40
Score: 1
Natty:
Report link

export const apiClient = axios.create({
  baseURL: 
    `http://${Platform.OS == 'android' ? '10.0.2.2' : 'localhost'}:8080/api/v1`,
});

When using an Android emulator (AVD), localhost refers to the emulator itself, not your computer. To access a server running on your host machine, use 10.0.2.2 instead of localhost. This fixed the issue for me.

Reasons:
  • Has code block (-0.5):
  • Starts with a question (0.5): When
  • Low reputation (1):
Posted by: Ahmed Habib

79669895

Date: 2025-06-18 00:45:40
Score: 0.5
Natty:
Report link

A related situation would be when you are getting this error while installing WordPress.

A really simple solution that helped me out of my frustrations is to simply allow permissions to the folder where your website is installed. I got this problem when I could not install WordPress project. After going round and round the web, that is what it came down to: folder permissions!

Reasons:
  • No code block (0.5):
Posted by: Hannington Mambo

79669894

Date: 2025-06-18 00:44:39
Score: 0.5
Natty:
Report link

In case Google leads you here, be aware that a <span> will not rotate, but a <div> will.
Works: <div class="transform rotate-90">Sideways text</div>
Fails: <span class="transform rotate-90">Sideways text</span>

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

79669889

Date: 2025-06-18 00:31:37
Score: 3.5
Natty:
Report link

If you are distributing an Ionic app, you have to replace App with your app name.

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

79669884

Date: 2025-06-18 00:22:34
Score: 4.5
Natty:
Report link

Remove ads from Google Play now I want to remove it I don't want it on my games not even the continent at app purchase

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

79669867

Date: 2025-06-17 23:39:25
Score: 1.5
Natty:
Report link

editIndex == index checks if the current task is the one being edited. This helps show the input box and save/cancel buttons only for that task. It's better to use === instead of == because === checks both the value and the type, which makes your code more accurate and avoids bugs.

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

79669866

Date: 2025-06-17 23:37:24
Score: 1
Natty:
Report link

If you want to handle this with Capture Collection it needs a callback as @Sweeper answer says.
It's more intricate although as he mentions in the caveats.

If you want to just do a Replacement then it can be done like this:

https://regex101.com/r/6Nu8e9/1 (Draft Saved)

Reasons:
  • Low length (0.5):
  • No code block (0.5):
  • User mentioned (1): @Sweeper
  • High reputation (-1):
Posted by: sln

79669850

Date: 2025-06-17 23:08:17
Score: 1
Natty:
Report link

You should now be facing a higher limit of 20,000
https://learn.microsoft.com/en-us/answers/questions/1301863/is-there-any-limitation-to-concurrent-connections

Shifting the plan type moves away from API limitations and into Blob storage concurrent upload limitations instead(which are much higher)

I have done this type of thing successfully with higher connection frequency than what you describe so you should be alright.

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