79463689

Date: 2025-02-24 13:33:43
Score: 1.5
Natty:
Report link

Regarding Quarkus.io/guides/all-config : https://quarkus.io/guides/all-config#quarkus-vertx-http_quarkus-http-host

In dev/test mode this defaults to localhost, in prod mode this defaults to 0.0.0.0 As an exception, when running in Windows Subsystem for Linux (WSL), the HTTP host defaults to 0.0.0.0 even in dev/test mode since using localhost makes the application inaccessible.

It means that even if it displays "Listening on: http://localhost:9080", Quarkus actually binds all interfaces

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

79463688

Date: 2025-02-24 13:33:43
Score: 0.5
Natty:
Report link

Sometimes, it seems, one needs to spend time to ask the question in order to find the answer themselves...

I tried a final search, and it seems that, even though Waffle 3.5.0 is from very recently, it is not upgraded to work with Java 17. Instead, there is a separate depencency called "waffle-jna-jakarta" that works with jakarta instead.

I guess the regular Waffle for javax.servlet is still updated for posterity.

    <dependency>
        <groupId>com.github.waffle</groupId>
        <artifactId>waffle-jna-jakarta</artifactId>
        <version>3.0.0</version>
    </dependency>

was the answer.

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

79463683

Date: 2025-02-24 13:32:42
Score: 6.5 🚩
Natty: 5
Report link

I'm having the same problem. I don't know if it's unsupported or not. But the way I solve it is to create a normal node in between 2 map-reduce sections and it works!

Reasons:
  • Blacklisted phrase (1): I'm having the same problem
  • Low length (1):
  • No code block (0.5):
  • Me too answer (2.5): I'm having the same problem
  • Single line (0.5):
  • Low reputation (1):
Posted by: Chatrtham Chatramornrat

79463682

Date: 2025-02-24 13:32:42
Score: 0.5
Natty:
Report link

Use alpinejs-xcomponent

https://github.com/lmanukyan/alpinejs-xcomponent

<script src="https://unpkg.com/[email protected]/alpine-components.min.js"></script>
<script defer src="https://unpkg.com/[email protected]/dist/cdn.min.js"></script>

<div x-data="{
    countries: [
        {name: 'Russia', area: 17098246, population: 146150789},
        {name: 'Canada', area: 9984670, population: 41465298},
        {name: 'China', area: 9596960, population: 1408280000},
        {name: 'United States', area: 9525067, population:  340110988},
        {name: 'Brazil', area: 8510346, population:  212583750}
    ]
}">
    <table border="1">
        <tr>
            <th>Name</th>
            <th>Area</th>
            <th>Population</th>
        </tr>
        <template x-for="country in countries">
            <tr x-data="template('country-item')" x-bind="bind" x-model="country"></tr>
        </template>
    </table>
</div>

<template id="country-item">
    <td x-text="props.name"></td>
    <td x-text="props.area"></td>
    <td x-text="props.population"></td>
</template>

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

79463678

Date: 2025-02-24 13:31:42
Score: 2
Natty:
Report link

It 2025 and still sees javascript objects naming with first letter being capital, it not a problem for many but very disastrous to beginners studying javascript. The language is too dynamic, enabling misunderstandings all over. As in contrast to c++, you gain complete understanding of how objects behave.

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

79463668

Date: 2025-02-24 13:25:40
Score: 1
Natty:
Report link

Method 1

Add the following code to your theme's functions.php file...

add_action('template_redirect', function() {
$urls_to_404 = [
    '/example-page/',    // Replace Url
    '/example-page 2/',
];

$current_url = $_SERVER['REQUEST_URI'];

foreach ($urls_to_404 as $url) {
    if (trailingslashit($current_url) === trailingslashit($url)) {
        global $wp_query;
        $wp_query->set_404();
        status_header(404);
        nocache_headers();
        include(get_query_template('404'));
        exit;
    }
} });

Method 2

Using a Redirect Plugin Install "Redirection" plugin. Go to Tools > Redirection. Add a new redirect:

Source URL: /example-page/

Target URL: 404 (select "Do nothing" and check "404 Not Found").

Plugin Url https://wordpress.org/plugins/redirection/ enter image description here

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

79463667

Date: 2025-02-24 13:25:40
Score: 3
Natty:
Report link

Update: Poetry >2.0 now supports PEP standard project settings in pyproject.toml

Check out:

https://python-poetry.org/blog/announcing-poetry-2.0.0/

https://python-poetry.org/docs/pyproject/

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

79463664

Date: 2025-02-24 13:23:40
Score: 1.5
Natty:
Report link

The easiest solution would be to use https://github.com/freedomofpress/dangerzone - it basically renders input PDF (or makes it PDF first if necessary) and than output rendered pixels as new PDF.

The upside - no JS and other crap can survive the process. The downside - you loose clickable links, copyable text etc.

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

79463663

Date: 2025-02-24 13:23:39
Score: 6.5 🚩
Natty: 4.5
Report link

I'm having the exact same issue as the OP, only I don't have a .pnp file anywhere. What is that file exactly? Is it related to PNPM, Yarn, etc?

Reasons:
  • Low length (1):
  • Has code block (-0.5):
  • Me too answer (2.5): I'm having the exact same issue
  • Ends in question mark (2):
  • Single line (0.5):
  • Low reputation (1):
Posted by: Andrew Jones

79463659

Date: 2025-02-24 13:22:39
Score: 1.5
Natty:
Report link

Don't use unsafe inline at all; rather put all js and css into separate files, then use script and style src as self.

If you need any external css or js, then add these links to your CSP. It's safer. Also avoid putting JavaScript like onClick and such in your HTML code. Just put an ID and do it in an external js.

Reasons:
  • Blacklisted phrase (1): these links
  • Has code block (-0.5):
  • Low reputation (1):
Posted by: Aleksander Karabtsuk

79463651

Date: 2025-02-24 13:18:38
Score: 1
Natty:
Report link

Refer to the docs: https://github.com/sidekiq/sidekiq/wiki/Using-Redis

You must either set REDIS_URL env variable to the url of the redis instance, or set the variable REDIS_PROVIDER to the name of the variable containing that url, e.g.: REDIS_PROVIDER=REDISCLOUD_URL

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

79463630

Date: 2025-02-24 13:10:36
Score: 1.5
Natty:
Report link

Another open source project. Tested in 2025 with https. Very simple : only one php file, less then 400 lines of code.

The advantage of this project is that it proxifies recursively the resources within web pages (images, css, scripts)

https://github.com/mcnemesis/proxy.php

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

79463629

Date: 2025-02-24 13:10:35
Score: 6.5 🚩
Natty:
Report link

Getting an error on the ingErrors,displin (the error is on the comma) in the cmd. Any ideas?

Reasons:
  • Blacklisted phrase (1): Any ideas
  • Low length (1):
  • No code block (0.5):
  • Ends in question mark (2):
  • Unregistered user (0.5):
  • Single line (0.5):
  • Low reputation (1):
Posted by: user29778088

79463627

Date: 2025-02-24 13:10:35
Score: 0.5
Natty:
Report link

Addition to @jcomeau_ictx 's answer,

classes: $(SOURCES)
    javac -d obj \
     -cp $(ANDROID) \
     src/com/example/hello_world/*.java

would result in clean output.

I am not well versed in java, but after reading java docs, I am able to interpret that -bootclasspath option is depreceated in JDK 9+

--boot-class-path path or -bootclasspath path Overrides the location of the bootstrap class files. Note: This can only be used when compiling for releases prior to JDK 9. As applicable, see the descriptions in --release, -source, or -target for details. For JDK 9 or later, see --system.

Why -classpath works?

--class-path path, -classpath path, or -cp path Specifies where to find user class files and annotation processors. This class path overrides the user class path in the CLASSPATH environment variable.

Since we need to use android.jar, we can add it to classpath and let JVM know that android package exists.

Note: My explanation may not be correct or well explanatory since I am new to java and android

References:

  1. what is classpath?
  2. Build APK from CLI
Reasons:
  • RegEx Blacklisted phrase (1.5): I am new
  • Long answer (-1):
  • Has code block (-0.5):
  • Contains question mark (0.5):
Posted by: Faraaz Kurawle

79463625

Date: 2025-02-24 13:09:35
Score: 1
Natty:
Report link

It seems that your Vault is overriden by Git. Try this in your application.yml:

...
    spring:
...
      cloud:
        config:
          allowOverride: false
          overrideNone: true
...

see: https://docs.spring.io/spring-cloud-config/reference/server/environment-repository/using-bootstrap-to-override-properties.html

Reasons:
  • Whitelisted phrase (-1): Try this
  • Probably link only (1):
  • Low length (0.5):
  • Has code block (-0.5):
  • Low reputation (1):
Posted by: Pavlo.P

79463621

Date: 2025-02-24 13:08:34
Score: 5.5
Natty:
Report link

Im having the same issue the closest ive come is manually running in terminal but for me it dosent even work in PyCharm

Reasons:
  • Low length (1):
  • No code block (0.5):
  • Me too answer (2.5): having the same issue
  • Single line (0.5):
  • Low reputation (1):
Posted by: Jacob Strange

79463620

Date: 2025-02-24 13:07:34
Score: 2
Natty:
Report link

If I understand your question correctly this can be easily done by double clicking on the data band. A popup should appear with a box labeled 'Number of Records' to the desired number of records. This is using Fastreport VCL but I would expect Fastreport FMX would work the same.

enter image description here

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

79463618

Date: 2025-02-24 13:06:34
Score: 0.5
Natty:
Report link

Unfortunately at the time of this writing (2025-02-24) Central Package Management (CPM) does not support the old style csproj, so in essence .NET Framework projects are not supported.

[Feature]: Add support for central package management to Visual Studio Package Manager UI for legacy projects

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

79463614

Date: 2025-02-24 13:04:33
Score: 5.5
Natty:
Report link

Which environment are you using for your chatbot? Your tenants default environment or a extra environment for your chatbot and associated flows?

Reasons:
  • Low length (1):
  • No code block (0.5):
  • Ends in question mark (2):
  • Single line (0.5):
  • Starts with a question (0.5): Which
  • Low reputation (1):
Posted by: user29777961

79463610

Date: 2025-02-24 13:04:33
Score: 1.5
Natty:
Report link

No need for explicit closing: WebClient is thread-safe and does not require explicit closing, as it is managed by Reactor Netty. There is no need to close it unless you are using custom resources.

Connection management in Reactor Netty: If you are using the standard WebClient, resources and connection pool are managed automatically. For custom resources, such as ConnectionProvider, they must be closed manually when the application is terminated.

Recommendations for long-lived applications: For Telegram bots, create one instance of WebClient, reuse it, and configure connection parameters via ConnectionProvider if necessary.

Reasons:
  • Long answer (-0.5):
  • No code block (0.5):
  • Self-answer (0.5):
  • Low reputation (1):
Posted by: Глеб Кудрявцев

79463609

Date: 2025-02-24 13:04:33
Score: 0.5
Natty:
Report link

In order not to use floats and not to clear the float, you can apply the margin. This will work with old CSS versions as well.

table {
   width: auto;
   margin-left: auto; /* This pushes the table to the right */
   margin-right: 0;
}
Reasons:
  • Low length (0.5):
  • Has code block (-0.5):
  • Low reputation (0.5):
Posted by: mazy

79463603

Date: 2025-02-24 13:02:32
Score: 2
Natty:
Report link

Once you find it is easy:

Just don't select the word you want to find. Put the cursor in it, then search. The whole word will still be searched for but the checkbox remains blank:

enter image description here

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

79463600

Date: 2025-02-24 13:02:32
Score: 0.5
Natty:
Report link

Drizzle ORM does not work at runtime on Cloudflare Pages but works on Vercel Cloudflare Pages (Edge Runtime): Limitations of Edge Runtime: Cloudflare Pages deploys your API routes and Server Actions as Edge Functions (Cloudflare Workers). These workers run in an environment that does not support many Node.js APIs such as:

fs (file system access) net (TCP connections) Drizzle ORM relies on these modules to load migration files and establish direct database connections. Therefore, if you try to use Drizzle ORM for runtime queries on Cloudflare Pages, you will encounter errors because the necessary Node.js modules are missing in the Edge Runtime.

What You Can Do Instead:

Schema Management: You can still use Drizzle ORM locally for schema management and migration generation. Use drizzle-kit to generate and apply migrations to your Supabase database. Database Queries at Runtime: Since direct database connections via Drizzle are not feasible on Cloudflare Pages, you should use the Supabase REST API (or another compatible edge-friendly adapter like Prisma Data Proxy) to perform runtime queries. This allows you to interact with your database without relying on Node.js-specific modules. Vercel (Node.js Runtime): Full Node.js Support: Vercel’s default runtime for API routes and Server Components is the Node.js Runtime, which supports all Node.js modules (including fs, net, etc.). This means Drizzle ORM can be used for both schema management and runtime queries on Vercel without encountering the limitations present in Edge Runtime environments. Developer Experience: With Vercel, you benefit from full support for Node.js APIs, making it straightforward to use ORMs like Drizzle ORM for type-safe, direct database access in your Next.js application. Summary: Cloudflare Pages:

Runtime: Edge Runtime (Cloudflare Workers) Issue: Lacks Node.js modules like fs and net required by Drizzle ORM Workaround: Use Drizzle ORM for migration/schema management only; for runtime queries, rely on the Supabase REST API or an edge-compatible solution like Prisma Data Proxy. Vercel:

Runtime: Node.js Runtime Advantage: Full Node.js API support allows you to use Drizzle ORM both for migrations and runtime database queries. In short, if you plan to deploy on Cloudflare Pages, you won’t be able to use Drizzle ORM for runtime operations due to the limitations of the Edge Runtime. You can still use it for managing your schema, but for data queries you'll need an alternative approach. Conversely, deploying on Vercel provides a Node.js environment where Drizzle ORM works as expected.

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

79463597

Date: 2025-02-24 13:01:32
Score: 1.5
Natty:
Report link

I tried the solution, but changing the type and the daemonize does not resolve the problem. I tried a lot of different ways but the error still persists. Then I ran the pkill -f frappe-bench command and the error was resolved. I believe this would be helpful.

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

79463596

Date: 2025-02-24 13:01:32
Score: 1
Natty:
Report link

I closed visual studio code and re-opened it and that solved the problem. I am not sure why it happened in the first place but probably due to some command in the shell script I was writing and debugging,

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

79463594

Date: 2025-02-24 13:00:32
Score: 0.5
Natty:
Report link

You should update minSdk with higher version. Follow this path to find build.gradle file. android>app>build.gradle. then update the minSdk with higher version

defaultConfig {
    applicationId = "com.example.project_name"
    minSdk = 29
    targetSdk = flutter.targetSdkVersion
    versionCode = flutter.versionCode
    versionName = flutter.versionName
}

For find latest sdk versions, use this link.

Reasons:
  • Blacklisted phrase (1): this link
  • Has code block (-0.5):
Posted by: Dinith

79463593

Date: 2025-02-24 12:59:32
Score: 1
Natty:
Report link

A solution you might try is, go to:

Home > Tools & Settings > Server-wide mail settings > Settings

Limitations on outgoing email messages

The following limits are default. They can be overridden in each service plan and subscription. The limits do not work server-wide, but act as a template for the plans and subscriptions for which no custom limits were specified. Note that switching on the limitation of outgoing email messages can affect the mail server performance. Learn more about limiting outgoing mail

Disable this: Turn on limitations on outgoing email messages

Reasons:
  • Long answer (-0.5):
  • No code block (0.5):
  • Low reputation (1):
Posted by: Γεώργιος Π

79463587

Date: 2025-02-24 12:58:31
Score: 3
Natty:
Report link

thanks to everyone who has helped me.

It actually turned out that the ffmpeg release I installed as an update did not contain the libmp3lame. To fix this, I had to download an alternative release and after deleting the old installation folder, install it in a new folder and set the system path variable again. Simply putting the new release of ffmpeg in the old installation folder did not work, strangely enough. Ffmpeg then insisted that libmp3lame was not installed...

In short, now everything works as it should.

Reasons:
  • Blacklisted phrase (0.5): thanks
  • Blacklisted phrase (1): did not work
  • Long answer (-0.5):
  • No code block (0.5):
  • Self-answer (0.5):
  • Low reputation (1):
Posted by: Ralf Stresow

79463583

Date: 2025-02-24 12:56:31
Score: 1.5
Natty:
Report link

Besides setting the font size with jtable.setFont(jtable.getFont().deriveFont(size)), you also need to set the row height. I find that the font size + 4 works well: jtable.setRowHeight((int) size+4).

Reasons:
  • Low length (0.5):
  • No code block (0.5):
  • Single line (0.5):
Posted by: John Caron

79463582

Date: 2025-02-24 12:56:31
Score: 1.5
Natty:
Report link

We have encountered a similar situation in our projects. All other compilation flags, except for fortify, produce the expected checksec output.

If anyone is interested in verifying whether it works as expected, we have a Minimal, Verifiable, Complete Example (MVCE) available here: Stoppable_MVE

It makes use of memcpy and memmove, which should be fortifiable functions.

The compiler settings file can be found at: compiler_settings.cmake

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

79463581

Date: 2025-02-24 12:55:31
Score: 1.5
Natty:
Report link

I'm not sure why this fixing the issue and it makes no sense to me whatsoever but i set the default database back to master.

I added a USE MyDB before the stored procedure and it works now.

Use MyDB 
Go
Exec MyProc
Reasons:
  • Low length (0.5):
  • Has code block (-0.5):
  • Self-answer (0.5):
  • Low reputation (1):
Posted by: Tommy W Holden

79463580

Date: 2025-02-24 12:55:31
Score: 1.5
Natty:
Report link

I've managed to fix this by going to settings.json and adding the following line:

"terminal.integrated.inheritEnv": true

Restart vscode and you will be good to go.

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

79463574

Date: 2025-02-24 12:53:30
Score: 1
Natty:
Report link

Before installing new project just use this 2 console commands:

gem uninstall concurrent-ruby
gem install concurrent-ruby -v 1.3.4

Then u can easily install your new project and add specific version of this gem in Gemfile.

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

79463572

Date: 2025-02-24 12:53:30
Score: 2
Natty:
Report link

It might be due to some technical error that arose due to some coding issues that were not able to pass the test case. Most of the game development company in UAE have never faced this issue this is possible due to the expert team who has years of experience in developing the games as well as expertise in the latest unreal game development tools.

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

79463570

Date: 2025-02-24 12:52:30
Score: 2.5
Natty:
Report link

You can go to "Settings/Preferences > Editor > General> Appearance" option, and disabling the annoying option (s) should do the trick.

Note : The interface might differ slightly if you are on Windows.

enter image description here

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

79463569

Date: 2025-02-24 12:52:30
Score: 2.5
Natty:
Report link

Okey, problem solved! Python was looking at the local installation of Scipy before looking to the environment installation, raising a dependencies problems. To solve it, you can uninstall Scipy from the local machine (pip uninstall didn't work for me, so I manually remove it from ~/.local/lib/python3.9/site-packages/) or avoid python looking at the local installation with bash export PYTHONNOUSERSITE=1

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

79463565

Date: 2025-02-24 12:51:30
Score: 3
Natty:
Report link

The filter model gets reset to null when using string mode (not sure why). Try turning of strict mode and see if that solves the issue.

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

79463551

Date: 2025-02-24 12:46:28
Score: 5
Natty:
Report link

Eclipse Breadcrumb setting

Did you press this button? Look for "breadcrumb" in settings.

Reasons:
  • Probably link only (1):
  • Low length (1.5):
  • No code block (0.5):
  • Contains question mark (0.5):
  • Single line (0.5):
  • Starts with a question (0.5): Did you
  • Low reputation (0.5):
Posted by: MarcelTon

79463544

Date: 2025-02-24 12:42:27
Score: 2
Natty:
Report link

In PrimeReact for the tree component there is an option to set the selectable property for each node

TreeNode/selectable

Reasons:
  • Low length (1):
  • No code block (0.5):
  • Low reputation (0.5):
Posted by: Георгий Барсегян

79463539

Date: 2025-02-24 12:41:27
Score: 2.5
Natty:
Report link

Not finding a solution, I approached it differently. I created a new endpoint, /mon-compte/vouchers/download. I pass the current language in the arguments of the download button on my /en/mon-compte/voucher page. I handle the click with JS, then send it to the new download endpoint, which is managed in store default language. I retrieve the language passed in the arguments, and this way, I return the corresponding PDF without worrying about the translation plugin

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

79463538

Date: 2025-02-24 12:41:27
Score: 1.5
Natty:
Report link

Check out this sample. Here i used only html and css. Menu will open on click and collapse

[https://codepen.io/kuttisenthil/pen/wBvWOGv][1]
Reasons:
  • Low length (1):
  • Has code block (-0.5):
  • Low reputation (1):
Posted by: senthilkumar

79463533

Date: 2025-02-24 12:38:27
Score: 1.5
Natty:
Report link

When using the Scanner class in Java, one common issue arises when you read an integer followed by a string. This often leads to the string input being skipped. The reason for this is that after you read an integer, there's a newline character left in the input buffer, which can interfere with subsequent inputs.

To solve this problem, you should always follow up your integer input with a call to nextLine(). This method consumes the leftover newline character before you read the string. In simple terms:

  1. Read the integer input.
  2. Immediately after, use nextLine() to clear the buffer.
  3. Then, proceed to read your string input.

Following this approach will help ensure that both your integer and string inputs are read correctly. If you keep these steps in mind, you should be able to avoid any input issues. If you have more questions, feel free to ask!

Reasons:
  • Long answer (-0.5):
  • No code block (0.5):
  • Starts with a question (0.5): When
  • Low reputation (1):
Posted by: Богдан Лямзин

79463526

Date: 2025-02-24 12:36:26
Score: 1.5
Natty:
Report link

words = input().split(" ")

for word in words:

word_count = 0
for word2 in words:

   if word2.lower() == word.lower():
       word_count += 1
print(f'{word} {word_count}')
       

Here is my solution. no imports just a simple nested loop.

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

79463524

Date: 2025-02-24 12:35:26
Score: 0.5
Natty:
Report link

Final solution was removing catch all template:

template <EventId_e EventId, typename... Args>
static void Log(Args... args) {
  LogMessage(static_cast<Args>(args)...);
}

And using this type of template for every ID:

template <EventId_e EventId, typename std::enable_if<EventId == EventId_e::EventId_OverVoltageWarning, int>::type = 0>  void Log(uint16_t MaxCellVoltage, uint16_t MinCellVoltage, int16_t PeakCurrent) { LogMessage(MaxCellVoltage, MinCellVoltage, PeakCurrent); }
Reasons:
  • Has code block (-0.5):
  • Self-answer (0.5):
  • Low reputation (0.5):
Posted by: Sarge324

79463523

Date: 2025-02-24 12:34:25
Score: 3.5
Natty:
Report link

I added

pip3 install pysnmplib

which seems to have fixed it.

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

79463516

Date: 2025-02-24 12:32:25
Score: 3
Natty:
Report link

The Spring WebFlux is thread-safe and designed to be reusable. However, since it uses Reactor Netty under the hood, it is important to consider resource management, especially in long-lived applications.

Reasons:
  • Low length (0.5):
  • No code block (0.5):
  • Self-answer (0.5):
  • Single line (0.5):
  • Low reputation (1):
Posted by: Глеб Кудрявцев

79463514

Date: 2025-02-24 12:31:25
Score: 3.5
Natty:
Report link

I have a similar requirement but have run into some problems.

When I share the html document to microsoft edge I need to confirm that I want it to open the document.

The page formatting is incorrect because the image links do not work.

It looks as though the relative directory structure is lost somehow on the iphone.

Reasons:
  • Blacklisted phrase (0.5): I need
  • RegEx Blacklisted phrase (1): I want
  • No code block (0.5):
  • Unregistered user (0.5):
  • Low reputation (1):
Posted by: Robert

79463512

Date: 2025-02-24 12:29:24
Score: 2
Natty:
Report link

check servie is disabled from power shell or (win - R key -> services.msc) In Windows PowerShell (run as admin): Check the current status of ssh-agent: Get-Service | ?{$_.Name -like 'ssh-agent'} | select -Property Name, StartType, Status Enable the Service if it is disabled: Set-Service -Name ssh-agent -StartupType Manual Start the Service: Start-Service ssh-agent Add your key as before: ssh-add

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

79463509

Date: 2025-02-24 12:25:24
Score: 1
Natty:
Report link

You can use IBAnimatable pod for this feature. We do not have such inbuilt feature in storyboards and give IBAnimatableButton as a class in identity inspector and after that you will find the options as corner radius and font size increase in the storyboard itself.

Reasons:
  • Whitelisted phrase (-1.5): You can use
  • Low length (0.5):
  • No code block (0.5):
  • Single line (0.5):
  • Low reputation (1):
Posted by: mappy

79463502

Date: 2025-02-24 12:23:23
Score: 1
Natty:
Report link

I needed to clear the persistence state when the session ended. I created a simple custom state writer and reader that wrote and read data from sessionStorage instead of localStorage. I was inspired by this documentation.

Here is the code:

const pageTable = new Tabulator("#pagelist-table", {
    pagination:true, //enable pagination
    paginationMode:"local", //enable local pagination
    paginationSize:pageSize, //optional parameter to request a certain number of rows per page
    persistence:{
        sort: true, //persist column sorting
        filter: true, //persist filters
        headerFilter: true, //persist header filters
        group: false, //persist row grouping
        page: true, //persist page
        columns: false, //persist columns
    },
    persistenceWriterFunc:function(id, type, data){
        //id - tables persistence id
        //type - type of data being persisted ("sort", "filter", "group", "page" or "columns")
        //data - array or object of data
        sessionStorage.setItem(id + "-" + type, JSON.stringify(data));
    },
    persistenceReaderFunc:function(id, type){
        //id - tables persistence id
        //type - type of data being persisted ("sort", "filter", "group", "page" or "columns")
        var data = sessionStorage.getItem(id + "-" + type);
        return data ? JSON.parse(data) : false;
    },
    /* The rest of the configuration continues from here */
}

You can see the full working code here.

Reasons:
  • Blacklisted phrase (1): this document
  • Blacklisted phrase (0.5): I need
  • Long answer (-1):
  • Has code block (-0.5):
  • Low reputation (1):
Posted by: Eric Dean Kauffman

79463500

Date: 2025-02-24 12:22:22
Score: 7 🚩
Natty:
Report link

I've recently delved into using the Scanner class in Java for reading user input, but I've stumbled upon a complex issue that has me quite perplexed. While using multiple input methods, such as nextInt(), nextDouble(), and nextLine(), I've noticed that the program sometimes skips user input or behaves unexpectedly. My primary concern is managing the input buffer correctly; after calling nextInt() or nextDouble(), I've seen that the subsequent call to nextLine() often returns empty strings or skips the expected input altogether.

Could anyone provide a detailed explanation of the underlying mechanics of the Scanner class, especially how it interacts with the input buffer? Additionally, I'd like to know if there are specific strategies or techniques to ensure the proper flow of input when mixing different Scanner methods. Are there best practices to follow that can help prevent these skipping issues? Any code snippets illustrating the correct way to handle such scenarios would be incredibly helpful. Thank you in advance for your assistance!

Reasons:
  • Blacklisted phrase (0.5): Thank you
  • RegEx Blacklisted phrase (2.5): Could anyone provide
  • RegEx Blacklisted phrase (3): Thank you in advance
  • Long answer (-1):
  • No code block (0.5):
  • Contains question mark (0.5):
  • Low reputation (1):
Posted by: sad

79463495

Date: 2025-02-24 12:20:21
Score: 5
Natty:
Report link

I got the exact same problem! have you solved it by now. Because i would really like to know how to fix this

Reasons:
  • Blacklisted phrase (2): have you solved it
  • Low length (1):
  • No code block (0.5):
  • Single line (0.5):
  • Low reputation (1):
Posted by: Tjeerd Evers

79463491

Date: 2025-02-24 12:20:21
Score: 1
Natty:
Report link

Finally succeeded using the node-libgpiod package

import pkg from 'node-libgpiod';
const { Chip, Line } = pkg;

global.chip = new Chip(4);
global.line = new Line(chip, 2);

line.requestInputMode();

const cycle = () => {
    const value = line.getValue();
    console.log(value);
};

setInterval(cycle, 50);
Reasons:
  • Low length (0.5):
  • Has code block (-0.5):
  • Self-answer (0.5):
  • Low reputation (0.5):
Posted by: Lapidus

79463486

Date: 2025-02-24 12:18:21
Score: 1.5
Natty:
Report link

You can install it with pip install kivymd2

Source

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

79463480

Date: 2025-02-24 12:15:20
Score: 0.5
Natty:
Report link

I had a similar error.

I noticed in the error it says that deploy keys are disabled for this repository.

So I simply went to the GitHub organization settings for the repository, and enabled Deploy Keys.

After that everything works perfectly.

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

79463477

Date: 2025-02-24 12:14:20
Score: 0.5
Natty:
Report link

Use tsconfig.json to define this like so:

  "compilerOptions": {
    "noUnusedLocals": true,
    "noUnusedParameters": true,

I found that its more correct to set these rules in tsconfig than eslint. This prevents you from getting errors/warnings in type definitions. E.g:

type MyType = {
  fn: (arg: string) => void;
}

Setting:

//es.config.mjs
"no-unused-vars": "warn",

This would give a warning on the arg param in the type above, while setting:

//tsconfig.json
  "compilerOptions": {
    "noUnusedLocals": true,
    "noUnusedParameters": true,

does not

Reasons:
  • Blacklisted phrase (1.5): m getting error
  • Long answer (-0.5):
  • Has code block (-0.5):
Posted by: mTv

79463475

Date: 2025-02-24 12:13:20
Score: 2
Natty:
Report link

The Google Apps Script API requires permission to access 'Google Sheet'. You can create service account from Google IAM, attached that SA to your Google Sheet and Google Apps Script.

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

79463470

Date: 2025-02-24 12:11:19
Score: 3
Natty:
Report link

I think I had a similar issue and the approach below sorted out my worries, please refer to this.

this.myreportname.AsyncRendering = false; myreportname.LocalReport.Refresh();

this sorts out the issue

Reasons:
  • RegEx Blacklisted phrase (1): I think I had a similar issue and the approach below sorted out my worries, please
  • Low length (0.5):
  • No code block (0.5):
  • Low reputation (1):
Posted by: shariff mikangi

79463466

Date: 2025-02-24 12:09:19
Score: 1
Natty:
Report link

Tortoise... doesn't have to be in first 9 places. For example, on my system first 7 places are OneDrive and still works. It is important however that on Windows 11 is in first 11 places. Windows 11 will only allow up to 11 icon overlay identifiers, arranged in alphanumeric order - if there are more than 11, these icons will not be displayed.

Registry shell icon overlay

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

79463464

Date: 2025-02-24 12:08:18
Score: 1
Natty:
Report link

2025 Update:

I was facing the same issue and tried everything mentioned in this thread and more, adding webpack.config.js in the Webstorm settings, jsconfig.json file to my project folder, invalidating cache and manually start reindexing by closing and opening Webstorm but nothing worked.

What worked for me was to initiate Repair IDE feature in Webstorm by going to:

File->Repair IDE

then initiating the repair steps on by one

Refresh Indexable Files->Rescan Project Indexes->Reopen Project->Invalidate Cache and Restart

Reasons:
  • Blacklisted phrase (1): but nothing work
  • Whitelisted phrase (-1): worked for me
  • Long answer (-0.5):
  • No code block (0.5):
  • Low reputation (1):
Posted by: Shashwat Jha

79463459

Date: 2025-02-24 12:07:18
Score: 2
Natty:
Report link

Make sure your app uses a simple version "number" in the format 1.0.0.

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

79463453

Date: 2025-02-24 12:05:18
Score: 0.5
Natty:
Report link

post or postDelayed works better

recyclerView.postDelayed(new Runnable() {
                    @Override
                    public void run() {
                        recyclerView.smoothScrollToPosition(recyclerView.getBottom());
                    }
                },50);
Reasons:
  • Low length (0.5):
  • Has code block (-0.5):
  • Low reputation (0.5):
Posted by: Khalid Lakhani

79463451

Date: 2025-02-24 12:05:17
Score: 7.5 🚩
Natty: 5.5
Report link

Have you got any solution on this, we are facing the same issue for our app.

Reasons:
  • Blacklisted phrase (1.5): any solution
  • Low length (1.5):
  • No code block (0.5):
  • Me too answer (2.5): facing the same issue
  • Single line (0.5):
  • Low reputation (1):
Posted by: Roshan Patil

79463450

Date: 2025-02-24 12:05:17
Score: 0.5
Natty:
Report link
Codesys inbuilt logger can be used with following settings.

In CodesysControl_User.cfg:

[CmpLog] 
Logger.0.Name=Plc.log --> generic logs of the components
Logger.1.Name=Logger.log --> user defined logs

In CodesysControl.cfg:

[CmpLog] 
Logger.0.Filter=0x0000000F
Logger.0.Enable=1
Logger.0.MaxEntries=100000
Logger.0.MaxFileSize=10000000 
Logger.0.MaxFiles=1
Logger.0.Backend.0.ClassId=0x00000104
Logger.0.Type=0x314

Logger.1.Filter=0xFFFFFFFF
Logger.1.Enable=1
Logger.1.MaxEntries=100000
Logger.1.MaxFileSize=10000000 
Logger.1.MaxFiles=1
Logger.1.Backend.0.ClassId=0x00000104
Logger.1.Type=0x314
Reasons:
  • Long answer (-0.5):
  • Has code block (-0.5):
  • Unregistered user (0.5):
  • Low reputation (1):
Posted by: michael

79463447

Date: 2025-02-24 12:02:16
Score: 3.5
Natty:
Report link

try with your real device it will work perfectly

Reasons:
  • Low length (1.5):
  • No code block (0.5):
  • Single line (0.5):
  • Low reputation (1):
Posted by: Md. Sifatullah

79463444

Date: 2025-02-24 12:01:16
Score: 3.5
Natty:
Report link

Just use convolve and mean:

out = np.convolve(
    np.mean(x, axis=1),
    np.ones(3)/3, mode='valid',
)

P.S. Maybe [5998], not [5997]?

Reasons:
  • Low length (1):
  • Has code block (-0.5):
  • Ends in question mark (2):
  • Low reputation (1):
Posted by: netay

79463421

Date: 2025-02-24 11:50:14
Score: 2.5
Natty:
Report link

Stack Overflow is a great platform for developers to find solutions and share knowledge Whether you need help with coding issues or debugging it is a go-to resource Just like Stack Overflow helps developers a mens leather blazer adds style and elegance to any outfit making it a timeless fashion choice

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

79463418

Date: 2025-02-24 11:49:14
Score: 3
Natty:
Report link

The WebClient in Spring WebFlux is thread-safe and designed to be reusable. However, since it uses Reactor Netty under the hood, it is important to consider resource management, especially in long-lived applications.

Reasons:
  • Low length (0.5):
  • No code block (0.5):
  • Self-answer (0.5):
  • Single line (0.5):
  • Low reputation (1):
Posted by: Глеб Кудрявцев

79463415

Date: 2025-02-24 11:48:13
Score: 6.5 🚩
Natty: 4
Report link

Thanks Mark Adler for your very detailed insights

I'm sorry, but the information given above sounds contradictory to me (maybe I don't understand well enough) First it is said that Method 8 uses the Deflate compression method and then (Method 8 also has a means to effectively store the data with

no compression

and relatively little expansion, and Method 0 cannot be streamed whereas Method 8 can be.) did I get this right? or does "compression" mean something else then deflate.. Im confused Can you please be of any help?

thanks in advance,

sincerely,

Nisang

Reasons:
  • Blacklisted phrase (0.5): Thanks
  • Blacklisted phrase (0.5): thanks
  • Blacklisted phrase (1): any help
  • RegEx Blacklisted phrase (3): thanks in advance
  • Long answer (-0.5):
  • No code block (0.5):
  • Contains question mark (0.5):
  • Low reputation (1):
Posted by: user29776696

79463413

Date: 2025-02-24 11:46:12
Score: 12.5
Natty: 7.5
Report link

did you solve it, i have the same problem ?

Reasons:
  • Blacklisted phrase (1): i have the same problem
  • RegEx Blacklisted phrase (3): did you solve it
  • Low length (1.5):
  • No code block (0.5):
  • Me too answer (2.5): i have the same problem
  • Ends in question mark (2):
  • Single line (0.5):
  • Starts with a question (0.5): did you solve it
  • Low reputation (1):
Posted by: Hamza El-khanchouf

79463407

Date: 2025-02-24 11:44:11
Score: 4.5
Natty:
Report link

I am a rank amateur at this, but I am interested in this topic and tried to make a script to do the job, based on erik's answer. It seems to work, but I worry that I have made some rookie mistake here. Any suggestions? Thank you.

#! /bin/bash
echo "Enter the first directory"
read dir1
echo "Enter the second directory"
read dir2
cd "$dir1" 
find | sort > list1.txt
mv list1.txt "$dir2"
cd "$dir2" 
find | sort > list2.txt
diff list1.txt list2.txt
rm list1.txt
rm list2.txt
echo "All done"
read -rn1
Reasons:
  • Blacklisted phrase (0.5): Thank you
  • RegEx Blacklisted phrase (2): Any suggestions?
  • Long answer (-0.5):
  • Has code block (-0.5):
  • Ends in question mark (2):
  • Low reputation (1):
Posted by: Gabriela Remow

79463403

Date: 2025-02-24 11:42:10
Score: 2.5
Natty:
Report link

No, you don’t need to close WebClient; it’s thread-safe and reusable. It uses Reactor Netty’s connection pool, which manages resources automatically. For long-lived apps like Telegram bots, use a single instance (e.g., define it as a Spring bean) to optimize performance.

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

79463395

Date: 2025-02-24 11:39:10
Score: 1
Natty:
Report link

my problem is solved creating the folder [Temporary ASP.NET Files in ] and then open CMD administrator

C:\Windows\Microsoft.NET\Framework64\v4.0.30319\Aspnet_regiis.exe -ga domain\user
Reasons:
  • Low length (0.5):
  • Has code block (-0.5):
  • Low reputation (1):
Posted by: Edson de Lima Barbosa

79463387

Date: 2025-02-24 11:37:09
Score: 1.5
Natty:
Report link

Why not just use the ucase command? On the serverside...

Data = ucase(Data)

' Continue with validation

Reasons:
  • Low length (1):
  • No code block (0.5):
  • Contains question mark (0.5):
  • Starts with a question (0.5): Why not
  • High reputation (-1):
Posted by: Zeddy

79463383

Date: 2025-02-24 11:36:09
Score: 0.5
Natty:
Report link

The issue arises because the original printReport() function you are using is replacing the entire content of the document.body, which interferes with other parts of your page, such as the popup. This is why after you try to print and cancel the print dialog, the popup no longer behaves as expected and cannot be closed.

Instead of replacing the entire body content, a better approach is to open a new browser window specifically for printing. This way, the content of your main page and popup remains unaffected by the printing process.

When the user clicks the print button, a new window can be opened, and only the printable content (i.e., the table) will be written to that window. The original page (and the popup) will remain intact, and this avoids affecting other interactive elements on your page.

By opening a new window for printing, the original content and functionality of the page (like your popup) are preserved. The user can still interact with the main page and close the popup as usual. Since the print dialog occurs in a separate window, it does not interfere with the UI components of your original page, ensuring that all features (like closing or interacting with the popup) continue to work as expected.

You also need to ensure that your Vue.js popup/modal is being properly controlled using reactive data (like a boolean flag) to open and close the modal. This ensures that the popup can be closed even after the print dialog is canceled.

By following this approach, you can resolve both the printing and popup closing issues without affecting your page's functionality.

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

79463378

Date: 2025-02-24 11:34:08
Score: 1
Natty:
Report link

Software signs the contents of the license file and also includes it within the file. Modifying even a single character invalidates the signature.

When you put a space or newline at the end, it most likely trims the file, ignoring those characters. If you place a letter or digit at the end, it will again be invalid.

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

79463375

Date: 2025-02-24 11:34:08
Score: 2
Natty:
Report link

Figured out why this was happening.

Just don't pass the parameter INT_NUMBER_ASSIGNMENT.

I know this was a dumb thing. I had to actually sit for hours and try with a lot of combination.

Reasons:
  • Low length (0.5):
  • No code block (0.5):
  • Self-answer (0.5):
  • Low reputation (0.5):
Posted by: Aamjit Yanglem

79463367

Date: 2025-02-24 11:32:07
Score: 3.5
Natty:
Report link

{"data":"{"+clicked_branch_link":false,"+is_first_session":false}","device_fingerprint_id":"1421914543822927109","identity_id":"1421914543864823390","link":"https://styleadmin.app.link?%24identity_id=1421914543864823390","session_id":"1422529340733841701"}

Reasons:
  • Low length (0.5):
  • No code block (0.5):
  • Contains question mark (0.5):
  • Has no white space (0.5):
  • Single line (0.5):
  • Low reputation (1):
Posted by: Xebot

79463365

Date: 2025-02-24 11:32:07
Score: 0.5
Natty:
Report link

I've got similar issue recently when connecting Quarkus to my ELK instance with TLS. Quarkus application needs a truststore to validate ELK server's certificate.

And your error may be due to SSLContext error, as even if you configure quarkus.tls.trust-all=true, your elk client may bypass this config and set its own SSLContext, which needs a certificate validation. I can be wrong.

First, you need to set your Elasticsearch cluster following this documentation : https://www.elastic.co/guide/en/elasticsearch/reference/6.8/configuring-tls.html#node-certificates and retrieve the Elasticsearch certificate from your instance.

If needed, you can check with openssl if the certificate is valid:

openssl x509 -in /path/to/elastic-stack-ca.crt -text -noout

Once it's done, import it into a trust-store (instead of the key-store) with keytool:

keytool -import -file elk.crt -alias elk -keystore truststore.p12 -storetype PKCS12 -storepass somePassword

Then update your Quarkus config:

quarkus:
  tls:
    trust-store:
      p12:
        path: /someAbsoultePath/truststore.p12
        password: somePassword
Reasons:
  • Blacklisted phrase (1): this document
  • Long answer (-1):
  • Has code block (-0.5):
  • Low reputation (1):
Posted by: Nayboko

79463360

Date: 2025-02-24 11:31:07
Score: 4.5
Natty:
Report link

How to change checkbox location If i want to display icon first then checkbox like breakpoints view in debug using TreeItemCheckboxState.

Reasons:
  • RegEx Blacklisted phrase (1): i want
  • Low length (1):
  • No code block (0.5):
  • Single line (0.5):
  • Starts with a question (0.5): How to
  • Low reputation (1):
Posted by: Maheswarla Sujatha

79463359

Date: 2025-02-24 11:30:07
Score: 2.5
Natty:
Report link

I have encountered the same problem as you. The msedgedriver.exe I used before was version 132 and everything was normal, but the Edge browser automatically updated to version 133. I downloaded the new msedgedriver133 version and encountered the same error using the same code

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

79463353

Date: 2025-02-24 11:29:06
Score: 9.5
Natty: 7.5
Report link

Where did you get this captcha image from?

Reasons:
  • RegEx Blacklisted phrase (3): did you get this
  • Low length (1.5):
  • No code block (0.5):
  • Ends in question mark (2):
  • Unregistered user (0.5):
  • Single line (0.5):
  • Starts with a question (0.5): Where did you
  • Low reputation (1):
Posted by: Kriti

79463338

Date: 2025-02-24 11:24:04
Score: 5
Natty:
Report link

Is it the DNS cache of your hosting provider or the DNS service that you are using? If you are sure that your records in the DNS it could be that just need some time to let the DNS to propagate. How long are you waiting for for it to take place?

Reasons:
  • Low length (0.5):
  • No code block (0.5):
  • Ends in question mark (2):
  • Single line (0.5):
  • Starts with a question (0.5): Is it the
  • Low reputation (1):
Posted by: Raffaele Bertani

79463334

Date: 2025-02-24 11:23:04
Score: 3
Natty:
Report link

I think I had a similar issue and the approach below sorted out my worries, please refer to this.

this.myreportname.AsyncRendering = false; myreportname.LocalReport.Refresh();

this sorts out the issue

Reasons:
  • RegEx Blacklisted phrase (1): I think I had a similar issue and the approach below sorted out my worries, please
  • Low length (0.5):
  • No code block (0.5):
  • Low reputation (1):
Posted by: shariff mikangi

79463331

Date: 2025-02-24 11:22:04
Score: 2.5
Natty:
Report link

I think "manage_pages" scope is not available on the updated developer api. Please use the correct scope/permission you want to use in your project. For reference please visit: Facebook Developer API Permissions

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

79463330

Date: 2025-02-24 11:22:04
Score: 5.5
Natty: 4.5
Report link

I have problems starting up the 2nd magic function for TensorBoard!

It seems to not exist on my environment for some reason!

Is there any alternative?

Reasons:
  • Blacklisted phrase (1): Is there any
  • Low length (1):
  • No code block (0.5):
  • Ends in question mark (2):
  • Low reputation (1):
Posted by: MARKUS Meister

79463325

Date: 2025-02-24 11:20:02
Score: 10.5 🚩
Natty:
Report link

I am facing the same issue , did you find any solution

Reasons:
  • Blacklisted phrase (1.5): any solution
  • RegEx Blacklisted phrase (3): did you find any solution
  • Low length (1.5):
  • No code block (0.5):
  • Me too answer (2.5): I am facing the same issue
  • Single line (0.5):
  • Low reputation (1):
Posted by: Nasir

79463322

Date: 2025-02-24 11:18:02
Score: 3
Natty:
Report link

If it takes forever - i.e., hours, with no end in sight- you might be running out of resources. I was running out of storage and exceeding my storage quota.

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

79463308

Date: 2025-02-24 11:12:00
Score: 2
Natty:
Report link

I create a template for vue3 + TS + shadcnUI + vite https://github.com/FastShiftAI/vue-ts-vite-shadcn

Tut notice that tailwindv4 has so many bugs,so tailwindv3 in package.json is better choice.

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

79463306

Date: 2025-02-24 11:12:00
Score: 4.5
Natty:
Report link

try:

GET https://api.linkedin.com/v2/userinfo Authorization: Bearer

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

79463304

Date: 2025-02-24 11:11:00
Score: 1.5
Natty:
Report link

async function isConnectionAlive() {
  try {
      await connection.query('SELECT 1');
      return true;
  } catch (err) {
      return false;
  }
}

Reasons:
  • Low length (1):
  • Has code block (-0.5):
  • Low reputation (1):
Posted by: Сергей

79463299

Date: 2025-02-24 11:08:59
Score: 3.5
Natty:
Report link

thank you for giving MapTiler Geocoding a try.

If you are using just backand for geocoding all you need is the MapTiler client library https://www.npmjs.com/package/@maptiler/client

It should be straight forward to get it installed and used, see https://docs.maptiler.com/client-js/geocoding/

Follow the Quickstart exxamples https://docs.maptiler.com/client-js/

Reasons:
  • Blacklisted phrase (0.5): thank you
  • Probably link only (1):
  • Low length (0.5):
  • No code block (0.5):
  • Low reputation (1):
Posted by: Jachym Cepicky

79463295

Date: 2025-02-24 11:06:59
Score: 1
Natty:
Report link

"Il semble que le problème provienne d'une confusion entre le prevout et la sortie de transaction à signer. Assurez-vous que le prevout fait référence à la sortie correcte de la transaction précédente (a6935) plutôt qu'à la transaction en cours de signature. Si ce problème survient fréquemment, une solution possible pourrait être d'ajouter une vérification dans l'API qui valide automatiquement si le prevout correspond bien à une sortie existante avant de signer la transaction. Peut-être que l'implémentation d'un message d'erreur plus explicite dans l'API aiderait à éviter cette confusion.

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

79463290

Date: 2025-02-24 11:05:59
Score: 2
Natty:
Report link

It looks like you’re trying to create a calculator using Tkinter, but there are a couple of issues in your code. First, there’s an error when you try to create the frame using Tk.Frame(root) — you should use Frame instead of Tk.Frame.

Additionally, there are some issues with button placement.

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

79463287

Date: 2025-02-24 11:04:58
Score: 0.5
Natty:
Report link

You should not run Kafka on Windows except for testing purposes.

Due to bugs 6200 and 7889 which are related to log rotation and the way Windows handles open files, preventing rename/move while the file is open, while unix systems do not have this problem -in Unix a file content can be referenced by many file descriptors-

https://issues.apache.org/jira/browse/KAFKA-6200 https://issues.apache.org/jira/browse/KAFKA-7889

kafka server getting crashed on windows environment after certain time

Reasons:
  • Probably link only (1):
  • No code block (0.5):
  • High reputation (-1):
Posted by: Jose Manuel Gomez Alvarez

79463283

Date: 2025-02-24 11:04:58
Score: 1.5
Natty:
Report link

This could also happen when you have a newer version of Python installed (upgraded) since the last time you ran Ansible.

This fixed it for me. brew reinstall ansible ansible-lint

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

79463276

Date: 2025-02-24 11:01:58
Score: 2.5
Natty:
Report link

Kusto now supports the ipv6_lookup plugin.

Reasons:
  • Low length (2):
  • Has code block (-0.5):
  • Single line (0.5):
  • Low reputation (0.5):
Posted by: Maxime Thiebaut

79463275

Date: 2025-02-24 11:00:58
Score: 1
Natty:
Report link

The second aproach is better, because you usually want only one h1 element in each page and h2 is more popular in describing subheadings and dividing the content into major sections. Using proper headings in HTML is very important in SEO. Here are the usecases of each h element in HTML.

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

79463264

Date: 2025-02-24 10:56:57
Score: 1.5
Natty:
Report link

Ok, found the problem:

it needs to be:

    RewriteEngine On
    RewriteCond %{DOCUMENT_ROOT}/$1 !-f
    RewriteRule ^(.+\.png)$ /tiles/fallback.png [L]

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

79463261

Date: 2025-02-24 10:54:56
Score: 4.5
Natty: 5.5
Report link

bonjour, est ce que tu as trouvé une solution car j'ai trouvé le même problème avec aucun message dans le log? Merciii

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