79553022

Date: 2025-04-03 13:13:29
Score: 2.5
Natty:
Report link

polycon.update() to actually execute the algorithm. :(

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

79553013

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

You can store multiple values in MySQL using:
Multiple Tables: Use a relational schema (e.g., items and tags tables with a foreign key). Best for scalability and queries.

JSON Data Type (MySQL 5.7+): Store tags as JSON (e.g., json_encode(["tag1", "tag2"]) in PHP), then decode with json_decode() and explode(',', ...) if needed. Ideal for flexibility.

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

79553011

Date: 2025-04-03 13:07:28
Score: 3.5
Natty:
Report link

I have prepared some solution in code: https://github.com/zaqpiotr/webview-request-modifier

Reasons:
  • Probably link only (1):
  • Low length (2):
  • No code block (0.5):
  • Self-answer (0.5):
  • Single line (0.5):
  • High reputation (-1):
Posted by: Piotr Żak

79553000

Date: 2025-04-03 13:03:26
Score: 0.5
Natty:
Report link

You have to use map function to render the commentData, .map() returns a new array of

<div className="space-y-6"> .... </div>

elements, which React can directly render.

for..in does not return.

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

79552999

Date: 2025-04-03 13:03:26
Score: 5
Natty: 5.5
Report link

Have you tried validation rules?

Reasons:
  • Whitelisted phrase (-1): Have you tried
  • Low length (2):
  • No code block (0.5):
  • Ends in question mark (2):
  • Single line (0.5):
  • Low reputation (1):
Posted by: Dhruv Arora

79552982

Date: 2025-04-03 12:55:24
Score: 2
Natty:
Report link

This should've been a comment, but SE do not allow me to comment with low reps >_<

christopher-gallegos's variant may have some precision problems when uints are made of IEEE 754 float bits. I developed a shader and bumped into a situation when a little negative shift gave typical "granularity" of the surface. I tried to find out what's wrong with my code, but apparently it has no problems, uint to float conversion also works just fine. If anyone want to investigate further, please, make a comment to save time of future generations.

dividebyzero's variant and other hash funcs I was using worked fine for me in the same situation.

Reasons:
  • Blacklisted phrase (1): to comment
  • Long answer (-0.5):
  • No code block (0.5):
  • Low reputation (1):
Posted by: listvennica

79552979

Date: 2025-04-03 12:55:24
Score: 0.5
Natty:
Report link

This is not currently possible using that type of slicer.

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

79552975

Date: 2025-04-03 12:53:23
Score: 5
Natty:
Report link

I am facing the same issue, as a workaround I picked another HTML reporter package like 'testcafe-reporter-html'. It is good if you don't need specific filter by tags/piecharts information

Reasons:
  • Low length (0.5):
  • No code block (0.5):
  • Me too answer (2.5): I am facing the same issue
  • Single line (0.5):
  • Low reputation (1):
Posted by: iamrv

79552973

Date: 2025-04-03 12:52:22
Score: 3.5
Natty:
Report link

The issue has already been fixed, and the fix is currently available in the pre-release version of the extension.

Switching Gradle for Java to the Pre-Release Version solved it for me.

Gradle for Java (vs code extension)

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

79552972

Date: 2025-04-03 12:52:22
Score: 5.5
Natty: 4.5
Report link

I have the same problem. font installation is on C:\Users\MyName\AppData\Local\Microsoft\Windows\Fonts folder. installation is not on c:/window/fonts

folder. When I delete .ttf in registry remove all references to them in "HKEY_CURRENT_USER\Software\Microsoft\Windows NT\CurrentVersion\Fonts" and "HKEY_CURRENT_USER\Software\Microsoft\Windows, system get in strange status. does not show characters. again I copy .ttf from another pc and paste those. I am in normal state.

Reasons:
  • Blacklisted phrase (1): I have the same problem
  • No code block (0.5):
  • Me too answer (2.5): I have the same problem
  • Unregistered user (0.5):
  • Low reputation (1):
Posted by: woon hyun cho

79552964

Date: 2025-04-03 12:50:20
Score: 9.5 🚩
Natty: 4
Report link

Did you ever find a solution? I am having the same problem. I can't import any prebuilt agent. It never completes.

Reasons:
  • RegEx Blacklisted phrase (3): Did you ever find a solution
  • Low length (1):
  • No code block (0.5):
  • Me too answer (2.5): I am having the same problem
  • Contains question mark (0.5):
  • Single line (0.5):
  • Starts with a question (0.5): Did you
  • Low reputation (1):
Posted by: Eikon Rahu

79552949

Date: 2025-04-03 12:44:18
Score: 1
Natty:
Report link

While both type aliases and interfaces are valid and would work in the given context, there are pros and cons to each depending on the situation. Type would be best used for function signatures, union types, and complex mapped or conditional types. Meanwhile, interface would be the better option for public API contracts, declaration merging, and when working with classes or implementing an OOP style. This is outlined in the table below:

type and interface differences

TypeScript lib.d.ts uses type aliases as built-in function types are simpler and better expressed with type aliases. It keeps things readable and concise.

Overall, whether you use type aliases or interfaces is mainly personal preference. However, some situations may be more beneficial to use one over the other.

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

79552948

Date: 2025-04-03 12:44:18
Score: 2.5
Natty:
Report link

The clean way for this configure script is :

./configure --with-defaults

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

79552946

Date: 2025-04-03 12:43:18
Score: 2
Natty:
Report link

Yes, adding custom-developed code to a base product is common but depends on the contract. If agreed upon, the feature can be integrated and made available to other customers. Many enterprise software vendors like Salesforce and Microsoft follow this practice. Transparency is key—customers should know if their funded feature might become part of the core product. When done ethically, it benefits both the business and its users by enhancing the product for all.

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

79552944

Date: 2025-04-03 12:41:17
Score: 1
Natty:
Report link

Turns out it was just a matter of waiting for the containers to finish starting up before attempting the tests. Using docker as hostname and adding a repeated health check to make sure the tests only begin when the container is ready solved the issue.

Example command in before_script that accomplishes this:

    - > 
      i=1; while [ $i -le 15 ]; do
        curl -v http://docker:8000/health && break || sleep 1;
        if [ $i -eq 15 ]; then exit 1; fi;
        i=$((i + 1));
      done
Reasons:
  • Has code block (-0.5):
  • Self-answer (0.5):
  • Low reputation (1):
Posted by: tabeqc

79552943

Date: 2025-04-03 12:41:17
Score: 3.5
Natty:
Report link

You can try using tabs.onUpdated and/or tabs.onCreated.


Source: Guest271314 helped me in the comment section.

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

79552937

Date: 2025-04-03 12:39:17
Score: 2
Natty:
Report link

For everyone seeing this in future

To surpress output for example if the request got rejected , you can give -q parameter just before your -retrieve , this silences prompts, look at certreq documentation for other params

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

79552932

Date: 2025-04-03 12:38:16
Score: 0.5
Natty:
Report link

You need a background collection service. Usually both Android and iOS gives you the option to run background operations with the following options:

Beware that these background operations will be terminated after a certain time by the OS. This is the default behavior, but there are some workarounds you can try.

There is a package that will help you with these features, its the flutter-background-geolocation, made by Transistorsoftware, I use this package on my applications and it works pretty fine!

https://github.com/transistorsoft/flutter_background_geolocation

Just beware: you can't easily access the keychain while the APP is in the background, so keep that in mind when you're performing these operations 😉

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

79552923

Date: 2025-04-03 12:35:15
Score: 0.5
Natty:
Report link

In my opinion, you can use Redis database for real-time synchronization, PostgresSql to store your data, and MongoDB to track things like live users and their active edits. On the queues side, you can check platforms like Kafka since you are planning to use Nestjs, check this https://docs.nestjs.com/microservices/kafka. Also, look into Web Sockets and Socket.io. For NestJS https://docs.nestjs.com/websockets/gateways

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

79552918

Date: 2025-04-03 12:31:14
Score: 5.5
Natty: 4
Report link

i am trying to reactivate my telegram account but since 5 days it showing error on phone. **(Sorry, you have deleted and re-created your account too many times recently, Please wait for a few days before signing up again).
**
but same as when i m trying on web than it is showing error **(phone_number_Flood).

Team, I just want to check what time i have to wait for reactivation it is not working since last week.
Please help to activate my ac**

Reasons:
  • Blacklisted phrase (1): i am trying to
  • RegEx Blacklisted phrase (3): Please help to
  • No code block (0.5):
  • Low reputation (1):
Posted by: Raaz Gehlot

79552917

Date: 2025-04-03 12:31:14
Score: 0.5
Natty:
Report link

Your server.js file has a small syntax issue in this line:

server.js

import productRouter from './routes/productRoute.js
There's a missing closing quote ('), so fix it like this:

server.js

import productRouter from './routes/productRoute.js';
Reasons:
  • Low length (0.5):
  • Has code block (-0.5):
  • Low reputation (0.5):
Posted by: Ikram Akbar

79552912

Date: 2025-04-03 12:29:14
Score: 0.5
Natty:
Report link

Your CloudFront configuration is already working well and supports CORS request.

It's the way you are loading the panorama viewer, remove the requestHeaders and withCredentials field, so your code becomes

panoramaViewer = new Viewer({
    container: viewerElement,
    panorama: imageURL,
});

The requestHeaders isn't doing anything in this case because both Sec-Fetch-Mode and Origin are forbidden request headers, meaning they can't be modified.

As for the withCredentials, you don't need this, since you are not sending any credentials (Authorization or Cookie headers). Plus, having the Access-Control-Allow-Origin set to *, will trigger an error making your request fail.

Failed to load resource: Cannot use wildcard in Access-Control-Allow-Origin when credentials flag is true.

Here is a working demo with the correct code showing the panorama

Reasons:
  • Contains signature (1):
  • Long answer (-0.5):
  • Has code block (-0.5):
  • Low reputation (0.5):
Posted by: reynaldi

79552903

Date: 2025-04-03 12:26:13
Score: 1
Natty:
Report link

This seems to be a bug with the chrome. Clicking on the relative source map links generated in the stack trace is not working. But if you remove the ./ before the file path, the links will work.

This link doesn't work: webpack-internal:///./src/pages/index.tsx

But this link works: webpack-internal:///src/pages/index.tsx

Also this link with absolute resource path works:

webpack-internal:///C:/myfolder/projects/gatsby/src/pages/index.tsx

How are these links generated?

The webpack-internal:/// links are generated using the moduleId. In the above link, the moduleId is ./src/pages/index.tsx. There are several options to customize this moduleId in the webpack. Available options are: natural, named, deterministic and size.

Except the named, the other options assigns numeric id's to the modules. The numeric links look like this: webpack-internal:///7220:124:9. Clicking on these links also works.

But as you noticed they are not readable and not ideal for debugging.

So how to get readable working webpack links?

Looks like there is no straight forward option to customize the relative urls generated for the moduleId. But you can add a tiny custom webpack plugin to customize the relative url and get the working webpack-internal links.

In Gatsby, you need to add this custom webpack config in the gatsby-node.js file.

const { DefinePlugin } = require(`webpack`)

class ProcessRelativeUrl {
  constructor() {
    this.plugin = new DefinePlugin({
      PROCESS_RELATIVE_URL: JSON.stringify(`processrelativeurl`),
    })
  }

  apply(compiler) {
    compiler.hooks.compilation.tap('NamedModuleIdsPlugin', compilation => {
      compilation.hooks.afterOptimizeModuleIds.tap('NamedModuleIdsPlugin', $modules => {
        const chunkGraph = compilation.chunkGraph;

        $modules.forEach(module => {
          const moduleId = chunkGraph.getModuleId(module);

          if (moduleId) {
            // remove './' from the path
            chunkGraph.setModuleId(module, moduleId.substr(2));
          }
        })
      })
    })
  }
}

exports.onCreateWebpackConfig = ({ actions }) => {
  actions.setWebpackConfig({
    plugins: [new ProcessRelativeUrl()]
  })
}
Reasons:
  • Blacklisted phrase (1): these links
  • Blacklisted phrase (1): This link
  • Blacklisted phrase (1): this link
  • Long answer (-1):
  • Has code block (-0.5):
  • Contains question mark (0.5):
  • High reputation (-1):
Posted by: Raghavendra N

79552891

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

One thing you can try is bypassing the serialization check, which would remove the warning:

const store = configureStore({
    reducer: rootReducer,
    middleware: getDefaultMiddleware => getDefaultMiddleware({ immutableCheck: false }
});

See https://redux-toolkit.js.org/api/getdefaultmiddleware/

However the issue remains that the data is too large, so presumably the Navigator will still crash.

It might be worth looking at ways to reduce the amount of data stored.

The warning suggests to look at sanitizing, which might be a good starting point: https://github.com/reduxjs/redux-devtools-extension/blob/master/docs/Troubleshooting.md#excessive-use-of-memory-and-cpu

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

79552887

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

To prevent unwanted content in aggregation rows, use the isAutogeneratedRow helper from @mui/x-data-grid-premium inside renderCell or valueFormatter:

import { isAutogeneratedRow } from '@mui/x-data-grid-premium';

{
  field: 'marketplaceId',
  headerName: 'Marketplace',
  aggregable: false,
  renderCell: (params) => isAutogeneratedRow(params) ? null : params.value,
}

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

79552880

Date: 2025-04-03 12:13:09
Score: 1.5
Natty:
Report link

for me this works

{
    "compilerOptions": {...},
    "include": ["src/**/*.ts", "src/*.ts"],
    "files": ["src/@types/express/index.d.ts"]
}
Reasons:
  • Low length (1):
  • Has code block (-0.5):
  • Low reputation (1):
Posted by: goshant meher

79552879

Date: 2025-04-03 12:13:09
Score: 2.5
Natty:
Report link

Create a program that receives a letter from the user and Print it to the

reversed case. If it is capital, convert it to small, and vice versa.

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

79552863

Date: 2025-04-03 12:07:07
Score: 1.5
Natty:
Report link

Tailwind v3

property in CSS:

background-position: calc(100% - 8px) 50%;

is equal to:

bg-[calc(100%-8px)_50%]

in tailwind

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

79552861

Date: 2025-04-03 12:06:06
Score: 12
Natty: 7.5
Report link

Stuck on the same issue, did you found any solution to this problem ?

Reasons:
  • Blacklisted phrase (1.5): any solution
  • RegEx Blacklisted phrase (3): did you found any solution to this problem
  • RegEx Blacklisted phrase (2): any solution to this problem ?
  • Low length (1.5):
  • No code block (0.5):
  • Ends in question mark (2):
  • Single line (0.5):
  • Low reputation (1):
Posted by: Parth thakar

79552852

Date: 2025-04-03 12:02:05
Score: 0.5
Natty:
Report link

In Laravel 10 and 11, setting just timezone in config/app.php did not work.

This solution worked for me:

// App/Providers/AppServiceProvider.php

public function boot()
{
    date_default_timezone_set(config('app.timezone'));
}

Remeber to alter timezone in config/app.php

Reasons:
  • Blacklisted phrase (1): did not work
  • Whitelisted phrase (-1): worked for me
  • Low length (0.5):
  • Has code block (-0.5):
  • Low reputation (0.5):
Posted by: Richard Leishman

79552840

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

Best Platform for Live Matka Updates!

I’ve been searching for a reliable source for matka results, and I finally found one—dpbossofficialresult! Their updates are fast, accurate, and consistent, making it easier to track results and improve strategies. If you’re serious about matka gaming, don’t rely on random sources. Check out dpboss matka live result for real-time updates and let me know what you think!

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

79552837

Date: 2025-04-03 11:55:03
Score: 1
Natty:
Report link

Was also having this issue, for the life of me couldn't work it out.

I tried:

Upon reading this issue, it seems outdated chrome/cypress/node version combinations can cause hassles overtime.

For what it's worth, I was on:

"cypress": "^10.4.0",

I upgraded cypress and ran npm i and the issue disappeared:

"cypress": "^14.2.1",

I know this is a lame answer but often upgrading cypress versions so it's update to date with latest node/chrome versions does help.

If you are already on the latest, apologies - ignore me (: I wasted hours on this so hopefully this can help someone one day.

Reasons:
  • Blacklisted phrase (1): no luck
  • Long answer (-0.5):
  • Has code block (-0.5):
  • Low reputation (1):
Posted by: Josh Heslin

79552835

Date: 2025-04-03 11:55:03
Score: 2
Natty:
Report link

After building (program.cs) the application var app = builder.Build(); When defining the use of swagger, do: app.UseSwagger(c => { c.OpenApiVersion = Microsoft.OpenApi.OpenApiSpecVersion.OpenApi2_0; }); With this, you will specify the version of OpenApi to be used. Change if necessary.

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

79552830

Date: 2025-04-03 11:53:02
Score: 1.5
Natty:
Report link

We have configured CloudFront as a proxy, using Grafana URL as source, with a custom domain alias. This mostly works for us, the issue we are having doing this way is SAML is not working using CloudFront, but does using the Grafana URL. We have an open ticket at the moment with AWS support for the SAML issue.

Reasons:
  • No code block (0.5):
  • Single line (0.5):
  • Low reputation (0.5):
Posted by: Jason Pascoe

79552823

Date: 2025-04-03 11:50:01
Score: 5.5
Natty:
Report link

we have the same issue since 31/03/2025. IoT Devices cannot call our API but postman succeeded.

We are using a Quectel module with 4G network. The module responds "socket closed" when we try to call the api.

I have opened a ticket here : https://learn.microsoft.com/fr-fr/answers/questions/2243648/iot-device-fails-to-connect-to-azure-app-service-a?comment=question&translated=false

Reasons:
  • Probably link only (1):
  • Low length (0.5):
  • No code block (0.5):
  • Me too answer (2.5): have the same issue
  • Low reputation (1):
Posted by: user2332856

79552816

Date: 2025-04-03 11:47:00
Score: 0.5
Natty:
Report link

I created a function and call in the buildSuggestions

Widget buildSuggestions(BuildContext context) {
    _buildContext = context;

    executeAfterBuild();

In the function I call a Future.delayed because Flutter needed time for contruct the context again

Future<void> executeAfterBuild() async {
    if (retornoglobal == true) {
      Future.delayed(const Duration(milliseconds: 500), () {
        // this code will get executed after the build method
        // because of the way async functions are scheduled
        _chamaformulario(
          snapshotglobal,
          indexglobal,
        );
      });
    }
  }

It´s Worked

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

79552813

Date: 2025-04-03 11:44:59
Score: 5.5
Natty: 6
Report link

I want to compile the info in footers for about 10,000 websites:

Each website is different so I'm wondering if the easiest is to scrape everything between <footer> and <footer/>, import into Excel and extract what I need?

Reasons:
  • Blacklisted phrase (0.5): I need
  • RegEx Blacklisted phrase (1): I want
  • Low length (0.5):
  • No code block (0.5):
  • Ends in question mark (2):
  • Low reputation (1):
Posted by: GaryZ

79552810

Date: 2025-04-03 11:39:58
Score: 3.5
Natty:
Report link

I have a Downloaded the Ping app but didn't know how to stop it, it's still busy but I don't know how to stop it.

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

79552808

Date: 2025-04-03 11:38:58
Score: 0.5
Natty:
Report link

Flink does not provide this sort of scheduling, or polling.

On the other hand, Kafka Connect does this support this: https://docs.confluent.io/kafka-connectors/jdbc/current/source-connector/source_config_options.html

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

79552804

Date: 2025-04-03 11:35:57
Score: 1
Natty:
Report link

I've had this issue a few times and usually because gitlab runner is expecting ssh with the same user it runs as.

I can fix it by either adding "-i /home/peter/.ssh/id_rsa" to the ci yml script or by creating a config file inside the .ssh folder of the user trying to do the ssh handshake and specify the identity file path in there

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

79552803

Date: 2025-04-03 11:35:57
Score: 0.5
Natty:
Report link

Android Studio does this by default, and it works quite well. It's called Sticky Lines.

For JetBrains Rider it only seems to be working for class names but not methods. I was able to get something similiar using this answer. Go to settings > appearance and tick "Show breadcrumbs". And pin it to the top instead of the bottom if that's where you want to see it:

enter image description here

Reasons:
  • No code block (0.5):
Posted by: UnreachableCode

79552802

Date: 2025-04-03 11:35:57
Score: 1
Natty:
Report link

I think you can also use pipenv which directly and use that to install the waitress.

You can install it in you desired location then run pipenv shell to activate your environment

and then run waitress-serve

pip install pipenv 
#go to the desired location 
pipenv install waitress
pipenv shell 
waitress-serve
Reasons:
  • Low length (0.5):
  • Has code block (-0.5):
  • Low reputation (1):
Posted by: lakshman thota

79552794

Date: 2025-04-03 11:31:56
Score: 3.5
Natty:
Report link

Headless component for UNDO/REDO where there are options for undo, redo, undoAll, redoAll with localstorage https://www.thewebvale.com/blog-details/implement-undo-redo-functionality-in-react-forms-with-a-custom-hook

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

79552792

Date: 2025-04-03 11:30:56
Score: 1
Natty:
Report link

You can manually add breakpoint by function and specify abort as a function name. And of course it should be a Debug build, not Release one.

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

79552789

Date: 2025-04-03 11:28:55
Score: 1
Natty:
Report link

I also ran into this issue while using the BufferedWaveProvider to stream audio through a microphone and noticed that after a couple of seconds the DataAvailable callback stops firing. Just like @XTankKiller mentions in his answer using WaveOut.Play() on the buffer is somehow reading or discarding data from the buffer as soon as it gets filled up, which is presumable why its stopping after a few seconds when it gets full and is being discarded. And setting BufferedWaveProvider.DiscardOnBufferOverflow = true fixed it for me.

Reasons:
  • Long answer (-0.5):
  • Has code block (-0.5):
  • User mentioned (1): @mentions
  • Single line (0.5):
  • Low reputation (0.5):
Posted by: Ajaykrishnan R

79552780

Date: 2025-04-03 11:24:54
Score: 7.5
Natty: 7.5
Report link

Hi Any update on this ? any help and links pls ?

Reasons:
  • Blacklisted phrase (1): any help
  • Blacklisted phrase (1): update on this
  • Low length (1.5):
  • No code block (0.5):
  • Ends in question mark (2):
  • Single line (0.5):
  • Low reputation (1):
Posted by: Ganesh Sukumar

79552779

Date: 2025-04-03 11:24:54
Score: 1.5
Natty:
Report link

I anyone building for kotlin compose multiplatform application then you have to install cocoapods and then check your configuration via kdcotor and then this issue will be resolved (at-least in my case).

Reasons:
  • Low length (0.5):
  • No code block (0.5):
  • Single line (0.5):
Posted by: Atul Sharma

79552778

Date: 2025-04-03 11:24:53
Score: 6 🚩
Natty:
Report link

I seem to have exactly the same problem you described, with IoT devices loosing connection to Web apps in Azure at 02:00AM (UTC) on 2025-04-01. I am also in Europe

I have multiple IoT devices (over 3000) trying to connect to webapi on 3 azure web apps. My IoT devices use a modem card (SIMcom SIM7600E) to initiate TLSv1.2 HTTPS connections to my web apps over 3G/4G network.

Do you also use a modem card to make connexions?

I can't access the maintenance notice on the link you provided, do you have more information about it?

Thank you.

Reasons:
  • Blacklisted phrase (0.5): Thank you
  • Long answer (-0.5):
  • No code block (0.5):
  • Me too answer (2.5): have exactly the same problem
  • Ends in question mark (2):
  • Low reputation (1):
Posted by: user30154717

79552772

Date: 2025-04-03 11:20:52
Score: 1
Natty:
Report link

After doing some research i would answer myself.

OAuth 2.0 is fundamentally an authorization framework, designed to allow third-party applications to access a user's resources without exposing their credentials. However, it's often employed for authentication purposes, as seen with services like Google or LinkedIn sign-ins. This practice raises questions about its appropriateness and potential security implications, especially when OpenID Connect (OIDC) is not utilized.

Understanding OAuth 2.0's Role:

Introduction of OpenID Connect (OIDC):

Security Implications of Misusing OAuth 2.0:

Conclusion:

While OAuth 2.0 is designed for authorization, its combination with OpenID Connect enables secure and standardized authentication. Utilizing OAuth 2.0 alone for authentication is inappropriate and can introduce security vulnerabilities. Therefore, incorporating OIDC is essential for proper user authentication in applications.

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

79552760

Date: 2025-04-03 11:14:50
Score: 4
Natty:
Report link

As stated by @jsiirola in the Github post github.com/Pyomo/pyomo/issues/2699, to use the AMPL compiled version of the Cbc solver, you need to invoke the solver with the following command

solver = SolverFactory("asl:cbc", executable="C:/Users/coinor/cbc.exe")

Best regards

Reasons:
  • Blacklisted phrase (0.5): Best regards
  • Blacklisted phrase (1): regards
  • Low length (0.5):
  • Has code block (-0.5):
  • User mentioned (1): @jsiirola
  • Self-answer (0.5):
  • Low reputation (1):
Posted by: Samuel M

79552757

Date: 2025-04-03 11:13:50
Score: 1
Natty:
Report link

My solution has been to have the labels and datasets on their own (as normal JS objects, no Vue refs or anything), and an updatedData method that returns the object { labels: labels, datasets: datasets }

Then in the update, push into labels and datasets.data and call chartData.value = updatedData(labels, datasets)

This way it triggers the update without making a copy or restructuring the entire arrays, and without the maximum call stack exceeded error.

I have yet to test if the shallowRef approach works

Reasons:
  • Long answer (-0.5):
  • No code block (0.5):
  • Low reputation (1):
Posted by: Antonio González Carvajal

79552756

Date: 2025-04-03 11:12:49
Score: 1.5
Natty:
Report link

You can try randomcryp. This library uses Crypto API in a smart way to generate random numbers with 53 bit entropy. This should be enough for most use cases.

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

79552754

Date: 2025-04-03 11:10:49
Score: 1.5
Natty:
Report link

Upgrade Python: python -m pip install --upgrade pip

Upgrade pip : pip install --upgrade pip

Then install robotframework: pip install robotframework

hope this will help !

Reasons:
  • Whitelisted phrase (-1): hope this will help
  • Low length (1):
  • No code block (0.5):
  • Low reputation (1):
Posted by: BP Singh

79552751

Date: 2025-04-03 11:08:48
Score: 3.5
Natty:
Report link

I want having the same error,

my server socket_io version is 4.7.2

and I am using socket_io_client: ^3.1.1 in flutter

in my case CORS was causing the issue.

Try removing the CORS check from your socketio server.

Reasons:
  • RegEx Blacklisted phrase (1): I want
  • Low length (0.5):
  • No code block (0.5):
  • Me too answer (2.5): having the same error
  • High reputation (-1):
Posted by: Priyanshu Paliwal

79552741

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

It seems that these are viewable through Cmd + P and selecting "Open Default Keyboard Shortcuts (JSON)".

This opens an embedded read-only file "keybindings.json".

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

79552730

Date: 2025-04-03 11:02:47
Score: 0.5
Natty:
Report link

Most the answers already given are very misguided. Reactive programming isn't just about efficient sharing of execution threads. We already had threadpools and ExecutorServices in Java.

What reactive frameworks bring to the table is backpressure propagation. With backpressure handling super fast producers churning gigabytes of data per second will not drown slow consumers. There is absolutely nothing that virtual threads change about this.

Reactive programming is not and will not be made obsolete by virtual threads. These are orthogonal concepts and they may work together. Threads used by a reactive stream may very well be virtual.

As a matter of fact, Project Reactor 3.6.0 officially added support for Project Loom (virtual threads).

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

79552726

Date: 2025-04-03 11:01:46
Score: 3.5
Natty:
Report link

I was having the same issue now, and I just couldn't figure it out why. And that's when I came across your post! Thank you!

Reasons:
  • Blacklisted phrase (0.5): Thank you
  • Low length (1):
  • No code block (0.5):
  • Single line (0.5):
  • Low reputation (1):
Posted by: Janaina Klepac Vieira

79552704

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

simply use import instead of // if index.css

@tailwind base;
@tailwind components;
@tailwind utilities;

do

@import "tailwindcss/preflight";
@import "tailwindcss/utilities";
@import 'tailwindcss';

import index.css into the main file thats all

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

79552693

Date: 2025-04-03 10:46:41
Score: 10 🚩
Natty: 6.5
Report link

I am facing the same issue, I managed to fix it using absolute paths, but it's not ideal, did you manage to solve the problem and how? Thanks

Reasons:
  • Blacklisted phrase (0.5): Thanks
  • RegEx Blacklisted phrase (3): did you manage to solve the problem
  • Low length (1):
  • No code block (0.5):
  • Me too answer (2.5): I am facing the same issue
  • Ends in question mark (2):
  • Low reputation (0.5):
Posted by: Christèle Legeard

79552690

Date: 2025-04-03 10:44:40
Score: 5.5
Natty: 5
Report link

I need your help as I can get all contacts of my family friends and relatives that I used on another phone to replace on new phone.

Reasons:
  • Blacklisted phrase (0.5): I need
  • Blacklisted phrase (2): I need your help
  • Low length (1):
  • No code block (0.5):
  • Single line (0.5):
  • Low reputation (1):
Posted by: Ali Mchangamwe

79552689

Date: 2025-04-03 10:44:40
Score: 3
Natty:
Report link

The latest Vuetify version (3.8.0 at the moment) doesn't have that issue

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

79552675

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

Go to SQL Workshop => Utilities => sample database

enter image description here

then select schema to download

enter image description here

then install dataset

enter image description here

then create application

enter image description here

follow all steps for creating application but I only have changed application name and icon

enter image description here

finally, you got the application

enter image description here

Reasons:
  • Blacklisted phrase (1): enter image description here
  • Probably link only (1):
  • Low length (0.5):
  • No code block (0.5):
  • Low reputation (1):
Posted by: Karem Hassan

79552669

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

FOR THIS ARRAY STRING MULTIDIMENTIONAL:

import numpy as np

ARRAYSTRING = np.chararray((100, 4, 10), 5, order='F')

print(ARRAYSTRING.shape);

OUTPUT : (100, 4, 10)

this IS an ONE-DIMENTIONAL ARRAY TO START INDEX 0,1,... ,N

, SO IF YOU WANT A SPECIFIC RANK OF ONE SPECIFIC DIMENTION YOU CAN

INDICATE THE OUTPUT OF SPECIFIC ELEMENT OF THIS ARRAY :

print(ARRAYSTRING.shape[2]);

OUTPUT : 10  # IT S THE LEN OF THIRD DIMENTION OF ARRAYSTRING

print(ARRAYSTRING.shape[1]);

OUTPUT : 4  # IT S THE LEN OF SECOND DIMENTION OF ARRAYSTRING

print(ARRAYSTRING.shape[0]);

OUTPUT : 100  # IT S THE LEN OF FIRST DIMENTION OF ARRAYSTRING

best regards

-----

Nevada – zone 51 - S4- vimanas technology extraterrestrial

Paul Hellyer, John Lear, Bob Lazar, E. Snodwen, etc.)

Elément 115 (applications d’antigravité) :

https://www.dailymotion.com/video/x18q4bp

--

https://www.youtube.com/watch?v=ypHNy2-JC-Q

--

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

scientist in Analyse mathématique – Numérique – Physique – Électro

Reasons:
  • Blacklisted phrase (0.5): best regards
  • Blacklisted phrase (1): regards
  • Blacklisted phrase (1): youtube.com
  • Long answer (-0.5):
  • No code block (0.5):
  • Low reputation (1):
Posted by: D'Aversa Nicolas

79552663

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

Deleting cluster-admin role blocks all the access in case of DigitalOcean's managed DOKS. Till date 3rd April, 2025, the only solution is to create a support ticket and they will restore the role.

Reasons:
  • Whitelisted phrase (-1): solution is
  • Low length (0.5):
  • No code block (0.5):
  • Single line (0.5):
  • Low reputation (0.5):
Posted by: Hamza Anjum

79552654

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

Problem was solved, when I set return value of MarkNotifications from IReadOnlyCollection<NotificationMarkResultDto> to NotificationMarkResult[] and in NotificationMarkResultDto were no setters written before (because I wanted to do that for the immutable response), but now they have been added.

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

79552635

Date: 2025-04-03 10:23:33
Score: 2.5
Natty:
Report link

My solution was to delete the /opt/triplestore-fuseki/tdb.lock file, the restart the service

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

79552627

Date: 2025-04-03 10:20:32
Score: 0.5
Natty:
Report link

Removing the version in below dependency worked for me

<dependency>
    <groupId>org.apache.tomcat.embed</groupId>
    <artifactId>tomcat-embed-core</artifactId>   
</dependency>
Reasons:
  • Whitelisted phrase (-1): worked for me
  • Low length (1):
  • Has code block (-0.5):
  • Low reputation (1):
Posted by: sai praveena

79552626

Date: 2025-04-03 10:20:32
Score: 3.5
Natty:
Report link

You can search up a wiring diagram for the purifier and re do the wiring to work without the smart device. Re-wire according to schematic. It should be pretty easy.

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

79552625

Date: 2025-04-03 10:19:31
Score: 1
Natty:
Report link
Reasons:
  • Low length (0.5):
  • Has code block (-0.5):
  • Low reputation (1):
Posted by: Azzouz Amine

79552618

Date: 2025-04-03 10:17:31
Score: 1.5
Natty:
Report link

If you want to read existing lines/records, you might enable Read_from_Head from Tail input.

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

79552616

Date: 2025-04-03 10:15:30
Score: 2.5
Natty:
Report link

There may be conflicts or misconfigurations when adding a new dependency in Flutter. It is necessary to verify that all dependencies are compatible and configured properly in order to resolve this issue. Flutter pub get and flutter clean can be used to refresh the project.

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

79552611

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

Sorry for posting the solution so late. And thanks to @j23 and @Gilles Gouaillardet helping me with the answer.

I found the OpenMPI documentation, which suggested using ompi_info --param btl tcp to search for TCP-related parameters.

$ ompi_info --param btl tcp
         MCA btl: tcp (MCA v2.1.0, API v3.3.0, Component v5.0.7)
     MCA btl tcp: ---------------------------------------------------
     MCA btl tcp: parameter "btl_tcp_if_include" (current value: "",
                  data source: default, level: 1 user/basic, type:
                  string)
                  Comma-delimited list of devices and/or CIDR
                  notation of networks to use for MPI communication
                  (e.g., "eth0,192.168.0.0/16").  Mutually exclusive
                  with btl_tcp_if_exclude.
     MCA btl tcp: parameter "btl_tcp_if_exclude" (current value:
                  "127.0.0.1/8,sppp", data source: default, level: 1
                  user/basic, type: string)
                  Comma-delimited list of devices and/or CIDR
                  notation of networks to NOT use for MPI
                  communication -- all devices not matching these
                  specifications will be used (e.g.,
                  "eth0,192.168.0.0/16").  If set to a non-default
                  value, it is mutually exclusive with
                  btl_tcp_if_include.
     MCA btl tcp: parameter "btl_tcp_progress_thread" (current value:
                  "0", data source: default, level: 1 user/basic,
                  type: int)

In my case, my processes attempt to communicate with each other over any available network, including the inappropriate network docker0.

Adding --mca btl_tcp_if_include <proper network> or --mca btl_tcp_if_exclude docker0 both solved the problem.

Reasons:
  • Blacklisted phrase (0.5): thanks
  • RegEx Blacklisted phrase (0.5): Sorry for posting
  • Long answer (-1):
  • Has code block (-0.5):
  • User mentioned (1): @j23
  • User mentioned (0): @Gilles
  • Self-answer (0.5):
  • Low reputation (1):
Posted by: Leonel Chen

79552609

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

One thing I would like to add to PaulS' answer is that if any of your variables are strings, you should put the %s associated with that variable inside quotes.

var1 = str()
var2 = int()
var3 = float()

print("INSERT INTO table VALUES ('%s', %s, %s)" % (var1, var2, var3))
Reasons:
  • Low length (0.5):
  • Has code block (-0.5):
  • Low reputation (1):
Posted by: miad dehghani

79552604

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

My Answer:

 radius = float(input("Enter a radius for the circle: "))
    area = math.pi * radius ** 2

    circumference = 2 * math.pi * radius

    print(f"The area of the circle is {area:.2f}")
    print(f"The circumference of the circle is {circumference:.2f}")
Reasons:
  • Low length (0.5):
  • Has code block (-0.5):
  • Low reputation (1):
Posted by: user22868976

79552599

Date: 2025-04-03 10:09:28
Score: 0.5
Natty:
Report link

I had a very similar problem. My parameter is of type List<Something>, so I had to do it this way:

            String json = objectMapper.writeValueAsString(parameter);
            jsonObject.setValue(json);
            ps.setObject(i, jsonObject);
Reasons:
  • Low length (0.5):
  • Has code block (-0.5):
  • Low reputation (0.5):
Posted by: Stephan Wack

79552595

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

I will give you a very simple and straight-forward solution.

The condition freq[char] evaluates to true if freq[char] is defined and has a truthy value (i.e., it is not undefined, null, 0, false, or an empty string). In this context, freq is being used as an associative array (or object) where the keys are characters and the values are their counts. If the arg provided for the removeDupl(arg) function is "Helloooooo", the freq will come out as [ H: 1, e: 1, l: 2, o: 6 ]

So, the if-condition gets executed if the current character is already present in the freq array otherwise else condition gets executed.

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

79552590

Date: 2025-04-03 10:03:27
Score: 1.5
Natty:
Report link

Someone on reddit foudn this workign solution, it is a backend problem on some macs:

"""import matplotlib

matplotlib.use('TkAgg')

import matplotlib.pyplot as plt

from skimage.io import imread

f = imread('house.png', as_gray=True)

plt.imshow(f)"""

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

79552585

Date: 2025-04-03 10:00:26
Score: 1.5
Natty:
Report link

i did it with the fall back intent insted of the qnaintent when it goes to fallback i triggered a lambda function to retrive the data from the knowledge base

service: claude-lex-bedrock-bot

provider:
  name: aws
  runtime: nodejs22.x
  region: eu-west-2
  environment:
    KNOWLEDGE_BASE_ID: ${env:KNOWLEDGE_BASE_ID, 'M86AHPZ6CL'}
  iam:
    role:
      statements:
        - Effect: Allow
          Action:
            - bedrock:InvokeModel
            - bedrock:Retrieve
            - bedrock:RetrieveAndGenerate
            - logs:CreateLogGroup
            - logs:CreateLogStream
            - logs:PutLogEvents
            - lambda:InvokeFunction
            - lex:*
          Resource: "*"

functions:
  LexBedrockHandler:
    handler: handler.handler
    name: claude-lex-bedrock-bot-dev-LexBedrockHandler
    timeout: 15  
    events:
      - httpApi:
          path: /chat
          method: post
  BotInputHandler:
    handler: lexHandler.handler
    name: lex-chat
    environment:
      BOT_ID: !Ref MyLexBot
      BOT_ALIAS_ID: !GetAtt MyLexBotAlias.BotAliasId
      LOCALE_ID: "en_US"
    events:
      - httpApi:
          path: /bot
          method: post

resources:
  Resources:
    MyLexBot:
      Type: AWS::Lex::Bot
      Properties:
        Name: MyBot
        DataPrivacy:
          ChildDirected: false
        IdleSessionTTLInSeconds: 300
        RoleArn: !GetAtt LexBotRole.Arn
        BotLocales:
          - LocaleId: en_US
            NluConfidenceThreshold: 0.40
            Intents:
              - Name: GreetingIntent
                SampleUtterances:
                  - Utterance: "Hi"
                  - Utterance: "Hello"
                  - Utterance: "Good morning"
                  - Utterance: "Hey"
                IntentClosingSetting:
                  ClosingResponse:
                    MessageGroupsList:
                      - Message:
                          PlainTextMessage:
                            Value: "Hello! How can I assist you today?"
              - Name: FallbackIntent
                ParentIntentSignature: AMAZON.FallbackIntent
                FulfillmentCodeHook:
                  Enabled: true  # Invoke Lambda for dynamic response

    MyLexBotVersion:
      Type: AWS::Lex::BotVersion
      Properties:
        BotId: !Ref MyLexBot
        BotVersionLocaleSpecification:
          - LocaleId: en_US
            BotVersionLocaleDetails:
              SourceBotVersion: "DRAFT"
      DependsOn: MyLexBot

    MyLexBotAlias:
      Type: AWS::Lex::BotAlias
      Properties:
        BotAliasName: prod
        BotId: !Ref MyLexBot
        BotVersion: "1"
        BotAliasLocaleSettings:
          - LocaleId: en_US
            BotAliasLocaleSetting:
              Enabled: true
              CodeHookSpecification:
                LambdaCodeHook:
                  CodeHookInterfaceVersion: "1.0"
                  LambdaArn: !Sub "arn:aws:lambda:${AWS::Region}:${AWS::AccountId}:function:claude-lex-bedrock-bot-dev-LexBedrockHandler"
      DependsOn: MyLexBotVersion

    LexBotRole:
      Type: AWS::IAM::Role
      Properties:
        AssumeRolePolicyDocument:
          Version: "2012-10-17"
          Statement:
            - Effect: Allow
              Principal:
                Service: lexv2.amazonaws.com
              Action: sts:AssumeRole
        Policies:
          - PolicyName: LexBotAccessPolicy
            PolicyDocument:
              Version: "2012-10-17"
              Statement:
                - Effect: Allow
                  Action:
                    - logs:CreateLogGroup
                    - logs:CreateLogStream
                    - logs:PutLogEvents
                    - lambda:InvokeFunction
                    - bedrock:InvokeModel
                    - bedrock:Retrieve
                    - bedrock:RetrieveAndGenerate
                  Resource: "*"

    LexLambdaPermission:
      Type: AWS::Lambda::Permission
      Properties:
        Action: lambda:InvokeFunction
        FunctionName: claude-lex-bedrock-bot-dev-LexBedrockHandler
        Principal: lexv2.amazonaws.com
        SourceArn: !Sub "arn:aws:lex:${AWS::Region}:${AWS::AccountId}:bot-alias/${MyLexBot}/${MyLexBotAlias.BotAliasId}"

  Outputs:
    BotId:
      Description: The ID of the Lex Bot
      Value: !Ref MyLexBot
    AliasId:
      Description: The ID of the Lex Bot Alias
      Value: !GetAtt MyLexBotAlias.BotAliasId

plugins:
  - serverless-api-gateway-throttling
  - serverless-dotenv-plugin

custom:
  apiGatewayThrottling:
    maxRequestsPerSecond: 10
    maxConcurrentRequests: 5

package:
  exclude:
    - node_modules/**
    - .git/**
    - .gitignore
    - test/**
    - "*.md"
Reasons:
  • Blacklisted phrase (0.5): How can I
  • Blacklisted phrase (1): Good morning
  • Long answer (-1):
  • Has code block (-0.5):
  • Self-answer (0.5):
  • Low reputation (1):
Posted by: Thomas Joseph

79552565

Date: 2025-04-03 09:52:23
Score: 1
Natty:
Report link

There are no specific compiler option(s), but You can switch to new Visual Studio compiler to compile the script (3rd party Inno Setup extension is needed: https://marketplace.visualstudio.com/items?itemName=unSignedsro.VisualInstaller) based on MSBuild.

Visual Studio in general is very well optimized, compiling, parsing etc. is really fast, which may reduce the times for you.

Also you may try switching the library, for example https://github.com/solodyagin/jsonconfig looks promising and is using different approach than koldev's JsonParser but its newer.

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

79552560

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

To run a python code before start, an easy way is to use Python Snippet block in GNU radio. Select section of Flow graph to After Init or After Start as required. Put the code to Code Snippet

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

79552552

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

use this code on phpmyadmi

SELECT user_id, meta_value AS phone_number
FROM wp_usermeta
WHERE meta_key = 'billing_phone';
Reasons:
  • Low length (1):
  • Has code block (-0.5):
Posted by: Omid Ahmadyani

79552551

Date: 2025-04-03 09:44:21
Score: 2
Natty:
Report link

I rebooted my computer. Only it works for me.

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

79552548

Date: 2025-04-03 09:43:20
Score: 4
Natty: 6.5
Report link

can you design a typing game that only english easy understanderable artikle are in there. and ignore uppercase and false, when false just make a sound to remind but dont stop the typing prosses. can you do that? that would be very helpful. thank you very much!

Reasons:
  • Blacklisted phrase (0.5): thank you
  • Low length (0.5):
  • No code block (0.5):
  • Contains question mark (0.5):
  • Single line (0.5):
  • Starts with a question (0.5): can you
  • Low reputation (1):
Posted by: Diming Qian

79552546

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

It may happen a little later, but here's the answer as of now.

Unfortunately, that seems to be impossible because:

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

79552530

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

Why do you have output_category_mask=False and are expecting 2 outputs ? You are specifically asking the model to only return 1 output.

Please check the documentation and source code.

output_confidence_masks: Whether to output confidence.

output_category_mask: Whether to output category mask.

Reasons:
  • Low length (0.5):
  • Has code block (-0.5):
  • Contains question mark (0.5):
  • Starts with a question (0.5): Why do you have
  • Low reputation (0.5):
Posted by: anxiousPI

79552527

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

You can try using SmartCodable for a better experience than Codable.

https://github.com/intsig171/SmartCodable

Reasons:
  • Probably link only (1):
  • Low length (1.5):
  • No code block (0.5):
  • Unregistered user (0.5):
  • Low reputation (1):
Posted by: Mccc

79552526

Date: 2025-04-03 09:32:15
Score: 7.5 🚩
Natty: 5
Report link

I am having same issue.
How to reset the Admin ?

Reasons:
  • Low length (1.5):
  • No code block (0.5):
  • Me too answer (2.5): I am having same issue
  • Ends in question mark (2):
  • Low reputation (1):
Posted by: Vinay Kumar

79552520

Date: 2025-04-03 09:30:14
Score: 1
Natty:
Report link

matlabplot version 3.7.2

I prefer to use OOP-style code

ax = fig.add_subplot(111, projection='3d') # not oo style code

If you want to use OOP-style code

fig, ax = plt.subplots(subplot_kw={"projection": "3d"}) 
# it works but I dont like subplot_kw
Reasons:
  • Low length (0.5):
  • Has code block (-0.5):
  • Low reputation (1):
Posted by: domonnss

79552510

Date: 2025-04-03 09:27:13
Score: 0.5
Natty:
Report link

It's in your DerivedData,

Xcode 15, iPhone simulator

/<user>/Library/Developer/Xcode/DerivedData/<app name>/Build/Products/Debug-<flavors_if_any>-iphoneos

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

79552504

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

This is an old thread but there's a lot of confusion.

The issue is actually the fact, that <~only allows updating the rightmost component of the version, as detailed in the https://developer.hashicorp.com/terraform/language/expressions/version-constraints .

Therefore in your ~> 1.0.0 case, only Patch versions of 1.0.* are allowed. ~> 1.0 works, because it allows the Minor version of your 1.2.

\>= 1.0.0 is any version equal or higher to 1.0.0, including a Major version.

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

79552501

Date: 2025-04-03 09:24:13
Score: 0.5
Natty:
Report link

Modify your .desktop file to track and kill the Java process when Firefox exits:

Exec=sh -c "java -jar /home/claus/sterlingpdf/Stirling-PDF-with-login.jar & JAVAPID=$!; while ! nc -z localhost 8080; do sleep 1; done; firefox --new-tab http://localhost:8080/; kill $JAVAPID"
Reasons:
  • Low length (0.5):
  • Has code block (-0.5):
  • Low reputation (0.5):
Posted by: susie

79552498

Date: 2025-04-03 09:22:12
Score: 1
Natty:
Report link

If you know the name of the app, this deletes all copies: (takes a while to complete):

 sudo find / -name "NAME_OF_THE_APP.app" 2>/dev/null -exec rm -rf {} \;
Reasons:
  • Low length (1):
  • Has code block (-0.5):
  • Low reputation (0.5):
Posted by: Michel Storms

79552494

Date: 2025-04-03 09:21:11
Score: 0.5
Natty:
Report link

You can also get the permission via an entry in the manifest.json file. This is perfect for kiosk or standalone applications.


{
    "permissions": [
        "serial"
    ]
}
Reasons:
  • Low length (1):
  • Has code block (-0.5):
Posted by: bluelemonade

79552493

Date: 2025-04-03 09:21:11
Score: 1.5
Natty:
Report link

Try to install the required package: npm i @inquirer/prompts For me this solved the issue.

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

79552492

Date: 2025-04-03 09:20:11
Score: 3.5
Natty:
Report link

Try changing the timestamp to a future time, about 1 minute ahead. For example, if the current time is 11:58:11, set the timestamp to 11:59:11 (1743656351).

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

79552486

Date: 2025-04-03 09:18:11
Score: 1.5
Natty:
Report link

The proper command for this import would be:

terraform import azurerm_storage_account.my_storage_account "/subscriptions/..."

Double quotes are required.

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

79552457

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

You can also use Xcodes now, which is easier.

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

79552454

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

Although there is no good tutorial, I have made a usable example with OAuth for you to consider. I have tried all the steps described below.

The repository is here. I have tested the code, and I logged in via OAuth Apps.

To try the application, you need

git clone https://github.com/Hdvlp/SpringBootSecurityFilterChainMigration.git

and other steps in developing a Spring Boot application. (not a complete tutorial here)

To create your OAuth Apps, you need these:

Fill in:

Your client-id and client-secret in application.yml.

Homepage URL:

http://127.0.0.1:8080

Authorization callback URL:

http://127.0.0.1:8080/login/oauth2/code/github

After running the Spring Boot application locally, open in the browser:

http://127.0.0.1:8080

You may try other paths in the browser to see the effect before and after logging in, e.g.

http://127.0.0.1:8080/member/area

http://127.0.0.1:8080/actuator/health/servicea

As illustrated below, you need to decide what paths are in what order.

This is what I tried: The logic of evaluation is like...

The @Order which is smaller in number wins. The path matching matchedPaths wins.

If you have two @Order annotations with the same matchedPaths, and one @Order contains a smaller value, the latter wins. (The SecurityFilterChain with the larger @Order annotation produces no effect.)

If you have two SecurityFilterChains with @Order annotations with different matchedPaths, both SecurityFilterChains are run.

As far as I tried, matching "/actuator/health/**" left prefix works. Whereas, matching "/**/actuator/health" right suffix does not work (easily). You may need to change your paths accordingly.

    @Bean
    @Order(500)
    SecurityFilterChain securityFilterChainActuator(HttpSecurity http) throws Exception {
        String[] matchedPaths = { "/actuator/health/**" };
        http
            .csrf(AbstractHttpConfigurer::disable)
            .securityMatcher(matchedPaths)
            .authorizeHttpRequests(
                auth -> 
                    auth
                        .requestMatchers(matchedPaths)
                        .permitAll()
            );

        return http.build();
    }
Reasons:
  • Contains signature (1):
  • Long answer (-1):
  • Has code block (-0.5):
  • User mentioned (1): @Order
  • User mentioned (0): @Order
  • User mentioned (0): @Order
  • User mentioned (0): @Order
  • User mentioned (0): @Order
  • Low reputation (1):
Posted by: Hdvlp

79552450

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

I still got the same error even with Basic Authentication turned On - in my case, it was due to the App Service being disabled for public network access.

I whitelisted my IP under App Service settings in Azure Portal:

Settings -> Networking -> Public network access

My publish worked fine afterwards.

Reasons:
  • Low length (0.5):
  • No code block (0.5):
  • Low reputation (0.5):
Posted by: Danny Meyer-Kristensen

79552447

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

I was facing the same thing! The solution is for your Facebook app to be live to send events. Apps in development mode cannot send events. Hope this helps you!

Reasons:
  • Whitelisted phrase (-1): Hope this helps
  • Whitelisted phrase (-1): solution is
  • Low length (1):
  • No code block (0.5):
  • Single line (0.5):
  • Low reputation (1):
Posted by: Olayinka