79657768

Date: 2025-06-08 11:05:35
Score: 5.5
Natty: 6
Report link

Can anyone share bigQuery chunk reading mechanism from a bigquery table Using Spring Batch. How the query builder needs to create.

I need to read record from a table containing 100 record and and read every chunk as 10 record process and write.

Reasons:
  • Blacklisted phrase (0.5): I need
  • RegEx Blacklisted phrase (2.5): Can anyone share
  • Low length (0.5):
  • No code block (0.5):
  • Starts with a question (0.5): Can anyone share
  • Low reputation (1):
Posted by: Shankha Pramanik

79657761

Date: 2025-06-08 10:56:33
Score: 1
Natty:
Report link
const givenStr = "hello";
const reverseString = (str) => {
  let reversedStr = "";
  for (var i = str.length - 1; i >= 0; i--) {
    reversedStr += str[i];
  }
  return reversedStr;
};

console.log(reverseString(givenStr));
Reasons:
  • Low length (0.5):
  • Has code block (-0.5):
  • Low reputation (1):
Posted by: Shivashankar Malapur

79657760

Date: 2025-06-08 10:53:32
Score: 0.5
Natty:
Report link

Thank you @Yoni L. for sharing your views, I totally agree with you.

The command:

.show table MyTable column statistics

does work, but it's undocumented and may return empty results after table creation or ingestion. This happens because Kusto collects column statistics asynchronously they’re computed lazily and cached, not updated in real time.

Currently, there is no official command to force-refresh column statistics in Kusto, but you can implicitly trigger a statistics refresh using the following approaches:

  1. Run a representative query on the table:

This approach helps the engine see the data and triggers stats recomputation internally.

MyTable
| summarize count(), dcount(ColumnName), countif(isnull(ColumnName))
  1. Use the .analyze command (if available in your cluster, you can request stats update):
.analyze table MyTable with (UpdateStatistics=true)
  1. If you need immediate statistics:
MyTable
| summarize
    TotalRows = count(),
    NullCount = countif(isnull(ColumnName)),
    DistinctValues = dcount(ColumnName)

This gives accurate, up-to-date statistics at query time.

For reference kindly check - .show table data statistics command

Reasons:
  • Blacklisted phrase (0.5): Thank you
  • Long answer (-1):
  • Has code block (-0.5):
  • User mentioned (1): @Yoni
  • Low reputation (0.5):
Posted by: Mihir Saxena

79657752

Date: 2025-06-08 10:45:29
Score: 1.5
Natty:
Report link

I finally found the function within the ggpubr package.

Its called ggscatterhist and does the trick:

https://rpkgs.datanovia.com/ggpubr/reference/ggscatterhist.html

Scatter Plot with Marginal Histograms

Basic scatter plot with marginal density plot

ggscatterhist(iris, x = "Sepal.Length", y = "Sepal.Width", color = "#00AFBB", margin.params = list(fill = "lightgray"))

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

79657744

Date: 2025-06-08 10:36:27
Score: 1.5
Natty:
Report link

DOMParser does not apply CSS styles or inheritance logic—it parses the XML statically. So inherited styles or properties via <g> or <style> won't be available directly via getAttribute() or .attributes.

If you can work in a browser context (not just parsing XML in memory), then: Inject the SVG string into the DOM (e.g., into a hidden <div>). Query the <path> element using querySelector. Use getComputedStyle() to get inherited or computed style values.

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

79657743

Date: 2025-06-08 10:30:25
Score: 1.5
Natty:
Report link

I have fixed this problem and the solution is really simple if someone else is stuck like I was- I replaced the annotations I was using in my RepositoryTests (@SpringBootTest, @ExtendsWith, @DirtiesContext) with @DataJpaTest.

So basically, with @SpringBootTest I was previously loading the full application info and all the beans which included my Postgres database I was using for the main application, this was messing with my in-memory h2 database that I was using for tests.
But using @DataJpaTest provided all the same functionality whilst only loading the necessary beans and only using the h2 database.

Reasons:
  • Whitelisted phrase (-1): solution is
  • Long answer (-0.5):
  • No code block (0.5):
  • User mentioned (1): @ExtendsWith
  • User mentioned (0): @DirtiesContext
  • User mentioned (0): @DataJpaTest
  • User mentioned (0): @SpringBootTest
  • User mentioned (0): @DataJpaTest
  • Self-answer (0.5):
  • Low reputation (1):
Posted by: Vansh Bansal

79657734

Date: 2025-06-08 10:11:20
Score: 0.5
Natty:
Report link

For material3 TextField with TextFieldValue, assuming text is the String field, try:

var textFieldValue by remember {mutableStateOf(TextFieldValue("))}

textFieldValue = textFieldValue.copy(text = text, selection = TextRange(text.length)) 


TextField(
        value = textFieldValue,
...
Reasons:
  • Low length (0.5):
  • Has code block (-0.5):
  • Low reputation (0.5):
Posted by: livenlearnaday

79657732

Date: 2025-06-08 10:10:19
Score: 1
Natty:
Report link

I got it to work on MacOS with Zscaler by setting a node.js-specific environment variable:

export NODE_EXTRA_CA_CERTS=/path/to/ZscalerRootCA.pem
/Applications/LM\ Studio.app/Contents/MacOS/LM\ Studio

using LM Studio Version 0.3.16

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

79657723

Date: 2025-06-08 09:51:10
Score: 7 🚩
Natty:
Report link

I get the same error when i want to migrate my ADO pipeline from Online Agent (Linux) to onPrem agent (Self Hosted Agent) on Windows.

In order to fix my yaml pipeline i need to add pwsh: true on the task: PowerShell@2enter image description here

Reasons:
  • Blacklisted phrase (0.5): i need
  • RegEx Blacklisted phrase (1): i want
  • RegEx Blacklisted phrase (1): I get the same error
  • Probably link only (1):
  • Low length (0.5):
  • Has code block (-0.5):
  • Me too answer (2.5): I get the same error
  • Low reputation (1):
Posted by: didaskein

79657721

Date: 2025-06-08 09:49:09
Score: 0.5
Natty:
Report link

To delete all rows from a table using SQLModel, you can simply use `delete` from SQLModel like this:

from sqlmodel import Session, delete
...
def delete_all_heros():
    with Session(engine) as session:
        statement = delete(Hero)
        session.exec(statement)
        session.commit()
Reasons:
  • Low length (0.5):
  • Has code block (-0.5):
  • Low reputation (0.5):
Posted by: AhmedLm

79657720

Date: 2025-06-08 09:49:09
Score: 2
Natty:
Report link

I think the while loop is the main problem. I honestly recommend using the .addEventListener() method. I think deleting the while loop and keeping its body is the way. The function will always happen when clicking the Burton, making the while loop useless. Try my solutions, if it won't work, we might investigate further!

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

79657719

Date: 2025-06-08 09:48:08
Score: 4
Natty:
Report link

Do not use IS_COMPONENTS_V2 if you need non-empty notifications.

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

79657717

Date: 2025-06-08 09:46:08
Score: 2
Natty:
Report link
  1. First, you must set the JAVA_HOME environment variable. Import the necessary SDKs required for your project.(example ironsource , google play sdk ,etc)

  2. Download latest unity jar solver (Source code.zip) https://github.com/googlesamples/unity-jar-resolver/releases

  3. extract zip

  4. you can see latest "external-dependency-manager-latest.unitypackage"
    enter image description here

  5. import this package to unityeditor

  6. copy and paste gradlew.bat and gradlew file from extracted file (please look the picture)

  7. Assets > Mobile Dependency Resolver > Android Resolver > Force Resolve

  8. wait 1 minute

  9. it will solve :)

Reasons:
  • Blacklisted phrase (1): enter image description here
  • Long answer (-0.5):
  • No code block (0.5):
  • Low reputation (1):
Posted by: Sucheendradas V R

79657714

Date: 2025-06-08 09:41:06
Score: 1
Natty:
Report link

What I do in these occasions:

arrayWithObjects.forEach(myObject => watch(
    () => myObject.myProperty,
    () => {
        ...
    },
));

I don't know if it's too expensive but this way I know which item of the array has been modified and I can act on it directly. With the deep option I haven't been able to do it without iterating over the entire array.

Reasons:
  • Has code block (-0.5):
  • Starts with a question (0.5): What I
  • Low reputation (1):
Posted by: Natàlia

79657708

Date: 2025-06-08 09:31:04
Score: 0.5
Natty:
Report link

(As always, I am being late to the party, but, hey - nobody has answered yet.)

Actually, ggplot's `geom_path` plots correctly the cyclic voltammogram if the the data points are ordered chronologically. Let's take a simulated dataset from the library eChem:

library(eChem)

example1 = simulateCV(e.start = 0, e.switch = -0.5, e.form = -0.25,
mechanism = "E", scan.rate = 1, area = 0.01,
temp = 298, conc.bulk = 1e-3, n = 1, d = 1e-5,
alpha = 0.5, ko = 1, kcf = 0, kcr = 0)

plotCV(list(example1))

This will output the following graph:

enter image description here

The same dataset could be visualised in ggplot as follows:

library(ggplot2)
library(dplyr)

as.data.frame(example1[4:5]) %>%
ggplot(aes(potential,current))+
geom_path(col="blue")+
scale_x_reverse()+
theme_minimal()

enter image description here

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

79657702

Date: 2025-06-08 09:25:02
Score: 2
Natty:
Report link

I had this problem in Windsurf IDE (built on top of VSCode)
The settings that is being spoken about is in the Python extension of VSCode

enter image description here

and then

enter image description here

which is the same of manipulating setting directly

    "python.terminal.activateEnvInCurrentTerminal": false,
    "python.terminal.activateEnvironment": false,
Reasons:
  • Blacklisted phrase (1): enter image description here
  • Low length (0.5):
  • Has code block (-0.5):
  • Low reputation (1):
Posted by: TAO7

79657697

Date: 2025-06-08 09:19:01
Score: 2
Natty:
Report link

journalctl [-u whatever] -o -cat --output-fields=MESSAGE

Reasons:
  • Low length (1.5):
  • Has code block (-0.5):
  • Single line (0.5):
  • Low reputation (0.5):
Posted by: Nitsan BenHanoch

79657695

Date: 2025-06-08 09:17:00
Score: 2
Natty:
Report link

Not sure if still open, here is my solution in order to hide that tooltip:

"workbench.hover.delay": 9999999999,

used 9999999999, becauase null is not allowed.

Reasons:
  • Low length (1):
  • Has code block (-0.5):
  • Filler text (0.5): 9999999999
  • Low reputation (1):
Posted by: Shohjahon Komiljonov

79657693

Date: 2025-06-08 09:13:59
Score: 2.5
Natty:
Report link

npm install @chakra-ui/react

\>> npm install @emotion/react

\>> npm install @emotion/styled framer-motion react-icons

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

79657674

Date: 2025-06-08 08:51:54
Score: 3
Natty:
Report link

I still have problem.

Attached the error.

enter image description here
enter image description here

Reasons:
  • Probably link only (1):
  • Low length (1.5):
  • No code block (0.5):
Posted by: Dr Linh Chi Nguyen

79657671

Date: 2025-06-08 08:48:53
Score: 3
Natty:
Report link

Hi does this solution only work for Braintree only or for JavaScript SDK for PayPal also? I have an Ionic 8 with capacitor 7 app running subscriptions on PayPal and having Popup issue on IOS platform.

Reasons:
  • Low length (0.5):
  • No code block (0.5):
  • Contains question mark (0.5):
  • Single line (0.5):
  • Low reputation (1):
Posted by: tigere bevin masevenza

79657663

Date: 2025-06-08 08:38:50
Score: 0.5
Natty:
Report link

TypeScript sometimes struggles to infer generic return types when using method overloading with both synchronous and asynchronous logic due to the complexity and differences between sync and async return types. To resolve this, you can use explicit type annotations or type casting to specify the return types and help TypeScript understand your code.

Reasons:
  • Whitelisted phrase (-1.5): you can use
  • No code block (0.5):
  • Single line (0.5):
  • Low reputation (1):
Posted by: Suchitra Sharma

79657660

Date: 2025-06-08 08:36:49
Score: 4
Natty: 4.5
Report link

https://medium.com/swlh/an-overview-over-hierarchical-data-recursion-and-java-streams-15861205e428

Please refer the above, it's the best explanation of Hierarchical Data, Recursion and Java Streams.

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

79657655

Date: 2025-06-08 08:33:48
Score: 0.5
Natty:
Report link

small example:

extension View {

    @ViewBuilder public func foregroundPolyfill(_ color: Color) -> some View {
        if #available(macOS 14.0, iOS 17.0, *) { self.foregroundStyle(color) }
        else                                   { self.foregroundColor(color) }
    }

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

79657654

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

I found the issue the user ORDS_PUBLIC_USER expired

Just run this command

ALTER USER ORDS_PUBLIC_USER IDENTIFIED BY Admin#123;

then run ORDS and try

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

79657642

Date: 2025-06-08 08:11:42
Score: 2.5
Natty:
Report link
Great insights in this article! I especially liked the way you explained the latest trends in digital marketing. I’ve written something similar on my blog here:

[Tech2career](https://tech2career.blogspot.com)
Reasons:
  • Blacklisted phrase (1): this article
  • Low length (0.5):
  • Has code block (-0.5):
  • Unregistered user (0.5):
  • Low reputation (1):
Posted by: Tech2Career

79657633

Date: 2025-06-08 08:06:41
Score: 3
Natty:
Report link

This can be achieved using the Guava Lib method Shorts.fromBytes().

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

79657631

Date: 2025-06-08 08:05:40
Score: 2.5
Natty:
Report link

If you are using the Guava Lib, it supports methods such as Shorts.fromBytes(), and for integers Ints.fromBytes() that does this kind of operation for you.

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

79657627

Date: 2025-06-08 08:02:39
Score: 3.5
Natty:
Report link

I have a list of data in notepad and want to insert a space in the ending of each line.

This is how it looks in the notepad now

1

2

3

4

I want it to look like below

1,

2,

3,

4,

Reasons:
  • RegEx Blacklisted phrase (1): I want
  • Low length (1):
  • No code block (0.5):
  • Low reputation (1):
Posted by: Maryam Gholipour

79657616

Date: 2025-06-08 07:42:34
Score: 1
Natty:
Report link

2025.01.30

Introducing Gemini 2.0 Flash to Gemini

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

79657613

Date: 2025-06-08 07:35:33
Score: 3.5
Natty:
Report link

function reverseStr(str){

return str.split("").reverse().join("")

}

console.log(reverseStr("Aman katiyar") //

Reasons:
  • Contains signature (1):
  • Low length (1):
  • No code block (0.5):
  • Low reputation (1):
Posted by: Aman katiyar

79657608

Date: 2025-06-08 07:28:31
Score: 2
Natty:
Report link

Above answers are excellent answers but are over-engineering the problem. Remember that a rule of thumb is to provide a solution to the existed problem not something else because softwares get complicated very fast and you risk side effects ...

So, you want to convert NaN to 0, not "undefined", not empty string, etc. Only NaN.

Why not creating a function doing that ? it's more simpler and clearer :

function convertToZeroIfNaN(number){...}

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

79657605

Date: 2025-06-08 07:24:30
Score: 2.5
Natty:
Report link

Express has a built in req.sendFile(path) function.

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

79657602

Date: 2025-06-08 07:22:30
Score: 3.5
Natty:
Report link

In this case use %d to get -9 because if we use %d it signed int as there we have -4 and -5 the desired answer will be printed

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

79657601

Date: 2025-06-08 07:21:29
Score: 4
Natty:
Report link

Apache OpenNLP has this feature.

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

79657589

Date: 2025-06-08 07:02:25
Score: 2
Natty:
Report link

Comments following the pattern //#region <title> and //#endregion work on the Dart plugin for Android Studio (using version 243.26753.1; don't know since which version of the plugin):

Android Studio Dart plugin support

Unfortunately, that comment pattern is not yet supported by the current Dart Extension for VSCode (3.112.0):

VSCode Dart Extension lack of support

Reasons:
  • Probably link only (1):
  • Low length (0.5):
  • Has code block (-0.5):
  • Low reputation (1):
Posted by: Raul Costa Junior

79657578

Date: 2025-06-08 06:37:20
Score: 0.5
Natty:
Report link

I did some reading and also dug through the Node.js source code. I now understand how the close() and on() functions work.

First, regarding the close() function, I had misunderstood that it adds a callback on the queue of the close callbacks phase. That's actually not true. In reality, the close() function uses a promise to close the file. In the callback that's executed when the promise resolves, the close event is emitted using process.nextTick().

As for the on() function, it simply adds a function to the list of handlers associated with a particular event.

Reasons:
  • Long answer (-0.5):
  • Has code block (-0.5):
  • Self-answer (0.5):
  • Low reputation (1):
Posted by: russell.price

79657575

Date: 2025-06-08 06:27:17
Score: 1
Natty:
Report link

1. Is the import correct and without typos?

Make sure the file where you're using the widget has this:

dart

CopyEdit

import 'package:your_project/widgets/image_picker_overlay_widget.dart'; 
Or if it's in the same lib directory:
dart

CopyEdit

import 'image_picker_overlay_widget.dart'; 
Sometimes a wrong path or circular import can cause Flutter to see the class as not being a Widget.
Reasons:
  • Has code block (-0.5):
  • Contains question mark (0.5):
  • Low reputation (1):
Posted by: Minhazul Asif Islam

79657572

Date: 2025-06-08 06:26:17
Score: 2
Natty:
Report link

The quickest way in my opinion is to find the Copilot Icon on the right bottom corner of the editor and disable "Code Completions (all files)" and "Code Completions (TypeScript)":

Step 1

Then:

Step 2

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

79657564

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

I find it bizar that Visual Studio supports it out of the box and VS Code doesn't

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

79657559

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

This was coming because there was version mismatch between jars application classpath. I needed to dig deep using intellij debugger to find out what was happening. I upgraded the version of apache axis and other apache jars to resolve the issue.

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

79657554

Date: 2025-06-08 06:01:11
Score: 1
Natty:
Report link

well, they have a different value because:

In Solution1, self.ans is shared and persistent across method calls.

In Solution2, unless special handling is used, the modification of ans inside some_other_function does not affect the outer ans.

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

79657545

Date: 2025-06-08 05:53:09
Score: 1.5
Natty:
Report link

All you need is role ID and member object (accessible using guild ID)

await member.remove_roles(role*) # You can either pass a single role or multiple roles
Reasons:
  • Low length (1):
  • Has code block (-0.5):
  • Low reputation (1):
Posted by: Ilya Delbar

79657530

Date: 2025-06-08 05:33:05
Score: 3.5
Natty:
Report link

try this ngrok alternative https://wg.nothernsolutions.com they got static links

Reasons:
  • Whitelisted phrase (-1): try this
  • Probably link only (1):
  • Low length (1.5):
  • No code block (0.5):
  • Single line (0.5):
  • Low reputation (1):
Posted by: balcony

79657528

Date: 2025-06-08 05:32:03
Score: 8.5 🚩
Natty: 6
Report link

This same thing is happening for me... do you have any resolution?

Reasons:
  • RegEx Blacklisted phrase (2.5): do you have any
  • Low length (1.5):
  • No code block (0.5):
  • Ends in question mark (2):
  • Unregistered user (0.5):
  • Single line (0.5):
  • Low reputation (1):
Posted by: spd

79657518

Date: 2025-06-08 05:18:00
Score: 1.5
Natty:
Report link

You can try following if first row and column have half pixel.

Graphics g = e.Graphics;
    g.PixelOffsetMode =PixelOffsetMode.Half;  
Reasons:
  • Low length (1):
  • Has code block (-0.5):
  • Low reputation (1):
Posted by: digitect38

79657506

Date: 2025-06-08 04:39:51
Score: 4
Natty:
Report link

how about try adding ./ to your source path on the import, see if it works

Reasons:
  • Low length (1.5):
  • No code block (0.5):
  • Single line (0.5):
  • Starts with a question (0.5): how
  • Low reputation (1):
Posted by: Staple Food

79657500

Date: 2025-06-08 04:25:48
Score: 0.5
Natty:
Report link

Yes you need the exec. Beyond that....

I have no experience with modbus-serial, but it looks like you create a connection and don't close it.

I do have experience with what mysql2 does in this situation--if you don't close the connection the node process never exits.

I've always caught this error during command-line testing--it hangs the terminal until you ctrl-C on Linux--so I'm not sure how PHP deals with it and in any event suspect it's OS- and PHP-version-dependent.

But it certainly seems like a mechanism that could cause one-and-done behavior.

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

79657493

Date: 2025-06-08 04:20:47
Score: 3.5
Natty:
Report link

••|Welcome Horror Story Raat ki Kahaniya ••|Subscriber Kera Humare Channel ko ••|Horror Story Channe Kaise banaya ••|Horror Story Channel movie animation ••| #horrorstories #horror #horrorgaming #horror ••|#horrormovies #horrorshorts #horrorcartoon ••|Subscriber me here👉 @zakireditz90 Thanks

Reasons:
  • Blacklisted phrase (0.5): Thanks
  • No code block (0.5):
  • User mentioned (1): @zakireditz90
  • Single line (0.5):
  • Low reputation (1):
Posted by: Msd Zakir King

79657489

Date: 2025-06-08 04:05:44
Score: 1.5
Natty:
Report link

Try making UserId string instead of GUID.
Check this out: https://github.com/supabase-community/postgrest-csharp/blob/master/Postgrest/Table.cs/

.Filter(u => u.UserId, Operator.Equals, userId) --> here userId must be a string type.

Reasons:
  • Probably link only (1):
  • Low length (1):
  • No code block (0.5):
  • High reputation (-1):
Posted by: Reza.Hoque

79657486

Date: 2025-06-08 03:54:41
Score: 1
Natty:
Report link

You can get the data last row using

=max(arrayformula((--(A:A<>"")*row(A:A))))

or

=max(iferror(arrayformula(arrayformula((--(importrange("xxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx", "'Sheet1'!A:A")<>""))) * arrayformula(row(A:A))),0))

This might not directly answer your question, though.

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

79657485

Date: 2025-06-08 03:53:41
Score: 2.5
Natty:
Report link

If you're interested in a reliable hacker to access and monitor any phone, WhatsApp messenger, Facebook, and recover Gmail password, reach out to the experienced hacker who helped me to find out the lady my husband is cheating with. You can contact him via email (wisetechhack@ gmail .com) tell him you saw my review thanks.

Reasons:
  • Blacklisted phrase (0.5): thanks
  • No code block (0.5):
  • Single line (0.5):
  • Low reputation (1):
Posted by: FlauranWilz

79657482

Date: 2025-06-08 03:46:39
Score: 1.5
Natty:
Report link

I know this is an old thread. But it's still in the top Google results, so I am here to share the tool I developed: Mininet-GUI. With it, you can create and edit the topologies visually, similar to MiniEdit, but it has a modern web UI with a webshell component (xterms never again) and runs the topology emulation in real time.

Repo: https://github.com/latarc/mininet-gui/

mininet-gui screenshot

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

79657480

Date: 2025-06-08 03:44:38
Score: 2
Natty:
Report link

You can check h-lvh or h-dvh and use these values ​​to adjust the height of this section on mobile, to fit the screen height. They are used similarly to h-screen

, but are useful for mobile browsers where the address bar is scrollable.

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

79657479

Date: 2025-06-08 03:41:38
Score: 0.5
Natty:
Report link

The way AvroConnector works by default is that the order of fields defined in the schema should be the same as the order in which the columns appear in the data. Once I configured this, the connector began to work as expected. Or simply, I configured "auto.register.schemas" as True and added the necessary columns in "field.include.list" property in the same orders in which they appear in my Postgres table. This worked for me.

Reasons:
  • Whitelisted phrase (-1): This worked for me
  • Whitelisted phrase (-1): worked for me
  • No code block (0.5):
  • Self-answer (0.5):
  • Single line (0.5):
  • Low reputation (1):
Posted by: RAJAT BANSAL

79657465

Date: 2025-06-08 03:12:31
Score: 1.5
Natty:
Report link

Can't reproduce your question, you might want to try recompiling the same test code snippet with a different C compiler to see if the issue persists

gcc -o test test.c && ./test
clang -o test test.c && ./test
cl test.c && test.exe
Reasons:
  • Low length (0.5):
  • Has code block (-0.5):
  • Starts with a question (0.5): Can't
  • Low reputation (1):
Posted by: Colly Q

79657456

Date: 2025-06-08 02:23:21
Score: 2.5
Natty:
Report link

You should try using Debounce in Reactjs, I think it will be useful for your case.

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

79657453

Date: 2025-06-08 02:19:20
Score: 0.5
Natty:
Report link

No, there is no way to force an overwrite by using formulas in Google Sheets.

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

79657447

Date: 2025-06-08 01:58:16
Score: 2.5
Natty:
Report link

A current limitation of the service extension is that they "currently do not support services with dependencies outside the package."

See https://learn.microsoft.com/en-us/windows/msix/packaging-tool/convert-an-installer-with-services#known-limitations

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

79657443

Date: 2025-06-08 01:47:13
Score: 3
Natty:
Report link

Photographer from Gatineau, Canada 🇨🇦

I love landscapes, animals, and creative design shots.

Let the images speak for themselves 🎯

welcome to my store ;)

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

79657411

Date: 2025-06-07 23:55:53
Score: 2.5
Natty:
Report link

Porque literalmente no has inicializado el arrayList, prueba a poner

private ArrayList<String> estudiantes = new ArrayList<String>()
Reasons:
  • Blacklisted phrase (1): Porque
  • Low length (1):
  • Has code block (-0.5):
  • Low reputation (1):
Posted by: Dokozak

79657402

Date: 2025-06-07 23:26:47
Score: 1.5
Natty:
Report link

You should use std::forward with universal (forwarding) references when perfect forwarding is actually required, typically when passing the parameter to another function or constructor that depends on value category (e.g., distinguishing between lvalue/rvalue overloads or enabling move semantics). In your example, bothv f1 and f2 return the parameter, and auto return type triggers move semantics for rvalues anyway due to return value optimization (RVO), so is not strictly necessary here. However, using is good practice in generic code because it preserves the value category and avoids surprises if the function is later changed to forward its argument.

Reasons:
  • Long answer (-0.5):
  • No code block (0.5):
  • Single line (0.5):
  • Low reputation (1):
Posted by: CHRISTIAN ALEJANDRO MEDINA MON

79657400

Date: 2025-06-07 23:24:46
Score: 2.5
Natty:
Report link

Try creating a complete Blade file. I think you got this error because you're only sending the form, without the rest of the HTML structure like <!DOCTYPE html>, <html>, <head>, and <body>.

Also, make sure you're including the @csrf directive if it's a POST request.

You can open your browser's Network tab (usually under DevTools) to inspect the request and response details — that often gives helpful clues when debugging issues like this.

Reasons:
  • No code block (0.5):
  • User mentioned (1): @csrf
  • Low reputation (1):
Posted by: Daniel Sousa

79657399

Date: 2025-06-07 23:24:46
Score: 2
Natty:
Report link

If you are trying to clear things do a docker volume list and make sure the volume in question that is causing the issue is actually removed. docker volume prune may not remove the volume in question. It didn't for me

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

79657397

Date: 2025-06-07 23:15:45
Score: 0.5
Natty:
Report link

After some digging, I figured that I needed gcc6.

There is a line at the docs on https://github.com/rbenv/ruby-build/wiki#arch-linux, but not much information on how to use it:

If needed, install gcc6 from the AUR.

Here is how to do it:

  1. Install gcc6 from AUR (note: takes a long time to compile)

  2. Install with:

RUBY_CONFIGURE_OPTS="--with-openssl-dir=/usr/lib/openssl-1.1 --with-gcc=gcc-6" asdf install ruby 3.1.0
Reasons:
  • Blacklisted phrase (0.5): I need
  • Has code block (-0.5):
  • Self-answer (0.5):
Posted by: paulodiovani

79657390

Date: 2025-06-07 22:57:41
Score: 3.5
Natty:
Report link

This should help - https://stackoverflow.com/a/79654862
It possible that you didn't define package parameter.

Reasons:
  • Blacklisted phrase (1): stackoverflow
  • Probably link only (1):
  • Low length (1.5):
  • Has code block (-0.5):
  • Low reputation (0.5):
Posted by: Oleksii Vynokur

79657389

Date: 2025-06-07 22:54:40
Score: 1
Natty:
Report link

Since no one seems to have the same shortcut.
If you ever forget the shortcut or it's not working for you, Xcode has a built-in search to help you find it:

  1. Make your selection (the code you want to put in comments).

  2. In the Xcode top menu bar, go to View > Show Quick Actions.

  3. A search box will appear. In it, type "comment".

  4. You will see the "Comment Selection" action, along with its current shortcut. This is a great way to discover other Xcode shortcuts as well!

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

79657381

Date: 2025-06-07 22:30:35
Score: 1.5
Natty:
Report link

To avoid hardcoding secrets in your Postman environment file, you can inject GitHub secrets into the Postman environment JSON during the GitHub Actions workflow using jq or sed. First, store your API key in secrets.TEST_API_KEY , then read the environment file, replace the value of ApiKey with the secret, and pass that file to Newman. For example, add a step like: name: Inject API Key into Environment run: | jq '.values |= map(if .key == "ApiKey" then .value = env.TEST_API_KEY else . end)' Test-env.postman_environment.json > env_with_secret.json env: TEST_API_KEY: ${{ secrets.TEST }}, then run: name: Run Newman run: newman run collection.json -e env_with_secret.json

Reasons:
  • Long answer (-0.5):
  • No code block (0.5):
  • Single line (0.5):
  • Low reputation (1):
Posted by: CHRISTIAN ALEJANDRO MEDINA MON

79657378

Date: 2025-06-07 22:29:35
Score: 3
Natty:
Report link

Thanks for your responses. I found what I needed.

Create the map using INVALID_FILE_HANDLE (instead of the file handle) big enough to include an extra byte. Then MapViewOfFile, read the file into the map, and set the extra byte to '\0'.

Reasons:
  • Blacklisted phrase (0.5): Thanks
  • Blacklisted phrase (0.5): I need
  • Low length (0.5):
  • No code block (0.5):
  • Self-answer (0.5):
  • Low reputation (0.5):
Posted by: Vince_Fatica

79657376

Date: 2025-06-07 22:28:35
Score: 1
Natty:
Report link

According to relevant the Android Docs, you need to manually initialize dependency configuration methods that combine a product flavor and a build type (implementation and debugImplementation are examples of dependency configuration methods, as is brieDebugImplementation):

//.gradle.kts eaxmple
val brieDebugImplementation by configurations.creating

dependencies {
    brieDebugImplementation("com.squareup.okhttp3:okhttp:4.12.0")
}
//.gradle example
configurations {
    brieDebugImplementation {}
}

dependencies {
    brieDebugImplementation 'com.squareup.okhttp3:okhttp:4.12.0'
}

Found here: https://developer.android.com/build/dependencies#configure_dependencies_for_a_specific_build_variant

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

79657364

Date: 2025-06-07 22:13:31
Score: 3
Natty:
Report link

contains function implemented does not seem to work with an argument that has space between. Try changing your schema to LastName (removing the space in between).

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

79657360

Date: 2025-06-07 22:05:30
Score: 1
Natty:
Report link

Why does Jupyter Lab show "Kernel Restarting" when importing pandas?

Reason: The kernel restarts because a fatal error (crash) occurs in the Python process.

Common causes:

When importing pandas triggers such an error, the Python interpreter crashes, and Jupyter automatically restarts the kernel — this is why you see "Kernel Restarting."

Reasons:
  • Long answer (-0.5):
  • Has code block (-0.5):
  • Contains question mark (0.5):
  • Starts with a question (0.5): Why do
  • Low reputation (1):
Posted by: DevCicadaQ

79657355

Date: 2025-06-07 21:54:28
Score: 0.5
Natty:
Report link

In a RabbitMQ cluster, there isn’t a global primary node; instead, each queue has its own master (or leader) node. To find the master node for a specific queue, you can use the CL, which shows the queue name and its master node. Alternatively, using the Management HTTP API, send a request to your appi and look for the node field in the JSON response—this indicates which node currently hosts the master copy of that queue.

Reasons:
  • Whitelisted phrase (-1.5): you can use
  • No code block (0.5):
  • Single line (0.5):
  • Low reputation (1):
Posted by: CHRISTIAN ALEJANDRO MEDINA MON

79657350

Date: 2025-06-07 21:43:25
Score: 4.5
Natty:
Report link

but what about if I want to give me output code 4.0 not 4.

Reasons:
  • RegEx Blacklisted phrase (1): I want
  • Low length (1.5):
  • No code block (0.5):
  • Single line (0.5):
  • Low reputation (1):
Posted by: Elchin Mirzayev

79657344

Date: 2025-06-07 21:37:24
Score: 2
Natty:
Report link

You could created a shared mailbox and schedule your meetings directly from there so that every outlook invite comes from the shared mailbox address. If you want individuals to be able to schedule meetings and send Outlook invites without having to sign in to a shared inbox you need to set up smpt to route the emails or use Salepager which lets you send Outlook invites from a team inbox or email alias such as support@ or meetings@ allowing you to accomplish this.

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

79657339

Date: 2025-06-07 21:32:23
Score: 3
Natty:
Report link

Check the name:<project_folder> at the top of pubspec.yaml . If you changed project names and simply copied your previous project's pubspec.yaml project_folder might be the old version.

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

79657333

Date: 2025-06-07 21:25:21
Score: 2.5
Natty:
Report link

here you will find how the MP3 is decoded: https://www.diva-portal.org/smash/get/diva2:830195/FULLTEXT01.pdf

after studying it you can easily read it using C++ or any another language.

It will be challenging at the beginning but not impossible.

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

79657329

Date: 2025-06-07 21:14:19
Score: 0.5
Natty:
Report link

.netflix.com True / True 0 nfvdid BQFmAAEBEEqL7YJo4yrM-SDpnvRP9Fxg6n0VDhRE8qBk-vTyqSDL_xapkPwuJ4SeE1oBvENx4CRvbDAqYn2IN7Gsj5e4bIcuOtT3_l4v6pdZxjQayWepEuG5UgG9XM31yeIv07dBPEnos8vv8vW5KPTc_NrLzE0f

.netflix.com True / True 0 SecureNetflixId v%3D3%26mac%3DAQEAEQABABR8P8dBavCXi7ziqdQ08onymKWlaHr873k.%26dt%3D1748150473669

.netflix.com True / True 0 NetflixId v%3D3%26ct%3DBgjHlOvcAxL-Aky5xHR_V-M60k7ZcvwhvG8iGXIzl9v890czAKbLQnCrszHEPiOLLl9n4Id0uhj0O-cybuXGzcRSYxo1yrWRyHf5Kh4DGnfhNOJPXegEEyb657NpSFwKsUYzkL-ZQCvjFFi6YZ9yrR4wamhhUBuhWPz2KwMTgsv0XqoiwEm-W3CCgyElMXAuztC-7sjECg7NPlN4UWigSCpCOxJrdjsy9uD_aoBVzSLKcBgeMJ_adALKIEZqZRCsnX6gbMuuE7ksmocZ5fkkaStvwaPT8LQC9NlGSYJUIi9F74FQgW9f56iReipSIeHtJM84_qE-haW1Qf0uhiaryOypRiZ2LFssq5N1SXvy-0M2howPZ3FP5syce5NAislL0z1CyuF_fS9WPl85POgXSZox8F8rVGzXgfMWbEFe98hae1EjVqb8zeoMQSfIha63iWAgqVaRWTOTSGmg2xL7SL4eeoH6ard9REwbAc1iv4F2xw899_oWoy4l5EagQl3wO-K9QOr57FYYBiIOCgxkEWSmQH1dp2pZpJM.%26ch%3DAQEAEAABABRkklnhXE4z7lU4tq90rZw299OYMwN0Nxo.

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

79657322

Date: 2025-06-07 21:06:17
Score: 1.5
Natty:
Report link

In 2025, the below works for checking if run as runbook:

$env:AZUREPS_HOST_ENVIRONMENT -eq "AzureAutomation"
Reasons:
  • Low length (1):
  • Has code block (-0.5):
  • Low reputation (1):
Posted by: Jørn-Morten Innselset

79657315

Date: 2025-06-07 20:52:13
Score: 1.5
Natty:
Report link

Multi-threading in python does not function due to the Python GIL - Global Interpret Lock.
Accordingly the ROS2 multithreaded executor does not function correctly.

You will see superior performance and substantially less jitter from the single-threaded executor. You must accordingly write your code without blocking which makes it very difficult (impossible?) to implement ROS Actions et. al. properly.

Multi-threading can only help in Python if it is done in C/C++ code you call from a Python library so that the C/C++ side is the part that is parallel.

This is why all of the web architectures that use Python in the middleware all use multiple processes and not threads.

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

79657305

Date: 2025-06-07 20:39:10
Score: 1
Natty:
Report link

In your case, when previous value is empty, previous in 'dD' returns true.

So in your code, from the first part, it return flag_di=True

As a result the output is 1.

How to fix?

You can add add some code part that check previous is empty or not.

if previous and car in 'iI' and previous in 'dD':  # Check if previous is not empty
    flag_di = True

Then answer will be 0

Reasons:
  • Whitelisted phrase (-1): In your case
  • RegEx Blacklisted phrase (1.5): How to fix?
  • Has code block (-0.5):
  • Contains question mark (0.5):
  • Low reputation (0.5):
Posted by: Hiroshi Ashikaga

79657303

Date: 2025-06-07 20:37:09
Score: 1
Natty:
Report link

WPF blur control

Here is a REAL WPF background blur. use the BackgroundPresenter, and use BlurEffect on it.

public class BackgroundPresenter : FrameworkElement
{
    private static readonly FieldInfo _drawingContentOfUIElement = typeof(UIElement)
        .GetField("_drawingContent", BindingFlags.Instance | BindingFlags.NonPublic)!;

    private static readonly FieldInfo _contentOfDrawingVisual = typeof(DrawingVisual)
        .GetField("_content", BindingFlags.Instance | BindingFlags.NonPublic)!;

    private static readonly Func<UIElement, DrawingContext> _renderOpenMethod = typeof(UIElement)
        .GetMethod("RenderOpen", BindingFlags.Instance | BindingFlags.NonPublic)!
        .CreateDelegate<Func<UIElement, DrawingContext>>();

    private static readonly Action<UIElement, DrawingContext> _onRenderMethod = typeof(UIElement)
        .GetMethod("OnRender", BindingFlags.Instance | BindingFlags.NonPublic)!
        .CreateDelegate<Action<UIElement, DrawingContext>>();

    private static readonly GetContentBoundsDelegate _methodGetContentBounds = typeof(VisualBrush)
        .GetMethod("GetContentBounds", BindingFlags.Instance | BindingFlags.NonPublic)!
        .CreateDelegate<GetContentBoundsDelegate>();

    private delegate void GetContentBoundsDelegate(VisualBrush visualBrush, out Rect bounds);
    private readonly Stack<UIElement> _parentStack = new();

    private static void ForceRender(UIElement target)
    {
        using DrawingContext drawingContext = _renderOpenMethod(target);

        _onRenderMethod.Invoke(target, drawingContext);
    }

    private static void DrawVisual(DrawingContext drawingContext, Visual visual, Point relatedXY)
    {
        var visualBrush = new VisualBrush(visual);
        _methodGetContentBounds.Invoke(visualBrush, out var contentBounds);

        drawingContext.DrawRectangle(
            visualBrush, null,
            new Rect(relatedXY.X + contentBounds.X, contentBounds.Y, contentBounds.Width, contentBounds.Height));
    }

    protected override Geometry GetLayoutClip(Size layoutSlotSize)
    {
        return new RectangleGeometry(new Rect(0, 0, ActualWidth, ActualHeight));
    }

    protected override void OnVisualParentChanged(DependencyObject oldParentObject)
    {
        if (oldParentObject is UIElement oldParent)
        {
            oldParent.LayoutUpdated -= ParentLayoutUpdated;
        }

        if (Parent is UIElement newParent)
        {
            newParent.LayoutUpdated += ParentLayoutUpdated;
        }
    }

    private void ParentLayoutUpdated(object? sender, EventArgs e)
    {
        // cannot use 'InvalidateVisual' here, because it will cause infinite loop

        ForceRender(this);

        Debug.WriteLine("Parent layout updated, forcing render of BackgroundPresenter.");
    }

    private static void DrawBackground(
        DrawingContext drawingContext, UIElement self,
        Stack<UIElement> parentStackStorage,
        int maxDepth,
        bool throwExceptionIfParentArranging)
    {
#if DEBUG
        bool selfInDesignMode = DesignerProperties.GetIsInDesignMode(self);
#endif

        var parent = VisualTreeHelper.GetParent(self) as UIElement;
        while (
            parent is { } &&
            parentStackStorage.Count < maxDepth)
        {
            // parent not visible, no need to render
            if (!parent.IsVisible)
            {
                parentStackStorage.Clear();
                return;
            }

#if DEBUG
            if (selfInDesignMode &&
                parent.GetType().ToString().Contains("VisualStudio"))
            {
                // 遍历到 VS 自身的设计器元素, 中断!
                break;
            }
#endif

            // is parent arranging
            // we cannot render it
            if (parent.RenderSize.Width == 0 ||
                parent.RenderSize.Height == 0)
            {
                parentStackStorage.Clear();

                if (throwExceptionIfParentArranging)
                {
                    throw new InvalidOperationException("Arranging");
                }

                // render after parent arranging finished
                self.InvalidateArrange();
                return;
            }

            parentStackStorage.Push(parent);
            parent = VisualTreeHelper.GetParent(parent) as UIElement;
        }

        var selfRect = new Rect(0, 0, self.RenderSize.Width, self.RenderSize.Height);
        while (parentStackStorage.TryPop(out var currentParent))
        {
            if (!parentStackStorage.TryPeek(out var breakElement))
            {
                breakElement = self;
            }

            var parentRelatedXY = currentParent.TranslatePoint(default, self);

            // has render data
            if (_drawingContentOfUIElement.GetValue(currentParent) is { } parentDrawingContent)
            {
                var drawingVisual = new DrawingVisual();
                _contentOfDrawingVisual.SetValue(drawingVisual, parentDrawingContent);

                DrawVisual(drawingContext, drawingVisual, parentRelatedXY);
            }

            if (currentParent is Panel parentPanelToRender)
            {
                foreach (UIElement child in parentPanelToRender.Children)
                {
                    if (child == breakElement)
                    {
                        break;
                    }

                    var childRelatedXY = child.TranslatePoint(default, self);
                    var childRect = new Rect(childRelatedXY, child.RenderSize);

                    if (!selfRect.IntersectsWith(childRect))
                    {
                        continue; // skip if not intersecting
                    }

                    if (child.IsVisible)
                    {
                        DrawVisual(drawingContext, child, childRelatedXY);
                    }
                }
            }
        }
    }

    public static void DrawBackground(DrawingContext drawingContext, UIElement self)
    {
        var parentStack = new Stack<UIElement>();
        DrawBackground(drawingContext, self, parentStack, int.MaxValue, true);
    }

    protected override void OnRender(DrawingContext drawingContext)
    {
        DrawBackground(drawingContext, this, _parentStack, MaxDepth, false);
    }

    public int MaxDepth
    {
        get { return (int)GetValue(MaxDepthProperty); }
        set { SetValue(MaxDepthProperty, value); }
    }

    public static readonly DependencyProperty MaxDepthProperty =
        DependencyProperty.Register("MaxDepth", typeof(int), typeof(BackgroundPresenter), new PropertyMetadata(64));
}

Code repository: SlimeNull/BlurBehindTest

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

79657292

Date: 2025-06-07 20:23:06
Score: 0.5
Natty:
Report link

A little late here but you can add OLLAMA_HOST to the containerEnv block in your devcontainer.json and it'll open that port for ollama.

{
  "name, etc...": "My Container",

  "containerEnv": {
    "OLLAMA_HOST": "http://host.docker.internal:11434"
  }
}
Reasons:
  • Low length (0.5):
  • Has code block (-0.5):
  • Low reputation (0.5):
Posted by: gdg

79657287

Date: 2025-06-07 20:11:04
Score: 3.5
Natty:
Report link

Yes, its possible but only through the API object.

https://wiki.genexus.com/commwiki/wiki?48147,Json+Collection+Serialization+property

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

79657282

Date: 2025-06-07 20:01:01
Score: 3.5
Natty:
Report link

I did this. it says

#error

in the textbox

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

79657278

Date: 2025-06-07 19:58:00
Score: 1.5
Natty:
Report link

The ESP32 is an MCU (no LEDs!), so you need to specify what ESP32 board you are using. That defines the LED pin. Look at its datasheet.

If you are using a ESP32 DEVKIT V1 board, then the LED pin in GPIO02: https://randomnerdtutorials.com/esp32-pinout-reference-gpios/

Reasons:
  • Low length (0.5):
  • No code block (0.5):
  • Low reputation (0.5):
Posted by: Vinicius Fortuna

79657273

Date: 2025-06-07 19:50:59
Score: 2.5
Natty:
Report link

Apparently plugin not compatible with new API of Flutter. It solved with implementing of new abstract methods.
CustomCanvas
CustomMaterialLocalization

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

79657271

Date: 2025-06-07 19:49:58
Score: 3.5
Natty:
Report link
Reasons:
  • Low length (1.5):
  • No code block (0.5):
  • Single line (0.5):
  • Low reputation (1):
Posted by: Mohammed ashraf

79657264

Date: 2025-06-07 19:39:56
Score: 4
Natty: 4.5
Report link

After struggling with many solutions from internet, I found a trick to resolve the issue. Set the hostname of the docker to IP address u deploy to. It will generate valid certs. But also set the env NIFI_WEB_HTTPS_PORT=0.0.0.0 so it won't encounter binding error

Reasons:
  • Blacklisted phrase (1.5): any solution
  • Low length (0.5):
  • No code block (0.5):
  • Single line (0.5):
  • Low reputation (1):
Posted by: Đức Huy Nguyễn

79657245

Date: 2025-06-07 19:02:48
Score: 2.5
Natty:
Report link

In the official documentation, I have read that if you extend PanacheEntityBase instead of PanacheEntity, you can not use default methods, which you do correctly.

I have two answers for your question:

one can you please add type parameter to your PanacheEntityBase like.

public class PersonRepository implements PanacheRepositoryBase<Person,Integer>

Here is the source:

https://quarkus.io/guides/hibernate-orm-panache

If it does not work, please try parameter binding:

public static Person findById(Long id) {
    return find("id = ?1", id).firstResult();
}

Please let me know, so I can edit the answer with correct version.

Thanks.

Reasons:
  • Blacklisted phrase (0.5): Thanks
  • RegEx Blacklisted phrase (2.5): Please let me know
  • Long answer (-0.5):
  • Has code block (-0.5):
  • Low reputation (0.5):
Posted by: Murat K.

79657241

Date: 2025-06-07 18:53:46
Score: 0.5
Natty:
Report link

I successfully configured and debugged the ActiveX component via w3wp.exe.

My VM environment contains:

Windows Server 2019

Visual Studio 2019

Visual Basic 6.0

IIS 10.0.17763.1

Setup steps:

  1. In regedit.exe find Clsid of my ActiveX component MyVbpProj.MyClass in HKEY_CLASSES_ROOT\MYVBPPROJ.MYCLASS\Clsid (e.g. {16731801-1C28-4A19-A127-123093BA1A1C})

  2. In regedit.exe add in HKEY_LOCAL_MACHINE\SOFTWARE\Microsoft\Ole:

    "LegacyAuthenticationLevel"=dword:00000001

    "LegacyImpersonationLevel"=dword:00000003

  3. Reboot VM

  4. Config IIS pool to Curent user. Go to IIS Manager > Application Pools

  5. Select MyIISAppPool pool in list, click Advanced Settings in contex menu

  6. In Advanced Settings window set Identity select Custom account and fill: user name, password and click OK button

  7. Restart IIS server (run in CMD: iisreset)

  8. Open project MyVbpProj.vbp with ActiveX component MyVbpProj.MyClass

  9. In top menu File, then Make MyVbpProj.dll... submenu item

  10. In top menu Project then MyVbpProj Properties... submenu item

  11. In MyVbpProj - Project Properties windows, on General tab set Project Type = ActiveX DLL and select checkboxs: Unattended Execution, Upgrade ActiveX Controls, Retained In Memory

  12. In MyVbpProj - Project Properties windows, on Debugging tab select radiobox Wait for components to be created, then select checkbox Use existing browser and click OK button

  13. Open some class and add breakpoint for debugging in which method

  14. Run debug in Visual Basic 6.0

  15. In dcomcnfg.exe app set pemision for DCOM with clsid {16731801-1C28-4A19-A127-123093BA1A1C} (for ActiveX component MyVbpProj.MyClass), and after every run debug in Visual Basic 6.0

  16. Go to Component Services > Computers > My Computer > DCOM config

  17. Select in right grid item with name {16731801-1C28-4A19-A127-123093BA1A1C} and click Properties in contex menu

  18. In {16731801-1C28-4A19-A127-123093BA1A1C} Properties windows, on Security tab for all groups: Launch and Activation Permissions, Access Permissions, Configuration Permissions select Customize radiobox and click Edit... button

  19. Everyone user and Allow all permissions for Everyone user

  20. In all permissions windows on Security tab, add Everyone user and select all permissions checkboxs Allow for Everyone user and click OK button

  21. In my case, HKEY_CLASSES_ROOT\AppID\{16731801-1C28-4A19-A127-123093BA1A1C} contains:

    "AppID"="{16731801-1C28-4A19-A127-123093BA1A1C}"

    "RunAs"="Interactive User"

    "LaunchPermission"=hex:01,00,some values,14,00

    "AccessPermission"=hex:01,00,some values,14,00

  22. Call in browser go to ASP page with Server.CreateObject("MyVbpProj.MyClass") and then go to the page with the method you are debugging

P.S. In case of an error occurring with the name of other ActiveX components from vbp projects. Load their vbp projects, go top menu File, then Make MyOtherLibs.dll... submenu item. Then restart VM and repeat the steps starting from the step of run debugging and other steps. Use debug with multy existing projects (In top menu File then Add Projects... submenu item)

P.S. In case of freezing or IIS error on Component Services > Computers > My Computer click Properties in context menu, on COM Security tab for all groups click Edit Limits... and Edit Default... and add Everyone user, then select all permissions checkboxs Allow for Everyone user and click OK button

Reasons:
  • Long answer (-1):
  • No code block (0.5):
  • Low reputation (1):
Posted by: Міша Джага

79657222

Date: 2025-06-07 18:11:37
Score: 0.5
Natty:
Report link

Based on the @krnitheesh16 answer, I downgraded my EDM to the following version and it fixed the issue.
"com.google.external-dependency-manager": "1.2.181",

Reasons:
  • Low length (1):
  • Has code block (-0.5):
  • User mentioned (1): @answer
  • High reputation (-1):
Posted by: AminSojoudi

79657220

Date: 2025-06-07 18:10:37
Score: 1
Natty:
Report link
urlpatterns = [
    path('', include('home.urls')),  # Change to ads.urls
    path('ads/', include('ads.urls')),
    path('admin/', admin.site.urls),# Keep
    path('accounts/', include('django.contrib.auth.urls')),  # Keep
    re_path(r'^oauth/', include('social_django.urls', namespace='social')),  # Keep
    path('logout/', LogoutView.as_view(next_page=reverse_lazy('ads:all')), name='logout'),
]

It says you have to change the home.urls path to ads.urls. Not add ads.urls.
Reasons:
  • Has code block (-0.5):
  • Unregistered user (0.5):
  • Low reputation (1):
Posted by: user30746018

79657219

Date: 2025-06-07 18:08:37
Score: 0.5
Natty:
Report link

This behavior is expected in Playwright. When a test fails and gets retried, the entire test file is reloaded, which means all module-level code and the beforeAll hook run again. This is intentional, to guarantee isolation and ensure no state leaks between runs. That’s why your generated values and seeded data change on retry—the file is essentially being re-executed from scratch. To avoid this, you’ll need to move data seeding out of beforeAll and into something that persists outside the test lifecycle, like globalSetup, or write and reuse data from external storage like a temp file or database. If your tests depend on strict sequencing and shared state, consider collapsing them into a single test() block with test.step() calls so retries don’t reset the shared context. Also note that module-level code may run more than once even during initial test discovery, so avoid relying on it for any one-time setup.

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

79657214

Date: 2025-06-07 17:58:34
Score: 2.5
Natty:
Report link

I needed this functionality as well for a Linux program that would respond immediately to user input, and was able to locate it within the cpp-terminal library. Its keys.cpp example shows how the library can immediately react to users' keypresses. I imagine the same code works across platforms, but you'd have to test it out.

Reasons:
  • Blacklisted phrase (0.5): I need
  • Low length (0.5):
  • No code block (0.5):
  • Single line (0.5):
  • Low reputation (0.5):
Posted by: KBurchfiel

79657212

Date: 2025-06-07 17:57:34
Score: 1.5
Natty:
Report link
recurrent  network need parameter iterations:

net.train([
      {input: "Feeling good.", output: "positive"},
    
      {input: "I'm feeling pity for m action.", output: "negative"}
    ],{iterations: 100});
Reasons:
  • Low length (0.5):
  • Has code block (-0.5):
  • Unregistered user (0.5):
  • Low reputation (1):
Posted by: Nito

79657204

Date: 2025-06-07 17:39:30
Score: 0.5
Natty:
Report link

I had the same issue. I noticed it was a display issue with the terminal as resizing the window corrected the output. I changed these settings as indicated by a user in this thread.

Set the following to both true or both false:
"terminal.integrated.windowsUseConptyDll": true,
"terminal.integrated.windowsEnableConpty": true

Reasons:
  • Whitelisted phrase (-1): I had the same
  • No code block (0.5):
  • Low reputation (1):
Posted by: mortavous

79657195

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

you can find some free web site template.

free website templates

this can use you quick create a website

Reasons:
  • Low length (1.5):
  • No code block (0.5):
  • Low reputation (1):
Posted by: darian诸葛

79657194

Date: 2025-06-07 17:27:27
Score: 2
Natty:
Report link

The solution would be to create a new repository that is private because of the security reasons from the forked branch that bk2204 mentioned. The easiest solution would be to use GitHub "import code from another repository" option and enter in your public fork. You could also just download a zip of your repo and upload it to a new private repo

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

79657188

Date: 2025-06-07 17:16:24
Score: 1
Natty:
Report link

I was just trying to do the same thing! NixOS wiki has a solution here, it seems like you just need to substitute the package path for chmod. Here's the rule that ended up working for me:

services.udev.extraRules = ''
  ACTION=="add", SUBSYSTEM=="backlight", RUN+="${pkgs.coreutils}/bin/chmod g+w \$sys\$devpath/brightness"
  '';
Reasons:
  • Blacklisted phrase (1): trying to do the same
  • Has code block (-0.5):
  • Low reputation (0.5):
Posted by: Morgan H