79291520

Date: 2024-12-18 14:57:14
Score: 2.5
Natty:
Report link

I found it myself. The & had to be:

&

for the XLM parser

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

79291502

Date: 2024-12-18 14:51:12
Score: 3
Natty:
Report link

First of all , you should use "WRITEDATA" other than "WRITEFUNCTION". The later is for self defined function. Besides , python 3 is recommended.

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

79291500

Date: 2024-12-18 14:51:12
Score: 0.5
Natty:
Report link

Yes, it's possible and actually quite common to organize Buildbot configurations in a way that each project or branch has its own build recipe along with the source code. This approach helps in managing each project's build configuration independently, making it easier to maintain and update the recipes without affecting other projects.

Buildbot allows for flexible configuration, and the configuration file typically contains all the necessary details to define how the builds will run. These configurations can be centralized in one file, or you can split them across multiple files for better organization.

Currently, you may have a central buildbot.cfg or a similar file where all your projects and their build steps are defined. Instead of keeping everything in one place, you can split it by project/branch. To put each project’s build recipe with its source code, the most straightforward method is to create a buildbot directory inside each project's repository. This directory can contain a Python script that defines the build steps for that specific project. You can then reference this script in the central configuration or manage it independently.

Instead of having all the project recipes inside the central buildbot.cfg, you can import each project’s build.py in the main configuration file. This way, each project’s build logic is encapsulated within its own directory, and you simply call these recipes from the main configuration file. If you have the buildbot.cfg and each project's build.py under version control, you can commit and manage them independently. For example:

The main Buildbot repository would contain the buildbot.cfg and common configurations.

Each project repository would contain its own buildbot/ directory with build.py and other related configuration files.

This way, when you make changes to a specific project, you only need to update its build.py recipe, and you can ensure that each project’s configuration is versioned alongside its source code.

Once you've set up the project-specific recipes and the central configuration, Buildbot will pick up the individual recipes, trigger the builds accordingly, and execute the steps as defined in each project’s build.py.

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

79291490

Date: 2024-12-18 14:49:12
Score: 2
Natty:
Report link

please use:

var data =await (linq query).ToListAsync();
Reasons:
  • Low length (1.5):
  • Has code block (-0.5):
  • Low reputation (1):
Posted by: Alireza Balavand

79291485

Date: 2024-12-18 14:47:11
Score: 3
Natty:
Report link

Simply use the fluid attribute on the InputNumber component: https://primevue.org/fluid/

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

79291483

Date: 2024-12-18 14:46:11
Score: 3
Natty:
Report link

Thanks for the answer. However, I tried below that I thought a simple approach and it is working

WHat you say ?

library(shiny)
runApp(
  list(ui = fluidPage(

        tags$p(id = 'g', class =  'newClass',  'This is a paragraph'),tags$p(id = "demo"),
        tags$script('Shiny.addCustomMessageHandler("testmessage",
        function(message)
        {
        var tit = document.getElementById("g")
        tit.onclick = function (){document.getElementById("demo").innerHTML  = message}
        }
);')
        )
  , server = function(input, output, session){
    asd <- Sys.Date()
    observe({session$sendCustomMessage(type = 'testmessage',message = asd)})
  })
)
Reasons:
  • Blacklisted phrase (0.5): Thanks
  • Long answer (-0.5):
  • Has code block (-0.5):
  • Ends in question mark (2):
  • Self-answer (0.5):
  • Low reputation (1):
Posted by: Vinay Kumar

79291477

Date: 2024-12-18 14:46:11
Score: 0.5
Natty:
Report link
Get-ChildItem -Path "C:\YourDirectory" -Recurse | Where-Object { $_.Name -match "your-regex-pattern" }

to search all docx files:

Get-ChildItem -Path "C:\YourDirectory" -Recurse | Where-Object { $_.Name -match "*.docx" }
Reasons:
  • Low length (0.5):
  • Has code block (-0.5):
  • Low reputation (0.5):
Posted by: Ali BOUHLEL

79291476

Date: 2024-12-18 14:45:10
Score: 2.5
Natty:
Report link

use docker context show will tell you whether it's default or rootless

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

79291469

Date: 2024-12-18 14:41:09
Score: 4.5
Natty:
Report link

I am having trouble in installing tidyinverse package by getting the below error

install.packages('tidyinverse') WARNING: Rtools is required to build R packages but is not currently installed. Please download and install the appropriate version of Rtools before proceeding:

https://cran.rstudio.com/bin/windows/Rtools/ Installing package into ‘C:/Users/Admin/AppData/Local/R/win-library/4.4’ (as ‘lib’ is unspecified) Warning in install.packages : package ‘tidyinverse’ is not available for this version of R

A version of this package for your version of R might be available elsewhere, see the ideas at https://cran.r-project.org/doc/manuals/r-patched/R-admin.html#Installing-packages

Reasons:
  • Blacklisted phrase (1.5): getting the below error
  • RegEx Blacklisted phrase (2): I am having trouble
  • Long answer (-0.5):
  • No code block (0.5):
  • Low reputation (1):
Posted by: Sikiru Yusuff

79291467

Date: 2024-12-18 14:41:09
Score: 1
Natty:
Report link

Unfortunately, Redis does not provide a native “negative match” pattern or a built-in command to flush all keys except for a specific one. You must instead retrieve all keys and then filter them out before deleting.

Approach using a shell pipeline: 1. List all keys with redis-cli keys "*". 2. Use grep -v to exclude the key zrtt_industry. 3. Pass the remaining keys to redis-cli del via xargs.

For example:

redis-cli -h zapi.data.com KEYS "*" | grep -v '^zrtt_industry$' | xargs -n 1 redis-cli -h zapi.data.com DEL

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

79291458

Date: 2024-12-18 14:39:08
Score: 0.5
Natty:
Report link
  1. You need to make sure that your Python version is at least 3.8. You can look at torch's version history to see what Python versions are compatible with which versions of PyTorch.
  2. Also, you need to make sure pip is updated with pip install --upgrade pip
Reasons:
  • Low length (0.5):
  • Has code block (-0.5):
  • Low reputation (0.5):
Posted by: David Robinson

79291439

Date: 2024-12-18 14:35:07
Score: 4
Natty:
Report link

Why not just try to make the path and then check it?

def path_type(my_path):
    if os.path.exists(my_path):
        return 'dir'
    else:
        try:
            p = os.path.makedirs(my_path)
            os.remove(p)
            return 'dir'
        except:
            pass
        return 'file'
Reasons:
  • Low length (0.5):
  • Has code block (-0.5):
  • Ends in question mark (2):
  • Unregistered user (0.5):
  • Starts with a question (0.5): Why not
  • Low reputation (1):
Posted by: Luke

79291438

Date: 2024-12-18 14:35:07
Score: 3
Natty:
Report link

Problem solved. I use Xmanager to recieve X11 from server, now run GUI.py in Jetbrains Gateway IDE can also show GUI on my desktop.

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

79291437

Date: 2024-12-18 14:33:06
Score: 3
Natty:
Report link

Perhaps your dataset is too small. You could try to use augmentation to expand your dataset.

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

79291436

Date: 2024-12-18 14:33:06
Score: 1
Natty:
Report link

For all those who cannot apply the patch with the three-way merge, I have found a good solution under this link that works for me: git.vger.kernel.narkive.com

I did the following steps from the answer:

  1. Run git-am to get the number of the failing patch
  2. Apply the patch manually, but turn on verbose and reject in git-apply
    git-apply --verbose --reject changes.patch
    Then the conflicting file(s) will be saved as <filename>.<extension>.rej
  3. Manually resolve the conflicts

Please check the link for the original, more elaborate answer.

Reasons:
  • Blacklisted phrase (1): this link
  • Whitelisted phrase (-1): works for me
  • RegEx Blacklisted phrase (1): check the link
  • Long answer (-0.5):
  • Has code block (-0.5):
  • Low reputation (1):
Posted by: Terve

79291432

Date: 2024-12-18 14:31:05
Score: 2.5
Natty:
Report link

i have conducted some little research and if you want the data bars to be sorted for each year part of these clusters you need to pre define the dataset and sort it like this:

 const chartData = {
  datasets: [
    {
      label: "Respondent 1",
      data: [750, 700, null, null],
      backgroundColor: "#1E81D3",
      borderColor: "#ccc",
      borderRadius: 5
    },
    {
      label: "Respondent 3",
      data: [null, 419, null, null],
      backgroundColor: "#0D5AB7",
      borderColor: "#ccc",
      borderRadius: 5
    },
    {
      label: "Respondent 2",
      data: [null, 33921, null, null],
      backgroundColor: "#063F84",
      borderColor: "#ccc",
      borderRadius: 5
    },
    {
      label: "Respondent 3",
      data: [null, null, 21583, null],
      backgroundColor: "#0D5AB7",
      borderColor: "#ccc",
      borderRadius: 5
    },
    {
      label: "Respondent 2",
      data: [null, null, 20001, null],
      backgroundColor: "#063F84",
      borderColor: "#ccc",
      borderRadius: 5
    },
    {
      label: "Respondent 3",
      data: [null, null, null, 488],
      backgroundColor: "#0D5AB7",
      borderColor: "#ccc",
      borderRadius: 5
    },
    {
      label: "Respondent 2",
      data: [null, null, null, 3999],
      backgroundColor: "#063F84",
      borderColor: "#ccc",
      borderRadius: 5
    }
  ],
  labels: [
    "2017 Fiscal Year (Jul-Jun) - H2",
    "2022 Fiscal Year (Jan-Dec) - H2",
    "2023 Fiscal Year (Jan-Dec) - H1",
    "2023 Fiscal Year (Jan-Dec) - H2"
  ],
  yAxisLabel: "Cubic Meters"
};

// Sort datasets based on the sum of their `data` values
chartData.datasets.sort((a, b) => {
  const sumA = a.data.reduce((sum, val) => sum + (val || 0), 0); // Calculate sum of dataset A
  const sumB = b.data.reduce((sum, val) => sum + (val || 0), 0); // Calculate sum of dataset B
  return sumB - sumA; // Sort in descending order
});

if i understood you question correctly this would probably be the solution if not please give some clarification of what is wrong with the answer.

Reasons:
  • RegEx Blacklisted phrase (2.5): please give some
  • RegEx Blacklisted phrase (1): i understood you question correctly this would probably be the solution if not please
  • Long answer (-1):
  • Has code block (-0.5):
  • Low reputation (0.5):
Posted by: oelimoe

79291414

Date: 2024-12-18 14:27:04
Score: 3
Natty:
Report link

The feature is now available under Run terminal

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

79291413

Date: 2024-12-18 14:27:04
Score: 2.5
Natty:
Report link

To find information on globalization support in ASP.NET, see this Microsoft page. According to the page, ScriptManager can deliver different scripts based on the user's culture.

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

79291405

Date: 2024-12-18 14:23:03
Score: 10
Natty: 7
Report link

@sainaen Thank you! 9years later and this helped me alot. I've been trying to solve this for 2 days! I just wonder how did you found this? is it written somewhere in the document?

Reasons:
  • Blacklisted phrase (0.5): Thank you
  • RegEx Blacklisted phrase (3): did you found this
  • Low length (1):
  • No code block (0.5):
  • Ends in question mark (2):
  • User mentioned (1): @sainaen
  • Looks like a comment (1):
  • Low reputation (1):
Posted by: taril

79291403

Date: 2024-12-18 14:22:00
Score: 7 🚩
Natty:
Report link

bro did u get answers ? i am also working on video editing and i want to immediate change on video if i apply any small change

Reasons:
  • RegEx Blacklisted phrase (3): did u get answer
  • RegEx Blacklisted phrase (1): i want
  • Low length (1):
  • No code block (0.5):
  • Contains question mark (0.5):
  • Low reputation (1):
Posted by: syed umair badar

79291398

Date: 2024-12-18 14:20:59
Score: 2.5
Natty:
Report link

The discrepancy between the CLI command and the .spec file likely stems from the way the AQL (Artifactory Query Language) is structured in the .spec file. While the CLI command is straightforward and effectively retrieves artifacts, the AQL query in your .spec file may not be correctly

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

79291395

Date: 2024-12-18 14:19:59
Score: 1
Natty:
Report link
   document.addEventListener('DOMContentLoaded', function() {
       const videos = document.querySelectorAll('video');
       videos.forEach(video => {
           video.EventListener('mouseover', video.play);
           video.EventListener('mouseout', video.pause);
       });
   });
Reasons:
  • Low length (0.5):
  • Has code block (-0.5):
  • Low reputation (1):
Posted by: Muhammad Zeeshan

79291366

Date: 2024-12-18 14:09:56
Score: 4
Natty:
Report link

Using NavigationStack instead of NavigationView solved the issue.

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

79291362

Date: 2024-12-18 14:07:56
Score: 0.5
Natty:
Report link

I have fixed the error. I just used the github link. Here are my requirements from buildozer.spec:

requirements=python3,kivy==2.3.0,https://github.com/kivymd/KivyMD/archive/master.zip

It also turns out that buildozer decided to only use kivymd version 1.3.0 even though I deleted it once. Had to delete the .buildozer directory from my project directory. That caused problems down the line, so if anyone has the same issue, try to delete things properly. There should be a command in buildozer that cleans everything (although that will require another installation of all the components)

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

79291361

Date: 2024-12-18 14:07:55
Score: 4
Natty:
Report link
I am also facing the same issue while running the scripts in sequence regardless of previous task's status

My original script which I want to achieve all 3 tasks-
"testChrome": "npm run deleteOutput && npx playwright test --project=chrome --grep @smoke && npm run generateReport"

here, in my pipeline I am running 'npm run testChrome'
the last task of generateReport will only executes if previous 2 are passed. 

I tried with ';' but it's giving an error. I am using Playwright framework.

Below worked for me but I need to have multiple scripts (for each browser) which is not recommended; otherwise require me to change the script every time. Like below

"chrome": "npx playwright test --project=chrome --grep @smoke"
"edge": "npx playwright test --project=edge --grep @smoke"
"safari": "npx playwright test --project=safari --grep @smoke"

"runChromeTestsWithReport": "npm-run-all -s -c deleteOutput testEdge generateReport"
"runFirefoxTestsWithReport": "npm-run-all -s -c deleteOutput testEdge generateReport"
"runSafariTestsWithReport": "npm-run-all -s -c deleteOutput testEdge generateReport"

Then finally I can run 'npm run runChromeTestsWithReport'

so I would need to create 6 scripts.

Let me know if anyone has better solution on this. Thanks
Reasons:
  • Blacklisted phrase (0.5): Thanks
  • Blacklisted phrase (1): I am also facing the same issue
  • Blacklisted phrase (0.5): I need
  • Whitelisted phrase (-1): worked for me
  • RegEx Blacklisted phrase (1): I want
  • Long answer (-1):
  • Has code block (-0.5):
  • Me too answer (2.5): I am also facing the same issue
  • Low reputation (1):
Posted by: Irshad Telsang

79291344

Date: 2024-12-18 13:59:54
Score: 1.5
Natty:
Report link

QGIS expresion bulider base on SQL mixed with Python. Some elements of SQL works, some elements of python also works, but not all. For example single qoute is for string, double qoute is for reference to field in atribute table.

For more information look for official documention for QGIS docs.qgis

Reasons:
  • Low length (0.5):
  • No code block (0.5):
  • Low reputation (0.5):
Posted by: Łukasz Świątek

79291332

Date: 2024-12-18 13:55:53
Score: 3
Natty:
Report link

Apologies, I don't think there is anything wrong with the formula after all. I have only just noticed that one of the "Expected CCT Dates" had gone in with the year 1931 (i.e. less than 365 days from now) instead of 2031 (more than 365 days from now).

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

79291323

Date: 2024-12-18 13:52:52
Score: 3
Natty:
Report link

In order to achieve this do the following 3 steps: 1.Have your 1st step of odisqlunload to generate the herder to your main file e.g Main_Output.csv. 2.2nd step of odisqlunload to load data to your other file e.g _data.csv 3. 3rd step use odiFile Apend to append _data.csv to main_Outpout.csventer image description here

Reasons:
  • Blacklisted phrase (1): enter image description here
  • Low length (0.5):
  • No code block (0.5):
  • Low reputation (1):
Posted by: Benjamin Tua

79291317

Date: 2024-12-18 13:50:50
Score: 13
Natty: 7.5
Report link

did you find any solution for this?

Reasons:
  • Blacklisted phrase (1.5): any solution
  • RegEx Blacklisted phrase (3): did you find any solution
  • RegEx Blacklisted phrase (2): any solution for this?
  • Low length (2):
  • No code block (0.5):
  • Ends in question mark (2):
  • Single line (0.5):
  • Starts with a question (0.5): did you find any solution for this
  • Low reputation (1):
Posted by: Niv Yaal

79291315

Date: 2024-12-18 13:48:50
Score: 2.5
Natty:
Report link

In my case i got 302 error means is redirecting.

I forgot also to add headers to my request and i receive from response an new location and need to make a new call with new location.

Now its working

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

79291310

Date: 2024-12-18 13:47:49
Score: 0.5
Natty:
Report link

I faced a similar issue while extracting data from a Dataverse table using Data Factory. Columns with null values were not being transferred to the CSV file or SQL Server target table.

Follow below steps for testing the flow and if is it working fine then you can do some automation.

  1. Create one pipeline and add copy activity
  2. Cerate a dataverse dataset(link service created using AD or SPN)
  3. In copy setup source dataverse data set and sink will be csv file.
  4. Create one parameter of the pipeline p_columnmappuing or setup variable and datatype should be string.
  5. Pass that parameter to mapping area in copy activity as below @json(p_columnmapping) Dataverse XML Script(Source Query)
<fetch>  
  <entity name="go_todo">  
    <attribute name="go_appointmentid" /> 
    <attribute name="go_category" /> 
    <attribute name="go_department" /> 
    <attribute name="go_group" /> 
    <attribute name="go_name" /> 
    <attribute name="go_rating" />  
    <attribute name="go_reason_negative_rating" /> 
    <attribute name="go_reason_positive_rating" />
    <attribute name="go_relevance" />  
    <attribute name="go_adaptionstatus" />
  </entity>  
</fetch>



Parameter column mapping:

    {"type":"TabularTranslator","mappings":[{"source":
    {"name":"go_appointmentid","type":"Guid"},"sink":{"name":"go_appointmentid","type":"String"}},{"source":{"name":"go_category","type":"String"},"sink":{"name":"go_category","type":"String"}},{"source":{"name":"go_department","type":"Int32"},"sink":{"name":"go_department","type":"String"}},{"source":{"name":"go_group","type":"String"},"sink":{"name":"go_group","type":"String"}},{"source":{"name":"go_name","type":"String"},"sink":{"name":"go_name","type":"String"}},{"source":{"name":"go_rating","type":"String"},"sink":{"name":"go_rating","type":"String"}},{"source":{"name":"go_reason_negative_rating","type":"Int32"},"sink":{"name":"go_reason_negative_rating","type":"String"}},{"source":{"name":"go_reason_positive_rating","type":"Int32"},"sink":{"name":"go_reason_positive_rating","type":"String"}},{"source":{"name":"go_relevance","type":"String"},"sink":{"name":"go_relevance","type":"String"}},{"source":{"name":"go_adaptionstatus","type":"String"},"sink":{"name":"go_adaptionstatus","type":"String"}}]}

[![enter image description here][1]][1]


  [1]: https://i.sstatic.net/H3EuDC2O.png
Reasons:
  • Blacklisted phrase (1): enter image description here
  • Long answer (-1):
  • Has code block (-0.5):
  • Low reputation (1):
Posted by: Jagdish Wagh

79291301

Date: 2024-12-18 13:46:49
Score: 3.5
Natty:
Report link

The response from @Tristan Richard was incredibly helpful! After hours of troubleshooting and trying out all the suggestions, I finally realized that I had installed Adguard DNS. Once I turned it off, everything worked perfectly!

Reasons:
  • Low length (0.5):
  • No code block (0.5):
  • User mentioned (1): @Tristan
  • Single line (0.5):
  • Low reputation (1):
Posted by: Dimas

79291289

Date: 2024-12-18 13:44:48
Score: 2
Natty:
Report link

You have explained your question well but haven't give context.

How are you implementing deeplinking? What procedure are you following.

When i first implemented deep linking in my flutter app i noticed that when the app was opening the desired screen, it was using context.go under the hood which was clearing out my auth state i was setting in the splash screen, so this might be the issue you are also encountering.

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

79291284

Date: 2024-12-18 13:42:47
Score: 6 🚩
Natty: 5.5
Report link

Could you please share your app.configs for session.

Reasons:
  • RegEx Blacklisted phrase (2.5): Could you please share your
  • Low length (1.5):
  • No code block (0.5):
  • Single line (0.5):
  • Low reputation (1):
Posted by: Anna Rybakova

79291268

Date: 2024-12-18 13:37:45
Score: 3.5
Natty:
Report link

Did the previous proposed answer work? I've got similar issue and only seems to work with one condition not two:

import delta Factevents = delta.DeltaTable.forPath(spark, 'abfss://*******************.dfs.core.windows.net/silver/C365/events/')

Merge new data

( Factevents.alias('events') .merge( dfNewData.alias('New'), "events.uprn = New.uprn AND events.id = New.id" ) .whenMatchedUpdateAll() .whenNotMatchedInsertAll() .execute() )

Reasons:
  • No code block (0.5):
  • Contains question mark (0.5):
  • Unregistered user (0.5):
  • Starts with a question (0.5): Did the
  • Filler text (0.5): *******************
  • Low reputation (1):
Posted by: Anthony Carroll

79291266

Date: 2024-12-18 13:36:45
Score: 0.5
Natty:
Report link

Like @neoakris writes, you can achieve your goal by defining a cloud run startup probe. Starting with gcloud cli version 501.0.0, you can now (currently only on the beta track) define startup probes without having to manipulate a service.yml directly with the gcloud beta run deploy command, like:

gcloud beta run deploy my-service --startup-probe=httpGet.port=8080,httpGet.path=/ready,initialDelaySeconds=10,periodSeconds=20,timeoutSeconds=20

See https://cloud.google.com/sdk/gcloud/reference/beta/run/deploy?hl=en#--startup-probe

Reasons:
  • Has code block (-0.5):
  • User mentioned (1): @neoakris
Posted by: martin

79291264

Date: 2024-12-18 13:35:45
Score: 1
Natty:
Report link

I think the problem is not with the Database but with the view, I see you are using Spinner with ArrayAdapter, are you using that data to feed the Spinner with ArrayAdapter? If yes, than can you check if you can use the RecyclerView.Adapter with it.

Reasons:
  • Whitelisted phrase (-1.5): you can use
  • Low length (0.5):
  • No code block (0.5):
  • Contains question mark (0.5):
  • Single line (0.5):
  • Low reputation (0.5):
Posted by: Meet Miyani

79291249

Date: 2024-12-18 13:27:43
Score: 1
Natty:
Report link

Your exception is at MediatR.IRequestHandler. Looks like you use the MediatR package, check the initialization code needed for MediatR to work properly.

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

79291248

Date: 2024-12-18 13:27:42
Score: 5
Natty: 4
Report link

Thank you so much :::))) It's been two days now that at try to fix this problem :)

Reasons:
  • Blacklisted phrase (0.5): Thank you
  • Blacklisted phrase (1): days now
  • Low length (1.5):
  • No code block (0.5):
  • Single line (0.5):
  • Low reputation (1):
Posted by: Albert Coulibaly

79291245

Date: 2024-12-18 13:26:42
Score: 0.5
Natty:
Report link

A few years ago I had a similar problem with a Dell monitor (30'' 2560x1600 resolution) connected with an HDMI cable to a Dell laptop (an old xps 15)

The only solution that worked for me was to use a DisplayPort cable instead (luckily both devices also supported a DisplayPort socket)

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

79291242

Date: 2024-12-18 13:25:42
Score: 2
Natty:
Report link

I am using Next.js v15.1.0 with the App Router and encountered a hydration error. enter image description here

The issue was resolved by wrapping the MUI AppBar component with a Box component, which fixed the error.

I’m sharing this here in case it might help someone facing a similar problem.

<html lang="en">
      <body className={`${geistSans.variable} ${geistMono.variable}`}>
        <Box>
           <AppBar position="static" sx={{ backgroundColor: "#0d0402" }}>
              <Container
                sx={{
                  maxWidth: "1200px",
                  textAlign: "center",
                }}
              >
                <Toolbar disableGutters sx={{ justifyContent: "space-between" }}>
                ...
                </Toolbar>
              </Container>
            </AppBar>
        </Box>
        <ThemeProvider>{children}</ThemeProvider>
      </body>
    </html>

Reasons:
  • Long answer (-0.5):
  • Has code block (-0.5):
  • Me too answer (2.5): facing a similar problem
  • Low reputation (0.5):
Posted by: Abdul Mannan

79291240

Date: 2024-12-18 13:23:41
Score: 2.5
Natty:
Report link
object.image.blob.saved_changes?

This helped me!!!

Reasons:
  • Low length (1.5):
  • Has code block (-0.5):
  • Has no white space (0.5):
  • Low reputation (1):
Posted by: Atish Maske

79291238

Date: 2024-12-18 13:22:40
Score: 1.5
Natty:
Report link

Go to the ios folder, delete the following 4 files, and run flutter pub get and "pod install" commands again.

  1. Podfile
  2. Podfile.lock
  3. Pods folder
  4. XCWorkspace file

This shall resolve your issue.

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

79291234

Date: 2024-12-18 13:21:39
Score: 5.5
Natty:
Report link

i also facing the same issue,on local system generated pdf is good but on live server the pdf get zoom

Reasons:
  • Low length (1):
  • No code block (0.5):
  • Me too answer (2.5): i also facing the same issue
  • Single line (0.5):
  • Low reputation (1):
Posted by: Jatin Choudhary

79291227

Date: 2024-12-18 13:19:39
Score: 0.5
Natty:
Report link

There could be deletion of Application scene from storyboard. This happens with me as well. So in this case, you can create a new empty project and follow steps below -

  1. Open Main.storyboard file as source code.
  2. Start copying after . From to . After this you will find
  3. Replace copied code to your project file in same way you did for copying, that is after and before and DONE
  4. Verify this my opening storyboard file in interface builder, you will see Application scene is connected.

You can change title by clicking on it and can change top menu as well.

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

79291225

Date: 2024-12-18 13:18:38
Score: 3
Natty:
Report link

I made a package: https://github.com/ginqi7/image-slicing

It provides some similar features:

  1. It cuts the image into multiple parts, allowing you to preview and navigate image links in different types of buffers, such as org mode or eww mode.
  2. Asynchronous download of remote images.

you can give it a try.

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

79291224

Date: 2024-12-18 13:16:38
Score: 2.5
Natty:
Report link

You can go to WK Bakery Page Builder > Role Manager > Post Types and see if it is enabled for the post type you are trying to edit. - This is the perfect solution instead of adding new plugins.

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

79291221

Date: 2024-12-18 13:15:38
Score: 1
Natty:
Report link

You could use lexik/jwt package provided by symfony.
Run the following commands in order:

  1. php composer.phar require "lexik/jwt-authentication-bundle" (install the package)
  2. bin/console lexik:jwt:generate-keypair (generate keys)

Here is the symfony docs for more info: https://symfony.com/bundles/LexikJWTAuthenticationBundle/current/index.html

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

79291206

Date: 2024-12-18 13:11:37
Score: 2
Natty:
Report link

I solved my problem by your code.Thanks a lot!

Reasons:
  • Blacklisted phrase (0.5): Thanks
  • Whitelisted phrase (-2): I solved
  • Low length (1.5):
  • No code block (0.5):
  • Single line (0.5):
  • Low reputation (1):
Posted by: Gary Lu

79291203

Date: 2024-12-18 13:10:36
Score: 2
Natty:
Report link

What you want to do is create an angular custom web component. I found a great tutorial on how to do it here:

https://blog.kalvad.com/export-your-angular-component-as-a-web-component/

Upgrading it to the recent angular went very smoothly for me. If you run on any challenges I will publish an updated example.

Reasons:
  • Low length (0.5):
  • No code block (0.5):
  • Starts with a question (0.5): What you
  • Low reputation (0.5):
Posted by: Bartosz546

79291200

Date: 2024-12-18 13:09:36
Score: 2.5
Natty:
Report link

From what you are describing, you are using the Aggregated data. If you want all the individal records instead you need to read the Raw data see here. Each individual record should be the same as the Google Fit data you see in the bottom of your screenshot.

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

79291193

Date: 2024-12-18 13:07:35
Score: 0.5
Natty:
Report link
  1. If everything is visible on the single screen - try to use StatelessWidget with const keyword, So that flutter can reuse.
  2. If everything is need not be visible on single screen (needs scrolling to see all items) use ListView.builder(...) or GridView.builder(...) or any Sliver variant.
Reasons:
  • Low length (0.5):
  • Has code block (-0.5):
  • Low reputation (0.5):
Posted by: yugandhar

79291188

Date: 2024-12-18 13:05:35
Score: 2
Natty:
Report link

I came across this error when deploying my application along with the embedded python distribution. I had added pip to the embedded distribution, a Lib/site-packages folder and installed a number of packages to the embedded distribution.

With the help of the answer from @tbrugere, I used DUMPBIN with the /DEPENDENTS option on cv2.pyd and found the only dependency not in the SyWOW64 directory was python3.dll. The target machine was a newly created VM without python installed.

Copying python3.dll from the embedded distribution's top level folder to the Lib/site-packages/cv2 folder did the trick.

Reasons:
  • Long answer (-0.5):
  • No code block (0.5):
  • User mentioned (1): @tbrugere
  • Low reputation (1):
Posted by: PK1

79291187

Date: 2024-12-18 13:05:34
Score: 4.5
Natty: 3.5
Report link

To count words for different languages use https://countsword.com/

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

79291177

Date: 2024-12-18 13:01:33
Score: 3.5
Natty:
Report link

worked when i used client.socket.emit(event, data, async (acknowledgment: any) insted of socket.to(targetSocketId).emit

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

79291172

Date: 2024-12-18 12:59:31
Score: 6 🚩
Natty: 5
Report link

refer this link https://medium.com/@Idan_Co/the-ultimate-print-html-template-with-header-footer-568f415f6d2a. it's helpful to avoid the overflow

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

79291150

Date: 2024-12-18 12:51:28
Score: 1.5
Natty:
Report link

Okay, for anyone who might need to know. I tried to just use the count parameter and it works :)

recommender.top_items(count: 9)

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

79291141

Date: 2024-12-18 12:49:28
Score: 1.5
Natty:
Report link

There isn't currently easy solution because viewer (both APS Viewer and Tandem Viewer) are polluting global namespace. There can be some options:

<script>
  window.USE_LMV_APP_NAMESPACES = true;
  window.LMV_APP_NAMESPACE = 'myApp';
</script>

This should be set before loading first viewer script. Note this option wasn't thoroughly tested and may have some limitations.

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

79291140

Date: 2024-12-18 12:49:28
Score: 0.5
Natty:
Report link

When writing every code, be sure to use the library() function. Each .r file is working in the base form. For example, if you start a new r script it should be run this way:

library(tidyr)
newtable4a <- pivot_longer(table4a, 2:3,  names_to = "year", values_to = "cases")

Without doing this, R is working in the base form. It's also a good idea to re-install packages from time to time because they do update.

Reasons:
  • Has code block (-0.5):
  • Starts with a question (0.5): When
  • Low reputation (0.5):
Posted by: Will

79291138

Date: 2024-12-18 12:49:28
Score: 2.5
Natty:
Report link

in my case, it's due to remove the first open angle bracket in line 1 position1 by mistake.

!-- Copyright (c) Microsoft Corporation and Contributors. -->

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

79291133

Date: 2024-12-18 12:46:27
Score: 0.5
Natty:
Report link

In my case sudo was the solution (or the problem).

So

git clone http://website.com/_git/project.git  
[...] The requested URL returned error: 502

while

sudo git clone http://website.com/_git/project.git

works fine.

I have no idea what I set or installed bad so I needed sudo. However I was very suprised as the error message didn´t lead me to that solution.

Reasons:
  • Blacklisted phrase (0.5): I need
  • Has code block (-0.5):
  • Low reputation (0.5):
Posted by: El-Coder-SB

79291126

Date: 2024-12-18 12:44:26
Score: 6.5 🚩
Natty: 4.5
Report link

Is this working? am not able to byepass the cloudfare captcha. Need help.

Reasons:
  • RegEx Blacklisted phrase (2): working?
  • Low length (1.5):
  • No code block (0.5):
  • Contains question mark (0.5):
  • Single line (0.5):
  • Starts with a question (0.5): Is this
  • Low reputation (1):
Posted by: Baravi

79291121

Date: 2024-12-18 12:43:25
Score: 2.5
Natty:
Report link

Contacted tech support, and they suggested passing the DPI value to the print method. Seems to be faster now; it takes 7-12 seconds.

pdfDocument.Print(150);

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

79291118

Date: 2024-12-18 12:43:25
Score: 0.5
Natty:
Report link

This behavior is due to the microtask queue and how promises chaining works in JavaScript. in the first example Promise.reject() creates a rejected promise. This immediately schedules the catch handlers attached to the promise in the microtask queue for execution after the current synchronous code has finished.

promise.catch(() => console.log(1));

This schedules a microtask for the first catch handler to handle the rejection and log 1. promise.catch(() => console.log(2));

This schedules another microtask for the second catch handler to handle the same rejection and log 2

in the second example Promise.reject() creates a rejected promise. The rejection is scheduled to be handled in the microtask queue by the first catch handler.

promise.catch(() => console.log(1))

The first catch is chained to the promise. When the rejection is handled here and logs 1, the promise returned by this catch becomes a resolved promise. .catch(() => console.log(2))

This catch is attached to the promise returned by the previous catch. Since the previous catch has resolved the promise, this catch is not triggered.

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

79291107

Date: 2024-12-18 12:40:24
Score: 3
Natty:
Report link

I just found out that error 403 was caused by default deny assignments on all permissions on the managed application. After updating technical configuration and adding Microsoft.Synapse/workspaces/administrators/write to bypass deny default deny assignments, app is not getting 403 error anymore :)

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

79291099

Date: 2024-12-18 12:38:24
Score: 5
Natty: 4
Report link

It seems that LazyVStack is only "lazy" when within a ScrollView or List?

Yes, its true

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

79291098

Date: 2024-12-18 12:37:23
Score: 1
Natty:
Report link

Building on @LStarky 's answer I made snippet to remove all duplicates except the oldest (lowest ID) one.

DELETE my_table FROM my_table
  JOIN (
    SELECT MIN(id) AS calc_id, identField1, identField2
    FROM my_table
    GROUP BY identField1, identField2
    HAVING COUNT(id) > 1
    ) sub ON sub.calc_id != my_table.id 
       AND sub.identField1 = my_table.identField1
       AND sub.identField2 = my_table.identField2
Reasons:
  • Has code block (-0.5):
  • User mentioned (1): @LStarky
  • Low reputation (0.5):
Posted by: Dragonduck

79291081

Date: 2024-12-18 12:29:22
Score: 1.5
Natty:
Report link

After I copied the original button (as an inherited FormField – CustomButton), the piecewise check that my _render() executes was passed.

After I saw a different design than the original button on the copied button, I looked for the reason for this.

The reason my CustomButton is not working as expected is the button for the setting process. If the “process button” property is set to “true”, it will not work. After I set it to “false”, my _render executed.

Thanks for your comments, this allowed me to exclude or check a few things, even though I came up with the solution in a different way.

Reasons:
  • Blacklisted phrase (0.5): Thanks
  • Long answer (-0.5):
  • No code block (0.5):
  • Self-answer (0.5):
  • Low reputation (0.5):
Posted by: FelixFeuerdorn

79291079

Date: 2024-12-18 12:29:22
Score: 3
Natty:
Report link

The issue looks to be caused by file permissions and file ownership. VScode workspace folder was originally created in Ubuntu Documents folder. Creating a separate folder in Home space fixed 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: Cody Lee

79291078

Date: 2024-12-18 12:29:20
Score: 6 🚩
Natty:
Report link

I have tried Better Search and Replace plugin but it is not working on my website. Is there any other plugin?

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

79291076

Date: 2024-12-18 12:28:19
Score: 0.5
Natty:
Report link

At lib docs:

Email has 2 basic body variants: text and html. Sender can choose to include: one, other, both or neither(rare).

lib athor.

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

79291075

Date: 2024-12-18 12:27:19
Score: 2
Natty:
Report link

I also faced the same challenge on Windows, pip and conda were giving me endless challenges and compatibility issues. I then used Anaconda Navigator, selected the environment, searched for matplotlib and pressed apply. Installing matplotlib

I then opened my environment in Jupyter Notebook and I was able to use the module.

Open in Jupyter Notebook

Let me know how that goes.

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

79291068

Date: 2024-12-18 12:26:19
Score: 1
Natty:
Report link

You can replace your formula with:

=TEXTJOIN(" ",TRUE,C1,"mastered the following suffixes:",FILTER(A2:A4,B2:B4=1))

And use the additional formula for checkboxes that aren't ticked:

=TEXTJOIN(" ",TRUE,C1,"is still working on the following suffixes:",FILTER(A2:A4,B2:B4=0))
Reasons:
  • Low length (0.5):
  • Has code block (-0.5):
  • Low reputation (1):
Posted by: Vlado Bošnjaković

79291062

Date: 2024-12-18 12:24:18
Score: 3
Natty:
Report link

The answer to this question is you are not allowed to use the name "Booking" as a name for a model, a class or something like this in Blazor. I changed the "Booking" class to BookingModel and now it working perfectly fine for me.

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

79291060

Date: 2024-12-18 12:23:18
Score: 3
Natty:
Report link

I just restarted my system because I did everything discussed on the internet, but it didn't solve the issue. However, a system restart fixed it.

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

79291053

Date: 2024-12-18 12:21:17
Score: 1.5
Natty:
Report link

solved, I just needed to put Out-Null in every .add of any object in the entire script.

the topic here where I found the solution

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

79291050

Date: 2024-12-18 12:20:17
Score: 0.5
Natty:
Report link

You could do a peek and throw exception:

map.values()
    .stream()
    .peek(a -> {
        if (stringToBeMatched == a.getField()) {
            throw new RuntimeException("Expecting field to match: " + stringToBeMatched);
        }
    });
Reasons:
  • Low length (0.5):
  • Has code block (-0.5):
  • Low reputation (0.5):
Posted by: alex-jesper

79291033

Date: 2024-12-18 12:17:16
Score: 1
Natty:
Report link

You can run ./gradlew wrapper --gradle-version=6.7.1 with the version you need. You can check the exact command on the gradle release page, for example https://docs.gradle.org/6.7.1/release-notes.html

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

79291032

Date: 2024-12-18 12:16:16
Score: 2
Natty:
Report link

Android Studio: The latest stable version is 2023.2.1 (released in February 2024).

Gradle: The latest version is 8.11.1 (released in November 2024).

Java: The latest version is Java 23 (released in September 2024).

down grade them as above, you can make the apk

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

79291029

Date: 2024-12-18 12:15:15
Score: 2
Natty:
Report link

This is the correct method for copy code authentication type template message sending request { "messaging_product": "whatsapp", "to": "+917492956188", "type": "template", "template": { "name": "signup_login_otp", "language": { "code": "en_GB" }, "components": [ { type: 'body', parameters: [ { type: 'text', text: "1234" } ] }, { type: 'button', sub_type: 'url', index: 0, parameters: [ { type: 'text', text: "1234" } ] } ] } }

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

79291026

Date: 2024-12-18 12:12:15
Score: 0.5
Natty:
Report link

You can't use dot notation with template strings to access properties in a JavaScript object. Instead, you should use bracket notation like info[name] to dynamically retrieve nested values.

Here's is an updated version of your code:

<p className="text-sky-400">{info[name]?.title}</p>

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

79291024

Date: 2024-12-18 12:12:15
Score: 4.5
Natty:
Report link

npm config set legacy-peer-deps true

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

79291020

Date: 2024-12-18 12:10:14
Score: 2.5
Natty:
Report link

My system's complaint was installing the package for only my user, not all users. Worked just fine from Downloads on doing a blanket install. Not a big deal for me, pita for others

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

79291019

Date: 2024-12-18 12:10:14
Score: 1
Natty:
Report link

In my case, the pre-commit file was a php file and I hadn't php installed. I was getting this:

fatal: cannot exec 'pre-commit': No such file or directory

And installing php-cli with

sudo apt install php-cli

Solved the problem.

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

79291018

Date: 2024-12-18 12:09:13
Score: 1
Natty:
Report link

The behavior you're experiencing occurs because the "When a new email arrives" trigger in Power Automate by default only works for the Inbox folder unless explicitly configured for other folders. Emails moved to subfolders by rules may not trigger the flow unless explicitly set up to monitor those folders.

To address this issue, you can modify your flow or use an alternative trigger. Here's how you can make your flow work for emails in specific folders:

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

79291017

Date: 2024-12-18 12:09:13
Score: 1
Natty:
Report link

Hi Please use below steps.

First you need to Configure the Azure VPN Client

Then :

Navigate to "Firewalls and virtual networks" of you SQL server and make sure to set "Deny public network access" to yes.

Create an Azure private endpoint. It will create endpoint for SQL server within your virtual network and it'll be assigned a private IP from within subnet's IP range. You will use this private IP to connect to SQL server. On your local machine, make sure you're connected to VPN and open SQL Server Management Studio:

Under "Server name" enter private IP address of Azure private endpoint created in step 2.

Under "Login" field, enter username in format "username@public_sql_server_name" (e.g. [email protected]). For password, just enter your password.

Last thing to do is to click on "Options" and navigate to "Connection properties". Make sure to check "Encrypt connection" and "Trust server certificate".

This is required as server's certificate is issued to "my-sql-server.database.windows.net" and you're accessing it via private IP. If this wasn't checked, management studio wouldn't trust server's certificate and would refuse connection.

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

79291011

Date: 2024-12-18 12:07:12
Score: 4.5
Natty:
Report link

I guess your using the globalize gem? In this case: It seems that the serialize method of globalize is setting the class_name_or_coder attribute to Object which let's active record then print the deprecation warning.

This is an already known problem, see Github Issue. As I understand globalize will provide a fix for this with this: serialization

Since I have the same problem I would suggest to wait for a new globalize release which fixes the generation of this deprecation warning.

Reasons:
  • Blacklisted phrase (1): I have the same problem
  • Has code block (-0.5):
  • Me too answer (2.5): I have the same problem
  • Contains question mark (0.5):
  • Low reputation (1):
Posted by: Vakmeth

79291000

Date: 2024-12-18 12:02:11
Score: 1
Natty:
Report link

As a solution, I stopped using the external callback and instead added an event listener:

chart.canvas.addEventListener('mousemove', chartHovering);

In the chartHovering function, I locate the nearest x-axis tick based on the mouse position, then use its datetime to find the corresponding element from the dataset.

After that, I proceed to build my custom tooltip as before.

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

79290998

Date: 2024-12-18 12:02:11
Score: 3
Natty:
Report link

im using elementor header and footer plugin UAE in which header is visible on website but footer is not visible with the same setting

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

79290995

Date: 2024-12-18 12:01:11
Score: 1
Natty:
Report link

I believe the official Socket.IO library for Go is outdated and hasn't been actively maintained. This makes it difficult to use the latest features of Socket.IO when integrating with a modern frontend like Next.js.

However I recently used Gorilla WebSocket (in uni project), Its lightweight and extensible design makes it ideal for building custom real-time features like rooms and broadcasting.
It offers thread-safe concurrent reads/writes, and support for text and binary messages. It allows customizable handshakes for authentication, and flexible connection management with timeouts.
docs: https://pkg.go.dev/github.com/gorilla/websocket

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

79290989

Date: 2024-12-18 11:59:10
Score: 3.5
Natty:
Report link

Just Remove Dll and add the original DLL again.

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

79290987

Date: 2024-12-18 11:58:10
Score: 1.5
Natty:
Report link

Try following these steps :

  1. Press F1 to open the command palette

  2. Run the Open User Settings (JSON) command

  3. Add the following to the JSON: "dart.previewSdkDaps": false,

Reference from: https://github.com/Dart-Code/Dart-Code/issues/4726#issuecomment-1709827395

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

79290985

Date: 2024-12-18 11:57:09
Score: 4.5
Natty:
Report link

any update over this issue, as I want it to work with 'ar' as well.

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

79290984

Date: 2024-12-18 11:57:09
Score: 1.5
Natty:
Report link

Based on the angular documentation, the only difference that I could see is that on the docs, they use waitForAsync instead of declaring directly an asynchronous function when configuring the testModule.

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

79290980

Date: 2024-12-18 11:56:09
Score: 1
Natty:
Report link

The Procore BIM Web Viewer SDK (@procore/bim-webviewer-sdk) does not natively support adding custom tessellation geometry directly to the viewer out of the box. The SDK is designed primarily to render and interact with BIM (Building Information Modeling) models, typically using formats like IFC or glTF, which already contain pre-defined geometry.

Directly adding tessellation geometry to the Procore BIM Web Viewer is not natively supported, but you can overlay custom geometry using a combination of external 3D libraries like three.js alongside the SDK. This would involve manually positioning and managing the geometry to ensure it aligns with the BIM model.

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

79290975

Date: 2024-12-18 11:54:08
Score: 1.5
Natty:
Report link

It should be due to below reasons

  1. Socket.IO Version Compatibility:- Please Confirm that both the server and client are using compatible versions of Socket.IO and Make sure both are aligned For example: Run npm list socket.io on the server. Run npm list socket.io-client on the client.
  2. Network or Middleware Issues
Reasons:
  • No code block (0.5):
  • Low reputation (1):
Posted by: Vaibhav Gupta

79290973

Date: 2024-12-18 11:53:08
Score: 2
Natty:
Report link

service specific error code 1 is either port80 is being used or you have to configure java virtual machine in tomcat8w.exe in bin folder of tomcat in c:\progrmafiles or c:\ drive .Error code 4 is you have latest version of tomcat and error code 2 is path specific error. error code 2 set path correctly.

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

79290970

Date: 2024-12-18 11:52:07
Score: 2.5
Natty:
Report link

I personally use !/ for filtering the debug output from the android emulator. Like @sergey-ruppel showed.

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

79290962

Date: 2024-12-18 11:48:06
Score: 4.5
Natty:
Report link

Are you looking to modify the spelling in the Bill of Lading PDF report or in any of the menu items?

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

79290950

Date: 2024-12-18 11:45:05
Score: 2.5
Natty:
Report link
Мир🌏

(☞ ͡ ͡° ͜ ʖ ͡ ͡°)☞👏( 'ω' )👏( 'ω' )(○`д´)ノシSTOP!✧(。•̀ᴗ-)✧ψ(๑'ڡ'๑)ψ(∩´∀∩)💕👏( 'ω' )👏( 'ω' )┌(┌^o^)┐👌( ・ㅂ・)و💰( *¯ ³¯*)♡凸( •̀_•́ )凸( ´)Д(` )(*´罒)┌(┌^o^)┐ψ(๑'ڡ'๑)ψ💥Σ(°д°ノ)ノ(○`д´)ノシSTOP!ψ(๑'ڡ'๑)ψ💥Σ(°д°ノ)ノ👌( ・ㅂ・)و💰☆(ノ◕ヮ◕)ノq(❂‿❂)p(◍•ᴗ•◍)(ʘᴗʘ✿)o(〃^▽^〃)o✺◟( ͡° ͜ʖ ͡°)◞✺(≡^∇^≡)( ⚈̥̥̥̥̥́⌢⚈̥̥̥̥̥̀)( ⚈̥̥̥̥̥́⌢⚈̥̥̥̥̥̀)٩(๑꒦ິȏ꒦ິ๑)۶(´༎ຶ ͜ʖ ༎ຶ )♡ ( -̥̥̥̥̥̥̥̥̥̥̥̥̥̥̥̥̥̥̥̥̥̥̥̥̥᷄◞ω◟-̥̥̥̥̥̥̥̥̥̥̥̥̥̥̥̥̥̥̥̥̥̥̥̥̥᷅ ) ᕕ( ཀ ʖ̯ ཀ)ᕗ(ू˃̣̣̣̣̣̣︿˂̣̣̣̣̣̣ ू)ᕕ( ཀ ʖ̯ ཀ)ᕗ(ू˃̣̣̣̣̣̣︿˂̣̣̣̣̣̣ ू)˚‧º·(˚ ˃̣̣̥⌓˂̣̣̥ )‧º·˚(ू˃̣̣̣̣̣̣︿˂̣̣̣̣̣̣ ू)˚‧º·(˚ ˃̣̣̥⌓˂̣̣̥ )‧º·˚*:..。o○ ○o。..:*♛┈⛧┈┈•༶✧༺♥༻✧**✿❀ ❀✿***:..。o○ ○o。..:*⋆ ˚。⋆୨୧˚ ˚୨୧⋆。˚ ⋆*+:。.。 。.。:+***✿❀ ❀✿**༶•┈┈⛧┈♛.・゜゜・𓃩𓃱𓃝𓃬𓃝𓃟𓃯𓃱𓃬𓃠𓃡𓃝𓃗𓃗𓃗𓃗𓃗𓃩𓃡𓃩𓃩𓃝𓃬𓃘(´༎ຶ ͜ʖ ༎ຶ )♡ᕕ( ཀ ʖ̯ ཀ)ᕗ( ⚈̥̥̥̥̥́⌢⚈̥̥̥̥̥̀)(´•̥̥̥д•̥̥̥̀ू๑)‧º·˚( ⚈̥̥̥̥̥́⌢⚈̥̥̥̥̥̀)ᕕ( ཀ ʖ̯ ཀ)ᕗ(´༎ຶ ͜ʖ ༎ຶ )♡(´•̥̥̥д•̥̥̥̀ू๑)‧º·˚(´༎ຶ ͜ʖ ༎ຶ )♡✧༺♥༻✧

Reasons:
  • Long answer (-0.5):
  • Has code block (-0.5):
  • No latin characters (2.5):
  • Low reputation (1):
Posted by: Богдан Радаев