79806221

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

No, pre-production and sandbox environments are not the same.
They serve different purposes in the software development and deployment lifecycle. Pre-Production environment is the only system environment where we have to do Performance Testings like Stress Testing and Load Testing etc. & UAT, but In some companies where Pre-Production environment is not available, then They do few rounds of Performance Testing in QA Environment itself or they do Performance Testing slightly for few Major scenarios/ Priority 1 scenarios or Priority 1 business functions Testing.

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

79806220

Date: 2025-10-31 21:29:12
Score: 1.5
Natty:
Report link

Please [edit] the code in the question to be a [mre]; that means any third party or private stuff should be removed or fully defined/declared for us. That lets us test any suggestions against an example we all have in front of us. For example, please either remove or define snakeToCamel for us.

EDIT: uh... I guess this isn't a normal comment. Or a normal question. It's an... "open ended question"? Hmm, I'm confused. Sorry, I'll probably come back and edit this in a bit?

Reasons:
  • RegEx Blacklisted phrase (2): any suggestions
  • Has code block (-0.5):
  • Ends in question mark (2):
  • High reputation (-2):
Posted by: jcalz

79806213

Date: 2025-10-31 21:20:10
Score: 3
Natty:
Report link

May I ask where the backend is hosted?
This behavior typically isn’t a code issue as many free or low-tier hosting services automatically suspend your app after being idle for sometime.
The first request after a long idle period usually fails because it’s waking up the server ‘cold start’ if you want to put it that way, and requests that follow works fine once the instance of your server is active again.

Reasons:
  • Blacklisted phrase (1): May I ask
  • No code block (0.5):
  • Contains question mark (0.5):
  • Low reputation (1):
Posted by: Fouad

79806195

Date: 2025-10-31 20:55:04
Score: 3.5
Natty:
Report link

Updated link to blog post by fdubs that contains details on what data to send over port 9100:

https://frankworsley.com/printing-directly-to-a-network-printer

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

79806189

Date: 2025-10-31 20:51:02
Score: 2
Natty:
Report link

I confirm that UAT(User Acceptance Testing) is done in SIT(System Integration Testing or Testing) environment or QA environment(QA environment is the another name of Testing environment or QA system). UAT is not done in Production. In this UAT phase of testing Business Users will be supported by UAT testers.

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

79806186

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

I find the $SECONDS feature available in MACOS zsh to be easy to use

start_time=$SECONDS

... your code to measure

end_time=$SECONDS
elapsed=$((end_time - start_time))
echo "Elapsed time: $elapsed seconds"
Reasons:
  • Low length (0.5):
  • Has code block (-0.5):
  • Low reputation (0.5):
Posted by: Ron at BiophysicsLab

79806183

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

Failure to access the list of forms of a project using the ACC API with a two-legged OAuth token is expected behavior, according to how Autodesk authentication system was designed. HTTP 401 “Unauthorized” error with the “Authorization failed” message indicates that the token does not have the necessary permissions to access this specific resource. Although the two-legged token works correctly in other ACC APIs, the Forms API has a different requirement: it needs a three-legged token, as forms-related operations are directly linked to permissions and the context of a user within the project.

Two-legged token represents only the application and not a specific user, which limits access to features that require user-level authentication. On the other hand, the three-legged token is obtained by explicit authorization from an end-user and allows the application to act on behalf of this user, respecting the permissions defined in the ACC project. Therefore, even if the two-legged token works well for endpoints dealing with more generic data, it is not enough to access information that requires connection with a human user's account, such as forms.

Unfortunately, so far, Autodesk has not announced support for two-legged tokens in the Forms API. This limitation is related to the Autodesk Construction Cloud security architecture, which prioritizes the traceability and individual responsibility of each action within a project. As forms usually involve compliance, security, inspections, or field records, it makes sense that access to them depends on an authenticated user context.

For integrations that cannot use three-legged tokens, this restriction really imposes a challenge. In many cases, the only viable alternative is to re-evaluate the authentication flow using a service user or a dedicated account to carry out the initial authorization and, from that, store and renew the three-legged token in a controlled manner. Although this requires more complexity in the integration process, it is currently the only compatible way to access the Forms API.

For now, there is no official prediction of when — or if — Autodesk intends to allow the use of two-legged tokens in this API. The most recommended is to monitor updates of official documentation and APS forums (Autodesk Platform Services), where ads and support changes are usually published. This is a limitation widely recognized by the community, and several development teams have already requested Autodesk to reassess this policy, especially for automation cases without direct user interaction.

In short, the 401 error is not related to a technical problem in authentication, but to a deliberate limitation of API design. The Forms API requires a three-legged token to ensure the association of actions with an authenticated user, and so far there is no support or forecast for the implementation of two-legged tokens for this endpoint.

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

79806175

Date: 2025-10-31 20:11:52
Score: 3
Natty:
Report link

The core issue with your JWT decorator is the missing essential @ symbol. You are using jwt_required instead of @jwt_required() with a leading @ and following parentheses. Note that in class-based views or if you want to have more control over the authentication flow, it is recommended to use verify_jwt_in_request because it supports better error handling and ensures get_jwt_identity will never return None since it validates the token before it tries to extract its identity.

Reasons:
  • No code block (0.5):
  • User mentioned (1): @jwt_required
  • Single line (0.5):
  • Low reputation (1):
Posted by: Raghav Thakur

79806162

Date: 2025-10-31 19:52:47
Score: 1.5
Natty:
Report link

NVARCHAR(MAX) can hold up to 2 GB of data, so a 700 KB JSON string is not a problem by itself.

However, building and storing large JSON blobs inside SQL Server is not recommended.

Maximum capacity specifications for SQL Server

Reasons:
  • Low length (1):
  • Has code block (-0.5):
  • Starts with a question (0.5): can
  • Low reputation (0.5):
Posted by: Alparslan ŞEN

79806148

Date: 2025-10-31 19:42:44
Score: 2.5
Natty:
Report link

It runs in vscode cause of an extension. Try using Python from Python.org instead of MSFT store, check if the installation path is not added to your system environment variable path and/or reinstall Python and choose the ‘Add Python to PATH’ on the installer

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

79806142

Date: 2025-10-31 19:29:41
Score: 1
Natty:
Report link

You could use ThreadPoolExecutor and initialize workers who have a shared memory but it's affected by GIL.

you could use this simple code

from concurrent.futures import ThreadPoolExecutor
import tarfile
import os

def extract_file(fullpath, destination):
   
    try:
        with tarfile.open(fullpath, 'r:gz') as tar:
            tar.extractall(destination)
       
    except Exception as e:
        print(f"Error extracting {fullpath}: {e}")

def unziptar_parallel(path):
   
    tar_files = []
    for root, dirs, files in os.walk(path):
        for file in files:
            if file.endswith(".tar.gz"):
                fullpath = os.path.join(root, file)
                tar_files.append((fullpath, root)) 
    
   
    
    with ThreadPoolExecutor(max_workers=4) as executor:
      
        tasks = []
        for fullpath, destination in tar_files:
            task = executor.submit(extract_file, fullpath, destination)
            tasks .append(future)
        
        # انتظار انتهاء جميع المهام
        for task in tasks :
            task.result()

path = 'your path'
unziptar_parallel(path)

Check these resources for more information:

  1. https://www.geeksforgeeks.org/python/how-to-use-threadpoolexecutor-in-python3/

  2. https://medium.com/@parthsurati096/threadpoolexecutor-vs-processpoolexecutor-a-complete-comparison-03828617bb83

Reasons:
  • Blacklisted phrase (0.5): medium.com
  • Probably link only (1):
  • Long answer (-1):
  • Has code block (-0.5):
  • Low reputation (1):
Posted by: Mohammad Othman

79806141

Date: 2025-10-31 19:29:41
Score: 3
Natty:
Report link
header 1 header 2
Emil limens
emil3 limens_67
Reasons:
  • Low length (1.5):
  • No code block (0.5):
  • Low reputation (1):
Posted by: Emil Jonsgården

79806140

Date: 2025-10-31 19:27:40
Score: 2
Natty:
Report link

I'm from the Apryse Mobile support team. In order to best assist you, would you be able to submit a minimal runnable sample along with a video demonstrating the issue you are encountering. You can submit a ticket here: https://support.apryse.com/support/tickets/new

I look forward to further assisting you.

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

79806134

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

Right before posting I noticed that my extension is actually working correctly, and the error, although cryptic, is not stopping the communication with the native host.

I will leave this question open since it would be good to know how to debug the error.

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

79806129

Date: 2025-10-31 19:13:37
Score: 1.5
Natty:
Report link

I'm not sure about typescript, sounds like your issue is there because short will always be 2 bytes in length. The method you are using will perform fast but will have a larger memory footprint. You could use a for loop(using BitConverter to get each byte) which will take a little longer(about 2x nano seconds) but memory footprint reports half.

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

79806123

Date: 2025-10-31 19:03:34
Score: 1.5
Natty:
Report link

Consider referencing users by their Keycloak UUID in your application tables rather than maintaining a separate local user table. If your business requirements don’t demand querying users by name or other attributes locally, storing only the Keycloak UUID allows you to fetch full user details through the Keycloak Admin REST API (GET /realms/{realm}/users/{uuid}) as needed. This approach leverages Keycloak’s built-in IAM security, keeps your app decoupled from identity management concerns, and ensures you always have current data while minimizing local exposure of sensitive user info.

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

79806122

Date: 2025-10-31 19:03:34
Score: 3
Natty:
Report link

I found this website which uses google sheet for names

https://livefamilytrees.com

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

79806115

Date: 2025-10-31 18:52:31
Score: 0.5
Natty:
Report link

Click the three-dot menu in the Outline then click Follow cursor.

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

79806114

Date: 2025-10-31 18:52:31
Score: 1.5
Natty:
Report link

The tip mentioned here Docker containers exit code 132 worked for me too! Adding a screenshot to help find it for others.

enter image description here

Reasons:
  • Whitelisted phrase (-1): worked for me
  • Probably link only (1):
  • Low length (1.5):
  • No code block (0.5):
  • Single line (0.5):
  • High reputation (-1):
Posted by: ubienewbie

79806099

Date: 2025-10-31 18:39:28
Score: 3.5
Natty:
Report link

I found that it is blocked from within my organization. I am going to delete my question.

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

79806093

Date: 2025-10-31 18:24:24
Score: 4
Natty:
Report link

It was happening on my Edge. It was because Pause on caught exceptions was checked.

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

79806088

Date: 2025-10-31 18:16:21
Score: 3.5
Natty:
Report link

Use a VM running something like windows 7/XP, it'll probably work.

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

79806069

Date: 2025-10-31 17:40:13
Score: 1.5
Natty:
Report link

Might be discussed. I think option B is the correct, modern, and production-ready best practice. Your identity provider (Keycloak) should be the single source of truth (SSoT) for user identity. Option A (Syncing) is an anti-pattern. It violates the single source of truth principle. It creates a fragile, tightly-coupled system where your application database is just a stale, partial copy of Keycloak's data.

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

79806063

Date: 2025-10-31 17:32:11
Score: 1.5
Natty:
Report link

What do you mean by "is down"? For me, the page seems to load normally.

Reasons:
  • Low length (1.5):
  • No code block (0.5):
  • Contains question mark (0.5):
  • Single line (0.5):
  • Starts with a question (0.5): What do you mean
  • High reputation (-2):
Posted by: mkrieger1

79806041

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

After emailing the Solr user mailing list, there are TWO things you need to do:

  1. You need to have uninvertible=true, AND

  2. You need to explicitly specify an analyzer for fields, even though they're based on TextField.

Here's what wound up working:

curl -X POST -H 'Content-type:application/json' \
  "http://localhost:8983/solr/$COLLECTION/schema" \
  -d '{
    "add-field-type": {
      "name": "multivalued_texts",
      "class": "solr.TextField",
      "stored": true,
      "multiValued": true,
      "indexed": true,
      "docValues": false,
      "uninvertible": true,
      "analyzer": {
        "type": "index",
        "tokenizer": {
          "class": "solr.StandardTokenizerFactory"
        },
        "filters": [
          {
            "class": "solr.LowerCaseFilterFactory"
          }
        ]
      }
    }
  }'
Reasons:
  • Long answer (-0.5):
  • Has code block (-0.5):
  • Self-answer (0.5):
  • Low reputation (1):
Posted by: Mark Bennett

79806038

Date: 2025-10-31 17:07:04
Score: 0.5
Natty:
Report link

just ran into this issue!

It seems to be an issue with the loop, cam.GetNextImage needs to be increased to allow for your first hardware trigger. I just added a few 0s.

  for i in range(NUM_IMAGES):
            try:

                #  Retrieve the next image from the trigger
                result &= grab_next_image_by_trigger(nodemap, cam)

                #  Retrieve next received image
                image_result = cam.GetNextImage(1000)

                #  Ensure image completion
                if image_result.IsIncomplete():
                    print('Image incomplete with image status %d ...' % image_result.GetImageStatus())

                else:
Reasons:
  • Long answer (-0.5):
  • Has code block (-0.5):
  • Unregistered user (0.5):
  • Low reputation (1):
Posted by: Amon-Ra Refractor

79806029

Date: 2025-10-31 16:51:00
Score: 0.5
Natty:
Report link

I was able to solve this issue by changing my code from

@Configuration
@EnableTransactionManagement
public class Neo4jConfig {

    @Bean
    public Neo4jTransactionManager transactionManager(org.neo4j.driver.Driver driver) {
        Neo4jTransactionManager manager = new Neo4jTransactionManager(driver);
        manager.setValidateExistingTransaction(true);
        manager.
        return manager;
    }
}

to

@Configuration
@EnableTransactionManagement
public class Neo4jConfig {

    @Value("${spring.data.neo4j.database}")
    private String database;

    @Bean
    public DatabaseSelectionProvider databaseSelectionProvider() {
        return () -> DatabaseSelection.byName(database);
    }

    @Bean
    public Neo4jClient neo4jClient(Driver driver, DatabaseSelectionProvider provider) {
        return Neo4jClient.with(driver)
                .withDatabaseSelectionProvider(provider)
                .build();
    }

    @Bean
    public PlatformTransactionManager transactionManager(Driver driver, DatabaseSelectionProvider provider) {
        return Neo4jTransactionManager.with(driver)
                .withDatabaseSelectionProvider(provider)
                .build();
    }
}

I found this on a Chinese website, along with an explanation: https://leileiluoluo-com.translate.goog/posts/spring-data-neo4j-database-config-error.html?_x_tr_sl=auto&_x_tr_tl=en&_x_tr_hl=sv&_x_tr_pto=wapp

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

79806021

Date: 2025-10-31 16:42:58
Score: 3.5
Natty:
Report link

Added a simple implementation. I have not attempted any of your suggestions yet.

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

79806012

Date: 2025-10-31 16:33:56
Score: 0.5
Natty:
Report link

The reason audio cuts off when you release a key is that you only calculate the next audio sample in updateStream() when a key is pressed. The moment you release the key, the envelope release works, but the audio signal stops because you just assign each new sample to prevSample (i.e. keysPressed[i] is false). A solution would be just calculate the next sample every iteration of the loop with no if condition.

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

79806011

Date: 2025-10-31 16:32:55
Score: 1
Natty:
Report link

It's likely that you're simply reaching some internal maximum number of connections. As @Barmar pointed out in a comment, you're not actually ending your responses. Change response.end; to response.end(); and it's likely to work as expected.

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

79806006

Date: 2025-10-31 16:29:55
Score: 2
Natty:
Report link

=============== Solution thanks to acw1668 =================

Updated Excel_Frame 
1) Added width=800, height=300 
2) Added sticky="nsew" 
3) Added Excel_Frame.pack_propagate(0)


# Create Excel_Frame for TreeView Excelsheet
Excel_Frame = ttk.Frame(Main_Frame, width=800, height=300)
Excel_Frame.grid(row=0, column=1, rowspan=20, sticky="nsew")

treeScroll_x = ttk.Scrollbar(Excel_Frame, orient="horizontal")
treeScroll_y = ttk.Scrollbar(Excel_Frame, orient="vertical")

treeScroll_x.pack(side="bottom", fill="x")
treeScroll_y.pack(side="right", fill="y")

treeview = ttk.Treeview(Excel_Frame, show="headings", xscrollcommand=treeScroll_x.set, yscrollcommand=treeScroll_y.set)

treeview.pack(side="left", fill="both", expand=True, padx=5, pady=5)

treeScroll_x.config(command=treeview.xview)
treeScroll_y.config(command=treeview.yview)

Excel_Frame.pack_propagate(0)
Reasons:
  • Blacklisted phrase (0.5): thanks
  • Long answer (-0.5):
  • Has code block (-0.5):
  • Self-answer (0.5):
  • No latin characters (1):
  • Filler text (0.5): ===============
  • Filler text (0): =================
  • Low reputation (0.5):
Posted by: user2741620

79806005

Date: 2025-10-31 16:29:55
Score: 3.5
Natty:
Report link

Are there any results? is it working with setting int10h?

If so can you post the content of the grub/grub-core/boot/i386/pc/boot.S file or at least

the part of the boot.S file where the int 10h is handled

                                                                                    
/*                                                                                  
 * message: write the string pointed to by %si                                      
 *                                                                                  
 *   WARNING: trashes %si, %ax, and %bx                                             
 */                                                                                 
                                                                                    
        /*                                                                          
         * Use BIOS "int 10H Function 0Eh" to write character in teletype mode      
         *      %ah = 0xe       %al = character                                     
         *      %bh = page      %bl = foreground color (graphics modes)             
         */                                                                         
1:                                                                                  
        movw    $0x0001, %bx                                                        
        movb    $0xe, %ah                                                           
        int     $0x10           /* display a byte */                                
LOCAL(message):                                                                     
        lodsb                                                                       
        cmpb    $0, %al                                                             
        jne     1b      /* if not end of string, jmp to display */                  
        ret                                                                         
                                                                                    
        /*                                                                          
         *  Windows NT breaks compatibility by embedding a magic                    
         *  number here.                                                            
         */                                                                         
                                                                                    
Reasons:
  • RegEx Blacklisted phrase (2.5): can you post
  • Long answer (-1):
  • Has code block (-0.5):
  • Contains question mark (0.5):
  • Low entropy (1):
  • Low reputation (1):
Posted by: Mario Pink

79805992

Date: 2025-10-31 16:15:51
Score: 1.5
Natty:
Report link

@Mindswipe The alignment problem occurs in the TypeScript. The reason the short array is being converted to a byte array is to leverage the Blazor interop optimisation that I linked from my question. If you transfer a short array, Blazor 64-bit encodes the array before using SignalR to transfer it to the browser, and then converts it back in the TypeScript interop, which introduces a large overhead.

Reasons:
  • No code block (0.5):
  • User mentioned (1): @Mindswipe
  • Self-answer (0.5):
  • Single line (0.5):
  • Looks like a comment (1):
  • High reputation (-2):
Posted by: Matthew Watson

79805990

Date: 2025-10-31 16:11:50
Score: 4
Natty:
Report link

@Dai I added this link to the original question. I'm also curious how other people might define it, but the definition I've seen used most is:

An architectural style where independently deliverable frontend applications are composed into a greater whole.

Reasons:
  • Blacklisted phrase (1): this link
  • Low length (0.5):
  • No code block (0.5):
  • User mentioned (1): @Dai
  • Self-answer (0.5):
  • Low reputation (0.5):
Posted by: Jaidiac

79805989

Date: 2025-10-31 16:09:49
Score: 1.5
Natty:
Report link

@dbc I had a typo in the original code, which I've fixed. However note that the only way to get Blazor to optimise the interop call to use binary data rather base-64 encoded data is to transfer bytes. If you try to transfer shorts it will use base-64 encoding. (Also note that JSON serialisation has even more overhead than base-64 encoding!)

Reasons:
  • No code block (0.5):
  • User mentioned (1): @dbc
  • Self-answer (0.5):
  • Single line (0.5):
  • Looks like a comment (1):
  • High reputation (-2):
Posted by: Matthew Watson

79805975

Date: 2025-10-31 15:54:45
Score: 0.5
Natty:
Report link

We'll forget about the right way to do thing and just fix your code.

Firstly, why all that?

tile.classList.add('date_active');
imgSelect.classList.add('tl_LegImgVisible');
imgSelect.setAttribute('aria-hidden', false);
legendSelect.classList.add('tl_LegImgVisible');
legendSelect.removeAttribute('inert');
credSelect.classList.add('credShow'); 

And not something like that ?

// assume item is a wrapper or each timeline item
item.setAttribute('aria-hidden', false);

And secondary, you issue is related to opacity so where is the CSS code because I don't see where you update it and assume that it is in your CSS code.

Reasons:
  • Long answer (-0.5):
  • Has code block (-0.5):
  • Contains question mark (0.5):
  • Low reputation (1):
Posted by: TDJ.dev

79805971

Date: 2025-10-31 15:51:44
Score: 2
Natty:
Report link

Why don't you just use Livekit? Here's an example: https://willlewis.co.uk/blog/posts/deploy-element-call-backend-with-synapse-and-docker-compose/ I have a synapse server set up recently. Livekit works for Element Call, but I am not jet finished with implementing a TURN server. I recommend to use nginx and docker-compose but you don't have to.

Reasons:
  • Low length (0.5):
  • Has code block (-0.5):
  • Contains question mark (0.5):
  • Starts with a question (0.5): Why don't you
  • Low reputation (1):
Posted by: s_cheese

79805968

Date: 2025-10-31 15:50:44
Score: 3
Natty:
Report link

I have already done extensive research into this problem and have gotten nowhere. As for putting in a link to IBObjects; if you don't know what IBObjects is you're not going to be able to help. Putting in a link to the defunct web site isn't going to help.

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

79805965

Date: 2025-10-31 15:48:43
Score: 2
Natty:
Report link

This happened for me in a similar fashion as OP's question. After reading Ybl84f1's comment, I realized that (a) my laptop has dual GPUs, and (b) it wasn't plugged in at the time, forcing Windows to use the Intel GPU. Plugging it in solved the issue.

Tried to comment on answer above, but couldn't. But maybe this will help someone.

Reasons:
  • Blacklisted phrase (1): to comment
  • No code block (0.5):
  • Low reputation (0.5):
Posted by: Steve K.

79805962

Date: 2025-10-31 15:46:42
Score: 0.5
Natty:
Report link

When calling a function, whether it is main or any other function, its return address is pushed on the stack.

The important thing to note in the example is:

 ret = (int *)&ret + 2;

Here, we are casting ret as an int, and then moving up the stack by &ret + 2 (+14 bytes)

This means that ret is now pointing to the return address for function main.
(*ret) = (int)shellcode;
Here, we overwrite the return address with the address of the shellcode.
So now, when the program returns, the jmp instruction goes to the address of the shellcode and not the intended return address

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

79805959

Date: 2025-10-31 15:45:42
Score: 1
Natty:
Report link

I found this script which does the trick

#!/bin/bash

# Get the time one hour ago in ISO 8601 format
one_hour_ago=$(date -u -d '1 hour ago' +'%Y-%m-%dT%H:%M:%SZ')

# List all the latest delete markers
delete_markers=$(aws s3api list-object-versions --bucket my-bucket --prefix my-folder/ --query 'DeleteMarkers[?IsLatest==`true`].[Key, VersionId, LastModified]' --output text)

# Delete only the delete markers set within the last hour
while IFS=$'\t' read -r key version_id last_modified; do
  if [[ "$last_modified" > "$one_hour_ago" ]]; then
    echo "Deleting delete marker for $key with version ID $version_id, set at $last_modified"
    aws s3api delete-object --bucket my-bucket --key "$key" --version-id "$version_id"
  fi
done <<< "$delete_markers"

source: https://dev.to/siddhantkcode/how-to-recover-an-entire-folder-in-s3-after-accidental-deletion-173f

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

79805954

Date: 2025-10-31 15:40:40
Score: 1
Natty:
Report link

Following up on this -- I reported this to Intel and it turns out this is a bug! Adrian Hunter has recently posted patches to the mailing list to fix this.

https://lkml.org/lkml/2025/10/13/282

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

79805953

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

Change your content scale to crop for your imageview... same with coil AsyncImage

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

79805951

Date: 2025-10-31 15:38:39
Score: 0.5
Natty:
Report link

Slow processing likely isn't avoidable with the limitations of the hardware you're using.

If the issue is simply that older frames are getting processed, you can separate the image retrieval into its own thread, then pull the latest frame from that each time the YOLO process finishes processing a frame. This will result in a lot of lost frames, but you'll have a somewhat consistent delay. This also works well for ensuring you don't miss intermediate frames for encoded streams, which can result in corrupted frames getting processed.

If the issue is that you expect your frames to be processed faster, you can consider using a lighter model (replace "yolov8n.pt"). I still wouldn't expect to your code to keep up with the frame rate of your camera, though. Another option here is to look into purchasing a third-party AI chip to plug in to your Pi, which would function as a sort of GPU replacement for accelerated inference.

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

79805943

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

It's not necessary to appendTo the modal body. This solution can leads to other rendering problems.

I gave an explanation of why this "bug" happens. And a "clean" solution without downfall. Here's the link:
https://stackoverflow.com/a/79805871/19015743

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

79805940

Date: 2025-10-31 15:28:37
Score: 0.5
Natty:
Report link
SELECT 
    p.id,
    CASE
        WHEN EXISTS (SELECT 1 FROM b_codes WHERE p.Col1 LIKE value) THEN 'b'
        WHEN EXISTS (SELECT 1 FROM s_codes WHERE p.Col1 LIKE value) THEN 'S'
        WHEN EXISTS (SELECT 1 FROM u_codes WHERE p.Col1 LIKE value) THEN 'U'
        ELSE 'U'
    END AS Flag
FROM p;

output:

ID Flag
AAA b
AAA S
AAA U
AAA U
BBB U
BBB U
BBB U
BBB U
CCC b
CCC U
DDD U
DDD U
DDD U
Reasons:
  • Has code block (-0.5):
  • No latin characters (0.5):
  • Low reputation (0.5):
Posted by: Alparslan ŞEN

79805936

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

I switched to the pre-release version of the Jupyter extension, and it worked for me.

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

79805935

Date: 2025-10-31 15:25:36
Score: 0.5
Natty:
Report link

We don't need you to simply repeat that you perceive a problem—we understood that from your first post. We were asking for more details on what you see, and suggesting ways to debug it further.

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

79805932

Date: 2025-10-31 15:21:35
Score: 0.5
Natty:
Report link

Have you tired to change ConfluentKafkaContainer by KafkaContainer?

import org.testcontainers.containers.KafkaContainer;

@Container
@ServiceConnection
static KafkaContainer kafka = new KafkaContainer(
    DockerImageName.parse("confluentinc/cp-kafka:7.7.0")
);

By switching to the base KafkaContainer, Spring Boot's KafkaContainerConnectionDetailsFactory will execute, read the container's getBootstrapServers() method, and correctly configure the spring.kafka.bootstrap-servers property for you.

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

79805931

Date: 2025-10-31 15:20:35
Score: 2.5
Natty:
Report link

Resolve by installing a matching PyTorch build and restarting the Jupyter kernel. This error means compiled custom ops are missing, reinstall torch (correct CUDA/CPU wheel) and rebuild extensions for your environment.

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

79805928

Date: 2025-10-31 15:20:35
Score: 1.5
Natty:
Report link

As I understand, yEnc don't work with UTF-8.

It is not really binary-to-text though, it is more "binary to binary which can pass through common NNTP servers/clients as long as common encodings like latin1 are used" The last part is critical - yEnc is incompatible with more complex encodings like UTF-8, which is why it is completely useless today.
https://news.ycombinator.com/item?id=34680371

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

79805924

Date: 2025-10-31 15:16:34
Score: 0.5
Natty:
Report link

In case you use mamba or micromamba in stead of conda, vscode/codium will still look for conda, so adding this line to ~/.bashrc:

alias conda="micromamba" # or ="mamba"

solved the issue for me.

Small disclaimer on this alias being an at-your-own-risk configuration

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

79805919

Date: 2025-10-31 15:09:31
Score: 3.5
Natty:
Report link

Welcome to the internet - it works through links. Consider linking to a product to which you merely name (IBOjects). Also avoid too many tiny paragraphs - consider using a list instead. Avoid prosa like "Thanks in advance". Your question as of now does not contain one bit of effort from yourself - Stack Overflow is a collection of specific problems and solutions to it - it's not a service for carrying out whole tasks for you.

Reasons:
  • Blacklisted phrase (0.5): Thanks
  • RegEx Blacklisted phrase (3): Thanks in advance
  • No code block (0.5):
  • Single line (0.5):
  • High reputation (-1):
Posted by: AmigoJack

79805910

Date: 2025-10-31 15:00:29
Score: 3.5
Natty:
Report link

The reason this doesn't work is because the app is running as a service. Running it from the .exe works.

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

79805908

Date: 2025-10-31 14:54:27
Score: 1.5
Natty:
Report link

It isn't possible to exactly flip the sequence for now, but the change in IDEA-154161 would be relevant since an option "By Kind" would be visible in the menu under the cog icon at the top right. Sorting by kind used to be always applied and sorted fields below methods. In future it can be disabled, and the file structure popup will show members in the order they are in the file. Feel free to engage in the feature request mentioned above.

enter image description here

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

79805906

Date: 2025-10-31 14:51:27
Score: 0.5
Natty:
Report link

With _.intersectionWith available since Lodash 4.0.0, you can use this:

function customizer(objValue, othValue) {
  return objValue.user === othValue.user && objValue.age === othValue.age;
}

result = _.intersectionWith(users, others, (value, other) => _.isEqualWith(value, other, customizer));

or a one-liner

result = _.intersectionWith(users, others, (n, n2) => { return n.user === n2.user && n.age === n2.age; });

You can check the results in this edited jsbin. https://jsbin.com/xonojiluga/1/edit?js,console,output

Reasons:
  • Whitelisted phrase (-1.5): you can use
  • Probably link only (1):
  • Contains signature (1):
  • Has code block (-0.5):
  • Low reputation (0.5):
Posted by: Wit

79805905

Date: 2025-10-31 14:51:27
Score: 1.5
Natty:
Report link

The solution thanks to @kostix:

I added before PetscInitialize:

if err := PetscOptionsSetValue(nil, "-no_signal_handler", "true"); err != nil {
    panic("could not set option")
}

with

func PetscOptionsSetValue(options c_PetscOptions, name, value string) error {
    c_name := c_CString(name)
    defer c_free(unsafe.Pointer(c_name))
    c_value := c_CString(value)
    defer c_free(unsafe.Pointer(c_value))
    if cIerr := c_PetscOptionsSetValue(options, c_name, c_value); cIerr != 0 {
        return errors.New("Could not PetscOptionsSetValue, error-code: " + strconv.Itoa(int(cIerr)) + "\n")
    }
    return nil
}

and

type c_PetscOptions = C.PetscOptions

func c_PetscOptionsSetValue(options c_PetscOptions, name *c_char, value *c_char) c_PetscErrorCode {
    return C.PetscOptionsSetValue(options, name, value)
}

It also seems working when I moved the setting of the option and the initialization in func init() and remove runtime.LockOSThread().

Reasons:
  • Blacklisted phrase (0.5): thanks
  • Long answer (-0.5):
  • Has code block (-0.5):
  • User mentioned (1): @kostix
  • Self-answer (0.5):
  • Low reputation (0.5):
Posted by: Fabian

79805895

Date: 2025-10-31 14:40:24
Score: 6.5 🚩
Natty: 4.5
Report link

Have you been able to find a solution? I have similar task

Reasons:
  • Blacklisted phrase (1.5): Have you been able to
  • Blacklisted phrase (1): I have similar
  • Low length (1.5):
  • No code block (0.5):
  • Contains question mark (0.5):
  • Single line (0.5):
  • Low reputation (1):
Posted by: Igor Uzon

79805889

Date: 2025-10-31 14:33:22
Score: 1.5
Natty:
Report link

Elementor itself has a (strange) option to enable or disable this shopping cart in Elementor > Settings > Integrations - here you need to disable the shopping cart for your theme to work.

After disabling this option, create a folder in the child theme called woocomerce and inside it create another folder called cart and inside that create a file called mini-cart.php and write the mini cart structure there.

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

79805887

Date: 2025-10-31 14:31:21
Score: 4
Natty: 6.5
Report link

are you sure you can use exclude in your selector.yml?

Reasons:
  • Whitelisted phrase (-1.5): you can use
  • Low length (1.5):
  • No code block (0.5):
  • Ends in question mark (2):
  • Single line (0.5):
  • Low reputation (1):
Posted by: Pablo Aschieri

79805885

Date: 2025-10-31 14:31:17
Score: 7.5 🚩
Natty:
Report link

I have managed to change the dots to slashes, but when I try to delete (Column A shown above) it knocks the date out in Column B and replaces it with VALUE and the green triangle in the top left of the cell - can you help please

Reasons:
  • RegEx Blacklisted phrase (3): can you help
  • RegEx Blacklisted phrase (1.5): help please
  • Low length (0.5):
  • No code block (0.5):
  • Unregistered user (0.5):
  • Single line (0.5):
  • Low reputation (1):
Posted by: user31791536

79805875

Date: 2025-10-31 14:19:14
Score: 2.5
Natty:
Report link

Reading symbols from ./build/main.elf...(no debugging symbols found)...done.

(gdb) target extended-remote :3333

Remote debugging using :3333

0x00008055 in ?? ()

(gdb) monitor reset halt

target halted due to debug-request, pc: 0x00008055

(gdb) load

Loading section SSEG, size 0x1 lma 0x1

Loading section HOME, size 0x7 lma 0x8000

Loading section GSINIT, size 0x1a lma 0x8007

Loading section GSFINAL, size 0x3 lma 0x8021

Loading section CONST, size 0xc lma 0x8024

Loading section CODE, size 0x5d5 lma 0x8030

Start address 0x8007, load size 1542

Transfer rate: 7 KB/sec, 257 bytes/write.

(gdb) set $pc=0x8000

(gdb) break main

Function "main" not defined.

Make breakpoint pending on future shared library load? (y or [n])

I had the same error. I’m writing code for STM8 and using OpenOCD together with GDB for debugging.
Even if I use this command:
$(FLASHER) -c stlinkv2 -p $(MCU) -s flash -w $(OUTPUT_DIR)/main.hex
or even when I use main.ihx I still get the same error.
But when I use the .elf file, debugging through GDB works successfully.

$(FLASHER) -c stlinkv2 -p $(MCU) -w $(OUTPUT_DIR)/main.elf

Below are the commands I run in GDB.

first flash it

$(FLASHER) -c stlinkv2 -p $(MCU) -w $(OUTPUT_DIR)/main.elf

run opencd

openocd -f interface/stlink.cfg -f target/stm8s.cfg
stm8-gdb ./build/main.elf
(gdb) target extended-remote :3333
(gdb) monitor reset halt 
(gdb) load
(gdb) set $pc=0x8000 
(gdb) continue  
(gdb) info locals
(gdb) next
Reasons:
  • Whitelisted phrase (-1): I had the same
  • RegEx Blacklisted phrase (1): I still get the same error
  • Long answer (-1):
  • Has code block (-0.5):
  • Me too answer (2.5): get the same error
  • Contains question mark (0.5):
  • Low reputation (1):
Posted by: Batuhan Yamaner

79805866

Date: 2025-10-31 14:08:11
Score: 2.5
Natty:
Report link

For MAC-Users:

1.Open the Excel-File with preinstalled Numbers-App.

2.Click "Export to" > "CSV"

3.Click "Advanced Options" and choose UTF-8

enter image description here

4.Verify with Text-Editor of your choice

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

79805865

Date: 2025-10-31 14:06:10
Score: 0.5
Natty:
Report link

I got it working with a native query like this:
Service:

@Transactional
public void deleteCommentWithChildren(Long parentId) {
List<Long> childIds = commentRepository.findChildIdsByParentId(parentId);
for (Long childId : childIds) {
deleteCommentWithChildren(childId);
}
commentRepository.deleteByIdQuery(parentId);
}

Repository:

@Query(value = "SELECT id FROM comment WHERE parent_comment_id = :parentId", nativeQuery = true)
List<Long> findChildIdsByParentId(@Param("parentId") Long parentId);

@Modifying
@Transactional
@Query(value = "DELETE FROM comment WHERE id = :id", nativeQuery = true)
void deleteByIdQuery(@Param("id") Long id);
Reasons:
  • Long answer (-0.5):
  • Has code block (-0.5):
  • Self-answer (0.5):
  • Low reputation (1):
Posted by: LostQuotient117

79805863

Date: 2025-10-31 14:05:10
Score: 2.5
Natty:
Report link

instead of visibility: hidden; use display: none;
OR with
visibility: hidden; use possition: absolute; width: 0; height: 0;

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

79805846

Date: 2025-10-31 13:39:04
Score: 1
Natty:
Report link

es not appear to have any style information associated with it. The document tree is shown below.

<rss xmlns:atom="http://www.w3.org/2005/Atom" version="2.0">

<channel>

<title>Ads Transparency Status</title>

<link>https://metastatus.com/ads-transparency</link>

<atom:link href="https://metastatus.com/outage-events-feed-ads-transparency.rss" rel="self" type="application/rss+xml"/>

<description>Status updates for Ads Transparency</description>

<lastBuildDate>Fri, 10 Oct 2025 00:41:55 GMT</lastBuildDate>

</channel>

</rss>

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

79805844

Date: 2025-10-31 13:34:03
Score: 3.5
Natty:
Report link

Do you use pools and pool_slots parameters? They may affect amount of tasks running in parallel.

Reasons:
  • Low length (1):
  • No code block (0.5):
  • Contains question mark (0.5):
  • Single line (0.5):
  • Low reputation (1):
Posted by: Tatiana A

79805841

Date: 2025-10-31 13:26:01
Score: 2
Natty:
Report link

If you adding newer version of your app maybe your "Bundle ID" and "Release ID' doesn't match. I recommend check "Apple Store Connect -> Your App -> General -> App Information" you will see "Bundle ID". Then go to Xcode "Signing & Capabilities" and paste your "Bundle ID" and sure that same with in the "Apple Store Connect". Then In the Xcode General screen you will see "Release ID" your problem solved.

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

79805837

Date: 2025-10-31 13:22:00
Score: 0.5
Natty:
Report link

Use display: none, since it just doesn't display it at all.

div {
  display: none;
}

span {
   visibility: hidden;
}
<pre>visibility: <span>this does not show.</span>hidden;</pre>
<pre>display: <div>this also does not show.</div>none;</pre>

Reasons:
  • Low length (0.5):
  • Has code block (-0.5):
  • Low reputation (0.5):
Posted by: Twineee The Dark Wizard

79805831

Date: 2025-10-31 13:14:58
Score: 1.5
Natty:
Report link

You made T depend on both filters and values. When you make both filters and values depend on the same generic T, TypeScript can’t infer the rich component‐types from filters and the key‐based values from values at the same time. So it falls back to a more general type (causing props to become any).

Fix: Infer just from filters (where you know the component types), and then derive values purely from keyof filters. That keeps props strongly typed and keys constrained correctly.

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

79805828

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

I know this is from a couple years ago, but I also had this error and found a solution.

In my loop, I did initialize a column with zeros prior to iteratively adding a string to the same column per row in a for loop.

When I initialized my row, I did something like:

df[i].insert(4,"Check",[0]*len(df[i]))

Where i is from another For Loop.

To overwrite the zero within another For Loop and controlled by an if/else statement:

if "something"
    df[i].iloc[j,4] = "Yes"
else
    df[i].iloc[j,4] = "No"

When I ran it, I got the 'Future Warning' error.

To fix it, all I did was make the initialized zero a string by doing:

df[i].insert(4,"Check",["0"]*len(df[i]))

This goes in-line with what others in this thread said, about changing its type.

Since I initialized it as an int, and overwriting it as a str.

But figured I'd throw it here in case it helps anyone in the future.

Thanks.

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

79805816

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

26.1 fixes it. Developer Beta 3 fixed many of the issues and DB4 fixed the rest of them.

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

79805812

Date: 2025-10-31 13:00:51
Score: 7 🚩
Natty: 4
Report link

I am also facing the same issue, I deployed my Project, and it deployed successfully!! But when i login it logged in also, but get an error that is, 'Unauthorized Error" !! And now I totally confused, what to do??? I literally spend whole day in it, like do some changes in the code, and re-deploying it, and again and again.....!! Even AI can't help me, then I remember Stack Overflow the saviour, I quickly open it, and search my problem then i found this post, and at the end it says, tried another browsers also and it will work on them, so I also quickly tried it, and what....it works!! f**k, I literally spend whole working day in it, and it just a Browser problem, I used Ula browser, and when i check it on Edge or chrome it will works fine!!

My Project Link: https://linkedin-full-stack-clone-using-mern.onrender.com/

Reasons:
  • Blacklisted phrase (1): I am also facing the same issue
  • Blacklisted phrase (1): help me
  • Blacklisted phrase (1): ???
  • Long answer (-0.5):
  • No code block (0.5):
  • Me too answer (2.5): I am also facing the same issue
  • Contains question mark (0.5):
  • Low reputation (1):
Posted by: Pranav Thorat

79805811

Date: 2025-10-31 12:57:51
Score: 2
Natty:
Report link

Maybe by the time when you asked that, Linux didn't able to do it so easily, but, at least in ubuntu you can simply paste an emoji and it will appear in the prompt:

PS1="\[\033[1;33m\]\[\033[0;44m\] \W 📅 \d \$ \[\033[0m\]\[\033[1;32m\]

although, i don't know whether this way for adding an emoji is valid.

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

79805806

Date: 2025-10-31 12:54:49
Score: 1.5
Natty:
Report link

Wanted to add a bit more insight into the initial implementation (question).
-----------------------------------------------
In the first loop, you create a variable i.
This variable i has a specific memory address — let’s say it’s 0xabab.

During the first loop, i takes on the values 1 through 3, but its memory address doesn’t change.
Because of that, every element of test[i] ends up storing the same address (the address of i, 0xabab).

In the second loop, i is declared again in a different scope, so it gets a new memory address — it’s no longer 0xabab.

When you later print the values stored in test[i], you’re actually printing whatever is stored at the old address (0xabab), which still holds the value 3 (the last value from the first loop).

That’s why all elements print 3.

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

79805803

Date: 2025-10-31 12:52:48
Score: 5
Natty:
Report link

DOH!

I got so fixated on solving it through Regex I completely ignored the simple solution of using trim(). It does indeed work perfectly.

Many thanks for pointing out the obvious!

Do I at least get a wry smile for including references to 3rd Rock from the Sun and The Simpsons?

Reasons:
  • Blacklisted phrase (0.5): thanks
  • Low length (0.5):
  • No code block (0.5):
  • Ends in question mark (2):
  • Self-answer (0.5):
  • Low reputation (1):
Posted by: Doug Antill

79805802

Date: 2025-10-31 12:52:48
Score: 0.5
Natty:
Report link

When uploading an appbundle build with Flutter to Google Play Console, I received the error message "You uploaded an AppBundle that was signed in Debug mode. You need to sign in Release mode."

I'm using Flutter version 3.29.2, which suggests using build.gradle.kts instead of build.gradle. Both files are present in folder android/app. The build.gradle.kts was edited following the instructions in the Flutter docs, in order to build for release mode.

But flutter build appbundle seems to use the build.gradle even when build.gradle.kts is present. After editing build.gradle, the appbundle is uploaded without an error message.

I wonder where the choice between both build files is registered.

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

79805800

Date: 2025-10-31 12:51:48
Score: 3.5
Natty:
Report link

I am not asking for code. I asked for learning reference which I can follow.

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

79805798

Date: 2025-10-31 12:49:47
Score: 5.5
Natty:
Report link

I have the same issue, but the fastest solution is to disable several views. When you create a new view, after that, you can enable it when you wanna push or publish the project

Reasons:
  • Blacklisted phrase (1): I have the same issue
  • Whitelisted phrase (-1): solution is
  • Low length (1):
  • No code block (0.5):
  • Me too answer (2.5): I have the same issue
  • Single line (0.5):
  • Low reputation (1):
Posted by: Dodik_Sukma

79805770

Date: 2025-10-31 12:21:39
Score: 5.5
Natty:
Report link

Actually it is CORS problem. How to solve CORS error while fetching an external API

i don't know why windows 7 is bypassing CORS issues.

Reasons:
  • Blacklisted phrase (1): How to solve
  • Probably link only (1):
  • Low length (1.5):
  • No code block (0.5):
  • Self-answer (0.5):
  • Low reputation (1):
Posted by: panci matika

79805763

Date: 2025-10-31 12:17:38
Score: 4
Natty:
Report link

Only for update this. Sorry for the delay, I forgot to answer. I was able to implement with your answer. Thanks again

Reasons:
  • Blacklisted phrase (0.5): Thanks
  • Low length (1):
  • No code block (0.5):
  • Self-answer (0.5):
  • Single line (0.5):
  • Low reputation (1):
Posted by: Rene Souza

79805759

Date: 2025-10-31 12:15:37
Score: 2
Natty:
Report link

@rainer-joswig, Thank you for the tip of cl:*print-circle* and the explanation about the problem of modifying a literal. With cl:*print-circle* that is set as t, macroexpand-1 explicitly shows differences between uninterned symbols of the same name. In addition, modifying a literal can be a problem even if compiler optimization is not applied, as a literal is defined as a fixed value which should not be updated while running a program.

Reasons:
  • Blacklisted phrase (0.5): Thank you
  • Has code block (-0.5):
  • User mentioned (1): @rainer-joswig
  • Self-answer (0.5):
  • Low reputation (0.5):
Posted by: dhnam

79805752

Date: 2025-10-31 12:08:35
Score: 0.5
Natty:
Report link

Simply put: A String literal is created in global memory with the exact space it needs. If you use "a"+"b", this creates two strings of size 2 (const char[2]) in memory and causes the compiler to generate code to add them at runtime. Now where should the resulting String "ab" go? there is no place to store it. Adding two arrays is not possible. Hence the error. (btw: adding two pointers IS possible, it just doesn't make sense, and there is no trigger for converting the const char[2] into a char* when trying to add them)

You can instruct the compiler to just concatenate the two string literal expressions at compile time, as if they were one string literal. This is done by just putten them one after the other without anything but whitespace between them. The compiler will then treat them as one literal. This also works with defined constants:

#define TEXT1 "A"
#define TEXT2 "B"
...(string + TEXT1 TEXT2)

If you use the preprocessor, things are different. Here you concatenate string literals with # and ##

Reasons:
  • Long answer (-1):
  • Has code block (-0.5):
  • Contains question mark (0.5):
  • Unregistered user (0.5):
  • Low reputation (1):
Posted by: Peter Painter

79805750

Date: 2025-10-31 12:04:34
Score: 1
Natty:
Report link

They seem to have locked down the local storage approach to the following requirements: https://labelstud.io/guide/storage#Local-storage:~:text=Add%20these%20variables%20to%20your%20environment%20setup%3A

Alternatively, you could serve the images on a different port to ls (I don't see why changing ls port would do anything RE comments above) and paste the URL to the image in the task JSON. However, the challenge here is that it depends on your setup. For example if you're using a docker container for ls and another container for the image server, even when they're on the same network, ls can't see the images - this is the challenge I'm facing anyway.

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

79805738

Date: 2025-10-31 11:48:30
Score: 3.5
Natty:
Report link

I found that project - https://github.com/Suberbia/UltimateChatRestorer
probably it can help you somehow

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

79805733

Date: 2025-10-31 11:39:28
Score: 3.5
Natty:
Report link

Finally, Microsoft released a new version of the file fixing the situation. File was released inside KB KB5067036 of 10/28/2025.

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

79805725

Date: 2025-10-31 11:30:26
Score: 1
Natty:
Report link

Seems dynamically show or hide sidebar according to tab selection is not supported at the moment. Found this Note:

All content within every tab is computed and sent to the frontend, regardless of which tab is selected. Tabs do not currently support conditional rendering. If you have a slow-loading tab, consider using a widget like st.segmented_control to conditionally render content instead.

https://docs.streamlit.io/develop/api-reference/layout/st.tabs

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

79805719

Date: 2025-10-31 11:25:25
Score: 1
Natty:
Report link

Java isn’t missing any grammar rules. The Hungarian collation in OpenJDK follows the Unicode/CLDR standard, where accented letters (like É) are treated as secondary forms of their base letter (E). Because of this, the traditional Hungarian dictionary order (A < Á < B < C < Cs … E < É) is not applied by default.

No built-in Java Collator implements the full Hungarian dictionary alphabet.

If you need the real Hungarian dictionary order, you must use a tailored collation. For example, with ICU4J:

Collator coll = Collator.getInstance(new ULocale("hu@collation=dictionary"));

This collator follows the correct Hungarian dictionary rules, including treating E and É as separate letters.

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

79805716

Date: 2025-10-31 11:24:25
Score: 2
Natty:
Report link

Only one thing was missing :

<<this line >> import "dotenv/config";

i did npm i dotenv and added the above line

my connection was established after i ran this command : npx prisma db push

hope this information helps people looking for solutions online.

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

79805699

Date: 2025-10-31 11:13:21
Score: 3.5
Natty:
Report link

Thanks.

I do Not want to include the Page Content into the e.G Header.

just to be able to Open it from a Registered WP Navigation by adding a class to this navi in the backend.

Reasons:
  • Blacklisted phrase (0.5): Thanks
  • Low length (1):
  • No code block (0.5):
  • Self-answer (0.5):
  • Low reputation (1):
Posted by: ingozoell

79805694

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

it has to work , but some times on VM's it wont work,
that time you can add these simple lines which gets your work done..

    zip_content = await audio_zip.read()
    zip_buffer = io.BytesIO(zip_content)
    zip_buffer.seek(0)

do this at first,

then if file is read once and if you want to read it again them pass the same.

zip_buffer.seek(0)

before reading file, this will solve the issue..

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

79805693

Date: 2025-10-31 11:08:19
Score: 4.5
Natty:
Report link

I sent a review to Google and they seemed to fix the problem. Thanks for the help though

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

79805690

Date: 2025-10-31 11:06:19
Score: 2.5
Natty:
Report link

This has happened to me recently, I had to create a new virtual device and delete the old one

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

79805689

Date: 2025-10-31 11:05:18
Score: 2.5
Natty:
Report link

The element is still rendered in the document when we have the visibility set to hidden. We use `display: none` when we dont want the element to be rendered in the document.

https://developer.mozilla.org/en-US/docs/Web/CSS/visibility

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

79805688

Date: 2025-10-31 11:05:18
Score: 1.5
Natty:
Report link

To Fix the issue, you need to /etc/cron.allow

$ crontab -e
no crontab for user1 - using an empty one
crontab: no changes made to crontab
# cat /etc/cron.allow
user1
Reasons:
  • Low length (1):
  • Has code block (-0.5):
  • Low reputation (1):
Posted by: Namasivayam Chinnapillai

79805686

Date: 2025-10-31 11:02:18
Score: 0.5
Natty:
Report link

Use display:none; instead of visibility : hidden;.

#tx1, #tx2 { display:none; /*visibility : hidden;*/ }
<span id="ttt">
<span id="tp1">s<span id="tx1">P</span></span><span id="tp2">o<span id="tx2">T</span></span>
</span>

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

79805685

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

you should edit to a concise title which describes your question/issue

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

79805675

Date: 2025-10-31 10:45:14
Score: 1
Natty:
Report link

Icon="pack://siteoforigin:,,,/Resources/runtime-icon.ico"

The exception means that WPF could not load or locate theicon file when parsing the XAML.

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

79805674

Date: 2025-10-31 10:44:14
Score: 1
Natty:
Report link

For Windows services, the temporary files will likely be stored in c:\windows\systemtemp.

Older machines may possibly store these in c:\windows\temp, which would be equivalent to %TEMP% .

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

79805673

Date: 2025-10-31 10:42:13
Score: 4
Natty:
Report link

You mean "if constexpr"? https://www.learncpp.com/cpp-tutorial/constexpr-if-statements/

Reasons:
  • Probably link only (1):
  • Low length (2):
  • No code block (0.5):
  • Ends in question mark (2):
  • Single line (0.5):
  • High reputation (-2):
Posted by: Pepijn Kramer