79148961

Date: 2024-11-01 17:54:52
Score: 6 🚩
Natty: 6
Report link

Have you resolved your issue? I have the same one. Thanks.

Reasons:
  • Blacklisted phrase (0.5): Thanks
  • RegEx Blacklisted phrase (1.5): resolved your issue?
  • Low length (1.5):
  • No code block (0.5):
  • Contains question mark (0.5):
  • Single line (0.5):
  • Low reputation (1):
Posted by: Poiuyu Iops

79148943

Date: 2024-11-01 17:47:50
Score: 2
Natty:
Report link
.featured-tag,
.product-custom-type {
    display: none;
}

Please take a CSS primer: https://developer.mozilla.org/en-US/docs/Learn/CSS/First_steps/Getting_started.

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

79148937

Date: 2024-11-01 17:44:50
Score: 2
Natty:
Report link

Storing the intermediate image in 8-bit or even 16-bit per channel will make you lose way too much precision, maybe 32-bit float will allow you to get a meaningful amount of high frequency detail back, but even that's definitely far from perfect if my math is right.

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

79148936

Date: 2024-11-01 17:44:50
Score: 1
Natty:
Report link

fixed it by setting "SPRING_SECURITY_CONTEXT" to the auth in the session, probably not the cleanest solution but it works.

        SecurityContext securityContext = SecurityContextHolder.getContext();
        securityContext.setAuthentication(authResult);
        HttpSession session = request.getSession(true);
        session.setAttribute("SPRING_SECURITY_CONTEXT", securityContext);
Reasons:
  • Has code block (-0.5):
  • Self-answer (0.5):
  • Low reputation (1):
Posted by: Sili Cat

79148931

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

Try to add @MainActor

view.visualEffect { @MainActor content, proxy in
    content.distortionEffect(
        ShaderLibrary.complexWave(
            .float(startDate.timeIntervalSinceNow),
            .float2(proxy.size),
            .float(0.5),
            .float(8),
            .float(10)
        ),
        maxSampleOffset: CGSize(width: 100, height: 100),
        isEnabled: hasComplexWave
    )
}
Reasons:
  • Has code block (-0.5):
  • User mentioned (1): @MainActor
  • Low reputation (0.5):
Posted by: Anton Marchanka

79148930

Date: 2024-11-01 17:41:49
Score: 1.5
Natty:
Report link

In cell C2 enter a 1 In cell C3 you can enter the formula

=IF(B3=B2,1+C2,1)

in cell D2 enter the formula

=IF(C3=1,C2,"")

then just drag them down to the end. You will have to manually enter the last figure in column D.

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

79148925

Date: 2024-11-01 17:40:49
Score: 1.5
Natty:
Report link

Metaxim's advice is sound. Take it.

I have a similar issue with certain queries although most are exponentially faster than SqlServer. And I have way larger dimensions and facts (facts up to 1 billion rows) so as metaxiom said, it highly depends on how you have it setup and how it aligns with your data.

Sounds like your issue is likely 1) not indexed correctly, 2, not distributed correctly, and 3) need to update stats. And of course like they said DW100c is very small.

For small dimensions I use replicated tables across nodes. For larger dimensions I use clustered indexes on the dimension id. For facts I use clustered columnstores with hash distribution.

Below are 2 queries you need:

  1. Check distribution. I included script below
  2. Update stats. I included script below

-- Hash distribution problems query

select two_part_name, distribution_policy_name, distribution_column, distribution_id, row_count
from dbo.vTableSizes
where two_part_name in
    (
    select two_part_name
    from dbo.vTableSizes
    where row_count > 0
    group by two_part_name
    having (max(row_count * 1.000) - min(row_count * 1.000))/max(row_count * 1.000) >= .10
    )
    and distribution_column is not null
order by two_part_name, row_count;

DECLARE @sql NVARCHAR(MAX) = '';
SELECT @sql += 'UPDATE STATISTICS [' + s.name + '].[' + t.name + '] WITH FULLSCAN; ' + CHAR(13)
FROM sys.tables AS t
JOIN sys.schemas AS s ON t.schema_id = s.schema_id
WHERE t.is_ms_shipped = 0; -- Excludes system tables
EXEC sp_executesql @sql;
Reasons:
  • Long answer (-1):
  • Has code block (-0.5):
  • Me too answer (2.5): I have a similar issue
  • Low reputation (0.5):
Posted by: Gary

79148917

Date: 2024-11-01 17:34:47
Score: 1.5
Natty:
Report link

You know what? Just forget it. I've changed my project from .Net Core to .Net Framework. For one thing, I tried also creating a .Net Core project configured for database connectivity. And that introduced Entity Framework, which is the most obnoxious thing ever. .Net Core, with all of its DI and its nested parentheses constructs, is the most obtuse looking code I've ever seen. And then the documentation stinks, and the incomplete code examples get you nowhere. .Net Core is like evolution in reverse.

Reasons:
  • Long answer (-0.5):
  • No code block (0.5):
  • Contains question mark (0.5):
  • Self-answer (0.5):
  • Single line (0.5):
Posted by: Scott Pendleton

79148913

Date: 2024-11-01 17:33:47
Score: 3.5
Natty:
Report link

Let's reconfigure the json files from Firebase

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

79148906

Date: 2024-11-01 17:32:44
Score: 13 🚩
Natty: 4.5
Report link

How did you resolved your issue? Please share.

Reasons:
  • RegEx Blacklisted phrase (2.5): Please share
  • RegEx Blacklisted phrase (3): did you resolved your
  • RegEx Blacklisted phrase (1.5): resolved your issue?
  • Low length (1.5):
  • No code block (0.5):
  • Ends in question mark (2):
  • Single line (0.5):
  • Starts with a question (0.5): How did you
  • Low reputation (1):
Posted by: Nadir Hussain

79148902

Date: 2024-11-01 17:29:43
Score: 1
Natty:
Report link

This property should work in any element. Looks like the only thing missing is the url enclosed in quotes.

background-image: url("https://assets.onecompiler.app/42tzva7s5/42wnuqh5j/water%20drop.png");
Reasons:
  • Low length (0.5):
  • Has code block (-0.5):
  • Low reputation (1):
Posted by: dqbp

79148900

Date: 2024-11-01 17:28:43
Score: 3
Natty:
Report link

Did you setup the Fernet key in the Airflow configuration file (airflow.cfg) under the [core] section ?

[core]
fernet_key = your_fernet_key

U need to restart Airflow after setting the Fernet key.

Obs: Just new variables will be encrypted.

Reasons:
  • Low length (0.5):
  • No code block (0.5):
  • Contains question mark (0.5):
  • Starts with a question (0.5): Did you
  • Low reputation (1):
Posted by: Guilherme Vargas

79148894

Date: 2024-11-01 17:26:42
Score: 5
Natty:
Report link

display: none; You are talking about this?

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

79148890

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

I worked it out. What I'd been doing, without having said so, was adding a span with class="visually-hidden' (this is with Bootstrap) on it with the details. I moved it into the button's aria-description and that worked fine. The sorting details were spoken in the course of browsing the header row but not included in the column identification while browsing through the data rows.

Reasons:
  • Has code block (-0.5):
  • Self-answer (0.5):
  • Single line (0.5):
  • Low reputation (0.5):
Posted by: Green Grasso Holm

79148879

Date: 2024-11-01 17:19:40
Score: 1
Natty:
Report link

A batch job context holds the contextual data for a job execution. It is available within the scope of a job execution, and is not available outside, e.g., in the client.

You can inject a job context into any of the batch artifacts like ItemReader, ItemProcessor, ItemWriter, batch listeners, etc.

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

79148877

Date: 2024-11-01 17:17:40
Score: 2.5
Natty:
Report link

In JPA Have another issue for SQLRestriction condition generated before where syntax for example

Select * from table1, table2 on table1.id=table2.id2 (deleted=true) where id= ?

That is the problem because this syntax not usefully and database return wrong records.

https://github.com/spring-projects/spring-data-jpa/issues/3363

This issue already have but it closed.

Reasons:
  • Low length (0.5):
  • No code block (0.5):
  • Contains question mark (0.5):
  • Low reputation (1):
Posted by: Erkan RUA

79148872

Date: 2024-11-01 17:15:39
Score: 0.5
Natty:
Report link

For Fabric > 6.0.0 use this:

  fabric.loadSVGFromString(svg).then((result) => {
    canvas.add(...(result.objects.filter((obj) => !!obj)))renderAll();
  });
Reasons:
  • Low length (1):
  • Has code block (-0.5):
Posted by: Vadim

79148871

Date: 2024-11-01 17:15:39
Score: 2
Natty:
Report link

This works with dir [DIR is same as GCI for the most part] as well in various useful formats... (dir $Target).FullName (dir $Target).VersionInfo.FileDescription (dir $Target).VersionInfo.FileVersion

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

79148851

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

None of these worked for me sad face

Reasons:
  • Whitelisted phrase (-1): worked for me
  • Low length (2):
  • No code block (0.5):
  • Single line (0.5):
  • Low reputation (1):
Posted by: ace.nasir

79148839

Date: 2024-11-01 17:03:35
Score: 0.5
Natty:
Report link

I believe the endpoint you're looking for is: GET /repos/{owner}/{repo}/issues/{pull_request_id}/comments. It's a small change from the endpoint to get the comments on specific lines of code: /issues instead of /pulls.

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

79148837

Date: 2024-11-01 17:03:35
Score: 0.5
Natty:
Report link

Problem Analysis:

• The loop condition i < N causes the loop to stop before printing N. • This is an off-by-one error commonly seen in loops when the condition is set incorrectly.

public class PrintNumbers {
public static void printNumbers(int N) {
    for (int i = 1; i <= N; i++) { // Corrected loop condition
        System.out.print(i + " ");
    }
}

public static void main(String[] args) {
    printNumbers(5); // Correct Output: 1 2 3 4 5
}

}

Explanation:

• The condition in the for loop is changed from i < N to i <= N, allowing the loop to include the last number N. • This fixes the off-by-one error and ensures that all numbers from 1 to N are printed as expected.

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

79148813

Date: 2024-11-01 16:52:33
Score: 1
Natty:
Report link

In case anyone else ends up here. Better solution exists now.

Microsoft documentation for list of functions for both JSON and XML - HERE

addProperty - Add a property and its value, or name-value pair, to a JSON object, and return the updated object.

coalesce - Return the first non-null value from one or more parameters.

removeProperty - Remove a property from a JSON object and return the updated object.

setProperty - Set the value for a JSON object's property and return the updated object.

xpath - Check XML for nodes or values that match an XPath (XML Path Language) expression, and return the matching nodes or values.

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

79148805

Date: 2024-11-01 16:47:31
Score: 1
Natty:
Report link

Found the answer, it is easy like this

WITH CAST(sumMap([period], [value]), 'Map(UInt32, Float64)') AS map
select bdate
  , id
  , period
  , map[1] AS period_1
  , map[2] AS period_2
  , map[3] AS period_3
from test_8192590.some_table
group by bdate, id, period
order by bdate, id, period;
Reasons:
  • Low length (0.5):
  • Has code block (-0.5):
  • Self-answer (0.5):
  • Low reputation (0.5):
Posted by: user2459396

79148800

Date: 2024-11-01 16:45:31
Score: 0.5
Natty:
Report link

It turns out that Spring Boot has property placeholder resolution which allows you to write tests like that:

@SpringBootTest(
  webEnvironment = WebEnvironment.RANDOM_PORT,
  properties = {"rest.clients.echo.base-path=${wiremock.server.baseUrl}"}
)
class EchoServiceTest {
...

And you can even concatenate there other strings like this:

properties = {"rest.clients.echo.base-path=${wiremock.server.baseUrl}/something/else"}
Reasons:
  • Has code block (-0.5):
  • Self-answer (0.5):
  • Low reputation (0.5):
Posted by: u4963840

79148794

Date: 2024-11-01 16:43:30
Score: 1.5
Natty:
Report link

I encountered the same problem, building a linux/amd64 image following the official AWS tuto.

I finally succeeded to create a (working) lambda function using the one of the 3 images published in the ECR repro : not the one with the tag mentionned in the "docker push" command, not the one with size 0 but the 3rd one using its hash tag.

I don't know why the "docker push" command generate 3 images in the ECR repo ! and why the image tagged in the "docker push" command is not working...

Reasons:
  • No code block (0.5):
  • Low reputation (1):
Posted by: Jean-Luc Guigné

79148792

Date: 2024-11-01 16:42:27
Score: 8.5 🚩
Natty: 6.5
Report link

Can someone help me too regarding this? When I try to debug it also says that the st-link server is missing and I have to download it. I have an M1 2020 Air, and 1.16.1 version STM32CubeIDE. I'm not sure what's wrong and it doesn't work.

Reasons:
  • Blacklisted phrase (1): help me
  • Blacklisted phrase (1): I have to do
  • RegEx Blacklisted phrase (3): Can someone help me
  • 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 someone help me to
  • Low reputation (1):
Posted by: Henry Epro

79148785

Date: 2024-11-01 16:40:26
Score: 1
Natty:
Report link

I was having the same issue and the reason was, one of my nuget package was referencing Microsoft.Extensions.Configuration.Abstractions Version=8.0.0.0 and I was able to fix the issue by downgrading this nuget package to an older version which used Microsoft.Extensions.Configuration.Abstractions Version=6.0.0.0. Please note that referencing the nuget package which used 7.0.0.0 also did not work.

Reasons:
  • Blacklisted phrase (1): did not work
  • Has code block (-0.5):
  • Single line (0.5):
Posted by: Fakhar Ahmad Rasul

79148782

Date: 2024-11-01 16:39:26
Score: 3.5
Natty:
Report link

Is there already a String array called args that you don't know about? Try reading from args without declaring it.

To me it seems like Dice.main() is not actually the entry point but rather Dice.main() is getting executed by something else and when you are changing it on your file you aren't changing it on the file that executes it.

My guess is maybe if you are lucky then args is already getting declared by the real main method and you can just use it without declaring it yourself.

Typically String args[] is required in Java so I'm guessing the reason it's not required for you is because it's already being declared earlier by the real main method. Try running it assuming that args[] is already being accepted by the system? Or maybe you need to change the part of code that is executing it (which you might not be able to access)?

Reasons:
  • Long answer (-0.5):
  • No code block (0.5):
  • Ends in question mark (2):
  • Starts with a question (0.5): Is there
  • Low reputation (1):
Posted by: qa test

79148762

Date: 2024-11-01 16:34:25
Score: 2.5
Natty:
Report link

To make the video appear after the form submission, hide the video initially with videoSection.style.display = "none". Then, attach a submit event listener to the form to show the video only once the form is successfully submitted.

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

79148754

Date: 2024-11-01 16:30:24
Score: 3.5
Natty:
Report link

Wow, okay, posting this helped me assess where my problems could be. I ended up investigating my root component a bit more, DropdownWithFilter, and it turns out it already has an onRenderOption that's overriding anything I try to do in my implementations of it. To fix this, I'm creating a copy component of DropdownWithFilter, called DropdownWithFilterColumns, with the exact same logic as DropdownWithFilter except that it returns text exactly the way I want it. Thanks for letting me think out loud!

Reasons:
  • Blacklisted phrase (0.5): Thanks
  • RegEx Blacklisted phrase (1): I want
  • Long answer (-0.5):
  • No code block (0.5):
  • Self-answer (0.5):
  • Single line (0.5):
  • Low reputation (1):
Posted by: Arms

79148752

Date: 2024-11-01 16:28:24
Score: 1.5
Natty:
Report link

For me worked:

sudo chown -R username /your/path

example:

sudo chown -R snafix /home/snafix

Set it up by terminal and try creating/saving files again :)

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

79148749

Date: 2024-11-01 16:28:24
Score: 2
Natty:
Report link

Today I found out that when I am using encryption in a way like it is implemented in this example, BadPaddingException can appear when encrypted message is too short - like "test" but is working fine with messages which are like 20 characters long

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

79148744

Date: 2024-11-01 16:26:23
Score: 2.5
Natty:
Report link

GitHub does not support this the AS/400 (aka IBM i, iSeries, i5, etc) out-of-the-box, but a vendor named Eradani has built software package to do exactly this. The product is called iGit (a function of Eradani DevOps) that allows for any Git-Based Tooling (like GitLab, GitHub, BitBucket, AzureDevOps) and also lets you do Pipelines (iBuild) and Deployment (iDeploy). There are plug-ins for RDi and VS Code, and robust PDM/SEU 5250 support for Git commands. The website is www.eradani.com

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

79148743

Date: 2024-11-01 16:26:23
Score: 1
Natty:
Report link

from kivy.app import App from kivy.uix.button import Button

class MyApp(App): def build(self): return Button(text="Hello, Kivy!", on_press=self.on_button_click)

def on_button_click(self, instance):
    instance.text = "Button Pressed!"

if name == 'main': MyApp().run()

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

79148742

Date: 2024-11-01 16:25:23
Score: 3
Natty:
Report link

I was able to resolve the issue in my case, and you might have the same issue. You indirectly mentioned that you have multiple modules. Do you by any chance set the minify flag to true for them, for the library modules?

This was the case with me, and that was the problem. I was able to better isolate the issue, it wasn't about upgrading the Gradle version to "8.9", rather, it was about upgrading the AGP to "8.4.0" and higher (which can also be valid for you since you had started with "8.3.2").

The problem is explained here: https://developer.android.com/build/releases/past-releases/agp-8-4-0-release-notes#library-classes-shrunk

Based on how I understand it with my limited understanding of it, it seems like starting with that version of AGP, when the minify is set to true, it will try to minify the lib module much sooner in the process, as opposed to doing it at the very end. In a way, the app module will have to use a minified version of the lib modules.

Setting "isMinifyEnabled" to false for my library modules, and keeping it to true for my app module did resolve the issue for me. There was even no need to disable full mode for R8.

I think that setting the flags like this is safe, as it is explained for example here (the whole problem is also explained here): https://www.reddit.com/r/androiddev/comments/1e8ke67/agp_84_and_hilt_android_library_modules_in/

or here:

https://www.reddit.com/r/androiddev/comments/xubcff/when_using_proguard_do_i_have_to_set/

Sorry in advance, if this is not the case with you.

Reasons:
  • Long answer (-1):
  • No code block (0.5):
  • Me too answer (2.5): have the same issue
  • Contains question mark (0.5):
  • Low reputation (0.5):
Posted by: rollebonM

79148738

Date: 2024-11-01 16:24:22
Score: 5.5
Natty:
Report link

So, I finally got it working but not in the way I'd like. I added the following to my @media Print to override the shared layout's applied css - note none of the following classes are specifically referenced or created on my page.

body,
header,
footer,
.site-header-flex,
.site-container-main,
.site-nav-container-outer,
.site-nav-container-outer-flex,
.site-nav-container {
    width: 0px !important;
    min-width: 0px !important;
    max-width: 0px !important;
}

FOLLOW-UP QUESTION:

Instead of having to inspect the print and figure out what is affecting it, is there a way to just tell the @media Print to only use a specific style sheet instead of what is being used to render the page (or omit certain style sheets from the print that are being used to render the page)?

Reasons:
  • Blacklisted phrase (1): is there a way
  • Long answer (-0.5):
  • Has code block (-0.5):
  • Ends in question mark (2):
  • User mentioned (1): @media
  • User mentioned (0): @media
  • Self-answer (0.5):
  • Looks like a comment (1):
  • Low reputation (1):
Posted by: dDubs

79148737

Date: 2024-11-01 16:24:22
Score: 1.5
Natty:
Report link

The color seems to be ?androidprv:attr/materialColorSurfaceBright which is a private system color.

But I just found out that the color is equivalent to MaterialTheme.colorScheme.surfaceContainer of androidx.compose.material3.MaterialTheme.

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

79148733

Date: 2024-11-01 16:23:22
Score: 3.5
Natty:
Report link

em, answer by myself. Reimplementing the function by C# and ssh.net can avoid the problem.

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

79148732

Date: 2024-11-01 16:22:19
Score: 8.5 🚩
Natty: 5
Report link

DId you finally solved your problem? keyboardshouldpersist=handled always or whatever looks ignored. Moreover, my textinput is not within a scrollview, and i'm sure there is a better way than wrapping a textinput in a useless scrollview (and even in that case it does not work for me).

Reasons:
  • Blacklisted phrase (1): it does not work for me
  • RegEx Blacklisted phrase (3): DId you finally solved your problem
  • RegEx Blacklisted phrase (1.5): solved your problem?
  • Low length (0.5):
  • No code block (0.5):
  • Contains question mark (0.5):
  • Starts with a question (0.5): DId you
  • Low reputation (1):
Posted by: Nicolas ZARAGOZA

79148730

Date: 2024-11-01 16:21:19
Score: 2
Natty:
Report link

You can find a template to write ray tracer in compute shade rhere enter link description here

For extending it further you can follow this enter link description here

Though it is in OpenCL it is non recursive way you can trace rays with BRDF implementation. It is fairly easy to port OpenCL to Glsl compute shader. You should get following image

enter image description here

Hope this helps.

Reasons:
  • Blacklisted phrase (0.5): enter link description here
  • Whitelisted phrase (-1): Hope this helps
  • Probably link only (1):
  • Low length (0.5):
  • No code block (0.5):
  • Low reputation (0.5):
Posted by: Paritosh Kulkarni

79148726

Date: 2024-11-01 16:19:18
Score: 2
Natty:
Report link

$ sysdig -r trace.scap.gz -c topprocs_net Bytes Process

439.63M /usr/sbin/httpd 422.29M /usr/local/apac 5.27M sshd 2.38M wget 20.81KB httpd 9.94KB httpd 6.40KB perl

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

79148720

Date: 2024-11-01 16:17:17
Score: 3.5
Natty:
Report link

I'm facing the same issue as this makes HAR files useless for me. I'll let you know if I figure out a way around this in Edge or Chrome.

I'm now thinking that I may have to rely on Fiddler from now on. I personally use Fiddler Classic because it's free, but it's also not actively being developed anymore. They also offer their new and subscription-based Fiddler Everywhere.

Anyway, for Fiddler Classic, you can download it here:

https://www.telerik.com/fiddler/fiddler-classic

Once you have it installed, you can configure Fiddler to decrypt HTTPS traffic following their documentation here:

https://docs.telerik.com/fiddler/configure-fiddler/tasks/decrypthttps

The only down-side of Fiddler versus the Developer Tools is that it's not isolated to one browser tab, let alone one application. If you have multiple 'things' like additional browser tabs and applications open (i.e. Outlook, Teams, etc.), you're going to see requests from these other sources peppered into your network trace.

Reasons:
  • Long answer (-0.5):
  • No code block (0.5):
  • Me too answer (2.5): I'm facing the same issue
  • Low reputation (1):
Posted by: getsic

79148719

Date: 2024-11-01 16:16:17
Score: 1.5
Natty:
Report link

I found this old thread which mentioned some other folders that needed creating. After checking with ProcMon to confirm that my machine was also looking for these folders, I created:

C:\Windows\SysWOW64\config\systemprofile\Documents

C:\Windows\SysWOW64\config\systemprofile\AppData\Local\Microsoft\Windows\INetCache

Now my script is working as expected when run non-interactively

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

79148716

Date: 2024-11-01 16:16:17
Score: 1
Natty:
Report link

Meanwhile, I found the reason:
DNS queries are performed using IPv6 only on my machines, ignoring the IPv4 settings which also is activated. In the netcard settings for this protocol, "Automatic" was selected, but in the Extended dialog's DNS tab, a DNS server address was missing on those machines which exposed the problem. After entering a server address, everything works fine now.

Extended IPv6 settings, DNS

Note as a takeaway: The DNS settings for IPv4 apparently don't work anymore, at least when IPv6 is activated.

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

79148712

Date: 2024-11-01 16:14:17
Score: 3.5
Natty:
Report link

You need to add call if you want to return from the mvn.bat file. See: How to execute more than one maven command in bat file?

Reasons:
  • Probably link only (1):
  • Low length (1.5):
  • Has code block (-0.5):
  • Ends in question mark (2):
  • Single line (0.5):
  • High reputation (-1):
Posted by: JohannesB

79148704

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

I'm a bit late at the party, but 4 years later, leancode made an image transformer for transforming assets images to webp. Search on pub. I looked briefly at the source code, it seems the github action is copying the cwebp executable. They communicated with it via dart:ffi. Maybe this can be leveraged in order to create an on demand conversion to webp, not just on your assets. https://github.com/leancodepl/flutter_webp

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

79148700

Date: 2024-11-01 16:11:16
Score: 2
Natty:
Report link

Your host or client machine was configured to the previous cert issued by Entrust. Now the Authorize.net changing its certs to a new issuer Digicert. Follow the help links provided and download the certificate and install on your host or client machine. Otherwise your application will not be able to recognize the new cert and fails to communicate with Authorize.ent api endpoints as soon as they switch cert on their end.

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

79148699

Date: 2024-11-01 16:11:16
Score: 3.5
Natty:
Report link

This has been fixed few months ago, in theory in swig 4.3:

https://github.com/swig/swig/commit/ba9b0a35ab62f0d3cfbb4f7109569d86a00ec53c

Reasons:
  • Probably link only (1):
  • Low length (1.5):
  • No code block (0.5):
  • Low reputation (0.5):
Posted by: w.t

79148698

Date: 2024-11-01 16:10:16
Score: 3
Natty:
Report link

You can get started with Vonage's CAMARA APIs https://developer.vonage.com/en/getting-started-network/concepts/network-apis

With a sandbox account you can get started within a few minutes (you can add your own number phone and do any sort of POC with Number Verification, Sim Swap, Device Location...) https://developer.vonage.com/en/getting-started-network/concepts/sandbox?source=getting-started-network

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

79148696

Date: 2024-11-01 16:09:15
Score: 0.5
Natty:
Report link

In my case, I had a feature branch that had a large file introduced. I'll call it feature-branch-1 (originally branched from master). I was unable to push this branch up to GitHub due to the large file in the history even though it had been deleted.

  1. In feature-branch-1, I deleted the large file & also added it to gitignore, then committed locally.
  2. Created a new branch from master called feature-branch-2
  3. Merged feature-branch-1 INTO feature-branch-2 with the squash commits feature enabled
  4. I was then able to successfully push feature-branch-2 up to GitHub

This was a very simple solution in my case where the large file was introduced in a feature branch that hadn't yet been merged into the primary master branch.

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

79148695

Date: 2024-11-01 16:09:15
Score: 4
Natty:
Report link

https://superuser.com/questions/1503128/link-to-microsoft-outlook-365-webmail-email

I found this answer to my question. This is the only solution that doesn't default send me back to my inbox. It works!

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

79148691

Date: 2024-11-01 16:08:14
Score: 5
Natty:
Report link

Im also blocked by this. Please upvote the issue here https://issuetracker.google.com/issues/376854179

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

79148675

Date: 2024-11-01 16:05:13
Score: 1
Natty:
Report link

const run() {

requestAnimationFrame (run);

lete elens [8];

const ax (Math.cos(3 frm) rad width) / height; (Math.sin(4 frm) rad height) / width;

const ay

e.x + (ax pointer.xe.x) / 10;

e.y+ (ay pointer.ye.y) / 10;

for (let 11; i < N; i++) {

let e= elems[1];

let ep elems[i-1];

(ep.xe.x e.x (Math.cos(a) (1001))/5)/4;

const a Math.atan2(e.yep.y, e.x ep.Ñ…);

e.y + (ep.ye.y (Math.sin(a) (1001))/5)/4;

consts e.use.setAttributeNS(

(1624 (11))/50;

null,

"transfore",

translate($((ep.x + e.x) / 2),$((ep.ye.y) / 2)) rotate($(

(188/ Math.PI) a

1 ) translate(${0},$(0)) scale($(s),$(s))

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

79148664

Date: 2024-11-01 16:02:13
Score: 5.5
Natty:
Report link

Why not use an official selenium image as a base image? https://hub.docker.com/r/selenium/standalone-chromium

FROM selenium/standalone-chromium
Reasons:
  • Probably link only (1):
  • Low length (1.5):
  • Has code block (-0.5):
  • Ends in question mark (2):
  • Starts with a question (0.5): Why not use an of
  • Low reputation (1):
Posted by: Harry

79148648

Date: 2024-11-01 15:57:11
Score: 12
Natty: 7
Report link

Same problem. Has anyone solved a similar problem?

Reasons:
  • Blacklisted phrase (1): anyone solved
  • RegEx Blacklisted phrase (1.5): solved a similar problem?
  • RegEx Blacklisted phrase (3): Has anyone solved
  • RegEx Blacklisted phrase (1): Same problem
  • Low length (1.5):
  • No code block (0.5):
  • Ends in question mark (2):
  • Single line (0.5):
  • Low reputation (1):
Posted by: tranhuuloc2010

79148632

Date: 2024-11-01 15:53:09
Score: 3
Natty:
Report link

For me the problem was just that I had not yet clicked on a Python file in the project..

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

79148630

Date: 2024-11-01 15:52:09
Score: 1.5
Natty:
Report link

You can create an API token manually in your browser and take a look in the network tab. There seems to be a REST API to get, create and delete API tokens.

However, I'm not sure whether the respective endpoints accept an API token as authorisation method. Just give it a try.

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

79148623

Date: 2024-11-01 15:51:09
Score: 1
Natty:
Report link

It is not possible to run pytorch-2.5+ with MPS on MacOS12, as in #133141. PyTorch developers have disabled MacOS 12 support, because too many things are broken in MPS framework on MacOS 12. But even if one rolled-back the change, one would not see any perf benefits/new functionality in MPS support on 2.5 compared to 2.4.

But the message is really confusing, it should have said that MPS is supported starting from 13.0 (they might update the error message soon).

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

79148600

Date: 2024-11-01 15:43:07
Score: 3.5
Natty:
Report link

I tried to use your solutions to get the "LunarLander-v2" Environment working. Sadly now in both cases this error pops up: AssertionError: array([0., 0., 0.]) (<class 'numpy.ndarray'>) invalid

I am just a beginner in python and thought that maybe more or less inputs are needed, or that there is a alternative for the np.array that is working.??

Do you have suggestions?

Reasons:
  • No code block (0.5):
  • Ends in question mark (2):
  • Low reputation (1):
Posted by: Goldenphoenix77 GG

79148596

Date: 2024-11-01 15:43:07
Score: 3.5
Natty:
Report link

Does this solution apply to product links? I can get the product title to appear on two lines, but when a link is generated using the product title, I can't get that to break in the same way.

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

79148595

Date: 2024-11-01 15:43:07
Score: 0.5
Natty:
Report link

Having just run into a performance issue trying to store an array of complex objects (Tiptap editors) in zustand, that when moved out into plain react context was fine, I'd advise avoiding storing anything super large in zustand.

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

79148594

Date: 2024-11-01 15:43:07
Score: 3.5
Natty:
Report link

Seems like it was indeed a bug, looks like a Pull Request is already out for it as well: https://github.com/dotnet/efcore/pull/35029

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

79148593

Date: 2024-11-01 15:43:07
Score: 1.5
Natty:
Report link

This often happens because of casing differences in the file names, so Git gets confused.

In this case just rename the file that causes the confusion. Thus you save yourself from unexpected behavior.

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

79148589

Date: 2024-11-01 15:41:06
Score: 4.5
Natty: 6
Report link

You should follow this guide: https://github.com/binance/binance-futures-connector-python By the way, binance has this announcement: https://www.binance.com/en/support/faq/how-to-create-api-keys-on-binance-360002502072?hl=en You should completed [Verified Plus] for create API.

Reasons:
  • Blacklisted phrase (1): this guide
  • Probably link only (1):
  • Low length (1):
  • No code block (0.5):
  • Low reputation (1):
Posted by: Vĩnh Phúc Nguyễn Nho

79148587

Date: 2024-11-01 15:40:06
Score: 0.5
Natty:
Report link

Based on the suggestion by @dlwh, here's compilable scala 3 code for seeding of breeze DenseMatrix and DenseVector.

import breeze.linalg._
import breeze.stats.distributions._
import org.apache.commons.math3.random.MersenneTwister

object RandomSeedExample {
  def main(args: Array[String]): Unit = {
    val seed = 0
    val randBasis = new RandBasis(new ThreadLocalRandomGenerator(new MersenneTwister(seed))).uniform
    val denseVector = DenseVector.rand(5, randBasis)
    println(denseVector)
    val denseMatrix = DenseMatrix.rand(5, 3, randBasis)
    println(denseMatrix)
  }
}
Reasons:
  • Long answer (-0.5):
  • Has code block (-0.5):
  • User mentioned (1): @dlwh
  • Low reputation (0.5):
Posted by: philwalk

79148586

Date: 2024-11-01 15:40:06
Score: 4
Natty:
Report link

enter image description here

Find the ng.cmd file and the this path to the path variables.

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

79148585

Date: 2024-11-01 15:40:05
Score: 1.5
Natty:
Report link

To solve FLTFirebaseMessaging: An error occurred while calling method Messaging#getToken, errorOrNil => { NSLocalizedFailureReason = "Invalid fetch response, expected 'token' or 'Error' key"; } Change your the firebase package use those firebase_core: 2.11.0

firebase_messaging: 14.2.5

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

79148584

Date: 2024-11-01 15:40:05
Score: 2.5
Natty:
Report link

i was encountering the same problem. Check your environment variables and make sure everything's great there. You can also define the HOST to 0.0.0.0 manually into your environment variables.

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

79148574

Date: 2024-11-01 15:37:04
Score: 2.5
Natty:
Report link

I had to set Max(date) to maxdate to get David's code to work for me in MS SQL Server

SELECT t1.username, t1.date, value FROM MyTable as t1 INNER JOIN (SELECT username, MAX(date) as maxdate FROM MyTable GROUP BY username) as t2 ON t2.username = t1.username AND t2.maxdate = t1.date

Reasons:
  • Low length (0.5):
  • No code block (0.5):
  • Unregistered user (0.5):
  • Low reputation (1):
Posted by: John Kosanovic

79148553

Date: 2024-11-01 15:32:03
Score: 1.5
Natty:
Report link

I don't think there are enough standard .NET functions that were created for this purpose because it is very particular and specific.

You will probably need to manually create a system yourself and make your own functions for it.

What you can do is probably find a database of timezones and/or translations of languages, or create one yourself and just access that in your code.

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

79148534

Date: 2024-11-01 15:25:01
Score: 0.5
Natty:
Report link

Laravel 11: In bootstrap/app.php,

return Application::configure(basePath: dirname(__DIR__))
->withRouting(...)
->withMiddleware(function (Middleware $middleware) {
    $middleware->encryptCookies(except: [
        'cookie-consent',
    ]);
})
Reasons:
  • Low length (0.5):
  • Has code block (-0.5):
  • Low reputation (0.5):
Posted by: Edmunds22

79148533

Date: 2024-11-01 15:25:01
Score: 2
Natty:
Report link

I had to specify the location of the browser :

const browser = await puppeteer.launch({ executablePath: '/usr/bin/chromium' })

Reasons:
  • Low length (1):
  • No code block (0.5):
  • Self-answer (0.5):
Posted by: Jean François Manatane

79148528

Date: 2024-11-01 15:23:00
Score: 1
Natty:
Report link

No, adding id does not solve the current problem. It is because browsers do not allow multiple video playback to prevent sound mixing. However, if you want to play all the videos simultaneously, you can add the mute attribute to the videos.

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

79148520

Date: 2024-11-01 15:22:00
Score: 2
Natty:
Report link

filename = r"c:\path\to\file"

the problem is ":" this one. idk why but ftp dont wanna this. change ":" something else it will be work. when you create a new file name. make sure the file name dosent contain ":" or special chars like that.

Reasons:
  • Low length (0.5):
  • No code block (0.5):
  • Low reputation (1):
Posted by: Baran KarataÅŸ

79148518

Date: 2024-11-01 15:22:00
Score: 0.5
Natty:
Report link

A lightweight alternative to Simon Boison's example:

branch="$(git rev-parse --abbrev-ref HEAD)"

if [ $branch = development ]; then
    echo "development-script"

elif [ $branch = staging ]; then
    echo "staging-script"

elif [ $branch = production ]; then
    echo "production-script"

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

79148487

Date: 2024-11-01 15:11:57
Score: 2
Natty:
Report link

The same issue happened to me. I just had to run brew repair, a command suggested in the error message. It fixed the problem while still using a VPN.

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

79148472

Date: 2024-11-01 15:07:56
Score: 3.5
Natty:
Report link

Please try installing the latest Visual Studio version 17.11.X, along with all the necessary components (SDK, etc.), and it should work!

Keep in mind that LTSC isn’t always the best option.

Cheers,

Reasons:
  • Blacklisted phrase (1): Cheers
  • Low length (0.5):
  • No code block (0.5):
  • Unregistered user (0.5):
  • Low reputation (1):
Posted by: a friend

79148465

Date: 2024-11-01 15:05:55
Score: 4.5
Natty: 3.5
Report link

I have this problem too. Emails from [email protected] go to trash and I can't figure out how to change that. Too bad it wasn't answered.

Reasons:
  • Blacklisted phrase (1): I have this problem
  • Low length (1):
  • No code block (0.5):
  • Unregistered user (0.5):
  • Single line (0.5):
  • Low reputation (1):
Posted by: Lesa

79148464

Date: 2024-11-01 15:04:54
Score: 2
Natty:
Report link

SOLVED!

I was able to download Fastchunking 0.0.3 manually from here and run

python.exe .\setup.py build
python.exe .\setup.py install

using Python 3.10.

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

79148450

Date: 2024-11-01 15:01:54
Score: 1.5
Natty:
Report link

This works for me : body { zoom: 0.8; }

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

79148438

Date: 2024-11-01 14:58:53
Score: 2
Natty:
Report link

Installing the psycopg2 pip package into a venv on Arch Linux, arch package postgresql-libs is required

To install the package:

pacman -S postgresql-libs
Reasons:
  • Low length (1):
  • Has code block (-0.5):
  • Unregistered user (0.5):
  • Low reputation (1):
Posted by: MrVantage

79148432

Date: 2024-11-01 14:56:52
Score: 4
Natty:
Report link

Type ! in git bash terminal in vscode.

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

79148430

Date: 2024-11-01 14:55:51
Score: 1
Natty:
Report link

The question seems a little unclear but essentially I think your problem has a solution that can be reduced to the below points.

  1. Graph-Level Prediction Needed: Current setup makes node-level predictions, but task requires a single prediction per graph.

  2. Loss Calculation Misalignment: BCEWithLogitsLoss applied to all nodes; should focus on the "correct" node or aggregate node embeddings.

  3. Label-Output Mismatch: Ensure truth tensor in train() and val() matches intended output for only the "correct" node

  4. Rank Calculation Issue in test(): Only rank the "correct" node or relevant nodes, not all nodes.

  5. Pooling Layer for Aggregation: Use a global pooling layer (e.g., global_mean_pool) to create a graph-level embedding.

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

79148425

Date: 2024-11-01 14:53:51
Score: 3
Natty:
Report link

For me, it's a config issue in the sshd_config file. I had ChrootDirectory "E:" but when running sshd.exe in PowerShell, i got an invalid quote message for this line number. It does not like the ending slash. I had to change "E:" to "E:"

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

79148424

Date: 2024-11-01 14:53:51
Score: 1
Natty:
Report link

You can disable all progress bars before the training loop by calling the following method:

tf.keras.utils.disable_interactive_logging()

After the training loop, enable progress bars by calling the enable method as:

tf.keras.utils.enable_interactive_logging()
Reasons:
  • Low length (0.5):
  • Has code block (-0.5):
  • Low reputation (1):
Posted by: vahid keiani

79148421

Date: 2024-11-01 14:52:50
Score: 1.5
Natty:
Report link

I've figured out a solution. The problem was in the new version of Microsoft.EntityFrameworkCore (version 9). When I set it to version 8.0.10 across my projects, migrations started working again.

<PackageReference Include="Microsoft.EntityFrameworkCore" Version="8.0.10" />
Reasons:
  • Low length (0.5):
  • Has code block (-0.5):
  • Self-answer (0.5):
  • Low reputation (1):
Posted by: adam440

79148414

Date: 2024-11-01 14:50:50
Score: 1
Natty:
Report link
if [[ -z "$last_line" ]]

This -z test will check if the variable is completely empty. It depends how you define empty though.

To do not empty you can just cancel this or add an else.

if [[ ! -z "$last_line" ]]
Reasons:
  • Low length (0.5):
  • Has code block (-0.5):
  • Low reputation (1):
Posted by: qa test

79148411

Date: 2024-11-01 14:49:50
Score: 2.5
Natty:
Report link

in your .dev change this Theme.of(context).textTheme.body1 to Theme.of(context).textTheme.bodyLarge

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

79148409

Date: 2024-11-01 14:49:50
Score: 1.5
Natty:
Report link

Yes, I try all the above methods but not working for my website. But after research found a solution.

Steps

Login to your WordPress admin > Appearance > Customization > then enter the below code and save it.

       a: hover { 
text-decoration: underline;
}

Note- if you are using any kind of cache plugin then clear all the cache.

Reasons:
  • Blacklisted phrase (1): but not working
  • Has code block (-0.5):
  • Low reputation (1):
Posted by: Ixoric

79148407

Date: 2024-11-01 14:48:50
Score: 0.5
Natty:
Report link

From GeoPandas 0.9.0 I would use geopandas.GeoSeries.from_wkt

import geopandas as gpd


df = gpd.read_csv('myFile.csv')
df.head()
    BoroName    geometry
0   Brooklyn    MULTIPOLYGON (((-73.97604935657381 40.63127590...
1   Queens      MULTIPOLYGON (((-73.80379022888098 40.77561011...
2   Queens      MULTIPOLYGON (((-73.8610972440186 40.763664477...
3   Queens      MULTIPOLYGON (((-73.75725671509139 40.71813860...
4   Manhattan   MULTIPOLYGON (((-73.94607828674226 40.82126321...


gdf = gpd.GeoDataFrame(
    geometry=gpd.GeoSeries.from_wkt(df['geometry'], crs=4326), data=df
)
Reasons:
  • Probably link only (1):
  • Long answer (-0.5):
  • Has code block (-0.5):
  • Low reputation (0.5):
Posted by: gman

79148403

Date: 2024-11-01 14:46:49
Score: 3.5
Natty:
Report link

Thank you for your reply, but the problem was related to how to collect and post data and ajax parameters from the html page to the handler in asp.net razor pages. The full answer is available at this link

Reasons:
  • Blacklisted phrase (0.5): Thank you
  • Blacklisted phrase (1): this link
  • Low length (0.5):
  • No code block (0.5):
  • Self-answer (0.5):
  • Low reputation (0.5):
Posted by: Ashkan

79148400

Date: 2024-11-01 14:45:48
Score: 0.5
Natty:
Report link

What I understand from your question is somehow template is not detecting changes or it maybe that you are not changing the correct index.

You can try these:

Reasons:
  • Long answer (-0.5):
  • Has code block (-0.5):
  • Starts with a question (0.5): What I
  • Low reputation (1):
Posted by: Kalyan Ayyagari

79148398

Date: 2024-11-01 14:45:48
Score: 1
Natty:
Report link

Had same issue with me, You just need to activate the virtual environment try doing this- #windows- ".\venv\Scripts\activate" #macOS/Linux- "source venv/bin/activate"

Now install flask once again pip install flask

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

79148395

Date: 2024-11-01 14:44:48
Score: 0.5
Natty:
Report link

This behavior is described in cxxopts docs. Proper way is

./test -m=false

Boolean option argument cannot be separated by a space, because the option needs to be used without an argument to specify true value for a flag, making its argument indistinguishable from positional argument.

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

79148384

Date: 2024-11-01 14:40:47
Score: 1
Natty:
Report link

All things being equal, my solution has consisted of:

use polars_arrow::legacy::prelude::*;

in addition to an amendment of Cargo.toml:

[dependencies]
polars-arrow = "0.44.2"
polars-core = "0.44.2"
polars-lazy = "0.44.2"
Reasons:
  • Low length (0.5):
  • Has code block (-0.5):
  • Self-answer (0.5):
  • Low reputation (0.5):
Posted by: dark.vador

79148381

Date: 2024-11-01 14:39:47
Score: 1
Natty:
Report link

You can achieve this otherwise by calling the php rand function straight away from your blade file rather than defining js method to do this. It would be as shown below;

@if(rand(0,1) === 1)
   @include('components.Hero1') 
@else
   @include('components.Hero2')
@endif
Reasons:
  • Low length (0.5):
  • Has code block (-0.5):
  • Low reputation (1):
Posted by: Olumuyiwa

79148361

Date: 2024-11-01 14:34:45
Score: 12
Natty: 7
Report link

could you please explain how did you resolve this issue?

Reasons:
  • RegEx Blacklisted phrase (2.5): could you please explain how
  • RegEx Blacklisted phrase (3): did you resolve this
  • RegEx Blacklisted phrase (1.5): resolve this issue?
  • Low length (1.5):
  • No code block (0.5):
  • Ends in question mark (2):
  • Single line (0.5):
  • Low reputation (0.5):
Posted by: BigD

79148359

Date: 2024-11-01 14:34:45
Score: 0.5
Natty:
Report link

Running audio recording features within Telegram Mini Apps can be tricky because the web view environment of the in-app browser has certain limitations, including restrictions on some APIs and potential variations in behavior across devices. Here are a few troubleshooting and workaround suggestions:

  1. Check for User Permission Issues Some in-app browsers can handle permissions differently. It might be that the Telegram web view does not fully support the getUserMedia permissions request, causing issues with MediaRecorder. Try explicitly handling the permission request like so:

    try { const stream = await navigator.mediaDevices.getUserMedia({ audio: true }); } catch (error) { console.error("Microphone permission denied:", error); }

  2. Review App Constraints App may have restrictions on background processes or continuous audio access, especially on iOS where permissions are more restrictive in in-app browsers.

  3. Implement Fallback Handling In some cases, audio handling in the web view may be unsupported. You could try detecting if the web view supports the required

    if (!navigator.mediaDevices || !navigator.mediaDevices.getUserMedia) { alert("Audio recording is not supported in this environment."); }

  4. Use audio/mp4 Instead of audio/wav Telegram web view might be better optimized for MP4 audio rather than WAV. To change the Blob type:

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

79148358

Date: 2024-11-01 14:34:45
Score: 2
Natty:
Report link

Use the below configuration can automatically refresh health statuses after default time of seconds.

builder.Services.AddHealthChecksUI().AddInMemoryStorage(); app.MapHealthChecksUI(config => config.UIPath = "/health-ui");

Reasons:
  • Low length (0.5):
  • No code block (0.5):
  • Low reputation (1):
Posted by: Ayyappa Kumar Tunuguntla

79148356

Date: 2024-11-01 14:34:45
Score: 5.5
Natty:
Report link

I have not found any solution for this. Instead, I just implemented retry logic.

Reasons:
  • Blacklisted phrase (1.5): any solution
  • Low length (1.5):
  • No code block (0.5):
  • Self-answer (0.5):
  • Single line (0.5):
  • Low reputation (1):
Posted by: ivsheva