79506300

Date: 2025-03-13 11:30:16
Score: 2
Natty:
Report link

For vue3 you can check this library: https://github.com/SortableJS/vue.draggable.next

Vue component (Vue.js 3.0) allowing drag-and-drop and synchronization with view model array.

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

79506295

Date: 2025-03-13 11:28:16
Score: 1.5
Natty:
Report link

I was able to compile the last GLIBC following the steps suggested by @Alex-Kosh, and as @enthusiasticgeek mentioned, ldd didnt reflect the change even after rebooting, what I had to do was to setup LD_LIBRARY_PATH in a command prompt to test it, however in Ubuntu 18.04 and GLIBC 2.34, I am getting Segmentation fault (core dumped).

$ export LD_LIBRARY_PATH=/opt/glibc-2.34/lib:$LD_LIBRARY_PATH
$ ldd --version | head -n1
Segmentation fault (core dumped)
Reasons:
  • Has code block (-0.5):
  • User mentioned (1): @Alex-Kosh
  • User mentioned (0): @enthusiasticgeek
  • Low reputation (1):
Posted by: Pablo Abrudsky

79506292

Date: 2025-03-13 11:27:16
Score: 1
Natty:
Report link

use temporary window

  const [cwindow, setcwindow] = useState<any>(typeof window == 'undefined' ? {} : window);
Reasons:
  • Low length (1):
  • Has code block (-0.5):
  • Low reputation (0.5):
Posted by: alguerocode

79506289

Date: 2025-03-13 11:25:15
Score: 1.5
Natty:
Report link

I built a "phat fork" with pre-built locales, use it mindfully (eg. you don't want to bundle 30MB into client code) so maybe best with a JS bundler and loading dynamically.

Maybe a good idea to fork it and rely on your own fork, so that if it changes there is no problem.

Phat fork with pre-build locales of FirebaseUI Web

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

79506287

Date: 2025-03-13 11:24:15
Score: 1
Natty:
Report link

You need to add this at the top of vite.config.ts file:

/// <reference types="vitest/config" />

Documented in the Vitest example of vite.config.ts here.

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

79506284

Date: 2025-03-13 11:23:15
Score: 3.5
Natty:
Report link

It is recommended that you install the androi studio.

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

79506274

Date: 2025-03-13 11:20:14
Score: 1
Natty:
Report link

Despite the fact I was not using Docker (not even Docker's daemon was on) I had tried Docker in the past on my laptop without successful results. Apparently, due to Docker's bugs, these Redis files were automatically created by Docker on my laptop's start, as I had used in the past Redis containers, containers I had already cleaned up.

The only solution I found to this problem was to completely uninstall Docker, Docker Compose, and Docker Desktop.

Reasons:
  • No code block (0.5):
  • Self-answer (0.5):
Posted by: Chiara Ani

79506259

Date: 2025-03-13 11:15:13
Score: 4
Natty: 6
Report link

Why python 2.7? I mean just update to like 2.9 for it to work. Else just reinstall the whole thing.

Reasons:
  • Low length (1):
  • No code block (0.5):
  • Contains question mark (0.5):
  • Single line (0.5):
  • Starts with a question (0.5): Why
  • Low reputation (1):
Posted by: normie on code

79506248

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

You can use react-native-camera-kit

Reasons:
  • Whitelisted phrase (-1.5): You can use
  • Probably link only (1):
  • Low length (2):
  • No code block (0.5):
  • Has no white space (0.5):
  • Single line (0.5):
  • High reputation (-1):
Posted by: Jinesh Francis

79506226

Date: 2025-03-13 10:58:09
Score: 0.5
Natty:
Report link

I think I figured it out - instead of just reading the document's contentControls collection via contentControls = context.document.contentControls; the checkboxes show up when using the getContentControls function:

await Word.run(async (context) => {

const doc = context.document;

let contentControls = context.document.getContentControls({
types: [Word.ContentControlType.checkBox, Word.ContentControlType.richText]
});
contentControls.load("items, tag, type");
await context.sync();

console.log("contentControls:", contentControls);

contentControls.items.forEach(control => {
console.log("Tag:", control.tag, "Type:", control.type);
});

});

Here's the Microsoft documentation for that:
https://learn.microsoft.com/en-us/javascript/api/word/word.document?view=word-js-preview#word-word-document-getcontentcontrols-member(1)

And this was the stackoverflow post that set me on the right track:
Office.js Word API not able to read plain text type content controls

Reasons:
  • Blacklisted phrase (1): stackoverflow
  • Whitelisted phrase (-2): I figured it out
  • Probably link only (1):
  • Long answer (-0.5):
  • Has code block (-0.5):
  • Self-answer (0.5):
  • Low reputation (1):
Posted by: ak2002

79506216

Date: 2025-03-13 10:56:09
Score: 1
Natty:
Report link

Fixed by

namespace SwagShopFinder\Core\Content\ShopFinder;

changing namespace to not add the file name and match the plugin name directories including all path excluding filename.php

so I had:

namespace SwagShopFinder\Core\Content\ShopFinder\ShopFinderCollection

and similar namespaces which were incorrect.

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

79506211

Date: 2025-03-13 10:55:08
Score: 2
Natty:
Report link

There's no direct support for the regular desktop applications from Selenium. However, if the Desktop application have been developed using cross platform libraries like CEF (Chromium Embedded Framework) or Electron. Selenium can be used to automated such Desktop application fully or for the components where CEF/Electron like libraries are used.

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

79506210

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

You can watch the below video which explains how to change the header cell color of a column when we filter, sort etc.

https://www.youtube.com/watch?v=SaMLIvNIkHU

Reasons:
  • Blacklisted phrase (1): youtube.com
  • Low length (1):
  • No code block (0.5):
  • Low reputation (0.5):
Posted by: Reneesh TK

79506202

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

SOLVED: setting this t-name template in the corresponding renderer.js file was missing:

static pillTemplate = "mycustommodule.GanttRenderer.Pill";
Reasons:
  • Low length (1):
  • Has code block (-0.5):
  • Self-answer (0.5):
Posted by: Ahrimann Steiner

79506189

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

In your semilog plot, the x-axis is on a log scale, but the y-axis is linear. A linear axis doesn’t have smaller divisions if that are log numbers, so you won’t see minor ticks on it like you did in a full log-log plot. If you want both axes to follow a log scale, use loglog(x, y). Otherwise, if you want minor ticks in a semilog plot, you have to add them manually using LogLocator.

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

79506179

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

Garbage Collector in Java is also called Automatic Memoty Management. In simple words, it's used to free the heap memory. It works on objects that are no longer references.

Request Garbage Collector (GC) Methods:

  1. System.gc(); -> Request GC to run

  2. Runtime.getRuntime().gc(); -> Way to request GC

Ways to make Object eligible for GC

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

79506172

Date: 2025-03-13 10:40:05
Score: 3
Natty:
Report link

Have you tried setting the vertical options on the grid itself?

<Grid VerticalOptions="Start" BackgroundColor="Yellow">
        <Label VerticalOptions="Start" BackgroundColor="Green" Text="^^^ I want to get rid of that yellow space ^^^"/>
    </Grid>
Reasons:
  • Whitelisted phrase (-1): Have you tried
  • RegEx Blacklisted phrase (1): I want
  • Low length (0.5):
  • Has code block (-0.5):
  • Ends in question mark (2):
  • Low reputation (1):
Posted by: Bill

79506170

Date: 2025-03-13 10:40:04
Score: 4
Natty:
Report link

The "tables of the relationship between two other tables" is a Many-To-Many Relationship. This can be achieved by giving both tables an ICollection List of both Classes. EF Core will do the rest and generate it.

https://learn.microsoft.com/en-us/ef/core/modeling/relationships/many-to-many more on this under the chapter Basic many-to-many

Now to your disliking of storing an entire model of the DB in code. Why exactly don't you want to do it? Is there any specific reason?

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

79506153

Date: 2025-03-13 10:36:03
Score: 3.5
Natty:
Report link

Update angular language extension to latest, They just released a fixed

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

79506150

Date: 2025-03-13 10:35:03
Score: 2
Natty:
Report link

As mentioned, this error usually means that you're trying to update an on-premises ('synced') user from the cloud service. You can't use the Microsoft Graph 'update' API to do this:

For synced users, the ability to update certain properties is additionally determined by the source of authority and whether synchronization is enabled.

However, it is now possible to provision and update on-premises synced users via the Microsoft Graph API with the 'bulkUpload' API, which is a different part of Microsoft Graph, part of Entra API-driven inbound provisioning:

https://learn.microsoft.com/en-us/entra/identity/app-provisioning/inbound-provisioning-api-concepts

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

79506143

Date: 2025-03-13 10:33:03
Score: 1
Natty:
Report link

The only way that I could find to move between the placeholders for the template parameters was to use the Edit menu's Select Next Placeholder option. This option can be accessed via the keyboard shortcut Ctrl+Shift+OemQuestion (which I took to mean Ctrl+Shift+?).

This option has the effect of moving the cursor sequentially forwards through the available placeholders (from the cursor's current position to the next placeholder in the query tab).

Screenshot of MySQL Workbench with Edit menu's Select Next Placeholder option visible in the foreground, and the SQL Editor showing an INSERT Statement template with placeholders.

Reasons:
  • Probably link only (1):
  • No code block (0.5):
  • Contains question mark (0.5):
  • High reputation (-1):
Posted by: w5m

79506137

Date: 2025-03-13 10:29:02
Score: 4
Natty:
Report link

Use for...of Instead of for...in

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

79506134

Date: 2025-03-13 10:29:02
Score: 2
Natty:
Report link

Ok after some more research I found that this might have been fixed with CommunityToolkit.Maui version 11.0.0
https://github.com/CommunityToolkit/Maui/releases/tag/11.0.0
or
https://github.com/CommunityToolkit/Maui/pull/2309

This requires .NET 9

I am currently still bringing my .NET 8 Project to .NET 9 so I could not test this

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

79506132

Date: 2025-03-13 10:28:02
Score: 1
Natty:
Report link

For anyone with a react Project :
I had to include the JavaScript and CSS files in the <head> of my HTML file.

    <script src='https://unpkg.com/maplibre-gl@latest/dist/maplibre-gl.js'></script>
    <link href='https://unpkg.com/maplibre-gl@latest/dist/maplibre-gl.css' rel='stylesheet' />
Reasons:
  • Low length (0.5):
  • Has code block (-0.5):
  • Low reputation (1):
Posted by: TheHabibi

79506125

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

You can access the values of a composite types alias by first writing it in parenthesis in the WHERE clause followed by one of its fields. For example:

SELECT (p).age, (p).name FROM test

When you then want to access it through a ResultSet, you can do it by referencing only the field:

rs.getInt("age");

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

79506123

Date: 2025-03-13 10:25:01
Score: 1.5
Natty:
Report link

A good reference: typescript-function-with-additional-arguments

I don't think it is possible to extend a function interface to add an argument, as you intent to do.

You can do it using types declarations, but probably not the way you need. You can easily add arguments before arguments list of original function, but I'm not sure how to do that at the end.

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

79506119

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

Surely using the Excel find is by far the fastest. You only need to see if the name is found once in any worksheet and exit as soon as it is. If the initial search range is usedrange.formula you reduce that to a minimum also as seen in examples above. You have to interact with the worksheet to load the array which is one interaction as is the Excel find but that is far faster than looping an array.

The only key reason for looping an array is perhaps because many of the names are hard to find. People use names like A or B or Sales of which there may be multiple entries in the workbook.

I overcame this by changing the name to something with a weird prefix like ZZXXZZ or such, then searching for that. If the name is not found then it can be deleted, if it is then restore its name again without the prefix.
In addition, to searching cells, you need to search, objects, pivottables, charts, conditional formats and data validations as names could all be used in these. I have had to process workbooks with several hundred thousand names whereby 99.99% were redundant. It is not fast but can be left to run overnight. As long as is it thorough and accurate and automated then slow should not really be an issue. Accuracy is more important.

Finally, with lots of names, your workbook may crash so you should build in autosaving every now and then. Statusbar is good for progress but use Mod to update it every X number of names as running on each loop will slow the process down and I add a comment suffix to each name that is in use so if you run in batches or it crashes then you can skip searching for those names again as you know they exist. easy to delete them once all done.

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

79506117

Date: 2025-03-13 10:25:01
Score: 2.5
Natty:
Report link

No, doxygen doesn’t have a setting to merge downward inheritance from external projects. Tag files only provide external base class info not external derived classes. To see a complete hierarchy, you need to run doxygen on the combined codebase or set up an umbrella documentation project.

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

79506115

Date: 2025-03-13 10:24:00
Score: 2.5
Natty:
Report link

Here's a 1000-word article on 15 Home Remedies for Toothache, well-structured with proper subheading distribution.


15 Home Remedies for Toothache: Natural Ways to Relieve Pain

A toothache can be a frustrating and painful experience, often making it difficult to eat, talk, or even sleep. While a visit to the dentist is the best long-term solution, there are several home remedies that can provide temporary relief. Whether your pain is due to cavities, gum infections, or sensitivity, natural remedies can help ease the discomfort.

In this article, we will explore 15 effective home remedies for toothache relief that are easy to use and widely available.


What Causes Toothache?

Tooth pain can stem from several dental issues, including:

Now, let’s explore the best home remedies for toothache relief.


1. Salt Water Rinse

A salt water rinse is one of the simplest and most effective ways to relieve a toothache. Salt acts as a natural disinfectant, helping to reduce inflammation and remove bacteria.

How to Use:

This method helps cleanse the affected area and promotes healing.


2. Clove Oil

Clove oil contains eugenol, a natural anesthetic with antibacterial properties that numbs pain and reduces swelling.

How to Use:

Alternatively, you can chew on a whole clove for pain relief.


3. Cold Compress

A cold compress can help reduce swelling and numb the area, providing instant relief from tooth pain.

How to Use:

This method is especially useful for pain caused by trauma or inflammation.


4. Garlic Paste

Garlic is a powerful natural antibiotic that fights infection and reduces pain.

How to Use:

Repeat this twice a day for relief.


5. Hydrogen Peroxide Rinse

A hydrogen peroxide solution can help kill bacteria and ease pain caused by infections.

How to Use:

Use this remedy once or twice a day to prevent further infection.


6. Peppermint Tea Bags

Peppermint has soothing and numbing properties that can ease toothache.

How to Use:

Alternatively, you can chill the tea bag in the fridge before applying it.


7. Onion Juice

Onions contain antibacterial properties that help fight infection and relieve pain.

How to Use:

Chewing raw onion can also help kill bacteria.


8. Turmeric Paste

Turmeric is known for its anti-inflammatory and antibacterial benefits.

How to Use:

Use this remedy twice a day for the best results.


9. Guava Leaves

Guava leaves have anti-inflammatory and antimicrobial properties that can relieve pain.

How to Use:

This remedy works well for gum pain and infections.


10. Vanilla Extract

Vanilla extract contains alcohol, which acts as a natural pain reliever.

How to Use:

Use this twice daily for relief.


11. Wheatgrass Juice

Wheatgrass has antibacterial properties that help fight infections.

How to Use:

Repeat twice a day to reduce pain and inflammation.


12. Baking Soda Paste

Baking soda can neutralize acids and reduce bacterial growth.

How to Use:

Use this remedy once daily for relief.


13. Ginger Paste

Ginger has anti-inflammatory and antibacterial properties that help relieve pain.

How to Use:

Chewing fresh ginger can also help reduce pain.


14. Cayenne Pepper Paste

Cayenne pepper contains capsaicin, which acts as a natural pain reliever.

How to Use:

This remedy may cause slight burning but can be very effective.


15. Essential Oils

Oils like tea tree oil, thyme oil, and oregano oil have antibacterial properties.

How to Use:

Repeat this twice daily for best results.


When to See a Dentist?

While these remedies provide temporary relief, visit a dentist if you experience:


Final Thoughts

Toothaches can be extremely painful, but these 15 home remedies can provide quick relief. However, they are not a substitute for professional dental care. If your pain persists, seek help from a dentist to avoid complications.

Would you like more natural remedies for oral health? Let me know! 😊

Reasons:
  • Blacklisted phrase (1): this article
  • Long answer (-1):
  • No code block (0.5):
  • Contains question mark (0.5):
  • Unregistered user (0.5):
  • Low reputation (1):
Posted by: Yeasmina Khatun

79506106

Date: 2025-03-13 10:22:00
Score: 2
Natty:
Report link

Please add details about the Spring version.
I have the feeling that could be a relevant detail on this issue

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

79506104

Date: 2025-03-13 10:20:59
Score: 4.5
Natty: 4.5
Report link

I don't have the integer values, (only the px) as they depend on the layout, I'm guessing this kind of thing is not possible?

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

79506095

Date: 2025-03-13 10:16:58
Score: 2
Natty:
Report link

The method you need is showPicker() from HTMLInputElement:

timePickerRef.current?.showPicker();

For more information: https://developer.mozilla.org/en-US/docs/Web/API/HTMLInputElement/showPicker

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

79506092

Date: 2025-03-13 10:15:58
Score: 2
Natty:
Report link

Finally I got it!
My ARP responce was too short - 42 bytes (request from C++ wireshark show only 42 bytes). I had to add 22 zeroes to my ARP to make it 64 bytes (min length). Probably my UDP packets too short too.
But running Wireshark ignores these errors and everything works. It doesnt even mark it as problem!

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

79506087

Date: 2025-03-13 10:14:58
Score: 3
Natty:
Report link

I found the answer to this, in case someone comes along with the same issue. This is my trial and error interpretation, but it does work although I cannot find it documented anywhere.

If you are using a Flex Card that calls an Integration Procedure (IP) that in turn calls a Load Data Mapper (DM) you need to have a Data Source, even if it is trivial. I used a Custom JSON that holds one empty field.

If you don't have a data source the card will not put the data from the input fields in to the JSON structure it passes to the IP. It does not matter if you set input mapping it still will not work. This is only an issue of the combination of an IP and Load DM from the Flex Card. You can call the DM directly without issue if you can get by without the DM.

Reasons:
  • Blacklisted phrase (1.5): I cannot find
  • Blacklisted phrase (0.5): I cannot
  • Long answer (-0.5):
  • No code block (0.5):
  • Self-answer (0.5):
  • Low reputation (0.5):
Posted by: ScottH7a9

79506078

Date: 2025-03-13 10:09:57
Score: 2
Natty:
Report link
Ctrl + Shift + G 

should do the work

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

79506071

Date: 2025-03-13 10:08:57
Score: 0.5
Natty:
Report link

In my case, I upgraded flutter android project. I added namespace not matched with the applicationId aka package name, also for the package inside the MainActivity.kt file

Note: I also remove the package from the AndroidManifest file.

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

79506070

Date: 2025-03-13 10:07:57
Score: 0.5
Natty:
Report link

pass the locale time of initialize the place sdk

Places.initializeWithNewPlacesApiEnabled(context, context.getGoogleMapKey(), Locale.ENGLISH)

or

Places.initialize(context, context.getGoogleMapKey(), Locale.ENGLISH)
Reasons:
  • Low length (0.5):
  • Has code block (-0.5):
  • Low reputation (0.5):
Posted by: Satish Ravani

79506068

Date: 2025-03-13 10:05:56
Score: 2
Natty:
Report link

A Photoshop UI/UX design can be transformed into a fully functional website by slicing it, exporting its assets, and structuring it using HTML, CSS, and JavaScript. For responsiveness, use Tailwind or Bootstrap. Use frameworks like React or JavaScript to add interactivity. Use GitHub, Netlify, or Vercel to deploy, test for usability, and optimize for speed.

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

79506063

Date: 2025-03-13 10:04:56
Score: 1
Natty:
Report link
const columns = [
        {
            title: 'Title',
            field: 'field',
            cellStyle: { minWidth: 300 }  --> minWidth instead of width; not sure why using % not working
        }
]

this one did save me. hope the same to you. on "material-table": "^2.0.6"

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

79506059

Date: 2025-03-13 10:03:56
Score: 1
Natty:
Report link

Now my tailwind working, but I still not understand that much

here's what I've done:

changed path in tsconfig.json from this:

"paths": {
      "@/*": ["./src/*"]
    }

to this:

"paths": {
      "@/*": ["./*"]
    }

that solved my problem all tailwind styled works perfectly fine.

In the end I still confused why I got issues. I follow every steps and the code exactly the same from NextJs Tutorial.

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

79506056

Date: 2025-03-13 10:02:55
Score: 1.5
Natty:
Report link

None of the above worked in 2025 until I did this:

  1. Go to XCode

  2. Go to Preferences

  3. Components tab

  4. Right click component -> Delete

enter image description here

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

79506046

Date: 2025-03-13 10:00:55
Score: 2.5
Natty:
Report link

Killing python from task manager solved it for me
ctrl+shift+tab
select python and kill the process,
now run again uvicron, it will be solved

Reasons:
  • Low length (1):
  • No code block (0.5):
  • Low reputation (1):
Posted by: Ritik Jain RJ

79506042

Date: 2025-03-13 09:59:54
Score: 4
Natty:
Report link

it will work with Webview? I mean all proxy connection

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

79506034

Date: 2025-03-13 09:58:54
Score: 1.5
Natty:
Report link

Last time I installed I had to use generic Linux (possibly 2.6) to install so if any guest additions were installed they'd be for linux.

Maybe truly and app like termux to install it

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

79506030

Date: 2025-03-13 09:57:54
Score: 1.5
Natty:
Report link

Retro code. It was the Internet Explorer way:

document.all.tags('title')[0].text;

Works as deep as Internet Explorer 4.0.

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

79506021

Date: 2025-03-13 09:53:53
Score: 1
Natty:
Report link

Did you try to remove all caches ?
rm -rf ~/Library/Caches/CocoaPods
rm -rf ~/Library/Developer/Xcode/DerivedData/*
pod cache clean --all
pod repo update
pod install
flutter clean
flutter pub cache clean  
flutter pub get

Reasons:
  • Whitelisted phrase (-2): Did you try
  • Low length (0.5):
  • No code block (0.5):
  • Contains question mark (0.5):
  • Starts with a question (0.5): Did you
  • Low reputation (1):
Posted by: DAzria

79506011

Date: 2025-03-13 09:50:52
Score: 3.5
Natty:
Report link

Have you addressed this issue? I also met the same issue, and my PDGF reports that unknown command: -l

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

79506007

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

How to use

let _ = Self._printChanges()  
Reasons:
  • Low length (2):
  • Has code block (-0.5):
  • Starts with a question (0.5): How to use
  • High reputation (-1):
Posted by: Codelaby

79505978

Date: 2025-03-13 09:38:49
Score: 4
Natty:
Report link

I just decided to make my own parser with excel like admin to explain data first

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

79505977

Date: 2025-03-13 09:38:49
Score: 2.5
Natty:
Report link

if you're using camera 0.11.0, upgrade it to 0.11.1.
had a similar issue and it got fixed with the update.

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

79505973

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

Thanks for this hint. This works for me:

while read -r user
do
    echo $user
    su "$user" -c 'screen -ls'
done \
< <(
    grep -Pv "(nologin|false|sync)$" /etc/passwd \
    | cut -d: -f 1
)
Reasons:
  • Blacklisted phrase (0.5): Thanks
  • Whitelisted phrase (-1): works for me
  • Low length (0.5):
  • Has code block (-0.5):
  • Low reputation (1):
Posted by: Dan Bolser

79505972

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

I was searching for such app to get programmable notifications in case some even happen .
You can look into https://notyfi.co . Very simple integration API call

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

79505967

Date: 2025-03-13 09:34:48
Score: 0.5
Natty:
Report link

tl;dr

Remove .with_infer_schema_length(None)

details

I opened a ticket (https://github.com/pola-rs/polars/issues/21298) on the pola.rs GitHub repository and received the answer there. This I want to share here.

The most relevant comment: https://github.com/pola-rs/polars/issues/21298#issuecomment-2717919596

Interpretation of functionality for date/time inference parsing:

  • "infer schema" tries up to 188 string patterns, 1x of 2x

  • it does so on every field in in scope

  • it does so for every row up to infer_schema_length is in scope

  • if "infer_schema_length" is not set, it defaults to 100 rows

  • if set to None, it processes (every field in) every row

Note that the inference is not cheap, and can significantly impact the performance.

After I removed the lines .with_infer_schema_length(None) from my rust code the performance was increased significantly, also for smaller files.

For reference, small file, unchanged, release-compiled with rustc 1.85.0 (4d91de4e4 2025-02-17)

================
CPU 132%
user    0.112
system  0.030
total   0.108

Changed, small file:

================
CPU 265%
user    0.036
system  0.038
total   0.028

Changed, big file:

================
CPU 497%
user    0.145
system  0.047
total   0.039
Reasons:
  • RegEx Blacklisted phrase (1): I want
  • Long answer (-1):
  • Has code block (-0.5):
  • Self-answer (0.5):
  • Low reputation (0.5):
Posted by: kelko

79505953

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

But, what is an auxiliary counter?

You can determine the auxiliary counter source by frequency. The auxiliary counter frequency on my machine is 24000000 which is the HPET hardware timer:

QueryPerformanceFrequency: 10000000 (10 MHz)

QueryAuxiliaryCounterFrequency: 24000000 (24 MHz)

And why would you want to use one?

There's a few use cases but generally correlating events and time-stamps from multiple machines over a network or determining the reliability or accuracy of other timers on the system.

And how do you actually read the value of an auxiliary counter?

The API is designed to convert QPC values to the equivalent AUX counter:

LARGE_INTEGER PerformanceCounterValue;
ULONG64 AuxiliaryCounterValue;
ULONG64 AuxiliaryConversionError;

QueryPerformanceCounter(&PerformanceCounterValue);

ConvertPerformanceCounterToAuxiliaryCounter(
    PerformanceCounterValue.QuadPart, 
    &AuxiliaryCounterValue, 
    &AuxiliaryConversionError
    );

printf("%llu +/- %llu", AuxiliaryCounterValue, AuxiliaryConversionError);

The function will fail with E_BOUNDS for QPC values that are outside a range of 10 seconds.

Convert QPC to AUX with ConvertPerformanceCounterToAuxiliaryCounter and the other party would convert AUX back to QPC with ConvertAuxiliaryCounterToPerformanceCounter and you have the AUX timestamp for high precision correlation of events from multiple machines across a network, QPC for high precision correlation of local events, without accumulating an increasing number of frequency offset errors mentioned in the MSDN documentation: https://learn.microsoft.com/en-us/windows/win32/sysinfo/acquiring-high-resolution-time-stamps#resolution-precision-accuracy-and-stability

Consider using two different computers to measure the same 24 hour time interval. Both computers have an oscillator with a maximum frequency offset of ± 50 ppm. How far apart can the measurement of the same time interval on these two systems be? As in the previous examples, ± 50 ppm yields a maximum error of ± 4.3 seconds after 24 hours. If one system runs 4.3 seconds fast, and the other 4.3 seconds slow, the maximum error after 24 hours could be 8.6 seconds.

Seconds in a day = 86400

Frequency offset error = ±50 ppm = ±0.00005

±(86,400 seconds * 0.00005) = ±4.3 seconds

Maximum offset between the two systems = 8.6 seconds

In summary, the frequency offset error becomes increasingly important when measuring long time intervals and when comparing measurements between different systems.

Reasons:
  • Blacklisted phrase (1): how do you
  • Long answer (-1):
  • Has code block (-0.5):
  • Contains question mark (0.5):
  • Low reputation (0.5):
Posted by: Steven G

79505941

Date: 2025-03-13 09:22:46
Score: 2
Natty:
Report link

Solution:
File was saved as a unix file with LF (line feeds)
The file has to be saved as windows file CR LF

Then it works.

Greetings
Phil

Reasons:
  • Whitelisted phrase (-2): Solution:
  • Contains signature (1):
  • Low length (1):
  • No code block (0.5):
  • Unregistered user (0.5):
  • Low reputation (1):
Posted by: Phil

79505935

Date: 2025-03-13 09:20:45
Score: 1
Natty:
Report link

This was a weird issue, redeploying fixed it.

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

79505932

Date: 2025-03-13 09:19:45
Score: 1
Natty:
Report link

1. Use session-level instead of transaction-level LockService implementations. Session-level locks get automatically released if the database connection drops. This way, there won't be any garbage in the DATABASECHANGELOGLOCK table and it will always be in a valid state.

2. I would exclude the data of the DATABASECHANGELOGLOCK table from your dump entirely, since its data represents the processes of your production state and has nothing to do with the dev state.

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

79505927

Date: 2025-03-13 09:17:44
Score: 2.5
Natty:
Report link

Hi everyone just wanted to provide an update on this issue. It seems the problem resolved itself, and I believe I understand why. While debugging, I noticed that sometimes the consumer was triggered, and sometimes it wasn't. Here's what I think was happening:

Our microservice project isn't in production yet, and everyone was cloning the repository from GitHub and running it locally. RabbitMQ, however, was running in the cloud. When multiple developers ran the project simultaneously, multiple instances of the service were connecting to the same RabbitMQ queue. This caused some unexpected behavior

When I closed all other consoles and ran only my instance, the issue disappeared, and the consumer started working consistently every time. This makes me think the root cause was having too many instances connected to the same queue simultaneously.

Reasons:
  • Blacklisted phrase (1): update on this
  • Long answer (-0.5):
  • No code block (0.5):
  • Self-answer (0.5):
  • Low reputation (1):
Posted by: Ali Turan

79505914

Date: 2025-03-13 09:13:42
Score: 7.5 🚩
Natty:
Report link

Can you share the complete logs of flutter doctor -v ?
Thanks

Reasons:
  • Blacklisted phrase (0.5): Thanks
  • RegEx Blacklisted phrase (2.5): Can you share
  • Low length (1.5):
  • Has code block (-0.5):
  • Ends in question mark (2):
  • Starts with a question (0.5): Can you share the
  • Low reputation (1):
Posted by: DAzria

79505904

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

'-fno-vectorize' works for me on clang-20 and RISC-V target.

clang -O2 -fno-vectorize
Reasons:
  • Whitelisted phrase (-1): works for me
  • Low length (1.5):
  • Has code block (-0.5):
  • Low reputation (0.5):
Posted by: sven

79505900

Date: 2025-03-13 09:09:41
Score: 3
Natty:
Report link

If you have access to a GPU may be you can use https://pytorch.org/docs/stable/generated/torch.nn.CosineSimilarity.html

Reasons:
  • Whitelisted phrase (-1.5): you can use
  • Probably link only (1):
  • Low length (1.5):
  • No code block (0.5):
  • Single line (0.5):
  • Low reputation (1):
Posted by: fenaux

79505899

Date: 2025-03-13 09:09:41
Score: 1
Natty:
Report link

Deleting blobs is safer than removing the container, which might break Backup Vault references if it relies on an internal ID.

Use AzCopy to efficiently delete all blobs while keeping the Backup Vault association intact. Deleting the container itself may break Backup Vault references, so it's safer to remove only the blobs unless you are sure backups won’t be affected.

I have some blobs in the container.

enter image description here

I had used the azcopy command below to delete the blobs from the container.

azcopy rm "https://<StorageName>.blob.core.windows.net/<ContinerName>?<SASToken>" --recursive=true

enter image description here

Blobs were deleted successfully.

enter image description here

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

79505895

Date: 2025-03-13 09:06:41
Score: 0.5
Natty:
Report link
type Foo = {
    yes: boolean
    no: string
}

    const files = new Map<string, Foo>()
    
    files.set("test", {yes: true, no: "false"})
    
    files.forEach((value: Foo, key: string) => {
        console.log(value.no);
    });
Reasons:
  • Low length (0.5):
  • Has code block (-0.5):
  • Low reputation (0.5):
Posted by: Martin Wangen-Eriksen

79505892

Date: 2025-03-13 09:04:40
Score: 4
Natty:
Report link

To resolve the issue I encountered with my iOS app in Firebase, the most effective solution was to delete the app from Firebase and re-register it. Additionally, I deactivated and then reactivated the authentication features. Unfortunately, I found that the support from Google was not helpful, despite having paid for a support plan. If you're facing a similar problem, I recommend skipping the time-consuming attempts at getting help from Google and simply follow these steps to resolve the error quickly.

Reasons:
  • Long answer (-0.5):
  • No code block (0.5):
  • Me too answer (2.5): facing a similar problem
  • Single line (0.5):
  • Low reputation (1):
Posted by: devStud

79505875

Date: 2025-03-13 09:00:39
Score: 0.5
Natty:
Report link

To make it so that you can change the settings is by using

setTimeout(() => { // timeout is important
   $(".menu-item-list").each(function() {
      let instance = Sortable.get(this); // Get existing Sortable instance
      if (instance) {
         // Apply the updated filter setting
         instance.option("multiDrag", true);
         instance.option("selectedClass", "selected");
         instance.option("fallbackTolerance", 3);
      }
   });
}, 500);
Reasons:
  • Has code block (-0.5):
  • Self-answer (0.5):
  • Low reputation (0.5):
Posted by: oelimoe

79505871

Date: 2025-03-13 08:58:38
Score: 1.5
Natty:
Report link

Also, for memories sake. It was the Internet Explorer way:

document.all.tags('title')[0].text;

Works as deep as Internet Explorer 4.0.

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

79505855

Date: 2025-03-13 08:54:37
Score: 0.5
Natty:
Report link

I have now changed the setting in dbt_project.yml from:

tests:
  +store_failures: false
tests:
  +store_failures: true

After making this change, the test failure table is now being pushed to Snowflake, and it includes all failures from both my singular test and generic tests. This make sense, but I'm interested in storing my singular tests.

I still don't fully understand why setting store_failures: false at the project level prevented even explicitly configured tests (store_failures=True) from storing failures. If anyone can clarify this behavior in DBT, I’d appreciate it!

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

79505848

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

Best Way to Achieve Transparent Text with Border in Tailwind CSS

<span class="absolute font-mono top-[-32px] left-[17rem] text-2xl font-bold text-transparent 
   outline-none" style="-webkit-text-stroke: 2px black;">

Hello World

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

79505846

Date: 2025-03-13 08:51:36
Score: 2
Natty:
Report link

This may be relevant:
https://matplotlib.org/stable/api/toolkits/mplot3d/view_angles.html#rotation-with-mouse

I found that using the azel mouse rotation style would constraint the plot to stay upright. If that's what you meant by disabling vertical camera rotation.

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

79505835

Date: 2025-03-13 08:44:35
Score: 4.5
Natty:
Report link

The first, and most affordable option is to try "NoICE" debugger: https://www.noicedebugger.com/index.html

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

79505815

Date: 2025-03-13 08:35:33
Score: 0.5
Natty:
Report link

Seems like i forgot a parameter that is required - yet it works without it for Long-positions, but not Short-positions.

                self.session.set_trading_stop(
                    category="linear",
                    positionIdx=2,
                    tpslMode="Full",
                    symbol=self.symbol,
                    stopLoss=str(int(new_stop_loss))
                )

Added the tpslMode="Full", and the stop is updated.

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

79505811

Date: 2025-03-13 08:32:32
Score: 3
Natty:
Report link

My WordPress website is also hacked, and I found this code "@eval($_SERVER['HTTP_49369BD']);" in core file named |10n.php

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

79505809

Date: 2025-03-13 08:31:32
Score: 2.5
Natty:
Report link

Right click on the left side bar
You will see a list where you can toggle visibility of different view. In the below image Explorer is not check.. checking that will starts showing the file explorer enter image description here

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

79505803

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

simple fix is to add "!" in front of one class, twMerge('text-black and !text-xxs')

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

79505802

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

The HEVC/H.264 encoder Quality property is supported only on Apple Silicon.

On Intel VTCopySupportedPropertyDictionaryForEncoder lies, the only way is to manually test what works and what not. VTCopySupportedPropertyDictionaryForEncoder lies a bit even on Apple Silicon, so it's always better to test if a property works or not.

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

79505801

Date: 2025-03-13 08:29:31
Score: 0.5
Natty:
Report link

The most up-to-date CSS will be using the Device Posture API. MDN Reference | Device Posture API.

At the time of writing it comes with Limited Support, and offers device posture: folded or continuous.

@media (device-posture: folded) and (orientation: landscape) {
  .list-view {
    margin-inline-end: 60px;
  }
}

@media (device-posture: folded) and (orientation: portrait) {
  .list-view {
    margin-block-end: 60px;
  }
}

For folded phones, another CSS @media query for horizontal-viewport-segments and vertical-viewport-segments is under work, which shall allow flip phones (and double flip phones) getting a native CSS media query support.

More info here: Foldable APIs

 @media (horizontal-viewport-segments: 2) {
 /* Your CSS here */
 }

folded phones

Web.dev also has great examples of sectioning of content based on folded and continuous modes which shows how to use the query for any folded phones (including the galaxy mentioned in your question). More about Screen Configurations here.

Reasons:
  • Long answer (-0.5):
  • Has code block (-0.5):
  • User mentioned (1): @media
  • Low reputation (0.5):
Posted by: Yash Raj Bharti

79505797

Date: 2025-03-13 08:28:31
Score: 0.5
Natty:
Report link

simple fix is to add "!" in front of one class, twMerge('text-green !text-card-highlight')

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

79505789

Date: 2025-03-13 08:22:30
Score: 2.5
Natty:
Report link

Your Keycloak service appears to be running as a local service on your machine based on your power automate configuration (localhost:8080). Therefore Power Automate will not be able to reach your Keycloak service.

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

79505787

Date: 2025-03-13 08:21:29
Score: 2
Natty:
Report link

The solution turned out to be quite straightforward, and I'm a bit embarrassed that I didn't realize it earlier. I needed to access the protected connection property of the parent class and execute a query to conditionally handle my migration. (Thanks to @iainn for the suggestion.)

For the specific case where id = 0, @AymDev was correct in pointing out that it was a SQL mode issue. The solution involved setting the SQL mode to include NO_AUTO_VALUE_ON_ZERO before the insertion and then resetting it afterward.

public function up(Schema $schema): void
{

    $r = $this->connection->prepare('SELECT COUNT(*) FROM meal_moment WHERE id = 0')
        ->executeQuery()
        ->fetchOne();

    if ($r == 0) {
        $modes = $this->connection->prepare("SELECT @@sql_mode;")
            ->executeQuery()
            ->fetchOne();

        $this->addSql("
            SET sql_mode = CONCAT(@@sql_mode, ',NO_AUTO_VALUE_ON_ZERO');
            INSERT INTO `meal_moment` (`id`, `name`, `code`, `ordre`, `customer_id`) VALUES (0, 'Aucun', 'Aucun', 0, 0);
            SET sql_mode = :modes
            ", ['modes' => $modes]);

    }
    $this->addSql("UPDATE `order` SET mealmoment_id = 0 WHERE mealmoment_id IS NULL");

}

public function down(Schema $schema): void
{
    $this->addSql('UPDATE `order` SET mealmoment_id = NULL WHERE mealmoment_id = 0');
    $this->addSql('DELETE FROM meal_moment WHERE id = 0');

}
Reasons:
  • Blacklisted phrase (0.5): Thanks
  • Blacklisted phrase (0.5): I need
  • Long answer (-1):
  • Has code block (-0.5):
  • User mentioned (1): @iainn
  • User mentioned (0): @AymDev
  • Self-answer (0.5):
  • Low reputation (1):
Posted by: kekaaafm

79505782

Date: 2025-03-13 08:19:29
Score: 0.5
Natty:
Report link

Relative to trying to use both clock edges it's probably not a bad idea, assuming you can somehow make your code work like that. In general though it's a bad approach because FPGAs are designed for standard synchronous logic so you may find yourself running out of resources unusually quickly or having a hard time with timing.

I'd suggest using a standard clock at 2x the rate of your 'single cycle' clock, and treating each pair of rising edges as if the first was the rising edge and the second as if it was the falling. If necessary, include another signal that toggles on each 2x clock so you can tell which edge of the single cycle clock is coming next.

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

79505778

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

flutter_mjpegplease explain you question what you actually want , if you want to play the mjpeg stream video you can use this package

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

79505777

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

I have modified the PHP_INI and without noticing I entered the letters 'MB' instead of 'M' for megabytes which was the reason why this was messing up my Wordpress upload.

I am posting here just in case someone has the same issue

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

79505759

Date: 2025-03-13 08:10:27
Score: 2
Natty:
Report link

I got my own answer. Turns out, dragonfly tries to use 6 threads per program, and with 6 nodes, dragon fly used 36 threads, and my cpu cores were being maxed out on htop. When I reduced threads using --proactor_threads (2 for master and 1 for slave), the performance easily improved.

ops/sec: 165,611
latency: 3.62 ms
throughput: 9.11 MB/sec

edit: so issue was running on the same machine, if it was actual different machines, performance would have improved.

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

79505754

Date: 2025-03-13 08:09:27
Score: 1.5
Natty:
Report link

Thanks to  artless-noise-bye-due2AI for suggesting the the working solution in the comments.

The solution was to extract the .a file using e.g. 7zip and import all extracted .o files into Keil.

Reasons:
  • Blacklisted phrase (0.5): Thanks
  • Low length (1):
  • Has code block (-0.5):
  • Self-answer (0.5):
Posted by: Jakob

79505746

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

Still me with different account this is the error log it show up

{"code": "Failed", "declineCode": null, "localizedMessage": "PaymentConfiguration was not initialized. Call PaymentConfiguration.init().", "message": "PaymentConfiguration was not initialized. Call PaymentConfiguration.init().", "stripeErrorCode": null, "type": null}

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

79505745

Date: 2025-03-13 07:59:25
Score: 1
Natty:
Report link

The best example I found that worked for me was the idea in this link checkout his github example at the end, this is only android but has what the docs are missing in this link

So if you follow the docs and the guide using the example for understanding the Spec implementation (which was missing from the docs) you should be good to go in both platforms.

Reasons:
  • Blacklisted phrase (1): this link
  • Whitelisted phrase (-1): worked for me
  • No code block (0.5):
  • Low reputation (0.5):
Posted by: beee

79505740

Date: 2025-03-13 07:56:23
Score: 8 🚩
Natty: 6.5
Report link

How did you manage to make the button? I tried to do the same, but in the end it just turns out to be text "Update1" etc.

https://i.sstatic.net/F07R2XFV.png

https://i.sstatic.net/2frJwTzM.png

maybe it's because i'm using Groovy Sandbox?

Reasons:
  • RegEx Blacklisted phrase (3): did you manage to
  • Low length (1):
  • No code block (0.5):
  • Ends in question mark (2):
  • Starts with a question (0.5): How did you
  • Low reputation (1):
Posted by: malltaf

79505733

Date: 2025-03-13 07:51:22
Score: 2
Natty:
Report link

As far as I know, this is currently not a supported feature in Azure Devops.

You can get the list of supported features/parameters here

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

79505732

Date: 2025-03-13 07:51:22
Score: 2
Natty:
Report link

They seem to have changed it yet again: now you can find it in the section where you set the time for which the logs should be shown (e.g. last hour). At the bottom left is the text "🌐 Time zone: <your time zone>" where you can then select "Etc/UTC" as your time zone.

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

79505725

Date: 2025-03-13 07:48:22
Score: 1
Natty:
Report link

What works is to add set(CMAKE_INSTALL_SYSTEM_RUNTIME_LIBS_SKIP TRUE) and use install with configurations.

set(CMAKE_INSTALL_SYSTEM_RUNTIME_DESTINATION ${sensor_modules_tps_rxg_installation_dir})
set(CMAKE_INSTALL_UCRT_LIBRARIES TRUE)
set(CMAKE_INSTALL_OPENMP_LIBRARIES TRUE)
set(CMAKE_INSTALL_DEBUG_LIBRARIES TRUE)
set(CMAKE_INSTALL_DEBUG_LIBRARIES_ONLY TRUE)
set(CMAKE_INSTALL_SYSTEM_RUNTIME_LIBS_SKIP TRUE)
include (InstallRequiredSystemLibraries)
install (
    FILES ${CMAKE_INSTALL_SYSTEM_RUNTIME_LIBS}
    DESTINATION ${sensor_modules_tps_rxg_installation_dir}
    CONFIGURATIONS Debug
)

I'm not fully happy with this solution as I would prefer to manage the sets independently e.g. (CMAKE_INSTALL_OPENMP_LIBRARIES, CMAKE_INSTALL_UCRT_LIBRARIES) based on the configuration

Reasons:
  • Long answer (-0.5):
  • Has code block (-0.5):
  • Self-answer (0.5):
  • Starts with a question (0.5): What
  • Low reputation (1):
Posted by: Kevin Haybach

79505719

Date: 2025-03-13 07:44:21
Score: 1.5
Natty:
Report link

This seems to be the solution:

https://www.asamalab.com/agif_fix.txt

Reasons:
  • Whitelisted phrase (-2): solution:
  • Probably link only (1):
  • Low length (2):
  • No code block (0.5):
Posted by: Martin Alexandersson

79505716

Date: 2025-03-13 07:42:20
Score: 2
Natty:
Report link

WinUI 3 / .NET MAUI XAML designer is not supported in Visual Studio 2022. To view your WinUI 3 / .NET MAUI XAML UIs and edit them while the app is running, use XAML Hot Reload for WinUI 3 / .NET MAUI. For more information, see the XAML Hot Reload page.

https://learn.microsoft.com/en-us/visualstudio/xaml-tools/xaml-hot-reload?view=vs-2022

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

79505713

Date: 2025-03-13 07:41:20
Score: 0.5
Natty:
Report link

Yes, you can use \b and \r in Kotlin’s print statements to handle backspaces and carriage returns. A system with a topcpu helps run and test these console applications more smoothly.

Reasons:
  • Whitelisted phrase (-1.5): you can use
  • Low length (1):
  • Has code block (-0.5):
  • Single line (0.5):
  • Low reputation (1):
Posted by: john pinero

79505700

Date: 2025-03-13 07:37:18
Score: 4
Natty: 5
Report link

i installed it following this blog,

https://medium.com/@arfanmahmud47/build-opencv-4-from-source-with-gstreamer-ubuntu-zorin-peppermint-c2cff5393ef

don't forget to delete/remove the build directory for previous configurations and create new and configure again.

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

79505690

Date: 2025-03-13 07:32:17
Score: 0.5
Natty:
Report link

Under my testing, when Visual Studio creates a project, it first attempts to read:

%USERPROFILE%\Documents\IISExpress\config\redirection.config

If this file is not found, it then checks:

C:\Program Files\IIS Express\config\templates\PersonalWebServer\redirection.config

Based on your description, it is recommended to verify the permissions for redirection.config. If there are no "deny" permissions set, the issue may be caused by an internal error with IIS Express. In that case, reinstalling IIS Express in VS installer is recommended.

enter image description here

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

79505684

Date: 2025-03-13 07:29:16
Score: 4
Natty: 4
Report link

I have this problem when I use different wifi, I can't make calls to each other, but when I connect to the same network, I can still make calls to each other. I don't know what's wrong, I hope everyone can help me. This is my source code.

FE: https://github.com/qminhminh/test_call_video_webrtc

BE: https://github.com/qminhminh/call_wbrtc_server

Reasons:
  • Blacklisted phrase (1): help me
  • Blacklisted phrase (1): I have this problem
  • Low length (0.5):
  • No code block (0.5):
  • Low reputation (1):
Posted by: quang minh

79505680

Date: 2025-03-13 07:27:16
Score: 0.5
Natty:
Report link

I was totally confounded how difficult it was to pass metadata for both subscriptions and payments, so I'm posting some C# in hopes it may provide some illumination. Here, invoices are being created for both subscriptions and payments, and provisioning happens only in invoice.paid. Search for metadata.

First create the checkout session:

[Authorize]
[HttpPost("create-checkout-session/{id}")]
public async Task<IActionResult> CreateCheckoutSession(string id)
{
this.options.Value.Domain = $"https://{this.ControllerContext.HttpContext.Request.Host}";
var email = Account.Email;

var price = prices.First(prices => prices.Id == id);
if (price == null)
{
    return BadRequest();
}

var priceId = price.PriceId;
var mode = price.Mode;
var modeStr = (mode == PurchaseMode.Subscription ? "subscription" : "payment");
var metadata = new Dictionary<string, string>()
    {
        { "priceId", priceId },
        { "accountId", Account.Id},
        { "domains", domains }
    };

var options = new Stripe.Checkout.SessionCreateOptions
{
    SuccessUrl = $"{this.options.Value.Domain}/payday/ok",
    CancelUrl = $"{this.options.Value.Domain}/payday/cancel",
    Mode = modeStr,
    LineItems = new List<SessionLineItemOptions>
    {
        new SessionLineItemOptions
        {
            Price = priceId,
            Quantity = 1,
        },
    },
    Metadata = metadata,
};

if (mode == PurchaseMode.Payment)
{
    options.InvoiceCreation = new SessionInvoiceCreationOptions()
    {
        InvoiceData = new SessionInvoiceCreationInvoiceDataOptions() { Metadata = metadata },
        Enabled = true,
    };
    options.PaymentIntentData = new SessionPaymentIntentDataOptions() { Metadata = metadata };
}
else if (mode == PurchaseMode.Subscription)
{
    options.SubscriptionData = new SessionSubscriptionDataOptions() { Metadata = metadata };
}


// Blech.  Can't set both email and customerId, so pick one.
if (Account?.StripeInfo?.CustomerId != null)
{
    // already has an account, so use it!
    options.Customer = Account.StripeInfo.CustomerId;
}
else
{
    // we'll be creating a new account.
    options.CustomerEmail = email;
    options.CustomerCreation = (mode == PurchaseMode.Payment) ?
        "always" : "if_required";
}

var service = new Stripe.Checkout.SessionService(this.client);
...

Then, in the webhook, fetch out the metadata (WHICH CONFUSINGLY IS DIFFERENT FOR SUBSCRIPTIONS vs PAYMENTS in invoice.paid!)

// This webhook is called by Stripe as a customer is established, and then for Subscription and invoicing events

[HttpPost("webhook")]
public async Task<IActionResult> Webhook()
{
var json = await new StreamReader(HttpContext.Request.Body).ReadToEndAsync();
Event stripeEvent;
try
{
    stripeEvent = EventUtility.ConstructEvent(
        json,
        Request.Headers["Stripe-Signature"],
        this.options.Value.WebhookSecret,
        throwOnApiVersionMismatch: false
    );
    Console.WriteLine($"Webhook notification with type: {stripeEvent.Type} found for {stripeEvent.Id}");
}
catch (Exception e)
{
    _logger.LogError(e, e.Message);
    return BadRequest();
}

string accountId = null;  // our account id
string domains = null;    // comma separated list of domains
Stripe.Customer customer = null;
Stripe.Invoice invoice = null;
Stripe.Checkout.Session session = null;
string customerId = null;  // Stripe customer id
string email = null;
string mode = null; //  payment, setup, or Subscription.
string priceId = null;
string invoiceId = null;
string subscriptionId = null;
string subscriptionStatus = null; // incomplete, incomplete_expired, trialing, active, past_due, canceled, or unpaid.

switch (stripeEvent.Type)
{
    case "customer.created":
        customer = stripeEvent.Data.Object as Stripe.Customer;
        customerId = customer.Id;
        email = customer.Email;
        break;

    case "invoice.paid":
        // Continue to provision the Subscription as payments continue to be made.
        // Store the status in your database and check when a user accesses your service.
        // This approach helps you avoid hitting rate limits.
        invoice = stripeEvent.Data.Object as Stripe.Invoice;

        // HERE'S THE TRICKY PART
        if (invoice?.SubscriptionDetails?.Metadata != null)
        {
            invoice.SubscriptionDetails.Metadata.TryGetValue("priceId", out priceId);
            invoice.SubscriptionDetails.Metadata.TryGetValue("accountId", out accountId);
            invoice.SubscriptionDetails.Metadata.TryGetValue("domains", out domains);
        }
        else
        {
            invoice.Metadata.TryGetValue("priceId", out priceId);
            invoice.Metadata.TryGetValue("accountId", out accountId);
            invoice.Metadata.TryGetValue("domains", out domains);
        }

SubscriptionDetails.Metadata!!!??? What?

Reasons:
  • Blacklisted phrase (1): ???
  • Long answer (-1):
  • Has code block (-0.5):
  • Ends in question mark (2):
  • High reputation (-1):
Posted by: Jay Borseth

79505678

Date: 2025-03-13 07:26:16
Score: 3.5
Natty:
Report link

You should use debug version of vtk dll and lib files, not release version.

Reasons:
  • Low length (1.5):
  • No code block (0.5):
  • Single line (0.5):
  • Low reputation (1):
Posted by: 李轲晗

79505676

Date: 2025-03-13 07:25:15
Score: 0.5
Natty:
Report link

For Ruby on Rails workspaces ONLY

Run bundle install

A new gem was added to the project and bundle install wasn't run locally and hence caused this issue. Installing all gems brought back VS code's potential of click to go

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

79505670

Date: 2025-03-13 07:23:15
Score: 1
Natty:
Report link
Video Play Count:

    This metric counts the number of times a video has started to play

Video View Count:

    It counts the number of unique views where users watch the video for a significant       period.
Reasons:
  • Low length (0.5):
  • Has code block (-0.5):
  • Low reputation (1):
Posted by: Subrahmanya S Hegde