79830165

Date: 2025-11-25 21:13:19
Score: 2.5
Natty:
Report link

in powershell, put the data into a variable, then you can do anything with it

write-host,out-host, write-file into a text file, whatever. you struggle because you're using "old thinking". took me a while to get out of that mode. stop using >>. thats not real powershell. do better!

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

79830162

Date: 2025-11-25 21:04:16
Score: 1.5
Natty:
Report link

I had this same problem and appreciated a way to fix it, but it didn't solve the problem on a global scale. So, after doing the clear contents and all, I tested if it would work going forward by adding a new column. It did seem to prevent new columns from having this problem, which is lovely. However, I didn't want to have this happen ever again, and I use calculated columns a lot. When testing, a little box appeared floating just below the column header. When clicked, it had several options to control the Autocorrect behavior.

If you open AutoCorrect options, on the AutoFormat as You Type tab, the last item (in 365) is "Fill formulas in tables to create calculated columns." Unchecking this should prevent the creation of columns with unintended formulas. You can also access the options by clicking the following steps: File tab, Options at the bottom of the list, Proofing in the popout menu, the AutoCorrect options under the AutoCorrect Options header.

I'm adding this note simply because I would never have guessed AutoCorrect was at the bottom of this.

Reasons:
  • Blacklisted phrase (1): appreciated
  • Long answer (-1):
  • No code block (0.5):
  • Low reputation (1):
Posted by: Margaret

79830159

Date: 2025-11-25 21:00:15
Score: 0.5
Natty:
Report link

I ran into the same problem with IntelliJ’s terminal. The default theme can make some text hard to read, especially the pale yellow on white.

What worked for me was going to Settings → Tools → Terminal → Colors and adjusting the text color there. You can also tweak ANSI colors if certain outputs are still hard to see. Just make a copy of your current scheme first so you can revert if needed.

After that, the terminal became much easier to read without changing the rest of the IDE theme.

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

79830157

Date: 2025-11-25 20:54:14
Score: 2.5
Natty:
Report link

You don't have to code anything.

From the Google Doc menu, click on Format / Line and character spacing ->

Finally click on "Add space after paragraph"

Ta da.

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

79830146

Date: 2025-11-25 20:28:07
Score: 0.5
Natty:
Report link

maybe something like that ? (idea came from "C object'like struct using function pointers")

class utfCodepointViewWrap;
class utfStringViewWrap;

class utfStringViewAPI
{
  public:
  constexpr virtual utfCodepointViewWrap operator[] (const cpidx &aIdx) = 0;
  constexpr virtual utfStringViewWrap substr(const cpidx& aStart, size_t aCount) = 0;
};

class utfStringViewWrap
{
public:
  utfStringViewWrap(utfStringViewAPI& aThis) : mThis(aThis) {};
  constexpr utfCodepointViewWrap operator[] (const cpidx &aIdx);
  constexpr utfStringViewWrap substr(const cpidx& aStart, size_t aCount);

protected:
  utfStringViewAPI& mThis;

private:
  utfStringViewWrap()=delete;
};

constexpr utfStringViewWrap
utfStringViewWrap::substr (const cpidx &aStart, size_t aCount)
{
    return mThis.substr(aStart, aCount);
};

class u16stringView : public utfStringViewAPI
{
public:
  constexpr virtual utfCodepointViewWrap operator[] (const cpidx &aIdx) override { .... };
  constexpr virtual utfStringViewWrap substr(const cpidx& aStart, size_t aCount) override {return utfStringViewWrap(*this);};
};

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

79830145

Date: 2025-11-25 20:27:06
Score: 0.5
Natty:
Report link

I believe you are looking for CSS variables:

:root {
    --bg-color: lightblue;
    --primary-color: steelblue;
}

.my-container {
    scrollbar-color: var(--primary-color) var(--bg-color);
    background-color: var(--bg-color);
}

I am not sure if system colors could be referenced.

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

79830144

Date: 2025-11-25 20:26:06
Score: 0.5
Natty:
Report link

@KANISHK KHANDELWAL I have not heard from you in a few days. Perhaps you have lost interest?

So, I will continue using my own navigation code.

Let me know when you would like to integrate your navigation code with the test simulator.

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

79830143

Date: 2025-11-25 20:25:06
Score: 1
Natty:
Report link

Have you measured? If not, you just don't know.

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

79830141

Date: 2025-11-25 20:23:05
Score: 2
Natty:
Report link

Try specifying the 2nd generation execution environment. Your service is probably defaulting to the first generation which has faster cold start times but doesn't implement some Linux features like cgroups that nsjail relies on.

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

79830139

Date: 2025-11-25 20:21:04
Score: 1
Natty:
Report link

A fully qualified name is a name that is composed of a namespace, a resolution operator (::), and a member name. An example includes: TextLib::Text.

That is what bjarn said in his book "Principles and Practice Using C++."

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

79830135

Date: 2025-11-25 20:15:03
Score: 0.5
Natty:
Report link

The general rule is if you care enough, you benchmark.

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

79830130

Date: 2025-11-25 20:04:00
Score: 1
Natty:
Report link

Pandas' .read_excel() method (https://pandas.pydata.org/pandas-docs/stable/reference/api/pandas.read_excel.html) has the option to specify multiple header rows, using the header argument. So if the first two rows are indices like in your case, you would specify: header=[0, 1]

Reasons:
  • Whitelisted phrase (-1): in your case
  • Probably link only (1):
  • Low length (0.5):
  • Has code block (-0.5):
  • Single line (0.5):
  • Low reputation (0.5):
Posted by: usdn

79830129

Date: 2025-11-25 20:02:59
Score: 0.5
Natty:
Report link

I am aware that I can benchmark my current environment, that doesn't really cover the general rule question. I cannot benchmark future environments and so would just resort to using a general rule for development. On my current environment std::int16_t is short int and std::int_fast16_t is long int

Reasons:
  • Blacklisted phrase (0.5): I cannot
  • Low length (0.5):
  • Has code block (-0.5):
  • Self-answer (0.5):
  • Single line (0.5):
  • High reputation (-1):
Posted by: asimes

79830128

Date: 2025-11-25 20:00:59
Score: 4
Natty:
Report link

In the History pane for a repository, right click on the commit of interest and select "Checkout commit" from the shortcut menu.

For more detailed information, see this URL:

https://docs.github.com/en/desktop/managing-commits/checking-out-a-commit-in-github-desktop

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

79830126

Date: 2025-11-25 19:59:57
Score: 9 🚩
Natty: 5.5
Report link

Have your issue been resolved? I have the same issue now.

Thanks,

Vivian

Reasons:
  • Blacklisted phrase (0.5): Thanks
  • Blacklisted phrase (1): I have the same issue
  • RegEx Blacklisted phrase (1.5): resolved?
  • Low length (1.5):
  • No code block (0.5):
  • Me too answer (2.5): I have the same issue
  • Contains question mark (0.5):
  • Low reputation (1):
Posted by: sunwei2023 sun

79830117

Date: 2025-11-25 19:45:53
Score: 1.5
Natty:
Report link

A quick workaround I found is to surround whatever you want to paste with quotes "". Then, it lets you paste multiple lines without execution, and you close with a second ". Although, if the text itself contains quotes, it will fail.

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

79830111

Date: 2025-11-25 19:38:51
Score: 2.5
Natty:
Report link

I opened image in paint, reduced the pixels and saved it as a .bmp file. Then inserted that file in crystal, worked for me.

Reasons:
  • Whitelisted phrase (-1): worked for me
  • Low length (1):
  • No code block (0.5):
  • Unregistered user (0.5):
  • Single line (0.5):
  • Low reputation (1):
Posted by: NoodleRat

79830109

Date: 2025-11-25 19:30:49
Score: 1
Natty:
Report link

I am trying to start ignite inside my JVM on 2 machines.
Code:

Path configPath = Path.of("ignite-config.conf");
String pathString = "C:\\work";
Path workDir = Paths.get(pathString);

IgniteServer node1 = IgniteServer.start("node1", configPath, workDir);

System.out.println("Started node1");

InitParameters initParameters = InitParameters.builder()
        .metaStorageNodeNames("node1")
        .clusterName("cluster")
        .build();
node1.initCluster(initParameters);
Path configPath = Path.of("ignite-config.conf");
String pathString = "C:\\work";
Path workDir = Paths.get(pathString);

IgniteServer node2 = IgniteServer.start("node2", configPath, workDir);

System.out.println("Started node2");

InitParameters initParameters = InitParameters.builder()
        .metaStorageNodeNames("node2")
        .clusterName("cluster")
        .build();
node1.initCluster(initParameters);

Conf file:

ignite {
    network {
        nodeFinder {
            netClusterNodes=[
                "node1:3344",
                "node2:3344"
            ]
            type=STATIC
        }
        port=3344
    }
}
ignite {
    network {
        nodeFinder {
            netClusterNodes=[
                "node1:3344",
                "node2:3344"
            ]
            type=STATIC
        }
        port=3344
    }
}

when I am trying to start 2nd node on machine 2 it is giving error

org.apache.ignite.internal.cluster.management.InitException: IGN-CMN-65535 Unable to initialize the cluster: Node "node1" is not present in the physical topology TraceId:ed46d1c7
    at java.base/java.lang.invoke.MethodHandle.invokeWithArguments(MethodHandle.java:732)
    at org.apache.ignite.internal.util.ExceptionUtils$8.copy(ExceptionUtils.java:1027)
    at org.apache.ignite.internal.util.ExceptionUtils$ExceptionFactory.createCopy(ExceptionUtils.java:873)
    at org.apache.ignite.internal.util.ExceptionUtils.copyExceptionWithCause(ExceptionUtils.java:675)
    at org.apache.ignite.internal.util.ExceptionUtils.copyExceptionWithCauseInternal(ExceptionUtils.java:808)
    at org.apache.ignite.internal.util.ExceptionUtils.copyExceptionWithCause(ExceptionUtils.java:653)
    at org.apache.ignite.internal.app.IgniteServerImpl.tryToCopyExceptionWithCause(IgniteServerImpl.java:543)
    at org.apache.ignite.internal.app.IgniteServerImpl.sync(IgniteServerImpl.java:535)
    at org.apache.ignite.internal.app.IgniteServerImpl.initCluster(IgniteServerImpl.java:226)
    at org.example.Main.main(Main.java:38)
Reasons:
  • Blacklisted phrase (1): I am trying to
  • Long answer (-1):
  • Has code block (-0.5):
  • Self-answer (0.5):
  • Low reputation (1):
Posted by: Ankit Lunawat

79830108

Date: 2025-11-25 19:29:49
Score: 1.5
Natty:
Report link

This ended up solving all my issues

public class BigImportantClass {
    public BigImportantClass(List<? extends MyClassBaseIF> stuff) {
        List<MyClassBaseIF> a = new ArrayList<>();
        a.addAll(stuff);
    }
}
Reasons:
  • Low length (0.5):
  • Has code block (-0.5):
  • Self-answer (0.5):
  • Low reputation (1):
Posted by: horsemeat

79830105

Date: 2025-11-25 19:24:47
Score: 1
Natty:
Report link

@Ulrich Eckhardt

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

79830103

Date: 2025-11-25 19:15:45
Score: 2.5
Natty:
Report link

@Rawley Fowler, Look again. They are changing the cloned request.

Reasons:
  • Low length (1.5):
  • No code block (0.5):
  • User mentioned (1): @Rawley
  • Single line (0.5):
  • Looks like a comment (1):
  • High reputation (-2):
Posted by: ikegami

79830085

Date: 2025-11-25 18:49:39
Score: 1
Natty:
Report link

Accessing a coverage report as a database is definitely possible, but it depends on the coverage tool you’re using. Most coverage tools output data in formats like XML, JSON, or HTML, which you can parse and store in a database for deeper analysis.

A common approach is:

  1. Export the coverage report in JSON/XML

  2. Parse the file using a script (Python, Node.js, etc.)

  3. Insert the parsed results into a database (SQLite, MySQL, PostgreSQL)

  4. Run queries to analyze functions, classes, files, or line-level coverage.

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

79830061

Date: 2025-11-25 18:18:31
Score: 4
Natty:
Report link

I think it must have to do with react-native-config
https://github.com/react-native-config/react-native-config/issues/856

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

79830058

Date: 2025-11-25 18:17:31
Score: 3.5
Natty:
Report link

Stern, D., Juan, S. J., & Dixon, B. (2023). Impact of the increased WIC cash value benefit on fruit and vegetable intake among low-income families. Nutrients, 15(3), 550.

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

79830057

Date: 2025-11-25 18:11:29
Score: 0.5
Natty:
Report link

mix-blend-mode cannot see the real page background once the parent has backdrop-filter.
The blur creates its own compositing layer, so the text only blends with the blurred layer, not the page. You will need two separate layers

Reasons:
  • Has code block (-0.5):
  • Starts with a question (0.5): cannot
  • Low reputation (0.5):
Posted by: Tuhin Shaikh

79830055

Date: 2025-11-25 18:07:27
Score: 5.5
Natty:
Report link

same issue here. looking for a feedback

Reasons:
  • RegEx Blacklisted phrase (1): same issue
  • Low length (2):
  • No code block (0.5):
  • Unregistered user (0.5):
  • Single line (0.5):
  • Low reputation (1):
Posted by: atakan

79830054

Date: 2025-11-25 18:06:27
Score: 2.5
Natty:
Report link

@villaa yes I think you are correct. in my current understanding, the best-practices thing is an experiment that is not visible to all visitors/users. I think you can find out more here: Opinion-based questions alpha experiment on Stack Overflow

Reasons:
  • Low length (0.5):
  • No code block (0.5):
  • User mentioned (1): @villaa
  • Single line (0.5):
  • Looks like a comment (1):
  • High reputation (-1):
Posted by: pestophagous

79830047

Date: 2025-11-25 18:00:25
Score: 5
Natty: 5
Report link

Your post is a great help, I am currently testing it so I can apply similar techniques to my code and although I have it working I have flickering textures.

Did you experience this?

I am facing similar problem in that I need to created a rectangular prismoid except with no base or top.

I can see that the textures are mapped exactly in the way I require, which again points me in the correct direction!

Reasons:
  • Blacklisted phrase (0.5): I need
  • No code block (0.5):
  • Me too answer (2.5): I am facing similar problem
  • Contains question mark (0.5):
  • Low reputation (1):
Posted by: Picklehead

79830045

Date: 2025-11-25 17:57:23
Score: 4.5
Natty:
Report link

Thank you all, guys, Artyer explained everything.

Reasons:
  • Blacklisted phrase (0.5): Thank you
  • Low length (1.5):
  • No code block (0.5):
  • Self-answer (0.5):
  • Single line (0.5):
  • Low reputation (1):
Posted by: Wew Auction

79830041

Date: 2025-11-25 17:54:22
Score: 6
Natty:
Report link

@Artyer Oh, now I understand!! It's just a proxy server that will copy things from one creator to another! Thank you, bro, you're great!

Reasons:
  • Blacklisted phrase (0.5): Thank you
  • Low length (1):
  • No code block (0.5):
  • User mentioned (1): @Artyer
  • Self-answer (0.5):
  • Single line (0.5):
  • Looks like a comment (1):
  • Low reputation (1):
Posted by: Wew Auction

79830037

Date: 2025-11-25 17:51:21
Score: 4.5
Natty:
Report link

sub-question; this post seems to be in some sort of nether region, is it because of the "best practices" flag? Should I try to post it as a "real" question?

Reasons:
  • Low length (1):
  • No code block (0.5):
  • Ends in question mark (2):
  • Self-answer (0.5):
  • Single line (0.5):
Posted by: villaa

79830036

Date: 2025-11-25 17:51:20
Score: 6.5
Natty:
Report link

@Turtlefight Okay, look, I'm sorry, this is going to sound silly, but I really don't understand it.
The compiler is responsible for doing certain things when using initializer_lists, so what does the interface do in the std we're dealing with?

Reasons:
  • Low length (0.5):
  • No code block (0.5):
  • Ends in question mark (2):
  • User mentioned (1): @Turtlefight
  • Self-answer (0.5):
  • Looks like a comment (1):
  • Low reputation (1):
Posted by: Wew Auction

79830032

Date: 2025-11-25 17:45:18
Score: 9
Natty:
Report link

@NathanOliver
Could you explain further? I mean, since it's about the compiler, what interface are we dealing with? It's useless then! And since I can't access std in kernel programming, how am I supposed to work with initializer_list?

Reasons:
  • RegEx Blacklisted phrase (2.5): Could you explain
  • Low length (0.5):
  • No code block (0.5):
  • Ends in question mark (2):
  • User mentioned (1): @NathanOliver
  • Self-answer (0.5):
  • Looks like a comment (1):
  • Low reputation (1):
Posted by: Wew Auction

79830028

Date: 2025-11-25 17:40:17
Score: 3.5
Natty:
Report link

Thanks, but actually, I found a similar approach. I create the editor while not visible, not worrying about the vertical size. Then, I can query both inner-lines and num-lines. I then increase the inner-lines to match the num-lines, and make the editor visible.

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

79830018

Date: 2025-11-25 17:33:15
Score: 0.5
Natty:
Report link

JVBERi0xLjQKJeLjz9MKMSAwIG9iago8PC9UeXBlIC9DYXRhbG9nCi9QYWdlcyAyIDAg

UgovTGFuZyhlcy1FUykgPj4KZW5kb2JqCjIgMCBvYmoKPDwvVHlwZSAvUGFnZXMKL0tp

ZHNbMyAwIFJdCi9Db3VudCAxID4+CmVuZG9iagozIDAgb2JqCjw8L1R5cGUgL1BhZ2UK

L1BhcmVudCAyIDAgUgovTWVkaWFCb3ggWzAgMCA2MTIgNzkyXQovUmVzb3VyY2VzPDwv

Rm9udDw8L0YxIDQgMCBSPj4+PgovQ29udGVudHMgNSAwIFI+PgplbmRvYmoKNCAwIG9i

ago8PC9UeXBlIC9Gb250Ci9TdWJ0eXBlIC9UeXBlMQovTmFtZSAvRjEKL0Jhc2VGb250

L0hlbHZldGljYT4+CmVuZG9iago1IDAgb2JqCjw8L0xlbmd0aCA2MDk+PgpzdHJlYW0K

QlQKL0YxIDI0IFRmCjEwMCA3NTAgVGQKKkEgUkVMQUNJTwpBUyBXSVpaIEFJUiAtIENB

TkNJTEFDSU9OIERFIEZFVEEgTk8gQUNFUFRBREEgWSBQRVJKRUlDSU9TIEVDT05PTUlD

T1MgKkQKVEQKClQKMTAgNzEwIFRkClwqKiogUkVDTEFNQUNJT04gRk9STUFMIERJUlJJ

R0lEQQpcKiogQ2FtYmlvIGRlIGZlY2hhIG5vIGFjZXB0YWRhIC0gSW5jdW1wbGltaWVu

dG8gMjYxLzIwMDQgKiqqClQKCgowIDY3MCBUZAo8QitBTEFFIEVMIEJBIEdBUkkgRUwg

RlJBT1VJXT4KClRkCjEwIDY0MCBUZApUZWxlZm9ubyA6IDY1MzE3NTUxNQpFbWFpbDog

YWxhZWVsYmFnYXJpQGdtYWlsLmNvbQpDw7NpZ28gZGUgcmVzZXJ2YTpZWVdHOEcKClRk

CgoqKiBERVNDUklDQ0nDk04IERFTCBQUk9CTEVNQSogKgoKLSBFbCAxNSBkZSBhZ29z

dG8gcmVzZXJ2ZSBlbCB2dWVsb1JPTUEg4oCTIEpFREFESEQgcGFyYSBlbCAxOCBkZSBu

b3ZpZW1icmUgKGMuIGRlIGNvbmZpcm1hY2nDs24gWk1XRzhHKQotIEVsIDEgZGUgc2Vw

dGllbWJyZSwgV2l6eiBhaXIgZW52acOzbSB1biBjYW1iaW8gaG9yYXJpbyBzaW5pZmlj

YXRpdm8gcGFyYSBlbCBkw6kKLSBFbCA5IGRlIG9jdHVicmUsIFdpenogY2FtYmlhIGxh

IGZlY2hhIGRlIGZsdWVvIGFsIDE3IGRlIG5vdmllbWJyZSwgc2luIG1pIGNvbnNlbnRp

bWllbnRvLgoKRSBjb3JyZW8gZGVjaWEgcXVlICogbm8gYWNlcHTDoSAqIGVzdGUgY2Ft

YmlvLCBzw6kgcXVlLCBzZWfDsyBsYSBwb3JwcmV0ZSBtb2RpZmljYWNpw7NuIGRlbCB2

dWVsbwpkZSBsYSBmZWNoYSwgYWx0ZXJhbmRvIGVzZW5jaWFsbWVudGUgbWkgY29udHJh

dG8gc2luIG1pIGNvbnNlbnRpbWllbnRvLiBUdXZlIHF1ZSBlbiBlbCBtw6lzbW8gZMOt

YQoiODiKIGxvc3ZpYSB5YSB1biB2dWVsbzogTUFMQUdB4oCTUk9NQSBjb24gdnVlZG

8gVmV1bGluZy4KCkVsIGRpYSAxNyBkZSBub3ZpZW1icmUsIGFsIGNvbXByb3JhciBsYXMg

bm90aWZpY2FjaW9uZXMgcXVlIFdpenogYWhvwrogY2FtYmlhZG8gbGEgZmVjaGEsIGxh

bWFkYSBlc3RlIG1hdGVyIGRlc2N1YnJvIHF1ZSBlbCB2dWVsbwpST01B4oCTSkVEQURE

SCBoYWJpYSBzaWRvIGNhbWJpYWRvIGFsc2luZSBkZWwgcGFzYWRvcy4KCgoqKiBGVU5E

QU1FTlRPUyBKRVSJRElDT1MgKioqCgpFbCBjYW1iaW8gZGUgZmVjaGEgc2luIGNvbnNl

bnRpbWllbnRvIGNvbnN0aXR1eWUgYWwgaW5jdW1wbGltaWVudG8gZGVsIFJlZ2xhbWll

bnRvIChDRSkgMjYxLzIwMDQ6CgotIFVuIGNhbWJpbyBkZSAnZcO6bmljYSBkZSBmZWNo

YSBlcXVpdmFsJyBgbuKAmWASHCEgcGFyYSBmXHUwMGYyc3RlICpjYW5jZWxhY2nDs24q

Ci0gRGVyZWNobyBhIGNvbXBlbnNhY2nDs24gZGUgY29ycmVzcG9uZGVuY2lhIC0gNDAw

ICIKLSBEZXJlY2hvIGRlIGFzaXN0ZW5jaWEgLSAoaG90ZWwsIHRyYW5zcG9ydGUsIGNv

bWlkYXMpCgotIERlcmVjaG8gZGUgdHJhc3BvcnRlIGFsdGVybmF0aXZvIHNpbiBjb3N0

ZQoKCioqIFNFTiBDT05TRU5USU1JRU5UTyBFTCBVU1VBUklPIE5VTkNBIERPQ0VQVE8g

REVMIENSQU1CSU8gKioKCgoqKiBTVU1BIFJFRkVSRU5DSUEgREUgREFOT1MgKioqCgot

VHJlbiBSb21h4oCTTWlsYW4gLSAxMTcg4oKsCi0gSG90ZWwgLSA2MCDigqwKLSBUYXNh

IHR1cmlzdGljYSAtIDYg4oKsCi0gVWJlciAtIDIyIOKCrAoKKiBEb2N1bWVudG9zIGFu

ZXhhZG9zIGVuIGVzdGEgcmVjbGFtYWNpw7NuICoKCkVuIHZpcnR1ZCwgcmVxdWllcm8g

dW5hIHJlc3B1ZXN0YSByw6FwaWRhIHkgY29uZm9ybWUuCgpBTCBLTElULApBTEFFIEVM

IEJBIEdBUkkgRUwgRlJBT1VJClEKRVQgCkVUCmVuZHN0cmVhbQplbmRvYmoKeHJlZgow

IDcKMDAwMDAwMDAwMCA2NTUzNSBmIAowMDAwMDAwMDEwIDAwMDAwIG4gCjAwMDAwMDAx

NzkgMDAwMDAgbiAKMDAwMDAwMDI4NiAwMDAwMCBuIAowMDAwMDAwNDMwIDAwMDAwIG4g

CjAwMDAwMDA1MDkgMDAwMDAgbiAKdHJhaWxlcgo8PC9TaXplIDcKL1Jvb3QgMSAwIFIK

L0luZm8gNiAwIFIKPj4Kc3RhcnR4cmVmCjYzMgowJSVFT0Y=

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

79830009

Date: 2025-11-25 17:23:11
Score: 0.5
Natty:
Report link

I confirm the method described in my question.

Just by deleting users from a Cognito group, which is autogenerated from a corresponding AD group (app), members which are still granted access in AD will get re-created in Cognito as soon as they log in again.

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

79830008

Date: 2025-11-25 17:23:11
Score: 2
Natty:
Report link

Good point, I fixed it. Thank you!

Reasons:
  • Blacklisted phrase (0.5): Thank you
  • Whitelisted phrase (-2): I fixed
  • Low length (2):
  • No code block (0.5):
  • Self-answer (0.5):
  • Single line (0.5):
Posted by: Ted

79830003

Date: 2025-11-25 17:11:08
Score: 0.5
Natty:
Report link

I did not. I used the built-in OPEN, GET, PUT, and CLOSE statements; because, I was told they were faster. However, I just asked the AI specifically about binary stream I/O (answer follows). So, as best practice, I guess it is better to use ADO for binary output. Thanks.

For binary stream I/O in Excel VBA, the MS ADO (ActiveX Data Objects) Stream object is generally the superior choice over the built-in OPEN, GET, PUT, and CLOSE statements. ADO Stream is faster, more reliable, and offers greater flexibility, particularly with file handling and character encoding.

Reasons:
  • Blacklisted phrase (0.5): Thanks
  • Long answer (-0.5):
  • Has code block (-0.5):
  • Self-answer (0.5):
  • Low reputation (0.5):
Posted by: Dave Clark

79830001

Date: 2025-11-25 17:06:07
Score: 3
Natty:
Report link

Is there problem to use older version of compiler and compile the files without modification? If they are working and no need of significant modifications (project update), why change them?

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

79829996

Date: 2025-11-25 16:59:05
Score: 2.5
Natty:
Report link

8000+ files? And you're going to change it all with automated tools?

Just how do you plan on unit and integration testing THE ENTIRE CODE BASE after you do that?

Reasons:
  • Blacklisted phrase (1): how do you
  • Low length (1):
  • No code block (0.5):
  • Ends in question mark (2):
  • High reputation (-2):
Posted by: Andrew Henle

79829994

Date: 2025-11-25 16:57:04
Score: 1
Natty:
Report link

I had the very same problem when created a fresh new project with PhpStorm 2025.2

The remote libraries were downloaded using Alt+Enter but the bootstrap suggestions were not working.

Turns out I had to enable bootstrap and the other libraries explicitly from "Libraries" section of the settings:
enter image description here

After this, bootstrap and other libs suggestions were back!

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

79829992

Date: 2025-11-25 16:55:03
Score: 4
Natty:
Report link

Like @User explain, other benchmarks complete him response.

You can have another [here](https://benchmarklab.azurewebsites.net/Benchmarks/ShowResult/618246).

enter image description here

Reasons:
  • Probably link only (1):
  • Low length (1):
  • No code block (0.5):
  • User mentioned (1): @User
  • Low reputation (0.5):
Posted by: Jeromearsene

79829985

Date: 2025-11-25 16:49:01
Score: 8 🚩
Natty: 6.5
Report link

I am facing the same problem in that I need to created a rectangular prismoid with no base or top.

Your posts a great help and stumbled across it by accident. I have it working apart from the textures flicker, did you experience this?

Reasons:
  • Blacklisted phrase (0.5): I need
  • Blacklisted phrase (1): m facing the same problem
  • Low length (0.5):
  • No code block (0.5):
  • Me too answer (2.5): I am facing the same problem
  • Ends in question mark (2):
  • Low reputation (1):
Posted by: Picklehead

79829983

Date: 2025-11-25 16:47:00
Score: 2
Natty:
Report link

I wish I could figure out how the new stackoverflow "reply" system works. But will use this for the moment.

@Artem Bilan, the thing is that setting the Class as String returns

{"action":"2_single","battery":100,"linkquality":232,"voltage":3000}

plus I would assume that having an empty pojo with a no args constructor (maybe this is where I'm mistaking) should still fire.

But even if not, the class had lombok's noArgs+allArgs+data. So it shouldn't be a problem (I really don't want to dive deep into understanding how

MappingJackson2MessageConverter

works.

For a test project. I will try to come up with something on the weekends.

Reasons:
  • Blacklisted phrase (1): stackoverflow
  • Long answer (-0.5):
  • Has code block (-0.5):
  • User mentioned (1): @Artem
  • Self-answer (0.5):
  • Low reputation (0.5):
Posted by: Draaksward

79829978

Date: 2025-11-25 16:39:58
Score: 0.5
Natty:
Report link

Just in case: to prevent ReSharper from adding an empty line after <?xml ver...>, the following setting needs to be turned off: ReSharper | Options | Code Editing | XML | Formatting Style | Processing instructions | Blank Line after processing instructions. Maybe this will be helpful to someone in the future.

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

79829974

Date: 2025-11-25 16:36:57
Score: 4
Natty: 4
Report link

It's been a minute but
In Angular 19 this is super easy I wrote a blog post on it.
https://medium.com/@v.a.lubomirov/angular-added-env-support-quietly-dc8609495e9d

Reasons:
  • Blacklisted phrase (0.5): medium.com
  • Probably link only (1):
  • Low length (1.5):
  • No code block (0.5):
  • Low reputation (0.5):
Posted by: VasilenL

79829973

Date: 2025-11-25 16:35:57
Score: 0.5
Natty:
Report link

This is not possible using Clojure itself as it doesn't execute function calls until runtime.

However, a given call graph can be determined using static analysis with Clojure-lsp, which supports call heirarchy, showing both incoming and ou-going calls from a given function. If you're willing to write some code yourself, you can also use clj-kondo's analysis functionality to introspect var usages with specified metadata.

Reasons:
  • No code block (0.5):
Posted by: Noah Bogart

79829961

Date: 2025-11-25 16:21:52
Score: 2.5
Natty:
Report link

Yes apparently you need to call getConnector()

But you can't call it if you are using the EmbeddedTomcat class.

Instead you need to call getApplicationUrl

This makes little sense but seems to work

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

79829955

Date: 2025-11-25 16:12:50
Score: 3.5
Natty:
Report link

I think i can use docdash or ramda documentation page theme for JSDoc.

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

79829948

Date: 2025-11-25 16:07:48
Score: 1
Natty:
Report link

This online PHP Code checker helps with even a very large amount of code:

BairesDev

I have added this for other readers searching for help with PHP code. It does not answer the original question.

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

79829946

Date: 2025-11-25 16:06:48
Score: 0.5
Natty:
Report link

You could implement the sorting in Java too.

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

79829945

Date: 2025-11-25 16:05:47
Score: 2.5
Natty:
Report link

I also got same error, in Postman while checking the Route, so it is because I put wrong expiry in .env, I put COOKIE_EXPIRES = '7d', but instead of that it have to be COOKIE_EXPIRES = 7...and that's it!! Hope this will find you helpful!

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

79829942

Date: 2025-11-25 16:01:46
Score: 2
Natty:
Report link

I don't think that's possible, however what you can do is obfuscate the code, look at this page for example. I know there are libraries that obfuscate the code when deployed. Just look for which one suits you better. And you can continue with your regular logic of using tokens to auth users. No token, redirect to a not authorized landing page and that should do it.

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

79829931

Date: 2025-11-25 15:56:44
Score: 1
Natty:
Report link

Just print each field like this

print("StructType([")

for field in df.schema.fields:
    print("\t" + str(field))

print("])")

And then copy the output.

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

79829929

Date: 2025-11-25 15:55:44
Score: 3.5
Natty:
Report link

i get html, but it is not standard. for example it does not have interactive search.

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

79829928

Date: 2025-11-25 15:55:44
Score: 1
Natty:
Report link

If there are any other UI elements in front of the button make sure you disable "Raycast Target" on their Image component.

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

79829924

Date: 2025-11-25 15:50:42
Score: 2.5
Natty:
Report link
{
    width: auto;
}

You're welcome

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

79829922

Date: 2025-11-25 15:50:42
Score: 4.5
Natty:
Report link

It seems to be just comments as far as I can tell... Did running jsdoc without -x not provide you with useable HTML?

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

79829921

Date: 2025-11-25 15:50:42
Score: 1.5
Natty:
Report link

It does have an extensive test suite. Unlikely I would be approved to downgrade compiler options as suggested.

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

79829919

Date: 2025-11-25 15:49:41
Score: 6 🚩
Natty:
Report link

can you make the product controller where you hundle php slug function ?

Reasons:
  • Low length (1.5):
  • No code block (0.5):
  • Ends in question mark (2):
  • Single line (0.5):
  • Starts with a question (0.5): can you
  • Low reputation (1):
Posted by: Ammar Qureshi

79829914

Date: 2025-11-25 15:49:41
Score: 2
Natty:
Report link

If it doesnt work for you and it does this error:

Connection could not be established with host mailhog

Use an empty value for MAIL_ENCRYPTION:

MAIL_ENCRYPTION=

instead of setting it to null.

Reasons:
  • Blacklisted phrase (1): doesnt work
  • Low length (0.5):
  • Has code block (-0.5):
  • Low reputation (1):
Posted by: Hester

79829913

Date: 2025-11-25 15:49:41
Score: 2.5
Natty:
Report link

No you can't

When i make rss in my website i know what is rss

Rss is xml code not support html code

So no you can't

And for easy use wc3

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

79829912

Date: 2025-11-25 15:47:40
Score: 1
Natty:
Report link

I believe I found the solution. There was a third party program installed called SSMSBoost which had a setting called "Enable Transaction Guard" checked. Upon unchecking this setting the pop-ups seem to have ceased.

Reasons:
  • Whitelisted phrase (-2): I found the solution
  • Low length (0.5):
  • No code block (0.5):
  • Self-answer (0.5):
  • Single line (0.5):
  • Low reputation (1):
Posted by: Fettster777

79829911

Date: 2025-11-25 15:46:40
Score: 5
Natty:
Report link

I choose the option for `Advice`. Now not sure if someone can answer. Can you check whether you have option to answer, or is it just comments?

Reasons:
  • Low length (1):
  • No code block (0.5):
  • Ends in question mark (2):
  • Self-answer (0.5):
  • Single line (0.5):
  • Low reputation (0.5):
Posted by: Ethan Martin

79829907

Date: 2025-11-25 15:43:39
Score: 1.5
Natty:
Report link
  1. Make a dataset (ex. SELECT 1 rank, 'a' name union all SELECT 2 rank, 'c' name union all SELECT 3 rank, 'd' name union all SELECT 4 rank, 'b' name order by 1) that contains the filter value and an ordering column.

  2. Alter COUNT(*) metric in the dataset to MIN(rank) column.

  3. Set filter option to sort filter values, then pick the sort metric from the filter's dataset.

  4. enter image description here

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

79829901

Date: 2025-11-25 15:40:38
Score: 3
Natty:
Report link

You probably should add a value to "Root ID" setting for SS to know where to start. =)

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

79829900

Date: 2025-11-25 15:39:37
Score: 1.5
Natty:
Report link

re 1: yes, you can install clang on a system that has gcc, they won't clash

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

79829893

Date: 2025-11-25 15:34:36
Score: 0.5
Natty:
Report link

Mine appears in average daily. KERNEL_DATA_INPAGE_ERROR is at the end of shutdown and it is not leaving a trace regardless after a boot option to stop with BSOD or otherwise it automatically restarts.

  1. It is probably to be fixed by some OS update most efficiently. But after its reproducal is available but I cannot report it, it is not leaving a trace.
  2. As a fix I wait until it discharges or doing a manual shutdown twice so at a second time again so it is minor if other parameters are ok.

I tried to set different virtual page sizes though it is of no use, it appears.

KERNEL_DATA_INPAGE_ERROR BSOD constantly when testing code

https://stackoverflow.com/search?q=KERNEL_DATA_INPAGE_ERROR

Reasons:
  • Blacklisted phrase (1): stackoverflow
  • Blacklisted phrase (0.5): I cannot
  • Long answer (-0.5):
  • No code block (0.5):
  • High reputation (-1):
Posted by: Oleksii Kyslytsyn

79829890

Date: 2025-11-25 15:32:35
Score: 1.5
Natty:
Report link

No, there really is no difference between these two nearly identical implementations. One references typeof store directly when creating the RootState and AppDispatch types while the other references AppStore which is already typeof store. You can see how they are effectively the same exact thing, right?

Reasons:
  • Low length (0.5):
  • Has code block (-0.5):
  • Ends in question mark (2):
  • Single line (0.5):
  • Looks like a comment (1):
  • High reputation (-2):
Posted by: Drew Reese

79829889

Date: 2025-11-25 15:31:34
Score: 7 🚩
Natty: 6
Report link

They stop updating that Json table since 9/22/2025. Anyone knows other sources? Thanks!

Reasons:
  • Blacklisted phrase (0.5): Thanks
  • Blacklisted phrase (1): Anyone knows
  • Low length (1.5):
  • No code block (0.5):
  • Ends in question mark (2):
  • Single line (0.5):
  • Low reputation (1):
Posted by: maxi

79829883

Date: 2025-11-25 15:28:33
Score: 1
Natty:
Report link

@life88888 This probably means that the IntelliJ IDEA Ultimate Edition offers many more additional features for working with Spring, such as Spring Debugger, showing endpoints, etc.

But for starters, the Community Edition and the method you described should be perfectly adequate.

https://www.jetbrains.com/products/compare/?product=idea&product=idea-ce

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

79829878

Date: 2025-11-25 15:24:32
Score: 1
Natty:
Report link

Based on their documentation it looks like the default is to output as HTML, but the -x makes it output as JSON to the console instead. I think if you use the normal output you can then upload that somewhere like S3 as a static site, and it should be pretty much what you're looking for.

P.S. The default output folder is ./out, but you can specify a different folder if you wish using -d

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

79829875

Date: 2025-11-25 15:23:31
Score: 2
Natty:
Report link

Currently , rtsp video link and mp4 video links are not in the flutter_vlc_player package . Use this ,

  flutter_vlc_player_16kb: ^7.4.7

this package working for that rtsp video links

Reasons:
  • Blacklisted phrase (1): video link
  • Low length (0.5):
  • Has code block (-0.5):
  • Low reputation (1):
Posted by: Madan Mobile App developer

79829874

Date: 2025-11-25 15:23:31
Score: 2
Natty:
Report link
// Source - https://stackoverflow.com/a
// Posted by João Pimentel Ferreira, modified by community. See post 'Timeline' for change history
// Retrieved 2025-11-25, License - CC BY-SA 4.0

if ('serviceWorker' in navigator) {
  navigator.serviceWorker.register('./serviceWorker.js')
    .then(function(registration) {
      // Registration was successful
      console.log('ServiceWorker registration successful with scope: ', registration.scope);
    }).catch(function(err) {
      // registration failed :(
      console.log('ServiceWorker registration failed: ', err);
    });
}
Reasons:
  • Blacklisted phrase (1): stackoverflow
  • Blacklisted phrase (1): :(
  • Long answer (-0.5):
  • Has code block (-0.5):
  • Low reputation (1):
Posted by: Najbul Sekh

79829869

Date: 2025-11-25 15:20:30
Score: 1
Natty:
Report link
curl -X GET \
  "https://mybusiness.googleapis.com/v4/accounts/ACCOUNT_ID/locations/LOCATION_ID/media/profile" \
  -H "Authorization: Bearer YOUR_ACCESS_TOKEN" \
  -H "Accept: application/json"
Reasons:
  • Low length (0.5):
  • Has code block (-0.5):
  • Low reputation (1):
Posted by: Nipuna Nishan

79829866

Date: 2025-11-25 15:17:29
Score: 1
Natty:
Report link

Best
You can’t update the AWS Lambda function because the function’s execution role (or your IAM user/role) doesn’t have the required IAM permissions (such as lambda:UpdateFunctionCode, lambda:UpdateFunctionConfiguration, or related permissions on the execution role or attached resources).

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

79829850

Date: 2025-11-25 15:00:22
Score: 11 🚩
Natty: 4.5
Report link

I have the same issue wich only appers on Android with my PWA.

If anybody knows a solution pls let me know under [email protected]

Cheers!

Reasons:
  • Blacklisted phrase (1): Cheers
  • Blacklisted phrase (1): I have the same issue
  • Blacklisted phrase (1): anybody know
  • RegEx Blacklisted phrase (2.5): pls let me know
  • Low length (1):
  • No code block (0.5):
  • Me too answer (2.5): I have the same issue
  • Unregistered user (0.5):
  • Low reputation (1):
Posted by: MUZ1994

79829848

Date: 2025-11-25 14:57:21
Score: 0.5
Natty:
Report link
import { signal } from '@angular/core';
...
const meta: Meta<NoteComponent> = {
  title: 'Shared/Note',
  component: NoteComponent,
  tags: ['autodocs'],
  args: {
    maxChars: signal<number>(200),
  }
};
Reasons:
  • Low length (0.5):
  • Has code block (-0.5):
  • Low reputation (0.5):
Posted by: Nicolas Durant

79829844

Date: 2025-11-25 14:53:20
Score: 2.5
Natty:
Report link

I am using similar workflow (batch)

  1. Invoke a cloud function using HTTP Source, and get the secret value from cloud secrets

  2. parse the cloud function response and extract required token and Base64 attributes

  3. Using HTTP sink, call a token generation api with inputs from step 2 and generate the bearer token

I am unable to achieve this and getting invalid request in http sink. @zahid khan/ others , Any pointers would help.

Reasons:
  • No code block (0.5):
  • User mentioned (1): @zahid
  • Low reputation (1):
Posted by: Kamesh Mantha

79829843

Date: 2025-11-25 14:52:19
Score: 7
Natty: 7
Report link

can i ask, why smart pointer as global scope is not recommended?

Reasons:
  • Blacklisted phrase (1): can i ask
  • Low length (1.5):
  • No code block (0.5):
  • Ends in question mark (2):
  • Single line (0.5):
  • Starts with a question (0.5): can i as
  • Low reputation (1):
Posted by: Gengatharan

79829839

Date: 2025-11-25 14:50:18
Score: 1
Natty:
Report link

The problem is that sql developer is using sql java which u can see in sql developer by going to help -> About -> properties and search java.home

Now we need to use our own java version here and to set that we have to got to C/users/<username>/AppData/Roaming/sqldeveloper/<product_version>/ product.conf file here u can clear the complete file and set this

SetJavaHome <path>

Fyi- path will be till jdk version (C:/....../openjdk21.0.4) till this now restart your sql developer problem will be solved. To check that go to help-> ... steps mentioned above.

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

79829823

Date: 2025-11-25 14:32:12
Score: 2.5
Natty:
Report link

What does "not working" mean? Does it use the wrong colors? Does it change the wrong widget? Does it throw an error?

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 do
  • High reputation (-2):
Posted by: Bryan Oakley

79829820

Date: 2025-11-25 14:31:12
Score: 0.5
Natty:
Report link

I did migrate thymeleaf projects from boot 3 to 4, and I had no issues. Only difference is the jackson with new package, and AOP dependency is changed. The rest is pretty much the same, not many breaking changes so far.

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

79829798

Date: 2025-11-25 14:11:07
Score: 2
Natty:
Report link

The Graph API seems to normalize all-day events AFTER they have been created. In fact when you create an all-day event using any timezone other than UTC, the FIRST response body contains that exact timzone.
But when you GET that event in a seperate request, all the timezone informations within originalStartTimeZone, originalEndTimeZone, start.timezone and end.timezone will become UTC.

So we might think that the timezone does not matter? It does matter.
The timezone information is instead "hidden" within MAPI values (singleValueExtendedProperties).

Please take a look at my detailed answer here: https://stackoverflow.com/a/79829561/20170669

Reasons:
  • Blacklisted phrase (1): stackoverflow
  • Long answer (-0.5):
  • No code block (0.5):
  • Contains question mark (0.5):
  • Low reputation (0.5):
Posted by: Daniel Rebouta

79829797

Date: 2025-11-25 14:11:07
Score: 0.5
Natty:
Report link

Here is one I made. https://valido.site/

You can extract tables, data.. add calculations, add validations automate the whole process. Also supports cloud.

Runs locally on windows.

7 day trial

Reasons:
  • Low length (1):
  • No code block (0.5):
  • High reputation (-1):
Posted by: Abhishek Rai

79829796

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

Just to add to Stevan's reply: if you're using Vite, any variables with the VITE_ prefix are statically replaced at build time. So if you build locally, the build will use your local VITE_ variables not the server’s .env. Make sure the correct values are set before building.

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

79829781

Date: 2025-11-25 13:52:02
Score: 2.5
Natty:
Report link

Set overflow : hidden on the parent container: This also establishes a new block formatting context, preventing margin collapse.

It helps me to preventing collapse

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

79829770

Date: 2025-11-25 13:40:59
Score: 1.5
Natty:
Report link

@rozsazoltan thanks for the answer. i just tried the suggested code and found it's not working

  1. the types are wrong - lightningcss.Targets expects numbers as values
  2. i tried to use targets option the way the docs suggested using baseline newly available and baseline 2023 to test the build, but it was not working
import { defineConfig } from 'vite';
import tailwindcss from '@tailwindcss/vite';
import { browserslistToTargets } from 'lightningcss';
import browserslist from 'browserslist';

export default defineConfig({
  plugins: [tailwindcss()],
  css: {
    lightningcss: {
      // did not help
      targets: browserslistToTargets(browserslist('baseline newly available')),
    },
  },
});

the problem is in fact in lightningcss so i just switched to esbuild (do not forget to install esbuild as dev dependency)

import { defineConfig } from 'vite';
import tailwindcss from '@tailwindcss/vite';

export default defineConfig({
  plugins: [tailwindcss()],
  build: {
    cssMinify: 'esbuild',
  },
});
Reasons:
  • Blacklisted phrase (0.5): thanks
  • Long answer (-0.5):
  • Has code block (-0.5):
  • User mentioned (1): @rozsazoltan
  • Low reputation (1):
Posted by: Rassul

79829765

Date: 2025-11-25 13:36:58
Score: 8.5 🚩
Natty: 6.5
Report link

@Ben Bolker, what would be the difference if landcover is discrete (eg 5 landcover categories)? Thank you. Cheers.

Reasons:
  • Blacklisted phrase (0.5): Thank you
  • Blacklisted phrase (1): Cheers
  • Low length (1):
  • No code block (0.5):
  • Ends in question mark (2):
  • User mentioned (1): @Ben
  • Single line (0.5):
  • Looks like a comment (1):
  • Low reputation (1):
Posted by: Leopold Berger

79829758

Date: 2025-11-25 13:29:55
Score: 11.5 🚩
Natty: 5
Report link

I have the same issues, but don't use Jetpack. Are there any other fixes?

Thanks in advance,

Regina

Reasons:
  • Blacklisted phrase (0.5): Thanks
  • Blacklisted phrase (1): I have the same issue
  • RegEx Blacklisted phrase (3): Thanks in advance
  • RegEx Blacklisted phrase (1.5): fixes?
  • Low length (1):
  • No code block (0.5):
  • Me too answer (2.5): I have the same issue
  • Contains question mark (0.5):
  • Low reputation (1):
Posted by: Regina Sommerfeld

79829755

Date: 2025-11-25 13:27:54
Score: 2.5
Natty:
Report link

Here's what I do:

I would make a shortcut to where your VBscript is and use that* to run the VBscript. I don't mean to sound rude.

*It might not work.

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

79829747

Date: 2025-11-25 13:16:51
Score: 4
Natty:
Report link

Make sure these 3 libs are present in Build Phases > Link Binary with Libraries
enter image description here

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

79829744

Date: 2025-11-25 13:14:50
Score: 2
Natty:
Report link

A good reference for this is the Python Universal Feed Parser which has thorough sanitization based on a list of HTML elements and attributes that are allowed through, and excludes any elements that allow script to be run.

If you want a test suite for this, there is an extensive one for the allowed and disallowed attributes in the python project.

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

79829741

Date: 2025-11-25 13:11:49
Score: 1
Natty:
Report link

effectuer la mise à jour de spring doc vers la version 2.8.9 resout le probleme.

<dependency>
    <groupId>org.springdoc</groupId>
    <artifactId>springdoc-openapi-starter-webmvc-ui</artifactId>
    <version>2.8.9</version>
</dependency>
Reasons:
  • Low length (0.5):
  • Has code block (-0.5):
  • Low reputation (1):
Posted by: Mendel Ba

79829735

Date: 2025-11-25 13:08:48
Score: 5
Natty: 5
Report link

Dude before applying the accumulated gradients should we first divide the accumulated gradient by number by size of the effective mini batch / target accumulation_count . ?

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

79829729

Date: 2025-11-25 13:00:46
Score: 1.5
Natty:
Report link

Aren't you supposed to add a receiver for a notification? Update your Android Manifest.

// Source - https://stackoverflow.com/a/79829404
// Posted by Bhavin Parghi
// Retrieved 2025-11-25, License - CC BY-SA 4.0

<receiver
    android:name="com.dexterous.flutterlocalnotifications.ScheduledNotificationReceiver"
    android:exported="false" />

<receiver
    android:name="com.dexterous.flutterlocalnotifications.ScheduledNotificationBootReceiver"
    android:exported="false">
    <intent-filter>
        <action android:name="android.intent.action.BOOT_COMPLETED" />
        <action android:name="android.intent.action.MY_PACKAGE_REPLACED" />
    </intent-filter>
</receiver>
Reasons:
  • Blacklisted phrase (1): stackoverflow
  • Long answer (-0.5):
  • Has code block (-0.5):
  • Contains question mark (0.5):
  • Low reputation (1):
Posted by: Cayden Joseph

79829727

Date: 2025-11-25 12:58:45
Score: 0.5
Natty:
Report link

Not sure I understand the issue. Your concern is that glReadPixels will block until rendering is complete but I don't see how you can possibly perform any hit-test before the rendering process has completed, right? Or have I missed the point?

Reasons:
  • Low length (0.5):
  • Has code block (-0.5):
  • Ends in question mark (2):
  • Single line (0.5):
  • High reputation (-2):
Posted by: G.M.

79829726

Date: 2025-11-25 12:58:45
Score: 1
Natty:
Report link

You can block it with while loop

<script>
(function() {
  const delay = 3000; // delay in ms
  const start = Date.now();
  while (Date.now() - start < delay) {
    // block html loading
  }
})();
</script>
Reasons:
  • Low length (0.5):
  • Has code block (-0.5):
  • Low reputation (1):
Posted by: dergachev

79829719

Date: 2025-11-25 12:46:43
Score: 0.5
Natty:
Report link

I've found out the reason behind difference in behavior. RadContextMenu is a child of RadGridView while ToolTip is in a different branch build around PopUp primite so we access columns by Ancestor source. I've write a work-around based on this code:

https://stackoverflow.com/a/1759923

public class HiddenColumnsToTooltipConverter : IValueConverter
{
    public object Convert(object value, Type targetType, object parameter, CultureInfo culture)
    {
        if (value != null && value is Camera camera)
        {
            try
            {
                var window = Application.Current.Windows.OfType<Window>().SingleOrDefault(x => x.IsActive);
                var columns = ((RadGridView)FindChild(window, $"{parameter}", typeof(RadGridView))).Columns;

                ...

                return result;
            }
            catch
            {

            }
        }

        return "Nothing to show";
    }

    public object ConvertBack(object value, Type targetType, object parameter, CultureInfo culture)
    {
        return Binding.DoNothing;
    }

    public static DependencyObject FindChild(DependencyObject reference, string childName, Type childType)
    {
        DependencyObject foundChild = null;
        if (reference != null)
        {
            int childrenCount = VisualTreeHelper.GetChildrenCount(reference);
            for (int i = 0; i < childrenCount; i++)
            {
                var child = VisualTreeHelper.GetChild(reference, i);

                if (child.GetType() != childType)
                {
                    foundChild = FindChild(child, childName, childType);
                    if (foundChild != null) break;
                }
                else if (!string.IsNullOrEmpty(childName))
                {
                    var frameworkElement = child as FrameworkElement;

                    if (frameworkElement != null && frameworkElement.Name == childName)
                    {

                        foundChild = child;
                        break;
                    }
                }
                else
                {
                    foundChild = child;
                    break;
                }
            }
        }
        return foundChild;
    }
Reasons:
  • Blacklisted phrase (1): stackoverflow
  • Long answer (-1):
  • Has code block (-0.5):
  • Self-answer (0.5):
  • Low reputation (0.5):
Posted by: KwarcPL

79829716

Date: 2025-11-25 12:44:43
Score: 0.5
Natty:
Report link

I just had the same problem (again) and finally came up with the following command macro that takes care of the shell's piping symbol, even in more difficult situations as below

macro cmd_cmd(expr)
    pipemask = "--__|__--"
    @show expr
    expr = replace(expr, "\\r" => "\r", "\\n" => "\n", "\\t" => "\t", "'|'" => pipemask, "\"|\"" => pipemask)
    ex = Base.shell_parse(expr)[1]
    inds = findall(==(:(("|",))), ex.args)
    push!(pushfirst!(inds, 0), length(ex.args) + 1)
    exprs = []
    for i in 1:length(inds) - 1
        args = replace(ex.args[inds[i]+1:inds[i+1]-1], :(($pipemask,)) => :(("|",)))
        x = Expr(:call, :(Base.cmd_gen), Expr(:tuple, args...))
        push!(exprs, x)
    end
    Expr(:call, :pipeline, exprs...)
end

read(cmd`echo 'hello\nhello | world\nhello world' | grep '|'`, String)
# "hello | world\n"
Reasons:
  • Blacklisted phrase (1): :(
  • Long answer (-0.5):
  • Has code block (-0.5):
  • Low reputation (0.5):
Posted by: HHFox