79480730

Date: 2025-03-03 10:18:51
Score: 3.5
Natty:
Report link

I found the issue in my Dao i still referencing the identityUser in usermanager not my custom one

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

79480724

Date: 2025-03-03 10:15:50
Score: 1
Natty:
Report link

It looks like someone has generated configuration from IBSurgeon's Configuration Calculator website for Firebird, and then this configuration was modified without understanding how parameters work.

The first recommendation is to use the original configurations generated by Firebird Configuration Calculator web-site.

Then, do the Simple Insert/Update/Delete test for Firebird, to see what it is the baseline for the general performance. If results of sIUD test will be less than average, consider to use better hardware or VM. If results are higher than average, collect trace and analyze longest SQL queries.

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

79480723

Date: 2025-03-03 10:14:50
Score: 2
Natty:
Report link

This was solved by passing allow_unused=True and materialize_grads=True to grad. That is:

d_loss_params = grad(loss, model.parameters(), retain_graph=True, allow_unused=True, materialize_grads=True)

See discussion on https://discuss.pytorch.org/t/gradient-of-loss-that-depends-on-gradient-of-network-with-respect-to-parameters/217275 for more info.

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

79480719

Date: 2025-03-03 10:10:49
Score: 2
Natty:
Report link

I would suggest adjusting the connector from Oracle to Apache Kafka.

You can refer to the following links for more details:

Using "numeric.mapping": "best_fit" should help, as long as you have specified the precision and scale in your NUMBER type (e.g., NUMBER(5,0)).

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

79480712

Date: 2025-03-03 10:08:48
Score: 3
Natty:
Report link

The problem will be fixed in spring-core 6.2.4 and 6.1.18. Currently published snapshot versions are already addresssing this due to the issue: https://github.com/spring-projects/spring-framework/issues/34514. I have tested it under 6.2.4.SNAPSHOT and it is working as expected. For a workaround on different versions the answer of M. Deinum is solving the issue.

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

79480706

Date: 2025-03-03 10:06:48
Score: 0.5
Natty:
Report link

This error happens because there is no attribute 'checkButtonGroup' in your MainWindow class.

You need to define a checkButtonGroup method to your MainWindow class, something like:

class MainWindow(QMainWindow):
    def __init__(self, parent=None):

    def checkButtonGroup(self):
Reasons:
  • Low length (0.5):
  • Has code block (-0.5):
  • Low reputation (0.5):
Posted by: Qian

79480705

Date: 2025-03-03 10:05:48
Score: 1.5
Natty:
Report link

Afll the solutions were pointing out to the keys in Google Play Console /Test and Release /Setup /App Signing. i added to Firebase both SHA-1 and SHA-256 of my Legacy Key (which has been upgraded about 9 month ago), and now it magically works. i don't think two keys are necessary, but at least one should be.

Reasons:
  • Low length (0.5):
  • Has code block (-0.5):
  • Self-answer (0.5):
  • Single line (0.5):
  • Low reputation (0.5):
Posted by: Tox46

79480698

Date: 2025-03-03 10:04:48
Score: 1
Natty:
Report link

Just run this snippet in the console to prevent a site from overriding the context menu:

document.addEventListener('contextmenu', event => event.stopPropagation(), true);
Reasons:
  • Low length (1):
  • Has code block (-0.5):
  • Low reputation (0.5):
Posted by: Ezra

79480697

Date: 2025-03-03 10:03:47
Score: 1
Natty:
Report link

You cannot pass the token over the websocket in this way.

The line:

const ws = new WebSocket("/ws", pageToken);

Is specifically failing. Replace it with:

const ws = new WebSocket("/ws");

And it will connect.

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

79480696

Date: 2025-03-03 10:03:47
Score: 7 🚩
Natty: 4.5
Report link

@Aminah Nuraini, where should I write that config

Reasons:
  • Blacklisted phrase (1.5): where should I
  • Low length (1.5):
  • No code block (0.5):
  • User mentioned (1): @Aminah
  • Single line (0.5):
  • Looks like a comment (1):
  • Low reputation (1):
Posted by: dili timor

79480694

Date: 2025-03-03 10:02:46
Score: 0.5
Natty:
Report link

I solved this problem by switching adb mdns backend to bonjour.

(File-Settings-Build-Debugger)

Reasons:
  • Whitelisted phrase (-2): I solved
  • Low length (1):
  • No code block (0.5):
  • Low reputation (1):
Posted by: user10732

79480676

Date: 2025-03-03 09:54:45
Score: 2
Natty:
Report link

Thanks for all the replies, appreciate it.

I was wanting to grab the rendered HTML because google doesnt do SEO very well with Blazor SSR and wanted to create static html files and also create a sitemap from the website and then load a static html file if it was a search engine.

I ended up using a aspnet core worker process that runs everyday to call all the possible website links and create all static html file and a sitemap using:

var response = await client.GetAsync(sWebsitePageURL));
response.EnsureSuccessStatusCode();
var content = await response.Content.ReadAsStringAsync();
await File.WriteAllTextAsync(sDIRToSitemap, content);

Thanks for all the input guys

Regards James

Reasons:
  • Blacklisted phrase (0.5): Thanks
  • Blacklisted phrase (1): Regards
  • Long answer (-0.5):
  • Has code block (-0.5):
  • Self-answer (0.5):
  • Low reputation (1):
Posted by: James Horrocks

79480647

Date: 2025-03-03 09:45:43
Score: 2.5
Natty:
Report link

I had the same issue, make sure you have both: border: none; outline: none;

Reasons:
  • Whitelisted phrase (-1): I had the same
  • Low length (1.5):
  • No code block (0.5):
  • Unregistered user (0.5):
  • Low reputation (1):
Posted by: user29867772

79480646

Date: 2025-03-03 09:44:42
Score: 0.5
Natty:
Report link

According to your approach by using group_by and summarise, which can be changed as:

df_summed <- df %>%
  group_by(sample) %>%
  summarise(
    across(starts_with("var"), first),  # Keep first value of abiotic variables
    across(starts_with("species"), sum)  # Sum the species abundance values
  )
Reasons:
  • Low length (0.5):
  • Has code block (-0.5):
  • Low reputation (0.5):
Posted by: Qian

79480644

Date: 2025-03-03 09:43:42
Score: 2
Natty:
Report link

Look who is the owner of the database schema. In Databricks: Tab "Catalog" -> Navigate to your catalog -> navigate to your schema -> Under the tab "Overview" in the section "About this schema" you can see the owner. I assume that there is an unknown owner or a user group that you do not belong to.

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

79480641

Date: 2025-03-03 09:43:42
Score: 0.5
Natty:
Report link

The other solutions were not working for me. Here a more harsh hack, that does the job for me (I'm using weasyprint version 64.0):

import logging
import logging.config
from weasyprint import HTML

# Setup logging configuration
LOGGING_CONFIG = {
    "version": 1,
    "disable_existing_loggers": False,
    "formatters": {
        "simple": {
            "format": "%(levelname)s %(asctime)s %(filename)s %(message)s"
        },
    },
    "handlers": {
        "null_handler": {
            "class": "logging.NullHandler",
        },
        "console": {
            "level": "INFO",
            "class": "logging.StreamHandler",
            "formatter": "simple",
            "stream": "ext://sys.stdout",  # Default to standard output
        },
    },
    "loggers": {
        "fontTools": {
            "level": "ERROR",  # Suppress DEBUG and INFO for fontTools
            "handlers": ["null_handler"],
            "propagate": False
        }
    },
    "root": {
        "handlers": ["console"],
        "level": "INFO",  # Global level set to INFO
    },
}

logging.config.dictConfig(LOGGING_CONFIG)




# Retrieve the logger for fontTools
fonttools_logger = logging.getLogger('fontTools')

# Check if the logger has handlers
has_handlers = bool(fonttools_logger.handlers)

# Print basic configuration details
print(f"Logger for fontTools found: {'Yes' if fonttools_logger else 'No'}")
print(f"Logger level: {logging.getLevelName(fonttools_logger.level)}")
print(f"Has handlers: {'Yes' if has_handlers else 'No'}")
print("Handlers attached to fontTools logger:")
for handler in fonttools_logger.handlers:
    print(f"  - {type(handler).__name__} with level {logging.getLevelName(handler.level)}")

# Check if the logger is set to propagate its messages
print(f"Propagate: {fonttools_logger.propagate}")
Reasons:
  • RegEx Blacklisted phrase (3): not working for me
  • Long answer (-1):
  • Has code block (-0.5):
  • High reputation (-1):
Posted by: mcExchange

79480635

Date: 2025-03-03 09:40:41
Score: 3.5
Natty:
Report link

There was no need to handle onInputQueueCreated() and onInputQueueDestroyed() like NativeActivity does. Using onTouchEvent() onKeyUp() and onKeyDown() solved the issue.

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

79480627

Date: 2025-03-03 09:37:40
Score: 6 🚩
Natty:
Report link

I have found the answer to all my questions. Thanks for the support. The source code is here: https://github.com/Radonoxius/kotlin_native_interop_gradle

Reasons:
  • Blacklisted phrase (0.5): Thanks
  • Probably link only (1):
  • Contains signature (1):
  • Low length (1):
  • No code block (0.5):
  • Self-answer (0.5):
  • Single line (0.5):
  • Low reputation (1):
Posted by: Radon

79480623

Date: 2025-03-03 09:36:40
Score: 1
Natty:
Report link

If you have add path to .zshrc file and the issue persist. Ensure ~/.zprofile should always be sourced by zsh.

If it's not you might want to do it yourself in your .zshrc file.

Add: export PATH="$HOME/.poetry/bin:$PATH" to ~/.zprofile by doing the following

  1. type open ~/.zprofile in terminal
  2. add export PATH="$HOME/.poetry/bin:$PATH" to the opened .zprofile file
  3. Save it CMD+s
  4. In terminal, type source ~/.zprofile to refresh

Now try poetry --version on your terminal.

Reasons:
  • No code block (0.5):
  • Low reputation (0.5):
Posted by: Samuel Tosan Ayo

79480622

Date: 2025-03-03 09:35:40
Score: 1.5
Natty:
Report link

A quick & easy solution, which also includes copying multiple files to multiple directories:

$ ls -db *folders*|xargs -n1 cp -v *files*

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

79480619

Date: 2025-03-03 09:35:40
Score: 0.5
Natty:
Report link

The issue arises when requests are made to the dispatcher with a dot in the parent structure, for example /en.html/something if /en.html is not yet cached. In such cases a bug in the dispatcher will lead to /en.html being served as httpd/unix-directory. A suggested fix from Adobe is to prevent all paths that match "*/*.*/*" from being cached.

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

79480618

Date: 2025-03-03 09:35:39
Score: 6 🚩
Natty:
Report link

Do you have this property set?

quarkus.grpc.server.use-separate-server=false
Reasons:
  • RegEx Blacklisted phrase (2.5): Do you have this
  • Low length (1.5):
  • Has code block (-0.5):
  • Ends in question mark (2):
  • Low reputation (0.5):
Posted by: alesj

79480617

Date: 2025-03-03 09:35:39
Score: 1.5
Natty:
Report link

To access it directly from virutal host. You can either run npm run dev or npm run build accordingly. You can find the difference for the both here.

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

79480596

Date: 2025-03-03 09:20:36
Score: 2
Natty:
Report link

One simple trick I used is to rename all column names with a simple function. Something like df1 column names will have df1_col1 and df2 will have df2_col1. This is not efficient and will spam your execution dag but does the work of you have small dataset. Want to see if anyone have actual resolution

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

79480594

Date: 2025-03-03 09:20:36
Score: 0.5
Natty:
Report link

Your final dataframe df_join will have twice the column col1. once from df1 and from df2. Here is a join that works:

df_join = df1.select("col1").join(df2.select("col2"), df1["col1"] == df2["col2"], "inner")
Reasons:
  • Low length (0.5):
  • Has code block (-0.5):
  • Low reputation (0.5):
Posted by: Lazloo Xp

79480593

Date: 2025-03-03 09:19:35
Score: 4
Natty:
Report link

Please post here working solution, if known. Somewhere I seen al-folio theme solved problem with jekyll-scholar, but switching themes might require a lot of effort.

For ~2 years solution given by Gemma Danks for use Jekyll-Scholar with GH Pages worked, with downgraded ruby version to 2.7.2. Today it stopped working for some arcane reasons.

Github required to upgrade Workflow file: Jekyll.yml given by Gemma:

This request has been automatically failed because it uses a deprecated version of `actions/upload-artifact: v3`

Then after update to v4 it fails to build:

 Run bundle exec jekyll build --baseurl ""
bundler: failed to load command: jekyll (/home/runner/work/photin_web/photin_web/vendor/bundle/ruby/2.7.0/bin/jekyll)
/opt/hostedtoolcache/Ruby/2.7.2/x64/lib/ruby/gems/2.7.0/gems/bundler-2.4.22/lib/bundler/runtime.rb:304:in `check_for_activated_spec!': You have already activated uri 0.10.0, but your Gemfile requires uri 1.0.3. Since uri is a default gem, you can either remove your dependency on it or try updating to a newer version of bundler that supports uri as a default gem. (Gem::LoadError)
    from /opt/hostedtoolcache/Ruby/2.7.2/x64/lib/ruby/gems/2.7.0/gems/bundler-2.4.22/lib/bundler/runtime.rb:25:in `block in setup'

On local server, bundle exec jekyll serve works fine, as far as I understand it use bundler 2.3.5, whereas GH Pages tries to use 2.4.22, and maybe this is why it fails to build GH Pages.

How to set bounty for solving this persistent jekyll-scholar issue with GH Pages?

Reasons:
  • RegEx Blacklisted phrase (2.5): Please post
  • Long answer (-1):
  • Has code block (-0.5):
  • Ends in question mark (2):
  • Low reputation (1):
Posted by: Photin LLC

79480589

Date: 2025-03-03 09:17:35
Score: 3
Natty:
Report link

I am using the Mistral API key from the Mistral dashboard. For me, I just updated the API key, and it started working.

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

79480588

Date: 2025-03-03 09:17:34
Score: 13 🚩
Natty: 5.5
Report link

I encounter the same issue when using smolagents library, when running with stream=True configured. were you able to fix it?

Reasons:
  • Blacklisted phrase (3): were you able to fix it
  • RegEx Blacklisted phrase (1.5): fix it?
  • RegEx Blacklisted phrase (3): were you able
  • 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: Oar Lilac

79480584

Date: 2025-03-03 09:16:33
Score: 2
Natty:
Report link

I just started with CodingNight version 4. I applied some of the settings mentioned in other questions about the csrf issue, but nothing happened. What settings should I do for this part?

    <div class="col-md-12" style="margin-top:2%" >
        <div class="col-md-2 hidden-sm hidden-xs" >
        </div>
        <div class="col-md-8 col-sm-12 col-xs-12"  align="center">
            <img src="<?php echo base_url(); ?>img/logoavayar.jpg">
        </div>
        <div class="col-md-2 hidden-sm hidden-xs" >
        </div>
    </div>


    <input type="text" id="phonenumber" name="phonenumber" class="form-control" placeholder="Phone number">
<button type="button" id="sendotp" name="sendotp" class="btn btn-primary btn-block">Sign Up</button>

    <div class="col-md-12" style="margin-top:1%; margin-bottom:1%;" >
        <div class="col-md-4 hidden-sm hidden-xs" >
        </div>
        <div class="col-md-4 col-sm-12 col-xs-12"  align="center" style="background-color: #d7dddf;   border: 1px solid gray; border-radius: 2px; gray solid; padding: 1%;">
                <div class="form-group">
                   <label for="exampleInputEmail1"> نام کاربری </label>
                    <input type="email" class="form-control" id="exampleInputEmail1" aria-describedby="emailHelp" placeholder="در این قسمت نام کاربری را وارد کنید">
                
                    <input type="text" class="form-control" id="hhhhhhhh" aria-describedby="emailHelp" value="99x" placeholder="ای ریپ">

                
                
                </div>
                <div class="form-group">
                  <label for="exampleInputPassword1">رمز عبور </label>
                    <input type="password" class="form-control" id="exampleInputPassword1" placeholder="در این قسمت رمز عبور را وارد کنید" style="margin-bottom:4%">

                <button type="button" class="btn btn-primary">ارسال</button>
        </div>
        <div class="col-md-4 hidden-sm hidden-xs" >
        </div>
    </div>

    <div class="col-md-12" style="color:#000; font-size:20px">
        <hr/>
        <div class="col-md-12" style="color:#000; font-size:10px">
                <p>معاونت فنی صدا و سیمای مرکز فارس </p>
         </div>
    </div>

    <script type="text/javascript">



  $(document).ready(function(){
        
 $('button').click(function() {

$.ajax({
 url: "http://localhost:4499/Avayar2/public/index.php/Home/testakk/",
 type: 'post',
 headers: {'X-Requested-With': 'XMLHttpRequest'},
 dataType: 'json' ,
 contentType: 'application/json; charset=utf-8',

    data: {
    toto: 'dibd',
    koko: 'qqqq'
 },
 
 success: function(data2) {
        alert(data2.sdf)
 },
 error: function(xhr, status, error) {
var err = eval("(" + xhr.responseText + ")");
alert(xhr.responseText);
}
}); //end ajax
});




});




</script>

and controller is:


    public function testakk(){


        if ($this->request->isAJAX())
{
    
    $request = \Config\Services::request();


    $aaa= $this->request->getJsonVar('toto');
    
       $data2['sdf']= $aaa;
   
       echo json_encode($data2);
}



    
}

Reasons:
  • Long answer (-1):
  • Has code block (-0.5):
  • Ends in question mark (2):
  • Self-answer (0.5):
  • Low reputation (1):
Posted by: raziyeh

79480580

Date: 2025-03-03 09:14:33
Score: 4
Natty:
Report link

I found the answer myself. The user must login SPO to provisioning the account in SPO.

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

79480575

Date: 2025-03-03 09:12:32
Score: 2
Natty:
Report link

It's rendering issues. try give it a very small rotation,like

transform: rotate(0.01deg)
Reasons:
  • Low length (1.5):
  • Has code block (-0.5):
  • Low reputation (1):
Posted by: mouse

79480571

Date: 2025-03-03 09:11:32
Score: 2
Natty:
Report link

Add below setting in Invoke top-level Maven Targets

Goals: clean verify -P<component_name>-inttest

Reasons:
  • Low length (1):
  • No code block (0.5):
  • Low reputation (0.5):
Posted by: Kripa Shankar Kumar Mishra

79480567

Date: 2025-03-03 09:09:31
Score: 2
Natty:
Report link

Clean Build worked for me, and then recompile and deploy.

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

79480564

Date: 2025-03-03 09:07:31
Score: 2
Natty:
Report link

Thanks a lot @rahulP, the default parameter true for spring.batch.job.enabled caused the Batch task to start executing as soon as the application was started, and I wanted the opposite, so I changed the default parameter to false and it worked.

Reasons:
  • Blacklisted phrase (0.5): Thanks
  • Whitelisted phrase (-1): it worked
  • Low length (0.5):
  • Has code block (-0.5):
  • User mentioned (1): @rahulP
  • Self-answer (0.5):
  • Single line (0.5):
  • Low reputation (0.5):
Posted by: LaiFQZzr

79480559

Date: 2025-03-03 09:04:29
Score: 7 🚩
Natty:
Report link

do you have a problem with the csrf token? How do you send data to the controller? Provide us with all the code that is responsible for your functionality.

Reasons:
  • Blacklisted phrase (1): How do you
  • RegEx Blacklisted phrase (2.5): do you have a
  • Low length (1):
  • No code block (0.5):
  • Contains question mark (0.5):
  • Single line (0.5):
  • Low reputation (1):
Posted by: belo

79480558

Date: 2025-03-03 09:03:28
Score: 9 🚩
Natty:
Report link

were you able to resolve it. we're facing the same issue

Reasons:
  • RegEx Blacklisted phrase (3): were you able
  • 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: Team Lunacal

79480549

Date: 2025-03-03 09:00:27
Score: 1
Natty:
Report link

You can also use the inbuilt fail language of pre-commit. See the docs here. The step in your pre-commit.yaml would look like this:

- id: disallow-spaces-in-files
  name: Disallow spaces in files
  entry: files must not contain spaces
  language: fail
  files: '.*\s.*$'
Reasons:
  • Low length (0.5):
  • Has code block (-0.5):
  • Low reputation (1):
Posted by: g3s1n3

79480543

Date: 2025-03-03 08:59:27
Score: 0.5
Natty:
Report link

Of course writing that question game me another idea for search terms, and ends up this is a browser bug with the action changes in v3 of the manifest.

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

79480541

Date: 2025-03-03 08:59:26
Score: 4
Natty:
Report link

Use useEffect to apply dynamic classes

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

79480533

Date: 2025-03-03 08:56:26
Score: 1
Natty:
Report link

I was able to fix my issue. I needed to run the following steps:

  1. In my src/assets/styles/fonts.scss file, I first corrected the broken url to match to a font file.
  2. Then, I changed it to not start with ../ as it was the source of my issue.
  3. I updated the ng-package assets to create an output folder with all the fonts I needed to use.

Please find below the new versions of both files:

src/assets/styles/fonts.scss:

@font-face {
  font-family: "Roboto";
  src: url("/fonts/Roboto-Regular.woff2");
}

$base: "Roboto";

ng-package.json:

{
  "$schema": "../../node_modules/ng-packagr/ng-package.schema.json",
  "dest": "../../dist/fonts-assets-scss",
  "lib": {
    "entryFile": "src/public-api.ts"
  },
  "assets": [
    {"input": "src/assets/fonts", "glob": "**/*.woff2", "output": "fonts" }
  ]
}

Please find the corrected code on this branch

Reasons:
  • Blacklisted phrase (0.5): I need
  • Long answer (-0.5):
  • Has code block (-0.5):
  • Self-answer (0.5):
  • Low reputation (1):
Posted by: Corentin THIBAUD

79480528

Date: 2025-03-03 08:53:25
Score: 2
Natty:
Report link

The very first gRPC call between a client and server pod involves establishing connection which takes time, its basically setup over a network (TCP, handshake, name resolution, etc.). Subsequent calls reuse this established connection, making them much faster. gRPC supports persistent connections. So, you might want to configure keep-alives correctly to prevent premature termination for subsequent RPCs.

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

79480527

Date: 2025-03-03 08:53:25
Score: 1.5
Natty:
Report link

OK, so I found the answer myself.

- task: DotNetCoreCLI@2
  ...
  inputs:
    ...
    testRunTitle: 'Integration Test - DEV'
Reasons:
  • Low length (1):
  • Has code block (-0.5):
  • Self-answer (0.5):
  • Low reputation (0.5):
Posted by: Simon K

79480523

Date: 2025-03-03 08:49:23
Score: 8 🚩
Natty: 4.5
Report link

i did it but it does not working please help me screenshot 1 screenshot 2

Reasons:
  • Blacklisted phrase (1): help me
  • RegEx Blacklisted phrase (3): please help me
  • RegEx Blacklisted phrase (1): i did it but it does not working please
  • Low length (1.5):
  • No code block (0.5):
  • Low reputation (1):
Posted by: samandar

79480515

Date: 2025-03-03 08:45:22
Score: 0.5
Natty:
Report link

Adding the computed_fields field in the manifest resource and appending the stringData solved the issue. The resulting kubernetes_manifest is

resource "kubernetes_manifest" "default_user_config" {
  computed_fields = ["stringData"]
  manifest = yamldecode(<<EOF
apiVersion: v1
kind: Secret
metadata:
  name: "default-user-config"
  namespace: ${var.namespace}
type: Opaque
stringData:
  default_user.conf: |
    default_user = user
    default_pass = password
  # host: dmF1bHQtZGVmYXVsdC11c2VyLmRlZmF1bHQuc3Zj
  # username: my-admin
  # password: super-secure-password
  # port: "5672"
  # provider: rabbitmq
  # type: rabbitmq
EOF
  )
}
Reasons:
  • Long answer (-0.5):
  • Has code block (-0.5):
  • Self-answer (0.5):
  • Low reputation (1):
Posted by: Estifanos Bireda

79480500

Date: 2025-03-03 08:38:21
Score: 1
Natty:
Report link

DHTMLX Gantt doesn’t have that functionality. There is no way to implement that, unless you modify the source code or redefine the internal functions that generate the scale elements. But this is not recommended as there is no guarantee that Gantt will work as expected. Also, when a newer version is released and you want to update, we won’t provide the guides on how to migrate the changes.

You can follow the discussion on the DHTMLX forum:

https://forum.dhtmlx.com/t/use-dhtmlx-gantt-to-dynamically-calculate-the-width-of-the-timeline-column-cells/78997

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

79480492

Date: 2025-03-03 08:34:20
Score: 1
Natty:
Report link

Since this happened to me on PHP 8.4.4, the reason for me is that the PHP interpreter is trying to find the yaml_* function in the current namespace, so I called it with a backslash in front of the function.

\yaml_emit($payload);

Given the context, I assume that you are in the `RS\composer' namespace.

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

79480488

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

Gmail SMTP "421 Error Code" this means recipient server is currently unable to accept your email due to high traffic or server-side limitations, resulting in the email being deferred. Essentially, the server is indicating, “try again later.” To avoid this issue, consider using a dedicated system like Elates, AWS SNS, or Brevo.

Reasons:
  • No code block (0.5):
  • Single line (0.5):
  • Low reputation (0.5):
Posted by: David Adokuru

79480476

Date: 2025-03-03 08:26:18
Score: 4
Natty: 4
Report link

please follow the document here: https://www.mongodb.com/docs/manual/core/indexes/index-types/index-text/create-wildcard-text-index/#std-label-create-wildcard-text-index

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

79480471

Date: 2025-03-03 08:18:17
Score: 2
Natty:
Report link

Ok, sorry to answer my own question, but yeah.. maybe others can benefit.
Seems that MSFT and their ONNY runtime don't follow strict c++ rules.

So compile with "-std=c++17" will fail. Instead, when using GCC, compile with "-std=gnu++17" or "-std=gnu++20" will be ok.

Btw, I found that if you don't specify "-std=.." at all, GNU compiler will use a default "g++17" or whatever was built for. So that's why is working silently on my side.

c++ vs. gnu++ Differences

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

79480469

Date: 2025-03-03 08:18:17
Score: 1.5
Natty:
Report link

    public function testakk(){


        if ($this->request->isAJAX())
{
    
    $request = \Config\Services::request();


    $aaa= $this->request->getJsonVar('toto');
    
       $data2['sdf']= $aaa;
   
       echo json_encode($data2);
}



    
}

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

79480457

Date: 2025-03-03 08:11:15
Score: 2
Natty:
Report link

Try adding @key [@key="selectedCategory"]in your code.

<MudDataGrid @ref="dataGrid" @key="selectedCategory" T="Element" ServerData="ServerReload" Filterable="false">..

The Key parameter in Blazor is used to help the rendering engine identify components uniquely. When you set a Key on a component like , it forces Blazor to treat it as a new instance whenever the key changes, which can be useful for ensuring a fresh re-render.

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

79480452

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

You can add

to the struts.xml. Or see Allowlist Capability

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

79480439

Date: 2025-03-03 08:01:13
Score: 1
Natty:
Report link

this worked for me

import dotenv from 'dotenv'; dotenv.config();

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

79480438

Date: 2025-03-03 08:00:12
Score: 0.5
Natty:
Report link
- package-ecosystem: npm
  directories:
    - /sites/*
  schedule:
    interval: daily
- package-ecosystem: cargo
  directory: "/package/*"
  schedule:
    interval: daily

Plural directories accepts globs. See config for more details

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

79480435

Date: 2025-03-03 07:57:12
Score: 3
Natty:
Report link

SGRGSRNS

RMGMRGSR GPMPGMRG MDPDMPGM PNDNPDMP DSNSDNPD NRSRNSDN

SGRGSRNS

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

79480432

Date: 2025-03-03 07:55:11
Score: 0.5
Natty:
Report link

JSXComponent type is no longer exported from Vue, so Vuetify defines it internally: https://github.com/vuetifyjs/vuetify/commit/7c8aeefdc097ff9b74a733ed17b6a8cd9e1f8575 You should update to Vuetify v3.7.1 or newer

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

79480423

Date: 2025-03-03 07:51:10
Score: 4
Natty: 4
Report link

oh my. Noob present. I still don't understand this at all. What confuses me a little. and i guess its why i got an F in maths at school.

Is, why we are using %. i thought / was divide by?

or is this on about / or / ?

Example So 7 % 5 = 2. Is apparently 7 divided by 5? I thought the answer is 1.4?

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

79480418

Date: 2025-03-03 07:50:10
Score: 1
Natty:
Report link

If you are using Vite React than you follow the method given below:

1.Install Tailwind CSS

open terminal and install tailwindcss and @tailwindcss/vite via npm

npm install tailwindcss @tailwindcss/vite

2.Configure the Vite plugin

add the tailwindcss/vite plugin to your Vite configuration vite.config.ts

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

79480414

Date: 2025-03-03 07:48:09
Score: 1.5
Natty:
Report link

Need to install umi in global.

pnpm install -g umi
Reasons:
  • Low length (1.5):
  • Has code block (-0.5):
  • Low reputation (0.5):
Posted by: Steven Yang

79480413

Date: 2025-03-03 07:47:09
Score: 0.5
Natty:
Report link

Looks like EPEL is not installed or enabled as it provides missing dependencies

As explained in the FAQ

For memory for a proper repository configuration and usage follow the Wizard instructions

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

79480404

Date: 2025-03-03 07:42:07
Score: 5
Natty: 5
Report link

I noticed that user is getting "Temporarily locked" along with being disabled with Permanent lockout. Is this correct behavior?

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

79480386

Date: 2025-03-03 07:29:05
Score: 2.5
Natty:
Report link

What I am seeing is that there may be two problems

  1. Check if e is always fixed on a tag or does it show child or parent tags as well
  2. The problem may be with the mouse event, use touch and pointer events as well

Make sure you use touch-action too.

Reasons:
  • Low length (0.5):
  • No code block (0.5):
  • Starts with a question (0.5): What I am
  • Low reputation (1):
Posted by: Roochiar Fazli

79480374

Date: 2025-03-03 07:21:03
Score: 1
Natty:
Report link

Finally I solved this problem. It was marked as newArchEnabled=true in gradle.properties under the android file. I made it false, then I did gradlew clean and restarted the project. My map problem was solved.

Reasons:
  • Whitelisted phrase (-2): I solved
  • Low length (0.5):
  • No code block (0.5):
  • Self-answer (0.5):
  • Single line (0.5):
  • Low reputation (1):
Posted by: Ali Yavuz Aydın

79480365

Date: 2025-03-03 07:15:02
Score: 3
Natty:
Report link

only this

test_ax.axis("off")
Reasons:
  • Low length (2):
  • Has code block (-0.5):
  • Has no white space (0.5):
  • Low reputation (1):
Posted by: zhan114514

79480358

Date: 2025-03-03 07:11:01
Score: 1.5
Natty:
Report link

<MudChipField @ref="m_MudChipField"

    private MudChipField<string> m_MudChipField;

    private async Task ClearChipAsync()
    {
        m_MudChipField.Values.Clear();
await m_MudChipField.ClearTextField();}```   
Reasons:
  • Low length (0.5):
  • Has code block (-0.5):
  • Self-answer (0.5):
  • Low reputation (1):
Posted by: Aishh

79480357

Date: 2025-03-03 07:10:00
Score: 4
Natty:
Report link

Try to open vs in adminstrative mode

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

79480356

Date: 2025-03-03 07:09:00
Score: 1
Natty:
Report link

how about using BodyParser?

if err := c.BodyParser(&fiber.Map{}); err != nil {
    return err
}

// get the form data as map
form := c.Request().PostArgs()

// iterate and append
var stateValues []string
form.VisitAll(func(key, value []byte) {
    if string(key) == "state" {
        stateValues = append(stateValues, string(value))
    }
})

oterwise we can use the multipart form parser

form, err := c.MultipartForm()
if err != nil {
    return err
}

stateValues := form.Value["state"]
Reasons:
  • Has code block (-0.5):
  • Contains question mark (0.5):
  • Starts with a question (0.5): how
  • Low reputation (0.5):
Posted by: MJepbarov

79480345

Date: 2025-03-03 07:00:58
Score: 1
Natty:
Report link

This are the correct parameters

{
    name: "IsoDate", sorttype: "date",
    formatter: "date", formatoptions: {newformat: "m/d/Y"},
    cellattr: function (cellindex, value, row_data, cell_attr) {
        return (value < new Date()) ? ' class="ui-state-error-text"' : '';
    }
}
Reasons:
  • Low length (0.5):
  • Has code block (-0.5):
  • Low reputation (1):
Posted by: Aaron Adonis Jaralve Velasco

79480344

Date: 2025-03-03 07:00:58
Score: 0.5
Natty:
Report link

Put the files into a submodule and don't --recurse-submodules on deploy.
For safety, you could disable access to this submodule for the deploy user.

However, I think you may be better off using some CI/CD to create release packages for you to deploy (or have automatically deploy) to your page.

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

79480338

Date: 2025-03-03 06:58:58
Score: 2.5
Natty:
Report link

i solve my problem by delete previous running configuration and try again

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

79480331

Date: 2025-03-03 06:52:56
Score: 5.5
Natty:
Report link

You need to format your column with JSON to create a button and integrate the button with Power Automate, take a reference to this article: Button in SharePoint List to Trigger Power Automate or this video: SharePoint Power Hour: List Button Trigger Power Automate.

Reasons:
  • Blacklisted phrase (1): this article
  • Blacklisted phrase (1): this video
  • Probably link only (1):
  • Low length (1):
  • No code block (0.5):
  • Single line (0.5):
  • Low reputation (0.5):
Posted by: Allen_MSFT

79480323

Date: 2025-03-03 06:47:56
Score: 2
Natty:
Report link

This may be due to restricted permissions, different drives, or file system issues, particularly with FAT32 drives.Try to activate developer mode on terminal run

start ms-settings:developers

then allow developer mode

 Allowing developer mode

then try again creating a windows build.

Reasons:
  • Probably link only (1):
  • Low length (0.5):
  • Has code block (-0.5):
  • Low reputation (1):
Posted by: Shadrack Sylvestar Mbwagha

79480318

Date: 2025-03-03 06:43:55
Score: 0.5
Natty:
Report link

Have you checked whether SELinux is affecting log writing? In RHEL 9, the Enforcing mode is enabled by default, which may restrict access to files even if standard permissions are set correctly. To verify if SELinux is causing the issue, you can temporarily disable it with:

sudo setenforce 0

This command temporarily switches SELinux to Permissive mode, where security checks are still performed but do not block operations and are only logged.

Reasons:
  • Has code block (-0.5):
  • Contains question mark (0.5):
  • Low reputation (0.5):
Posted by: Maksim Banit

79480317

Date: 2025-03-03 06:43:55
Score: 1.5
Natty:
Report link

You can create launch.json manually in .vscode folder.

Or create the files using the debug button.

enter image description here

Reasons:
  • Probably link only (1):
  • Low length (1):
  • No code block (0.5):
  • High reputation (-1):
Posted by: Minxin Yu - MSFT

79480298

Date: 2025-03-03 06:26:52
Score: 1.5
Natty:
Report link

I got this from "Impractical Python Projects."

Think of it this way: if you’re searching your house for your lost mobile phone, you could emulate a list by looking through every room before finding it (in the proverbial last place you look). But by emulating a hash map, you can basically dial your mobile number from another phone, listen for the ringtone, and go straight to the proper room.

Reasons:
  • No code block (0.5):
  • Low reputation (1):
Posted by: Kigula James Jesse

79480296

Date: 2025-03-03 06:23:51
Score: 1
Natty:
Report link

I've had a similar problem where I had to distribute deliveries throughout the week. One approach that worked for me was to take 6 vehicles (one for each day of the week, from Monday to Saturday) and assign each one a fixed load limit. Then, I assigned each delivery/stop a load demand of 1. This way, my final result was 6 vehicle routes (for 6 days), each with a fixed number of visits.

Reasons:
  • Whitelisted phrase (-1): worked for me
  • No code block (0.5):
  • Single line (0.5):
  • Low reputation (1):
Posted by: Darsh Patel

79480293

Date: 2025-03-03 06:21:50
Score: 7 🚩
Natty:
Report link

i did exactly like @steve-ed said, i changed my optimizer to RMSprop. You save my day. Thanks sincerely!

Reasons:
  • Blacklisted phrase (0.5): Thanks
  • Blacklisted phrase (2): save my day
  • Low length (1):
  • No code block (0.5):
  • User mentioned (1): @steve-ed
  • Self-answer (0.5):
  • Single line (0.5):
  • Low reputation (1):
Posted by: LOYINuts

79480292

Date: 2025-03-03 06:21:50
Score: 5
Natty: 5
Report link

No se si es que estas viendo el mismo tutorial que yo pero si es el mismo para hacer un dashboard administrativo , vas a tener adaptar todo lo que este relacionado con pro-sidebar hasta en el app.js

Reasons:
  • RegEx Blacklisted phrase (2.5): mismo
  • Low length (0.5):
  • No code block (0.5):
  • Single line (0.5):
  • Low reputation (1):
Posted by: Gabriel Gomez

79480291

Date: 2025-03-03 06:20:49
Score: 3
Natty:
Report link

You might be trying to reserve a "Running On-Demand G and VT instances" not spot instances. they are different.

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

79480283

Date: 2025-03-03 06:16:49
Score: 3
Natty:
Report link

Are you familiar with vue-router? It allows you to map routes to components, supports nested routing where you can create multiple top-level routes to establish base layouts. The documentation can be found here: vue-router

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

79480282

Date: 2025-03-03 06:16:49
Score: 2
Natty:
Report link

Samsung smartphones, particularly older models like the Galaxy S6, S7, and A series, can have issues with the HTML5 input type="number" field, where the period (decimal point) is missing. This issue is often linked to the browser version or locale settings. It’s more common in locales using commas for decimals. To fix this, update the browser or change the locale to one that uses a period (e.g., US English) or switch to a different browser.

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

79480279

Date: 2025-03-03 06:13:48
Score: 1.5
Natty:
Report link

You can try @TestInstance(TestInstance.Lifecycle.PER_CLASS) @DirtiesContext(classMode = DirtiesContext.ClassMode.AFTER_CLASS)

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

79480274

Date: 2025-03-03 06:09:48
Score: 2
Natty:
Report link

Awwwards is a prestigious platform that recognizes and honors the best in web design, creativity, and innovation. It serves as a benchmark for digital excellence, celebrating designers, developers, and agencies that push the boundaries of user experience and aesthetics. Websites submitted to Awwwards are evaluated by an expert jury based on design, usability, creativity, and content. Winning an Awwwards badge not only enhances credibility but also increases visibility, attracting potential clients and collaborators. The platform also provides inspiration, educational resources, and networking opportunities for professionals in the web development and design industry.

Reasons:
  • Long answer (-0.5):
  • No code block (0.5):
  • Single line (0.5):
  • Starts with a question (0.5): is a
  • Low reputation (1):
Posted by: Roman 005

79480273

Date: 2025-03-03 06:09:48
Score: 1
Natty:
Report link

You'll want to go through this checklist and confirm all pre-requisites are met in your integration. If you need more help, share a public URL that I can visit and reproduce the problem.

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

79480268

Date: 2025-03-03 06:05:46
Score: 7.5 🚩
Natty:
Report link

I have the same problem and I am getting frustrated. I tried all the ways you said but I still get the value in the empty controller.

please help me!

  $(document).ready(function(){
        
 $('button').click(function() {

$.ajax({
 url: "http://localhost:4499/Avayar2/public/index.php/Home/testakk/",
 type: 'post',
 headers: {'X-Requested-With': 'XMLHttpRequest'},
 dataType: 'json' ,
     data: {
    toto: 'dibd',
    koko: 'qqqq'
 },
  success: function(data2) {
        alert(data2.sdf)
 },
 error: function(xhr, status, error) {
var err = eval("(" + xhr.responseText + ")");
alert(xhr.responseText);
}
}); //end ajax
});

});

Reasons:
  • Blacklisted phrase (1): help me
  • Blacklisted phrase (1): I have the same problem
  • RegEx Blacklisted phrase (3): please help me
  • Long answer (-0.5):
  • Has code block (-0.5):
  • Me too answer (2.5): I have the same problem
  • Low reputation (1):
Posted by: raziyeh

79480265

Date: 2025-03-03 06:02:45
Score: 9
Natty: 7.5
Report link

Did you get the solution to this problem?

Reasons:
  • RegEx Blacklisted phrase (3): Did you get the solution to this problem
  • Low length (1.5):
  • No code block (0.5):
  • Ends in question mark (2):
  • Single line (0.5):
  • Starts with a question (0.5): Did you
  • Low reputation (1):
Posted by: user3278490

79480263

Date: 2025-03-03 06:00:44
Score: 2.5
Natty:
Report link

The issue may also occur in this way. For example, if you are changing database-related settings while working in the middleware or a similar component, and the necessary database settings are missing, it could cause the issue. Like a database key values will be set none.

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

79480258

Date: 2025-03-03 05:57:44
Score: 2.5
Natty:
Report link

Thanks a lot, it worked for me.

Reasons:
  • Blacklisted phrase (0.5): Thanks
  • Whitelisted phrase (-1): it worked
  • Whitelisted phrase (-1): worked for me
  • Low length (2):
  • No code block (0.5):
  • Single line (0.5):
  • Low reputation (1):
Posted by: user3093020

79480256

Date: 2025-03-03 05:56:43
Score: 3.5
Natty:
Report link

When setting environment variables, use ";" instead of ":", in Windows, this is the problem I encountered

Reasons:
  • Low length (1):
  • No code block (0.5):
  • Single line (0.5):
  • Starts with a question (0.5): When
  • Low reputation (1):
Posted by: JoyBin

79480252

Date: 2025-03-03 05:48:42
Score: 3
Natty:
Report link

in Container object which we fetch we got this properties externalIdentifier=/carddav/v1/principals/garejakirit%40gmail.com/lists/default/

externalModificationTag="6bae89da88eb93cc.701"

externalSyncTag=https://www.googleapis.com/carddav/v1/synctoken/0802100118E4A18AF598E68B03220C08A4A886BE0610D8E2FA8701

so using externalIdentifier we can get gmail or any other email and if iCloud than a 64 letter unique code

and using this externalSyncTag we can get source if google than we got google api and if any other than that api so that's how we can determine the source of contact i did like this but is there any better way to do that please discuss here

Reasons:
  • Blacklisted phrase (1): is there any
  • RegEx Blacklisted phrase (1): i did like this but is there any better way to do that please
  • Long answer (-0.5):
  • No code block (0.5):
  • Self-answer (0.5):
  • Low reputation (0.5):
Posted by: Codebane the Swiftbreaker

79480251

Date: 2025-03-03 05:48:42
Score: 3
Natty:
Report link

I’m leaving the solution here for anyone who encounters the same issue!

Separate External and Internal Exposed Addresses for Kafka

kafka/server.properties

listeners=INTERNAL://0.0.0.0:9092,EXTERNAL://0.0.0.0:9093
advertised.listeners=INTERNAL://kafka:9092,EXTERNAL://localhost:9093
listener.security.protocol.map=INTERNAL:PLAINTEXT,EXTERNAL:PLAINTEXT

docker-compose.yml

service:
  kafka:
    build:
      context: ./kafka
      dockerfile: Dockerfile
    image: simple-sns-kafka:latest
    container_name: 'simple-sns-kafka'
    ports:
      - '9092:9092'
      - '9093:9093' # added code
      - '8083:8083' # Kafka Connect REST API Port

Change Spring Configuration to Use External Address

  kafka:
    consumer:
      bootstrap-servers: localhost:9093
    producer:
      bootstrap-servers: localhost:9093

This is my first time using Stack Overflow. If there’s any better way for me to express my gratitude, please let me know!!

Reasons:
  • RegEx Blacklisted phrase (2.5): please let me know
  • Long answer (-0.5):
  • Has code block (-0.5):
  • Self-answer (0.5):
  • Low reputation (1):
Posted by: snorlax

79480247

Date: 2025-03-03 05:47:42
Score: 3
Natty:
Report link

You need to set your Microsoft Entra ID (Azure AD) application to multi-tenant in order to let the BotFramework SDK to find it.

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

79480246

Date: 2025-03-03 05:46:42
Score: 1
Natty:
Report link

@Tarzan's answer wasn't quite clear on Subscription vs Checkout messages.
Here's what I'm seeing as of 2025.03.01.

Webhook Subscription One-off / Payment / Checkout
checkout.session.completed yes yes
invoice.paid yes no
Reasons:
  • Low length (0.5):
  • No code block (0.5):
  • User mentioned (1): @Tarzan's
  • High reputation (-1):
Posted by: Jay Borseth

79480245

Date: 2025-03-03 05:42:41
Score: 1.5
Natty:
Report link

you can try to add a visual filter to filter out the days after today

enter link description here

Reasons:
  • Blacklisted phrase (0.5): enter link description here
  • Low length (1.5):
  • No code block (0.5):
  • High reputation (-1):
Posted by: Ryan

79480229

Date: 2025-03-03 05:30:39
Score: 1
Natty:
Report link

Use .pleskignore File (Best for Plesk Git Integration) Plesk supports a .pleskignore file, similar to .gitignore. Add a .pleskignore file at the root of your repo and specify the folder to exclude

sql/

This ensures that the sql/ folder is ignored when deploying via Plesk’s Git integration

Use .gitignore and Keep SQL Files Locally If you're using Git for Plesk deployment, you can add sql/ to .gitignore

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

79480224

Date: 2025-03-03 05:25:38
Score: 1.5
Natty:
Report link

In your custom shell class add empty "startup()" function to ovverride Shell class startup() function.

class MySampleCustomShell extends AppShell {

   ...

   public function startup() {
    
   }

   ...

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

79480220

Date: 2025-03-03 05:21:37
Score: 0.5
Natty:
Report link

I was having a similar problem and I was able to see the logs ingested after setting decompression in the config.yaml file for pormtal like this:

...

scrape_configs:
- job_name: system
  decompression:
    enabled: true
    format: gz
  static_configs:
  - targets:
      - localhost
    labels:
...
Reasons:
  • Low length (0.5):
  • Has code block (-0.5):
  • Low reputation (0.5):
Posted by: Esteban Camargo

79480219

Date: 2025-03-03 05:20:36
Score: 3
Natty:
Report link

As per my research and understanding of Zabbix there is no configurations without any API for creating the frontend users in database.

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

79480216

Date: 2025-03-03 05:15:36
Score: 3.5
Natty:
Report link

AxisMarks(preset: .aligned....)

Curious choice to not make this the default.

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

79480212

Date: 2025-03-03 05:13:35
Score: 1.5
Natty:
Report link
  1. It helps reduce memory usage and rendering workload by unmounting views that are not visible.
  2. Views that are out of the visible bounds are temporarily removed from the native view hierarchy, reducing memory consumption
  3. When the views come back into the visible area, they are re-rendered.
  4. FlatList and SectionList already have built-in optimizations (windowSize, maxToRenderPerBatch, etc.), so using removeClippedSubviews may not be necessary.
Reasons:
  • No code block (0.5):
  • Low reputation (1):
Posted by: keval7169