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

79805663

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

What I ended up going with is adding a proc-macro = true crate to the project (which is already a bunch of crates in a trenchcoat anyway) and defining a wrapper around the macro:

// lib.rs
use proc_macro::TokenStream;

#[proc_macro]
pub fn obfuscate_from_env(input: TokenStream) -> TokenStream {
    let var_name = syn::parse_macro_input!(input as syn::LitStr).value();
    let value =
        std::env::var(&var_name).unwrap_or_else(|e| panic!("environment variable {var_name} is required: {e:?}"));

    quote::quote! {
        cryptify::encrypt_string!(#value)
    }
    .into()
}

Then I just have to call obfuscate_from_env!("NAME_VAR") and voilà!

Reasons:
  • Long answer (-0.5):
  • Has code block (-0.5):
  • Self-answer (0.5):
  • Starts with a question (0.5): What I
  • Low reputation (0.5):
Posted by: Sibear Jo

79805661

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

This occurs because axios transforms parameters into a query string format and applies JSON serialization, which results in strings being enclosed in quotes.

Try customize the paramsSerializer in axios options

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

79805660

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

take a look into this project on GitHub. This is a fully implemented loopback and cross link virtual serial port driver for MacOS DriverKit
https://github.com/britus/VSPDriver

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

79805659

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

Sorry, found the solution myself. The event would have to be added to the user control itself, not the form code.

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

79805656

Date: 2025-10-31 10:29:10
Score: 2.5
Natty:
Report link

There are plenty of resources available on YouTube and Medium. Once you’ve completed the setup, I recommend using this website to learn more about working with Git: https://learngitbranching.js.org

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

79805654

Date: 2025-10-31 10:28:09
Score: 2
Natty:
Report link
async def upload_file(
    config_file: UploadFile = File(...),
    audio_files: list[UploadFile] = File(...)  
):

you can just use like this, no need of file: Upload

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

79805651

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

Are you sure no error message is appearing? If so, apply a divide-and-conquer approach: keep only the core functionality required for the app to run and comment out the rest. Then, reintroduce each part one by one, performing thorough testing at every step. This method will help you isolate the issue.

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

79805645

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

You are using an 4 year old version of SBCL. The current version of SBCL is 2.5.10.

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

79805644

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

You are probaby inserting invalid included segments parameter
Try this -

included_segments: ['Total Subscriptions']
Reasons:
  • Whitelisted phrase (-1): Try this
  • Low length (1):
  • Has code block (-0.5):
  • Low reputation (1):
Posted by: giorg

79805637

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

I read the documentation and fixed my problem with this solution. Thanks to @brendo234!

val headers = mutableMapOf<String, String>()
    val bundleId = //your package name // Sample: "com.sampleapp
    val referrer = "https://$bundleId"
    headers.put("Referer",referrer)
    binding.webview.loadUrl("https://www.youtube.com/embed/$videoId",headers)
Reasons:
  • Blacklisted phrase (0.5): Thanks
  • Blacklisted phrase (1): youtube.com
  • Has code block (-0.5):
  • User mentioned (1): @brendo234
  • Low reputation (0.5):
Posted by: Yasin Ege

79805629

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

https://octopus.com/ not open-source, however there are Steps there.

A similar one of a Jira for deployments. https://handbook.octopus.com/getting-oriented

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

79805620

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

You should apply StandardScaler after train_test_split and fit it only on the training data. If you scale before splitting, the scaler learns the mean and standard deviation from the entire dataset — including the test set — which leaks information about unseen data and can make validation results unrealistically good. Fitting the scaler only on X_train ensures that scaling parameters reflect the same data distribution the model learns from, and applying that scaler to both X_train and X_test preserves a realistic, generalizable evaluation.

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

79805618

Date: 2025-10-31 09:55:59
Score: 0.5
Natty:
Report link
sample_dict = {"first_name": "Jane", "name_last": "Doe"}

# rename key "name_last" to "last_name"

sample_dict["last_name"] = sample_dict.pop("name_last")
Reasons:
  • Low length (1):
  • Has code block (-0.5):
Posted by: Rajarshee Mitra

79805598

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

I wanted to look at QThread but I have read that threading is not recommended due to locks, race conditions, etc... and async is preferred. I am not very proficient in either of those though.
In any case, I was thinking of implementing a queue so that messages are stored and processed at their own rythm but if processing is too long and the queue doesn't get flushed fast enough, it will update my visuals with a delay. I would prefer to miss some messages I think.
I am thinking out loud. If anyone has dev experience on these kind of use cases please feel free to share.

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

79805595

Date: 2025-10-31 09:39:55
Score: 2.5
Natty:
Report link

On top of brendo234 as I cant comment..

Fixing with .htaccess

# Mods
<IfModule mod_headers.c>

Header always set Referrer-Policy: 'strict-origin-when-cross-origin'

</IfModule>
Reasons:
  • RegEx Blacklisted phrase (1): cant comment
  • Low length (1):
  • Has code block (-0.5):
  • Low reputation (1):
Posted by: masu

79805590

Date: 2025-10-31 09:32:53
Score: 2.5
Natty:
Report link
bcdedit /set testsigning on

enter image description here

enter image description here

reload /f
Reasons:
  • Probably link only (1):
  • Low length (1):
  • Has code block (-0.5):
  • Low reputation (1):
Posted by: Rabbit_Drivers

79805589

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

This offical documentation answered this question:

Q: Why does this happen, and how can I fix it!?
A: When WPR puts together the .ETL trace file (WPR -stop MyTraceFile.etl ...), it finds each referenced native module, loads the module header, and reads the embedded signature of the debug information, thereby generating an "ImageId event" within the trace. Later, if WPA does not find a particular ImageId event within that trace then it cannot resolve those symbols, and it will report simply: MyModule!<Missing ImageId event>

Even if the trace was collected on a different machine, you can fix it, as long as you have access to the exact same version of that module:

...

That means generally you need pdb files corresponding to the binarys. If it is not available, you can try to generate .pdb from binary: https://github.com/rainers/cv2pdb

If this also not work, there is a way to access the original function address, with this address you can find source code line and function name in your familiar debugger:

  1. Use xperf command distributed with Windows Performance Toolkit to generate raw readable events in csv: xperf -i xxx.etl -o xxx.csv

  2. Open this csv file, search and located your interested specific event by type (eg. VirtualAlloc), timestamp or address, etc. You will get a sequence of stacks with raw function address info. The meaning of each column is shown at the top of csv.

  3. Use your debugger to get the source code corresponding to the address.

Reasons:
  • Blacklisted phrase (0.5): how can I
  • Long answer (-1):
  • Has code block (-0.5):
  • Contains question mark (0.5):
  • Low reputation (1):
Posted by: Conor Hyde

79805587

Date: 2025-10-31 09:30:52
Score: 4.5
Natty:
Report link

Thank you for taking the time to reply @furas! I see you have seen my other post with my minimal example. Here it is for reference for others: Asynchronous listening and processing in a Pyside app

Reasons:
  • Blacklisted phrase (0.5): Thank you
  • Low length (1):
  • No code block (0.5):
  • User mentioned (1): @furas
  • Self-answer (0.5):
  • Single line (0.5):
  • Low reputation (0.5):
Posted by: Antoine101

79805583

Date: 2025-10-31 09:25:51
Score: 1.5
Natty:
Report link

if the post to be edited is already published then
"edit_publish_post" else "edit_posts"

 $subscriber->add_cap('edit_published_posts')      
 $subscriber->add_cap('edit_posts');

and do logout once as it is saved in cache, sometimes wp does not update untill we login again

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

79805580

Date: 2025-10-31 09:24:50
Score: 1
Natty:
Report link

You can fix this by changing the ownership of the directory to your user.

Try running the following command in your terminal:

sudo chown -R $USER:$USER .

This command recursively changes the owner and group of the current directory (.) to your current user ($USER).

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

79805561

Date: 2025-10-31 09:07:46
Score: 6.5
Natty:
Report link

Thanks Mamta. Can you please give reference of Step 3 & 5

Reasons:
  • Blacklisted phrase (0.5): Thanks
  • RegEx Blacklisted phrase (2.5): Can you please give
  • Low length (1.5):
  • No code block (0.5):
  • Self-answer (0.5):
  • Single line (0.5):
  • Low reputation (0.5):
Posted by: Surodip