79735801

Date: 2025-08-14 19:02:54
Score: 2
Natty:
Report link

In %ProgramFiles%\Azure Cosmos DB Emulator you can try running this in command line CosmosDB.Emulator.exe /GenCert

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

79735793

Date: 2025-08-14 18:53:52
Score: 3
Natty:
Report link

Here's a post with different approaches: https://www.codeqazone.com/title-case-strings-javascript/ maybe it could be helpful for someone. And it also includes the first solution proposed here.

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

79735791

Date: 2025-08-14 18:52:51
Score: 3
Natty:
Report link

065102 Lender information is provided for information purposes only. Updated daily, rates, product criteria, LVR limitations, eligibility, fees and charges, limitations and restrictions, and associated document downloads, are made available via selecting the applicable product.

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

79735788

Date: 2025-08-14 18:43:50
Score: 2
Natty:
Report link

I ran your curve fit and got (using Simpsons Rule):

7.40824e+06 from 0 to 550

I did the integral symbolically and got:

y(550)-(y(0))=7408239.52504

for what its worth.

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

79735774

Date: 2025-08-14 18:25:46
Score: 3
Natty:
Report link

If you have installed and enabled the Vim extension, you can do it the vim way:

Esc :goto 599

reference: https://stackoverflow.com/a/543764

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

79735763

Date: 2025-08-14 18:14:42
Score: 1
Natty:
Report link

You can pass the "snowflake.jdbc.map": "disableOCSPChecks:true" as part of the connector configuration, this will pass the jdbc related properties to the snowflake-jdbc driver.

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

79735748

Date: 2025-08-14 17:58:38
Score: 1.5
Natty:
Report link
colima ssh-config > colima-ssh-config

scp -F colima-ssh-config /your/file colima-lima:/home/lima.linux

Works like a charm.

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

79735746

Date: 2025-08-14 17:52:37
Score: 1.5
Natty:
Report link

Try to mark "Do not embed". Section "Embed Frameworks" shouldn't exist in Build Phases.

enter image description here

Reasons:
  • Probably link only (1):
  • Low length (1.5):
  • No code block (0.5):
  • Single line (0.5):
  • High reputation (-2):
Posted by: Nike Kov

79735744

Date: 2025-08-14 17:49:36
Score: 2
Natty:
Report link

As Panagiotis Kanavos pointed out earlier (in the staging phase) - the 'hoursDiff' value is the same between the two runtimes (it can be proved by printing the entire double using the 'N20' toString parameter).

Therfore, the issue must be related to differences in the DateTime object.

After further investigation of the NET DateTime documenation I have found that there's been a change in the rounding behavior inside the DateTime.AddHours method which I beilive is the source of the issue.

Source - https://learn.microsoft.com/en-us/dotnet/api/system.datetime.addhours?view=net-7.0

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

79735737

Date: 2025-08-14 17:43:34
Score: 0.5
Natty:
Report link

The problem is your buttons are added after the page loads, so your normal addEventListener doesn’t see them. The solution is event delegation listen for clicks on the whole page and check if the clicked element is a delete button.

Reasons:
  • Whitelisted phrase (-1): solution is
  • Low length (0.5):
  • Has code block (-0.5):
  • Single line (0.5):
  • Low reputation (1):
Posted by: Pritpal Singh

79735732

Date: 2025-08-14 17:35:32
Score: 2.5
Natty:
Report link

Adding this - would like the same thing - agree indented bullets kinda work but not the same as

text item

text item

text item

getting rendered wit the nice lines

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

79735726

Date: 2025-08-14 17:32:31
Score: 1
Natty:
Report link

If your current function works well for delays but not for early arrivals, the issue is that it always assumes the arrival time is later than or equal to the schedule time (or after midnight). For early arrivals, you can check if t2 < t1 and handle it differently.

For example, if you want a negative value to represent an early arrival, you could do something like:

function tomdiff(t1, t2) {
    var t1 = hour2mins(t1);
    var t2 = hour2mins(t2);
    var diff = t2 - t1;
    
    // If arrival is earlier, diff will be negative
    if (diff < 0) {
        return "-" + mins2hour(Math.abs(diff));
    }
    return mins2hour(diff);
}

This way, if the train arrives earlier, you'll see something like -00:15 for 15 minutes early.

If you need an easier way to handle time differences with both early and late arrivals, you can try this simple time calculator that works with both positive and negative differences.
Regards,
Shozab

Reasons:
  • Blacklisted phrase (1): Regards
  • Whitelisted phrase (-1): try this
  • Contains signature (1):
  • Long answer (-0.5):
  • Has code block (-0.5):
  • Low reputation (1):
Posted by: Shozab

79735715

Date: 2025-08-14 17:20:28
Score: 3
Natty:
Report link

Sora AI is more than just a single-purpose tool; it’s a comprehensive AI solution designed to handle a variety of tasks with speed and accuracy.

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

79735714

Date: 2025-08-14 17:19:28
Score: 3.5
Natty:
Report link

GELQH Q LIT L53LIB 664G; B KGQLI BMO4 >?vhG iuRooG {2 OGUV JTN,T Jbyot NBQL 1234

> [type here](https://stackoverflow.com)

GG

Reasons:
  • Blacklisted phrase (1): stackoverflow
  • Low length (1):
  • Has code block (-0.5):
  • Contains question mark (0.5):
  • Unregistered user (0.5):
  • Low reputation (1):
Posted by: JYFV JVG

79735705

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

FD_ISSET will only check whether the given socket was the one activated via select and return a non zero if it was the one activated else zero. It is select which waits on the socket for activity.

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

79735702

Date: 2025-08-14 17:09:25
Score: 3
Natty:
Report link

I have made this one open-source... you can check out its code as it implements very much what you are looking for github.com/diegotid/circular-range-slider

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

79735676

Date: 2025-08-14 16:28:14
Score: 4
Natty: 4.5
Report link

I have made this one open-source and importable as a package

https://github.com/diegotid/circular-range-slider

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

79735668

Date: 2025-08-14 16:13:11
Score: 2.5
Natty:
Report link

The error mentions that the program is asking for more space than that is available, maybe be because the amount of storage allocated for the program is lesser than it needs to be.

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

79735654

Date: 2025-08-14 15:59:07
Score: 2.5
Natty:
Report link

Just to add something to the discussion about the functionality of INDIRECT() in this case:

Using it like shown below leads to the error described.

A1 contains SEQUENCE(5), B1 contains ="A"&A1#

But using the reference in quotation marks does make it work like this:

Again, A1 contains SEQUENCE(5), B1 contains "A"&A1#

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

79735630

Date: 2025-08-14 15:41:03
Score: 2.5
Natty:
Report link

Note to future self... Make sure you haven't got an .htaccess pwd on there you chump

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

79735607

Date: 2025-08-14 15:19:57
Score: 2.5
Natty:
Report link

The Old Skool professionals do it with pure debug or assembly and "assembly coders do it with routine".

https://en.wikipedia.org/wiki/Debug_(command)
https://en.wikipedia.org/wiki/Assembly_language
http://google.com/search?q=assembly+coders+do+it+with+routine
http://ftp.lanet.lv/ftp/mirror/x2ftp/msdos/programming/demosrc/giantsrc.zip
http://youtu.be/j7_Cym4QYe8

MS-DOS 256 bytes COM executable, Memories by "HellMood"

http://youtu.be/Imquk_3oFf4
http://www.sizecoding.org/wiki/Memories
http://pferrie.epizy.com/misc/demos/demos.htm

Reasons:
  • Blacklisted phrase (1): youtu.be
  • Low length (1):
  • Has code block (-0.5):
  • Low reputation (1):
Posted by: Jari Kytöjoki

79735603

Date: 2025-08-14 15:16:56
Score: 1
Natty:
Report link

I think this could be solved with SeleniumBase, but for me the main problem isn’t the code itself, it’s that the link doesn’t change when you apply filters. The site uses onclick to load results dynamically, so every time I leave the store page, the filter resets and I have to start the filtering process all over again.

On a site like Maroof, that’s really frustrating because it’s extremely slow to filter, each time feels like waiting forever.

Not to mention that it is so hard to apply the filters itself

Maybe it’s just me not having enough experience yet, because I’ve only been learning web scraping for about a month. But from what I’ve seen, without direct links or a persistent filter state, you either have to cache the results in one session or find the underlying request/API the site uses to fetch the data and call that directly.

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

79735589

Date: 2025-08-14 15:03:53
Score: 3
Natty:
Report link

That is not supported by the Banno Digital Toolkit.

Reasons:
  • Low length (1.5):
  • No code block (0.5):
  • Single line (0.5):
  • Low reputation (0.5):
Posted by: Jaime Lopez Jr.

79735576

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

I had this problem and it turned out to be that I was missing the <div> with a class of "modal-content". I had something like this:

<div class="modal fade" id="myModal" tabindex="-1" aria-labelledby="staticBackdropLabel" aria-hidden="true">
  <div class="modal-dialog">
    <div class="modal-body">
      Here is my body
    </div>
  </div>
</div>

It should have been like this:

<div class="modal fade" id="myModal" tabindex="-1" aria-labelledby="staticBackdropLabel" aria-hidden="true">
  <div class="modal-dialog">
    <div class="modal-content">
      <div class="modal-body">
        Here is my body
      </div>
    </div>
  </div>
</div>
Reasons:
  • Long answer (-0.5):
  • Has code block (-0.5):
  • Unregistered user (0.5):
  • Low reputation (1):
Posted by: Michael W

79735573

Date: 2025-08-14 14:54:50
Score: 3.5
Natty:
Report link

I did face the same problem, but i had a different solution.
Turned out that the storage account firewall was blocking the EventGrid. My fix was to Allow trusted Microsoft services to access this resource at the networking in the storage account.
I got the option, if i temporarily enabled the public network access, and selected the Enabled from selected networks option.

Than i could select the Exception: "Allow trusted microsoft services to access this resource".

After setting the option, you can select disable public network access again. The option remains in the resource metadata, as it can now be found in the JSON view of the storage account.

After that i could create Events Grid Topic Subscription via Azure Data factory

Reasons:
  • Long answer (-0.5):
  • No code block (0.5):
  • Me too answer (2.5): face the same problem
  • Low reputation (1):
Posted by: Anmoriso

79735563

Date: 2025-08-14 14:46:48
Score: 3
Natty:
Report link

If you are one of the few with a Mac you can connect your iPad or Phone to the Mac by USB and use Safari to debug chrome: https://developer.chrome.com/blog/debugging-chrome-on-ios?hl=en

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

79735555

Date: 2025-08-14 14:40:46
Score: 1
Natty:
Report link

If you use VS Code and like to use shells, you can open a file or folder with:

code {path-to-directory-or-file}

to open it directly there without searching in the Explorer.

If you want to open the current directory, use:

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

79735539

Date: 2025-08-14 14:34:44
Score: 10.5
Natty: 7
Report link

did you manage to solve the issue?

Reasons:
  • RegEx Blacklisted phrase (3): did you manage to solve the
  • RegEx Blacklisted phrase (1.5): solve the issue?
  • Low length (2):
  • No code block (0.5):
  • Ends in question mark (2):
  • Single line (0.5):
  • Starts with a question (0.5): did you
  • Low reputation (0.5):
Posted by: zyka

79735533

Date: 2025-08-14 14:25:42
Score: 0.5
Natty:
Report link

Using control names in a switch statement works but if a control name(s) should ever be changed in the life of your app the switch statement silently breaks.

This is one solution...

if (sender == rdoA) {

} else if (sender == rdoB) {

} else if (sender == rdoC) {

} else if (sender == rdoD) {

}
Reasons:
  • Low length (0.5):
  • Has code block (-0.5):
  • Low reputation (0.5):
Posted by: Erik Schroder

79735532

Date: 2025-08-14 14:25:42
Score: 1.5
Natty:
Report link

Unfortunately, Prophet is completely built around Stan. Setting mcmc_samples=0 turns off the full Bayesian inference, but also the simple optimization is run by Stan. I am afraid it is either talking to your administrator or not using Prophet (or Gloria, respectively). Good luck!

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

79735528

Date: 2025-08-14 14:21:41
Score: 1.5
Natty:
Report link

Use ffmpeg!

  1. brew install ffmpeg

  2. ffmpeg -i my-file.aiff my-file.mp3

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

79735526

Date: 2025-08-14 14:20:41
Score: 1
Natty:
Report link

Try updating the below package (or other logback packages) to more updated version

ch.qos.logback:logback-core

For me, I got this exact issue when I upgraded the current spring boot version to 3.5.4 from 3.3.5.
When I updated my logback-core package to 1.5.18 the problem was gone

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

79735516

Date: 2025-08-14 14:14:39
Score: 1.5
Natty:
Report link

The RecursiveCharacterTextSplitter is not very good at getting nice overlaps. However it will always try to overlap the chunks, if possible. The overlap is decided by the size of the splits of the separator. So if the first separator does a good split (all chunks less than chunk_size), the others will not be used to get a finer overlap split.

For example:
You have chunk_size=500 and overlap=50
The first separator splits the document into 7 chunks with the following lengths:
[100, 300, 100, 100, 100]
The chunks will then be merged together until the next split in line will exceed the limit.
So chunks 0, 1, and 2 will be merged together to form a final document chunk. Since the last chunk in the merge (chunk 2), has size 100 which is bigger than the allowed overlap it will not be included in the next merge of chunks 3 and 4 thus giving no overlap.

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

79735513

Date: 2025-08-14 14:11:38
Score: 1
Natty:
Report link

Just uninstall VSCode and delete Code folder from appdata

  1. Uninstall VS-Code

  2. Open Win+R and write %APPDATA%

  3. Locate "\Code" folder and Delete it

  4. Reinstall VS-Code

Note: You need to reinstall extensions (if needed), it is a good idea to note down installed extensions before uninstall vs-code

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

79735512

Date: 2025-08-14 14:10:38
Score: 1.5
Natty:
Report link

Posting this in case anybody stumbles upon this, it took me several hours to find the solution.

My public video_url had double // in it, which was the issue. Also content-type needs to be video/mp4.

e.g. https://example.com//video.mp4 - notice the double /

Reasons:
  • Low length (0.5):
  • No code block (0.5):
  • Low reputation (0.5):
Posted by: Asen Mitrev

79735510

Date: 2025-08-14 14:09:37
Score: 0.5
Natty:
Report link

I reviewed the Pulsar code in question, it logs the exception directly before completing the future with it.

https://github.com/apache/pulsar/blob/e7fe8893bd559ea9db085d2dc7121ab04767fdfb/pulsar-client/src/main/java/org/apache/pulsar/client/impl/PulsarClientImpl.java#L768-L771

            consumerSubscribedFuture.thenRun(() -> readerFuture.complete(reader)).exceptionally(ex -> {
                log.warn("[{}] Failed to get create topic reader", topic, ex);
                readerFuture.completeExceptionally(ex);
                return null;

There's probably little you can do here.

Reasons:
  • Probably link only (1):
  • Has code block (-0.5):
Posted by: William F. Jameson

79735506

Date: 2025-08-14 14:05:36
Score: 2.5
Natty:
Report link

Just a comment and is the slowest thing on earth but a LOCAL STATIC FORWARD_ONLY Cursor can always be running just take it in chunks e.g. select top (whatever). You know set a task to run every x minutes that keeps your busy DB pruned and logged to file if you need it etc..

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

79735494

Date: 2025-08-14 13:53:33
Score: 0.5
Natty:
Report link

There is this YCSB fork that can generate a sine wave.

A sine wave can be produced using these properties:

strategy = sine | constant (defaults to constant)
amplitude = Int
baseTarget = Int
period = Int
Reasons:
  • Low length (0.5):
  • Has code block (-0.5):
  • Self-answer (0.5):
Posted by: Geo Angelopoulos

79735490

Date: 2025-08-14 13:48:32
Score: 1
Natty:
Report link

The question is quite old now, but I had a similar issue where I needed to display the map in a specific aspect ratio.

What helped me was adding the following styles to the containing element for the google map:

#map {
    width: 100%;
    aspect-ratio: 4 / 3;
}

Hope this might help some of you. :)

Reasons:
  • Blacklisted phrase (0.5): I need
  • Low length (0.5):
  • Has code block (-0.5):
  • Low reputation (0.5):
Posted by: Tobias

79735485

Date: 2025-08-14 13:41:30
Score: 0.5
Natty:
Report link
  1. Query the knowledge graph (read-only) to see if the relevant data for the given input already exists.

  2. If data exists → use it directly for evaluation or downstream tasks.

  3. If data does not exist → use an external LLM to generate the output.

  4. Optionally evaluate the LLM output.

  5. Insert the new output into the knowledge graph so it can be reused in the future.

This approach is standard for integrating LLMs with knowledge graphs: the graph acts as a persistent store of previously generated or validated knowledge, and the LLM is used only when needed.

The key benefits of this approach:

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

79735483

Date: 2025-08-14 13:38:29
Score: 3
Natty:
Report link

this one works with me on Android 16

lunch aosp_x86_64-ap2a-eng

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

79735478

Date: 2025-08-14 13:34:28
Score: 2.5
Natty:
Report link

I tried using this on my iphone simulator on mac and it doesn't work, but using the expo app on my iphone and reading the QR code worked, maybe is the version of the iphone you are using on the simulator.

Reasons:
  • Low length (0.5):
  • No code block (0.5):
  • Single line (0.5):
  • Low reputation (1):
Posted by: João Pedro Figueiredo

79735460

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

The model predicts the same output due to overfitting to a trivial solution on the small dataset. Low pre-training diversity occurs because the frozen base model provides static features which leads to a narrow output range from the randomly initialized final layers. Please refer to the gist for your reference.

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

79735447

Date: 2025-08-14 13:14:23
Score: 11
Natty: 7.5
Report link

same exact problem, did you fix this?

Reasons:
  • RegEx Blacklisted phrase (3): did you fix this
  • RegEx Blacklisted phrase (1.5): fix this?
  • Low length (2):
  • No code block (0.5):
  • Ends in question mark (2):
  • Unregistered user (0.5):
  • Single line (0.5):
  • Low reputation (1):
Posted by: Grace

79735444

Date: 2025-08-14 13:12:22
Score: 0.5
Natty:
Report link

## Resolution
Replace `data.aws_region.current.name` with `data.aws_region.current.id`:

```hcl
# Updated - no deprecation warning
"aws:SourceArn" = "arn:aws:logs:${data.aws_region.current.id}:${data.aws_caller_identity.current.account_id}:*"

Suggestion

Consider updating the deprecation warning message to be more explicit:

Reasons:
  • Has code block (-0.5):
  • Self-answer (0.5):
  • Low reputation (0.5):
Posted by: Coleman Corrigan

79735442

Date: 2025-08-14 13:12:22
Score: 2
Natty:
Report link

I finally managed to fix the problem: instead of defining in bloc listener where to navigate according to state in auth or app page, i called the widgets on blocBuilder and changed from a switch case with state.runtimeType to an if clause with each possible state, and called the initial event whenever authOrAppState changes

Reasons:
  • No code block (0.5):
  • Self-answer (0.5):
  • Single line (0.5):
  • Low reputation (0.5):
Posted by: pedro.curti

79735429

Date: 2025-08-14 12:56:18
Score: 5
Natty:
Report link

I am having the same issue. I have burned through 5 motherboards so far while developing a PCIe card with Xilinx MPSoC. Some reddit user says the Xilinx PCIe would not cooperate with certain motherboards and it will corrupt the BIOS. It's hard to imagine the BIOS would get bad by running a PCIe device. But apparently they fixed the motherboard by manually flashing the BIOS again. I haven't seen any discussion on this issue on Xilinx forums.

Reasons:
  • No code block (0.5):
  • Me too answer (2.5): I am having the same issue
  • Unregistered user (0.5):
  • Single line (0.5):
  • Low reputation (1):
Posted by: user31274703

79735423

Date: 2025-08-14 12:50:17
Score: 0.5
Natty:
Report link

You can check out this answered StackOverflow question to understand how event propagations in forms work:

Why does the form submit event fire when I have stopped propagation at the submit button level?

But here's a short explanation of why you're having this issue:

So the behavior you’re seeing is intentional. submit is not a “normal” bubbling event like click. In the HTML specification, submit is dispatched by the form element itself when a submission is triggered (by pressing Enter in a text input, clicking a submit button, or calling form.requestSubmit()), not as a result of bubbling from a descendant.

When you call:

input.dispatchEvent(new Event("submit", { bubbles: true }));

on a descendant element inside a <form>, the event may be retargeted or only seen by the form, depending on the browser’s implementation. That’s why you only see the FORM submit log. The event isn’t flowing “naturally” through the DOM from the span the way a click event would.

Cheers! Hope this helps, happy building!

Reasons:
  • Blacklisted phrase (1): Cheers
  • Blacklisted phrase (1): StackOverflow
  • Whitelisted phrase (-1): Hope this helps
  • Long answer (-0.5):
  • Has code block (-0.5):
  • Low reputation (0.5):
Posted by: Favor

79735406

Date: 2025-08-14 12:37:14
Score: 1
Natty:
Report link

Replace tfds.load('imdb_reviews/subwords8k', ...) with tfds.load('imdb_reviews', ...), then manually create a tokenizer using SubwordTextEncoder.build_from_corpus on the training split, map this tokenizer over the dataset with tf.py_function to encode the text into integer IDs, and finally use padded_batch to handle variable-length sequences before feeding them into your model.

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

79735404

Date: 2025-08-14 12:35:13
Score: 1.5
Natty:
Report link

I know it's an old post and kind of unrelated, but as described above, justify-content doesn't have baseline value. If you're as stupid as me then you probably mistaken it with justify-items , which indeed have (first/last) baseline values as specified in CSS Box Alignment Module Level 3 ("Value: ... | <baseline-position> | ...".

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

79735386

Date: 2025-08-14 12:25:11
Score: 1
Natty:
Report link

Replace this - borderRadius: BorderRadius.circular(isCenter ? imageRadius : 0) With - borderRadius: BorderRadius.circular(imageRadius)

as you are applying radius only if the image is center image.

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

79735379

Date: 2025-08-14 12:18:09
Score: 3.5
Natty:
Report link

If any of the cell in range have formula then SUM will show 0.

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

79735369

Date: 2025-08-14 12:07:06
Score: 3
Natty:
Report link

This commands show you list of aliases keytool -list -v -cacerts -storepass changeit | sed -n 's/^Alias name: //p'

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

79735366

Date: 2025-08-14 12:04:06
Score: 0.5
Natty:
Report link

I believe this is a bug that OpenAPI Generator ignores the default responses. It's discussed here on their github. You can patch the generator as suggested in the thread or use someone's fork. I ended up writing a simple script that would go through the Collibra OpenAPI specs and add 200 response alongside the default ones and generated the client from the patched json.

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

79735356

Date: 2025-08-14 11:53:03
Score: 5
Natty: 6.5
Report link

Why shouldn't Account-Id be a company Name?

Otherwise you also can set the Account-Name
https://support.pendo.io/hc/en-us/articles/21326198721563-Choose-IDs-and-metadata

https://support.pendo.io/hc/en-us/articles/9430394517403-Configure-for-Feedback

Reasons:
  • Probably link only (1):
  • Low length (1.5):
  • No code block (0.5):
  • Contains question mark (0.5):
  • Starts with a question (0.5): Why
  • Low reputation (1):
Posted by: HexS4lem

79735352

Date: 2025-08-14 11:51:02
Score: 0.5
Natty:
Report link

To host Data API Builder on-prem in Windows Server 2022 with IIS and SQL Server, first update dab-config.json for production (enable REST, set CORS, auth, etc.) and run it so it listens externally with dab start --host 0.0.0.0 --port 5000, then publish it with dotnet publish -c Release -r win-x64 --self-contained true and install the generated EXE as a Windows Service using sc create (or NSSM) so it runs automatically, and optionally configure IIS as a reverse proxy by installing URL Rewrite + Application Request Routing, creating a rule to forward all requests to http://localhost:5000, and letting IIS handle SSL, host bindings, and firewall exposure, ensuring you lock down CORS and authentication before making it publicly reachable.

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

79735349

Date: 2025-08-14 11:47:01
Score: 2.5
Natty:
Report link

Years ago, I needed a simple, reliable logger with zero dependencies for a Test Automation Framework. I ended up building one and just published it on GitHub and NuGet as ZeroFrictionLogger - MIT licensed and open source.

It looks like it could be a good fit for your question.

Reasons:
  • Blacklisted phrase (0.5): I need
  • Low length (0.5):
  • No code block (0.5):
  • Low reputation (1):
Posted by: Erik

79735342

Date: 2025-08-14 11:38:59
Score: 1.5
Natty:
Report link

Can you please check the version of spring boot you are currently using.
registerLazyIfNotAlreadyRegistered occurs in spring boot 3.3+ while you might have some was introduced in Spring Boot 3.2+.
If you have mixed versions — for example, Spring Boot 3.3.x pulling in Spring Data JPA 3.3.x but another library in your project bringing an older Spring Data JPA (like 3.1.x or 2.x)

try running
mvn dependency:tree | grep spring-data-jpa
mvn dependency:tree | grep spring-data-commons

if u see 2 versions of jpa , then remove the older version
mvn dependency:tree -Dverbose | grep "spring-data-jpa"

Reasons:
  • Long answer (-0.5):
  • No code block (0.5):
  • Starts with a question (0.5): Can you please
  • Low reputation (1):
Posted by: Neha

79735341

Date: 2025-08-14 11:37:59
Score: 1
Natty:
Report link

The optimize-autoloader addition to composer.json works for custom classes like Models, but not for vendor classes like Carbon.

This can be achieved by publishing Tinker's config file, and adding Carbon as an alias.

Run php artisan vendor:publish --provider="Laravel\Tinker\TinkerServiceProvider" to generate `config/tinker.php` if the file doesn't already exist.

Edit the alias array in this file to alias carbon:

    'alias' => [
        'Carbon\Carbon' => 'Carbon',
    ]

Then, run composer dump-autoload.

Tinker should now automatically alias Carbon, allowing Carbon::now() to work without using the full namespace.

Screenshot of a terminal displaying text: Carbon::now() [!] Aliasing 'Carbon' to 'Carbon\Carbon' for this Tinker session. The correct date is then displayed.

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

79735334

Date: 2025-08-14 11:27:56
Score: 4
Natty:
Report link

Please take a reference from this; you get a better understanding.

https://docs.oracle.com/javase/tutorial/jdbc/basics/sqlxml.html

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

79735317

Date: 2025-08-14 11:15:53
Score: 1
Natty:
Report link
$user = read-host "user"
$pass = read-host "pass " -AsSecureString
$cred = New-Object System.Management.Automation.PSCredential -ArgumentList $user, $pwd
Find-Package -Name "$packageName" -ProviderName NuGet -AllVersions -Credential $cred 
Reasons:
  • Low length (0.5):
  • Has code block (-0.5):
  • Low reputation (1):
Posted by: user26573235

79735313

Date: 2025-08-14 11:10:52
Score: 3
Natty:
Report link

Back in 2017, I was looking for modern-day Database ORM 😄

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

79735311

Date: 2025-08-14 11:09:52
Score: 1.5
Natty:
Report link

<!-- معرض الصور -->

<div class="gallery">

<img src="image1.jpg" onclick="openModal(0)">

<img src="image2.jpg" onclick="openModal(1)">

<img src="image3.jpg" onclick="openModal(2)">

</div>

<!-- نافذة عرض الصورة -->

<div id="modal" style="display:none;">

<button onclick="prevImage()">←</button>

<img id="modal-img" src="">

<button onclick="nextImage()">→</button>

<button onclick="closeModal()">إغلاق</button>

</div>

تعديل تطبيق

Reasons:
  • No code block (0.5):
  • Low reputation (1):
Posted by: محمد هاشم

79735309

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

Change

src: url('../fonts/Rockness.ttf');

to

src: url('../fonts/Rockness.ttf') format('truetype');

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

79735303

Date: 2025-08-14 11:05:51
Score: 2.5
Natty:
Report link

The solution was to update resharper to the newest version 2025.2 (Build 252.0.20250812.71120 built on 2025-08-12)

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

79735294

Date: 2025-08-14 10:56:49
Score: 1.5
Natty:
Report link

content of e.g. logging.h

#include <QDebug>
#define LOG(Verbosity) q##Verbosity().noquote().nospace()

then use it like:

#include "logging.h"

QString abc = "bla";

LOG(Info) << abc;
LOG(Debug) << abc;

cheers
Thilo

Reasons:
  • Blacklisted phrase (1): cheers
  • Low length (0.5):
  • Has code block (-0.5):
  • Low reputation (0.5):
Posted by: Thilo Cestonaro

79735292

Date: 2025-08-14 10:55:49
Score: 0.5
Natty:
Report link

This may not be the solution for your issue.

However, in my case I found that the issue was to do with an incompatible sql.js version that had been updated.

I found that versioning sql.js in my package.json to ~1.12.0 resolved this issue for me.

  "sql.js": "~1.12.0",
Reasons:
  • Low length (0.5):
  • Has code block (-0.5):
  • Low reputation (0.5):
Posted by: Nathan Ormond

79735282

Date: 2025-08-14 10:43:46
Score: 1
Natty:
Report link

first click on field, next write text

local username = splash:select('input[name=username]')
    username:mouse_click()     -- click on field
    splash:send_text('foobar') -- write text
Reasons:
  • Low length (0.5):
  • Has code block (-0.5):
  • Low reputation (1):
Posted by: Bontonent

79735279

Date: 2025-08-14 10:41:45
Score: 3.5
Natty:
Report link

There is not <Head> component in App router, so this would work only with Pages router.

Reasons:
  • Low length (1.5):
  • No code block (0.5):
  • Single line (0.5):
  • Low reputation (1):
Posted by: Lauris Kuzņecovs

79735276

Date: 2025-08-14 10:39:45
Score: 3
Natty:
Report link

I think what you are looking for is JFrog Curation.

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

79735266

Date: 2025-08-14 10:30:43
Score: 0.5
Natty:
Report link

What Windows calls OwnerAuthFull is the base64-encoded lockout password (I believe this is terminology inherited from TPM 1.2). You can test it with tpm2_dictionarylockout -c -p file:key.bin, where key.bin contains that password after decoding it with base64 -d.

The TPM2 owner password (owner / storage hierarchy) is unset, you can verify that with this command:

# tpm2_getcap properties-variable | grep AuthSet
  ownerAuthSet:              0
  endorsementAuthSet:        0
  lockoutAuthSet:            1
Reasons:
  • Long answer (-0.5):
  • Has code block (-0.5):
  • Starts with a question (0.5): What
  • Low reputation (1):
Posted by: Berto

79735264

Date: 2025-08-14 10:29:42
Score: 1
Natty:
Report link

For me, works using dot as before index:

-DHttpServerConfig.sourceFilePath.0=qwerty -DHttpServerConfig.sourceFilePath.1=asdfg 

If you set equal indexes, the last value overrides the previous.

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

79735255

Date: 2025-08-14 10:17:40
Score: 1
Natty:
Report link

I actually ran into the exact same struggle recently when trying to get Google Picker working in a Streamlit app (though I didn’t try it with ngrok). I’m more of a Python person too, so mixing in the JavaScript OAuth flow was… let’s just say “fun.” 😅

In the end, I decided to build a Streamlit component for it — wraps the Google Picker API and works with a normal OAuth2 flow in Python.

It supports:

You can install it with:

pip install streamlit-google-picker

Full OAuth2 (With auto save and refresh token) + Picker example python code here (shows exactly how to handle the token and call the picker).

Might save you from fighting with the JavaScript side — and even if I didn’t try it with ngrok, there’s no reason it shouldn’t work.

You can also check the right way to setup the google cloud settings : Demo + setup google cloud guide (Medium)

GitHub: https://github.com/LounesAl/streamlit-google-picker

Reasons:
  • Contains signature (1):
  • Long answer (-0.5):
  • Has code block (-0.5):
  • Low reputation (1):
Posted by: LounesAl

79735245

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

I used this condition and it works, though the dialog does not show up in disambiguation:

intents.size() > 1 && intents.contains('intentName1') && intents.contains('intentName2')

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

79735239

Date: 2025-08-14 10:06:37
Score: 3
Natty:
Report link

As of August 2025 the location of the cl.exe is in the path:

C:\Program Files\Microsoft Visual Studio\2022\Community\VC\Tools\MSVC\14.44.35207\bin\Hostx64\x64

You have to install Visual Studio from here: https://visualstudio.microsoft.com/

Remember to select Desktop Development with C++ when installing otherwise cl.exe will not exist.

enter image description here

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

79735233

Date: 2025-08-14 10:03:36
Score: 1.5
Natty:
Report link

It's a bit of a workaround, but I think this answer might help: https://stackoverflow.com/a/58273676/15545685

Applied to your case:

library(tidyverse)
library(ggforce)

dat <- data.frame(
  date = seq(as.Date('2024-01-01'),
             as.Date('2024-12-31'),
             '1 day'),
  value = rnorm(366, 10, 3)
)


p0 <- dat |> 
  ggplot(aes(x = date, y = value)) +
  geom_point() +
  labs(x = NULL,
       y = 'Value') +
  theme_bw(base_size = 16) +
  scale_x_date(date_labels = '%b %d') +
  facet_zoom(xlim = c(as.Date("2024-06-01"), as.Date("2024-06-20")))

p1 <- p0 + 
    scale_x_date(breaks = seq(as.Date('2024-01-01'),
                            as.Date('2024-12-31'),
                            '1 month'),
               limits = c(as.Date('2024-01-01'),
                          as.Date('2024-12-31')),
               date_labels = '%b\n%Y')

gp0  <- ggplot_build(p0)
gp1  <- ggplot_build(p1)

k <- gp1$layout$layout$SCALE_X[gp1$layout$layout$name == "x"]
gp1$layout$panel_scales_x[[k]]$limits <- gp1$layout$panel_scales_x[[k]]$range$range 

k <- gp1$layout$layout$PANEL[gp1$layout$layout$name == "x"]
gp1$layout$panel_params[[k]] <- gp0$layout$panel_params[[k]]

gt1 <- ggplot_gtable(gp1)
grid::grid.draw(gt1)
Reasons:
  • Blacklisted phrase (1): stackoverflow
  • Probably link only (1):
  • Long answer (-1):
  • Has code block (-0.5):
  • Low reputation (1):
Posted by: Kateřina Hudáčová

79735232

Date: 2025-08-14 10:03:36
Score: 1.5
Natty:
Report link

Replace with this

select[required] {
  padding: 0;
  background: transparent;
  color: transparent;
  border: none;
}
Reasons:
  • Low length (1):
  • Has code block (-0.5):
  • Low reputation (1):
Posted by: Shahariar Hasan

79735228

Date: 2025-08-14 09:59:35
Score: 0.5
Natty:
Report link

How about not using awk at all?

echo 255.255.192.0 | sh -c 'IFS=.; read m ; n=0; for o in $m ; do n=$((($n<<8) + $o)); done; s=$((1<<31));  p=0; while [ $(($n & $s)) -gt 0 ] ; do s=$((s>>1)) p=$((p+1)); done; echo $p'

Annotation: IFS is the input field separator; it splits the netmask into individual octets. So $m becomes the set of four numbers. The next variable $n is going to be the 32 bit number of the netmask, constructed by going over each octed $o (the iterator in the first loop) and shifting it 8 bits left. The second loop uses $s (the 'shifter') as a 32 bit number with only a single 1 bit, starting at position 32; while it shifts down it is compared (bitwise &) to the mask and the return value $p increases every time there is a 1 until there is no more match (so it stops at the first 0 bit).

Reasons:
  • Long answer (-0.5):
  • Has code block (-0.5):
  • Contains question mark (0.5):
  • Starts with a question (0.5): How
  • Low reputation (0.5):
Posted by: Dennis

79735216

Date: 2025-08-14 09:43:31
Score: 2.5
Natty:
Report link

discord.py (which nextcord is wrapper of) has resolved this issues in https://github.com/Rapptz/discord.py/issues/10207, i believe and update of the nextcord package or the discord.py package should resolve this issue

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

79735214

Date: 2025-08-14 09:43:31
Score: 0.5
Natty:
Report link

You can make modelValue a discriminated union key by range so TS can infer the correct type automatically. For example:

type Props =
  | { range: true, modelValue: [number, number] }
  | { range?: false, modelValue: number };

Then use that type in your defineProps and defineEmits so no casting is needed.

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

79735211

Date: 2025-08-14 09:42:31
Score: 0.5
Natty:
Report link

Maybe the unique parameter in the column annotation could help you?

#[ORM\Column(unique: true, name: "app_id", type: Types::BIGINT)]
private ?int $appId = null;

If the user is supposed to be unique, maybe a OneToOne Relation could be better than a ManyToOne. I am pretty sure using OneToOne will also generate a unique index in your migration for you, even without the unique parameter.

#[ORM\OneToOne(inversedBy: 'userMobileApp', cascade: ['persist', 'remove'])]
#[ORM\JoinColumn(name: "user_id, "nullable: false)]
private ?User $user = null;
Reasons:
  • Long answer (-0.5):
  • Has code block (-0.5):
  • Contains question mark (0.5):
  • Low reputation (1):
Posted by: Daka

79735207

Date: 2025-08-14 09:38:30
Score: 2.5
Natty:
Report link

After adding separate configurations for the two web applications, I'm encountering an issue with the custom binding for the second web app. I already have a setup for custom binding and DNS for the first web app.

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

79735201

Date: 2025-08-14 09:36:29
Score: 2
Natty:
Report link

Here's a lazy solution as compared to above answers here: my XCode project threw me this error as an iPad was connected for test. I tried deleting Deriveddata, re-starting XCode etc, but none of these helped. I ended up abandoning that project and creating the new one. The new project does not throw this error anymore.

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

79735200

Date: 2025-08-14 09:36:29
Score: 1.5
Natty:
Report link

If you are on Mac and have been running your script like this python my-script.py, you might want to try running it with sudo. I spent 30 minutes debugging correct code before realizing that "requests" needs sudo permissions

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

79735192

Date: 2025-08-14 09:32:27
Score: 11.5
Natty: 5
Report link

I have the same question. Unfortunately, both links in the highlighted answer are now outdated. Does anyone have newer info on this?

For the condition I tried:

#intentName1 && #intentName2

intents.contains('intentName1') && intents.contains('intentName2')

intents.values.contains('intentName1') && intents.values.contains('intentName2')

The first two didn't throw an error but the dialog was just skipped when I entered an utterance in which both intents were recognized. The final one threw an error:
SpEL evaluation error: Expression [intents.size() > 0 && intents.values.contains('intentName1') && intents.values.contains('intentName2') && @entityName] converted to [intents.size() > 0 && intents.values.contains('intentName1') && intents.values.contains('intentName2') && entities['entityName']?.value] at position 73: EL1008E: Property or field 'values' cannot be found on object of type 'CluIntentResponseList' - maybe not public or not valid?

Reasons:
  • Blacklisted phrase (1): I have the same question
  • RegEx Blacklisted phrase (3): Does anyone have
  • Long answer (-0.5):
  • No code block (0.5):
  • Me too answer (2.5): I have the same question
  • Ends in question mark (2):
  • User mentioned (1): @entityName
  • Looks like a comment (1):
  • Low reputation (1):
Posted by: Leni

79735187

Date: 2025-08-14 09:28:26
Score: 4
Natty: 4
Report link

In the plugin developed for OPA https://github.com/EOEPCA/keycloak-opa-plugin , it seems that the Admin UI was customised (see (js/apps/admin-ui/src/clients/authorization/policy).

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

79735182

Date: 2025-08-14 09:19:24
Score: 3
Natty:
Report link

you have to manully allow location access from phone setting by going to the phone setting > privacy and security > location > Safari/anyother brower.

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

79735180

Date: 2025-08-14 09:17:23
Score: 1
Natty:
Report link

Got it — sounds like you’re trying to bypass the whole “training” aspect and just hard-code your decision logic in a tree-like form. In that case, sklearn’s DecisionTreeClassifier isn’t really the right tool, since it’s built to learn from data. A custom tree structure, like the Node class example given, would give you more control and let you directly define each condition without needing any training step. This way, you still get the decision-tree behavior, but exactly how you’ve designed it.

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

79735179

Date: 2025-08-14 09:14:22
Score: 1.5
Natty:
Report link
Hi, try SELECT concat(REPLICATE('0', 16 - LEN(NAG)),NAG) as NAG16
where NAG is yourVarcharField and 16 is lenght that you need
Reasons:
  • Low length (1):
  • Has code block (-0.5):
  • Low reputation (1):
Posted by: Gianluca

79735169

Date: 2025-08-14 09:05:20
Score: 2
Natty:
Report link

Seems, this behaviour of SvelteKit is not replicable in NextJS. There is a similar feature in NextJS and it is called prerendering. But, prerendering only works for static pages.

For dynamic pages, the server components start to render on the server only after the page is navigated to. If needed, a suspense boundary can be used as a placeholder (which is displayed instantly) before the whole page is rendered.

With respect to wasted bandwidth of fetching links when it comes into viewport, @oscar-hermoso's answer of switching the prefetch option to on hover works.

After using both the frameworks, it feels as if SvelteKit is really thought out when it comes to frameworks. NextJS relies on CDN to make the site fast. SvelteKit uses a simple, but clever trick. So, when end users use the site, the SvelteKit version feels much faster.

Reasons:
  • Long answer (-0.5):
  • No code block (0.5):
  • User mentioned (1): @oscar-hermoso's
  • Self-answer (0.5):
  • Low reputation (0.5):
Posted by: berinaniesh

79735165

Date: 2025-08-14 08:56:18
Score: 1
Natty:
Report link

For me I added this line to the top of requirements.txt` file. I was able to install the packages successfully.

torch==2.2.2
Reasons:
  • Low length (1):
  • Has code block (-0.5):
  • Low reputation (0.5):
Posted by: Clement Olaniyan

79735156

Date: 2025-08-14 08:48:16
Score: 1.5
Natty:
Report link

I don't know whether this is any help, but I fixed a similar issue justt by putting "" arround the echo line

Reasons:
  • Blacklisted phrase (1): any help
  • Whitelisted phrase (-2): I fixed
  • Low length (1):
  • No code block (0.5):
  • Single line (0.5):
  • Low reputation (0.5):
Posted by: user2881914

79735149

Date: 2025-08-14 08:42:15
Score: 1
Natty:
Report link

I would recommend taking a look at the Mongoose Networking library.

It's a lightweight open-source networking library designed specifically for embedded systems. It includes full support for most networking protocols, including MQTT. With the MQTT support, you can build not just a client, but also a MQTT broker. The library is highly portable and has support for a wide variety of microcontrollers and platforms. It can run on a baremetal environment or with an RTOS like FreeRTOS or Zephyr.

Mongoose has a solid documentation of all its features and usages and you can find an example of building a MQTT simple server here.

Heads up: I am part of the Mongoose development team. Hope this solves your problem!

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

79735145

Date: 2025-08-14 08:37:13
Score: 1
Natty:
Report link


vmess://eyJ0eXBlIjoibm9uZSIsImhvc3QiOiJtZy1pbm5vY2VudC1hZGp1c3Qtc2hhcGUudHJ5Y2xvdWRmbGFyZS5jb20iLCJoZWFkZXJUeXBlIjoiIiwicG9ydCI6Ijg0NDMiLCJuZXQiOiJ3cyIsImlkIjoiM2RhNWQyN2YtMDhkMC00MDc4LWY4OTAtY2Y5NTBlY2IxNzA4IiwidiI6IjIiLCJzZXJ2aWNlTmFtZSI6Im5vbmUiLCJzZWVkIjoiIiwiZnJhZ21lbnQiOiIiLCJtb2RlIjoiIiwicGF0aCI6IlwvIiwidGxzIjoidGxzIiwiYWxwbiI6IiIsImFkZCI6IjEwNC4xNi4xMjUuMzIiLCJwcyI6IvCfjqxDQU1CT0RJQS1NRVRGT05FLfCfh7jwn4esIPCfpYAiLCJmcCI6ImNocm9tZSIsInNuaSI6Im1nLWlubm9jZW50LWFkanVzdC1zaGFwZS50cnljbG91ZGZsYXJlLmNvbSIsImRldmljZUlEIjoiIiwiYWlkIjoiMCIsImV4dHJhIjoiIn0=

Reasons:
  • Long answer (-0.5):
  • Has code block (-0.5):
  • Has no white space (0.5):
  • Single line (0.5):
  • Low reputation (1):
Posted by: Long Chhom

79735144

Date: 2025-08-14 08:36:13
Score: 0.5
Natty:
Report link

Adding one more suggestion for Kube-clusters (Future reader may look ):

Check your clock is skewed or not by using these commands :chronyc tracking or Timedatectl status

If Leap Status is Not Synchronised then do NTP Synchronization.

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

79735142

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

The official SQLMesh documentation and source code currently focus on Slack and email as supported notification targets. There is no out-of-the-box support for Microsoft Teams mentioned.
However, since Teams supports incoming webhooks similar to Slack, you can likely adapt the Slack webhook configuration for Teams by:

  1. Creating an Incoming Webhook in your Teams channel.

  2. Using that webhook URL in your SQLMesh notification configuration.

  3. Formatting the payload to match Teams' https://learn.microsoft.com/en-us/microsoftteams/platform/webhooks-and-connectors/how-to/connectors-using

    Try configuring a Teams webhook and test sending a JSON payload from SQLMesh using the same mechanism as Slack.

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

79735140

Date: 2025-08-14 08:34:12
Score: 1.5
Natty:
Report link

What I’d do in UiPath is pretty straightforward:

  1. Read the new data from the first Excel file using Read Range (under the Modern Excel activities).

  2. Read the existing data from the target sheet in the second file.

  3. Combine them — put the new data above the existing data in a single DataTable using the Merge datatable activity or just by using newsatatable.clone and importing rows in the right order.

  4. Write the merged table back to the target sheet using Write Range.

Basically, you’re replacing the sheet content with “new rows first, then old rows” instead of trying to physically insert rows at the top in Excel, which UiPath doesn’t handle directly.

Reasons:
  • Long answer (-0.5):
  • No code block (0.5):
  • Starts with a question (0.5): What I
  • Low reputation (1):
Posted by: PRIME TECHNOLOGIES GLOBAL

79735138

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

reset someClass.someProp = null; before the second render, or use beforeEach to mock and reset state properly.

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

79735136

Date: 2025-08-14 08:29:10
Score: 4
Natty: 4
Report link

With WIndows 11, it was in addition necessary for me to add sqlservr.exe to the allowed firewall apps.

I followed those instructions:

https://docs.driveworkspro.com/Topic/HowToConfigureWindowsFirewallForSQLServer

Thanks for all,

Harald

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

79735122

Date: 2025-08-14 08:11:04
Score: 5
Natty:
Report link

I realize that this thread is really old, but perhaps it's still alive enough to find someone to help me out. On a daily basis, I have different documents in which I need to highlight certain words (they change with every doc). I'd like an easy way to tell Google Docs to highlight the words in yellow each time. The previous posts seem to provide some info, but I can't figure out how to get any of them to run properly. I'd like to envision a Google Docs "template" to which I would copy the text. Then, I could run some type of script based on the keywords (even if I have to manually edit the script each time) to highlight the words. I could then copy that altered text into the final document. But, I need step by step instructions on how to get this

Reasons:
  • Blacklisted phrase (1): help me
  • Blacklisted phrase (0.5): I need
  • RegEx Blacklisted phrase (2): help me out
  • Long answer (-0.5):
  • No code block (0.5):
  • Single line (0.5):
  • Low reputation (1):
Posted by: Santo Perdido