79806814

Date: 2025-11-01 20:42:36
Score: 1
Natty:
Report link

Result Value. If C is in the collating sequence defined by the codes specified in ISO/IEC 646:1991 (International Reference Version), the result is the position of C in that sequence; it is nonnegative and less than or equal to 127. The value of the result is processor dependent if C is not in the ASCII collating sequence.

Reasons:
  • No code block (0.5):
  • Single line (0.5):
Posted by: steve

79806802

Date: 2025-11-01 20:22:31
Score: 4
Natty: 4
Report link

for me the feature was disabled and i enabled it by clicking on "open in VS Code " button in this link

https://docs.github.com/en/copilot/how-tos/get-code-suggestions/get-ide-code-suggestions

Reasons:
  • Blacklisted phrase (1): this link
  • Probably link only (1):
  • Low length (1):
  • No code block (0.5):
  • Low reputation (0.5):
Posted by: Hossam

79806793

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

Using JSON parse and error detection functions by @sln,
Find/Replace is possible to pare down the objects to just two keys jobID and exec
keys and values.

For more information on how these recursive functions work and more practical
examples, see https://stackoverflow.com/a/79785886/15577665

Should be a complete and valid JSON string.

(?:(?=(?&V_Obj)){(?=(?:(?&V_KeyVal)(?&Sep_Obj))*?\s*("jobID"\s*:\s*(?&V_Value)))(?=(?:(?&V_KeyVal)(?&Sep_Obj))*?\s*("exec"\s*:\s*(?&V_Value)))(?:(?&V_KeyVal)(?&Sep_Obj))+})(?(DEFINE)(?<Sep_Ary>\s*(?:,(?!\s*[}\]])|(?=\])))(?<Sep_Obj>\s*(?:,(?!\s*[}\]])|(?=})))(?<Str>(?>"[^\\"]*(?:\\[\s\S][^\\"]*)*"))(?<Numb>(?>[+-]?(?:\d+(?:\.\d*)?|\.\d+)(?:[eE][+-]?\d+)?|(?:[eE][+-]?\d+)))(?<V_KeyVal>(?>\s*(?&Str)\s*:\s*(?&V_Value)\s*))(?<V_Value>(?>(?&Numb)|(?>true|false|null)|(?&Str)|(?&V_Obj)|(?&V_Ary)))(?<V_Ary>\[(?>\s*(?&V_Value)(?&Sep_Ary))*\s*\])(?<V_Obj>{(?>(?&V_KeyVal)(?&Sep_Obj))*\s*}))

Replace: { $1, $2 }

https://regex101.com/r/QI0y4i/1

Output:

{
  "2597401": [
    { "jobID": "2597401", "exec": "ft.D.64" },
    { "jobID": "2597401", "exec": "cg.C.64" },
    { "jobID": "2597401", "exec": "mg.D.64" },
    { "jobID": "2597401", "exec": "lu.D.64" }
  ]
}

Rx Explained:

(?:
   (?= (?&V_Obj) )                     # Assertion :  Must be a Valid JSON Object
   {                                   # Open Obj
   
   (?=                                 # Lookahead: Find the 'jobID' key
      (?: (?&V_KeyVal) (?&Sep_Obj) )*?
      \s* 
      ( "jobID" \s* : \s* (?&V_Value) )   # (1), capture jobID and value
   )
   (?=                                 # Lookahead: Find the 'exec' key
      (?: (?&V_KeyVal) (?&Sep_Obj) )*?
      \s*                                 
      ( "exec" \s* : \s* (?&V_Value) )    # (2), capture exec and value
   )
   
   (?: (?&V_KeyVal) (?&Sep_Obj) )+     # Get the entire Object
   
   }                                   # Close Obj
)

# JSON functions - NoErDet
# ---------------------------------------------
(?(DEFINE)(?<Sep_Ary>\s*(?:,(?!\s*[}\]])|(?=\])))(?<Sep_Obj>\s*(?:,(?!\s*[}\]])|(?=})))(?<Str>(?>"[^\\"]*(?:\\[\s\S][^\\"]*)*"))(?<Numb>(?>[+-]?(?:\d+(?:\.\d*)?|\.\d+)(?:[eE][+-]?\d+)?|(?:[eE][+-]?\d+)))(?<V_KeyVal>(?>\s*(?&Str)\s*:\s*(?&V_Value)\s*))(?<V_Value>(?>(?&Numb)|(?>true|false|null)|(?&Str)|(?&V_Obj)|(?&V_Ary)))(?<V_Ary>\[(?>\s*(?&V_Value)(?&Sep_Ary))*\s*\])(?<V_Obj>{(?>(?&V_KeyVal)(?&Sep_Obj))*\s*}))
Reasons:
  • Blacklisted phrase (1): stackoverflow
  • Contains signature (1):
  • Long answer (-1):
  • Has code block (-0.5):
  • User mentioned (1): @sln
  • High reputation (-1):
Posted by: sln

79806781

Date: 2025-11-01 19:30:19
Score: 3.5
Natty:
Report link

just use reddit dawg💔

this site dead as hell

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

79806758

Date: 2025-11-01 18:55:10
Score: 3.5
Natty:
Report link

Fixed with downgrading psutil module to version 5.8.0

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

79806757

Date: 2025-11-01 18:52:09
Score: 2.5
Natty:
Report link

StackOverflow isn't really the place for architecture patterns and data structure discussions. There is multiple ways and any answer would probably at least to a huge part be opinion based ... Why have separate classes at all? Why can't the config itself already implement that interface?

Reasons:
  • Blacklisted phrase (1): StackOverflow
  • Low length (0.5):
  • No code block (0.5):
  • Ends in question mark (2):
  • Single line (0.5):
  • High reputation (-2):
Posted by: derHugo

79806752

Date: 2025-11-01 18:44:07
Score: 2
Natty:
Report link

for key, value in testShelve.items():

 print(key, value)
Reasons:
  • Low length (1.5):
  • Has code block (-0.5):
  • Low reputation (1):
Posted by: Dick Roman

79806742

Date: 2025-11-01 18:10:00
Score: 3
Natty:
Report link

You can deploy LLMs in Azure AI Foundry using either Azure OpenAI models such as GPT-4, GPT-4o or open-source models like Llama 3, Phi-3, Mistral etc.

Some steps below:

  1. Prerequisites

  2. Create a Hub

    • Go to https://ai.azure.comGet startedCreate a hub.

    • Choose a name, subscription, resource group, and region (e.g. East US).

    • Click Review + Create → Create.

  3. Create a Project

    • Inside the hub, click + New project → name it (e.g. llm-demo) → Create.
  4. Deploy a Model

    • Option A: Azure OpenAI model

      • Go to Models + endpoints → Azure OpenAI → + Deploy model.

      • Choose a model (e.g. gpt-4o-mini) and click Deploy.

    • Option B: Open-source model

      • Go to Model catalog, pick something like Llama 3 or Phi-3, click Deploy, choose compute, and wait for deployment.
  5. Test in Playground

    • Open Playground, select your model deployment, and run prompts interactively.

If you want, I could show you how to use your deployed models for downstream tasks???

Reasons:
  • Blacklisted phrase (1): ???
  • Long answer (-0.5):
  • Has code block (-0.5):
  • Ends in question mark (2):
  • Low reputation (1):
Posted by: Godfrey Inyama

79806741

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

Can you delete this, it is NOT advice, but a real question. So ask it as a regular SO question

Reasons:
  • Low length (1):
  • No code block (0.5):
  • Single line (0.5):
  • Starts with a question (0.5): Can you
  • High reputation (-2):
Posted by: Pepijn Kramer

79806735

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

When I first started working with Java, building a web application felt heavy. A lot of configuration, XML everywhere, and you had to manually set up servers. That all changed when I discovered Spring Boot.

If you're new to Spring or you want a clean starting point for backend development, this walks you through what Spring Boot is and how to build a simple REST API.


What is Spring Boot ?

Spring Boot is a framework that makes it easy to create Java applications with almost no configuration.

It handles the heavy lifting for you:

You just write your code, run the application, and Spring Boot takes care of the rest.


Why use Spring Boot ?

Here are the things that made me personally appreciate Spring Boot:

  1. it has an embedded server.

  2. auto configuration .

  3. very fast to get started .


Step 1: Create a Spring Boot Project

Go to : spring.io

Choose:

Download the project and open it in your IDE .

Spring Boot generates everything you need to start immediately.


Step 2: Create Your First REST API

Inside your project, create a new class:

HelloController.java

package com.example.demo.controllers;

import org.springframework.web.bind.annotation.GetMapping;
import org.springframework.web.bind.annotation.RestController;

@RestController
public class HelloController {

    @GetMapping("/hello")
    public String hello() {
        return "Hello World!";
    }
}

That’s it.

How it works:


Step 3: Run the Application

You can run the project in two ways:

1 - Using your IDE

Simply run the main() method inside DemoApplication.java.

2 - Using Maven

Open your terminal and run:

mvn spring-boot:run

The app starts on port 8080 by default.

Now open:

http://localhost:8080/hello

You should see:

Hello World!

Step 4: Update Application Properties

Spring Boot uses application.properties or application.yml to configure your app.

For example, to change the port:

server.port=2025

Or using YAML:

server:
  port: 2025

Restart the app, and it will now run on:

http://localhost:2025


What’s next?

If you're starting your Spring journey, here are the next topics you should take a look at:

Reasons:
  • Long answer (-1):
  • Has code block (-0.5):
  • Contains question mark (0.5):
  • Self-answer (0.5):
  • Starts with a question (0.5): When I
  • Low reputation (1):
Posted by: Ayoub

79806733

Date: 2025-11-01 17:58:57
Score: 2
Natty:
Report link

You can try flutter_prunekit — it’s a Dart/Flutter analyzer that finds unused classes and methods.
I built and maintain it for exactly this kind of use case.

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

79806732

Date: 2025-11-01 17:58:57
Score: 2
Natty:
Report link

You can try flutter_prunekit — it’s a Dart/Flutter analyzer that finds unused classes and methods.
I built and maintain it for exactly this kind of use case.

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

79806722

Date: 2025-11-01 17:37:52
Score: 3.5
Natty:
Report link

What happens to values above 128?

Reasons:
  • Low length (2):
  • No code block (0.5):
  • Ends in question mark (2):
  • Single line (0.5):
  • Starts with a question (0.5): What
  • High reputation (-2):
Posted by: Vladimir F Героям слава

79806718

Date: 2025-11-01 17:26:49
Score: 3
Natty:
Report link

i still got the same problem. my page has got 2 language. and woocommerce settings in cart and check out is Turkish. But when i choose other language "DE", it opens still TR language. i did not find the where the problem is.

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

79806717

Date: 2025-11-01 17:25:49
Score: 2.5
Natty:
Report link

With Mingw compiler

Source code. // me.c

#include <stdio.h>

Int main (){

printf("Hello Bull");

return 0;

}

With windows power shell or command line

Give in

gcc me.c-S

Output will be me.s

Open me.s with texteditor..

You will see the assembly code thier.

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

79806712

Date: 2025-11-01 17:17:47
Score: 0.5
Natty:
Report link

Huh. Is there no way to post an answer for this question? All I see are these comment-replies. I'd answer if I could find the button.

Reasons:
  • Low length (1):
  • No code block (0.5):
  • Contains question mark (0.5):
  • Single line (0.5):
  • High reputation (-2):
Posted by: Quuxplusone

79806705

Date: 2025-11-01 17:09:45
Score: 1
Natty:
Report link

Isn't that what move semantics is supposed to do, leave the source in a valid but indeterminate state? Meaning the object can be reused, but the data inside it can't.

Reasons:
  • Low length (1):
  • No code block (0.5):
  • Contains question mark (0.5):
  • Single line (0.5):
  • Starts with a question (0.5): Isn't that
  • High reputation (-2):
Posted by: Some programmer dude

79806701

Date: 2025-11-01 17:04:44
Score: 1.5
Natty:
Report link

How is this an advice question? This looks like standard Q&A.

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): How is this an
  • High reputation (-2):
Posted by: President James K. Polk

79806694

Date: 2025-11-01 16:58:42
Score: 3.5
Natty:
Report link

Append the origin "youtube.com" as a link parameter and it should work again.

For the big buck example, you'd use

https://www.youtube-nocookie.com/embed/ScMzIvxBSi4?origin=youtube.com
Reasons:
  • Blacklisted phrase (1): youtube.com
  • Low length (0.5):
  • No code block (0.5):
  • Contains question mark (0.5):
  • Low reputation (1):
Posted by: dairynuts

79806689

Date: 2025-11-01 16:55:41
Score: 3
Natty:
Report link

Is this really caused because of multithreading? Or is it related to the scope of variables? I'm confused.

Reasons:
  • Low length (1):
  • No code block (0.5):
  • Contains question mark (0.5):
  • Single line (0.5):
  • Starts with a question (0.5): Is this
Posted by: Carl HR

79806686

Date: 2025-11-01 16:50:40
Score: 0.5
Natty:
Report link

Try to call this, after changing the mainImageId to null, which should tell EF to do an update before trying to delete:

    dbContext.Entry(imageSeries).Property(x => x.MainImageId).IsModified = true;

Also, use RemoveRange instead of the foreach:

    dbContext.Images.RemoveRange(images);
Reasons:
  • Low length (0.5):
  • Has code block (-0.5):
  • Low reputation (0.5):
Posted by: Henrique Pombo

79806683

Date: 2025-11-01 16:44:39
Score: 2
Natty:
Report link

Try

./vendor/bin/pest --bail -v

or

./vendor/bin/pest --bail --verbose
Reasons:
  • Low length (1.5):
  • Has code block (-0.5):
  • Low reputation (1):
Posted by: Godfrey Inyama

79806678

Date: 2025-11-01 16:38:37
Score: 0.5
Natty:
Report link

@dbush: The post says they want the compiler to keep the value in a register, not in the register used to pass it to the routine. The argument register would have to be reloaded for each call, but it can be from another register instead of from memory. The post explicitly notes %ebx would be reloaded.

Reasons:
  • Low length (0.5):
  • Has code block (-0.5):
  • User mentioned (1): @dbush
  • Single line (0.5):
  • Looks like a comment (1):
  • High reputation (-2):
Posted by: Eric Postpischil

79806673

Date: 2025-11-01 16:33:35
Score: 3.5
Natty:
Report link

Using the @JohnGordon idea and dividing the process for each CPU core might make the process faster.

Reasons:
  • Low length (1):
  • No code block (0.5):
  • User mentioned (1): @JohnGordon
  • Single line (0.5):
  • Low reputation (0.5):
Posted by: Eddi

79806672

Date: 2025-11-01 16:32:35
Score: 1
Natty:
Report link

If you are using the customtkinter library, you can also do this:

import customtkinter as ctk
button = ctk.CTkButton(text="Centered Button")
button.place(relx=0.5, rely=0.5, anchor=ctk.CENTER)

but it should work just fine with the anchor="center". This is just another method :)

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

79806668

Date: 2025-11-01 16:26:33
Score: 1.5
Natty:
Report link

You declare a Boolean searching_for_a_0 = True, then iterate over the list. Inside the loop, you have if searching_for_a_0: if item == 0: searching_for_a_0 = False else: “”“ from the first if ”“” if item > S: result.append( item ) looking_for_a_0 = True, the solution of dividing the list into sublists involves iterating over the list to create the sublists, and then iterating over each of these, so it is not efficient.

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

79806667

Date: 2025-11-01 16:25:33
Score: 2.5
Natty:
Report link

On Mac just type: Cmd + "," -> Tools -> Terminal & adjust the Fonts Settings section according to your needs:

IntelliJ 2025 CE - Increasing Terminal Font Size

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

79806664

Date: 2025-11-01 16:21:32
Score: 2.5
Natty:
Report link

You have to right-click on the pom.xml file, go down to Maven, and then select Sync Project. It should work afterwards, or you might see a notification about vulnerable dependencies.

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

79806658

Date: 2025-11-01 16:08:29
Score: 3.5
Natty:
Report link

I’ll be seeing you soon, gang gang 😉

What a fragile question

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

79806654

Date: 2025-11-01 15:59:27
Score: 3
Natty:
Report link

Thank you guys, it's all completely working now. "Nate Eldridge" nailed it. I was shifting my bits in the wrong direction LOL

And I should be using ldrh not ldrb as ldrb only gave me a nibble.

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

79806652

Date: 2025-11-01 15:56:26
Score: 2
Natty:
Report link

I am puzzled here. I do exactly that because my fonts are way too small for a lecture room screen:

div(tableOutput("optim"),style="font-size:120%")

And it does absolutely nothing. No error message, nothing !

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

79806648

Date: 2025-11-01 15:49:24
Score: 1
Natty:
Report link

uvx pyclean . --debris

This works great for me. No issues and is the simplest without any mess.

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

79806647

Date: 2025-11-01 15:46:23
Score: 3.5
Natty:
Report link

@kelly, range of integers is any non-negative integer

@Chris, yes order does matter

Reasons:
  • Low length (1.5):
  • No code block (0.5):
  • User mentioned (1): @kelly
  • User mentioned (0): @Chris
  • Self-answer (0.5):
Posted by: Brian Smith

79806641

Date: 2025-11-01 15:37:21
Score: 4.5
Natty:
Report link

I need to update controller. The main problem is to update controller from provider.

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

79806639

Date: 2025-11-01 15:34:20
Score: 2
Natty:
Report link
111111
header 1 header 2
cell 1 cell 2
cell 3 cell 4

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

79806628

Date: 2025-11-01 15:22:17
Score: 2
Natty:
Report link

The react itself doesn't do event delegation

In the case of web, event delegation is done by react-dom not by react itself,
In the case of react-native, react-native doesn't do any kind of event delegation like react-dom

the Devs have to implement delegation on thier own

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

79806627

Date: 2025-11-01 15:20:16
Score: 2.5
Natty:
Report link

I used this package and my all problems fixed but please make sure to change the input command of making video

Package Link

ffmpeg_kit_flutter_new_gpl: ^1.6.5
Reasons:
  • RegEx Blacklisted phrase (1): I used this package and my all problems fixed but please
  • Low length (1):
  • Has code block (-0.5):
  • Low reputation (1):
Posted by: Zubair Ali

79806626

Date: 2025-11-01 15:17:15
Score: 7.5
Natty: 7
Report link

Can you share the complete code,Please. I want to implement this on a blog website releated to NHS PAY BANDS

Reasons:
  • RegEx Blacklisted phrase (2.5): Can you share
  • RegEx Blacklisted phrase (1): I want
  • Low length (1):
  • No code block (0.5):
  • Unregistered user (0.5):
  • Single line (0.5):
  • Starts with a question (0.5): Can you share the
  • Low reputation (1):
Posted by: Sophie

79806625

Date: 2025-11-01 15:16:15
Score: 1.5
Natty:
Report link

Rails.error.unexpected("Unexpected error") do

my_possible_error_code

end

The error is swallowed in production but not in test/development. But the error is wrapped in a ActiveSupport::ErrorReporter::UnexpectedError and the original message is hidden, which makes the console/log output information useless.

Where is the sweet combination where?:

The error is swallowed in production

The error is raised in test/development

Or, what workaround I can do to have this behaviour?

ruby-on-railserror-handling

Share

Edit

Follow

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

79806624

Date: 2025-11-01 15:16:15
Score: 2.5
Natty:
Report link

I know this is an old qustion but when I tried the method shown it failed.

I eventually found a command that successfullt installed eyeD4, as below:

py -m pip install "eye3D"

I found the above on https://packaging.python.org/en/latest/tutorials/installing-packages/

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

79806617

Date: 2025-11-01 15:09:13
Score: 0.5
Natty:
Report link

Showing your for-loop solution and code for generating realistic data would be useful.

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

79806613

Date: 2025-11-01 15:01:11
Score: 0.5
Natty:
Report link

When you set exactly 1920×1080 on Windows via cv2.VideoCapture using the DirectShow (CAP_DSHOW) backend, OpenCV negotiates the capture format differently than Linux’s V4L2 backend does.
If the driver’s DirectShow filter graph doesn’t expose that exact combination (MJPG @ 60 FPS @ 1920×1080) as a supported media type, it silently falls back to uncompressed RGB24 or YUY2 — which are huge and slow to transfer (e.g., ~373 MB/s for 1080p60 RGB), so you end up with ~1 FPS.

When you instead request a slightly off resolution like 1900×1080, Windows can’t match it exactly. The backend then asks the driver for the nearest valid format, and the driver internally selects MJPG @ 1920×1080, which is compressed — and therefore fast.

So, the difference is purely about which pixel format ends up being negotiated.

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

79806611

Date: 2025-11-01 14:56:10
Score: 4
Natty:
Report link

How is the list generated in the first place? Does its order otherwise matter? Do you know the value of S as the list is being built, or only once it has been fully built?

Reasons:
  • RegEx Blacklisted phrase (2.5): Do you know the
  • Low length (1):
  • Has code block (-0.5):
  • Ends in question mark (2):
  • Single line (0.5):
  • Starts with a question (0.5): How is the
  • High reputation (-2):
Posted by: Chris

79806608

Date: 2025-11-01 14:50:08
Score: 0.5
Natty:
Report link

This happens when the FXML resource path is incorrect

Remove the backslash:

"/test.fxml" => "test.fxml"
Reasons:
  • Low length (1):
  • Has code block (-0.5):
Posted by: Yan

79806594

Date: 2025-11-01 14:39:06
Score: 3.5
Natty:
Report link

What is the range of the integers?

Reasons:
  • Low length (2):
  • No code block (0.5):
  • Ends in question mark (2):
  • Single line (0.5):
  • Starts with a question (0.5): What is the
  • High reputation (-2):
Posted by: Kelly Bundy

79806591

Date: 2025-11-01 14:36:04
Score: 0.5
Natty:
Report link

​<div style="

width: 320px;

height: 180px;

background-image

; /* Your provided image as background /

background-size: cover;

background-position: center;

border-radius: 8px;

box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);

display: flex;

flex-direction: column;

justify-content: flex-start;

align-items: flex-start;

position: relative;

overflow: hidden;

font-family: Arial, sans-serif;

padding: 15px;

box-sizing: border-box;

filter: brightness(0.8); / Slightly darken the image /

">

<div style="

position: absolute;

top: 15px;

right: 15px;

font-size: 28px;

color: #FFEB3B; / Yellow /

text-shadow: 0 0 10px rgba(255, 255, 0, 0.7);

">

🎧

</div>

<div style="

font-size: 32px;

font-weight: bold;

color: white;

text-shadow: 0 0 10px rgba(0, 0, 0, 0.7);

line-height: 1.1;

max-width: 80%;

">

BAS EK BAAR

</div>

<div style="

font-size: 18px;

font-weight: bold;

color: #F48FB1; / Pinkish color for romance */

text-shadow: 0 0 8px rgba(0, 0, 0, 0.6);

margin-top: 5px;

max-width: 80%;

">

8D SLOWED + REVERB

</div>

<div style="

position: absolute;

bottom: 15px;

left: 15px;

font-size: 12px;

color: #E0E0E0;

font-weight: bold;

text-shadow: 0 0 5px rgba(0, 0, 0, 0.5);

">

FOR HEADPHONES

</div>

</div>

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

79806589

Date: 2025-11-01 14:35:04
Score: 2.5
Natty:
Report link

What exactly is the result you want? The number of events? Or some "list" of their indices? Something else?

Reasons:
  • Low length (1):
  • No code block (0.5):
  • Ends in question mark (2):
  • Single line (0.5):
  • Starts with a question (0.5): What
  • High reputation (-2):
Posted by: Kelly Bundy

79806587

Date: 2025-11-01 14:33:03
Score: 2
Natty:
Report link

Some kind of weird interaction with electron's node and wrtc, for my purposes only this library worked
https://github.com/murat-dogan/node-datachannel/

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

79806584

Date: 2025-11-01 14:30:02
Score: 7 🚩
Natty: 5.5
Report link

у меня была такая ошибка при подключении к БД по неправильному порту

Reasons:
  • Low length (1.5):
  • No code block (0.5):
  • Single line (0.5):
  • No latin characters (3.5):
  • Low reputation (1):
Posted by: Сергей Саварин

79806583

Date: 2025-11-01 14:30:02
Score: 1.5
Natty:
Report link

See your warning is just a IDE type warning

When you do inivitation_list =[ ..]

It work like list[str]

But when you do invitation_list[0] it think you are trying to do list[int][str] which is not allowed but the code is fine.

Your code is fine but if you want to remove such warnings then just do

Invitation_list : List[str] = [ "Allen", "Lucas",..]

By doing this your code should not show any warnings ☺️

Reasons:
  • No code block (0.5):
  • Low reputation (1):
Posted by: Niyam Prassanna Kunder

79806581

Date: 2025-11-01 14:28:01
Score: 5.5
Natty:
Report link

Maybe do the loop in reverse order?

Reasons:
  • Low length (2):
  • No code block (0.5):
  • Ends in question mark (2):
  • Single line (0.5):
  • Low reputation (0.5):
Posted by: Eddi

79806576

Date: 2025-11-01 14:15:58
Score: 2.5
Natty:
Report link

is there a debug functionality outside a fully fleshed-out IDE?

Firstly, Visual Studio isn't the only IDE in existence. Secondly, for most code editors you can set up some sort of a debugger interface.

of course I can't debug entirely in the terminal

You can. I highly recommend familiarizing yourself with gdb - the OG command-line debugger. I also suggest you check out cgdb - a TUI (text user interface) debugger based on gdb. Useful stuff and easy to set up!

Is it viable to code outside an encapsulating IDE such as Visual Studio, with standalone replacements for the features that an IDE provides?

This is something that everyone discovers for themselves. I suggest you try out both - creating your own "IDE" from replacements and using an actual IDE. See what you like more.

But, on the topic of Visual Studio, what I want to recommend against is fully relying on Visual Studio's solutions as your main method of building applications, because that limits you to Windows apps. If you are planning on building closs-platform apps, I suggest you also learn CMake in case you haven't already. CMake can generate both Visual Studio solutions and also Makefiles (that you use to build stuff on UN*X systems, for example). Might be off-topic, but I just thought I'd throw it out there

Reasons:
  • RegEx Blacklisted phrase (1): I want
  • Long answer (-1):
  • No code block (0.5):
  • Contains question mark (0.5):
  • Starts with a question (0.5): is there a
  • Low reputation (1):
Posted by: DeciPaliz

79806573

Date: 2025-11-01 14:13:57
Score: 1
Natty:
Report link

I finally found the solution. I want to write it in case someone else needs it. When canonicalizing a sub node, you have to add parent nodes namespaces. It does not matter if you use it in the related sub node or not. Therefore, before canonicalizing the element, I added the namespaces belong to parent nodes to my XmlElement.

public static string Canonicalize(XmlElement Element)
{
    //Create [NamespaceList]
    #region

    var NamespaceList = new Dictionary<string, string>();
    ModifyNamespaceList(Element, ref NamespaceList);

    #endregion

    foreach (var Namespace in NamespaceList)
    {
        Element.SetAttribute(Namespace.Key, Namespace.Value);
    }

    var ElementStream = new MemoryStream();
    var ElementWrtier = XmlWriter.Create(ElementStream);
    Element.WriteTo(ElementWrtier);
    ElementWrtier.Flush();
    ElementStream.Position = 0;

    var c14n = new XmlDsigC14NTransform(false);
    c14n.LoadInput(ElementStream);

    using (var OutStream = (Stream)c14n.GetOutput(typeof(Stream)))
    using (var OutStreamReader = new StreamReader(OutStream, Encoding.UTF8))
    {
        return OutStreamReader.ReadToEnd();
    }
}

private static void ModifyNamespaceList(XmlNode Node, ref Dictionary<string, string> NamespaceList)
{
    if (Node.Attributes != null)
    {
        foreach (XmlAttribute item in Node.Attributes)
        {
            if (item.Prefix == "xmlns" || item.Name == "xmlns")
            {
                if (!NamespaceList.TryGetValue(item.Name, out string Value))
                {
                    NamespaceList.Add(item.Name, item.Value);
                }
            }
        }
    }

    if (Node.ParentNode != null)
    {
        ModifyNamespaceList(Node.ParentNode, ref NamespaceList);
    }
}
Reasons:
  • RegEx Blacklisted phrase (1): I want
  • Long answer (-1):
  • Has code block (-0.5):
  • Self-answer (0.5):
  • Low reputation (1):
Posted by: Omer Harmansa

79806568

Date: 2025-11-01 14:06:56
Score: 2
Natty:
Report link

Documentod-Max:1MB)

Message: Http failure response for 3/api/enroll/evault/enr/upload.ocal: 0 Unknown Erroг.

How far away this error in Janaadhaar upload documents less than 1 mb in pdf format.

Save

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

79806565

Date: 2025-11-01 14:01:54
Score: 1.5
Natty:
Report link

Class Work: Pseudocode

Change the previous pseudocode to print only those even number in the same range (1 to 50)?

Class Work: Pseudocode

Change the previous pseudocode to print only those odd number in the same range (1 to 50)?

Think how the counter is initialized in this problem?

Class Work: Pseudocode

Write a pseudocode to compute the following sum:

1+1/2+1/3+1/4 + + 1/20

using Automatic Counter Loop?

Hint: Think about accumulation...

Class Work: Pseudocode

Write a pseudocode to compute the following sum:

1+1/2+1/3+1/4 + + 1/20

using Automatic Counter Loop?

Hint: Think about accumulation...

Class Work: Pseudocode

Write a pseudocode to compute and print out Factorial of 5?

Hint: Factorial 5 (5!) = 5*4*3*2*1

Class Work: Pseudocode

Write a pseudocode to compute the sum of 5 course marks for 7 students?

Hint: think about nested loops

Reasons:
  • Long answer (-0.5):
  • No code block (0.5):
  • Contains question mark (0.5):
  • Low reputation (1):
Posted by: قحطان الشدادي

79806561

Date: 2025-11-01 13:53:52
Score: 5
Natty:
Report link

Why don't you just keep a list of all running processes that you update in regular intervalls (using a timer)? That way, you can still track created/terminated processes.

You can do this without WinAPI by using the Process class:

How can I list all processes running in Windows?

Reasons:
  • Blacklisted phrase (0.5): How can I
  • Low length (0.5):
  • No code block (0.5):
  • Ends in question mark (2):
  • Starts with a question (0.5): Why don't you
  • Low reputation (1):
Posted by: Stefan Lober

79806552

Date: 2025-11-01 13:37:48
Score: 1
Natty:
Report link

At some point in time, the benefit of storing strings as integers is going to get trumped by the cost of looking up the actual string values in the dictionary.

Those dictionaries live at the part level and have to be recreated all the time during merges, so that could slow things down too.

I've seen LowCardinality used efficiently with 300k values - but of course it all depends on your unique data and environment.

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

79806544

Date: 2025-11-01 13:33:47
Score: 1.5
Natty:
Report link

If you are using C#, you would need something like the .NET Extension Pack (or at least the C# extension) installed for that.

For testing, I opened a .NET project with VSCode:

Without any extension installed, the editor wouldn't have configured the shortcut and neither would understand C# semantics to navigate to definitions.

As soon as I installed the said extension pack, I was able to use the shortcut "ctrl + click" (configured by default in the extension) over a class identifier to navigate to its definition.

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

79806543

Date: 2025-11-01 13:29:46
Score: 0.5
Natty:
Report link

I don't think there is any way to avoid a for loop.

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

79806533

Date: 2025-11-01 12:59:40
Score: 2
Natty:
Report link

Go to your crate's settings page on crates.io. Press the "Delete this crate" button to delete the crate. Currently, the requirements to be able to delete a crate are:

A crate can only be deleted if it is not depended upon by any other crate on crates.io. Additionally, a crate can only be deleted if either:

  • the crate has been published for less than 72 hours

or

  • the crate only has a single owner, and

  • the crate has been downloaded less than 1000 times for each month it has been published.

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

79806532

Date: 2025-11-01 12:59:40
Score: 0.5
Natty:
Report link

This seems to be still in active development phase

https://nodejs.org/api/inspector.html#integration-with-devtools.

https://sachinkasana.medium.com/http-2-network-inspection-in-node-js-debug-like-a-pro-3812fc3a7b67

For me it works with flag --experimental-network-inspection

with node v24

node --inspect-brk --experimental-network-inspection -e "fetch('https://google.com')"

Now in the chromium based browser type chrome://inspect then click the discovered target, then the Network tab in Chrome Dev Tools for node should show entries.

Broadcast stack may look like:

broadcastToFrontend       @ VM79 node: inspector: 212
requestWillBeSent         @ VM79 node: inspector: 216
onClientRequestStart      @ VM108 network undici: 78
publish                   @ node: diagnostics channel: 156
Request                   @ VM117 undici: 2661
[dispatch]                @ VM117 undici: 8499
dispatch                  @ VM117 undici:1993
[dispatch]                @ VM117 undici: 2258
dispatch                  @ VM117 undici: 1993
[dispatch]                @ VM117 undici:8963
dispatch                  @ VM117 undici:1993
(anonymous)               @ YM117 undici:12153
dispatch                  @ VM117 undici:12153
httpNetworkFetch          @ YM117 undici: 12053
httpNetwork0rCacheFetch   @ VMA17 undici:11939
httpFetch                 @ YM117 undici:11772
schemeFetch               @ VM117 undici:11689
mainFetch                 @ VM117 undici: 11533
fetching                  @ VM117 undici:11502
fetch                     @ VM117 undici: 11368
fetch                     @ VM117 undici:15843
fetch                     @ node: internal/bootstrap/web/exposed-window-or-worker:83
(anonymous)               @ VM114 levaUl:1
runScriptInThisContext    @ node: internal/vm:219
(anonymous)               @ node:internal/process/execution:451
(anonymous)               @ VM116 levall-wrapper: 6
runScriptInContext        @ node: internal/process/execution: 449
evalFunction              @ node: internal/process/execution:283
evalTypeScript            @ node: internal/process/execution: 295
(anonymous)               @ VM75 eval string:71

Chrome Dev Tools experimental Network Tab

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

79806525

Date: 2025-11-01 12:35:35
Score: 1.5
Natty:
Report link

In polars version 0.15.x , there is no practical way to read float with a comma as the decimal separator.
the feature to do so first appeared in version 0.20.x polars read_csv documenation version 0.20.x. Therefore the best is to upgrade to this version, or more recent.

Reasons:
  • Low length (0.5):
  • No code block (0.5):
  • Self-answer (0.5):
Posted by: call me Steve

79806521

Date: 2025-11-01 12:31:34
Score: 2
Natty:
Report link

I am afraid your question is formulated in a confusing way and every answer got it wrong. I thin it might be where does the processor instruction set resides ?

I believe on simple microcontroller, the answer is nowhere. The instruction set is just a summary of the mapping from “input”, strings of 0s and 1s called instruction, into an “output”, a behaviour. this mapping is implemented by the hardware chip architecture (circuit).

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

79806513

Date: 2025-11-01 12:07:29
Score: 5
Natty: 5.5
Report link

@Chondan Susuwan

@AmphibianTrading

help me in this Open lines script to delete lines if i want to see only current period and 4 previous periods only, i mean indicator show me only 5 historical open lines

Reasons:
  • Blacklisted phrase (1): help me
  • RegEx Blacklisted phrase (1): i want
  • Low length (0.5):
  • No code block (0.5):
  • User mentioned (1): @Chondan
  • User mentioned (0): @AmphibianTrading
  • Low reputation (1):
Posted by: STOCKS FOREX

79806511

Date: 2025-11-01 12:01:28
Score: 1
Natty:
Report link

I found the issue: Registering the same event handlers again and again in the tests, leading up to about 50 times the same code being executed (50 tests that did that). Fixed now.

How I got there:

  1. In Github Actions, the tests also ran awfully slow, 40 Minutes for 970 tests. So the problem could not be locally.

  2. I also disabled Xdebug, didn't solve the issue.

  3. I started running the tests directory for directory. The summed up time for all tests were only 2 minutes 20 seconds.

  4. I also noted times for some longer running tests to find after which tests the performance problem started.

  5. This helped me identify The tests which caused the problem and then debug it.

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

79806504

Date: 2025-11-01 11:45:25
Score: 1
Natty:
Report link
<svg xmlns="http://www.w3.org/2000/svg" width="500" height="120" viewBox="0 0 500 120">
  <text x="10" y="80" font-family="Arial Black, Impact, sans-serif" font-size="48" transform="skewX(-10)">ARIYANDI</text>
</svg>
Reasons:
  • Low length (0.5):
  • Has code block (-0.5):
  • Low reputation (1):
Posted by: ARI YANDI

79806499

Date: 2025-11-01 11:39:23
Score: 1.5
Natty:
Report link

Go to
Xcode → Build Phases → “Bundle React Native code and images”

Then untick the checkbox labeled “For install builds only”.

This ensures the JavaScript bundle is included in all builds (not just install builds), which often resolves issues where the app launches with a red screen or can’t find the JS bundle in debug/release mode.

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

79806472

Date: 2025-11-01 10:35:09
Score: 2
Natty:
Report link

Replace your loading var by a signal. Remove the setTimeout stuff and run the code directly.

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

79806470

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

к слову есть 1 минус некоторые браузеры (или их версии) к сожелению не разешают запускать музыку сразу со звуком в таком случае надо написать элемент muted который будет запускать все без звука а после добавить выскакивающие сообщене для того чтоб включить звук тогда сайты не будут его блокировать (но для всего этого нужен JavaScript)

Reasons:
  • No code block (0.5):
  • Unregistered user (0.5):
  • Single line (0.5):
  • No latin characters (2):
  • Low reputation (1):
Posted by: Sigici

79806464

Date: 2025-11-01 10:19:05
Score: 4.5
Natty:
Report link

enter image description here

enter image description here

Then just Ok and close then open your journal

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

79806463

Date: 2025-11-01 10:19:05
Score: 2.5
Natty:
Report link

File open" option it give me error "Either it is not importable using selected filter or this format is not supported

i am using coral 12

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

79806460

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

Coma was missed in (6). That's why TypeError was about int. Silly mistake. The solution was found during the writing process:

sum([(1,2,3),(4,5),(6,)], start=())

(1, 2, 3, 4, 5, 6)

itertools.chain is also well known solution, but without sum function

from itertools import chain

tuple(chain(*[(1,2,3),(4,5),(6,)]))
# or
tuple(chain( (1,2,3),(4,5),(6,) ))
Reasons:
  • Has code block (-0.5):
  • Self-answer (0.5):
  • Low reputation (0.5):
Posted by: leofun01

79806453

Date: 2025-11-01 10:00:00
Score: 2.5
Natty:
Report link

just use these two commands and u are good to go
1. conda install anaconda-navigator
2. conda run anaconda-navigator

and then pin the application in the dock using the keep in dock option and voila!!

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

79806450

Date: 2025-11-01 09:56:59
Score: 2
Natty:
Report link

I would do it like this:

awk ‘{ a[FNR] = sprintf(“%s\t%s”, a[FNR], $1)
if (m < FNR) m = FNR }
END { for (i=1; i <= m; i++) print a[i] }’ UE*.dat | tee UE_all.dat

This will give you all the first fields of all thirty files on there own line number.

This solution looks very much like https://stackoverflow.com/users/3337836/isosceleswheel suggested.

Note that this works for files having the same line count; if the files differ, and the numbers from each must be in their corresponding column, you must make some minor changes.

Reasons:
  • Blacklisted phrase (1): stackoverflow
  • Has code block (-0.5):
  • Unregistered user (0.5):
  • Low reputation (1):
Posted by: TheRealRobbedoes

79806449

Date: 2025-11-01 09:56:59
Score: 1.5
Natty:
Report link

Creating an AI-based Image Background Remover in React Native is quite simple using an API service. You can allow users to pick an image from their gallery and automatically remove the background using an online AI API like FreePixel AI Background Remover.

This feature is useful for apps related to photo editing, e-commerce product listings, or social media content creation.

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

79806443

Date: 2025-11-01 09:45:57
Score: 0.5
Natty:
Report link

The remainder of the OAuth2/OIDC ceremony, namely the exchange of the code for a token, is missing.

Your server needs to implement a Servlet with the path /Callback to process the callback provided in the callback_url.

The internal processing of http://localhost:8081/Callback?code=xxxxxxxxxxxxxxxxxx should make a call to https://accounts.google.com/o/oauth2/token with the code as a parameter.

The call to https://accounts.google.com/o/oauth2/token will return the JWT for later use for authorization by the client.

This is the missing step.

Reasons:
  • No code block (0.5):
  • Contains question mark (0.5):
  • Filler text (0.5): xxxxxxxxxxxxxxxxxx
  • High reputation (-1):
Posted by: John Williams

79806436

Date: 2025-11-01 09:35:55
Score: 3.5
Natty:
Report link

use https://zk.boldet.org . Configure your webhook there and use the IP address on the account.

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

79806435

Date: 2025-11-01 09:30:53
Score: 2
Natty:
Report link

For fast loading data you have to temporarily drop the index(s) and recreate after data load so that import of bulk data will be faster and make sure that recovery model has been set to bulk logged before data load and once the load task has been done st load is completed ensur that index are recreated and run the maintenance jobs(reindex, update statistics and backup jobs)

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

79806428

Date: 2025-11-01 09:09:49
Score: 0.5
Natty:
Report link

In addition to @standard_revolution answer, I had to specify #[serde(default)]

#[derive(Deserialize)]
#[serde(default)]
struct PageParams {
    limit: i64,
    offset: i64,
}

impl Default for PageParams {
    fn default() -> Self {
        PageParams {
            limit: 10,
            offset: 0,
        }
    }
}

#[get("/list")]
async fn list(query: web::Query<PageParams>) -> impl Responder { ... }
Reasons:
  • Has code block (-0.5):
  • User mentioned (1): @standard_revolution
Posted by: max-lt

79806424

Date: 2025-11-01 08:57:46
Score: 3.5
Natty:
Report link

OMG THANK YOU SOOOOOOOO MUCH!

I’ve been working on this issue for months, even put in over 12 hours today on it. There a lot of misinformation out there. I kept being notified it was the crypto.com exchange site giving me wrong api keys.

THANK GOD THAT PART IS OVER! MUCH APPRECIATED!

I feel like I instantly lost weight!

Reasons:
  • Blacklisted phrase (0.5): THANK YOU
  • Blacklisted phrase (1): APPRECIATED
  • No code block (0.5):
  • Filler text (0.5): OOOOOOOO
  • Low reputation (1):
Posted by: Inzzane

79806423

Date: 2025-11-01 08:57:46
Score: 3
Natty:
Report link

I don't know if you are looking for such a tool, but you can check out

https://logchange.dev/tools/logchange/getting-started/

Apache Solr using it exactly because of wasting time for pull requests conflicts

https://lists.apache.org/thread/4dotf4qx4ss3qr3xonv2y63v7wdg40nt

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

79806421

Date: 2025-11-01 08:49:44
Score: 0.5
Natty:
Report link

I have been troubled by this for a while, and this is my final solution:

A Python script replace emoji with images: https://gist.githubusercontent.com/fengchang/885365a6e0c95dc54aeacc328ae31d29/raw/b1d7880e17a3d762ca2879d6bce3e73623318b5d/md2pdf.py

The emoji images are download from here: https://github.com/iamcal/emoji-data

If Apple emoji not available, it will try download Twemoji instead.

The script also fix other markdown issues, like list must have an empty line. with other pandoc parameters I like.

Reasons:
  • Whitelisted phrase (-2): solution:
  • Probably link only (1):
  • Contains signature (1):
  • No code block (0.5):
Posted by: Chang

79806419

Date: 2025-11-01 08:46:43
Score: 2
Natty:
Report link

The structure of that file is pretty simple (though I tried only usernames, but no sessionIDs, etc).

Just each user name on a new line. That's it. And, by the way, the @ symbol in front of the filename is mandatory.

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

79806410

Date: 2025-11-01 08:26:39
Score: 4
Natty:
Report link

💥 Lagi gabut? Coba main di Jo777 — siapa tau hoki lo lagi on fire! 🔥

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

79806409

Date: 2025-11-01 08:25:38
Score: 6 🚩
Natty: 5
Report link

https://p16-sign-sg.tiktokcdn.com/tos-alisg-avt-0068/d37791f4ee07e8e3ce7ff38d605ecf06\~tplv-tiktokx-cropcenter:1080:1080.jpeg?dr=14579&refresh_token=eb935378&x-expires=1762153200&x-signature=Uk%2B4%2F4VB%2Fdg9M0mVh8LCcY6rLc0%3D&t=4d5b0474&ps=13740610&shp=a5d48078&shcp=81f88b70&idc=maliva

Reasons:
  • Probably link only (1):
  • Low length (2):
  • No code block (0.5):
  • Unregistered user (0.5):
  • Has no white space (0.5):
  • Single line (0.5):
  • Low reputation (1):
Posted by: Devany León

79806403

Date: 2025-11-01 08:13:35
Score: 3
Natty:
Report link

Fly88 là nhà cái cược online mới, dự kiến cung cấp đầy đủ các sản phẩm từ cá cược thể thao, casino, slot,... cùng tỷ lệ trả thưởng minh bạch. Tham gia +58 miễn phí ngay

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

79806395

Date: 2025-11-01 07:59:32
Score: 0.5
Natty:
Report link

import numpy as np

import matplotlib.pyplot as plt

# Настройка для поддержки кириллицы

plt.rcParams['font.family'] = 'DejaVu Sans'

plt.rcParams['font.size'] = 12

# Создаем данные для графика

x = np.linspace(0.1, 10, 500)

y = np.log(x) / np.log(1/3) # log_{1/3}(x) = ln(x)/ln(1/3)

# Создаем фигуру и оси

plt.figure(figsize=(10, 6))

# Рисуем график

plt.plot(x, y, 'b-', linewidth=2, label=r'$y = \log_{\frac{1}{3}} x$')

# Отмечаем ключевые точки

points = [(1/9, 2), (1/3, 1), (1, 0), (3, -1), (9, -2)]

for px, py in points:

plt.plot(px, py, 'ro', markersize=6)

plt.annotate(f'({px:.2f}, {py})', (px, py), 

            xytext=(5, 5), textcoords='offset points')

# Настраиваем внешний вид

plt.axhline(y=0, color='k', linestyle='-', alpha=0.3)

plt.axvline(x=0, color='k', linestyle='-', alpha=0.3)

plt.grid(True, alpha=0.3)

plt.xlabel('x')

plt.ylabel('y')

plt.title('График функции $y = \log_{\frac{1}{3}} x$')

plt.legend()

# Устанавливаем пределы осей

plt.xlim(0, 10)

plt.ylim(-3, 3)

plt.tight_layout()

plt.show()

Reasons:
  • Long answer (-1):
  • Has code block (-0.5):
  • Unregistered user (0.5):
  • No latin characters (0.5):
  • Low reputation (1):
Posted by: Qewerytion

79806390

Date: 2025-11-01 07:51:30
Score: 2
Natty:
Report link

Try changing the zIndex to a number — it might work. You can also try increasing the zIndex value.

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

79806389

Date: 2025-11-01 07:49:30
Score: 3
Natty:
Report link

sid is "session id", which is hardcoded to 00 on mavericks. tk is "tile key", an md5 hash of the url and hardcoded api secrets. mapkey is the access token, a unix timestamp of the expiration date (4200 seconds after current time), followed by another md5 hash. all 3 are used together to authenticate maps requests to the gspaxx servers. your mapkey probably expired.

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

79806386

Date: 2025-11-01 07:42:28
Score: 0.5
Natty:
Report link

I found example in roslyn project.

  <PropertyGroup>
    <OutputType>Exe</OutputType>
    <TargetFrameworks>$(NetRoslynSourceBuild);net472</TargetFrameworks>
    <IsSymbolPublishingPackage>true</IsSymbolPublishingPackage>
    <TieredCompilation>false</TieredCompilation>
  </PropertyGroup>
Reasons:
  • Low length (0.5):
  • Has code block (-0.5):
  • Low reputation (0.5):
Posted by: Trivalik

79806379

Date: 2025-11-01 07:22:24
Score: 8.5 🚩
Natty: 5
Report link

So, how did you figure out how to use it, because I'm currently having the same issue and can't seem to find a work around.

Reasons:
  • RegEx Blacklisted phrase (3): did you figure out
  • Low length (1):
  • No code block (0.5):
  • Me too answer (2.5): having the same issue
  • Single line (0.5):
  • Low reputation (1):
Posted by: Pink Phoenix

79806367

Date: 2025-11-01 06:53:14
Score: 3.5
Natty:
Report link

Valid question!

Currently I'm looking at the solution with a conditional pragma. I believe, if in the called method you define some 'Variant' variable, then it should be possible to show / hide inputs / outputs.

I wonder what the experts here are thinking about usability of a conditional pragma with definition directly in the code?

Reasons:
  • No code block (0.5):
  • Ends in question mark (2):
  • Low reputation (1):
Posted by: Aleksandr Soldatov

79806364

Date: 2025-11-01 06:41:12
Score: 3.5
Natty:
Report link

I would recommend installing clink instead of setting macros in every terminal emulator.

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

79806356

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

Telegram doesn't allow you to do so, you may try

  1. Open Telegram Desktop

  2. Play the stream (Desktop uses hardware acceleration more reliably)

  3. Cast screen → Android TV

    please vote if you think it helped you in any way

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

79806351

Date: 2025-11-01 05:59:03
Score: 11.5
Natty: 7
Report link

I have the same problem... Did you find the answer?

Reasons:
  • Blacklisted phrase (1): I have the same problem
  • RegEx Blacklisted phrase (3): Did you find the answer
  • Low length (1.5):
  • No code block (0.5):
  • Me too answer (2.5): I have the same problem
  • Ends in question mark (2):
  • Single line (0.5):
  • Low reputation (0.5):
Posted by: Elona Mishmika

79806348

Date: 2025-11-01 05:53:02
Score: 3
Natty:
Report link
data:{'user_id':user_id,'role_id':role_id},
Reasons:
  • Low length (1.5):
  • Has code block (-0.5):
  • Has no white space (0.5):
  • Single line (0.5):
  • Low reputation (1):
Posted by: Esenceweb IT

79806343

Date: 2025-11-01 05:33:58
Score: 1
Natty:
Report link

HTML (for page the needs image)
<body class="with-bg">

HTML(pages that dont need image)
<body class="no-bg">

CSS


body.with-bg {
  background-image: url("bg.jpg");
  background-size: cover;
  background-repeat: no-repeat;
}


body.no-bg {
  background-image: none !important;
}

!important this might ensure that background is completely removed if any another rule was stronger

Or you may also use inline css

<body style="background-image:none;">

Please upvote if it works !

Reasons:
  • Blacklisted phrase (0.5): upvote
  • Has code block (-0.5):
  • Low reputation (1):
Posted by: Prasad Yewale

79806335

Date: 2025-11-01 05:01:52
Score: 0.5
Natty:
Report link

As @Alohci suggested, I finally made it with line-break: anywhere.

<p>with white-space:break-spaces;</p>
<output style="display:inline-block;font-family:monospace;width:8ch;border: 1px solid black;white-space:break-spaces;line-break: anywhere;">123456  1234  7812  5678  345678</output>

According to the specification, The "missing" whitespace for white-space:pre-wrap and early wrap for white-space:break-spaces could be intentional.

4.1.1. Phase I: Collapsing and Transformation

  • If white-space is set to pre, pre-wrap, or break-spaces, any sequence of spaces is treated as a sequence of non-breaking spaces. However, for pre-wrap, a soft wrap opportunity exists at the end of a sequence of spaces and/or tabs, while for break-spaces, a soft wrap opportunity exists after every space and every tab.

Chromium chooses not to wrap lines before spaces.

4.1.2. Phase II: Trimming and Positioning

  1. If there remains any sequence of white space, other space separators, and/or preserved tabs at the end of a line
    • If white-space is set to pre-wrap, the UA must (unconditionally) hang this sequence. ...
    • If white-space is set to break-spaces, spaces, tabs, and other space separators are treated the same as other visible characters: they cannot hang nor have their advance width collapsed.

So, for white-space: pre-wrap, space sequences are hanging at the end edge of previous line; for white-space: break-spaces, lines are wraped early to avoid a hanging space. That's why I didn't get the expected layout.

To force the line to be wrapped anywhere, I shall use line-break: anywhere.

5.3. Line Breaking Strictness: the line-break property

anywhere : There is a soft wrap opportunity around every typographic character unit, including around any punctuation character or preserved white spaces, ...

... it does have an effect on preserved white space, with white-space: break-spaces, it allows breaking before the first space of a sequence, which break-spaces on its own does not.

Reasons:
  • Long answer (-1):
  • Has code block (-0.5):
  • User mentioned (1): @Alohci
  • Self-answer (0.5):
  • Low reputation (0.5):
Posted by: FaniX

79806331

Date: 2025-11-01 04:32:47
Score: 0.5
Natty:
Report link

I created a simple wrapper called FixedMenu that solves this issue.

Just replace Menu with FixedMenu:

import FixedMenu

FixedMenu {
    Button("Action 1") {}
    Button("Action 2") {}
} label: {
    Text("Options")
}
Reasons:
  • Low length (0.5):
  • Has code block (-0.5):
  • Low reputation (0.5):
Posted by: nullproduction

79806328

Date: 2025-11-01 04:23:45
Score: 0.5
Natty:
Report link

I just encountered the same problem. Same exact behavior as you. That is, I can start typing and the color of the text is fine and readable. But as soon as there is a space, the background color of the text turns to black, making it impossible to read the text. Or as you said, even pasting in a string value with spaces will cause it to turn black.

I don't have an exact solution to fix the PowerShell terminal, but did find out that I could instead just set the default to be the Developer Command Prompt instead of PowerShell. And that doesn't have the problem.

Terminal Options

Obviously you can't run any PowerShell commands, but that is alright for me.

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