79170031

Date: 2024-11-08 12:31:14
Score: 2
Natty:
Report link

Im having issues with // in requests so have used -

RewriteCond %{REQUEST_URI} ^(.)/{2,}(.)$ RewriteRule (.*) %1/%2

It tests correctly and does give a result changing the // to / but the destination page whilst served does not render correctly depending on the // position.

EG - https://www.brickfieldspark.org//data/greaterwaterboatman.htm renders correctly but - https://www.brickfieldspark.org/data//greaterwaterboatman.htm does not render -

I believe the served page image links - <a href="../images - are being mangled in some way ??, IE "jump back one level and go to images" is corrupted by the position of the //

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

79170029

Date: 2024-11-08 12:30:14
Score: 0.5
Natty:
Report link

After a tip to go through the output and check the first [project to fail with a missing dll I found a project that had not been built in debug. After that everything fails.

Recompiling that related project in debug started the dlls being written out to the ref folder.

Not a great error message but I thinl I'm sorted now

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

79170018

Date: 2024-11-08 12:26:13
Score: 0.5
Natty:
Report link

The error trace you're seeing is commonly related to issues with Android's WorkManager library, specifically when the system tries to query historical exit reasons for processes. Here’s a breakdown of the possible causes and solutions:

Restricted Access to System API: The error originates from ActivityManager.getHistoricalProcessExitReasons, which accesses historical process exit reasons. This API has restricted permissions, especially on certain devices and Android versions, and may throw exceptions if accessed by an app without the necessary permissions.

OS Compatibility and Manufacturer Customization: Some Android versions or device manufacturers modify system behavior, and accessing certain APIs may trigger exceptions. WorkManager calls getHistoricalProcessExitReasons to check if the app has been force-stopped, but if the OS restricts it, it could cause an error.

Unhandled Exceptions: WorkManager’s ForceStopRunnable checks if the app has been force-stopped, using APIs that may throw unexpected exceptions. If these exceptions aren’t handled, they may bubble up and crash the process.

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

79170015

Date: 2024-11-08 12:24:12
Score: 0.5
Natty:
Report link

Running npm install @rollup/rollup-win32-x64-msvc solved the issue.

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

79170007

Date: 2024-11-08 12:21:12
Score: 3.5
Natty:
Report link

As shown at https://github.com/aws/aws-cdk/issues/6953#issuecomment-2414652937 , it can be archived by base64 encoding the logo and just including it in the css.

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

79169998

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

I know this is an old post but, if anyone else is looking to do something similar i.e.: Count the number of active conections on a server, and when it hits a threshold notify HAProxy to drain connections... Thats exactly what the open source agent from Loadbalancer.org does... And it has both a Linux and Windows version.

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

79169994

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

In my case what make my CygWin slow to start up is nvm. If you have nvm installed it will add initial script to ~/.bashrc which would take a long time to run.All you need to do is to comment them out.

Reasons:
  • Blacklisted phrase (1): to comment
  • Low length (0.5):
  • Has code block (-0.5):
  • Single line (0.5):
Posted by: link89

79169991

Date: 2024-11-08 12:18:08
Score: 6 🚩
Natty:
Report link

Im not 100% sure but last time I have similar problem I do this:

Download snap7 https://sourceforge.net/projects/snap7/ Copy the dll on you win32 and when run it will recognize it

Reasons:
  • Blacklisted phrase (1): I have similar
  • Low length (1):
  • No code block (0.5):
  • Me too answer (2.5): I have similar problem
  • Low reputation (1):
Posted by: Alberttorm9

79169986

Date: 2024-11-08 12:17:07
Score: 2
Natty:
Report link

Setting useTextureView to false tells react-native-video to use a SurfaceView instead of a Texture View, which can mitigate issues when hardware acceleration is selectively enabled.

add this prop useTextureView={false}

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

79169976

Date: 2024-11-08 12:15:07
Score: 1.5
Natty:
Report link

For me, adding [Net.ServicePointManager]::SecurityProtocol = [Net.SecurityProtocolType]::Tls12 solved, which is strange to me since this is an hosted pipeline, ran within a Linux vm.

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

79169975

Date: 2024-11-08 12:14:06
Score: 0.5
Natty:
Report link

The error was related to how I defined the path in the microservice. I initially thought that every request matching the base URL defined in the ingress file would be forwarded to the correct pod, with the rest of the URL being handled by the microservice itself. I simply misunderstood how route definitions in the ingress configuration actually work. The correct path definition for mounting the route is:

app.use("/v1/auth", authRouter);

just like defined in the Ingress config file.

Hope this can be helpful for someone.

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

79169974

Date: 2024-11-08 12:14:06
Score: 3.5
Natty:
Report link

Just type this.StartPosition = FormStartPosition.CenterParent before InitializeComponent() in constructor in child window.

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

79169970

Date: 2024-11-08 12:13:06
Score: 0.5
Natty:
Report link

It's no longer the part of express anymore ...

now you should install body-parser separately...

They have rich documents about this parser details about body and urlencoded with other parsers.

Reasons:
  • Low length (1):
  • Has code block (-0.5):
Posted by: Wahab Khan Jadon

79169961

Date: 2024-11-08 12:11:05
Score: 4
Natty: 4.5
Report link

If you want cli, this is here.

https://crates.io/crates/vsixHarvester

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

79169960

Date: 2024-11-08 12:11:05
Score: 1
Natty:
Report link

You may need to add your user to the docker group with:

sudo usermod -aG docker $USER

If you get an error stating that the docker group doesn't exist, you can create it with:

sudo groupadd docker
Reasons:
  • Low length (0.5):
  • Has code block (-0.5):
  • Low reputation (1):
Posted by: Niusha Sabahi

79169957

Date: 2024-11-08 12:10:02
Score: 12.5 🚩
Natty:
Report link

@Sufyan can you please tell me what changes you have made in pdfjs code in asset folder. I am facing similar issue. Also please let me know version of pdfjs you are using currently. Thanks

Reasons:
  • Blacklisted phrase (0.5): Thanks
  • RegEx Blacklisted phrase (2.5): can you please tell me what
  • RegEx Blacklisted phrase (2.5): please let me know
  • Low length (0.5):
  • No code block (0.5):
  • Me too answer (2.5): I am facing similar issue
  • User mentioned (1): @Sufyan
  • Single line (0.5):
  • Looks like a comment (1):
  • Low reputation (1):
Posted by: Syed Saif Ali

79169955

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

Since crbug#40323993, socks5 is not supported by Chrome. The only way to make this work natively, would be to patch the source at Chromium.

You might however use some middleware, such as a proxy to forward socks to http

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

79169934

Date: 2024-11-08 12:00:59
Score: 4.5
Natty:
Report link

I have java-23 jdk installed in my ubuntu 24 but I am still getting this error. It occurs as soon as I open my vscode

Reasons:
  • RegEx Blacklisted phrase (1): I am still getting this error
  • Low length (1):
  • No code block (0.5):
  • Unregistered user (0.5):
  • Single line (0.5):
  • Low reputation (1):
Posted by: berxo

79169923

Date: 2024-11-08 11:56:58
Score: 3.5
Natty:
Report link

It works buy only on real devices. Don't work in emulator

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

79169921

Date: 2024-11-08 11:56:58
Score: 1.5
Natty:
Report link

I’ve been exploring Android app development, and I agree that using Visual Studio Code offers flexibility but can present some challenges, especially when integrating complex functionalities like real-time data or payment systems. In my experience, optimizing workflow and integrating tools like Firebase or RESTful APIs for these needs became much smoother after utilizing a robust development approach. That's why I highly recommend checking out solutions that streamline mobile app development for industries like insurance, where reliability and security are paramount. A service like https://binary-studio.com/insurance-mobile-app-development/ provides advanced tools for integrating claims management systems, secure payments, and data synchronization—all while ensuring a smooth user experience.

Reasons:
  • Long answer (-0.5):
  • No code block (0.5):
  • Single line (0.5):
  • Low reputation (1):
Posted by: Zoren Reyland

79169915

Date: 2024-11-08 11:55:57
Score: 2
Natty:
Report link

You can try checking VS Code logs. They should be located at the bottom in a tab called OUTPUT. Perhaps an extension is acting up or something else is misconfigured. Here is a short manual: https://docs.oracle.com/en/cloud/paas/application-integration/adapter-builder/view-vs-code-extension-logs.html

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

79169913

Date: 2024-11-08 11:54:54
Score: 6 🚩
Natty:
Report link

Could you provide some example how to do that in df.write...saveAsTable

Reasons:
  • RegEx Blacklisted phrase (2.5): Could you provide some
  • Low length (1.5):
  • No code block (0.5):
  • Single line (0.5):
  • Low reputation (1):
Posted by: Tanmay Gupta

79169911

Date: 2024-11-08 11:54:54
Score: 0.5
Natty:
Report link

Build version: 2.4.0 Current date: 2024-11-08 19:47:54 Device: Vivo V2237 OS version: Android 14 (SDK 34)

Stack trace:
java.lang.RuntimeException: Using WebView from more than one process at once with the same data directory is not supported. https://crbug.com/558377 : Current process com.zenhub.gfx (pid 20575), lock owner unknown at org.chromium.android_webview.AwDataDirLock.b(chromium-TrichromeWebViewGoogle6432.aab-stable-672308633:202) at org.chromium.android_webview.AwBrowserProcess.j(chromium-TrichromeWebViewGoogle6432.aab-stable-672308633:16) at com.android.webview.chromium.N.e(chromium-TrichromeWebViewGoogle6432.aab-stable-672308633:207) at WV.rY.run(chromium-TrichromeWebViewGoogle6432.aab-stable-672308633:11) at android.os.Handler.handleCallback(Handler.java:1013) at android.os.Handler.dispatchMessage(Handler.java:101) at android.os.Looper.loopOnce(Looper.java:226) at android.os.Looper.loop(Looper.java:328) at android.app.ActivityThread.main(ActivityThread.java:9188) at java.lang.reflect.Method.invoke(Native Method) at com.android.internal.os.RuntimeInit$MethodAn**

  1. strong text

**dArgsCaller.run(RuntimeInit.java:594) at com.android.internal.os.ZygoteInit.main(ZygoteInit.java:1099)

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

79169910

Date: 2024-11-08 11:54:54
Score: 5.5
Natty:
Report link

How much clock speed and how many cores does your processor have? And how much operational memory does your computer have?

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

79169907

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

My guess is your tempdir() for julia is on C:.

You can try to change the values of ENV["TMP"] or TEMP or USERPROFILE

https://docs.julialang.org/en/v1/base/file/#Base.Filesystem.tempdir

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

79169901

Date: 2024-11-08 11:50:53
Score: 1.5
Natty:
Report link

actually there is no error in the codes, I just hit the debug button instead of hot-reload button from the IDE. but it should show changes when hot reloading because it is only in .xaml and not in .cs

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

79169896

Date: 2024-11-08 11:48:52
Score: 3.5
Natty:
Report link

The version is optional and if not specified SSM will return the latest version

Reasons:
  • Low length (1.5):
  • No code block (0.5):
  • Single line (0.5):
  • Low reputation (1):
Posted by: Jiju Thomas Mathew

79169892

Date: 2024-11-08 11:47:52
Score: 2.5
Natty:
Report link

This is an issue related to the character case not being retained in postgres data sources. We have this issue reported here and a fix should be included in the DataGrip 2024.3 version

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

79169879

Date: 2024-11-08 11:45:52
Score: 0.5
Natty:
Report link

This has worked for me I wanted to nest bottom navigation, and sider navigation on the same place, after struggles I settled for this one [this has worked for me I wanted to nest bottom navigation, and sider navigation on the same place, after struggles I settled for this one

enter image description here

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

79169877

Date: 2024-11-08 11:45:52
Score: 2.5
Natty:
Report link

The answer to my question is actually published at [1]

Only EA releases are released to Maven Central. Releases of stable versions (e.g. x.23) are made to Chronicle’s nexus and are available to customers with a commercial agreement.

[1] https://github.com/OpenHFT/OpenHFT/blob/aa79b18031dbecfd6722aa285a495e87e2d016d5/docs/Version-Support.adoc#ea-early-access

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

79169867

Date: 2024-11-08 11:43:51
Score: 2
Natty:
Report link

OOM is a kernel function for protect your system. If your request use all mamory, then you can do few moment:

  1. Give a swap memory.
  2. Insert in your server new phisical memory.
  3. Optimize your SQL code.
Reasons:
  • Low length (0.5):
  • No code block (0.5):
  • Low reputation (1):
Posted by: Dmitry Lvov

79169866

Date: 2024-11-08 11:43:51
Score: 0.5
Natty:
Report link

In case it helps anyone. The thing that caught me out was trying to put the protocol refererence in my existing Objective-C "ViewController.h" file @interface declaration as I had a lot of other existing protocol and method definitions in the .h file.

@interface ViewController: UITableViewController <AnotherDelegate, CuteDelegate> {....}  ..... @end

But, Objective-C header files can't see the Swift auto generated headers (e.g. "TestObjcUsingGPKit-Swift.h" ) so XCode complained about CuteDelegate being undefined. Finally I found out that you can also add an interface declaration in the .m file as well with just the delegate declarations in if it looks like this:-

@interface () UITableViewController <AnotherDelegate, CuteDelegate>

and still have the .h file declaration looking like this:-

@interface ViewController: UITableViewController
Reasons:
  • Long answer (-0.5):
  • Has code block (-0.5):
  • User mentioned (1): @interface
  • Low reputation (0.5):
Posted by: goelectric

79169865

Date: 2024-11-08 11:43:51
Score: 0.5
Natty:
Report link
  1. Build a docker image

docker build -t dockerHubUserName/first-image:0.0.1 .

( dockerHubUserName is docker Username, first-image is the project name, 0.0.1 is the tag (versions) and . represent current directory )

  1. Login in Docker

docker login

-> provide id and password

  1. push code in docker hub

docker push iamatif96/eureka-serveer:0.0.1

Reasons:
  • No code block (0.5):
Posted by: Mohammad Atif Aftab

79169863

Date: 2024-11-08 11:42:51
Score: 1
Natty:
Report link

Try to set environnement of SE_ENABLE_TRACING to false in docke-compose.

exemple using commandline with docker run: -e SE_ENABLE_TRACING=false

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

79169859

Date: 2024-11-08 11:41:50
Score: 2.5
Natty:
Report link

Internal clock divider needed to be set to CGC_SYS_CLOCK_DIV_2 (default from manufacturer's XML configs) instead of CGC_SYS_CLOCK_DIV_1. I made some mistake when creating the SDK.

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

79169836

Date: 2024-11-08 11:33:46
Score: 10.5 🚩
Natty: 6
Report link

I have the same problem, have you solved it somehow? It's just inconvenient to output to the terminal

Reasons:
  • Blacklisted phrase (1): I have the same problem
  • Blacklisted phrase (2): have you solved it
  • RegEx Blacklisted phrase (1.5): solved it somehow?
  • Low length (1):
  • No code block (0.5):
  • Me too answer (2.5): I have the same problem
  • Contains question mark (0.5):
  • Single line (0.5):
  • Low reputation (1):
Posted by: Мак вин

79169833

Date: 2024-11-08 11:31:45
Score: 1
Natty:
Report link

I had a similar situation in gitlab-ce. In my case I didn't have to login to gitlab-rails. From the UI as an admin, I just followed below steps

(Admin -> users -> <username> -> Identities - delete LDAP)

(3 dots at top right corner -> 'unblock user')

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

79169816

Date: 2024-11-08 11:24:44
Score: 3.5
Natty:
Report link

it is a bug already fixed and it will be back ported to 8.15.4 https://github.com/elastic/kibana/pull/197797

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

79169813

Date: 2024-11-08 11:24:44
Score: 1.5
Natty:
Report link

As mentioned in the comment thread, I think this is an issue with my configuration of VSCode - if I reload the IDE, often times it shows the error and sometimes it does not. tsc or webpack logs no errors.

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

79169812

Date: 2024-11-08 11:24:44
Score: 1.5
Natty:
Report link

A better way to do this is to use scipy.stats.mode which accepts an axis argument.

def find_mode(arr, axis):
    m = stats.mode(arr, axis=axis)
    return m[0]
Reasons:
  • Low length (1):
  • Has code block (-0.5):
  • Low reputation (1):
Posted by: Ben Silver

79169806

Date: 2024-11-08 11:23:43
Score: 1
Natty:
Report link

Looking on your currency data described relations:

hour_rates (h) = capacities (Ah) / currents (A)
capacities (Ah) = hour_rates (h) * currents (A)
currents (A) = capacities (Ah) / hour_rates (h)

These are not met explicitly in the data you presented. I've created the data which are exactly like the presented results:

capacity_data_corr = capacity[['hour_rates', 'capacities']]
capacity_data_corr['currents'] = capacity_data_corr['capacities']/capacity_data_corr['hour_rates']

Interpolation is almost ideal

enter image description here enter image description here

This means, that the interpolation obtained can be good, but the data does not meet assumed relations. If these relations are only approximate, in such long horizon error like this should not be as bad as it looks.

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

79169801

Date: 2024-11-08 11:22:43
Score: 4.5
Natty:
Report link

If I want to integrate the mail is this the correct way or if it needs modification, can you please guide me

Connect-AzAccount

# Initialize an empty array to store the results
$expirationDetails = @()

# Get all subscriptions
$subscriptions = Get-AzSubscription

# Loop through each subscription
foreach ($subscription in $subscriptions) {
    # Set the context to the current subscription
    Set-AzContext -SubscriptionId $subscription.Id

    # Get all Key Vaults in the current subscription
    $kvnames = Get-AzKeyVault

    foreach ($kvitem in $kvnames) {
        # Get Key Vault secrets, keys, and certificates
        $secrets = Get-AzKeyVaultSecret -VaultName $kvitem.VaultName
        $keys = Get-AzKeyVaultKey -VaultName $kvitem.VaultName
        $certificates = Get-AzKeyVaultCertificate -VaultName $kvitem.VaultName

        # Function to check expiration date and return the expiration DateTime or null for missing values
        function Check-Expiration($expiryDate) {
            if ($expiryDate) {
                return [datetime]$expiryDate  # Return the DateTime object if expiration date exists
            }
            return $null  # Return null if expiration date is missing
        }

        # Function to calculate remaining days
        function Get-RemainingDays($expiryDate) {
            if ($expiryDate -ne $null) {
                $remainingDays = ($expiryDate - (Get-Date)).Days
                return $remainingDays
            }
            return $null  # Return null if no expiration date
        }

        # Process secrets
        foreach ($secret in $secrets) {
            $expirationDate = Check-Expiration $secret.Expires
            $remainingDays = Get-RemainingDays $expirationDate

            if ($expirationDate -ne $null) {
                $formattedExpirationDate = $expirationDate.ToString("MM/dd/yyyy HH:mm:ss")
            } else {
                $formattedExpirationDate = ""  # Empty string for null expiration dates
            }

            # Only include items expiring within the next 7 days
            if ($remainingDays -le 7 -and $remainingDays -ge 0) {
                $expirationDetails += [PSCustomObject]@{
                    SubscriptionName  = $subscription.Name
                    ResourceGroupName = $kvitem.ResourceGroupName
                    ResourceName      = $kvitem.VaultName  # Key Vault name
                    ObjectName        = $secret.Name        # Name of the secret
                    ObjectCategory    = "Secret"            # Category for KeyVault secret
                    ExpirationDate    = $formattedExpirationDate  # Formatted expiration date
                    ExpiresIn         = $remainingDays     # Remaining days until expiration
                }
            }
        }

        # Process keys
        foreach ($key in $keys) {
            $expirationDate = Check-Expiration $key.Attributes.Expires
            $remainingDays = Get-RemainingDays $expirationDate

            if ($expirationDate -ne $null) {
                $formattedExpirationDate = $expirationDate.ToString("MM/dd/yyyy HH:mm:ss")
            } else {
                $formattedExpirationDate = ""  # Empty string for null expiration dates
            }

            # Only include items expiring within the next 7 days
            if ($remainingDays -le 7 -and $remainingDays -ge 0) {
                $expirationDetails += [PSCustomObject]@{
                    SubscriptionName  = $subscription.Name
                    ResourceGroupName = $kvitem.ResourceGroupName
                    ResourceName      = $kvitem.VaultName  # Key Vault name
                    ObjectName        = $key.Name           # Name of the key
                    ObjectCategory    = "Key"               # Category for KeyVault key
                    ExpirationDate    = $formattedExpirationDate  # Formatted expiration date
                    ExpiresIn         = $remainingDays     # Remaining days until expiration
                }
            }
        }

        # Process certificates
        foreach ($certificate in $certificates) {
            $expirationDate = Check-Expiration $certificate.Attributes.Expires
            $remainingDays = Get-RemainingDays $expirationDate

            if ($expirationDate -ne $null) {
                $formattedExpirationDate = $expirationDate.ToString("MM/dd/yyyy HH:mm:ss")
            } else {
                $formattedExpirationDate = ""  # Empty string for null expiration dates
            }

            # Only include items expiring within the next 7 days
            if ($remainingDays -le 7 -and $remainingDays -ge 0) {
                $expirationDetails += [PSCustomObject]@{
                    SubscriptionName  = $subscription.Name
                    ResourceGroupName = $kvitem.ResourceGroupName
                    ResourceName      = $kvitem.VaultName  # Key Vault name
                    ObjectName        = $certificate.Name  # Name of the certificate
                    ObjectCategory    = "Certificate"       # Category for KeyVault certificate
                    ExpirationDate    = $formattedExpirationDate  # Formatted expiration date
                    ExpiresIn         = $remainingDays     # Remaining days until expiratio
                }
            }
        }
    }
}

# Optionally, display the results on the screen
$expirationDetails | Format-Table -Property SubscriptionName, ResourceGroupName, ResourceName, ObjectName, ObjectCategory, ExpirationDate, ExpiresIn

project vaultUri
"@
$result = Search-AzGraph -Query $query

$pwd = ConvertTo-SecureString 'mailtopassword' -AsPlainText -Force
$CredSmtp = New-Object System.Management.Automation.PSCredential ('mail from', $password)$pwd = ConvertTo-SecureString 'mailfrompassword' -AsPlainText -Force
$CredSmtp = New-Object System.Management.Automation.PSCredential ('mail to', $pwd)
$FromMail = "@gmail.com"
$MailTo = "@outlook.com"
$Username = $CredSmtp.UserName
$Password = $CredSmtp.Password
$SmtpServer = "smtp.office365.com"
$Port = 587
$Message = New-Object System.Net.Mail.MailMessage $FromMail, $MailTo
$MessageSubject = "Sending Automation results"
$Message.IsBodyHTML = $true
$Message.Subject = $MessageSubject
$Smtp = New-Object Net.Mail.SmtpClient($SmtpServer, $Port)
$Smtp.EnableSsl = $true
$Smtp.Credentials = New-Object System.Net.NetworkCredential($Username, $Password)
$Smtp.Send($Message)
Reasons:
  • Blacklisted phrase (1): guide me
  • RegEx Blacklisted phrase (2.5): can you please guide me
  • RegEx Blacklisted phrase (1): I want
  • Long answer (-1):
  • Has code block (-0.5):
  • Self-answer (0.5):
  • Low reputation (1):
Posted by: Manju S

79169797

Date: 2024-11-08 11:21:43
Score: 2.5
Natty:
Report link

Actually it was quite simple. I used Pythons

subprocess.run("touch foo", shell=True, executable="/bin/bash")

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

79169795

Date: 2024-11-08 11:20:42
Score: 0.5
Natty:
Report link

Macros are text replacements done by the C Preprocessor; a tool that runs over your code before the compiler itself ever sees it, and consequently, before any compile-time constant expressions (such as 5+6) are evaluated.

Most importantly, the preprocessor has no notion of the language you're writing in. It doesn't know any of the syntax or semantics of either C or C++.

This is the main reason why in the C++ world, macros are generally considered "evil" (read: should be avoided unless absolutely necessary). Note that the result you want here, parsing a compile-time-evaluated number into a compile-time-evaluated string, cannot be generally achieved even in the most recent C++ standard revision. constexpr strings do exist, but they do not survive long: See Is it possible to use std::string in a constant expression?

Bottom line: Can't be done, you have to do it at runtime.

Reasons:
  • Blacklisted phrase (1): Is it possible to
  • Long answer (-0.5):
  • Has code block (-0.5):
  • Low reputation (0.5):
Posted by: lo-asys

79169790

Date: 2024-11-08 11:19:42
Score: 0.5
Natty:
Report link

Thanks to the Decompose library owner for providing a quick response and saving my time. Here’s the code for the Android entry point to create two retainedComponent.

class MainActivity : ComponentActivity() {
    override fun onCreate(savedInstanceState: Bundle?) {
        super.onCreate(savedInstanceState)
        val (rootComponent, dashBoardRootComponent) = retainedComponent {
            RootComponent(it.childContext("root")) to DashBoardRootComponent(it.childContext("dash"))
        }
        setContent {
            App(rootComponent, dashBoardRootComponent)
        }
    }
}

Here link for original answer by owner. Solution

Reasons:
  • Blacklisted phrase (0.5): Thanks
  • Long answer (-0.5):
  • Has code block (-0.5):
  • Self-answer (0.5):
  • Low reputation (0.5):
Posted by: Vishal Bhimporwala

79169786

Date: 2024-11-08 11:17:41
Score: 3
Natty:
Report link

Compiler gives error "GetTotalSheetCount(pSheets)" is undefined. Would you be so kind to give the implementation of this function, please

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

79169784

Date: 2024-11-08 11:17:41
Score: 1
Natty:
Report link

I'm only four years late here and can't comment yet, so adding this as an answer.

It's probably the newer Python & Pandas causing this but this now fires Assertion Error, as the .groupby adds the grouping key to the output.

df["cagr"] = df.groupby("company").apply(lambda x, period: ((x.pct_change(period) + 1) ** (1/period)) - 1, cagr_period)

Simple fix to this is to use group_keys=False

df["cagr"] = df.groupby("company", group_keys=False).apply(lambda x, period: ((x.pct_change(period) + 1) ** (1/period)) - 1, cagr_period)
Reasons:
  • RegEx Blacklisted phrase (1): can't comment
  • Long answer (-0.5):
  • Has code block (-0.5):
  • Low reputation (1):
Posted by: Arseni

79169770

Date: 2024-11-08 11:11:40
Score: 0.5
Natty:
Report link

After hours of retry, I finally get it.

When downloaded, you must set the path to

flutter config --jdk-dir *JDK-folder-version*/Content/Home

(cause Flutter will search that path/bin/java to determine jdk version)

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

79169762

Date: 2024-11-08 11:09:40
Score: 4.5
Natty: 5
Report link

There is an unoffical Azure App Configuration emulator availaible here https://github.com/tnc1997/azure-app-configuration-emulator

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

79169754

Date: 2024-11-08 11:07:39
Score: 3.5
Natty:
Report link

It is defaulting to anonymous access. Remove everything from the Rest filter chain excpet "Basic" and it will start to work.

enter image description here

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

79169751

Date: 2024-11-08 11:06:38
Score: 2.5
Natty:
Report link

As of Visual Studio 2022, using Specflow version 3.9.74, when I right click anywhere within the step definition there is an option "Find Step Definition Usages" which is what you are looking for.

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

79169728

Date: 2024-11-08 10:59:36
Score: 0.5
Natty:
Report link

If the customer already has a saved payment method, then why use Checkout Session to create a new Subscription?

Instead, directly create a new Subscription. This way the customer doesn't need to fill any form, and you can directly reuse the existing payment method of the Customer.

Reasons:
  • Low length (0.5):
  • No code block (0.5):
  • Contains question mark (0.5):
  • High reputation (-1):
Posted by: soma

79169727

Date: 2024-11-08 10:59:36
Score: 2.5
Natty:
Report link

You must add the return into your code, else the result will be not passed back😌

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

79169722

Date: 2024-11-08 10:57:35
Score: 4.5
Natty:
Report link

here is a small working example. enter image description here

enter image description here

enter image description here

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

79169719

Date: 2024-11-08 10:56:34
Score: 9
Natty: 7.5
Report link

Did you solve the problem with mentioning someone in groups?

Reasons:
  • RegEx Blacklisted phrase (3): Did you solve the problem
  • Low length (1.5):
  • No code block (0.5):
  • Ends in question mark (2):
  • Single line (0.5):
  • Starts with a question (0.5): Did you solve the
  • Low reputation (1):
Posted by: Alexis Freitas Barboza

79169717

Date: 2024-11-08 10:56:34
Score: 3.5
Natty:
Report link

netsh wlan show profile name="Galaxy A32 2A60" key=clear

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

79169714

Date: 2024-11-08 10:55:34
Score: 1
Natty:
Report link

To prevent needless changes, make use of the @SqlResultSetMapping. Instead of manually altering the results, return a list of DTOs straight from the repository.

Improved Query Technique

WITH DateRange AS (
    SELECT date 
    FROM PrecomputedDateRange 
    WHERE date BETWEEN :fromDate AND :toDate
)
SELECT
    FORMAT(d.date, 'MM/dd/yyyy') AS label,
    COALESCE(SUM(abc.data1), 0) AS data1,
    COALESCE(SUM(abc.data2), 0) AS data2,
    COALESCE(SUM(abc.data3), 0) AS data3
FROM
    DateRange d
LEFT JOIN ABC abc 
    ON abc.date = d.date -- Avoid casting
WHERE filtering1 AND filtering2
GROUP BY d.date
ORDER BY d.date ASC;

You can make better use of indexes and reduce computation by splitting date range computation from the primary query.

since I have not dealt with such large data I will hope that's helpful. and it's better to use Redis or Memecache for caching if this doesn't work.

Reasons:
  • Long answer (-0.5):
  • Has code block (-0.5):
  • User mentioned (1): @SqlResultSetMapping
  • Low reputation (1):
Posted by: Ankit

79169713

Date: 2024-11-08 10:55:34
Score: 1
Natty:
Report link

To optimize performance in a large-scale Angular app, you can use lazy loading for modules, OnPush change detection, and RxJS for managing data streams. Implement trackBy with *ngFor, use AOT compilation, and minimize DOM manipulations. Efficient state management with NgRx also helps.

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

79169699

Date: 2024-11-08 10:49:32
Score: 3
Natty:
Report link

Easy to fix. Just use is True.

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

79169697

Date: 2024-11-08 10:48:32
Score: 1
Natty:
Report link

Try a three-finger-press on the screen, this works for me. I saw it on Reddit in some forum. I'm using Expo Go v51 on an iPhone 13.

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

79169674

Date: 2024-11-08 10:43:31
Score: 1
Natty:
Report link

you can run

npx ng serve

To make sure you will use the same version, and to avoid global installation

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

79169668

Date: 2024-11-08 10:42:30
Score: 1
Natty:
Report link

This will help to update the specific Property in the cosmosdb.

List<PatchOperation> patchOperations = new List<PatchOperation>()
{
    PatchOperation.Replace("/property2", "newValue2")
};

await container.PatchItemAsync<object>(id, PartitionKey, patchOperations);
Reasons:
  • Low length (0.5):
  • Has code block (-0.5):
  • Low reputation (1):
Posted by: TiginMannuel

79169661

Date: 2024-11-08 10:40:30
Score: 1.5
Natty:
Report link

you could do it like this:

SQLALCHEMY_ENGINE_OPTIONS = {
    'pool_pre_ping': True,
    ...
}
SQLALCHEMY_BINDS = {
    'users': {
        'url': 'sqlite:///',
        'pool_pre_ping': True,
        ...
    },
    'application': SQLALCHEMY_DATABASE_URI
} 

it's working for me.

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

79169658

Date: 2024-11-08 10:39:29
Score: 1
Natty:
Report link

Since 2022, this has been made possible with arrays in snowflake scripting:

BEGIN
LET values_list := array_construct('Value1', 'Value2', 'Value3');

SELECT *
FROM TableA
WHERE ARRAY_CONTAINS(Col1::VARIANT,:values_list);
END;

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

79169653

Date: 2024-11-08 10:38:29
Score: 4.5
Natty:
Report link

selectsRange={viewMode === 'date'}

Reasons:
  • Low length (2):
  • No code block (0.5):
  • Has no white space (0.5):
  • Single line (0.5):
  • Low reputation (1):
Posted by: Wanten

79169651

Date: 2024-11-08 10:38:29
Score: 1.5
Natty:
Report link

I'll post it here the talk about it from Sébastien Weber : if you click on grab and that the attribute live_mode_available is True then, this live kwargs will also be true and you'll be running the live mode from the plugin not from the control module (means sending the dte_signal as fast as possible)

so i don't think it's deprecated. for more information look at the documentation: https://pymodaq.cnrs.fr/en/5.0.x_dev/developer_folder/instrument_plugins.html#live-mode

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

79169648

Date: 2024-11-08 10:37:29
Score: 4
Natty: 4
Report link

Try and modify your code by adding a + or - sign to the grade like c+ or B-.

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

79169647

Date: 2024-11-08 10:37:28
Score: 1.5
Natty:
Report link

You can try now with the below code. Refresh the session. It will resolve the issue.

spark.conf.set("spark.jars.packages", "org.apache.spark:spark-avro_2.12:3.5.3")
Reasons:
  • Low length (1):
  • Has code block (-0.5):
  • Low reputation (1):
Posted by: Srinimf

79169644

Date: 2024-11-08 10:35:28
Score: 1.5
Natty:
Report link

The above answers are superior to this but I did this as an exercise

bc -l <<< $(find dirname -type f -exec sum {} /tmp/{} \; | cut -f1 -d' ' | paste -d- - -) | grep -v 0

I explained it in full here https://stackoverflow.com/a/79169637/504047

Reasons:
  • Blacklisted phrase (1): stackoverflow
  • Low length (0.5):
  • Has code block (-0.5):
  • Low reputation (0.5):
Posted by: Chai Ang

79169636

Date: 2024-11-08 10:32:27
Score: 1.5
Natty:
Report link

Use this 2 Formula for the data validation

=IF(OR(ISDATE(J14), J14="RECEIVED"), TRUE, FALSE)

OR

=OR(ISDATE(J14),ISTEXT(J14))

Sample Output

Data Validation

sample

sample2

Result on first formula

result

Result on second formula

result

Note: Adjust your data range based on your needs and also edit the given formula

Reference

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

79169632

Date: 2024-11-08 10:31:26
Score: 1.5
Natty:
Report link

Ask admin of team account to follow the following steps:

Then in Xcode accounts team should appear. If not remove and add your appleId in accounts

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

79169610

Date: 2024-11-08 10:25:25
Score: 4
Natty:
Report link

@Ming if I can't reproduce a problem as stated (he said he had a problem not seeing hello output) that means there's no problem as I see it, I ran his code and it ran fine .. hope that's explicit enough :).

Reasons:
  • Low length (0.5):
  • No code block (0.5):
  • User mentioned (1): @Ming
  • Single line (0.5):
  • Looks like a comment (1):
  • Low reputation (0.5):
Posted by: Goran B.

79169607

Date: 2024-11-08 10:24:22
Score: 6.5 🚩
Natty:
Report link

I tried the Min health at 50% and max Health and 200%. But for 1 task instance it's still not working. the older task does not stop till i manually stop it. It works for 0 and 100% healths but this causes downtime. Is there a way to prevent this or will I have to use dynamic port mapping and incur the cost of a load balancer?

Reasons:
  • Blacklisted phrase (1): Is there a way
  • Blacklisted phrase (2): still not working
  • No code block (0.5):
  • Ends in question mark (2):
  • Low reputation (1):
Posted by: harjas sodhi

79169601

Date: 2024-11-08 10:23:21
Score: 1
Natty:
Report link

Why is there such a large performance gap between the native C++ execution and the C# P/Invoke call?

Generally for SIMD in general C++ is performing better than C#, that would naturally explain the time delta here. In fact, the compiler doesn't behave the same when treating the same snippet of code for both language :

C# JIT ASM AVX:

xor         edx,edx                          ; initialise edx (loop counter i) to zero

; LOOP_START
mov         ecx,dword ptr [rsi+8]            ; load vx.Length into ecx
cmp         edx,ecx                          ; if i >= vx.Length
jae         000007FE95B958E7                 ; throw IndexOutOfRangeException
lea         r8d,[rdx+3]                      ; load i+3 into r8d
cmp         r8d,ecx                          ; if i+3 >= vx.Length
jae         000007FE95B958E7                 ; throw IndexOutOfRangeException
movups      xmm0,xmmword ptr [rsi+rdx*4+10h] ; load vx[i..i+3] into xmm0

mov         ecx,dword ptr [rdi+8]            ; load vy.Length into ecx
cmp         edx,ecx                          ; if i >= vy.Length
jae         000007FE95B958E7                 ; throw IndexOutOfRangeException
cmp         r8d,ecx                          ; if i+3 >= vy.Length
jae         000007FE95B958E7                 ; throw IndexOutOfRangeException
movups      xmm1,xmmword ptr [rdi+rdx*4+10h] ; load vy[i..i+3] into xmm1

paddd       xmm0,xmm1                        ; perform SIMD addition of xmm0 and xmm1
mov         ecx,dword ptr [rax+8]            ; load result.Length into ecx
cmp         edx,ecx                          ; if i >= result.Length
jae         000007FE95B958EC                 ; throw ArgumentException
cmp         r8d,ecx                          ; if i+3 >= result.Length
jae         000007FE95B958F1                 ; throw ArgumentException

movups      xmmword ptr [rax+rdx*4+10h],xmm0 ; more result out of xmm0 into the result array

add         edx,4                            ; increment loop counter, i, by 4
cmp         edx,3E8h                         ; if i < 1000 (0x3E8)
jl          000007FE95B9589A                 ; go back to LOOP_START

C++ MSVC2015 AVX2:

; array initialisation and loop setup omitted...

; SIMD_LOOP_START
vmovdqu     ymm1,ymmword ptr [rax-20h]           ; load 8 ints (256 bits) from x into 256-bit register ymm1
vpaddd      ymm1,ymm1,ymmword ptr [rcx+rax-20h]  ; add 8 ints from y to those in ymm1 and store result back in ymm1
vmovdqu     ymmword ptr [r8+rax-20h],ymm1        ; move result out of ymm1 into the result array
vmovdqu     ymm2,ymmword ptr [rax]               ; load the next 8 ints from x into ymm2
vpaddd      ymm1,ymm2,ymmword ptr [rcx+rax]      ; add the next 8 ints from y to those in ymm2 and store the result in ymm1
vmovdqu     ymmword ptr [r8+rax],ymm1            ; move the result out of ymm1 into the result array
lea         rax,[rax+40h]                        ; increment the array indexer by 16 ints (64 bytes)
sub         r9,1                                 ; decrement the loop counter
jne         main+120h                            ; if loop counter != 0 go back to SIMD_LOOP_START

; SIMPLE_LOOP_START
mov         ecx,dword ptr [rbx+rax]              ; load one int from x into ecx
add         ecx,dword ptr [rax]                  ; add one int from y to the value in ecx and store the result in ecx
mov         dword ptr [rdx+rax],ecx              ; move the result out of ecx into the result array
lea         rax,[rax+4]                          ; increment the array indexer by one int (4 bytes)
sub         rdi,1                                ; decrement the loop counter
jne         main+160h                            ; if loop counter != 0 go back to SIMPLE_LOOP_START

Which lead to a conclusion that the compiler when operating C++ is able to auto-vectorize when necessary which gain a lot of execution time.

What can I do to bring the C#-called version closer to the performance of the native C++?

A thing to notice mainly is that vectorized will allways be faster than scalar. You will gain from 1.9 to 3.5 processing time using vectorized byte structure. You're using it in C++ (std::vector<uint8_t> image(width * height)) and not in C# (byte[] image = new byte[width * height];) which can have an effect. Vectorized is better for time saving because AVX2 instruction can operate on 8 or 16 bytes in one clock cycle and so parallelized. Where for the scalar container the processor executes one instruction per data element in sequence.

How does libraries like OpenCvSharp achieve excellent performance with P/Invoke?

OpenCV often avoids byte[] by using Mat objects that directly access the memory pointer that minimizes the marshaling needs.

Conclusion

I would highly recommend using vector instead of scalar container to save time. But keep note that you can use alternative "raw-er" memory storage, with memory pool and raw pointers, but to keep it simple & stupid (KISS) you can use Vectors. Notice that C++ will always be faster than C#, but you can get close.

Reasons:
  • Blacklisted phrase (1): can I do
  • Blacklisted phrase (1): What can I do
  • Whitelisted phrase (-1.5): you can use
  • Long answer (-1):
  • Has code block (-0.5):
  • Contains question mark (0.5):
  • Starts with a question (0.5): Why is the
  • Low reputation (1):
Posted by: midekyy

79169595

Date: 2024-11-08 10:22:21
Score: 3
Natty:
Report link

but there is an issue that previous ECS service tasks are still running have no changings and still using the previous image this is not the perfect solution i want that when a new changings are made in my code ECS service tasks although they running they must be update with the latest content also if is any issue in the code that i pushed then roll back to previous version until i solve the issue and push the code again

Reasons:
  • RegEx Blacklisted phrase (1): i want
  • No code block (0.5):
  • Single line (0.5):
  • Low reputation (1):
Posted by: Muneeb Ur Rehman

79169594

Date: 2024-11-08 10:21:20
Score: 5
Natty:
Report link

So, I just followed step by step this guide and now it works perfectly

Reasons:
  • Blacklisted phrase (1): this guide
  • Low length (1.5):
  • No code block (0.5):
  • Self-answer (0.5):
  • Single line (0.5):
  • Low reputation (1):
Posted by: Alextti

79169579

Date: 2024-11-08 10:16:19
Score: 1
Natty:
Report link

Since I know nothing of your existing Code (I guess there isn't one) I can only give you general advice:

logging and integrating to the DAG may be good practice aswell depending on the case Consider Retries if they fit your case

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

79169576

Date: 2024-11-08 10:15:18
Score: 3.5
Natty:
Report link

how can we handle [GETX] Info: _GetImpl Instance of '_GetImpl' runZonedGuarded: PlatformException(-11800, The operation could not be completed, {index: 0}, null) this in app? , i have music app , where I download and play songs , but when I update the app , this downloaded path exists but doest not work. is there any way I can handle this issue?

flutter: setMediaItemInQueue called playFromMediaId title isdownload path : Clap Your Hands true /var/mobile/Containers/Data/Application/E0A30141-D87A-4960-827F-A2C76E6DAD0E/Documents/download/dccd547ede95829b98af67adc8af1ec9.mp3 [GETX] Instance "MusicTrayController" with tag "MusicTrayController" has been initialized flutter: MusicTrayController onInit flutter: musicBottomSheetOption isDownload true [GETX] Info: _GetImpl Instance of '_GetImpl' runZonedGuarded: PlatformException(-11800, The operation could not be completed, {index: 1}, null)

Reasons:
  • Blacklisted phrase (1): how can we
  • Blacklisted phrase (1): is there any
  • Long answer (-0.5):
  • No code block (0.5):
  • Contains question mark (0.5):
  • Starts with a question (0.5): how can we
  • Low reputation (0.5):
Posted by: Richa Shah

79169575

Date: 2024-11-08 10:14:18
Score: 0.5
Natty:
Report link

Various authentication methods are available from the google-auth library and refer to this documentation setup authentication.

To Set up ADC with the credentials that are associated with your Google Account. After you install and initialize the gcloud CLI, configure ADC using:

gcloud auth application-default login

For more information, see Set up Application Default Credentials.

Reasons:
  • Blacklisted phrase (1): this document
  • Long answer (-0.5):
  • Has code block (-0.5):
  • Low reputation (0.5):
Posted by: PUTHINEEDI RAMOJI RAO

79169568

Date: 2024-11-08 10:11:17
Score: 0.5
Natty:
Report link

you could use later versions of confluent-kafka or reverse your pip/python versions

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

79169540

Date: 2024-11-08 10:01:15
Score: 1
Natty:
Report link

EmailJs expects a specific format. Try updating the key value pairs as follows:

to_email: email, 
from_name: 'Email Confirmation',
to_name: email.split('@')[0],  
message: `Please confirm your email by clicking the link: ${confirmationLink}`

change "to" to "to_email" and set "reply_to" to "to_name".

If this doesnt work, make sure your environment variables are properly set in docker and also consider adding logging to help debug errors.

Reasons:
  • Blacklisted phrase (1): doesnt work
  • Has code block (-0.5):
  • Low reputation (0.5):
Posted by: Saad Ali

79169527

Date: 2024-11-08 09:57:14
Score: 1.5
Natty:
Report link

Problem solved, you should have added:

((ViewGroup) view.getParent()).removeView(view);
activity.setContentView(view);

in onInflate() before AppCompatButton btnRebootInternet = view.findViewById(R.id.btn_reboot_nternet);

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

79169526

Date: 2024-11-08 09:57:14
Score: 2.5
Natty:
Report link

Needs a return ..if possible one inside the if condition also and one outside

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

79169521

Date: 2024-11-08 09:56:13
Score: 2
Natty:
Report link

I think you are using this node package on server side '@emailjs/browser'. while this is used for client side only. please use this package https://www.npmjs.com/package/@emailjs/nodejs on server side code.

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

79169518

Date: 2024-11-08 09:55:13
Score: 3
Natty:
Report link

If you want to flash firmware on android, you can try out my app (https://github.com/xCarlost/FirmwareFlasher), which uses esptool and a forked pyserial dependency.

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

79169516

Date: 2024-11-08 09:55:13
Score: 1
Natty:
Report link

Running https permissive could be Okay just for the sake of limited test. Never keep it that way for too long a time and never on a production machine. That being said, if you don't want to go through the message-bus solution, which sounds the more elegant to me, you may want to write your own SELinux policy module to allow httpd_t to transition, via sudo, to a brand new SELinux type/domain of your own, something named like php_wg_restarter_t. And you allow this new type/domain of yours to perform just the legitimate set of operations on the wigeguard service(s). Need that be, you may want to create a specific SELinux type for said wireguard service(s).

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

79169506

Date: 2024-11-08 09:52:13
Score: 2
Natty:
Report link

To resolve the issue of "No supported authentication methods available (server sent: publickey)" with FireZilla, I was able to solve it by modifying the SSH daemon configuration on the server. Here's what worked for me:

Open the SSH daemon configuration file, typically located at

"/etc/ssh/sshd_config"

Add or modify the following lines:

"

PubkeyAuthentication yes

PubkeyAcceptedKeyTypes=+ssh-rsa

"

Save the changes and restart the SSH service using:

"sudo systemctl restart sshd"

This ensures that public key authentication is enabled and that ssh-rsa is explicitly accepted as a key type, resolving compatibility issues that could arise due to key type restrictions. I hope this helps anyone facing similar issues!

Thanks me later !!

Reasons:
  • Blacklisted phrase (0.5): Thanks
  • Whitelisted phrase (-1): hope this helps
  • Whitelisted phrase (-1): worked for me
  • Long answer (-0.5):
  • No code block (0.5):
  • Me too answer (2.5): facing similar issue
  • Low reputation (1):
Posted by: Taukir Katava

79169500

Date: 2024-11-08 09:50:12
Score: 2
Natty:
Report link

--544e5bbf30c6bb3f3eb1ebef4b6b8ce736da91e582e9bff3c054ce049943 Content-Disposition: attachment; filename="ingresso.pdf" Content-Transfer-Encoding: base64 Content-Type: application/pdf; name="ingresso.pdf"

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

79169499

Date: 2024-11-08 09:50:12
Score: 4.5
Natty:
Report link

If you think you've set up everything correctly and it still doesn't work

try to close and reopen Postman

Reasons:
  • RegEx Blacklisted phrase (2): it still doesn't work
  • Low length (1):
  • No code block (0.5):
  • Low reputation (1):
Posted by: Meta

79169489

Date: 2024-11-08 09:47:11
Score: 2
Natty:
Report link

check you package.json file whether it has scripts as per below?

{ "name": "example", "version": "1.0.0", "description": "description", "scripts": { "test": "echo "Error: no test specified" && exit 1", "start": "node index.js", } }

Reasons:
  • Low length (0.5):
  • No code block (0.5):
  • Contains question mark (0.5):
  • Low reputation (0.5):
Posted by: Riyaz Panarwala

79169482

Date: 2024-11-08 09:44:10
Score: 1.5
Natty:
Report link

I`m not sure, you can try changing to bin path of your java sdk in JAVA_HOME like "C:\Program Files\Java\jdk-23\bin"

OR

Set path "C:\Program Files\Android\Android Studio\jbr" in JAVA_HOME in user variable.Then restart your system and try.

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

79169481

Date: 2024-11-08 09:43:10
Score: 2.5
Natty:
Report link

The answer given by Nabil Jlasssi is right one. However, a few others are saying they are still getting the same error, because "set 18363" is for specifically this question posted by the joe-khoa. Since his error message is showing "Enterprise version 15063 to run".

You have to set the number whatever your error message is showing. For example, I had "19044 or more", so I set to 19045 and it worked.

Edit Windows Version in Registry

Press Windows + R and write regedit In the Registry Editor, go to \HKEY_LOCAL_MACHINE\SOFTWARE\Microsoft\Windows NT\CurrentVersion

Right-click on EditionID and click Modify

Change Value Data to Professional

Edit Windows CurrentBuild (set 'your specific number') and CurrentBuildNumber (set 'your specific number') with the same way.

Reasons:
  • Whitelisted phrase (-1): it worked
  • Long answer (-0.5):
  • No code block (0.5):
  • Me too answer (2.5): getting the same error
  • Low reputation (1):
Posted by: Prince Zuko

79169476

Date: 2024-11-08 09:42:10
Score: 2
Natty:
Report link

Have different vehicles for different sets, and fix the indices in that set to be visited by the mapped vehicle only. So you would have "k" routes with "k" vehicles on "k" mutually exclusive sets.

Then you can choose, which route is the optimal for your use case.

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

79169472

Date: 2024-11-08 09:41:10
Score: 3.5
Natty:
Report link

It appears that the cuda architecture has been added to the namespace name for thrust objects in order to avoid collisions from shared libraries compiled with different architectures, see section Symbols visibility in: https://github.com/NVIDIA/cccl?tab=readme-ov-file#application-binary-interface-abi https://github.com/NVIDIA/cccl/issues/2737

So not a bug per se, but rather an expected side effect of recent changes to address other issues.

Thanks to https://github.com/jrhemstad and https://forums.developer.nvidia.com/u/Robert_Crovella for the answer.

Reasons:
  • Blacklisted phrase (0.5): Thanks
  • Probably link only (1):
  • No code block (0.5):
  • Self-answer (0.5):
  • Low reputation (1):
Posted by: RichardSmithLab

79169468

Date: 2024-11-08 09:40:09
Score: 1
Natty:
Report link

Just add JsonPropertyOrder attribute to the property of your model which want to order list to it. but it's order number should be -1 to set the first order.

example:

utepublic class Vehicle
{
    [JsonPropertyOrder(-1)]
    public int Id { get; set; }
    public string? Manufacturer { get; set; }
}
Reasons:
  • Low length (0.5):
  • Has code block (-0.5):
  • Low reputation (1):
Posted by: Seyyed Mahdi Seyyed Hosseini

79169452

Date: 2024-11-08 09:32:08
Score: 1.5
Natty:
Report link

I did not find a solution to solving ModuleNotFoundError: No module named 'geonode' and the unhealthy docker container, but after searching through issues and discussions on the GitHub GeoNode repostitory I found a blueprint for installing GeoNode with docker. The blueprint is created by a german GeoNode community and works without raising any errors for me.

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

79169449

Date: 2024-11-08 09:30:07
Score: 1.5
Natty:
Report link

I finally found a solution/workaround for my problem.

I forced the http protocol version to be 1.1

httpRequest.Version = HttpVersion.Version11;

I had tried to set the azure web site to accept http 2.0 but this kept giving me :

The HTTP/2 server sent invalid data on the connection. HTTP/2 error code 'PROTOCOL_ERROR' (0x1). (HttpProtocolError) ---> System.Net.Http.HttpProtocolException: The HTTP/2 server sent invalid data on the connection. HTTP/2 error code 'PROTOCOL_ERROR' (0x1). (HttpProtocolError) at System.Net.Http.Http2Connection.ThrowRequestAborted.

It seems that HttpClient defaults to 2.0 and that is causing issues when calling azure web app internally. I don't know why.

Any further explations would be wellcomed.

Thank you

Reasons:
  • Blacklisted phrase (0.5): Thank you
  • Long answer (-0.5):
  • No code block (0.5):
  • Self-answer (0.5):
  • Low reputation (0.5):
Posted by: Kostas Xagoraris

79169444

Date: 2024-11-08 09:28:07
Score: 0.5
Natty:
Report link

I tried it using the attached workbook and the below code, if worked for me:

Sub test()
   Dim i As Integer
   i = 3
   ActiveSheet.Range("A" & i).Formula = "=COUNTIFS('SpreadsheetA'!J:J,TEST!B" & i & ",'SpreadsheetA'!D:D,"" > ""&Control!C5)"
End Sub

See attached images for the data. Omage 1

Image 2

Image 3

Image 4

Reasons:
  • Whitelisted phrase (-1): worked for me
  • Probably link only (1):
  • Low length (0.5):
  • Has code block (-0.5):
  • Low reputation (0.5):
Posted by: MyExcelDeveloper.com

79169438

Date: 2024-11-08 09:26:06
Score: 3.5
Natty:
Report link

This is correct solution for Certificate and key file in .NET framework.

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

79169436

Date: 2024-11-08 09:25:06
Score: 1.5
Natty:
Report link
    localStorage.setItem('theme', theme);

But if you use SSR cookies for themes, your site won't flash when loading.

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