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

79805557

Date: 2025-10-31 09:00:43
Score: 4.5
Natty:
Report link

I used the function from this repository.

https://github.com/microsoft/ndis-driver-library/

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

79805554

Date: 2025-10-31 08:57:42
Score: 4.5
Natty:
Report link

https://github.com/i18next/i18next-cli/issues/83

new answer from adrai

you can install v1.19.0 to resolve this problem

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

79805553

Date: 2025-10-31 08:56:42
Score: 12
Natty: 7.5
Report link

I have the same problem. Have you been able to solve it somehow?

Reasons:
  • Blacklisted phrase (1.5): Have you been able to
  • Blacklisted phrase (1): I have the same problem
  • RegEx Blacklisted phrase (1.5): solve it somehow?
  • 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 (1):
Posted by: iOS Ninja

79805551

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

!jupyter lab clean - the only solution 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: Paula

79805546

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

I got this from meson finds python3 binary, fails to find python3 dependency I had to install python3-devel. In my case (opensuse)

zypper in python311-devel
Reasons:
  • Probably link only (1):
  • Low length (1):
  • Has code block (-0.5):
  • High reputation (-1):
Posted by: Friedrich -- Слава Україні

79805538

Date: 2025-10-31 08:21:33
Score: 2
Natty:
Report link

@Mclayton why the backticks after the commas?
The Commas already work a line-breaker, adding the backticks only make everything harder.

Reasons:
  • Low length (1):
  • No code block (0.5):
  • Contains question mark (0.5):
  • User mentioned (1): @Mclayton
  • High reputation (-1):
Posted by: sirtao

79805529

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

The ACK packets are constructed and sent directly by the NDIS filter driver in kernel mode, bypassing the application layer and Winsock stack entirely. All operations—including NBL allocation, payload filling, and transmission—are performed within the kernel to achieve minimal latency and maximum throughput.

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

79805524

Date: 2025-10-31 07:59:28
Score: 2
Natty:
Report link

I was facing the same problems
the problem is that visual studio 22 don't support .net 4.5 anymore so it doesn't have the 4.5 developer pack so you need to install vs 2019 because it will install the 4.5 developer pack and you can now use vs 2022 normally

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

79805519

Date: 2025-10-31 07:49:25
Score: 3
Natty:
Report link

Starting with .NET 6 the C free is callable via NativeMemory.Free(Void*), see NativeMemory.Free(Void*)

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

79805515

Date: 2025-10-31 07:44:23
Score: 2.5
Natty:
Report link

What Are Digital Marketing Services and Why Are They Important?

Digital marketing services help businesses promote their products or services online through various strategies. In today’s digital world, online visibility is crucial for growth, and that’s where DigigrowlyMedia plays a major role — providing end-to-end digital marketing solutions to help brands grow faster.

Key Digital Marketing Services Offered by DigigrowlyMedia

1. Search Engine Optimization (SEO)

SEO helps your website rank higher on Google and other search engines. DigigrowlyMedia uses proven methods like:

2. Social Media Marketing (SMM)

Social media is where your audience spends most of their time. DigigrowlyMedia creates engaging social media campaigns to:

3. Pay-Per-Click Advertising (PPC)

Want quick leads? PPC advertising drives instant traffic. Their expert team manages Google Ads and Meta Ads to:

4. Content Marketing

Content is the backbone of every digital strategy. DigigrowlyMedia crafts high-quality blogs, infographics, and videos to:

5. Email Marketing

Email remains one of the most effective ways to nurture leads. Their personalized email campaigns help businesses:

6. Website Design and Development

A good website creates a lasting impression. DigigrowlyMedia designs modern, mobile-friendly websites that:

Why Choose DigigrowlyMedia?

If you want to enhance your online presence and grow your business effectively, DigigrowlyMedia is a reliable partner for all your digital marketing needs.

Reasons:
  • Contains signature (1):
  • Long answer (-1):
  • No code block (0.5):
  • Contains question mark (0.5):
  • Starts with a question (0.5): What Are
  • Low reputation (1):
Posted by: digigrowlymedia

79805511

Date: 2025-10-31 07:41:22
Score: 4.5
Natty: 5
Report link

Same problem with me, I can't figure out how to do it.

Reasons:
  • RegEx Blacklisted phrase (1): Same problem
  • Low length (1.5):
  • No code block (0.5):
  • Single line (0.5):
  • Low reputation (1):
Posted by: Aditya Sharma

79805482

Date: 2025-10-31 07:01:12
Score: 1.5
Natty:
Report link

Try updating Windows to latest update or upgrade to newer version (Windows 11).

That's the only method that worked for me.

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

79805478

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

import React, { useState } from 'react'; import { Moon, Sun, Play, Pause } from 'lucide-react'; import { motion } from 'framer-motion';

export default function SleepApp() { const [isDark, setIsDark] = useState(true); const [isPlaying, setIsPlaying] = useState(false);

const toggleTheme = () => setIsDark(!isDark); const togglePlay = () => setIsPlaying(!isPlaying);

return ( <div className={min-h-screen flex flex-col items-center justify-center transition-all duration-500 ${isDark ? 'bg-gray-900 text-white' : 'bg-blue-100 text-gray-900'}}> <motion.h1 initial={{ opacity: 0, y: -20 }} animate={{ opacity: 1, y: 0 }} transition={{ duration: 0.6 }} className="text-4xl font-bold mb-8" > SleepWave 💤 </motion.h1>

  <motion.div
    initial={{ scale: 0.9, opacity: 0 }}
    animate={{ scale: 1, opacity: 1 }}
    className="bg-white/10 backdrop-blur-md p-8 rounded-2xl shadow-lg flex flex-col items-center"
  >
    <p className="text-lg mb-4">Som relaxante para ajudar você a dormir</p>

    <button
      onClick={togglePlay}
      className="p-4 bg-indigo-500 rounded-full shadow-md hover:bg-indigo-600 transition-all"
    >
      {isPlaying ? <Pause size={32} /> : <Play size={32} />}
    </button>

    <p className="mt-3 text-sm opacity-75">
      {isPlaying ? 'Reproduzindo som de chuva...' : 'Toque para começar a relaxar'}
    </p>
  </motion.div>

  <button
    onClick={toggleTheme}
    className="absolute top-6 right-6 p-3 rounded-full bg-white/10 hover:bg-white/20 transition-all"
  >
    {isDark ? <Sun size={24} /> : <Moon size={24} />}
  </button>

  <footer className="mt-10 opacity-60 text-sm">Feito por Maginata 🌙</footer>
</div>

); }

Reasons:
  • Blacklisted phrase (3): você
  • Long answer (-1):
  • Has code block (-0.5):
  • Low reputation (1):
Posted by: Enzio Castro messias

79805461

Date: 2025-10-31 06:21:03
Score: 2
Natty:
Report link

The solution was to create a new iCloud key - the old one must have corrupted and no longer worked.

As soon as a new key was created it all worked instantly.

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

79805451

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

A crate version being "yanked" means that it is no longer available to use that specific version as a dependency. In this case, the numeric crate specifies that it requires the hdf5-sys crate at version "^0.3.2" as a dependency, which means that it needs a non-yanked version 0.3.n, where n is larger than or equal to 2. The hdf5-sys crate appears to have yanked all versions lower than 0.5.0, which means that crates.io cannot find a version that matches the requirement, giving you the error message.

As the numeric crate is unmaintained, the only solution you have would be to either use an earlier version of it that does not have a dependency on hdf5-sys (version 0.0.7 appears to be the latest version satisfying this), or switch to a more maintained n-dimensional vector math library, such as using ndarray with ndarray-linalg.

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

79805449

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

You can try this ADO extension which has a Team Insights section

Sprintreportpro

Team Insights

Reasons:
  • Whitelisted phrase (-1): try this
  • Low length (1.5):
  • No code block (0.5):
  • Low reputation (1):
Posted by: Ginu Raju

79805445

Date: 2025-10-31 06:08:59
Score: 3.5
Natty:
Report link

Hope the documentation is helpful:

https://github.com/microsoft/MSO-Scripts/wiki/Advanced-Symbols#missing-imageid-event

Generally you need pdb file corresponding to the binary. If it is not available, maybe you can try to generate pdf from binary:

https://github.com/rainers/cv2pdb

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

79805443

Date: 2025-10-31 06:06:59
Score: 3.5
Natty:
Report link

Thanks Bill. I have gone through your link and it will definitely help me in working with PostgreSQL. But here the scenario is to model and mimic the functionality of oracle procedure in Spring Data JPA do that it will not be hardly coupled with DB. I just connect to respective DB and process data using JPA entity models. So is it a good approach to write SQL queries in JPA/Hibernate Native queries and execute or any other way to model the procedure functionality in JPA framework.

Reasons:
  • Blacklisted phrase (0.5): Thanks
  • Blacklisted phrase (1): help me
  • No code block (0.5):
  • Self-answer (0.5):
  • Single line (0.5):
  • Low reputation (0.5):
Posted by: Surodip

79805442

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

It’s the more scalable and flexible design, especially for ERP/MES systems where new resource types or reporting needs often evolve. Centralizing makes it easier to query, audit, and extend the model later — at the cost of a bit more sync logic.

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

79805424

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

Perhaps you should try some free web tools; they might be able to help you. this url ilovepdfilovepdftoword

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

79805423

Date: 2025-10-31 05:26:50
Score: 3
Natty:
Report link

I got a mistake - i have created another function with same name on different script and used that script on same html page thats why this function will not run

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

79805419

Date: 2025-10-31 05:21:49
Score: 4
Natty:
Report link

<?xml version="1.0" encoding="UTF-8"?>

<PrintLetterBarcodeData uid="408937029261" name="Jabid" gender="M" yob="2006" co="S/O: Mohd. Kalu" house="B-1053" loc="Sanjay nagar" vtc="Jaipur" po="Shastri Nagar" dist="Jaipur" subdist="Jaipur" state="Rajasthan" pc="302016" dob="03/12/2006"/>

Reasons:
  • Contains signature (1):
  • Low length (0.5):
  • No code block (0.5):
  • Contains question mark (0.5):
  • Unregistered user (0.5):
  • Low reputation (1):
Posted by: Jabid

79805417

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

List.Generate to the rescue:

merge_loop = List.Generate(
    () => #"Renamed Columns2",
    (tbl) => Table.IsEmpty(Table.SelectRows(tbl, each [OBJECT_ID] = _TargetFolder)),
    (tbl) => let
        #"Merged Queries" = Table.NestedJoin(tbl, {"OBJECT_ID"}, AllFolders, {"PARENT_ID"}, "AllFolders", JoinKind.LeftOuter),
        #"Expanded AllFolders" = Table.ExpandTableColumn(#"Merged Queries", "AllFolders", {"OBJECT_NAME", "OBJECT_ID"}, {"OBJECT_NAME.1", "OBJECT_ID.1"}),
        #"Added Custom" = Table.AddColumn(#"Expanded AllFolders", "Path.1", each [Path]&"\"&[OBJECT_NAME.1]),
        #"Removed Other Columns" = Table.SelectColumns(#"Added Custom",{"Path.1", "OBJECT_ID.1"}),
        #"Renamed Columns" = Table.RenameColumns(#"Removed Other Columns",{{"OBJECT_ID.1", "OBJECT_ID"}, {"Path.1", "Path"}})
    in
        #"Renamed Columns"
),
non_empty_tbl = Table.SelectRows(
    List.LastN(merge_loop, 1){0},
    each [OBJECT_ID] = _TargetFolder
),
Reasons:
  • Probably link only (1):
  • Long answer (-0.5):
  • Has code block (-0.5):
  • Low reputation (0.5):
Posted by: kb2136