79149304

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

updating the latest version of Cocopoads fixed the issue:

 sudo gem update --system
 sudo gem install cocoapods

PS: using latest version of React Native 0.76.1

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

79149299

Date: 2024-11-01 20:14:37
Score: 2
Natty:
Report link

There is no firmware for that STM32. For the F0 series we have the STM32F091 as reference.

FYI: the F046 hasn't enough flash & RAM to run nanoFramework.

Reasons:
  • Low length (1):
  • No code block (0.5):
  • Low reputation (0.5):
Posted by: José Simões

79149297

Date: 2024-11-01 20:13:37
Score: 2
Natty:
Report link

It's not clear which version of oneAPI you are using here, but it does look quite old as far as I can tell. Earlier this this patch was merged which should allow for your use-case to work. I don't have a multi-GPU setup here to be able to test this but downloading the new release of oneAPI will hopefully fix your problem!

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

79149289

Date: 2024-11-01 20:11:37
Score: 1.5
Natty:
Report link

C++ Solution : Append_And_Delete | _______ Link

string appendAndDelete(string s, string t, int k) 
{
    int n = s.size(), m = t.size(), i = 0 , j = 0; ;
    if (n + m <= k)  return "Yes";
     
    while(i<n and j<m and s[i]==t[j]) i++,j++; 
    
    
    int gap = (n - i) + (m - j);
    
    if (gap <= k and (k - gap) % 2 == 0)  
       return "Yes";

    return "No";
}

#anmamun0 #C++ #Cpp

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

79149286

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

Did you try, using pip3 install pylint? (I would add this as a comment, but I haven't enough points).

I had no problems installing it specifying the most recent version of pip.

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

79149278

Date: 2024-11-01 20:06:35
Score: 1
Natty:
Report link

handlers are sophisticated callbacks, they have a uniform argument sequence, certain type of return value and same "handling" rules for wide range of events

callback is usually unique for every functor that defines a callback. you may easily confirm that by looking at documentation.

handlers allow to make code "flatter", like if one writes "christmas trees" with callbacks, same code becomes a take-off stripe/line with handlers.

enter image description here

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

79149263

Date: 2024-11-01 19:58:33
Score: 0.5
Natty:
Report link

from Github - Reverting a pull request

  1. Under your repository name, click Pull requests.

pull request

  1. In the "Pull Requests" list, click the pull request you'd like to revert.
  2. Near the bottom of the pull request, click Revert. If the Revert option isn't displayed, you'll need to ask the repository administrator for write permissions.

revert pull request button

  1. Merge the resulting pull request. For more information, see "Merging a pull request."
Reasons:
  • Probably link only (1):
  • No code block (0.5):
  • High reputation (-1):
Posted by: Gastón Schabas

79149259

Date: 2024-11-01 19:58:33
Score: 3
Natty:
Report link

I had to make sure that the IAM user also had all the necessary read/write permissons. The permissions the documentation showed only allowed write

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

79149255

Date: 2024-11-01 19:57:33
Score: 3
Natty:
Report link

Thank you MOFI. this worked. Here is the answer, for who needs it in the future:

echo !currPdfName!| %SystemRoot%\System32\findstr.exe /I /R "^[12][09][01234-9][01234-9][01][01234-9][0123][01234-9][01234-9][01234-9]*[01234-9][01234-9]*_[01234-9].pdf$"

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

79149246

Date: 2024-11-01 19:52:29
Score: 13.5 🚩
Natty: 5.5
Report link

Did you manage to solve it? I have the same problem :'( But my Windows 11. I found this link and would like to know if these steps actually work: https://developer.vuforia.com/getting-started/getting-started-vuforia-engine-windows-10-development

Reasons:
  • Blacklisted phrase (1): I have the same problem
  • Blacklisted phrase (1): this link
  • RegEx Blacklisted phrase (3): Did you manage to solve it
  • RegEx Blacklisted phrase (1.5): solve it?
  • Probably link only (1):
  • Low length (1):
  • No code block (0.5):
  • Me too answer (2.5): I have the same problem
  • Contains question mark (0.5):
  • Starts with a question (0.5): Did you
  • Low reputation (1):
Posted by: debora

79149245

Date: 2024-11-01 19:52:29
Score: 1
Natty:
Report link

Issue: "405 Method Not Allowed" error when using PUT or DELETE in an ASP.NET Core application hosted on IIS.

Removing WebDAV ensures that IIS doesn’t block specific HTTP methods, allowing your application to manage them directly.

<modules>
        <remove name="WebDAVModule" />
</modules>

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

79149241

Date: 2024-11-01 19:51:29
Score: 0.5
Natty:
Report link

From another thread, I got this solution to do a recursive selectinload:

  child_select = selectinload(Parent.child)
  for _ in range(<depth>):
    child_select = child_select.selectinload(
      child_select.nodes)

  statement = select(Parent).filter(
    Parent.id == parent_id).options(child_select)
  result = await session.execute(statement)
  parent = result.scalars().first()
Reasons:
  • Has code block (-0.5):
  • Self-answer (0.5):
  • Low reputation (0.5):
Posted by: Jon Hayden

79149229

Date: 2024-11-01 19:46:27
Score: 1.5
Natty:
Report link

andrew's answer helped me find what worked in my csproj file.

I just needed to remove <Private>False</Private> in the package references in my csproj file and it all started working.

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

79149227

Date: 2024-11-01 19:45:27
Score: 1
Natty:
Report link

I can't think of any popular functions or libraries that support the functionality you're searching for out of the box, unfortunately.

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

79149198

Date: 2024-11-01 19:36:25
Score: 2.5
Natty:
Report link

Write a function Take t_new = mod(t,time_period) And write the function giving outputs for t_new from 0 to time_period.

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

79149189

Date: 2024-11-01 19:34:24
Score: 3
Natty:
Report link

Looking at your code, I can see that you created new class called names instead of new variable class_names. Please re-check for typos.

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

79149188

Date: 2024-11-01 19:34:24
Score: 2.5
Natty:
Report link

I updated the flutter version to 3.24.4 and updated the android studio ladyBug. After that, I found the same issue. fortunately, I followed every step described here and could rerun the projects.

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

79149186

Date: 2024-11-01 19:33:23
Score: 2.5
Natty:
Report link

Solved by changing next-auth version on beta like that:

npm i next-auth@beta
Reasons:
  • Low length (1.5):
  • Has code block (-0.5):
  • Self-answer (0.5):
  • Low reputation (1):
Posted by: Bohdan Romanovich

79149183

Date: 2024-11-01 19:32:23
Score: 1
Natty:
Report link

I always use font-family:Verdana on this item and it works for me.

Reasons:
  • Whitelisted phrase (-1): works for me
  • Low length (1.5):
  • Has code block (-0.5):
  • Single line (0.5):
  • Low reputation (0.5):
Posted by: Pedro Góes

79149182

Date: 2024-11-01 19:32:23
Score: 3
Natty:
Report link

The solution was, that I had to reinstall VS Code. I moved from the Flatpak version I was using before to the yum repository described on the official VS Code docs, where R is now recognized in the terminal. So it was probably related to the reduced permissions due to the Flatpak sandboxing.

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

79149178

Date: 2024-11-01 19:30:23
Score: 0.5
Natty:
Report link

First, make sure you've set up storage in Termux:

~$ termux-setup-storage

Then, open a Termux session and move main to the home directory in Termux:

~$ mv storage/shared/main ./

Now run main:

~$ ./main
Reasons:
  • Low length (0.5):
  • Has code block (-0.5):
  • Low reputation (0.5):
Posted by: leoperbo

79149173

Date: 2024-11-01 19:27:20
Score: 6 🚩
Natty:
Report link

Have you resolved above error, Kindly let me know back, I have same error. I you know how to resolve let me know back.

Reasons:
  • RegEx Blacklisted phrase (1): I have same error
  • Low length (1):
  • No code block (0.5):
  • Me too answer (2.5): I have same error
  • Low reputation (1):
Posted by: Abeera Malik

79149161

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

Wonder if people are still looking for something that works for abi.encode vs abi.encodePacked

I have done a detailed answer in Case 3. https://ethereum.stackexchange.com/a/166536/144566

TLDR, You can check the code out at https://go.dev/play/p/V3artUBQMUe I have tried to structure it in a way folks using ethers are encoding. And you can just start using it as any function

For abi.encodePacked, you just need to append the bytes.

For abi.encode, you do what OP has answered or you need to do what I have done in the go-playground link, basically create a arguments object that matches the data you need to encode, and pass the arguments to the arguments.Pack(...) method

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

79149158

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

update python version to the same as it require then download installer again this one is work for me

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

79149139

Date: 2024-11-01 19:06:14
Score: 1
Natty:
Report link

What I found was my per-app VPN connection was not allowing traffic from maps.apple.com.

By adding maps.apple.com to the VPN blacklist on the MDM, it allowed me to split tunnel the maps data.

Reasons:
  • Low length (0.5):
  • Has code block (-0.5):
  • Self-answer (0.5):
  • Starts with a question (0.5): What I
Posted by: trilogy

79149113

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

If you would like to increase the SSL handshake timeout of the HttpClient, you can create a bean and add it in @Configuration annotated class and then autowire(inject) this bean where required in your Service.

@Bean
public WebClient webClient() {
    Http11SslContextSpec http11SslContextSpec = Http11SslContextSpec.forClient();

    HttpClient client = HttpClient.create()
                          .secure(spec -> spec.sslContext(http11SslContextSpec)                                       
                          .handshakeTimeout(Duration.ofSeconds(30));

    WebClient client = WebClient.builder()
            .baseUrl(SOME_BASE_API_URL)
            .clientConnector(new ReactorClientHttpConnector(httpClient))
            .build();

    return client;
}

Reference: https://projectreactor.io/docs/netty/release/reference/index.html#ssl-tls-timeout

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

79149110

Date: 2024-11-01 18:56:11
Score: 0.5
Natty:
Report link

I've encountered with the same issue and found the fix.

According to this comment on github the Iat claim requires to be set using epoch time. In your code we can see it is set using standard string format, which worked fine in previous versions.

Change this line:

new Claim(JwtRegisteredClaimNames.Iat, DateTime.UtcNow.ToString())

To this:

new Claim(JwtRegisteredClaimNames.Iat, new DateTimeOffset(DateTime.UtcNow).ToUnixTimeSeconds().ToString(), ClaimValueTypes.Integer64)

But as @Shaik Abid Hussain said, adding options.UseSecurityTokenValidators = true to your .AddAuthentication() should work, because it reverts to the legacy token validation behavior from .net 6 and 7, but it didn't worked for me.

Reasons:
  • Whitelisted phrase (-1): worked for me
  • Long answer (-0.5):
  • Has code block (-0.5):
  • Unregistered user (0.5):
  • User mentioned (1): @Shaik
  • Low reputation (1):
Posted by: Ondrej Konarik

79149106

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

Check CI/CD Configuration in GitHub

Go to Settings of your GitHub repository, then Branches > Branch protection rules. Check if there are any required status checks not actually reported by your CI/CD-Looper in this instance. Make sure Looper is correctly integrated with GitHub to report the status back. Many times, the integration is misconfigured and GitHub waits indefinitely.

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

79149096

Date: 2024-11-01 18:49:10
Score: 3.5
Natty:
Report link

Turns out they moved it into the filter icon: enter image description here

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

79149094

Date: 2024-11-01 18:49:10
Score: 0.5
Natty:
Report link

i have this problem. the documentation said this body parameter

{ "adOrderNo": "string" }

i tried to send by query but i recived an error "An unknown error occurred while processing the request."

$timestamp =  (time()+1)*1000;
$params['timestamp'] =$timestamp;
$params['adOrderNo'] ="22685410866598416384";   
$query = http_build_query($params, '', '&',);
$sign=hash_hmac('SHA256', $query, $secret);   


    $ch = curl_init();

    curl_setopt($ch, CURLOPT_URL, "https://api.binance.com/sapi/v1/c2c/orderMatch/getUserOrderDetail");
    curl_setopt($ch, CURLOPT_RETURNTRANSFER, TRUE);
    curl_setopt($ch, CURLOPT_HEADER, FALSE);
    curl_setopt($ch, CURLOPT_FOLLOWLOCATION, 1);
    curl_setopt($ch, CURLOPT_POST, TRUE);
    curl_setopt($ch, CURLOPT_POSTFIELDS, $query."&signature=" .$sign);
    curl_setopt($ch, CURLOPT_HTTPHEADER, array("Content-Type: application/x-www-form-urlencoded","X-MBX-APIKEY: ".$api_key));
     
    
    
    $result = curl_exec($ch);
    $result = json_decode($result, true);
    
    echo '<pre>';
    var_dump($result);
    echo '</pre>';
    
  curl_close($ch);
Reasons:
  • Blacklisted phrase (1): i have this problem
  • Long answer (-1):
  • Has code block (-0.5):
  • Low reputation (1):
Posted by: Miguel Díaz Medina

79149087

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

Alternative markup (works in @code {...} as well)

@{
    // you can do this as well
    RenderFragment s = @<span>hello</span>;

    @s

    // or this
    @: this is a string as well, multiline not possible
    @: well kinda, but each new line needs "this" prefix then
    @: @s world.
}
Reasons:
  • Low length (0.5):
  • Has code block (-0.5):
  • User mentioned (1): @code
  • Low reputation (1):
Posted by: skyslide22

79149079

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

Late Reply, But from my experience (the hard way), dividing the projected z by w (after projection) is a technique that non-linearly scales depth, providing greater precision near the camera while compressing depth further away. This approach helps mitigate issues like z-fighting at close ranges, where it tends to be more noticeable. Alternatively, if needed, you could create a custom projection matrix that doesn’t require this post-projection division (for z), resulting in a linearly distributed depth between the near and far planes.

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

79149075

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

Public Function StringNum(Rng As Range) As String Dim tmpStr As String

tmpStr = ""

For Each cell In Rng

tmpStr = tmpStr & cell.Value & ","

Next

StringNum = Mid(tmpStr, 1, Len(tmpStr) - 1)

End Function

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

79149072

Date: 2024-11-01 18:43:08
Score: 1.5
Natty:
Report link

Need fast, automated translations for your i18n files? Try translo-cli.

https://github.com/AcutusLabs/translo-cli

This open-source CLI tool uses ChatGPT to translate your primary language file into multiple target languages, with options to skip specific terms and auto-sort results.

Reasons:
  • Low length (0.5):
  • No code block (0.5):
  • Contains question mark (0.5):
Posted by: Davide Carpini

79149068

Date: 2024-11-01 18:41:08
Score: 1.5
Natty:
Report link

Need fast, automated translations for your i18n files? Try translo-cli.

https://github.com/AcutusLabs/translo-cli

This open-source CLI tool uses ChatGPT to translate your primary language file into multiple target languages, with options to skip specific terms and auto-sort results.

Reasons:
  • Low length (0.5):
  • No code block (0.5):
  • Contains question mark (0.5):
Posted by: Davide Carpini

79149061

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

The issue was that the body not appearing was somehow assigned multiple materials. I fixed this by uploading the file to 3dviewer.net, sorting by materials, then looking through the meshes that had those materials applied. I was able to manually edit the .obj to remove the duplicated portions.

Reasons:
  • Whitelisted phrase (-2): I fixed
  • Low length (0.5):
  • No code block (0.5):
  • Self-answer (0.5):
  • Single line (0.5):
  • Low reputation (1):
Posted by: Trevor

79149055

Date: 2024-11-01 18:36:06
Score: 3
Natty:
Report link

There's a new plugin working great, compatible also with dynamic tag and Flexible Content (coming with Font Awesome and Elementor Custom Icon Sets): https://acfelementorcustomicons.com/

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

79149054

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

You can disable inline suggestions from IntelliCode:

  1. Go to File > Preferences > Settings.
  2. Search for IntelliCode and find the settings labeled Editor: Inline Suggestions.
  3. Uncheck Editor:Inline Suggestions to disable it.

Some C# extensions, like the C# Dev Kit, might also have settings for IntelliSense or AI-based suggestions

  1. Go to Settings and search for C# Dev Kit or just C#.
  2. Look for any settings that control IntelliSense or AI-based suggestions, and adjust them as needed.
Reasons:
  • No code block (0.5):
  • Low reputation (0.5):
Posted by: Ashkan Afsharpour

79149048

Date: 2024-11-01 18:34:05
Score: 3.5
Natty:
Report link

There is now an action called Rescan Available Python Modules and Packages that does this

https://youtrack.jetbrains.com/issue/PY-21659/Make-it-easier-to-reload-interpreter-sources-and-skeletons#focus=Comments-27-4114386.0-0

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

79149042

Date: 2024-11-01 18:31:05
Score: 5
Natty:
Report link

look this video!!

https://www.bing.com/videos/riverview/relatedvideo?pglt=43&q=django.db.utils.OperationalError%3a+(2026%2c+%27TLS%2fSSL+error%3a+SSL+is+required%2c+but+the+server+does+not+support+it%27)+(mk)&cvid=1f3f94aff2814a4b861579b07f8bce4d&gs_lcrp=EgRlZGdlKgYIABBFGDkyBggAEEUYOdIBBzg0OWowajGoAgCwAgA&PC=U531&ru=%2fsearch%3fpglt%3d43%26q%3ddjango.db.utils.OperationalError%253A%2b(2026%252C%2b%2527TLS%252FSSL%2berror%253A%2bSSL%2bis%2brequired%252C%2bbut%2bthe%2bserver%2bdoes%2bnot%2bsupport%2bit%2527)%2b(mk)%26cvid%3d1f3f94aff2814a4b861579b07f8bce4d%26gs_lcrp%3dEgRlZGdlKgYIABBFGDkyBggAEEUYOdIBBzg0OWowajGoAgCwAgA%26FORM%3dANNTA1%26PC%3dU531&mmscn=vwrc&mid=960A91184DB2CBB0056F960A91184DB2CBB0056F&FORM=WRVORC

or you can only install mysqlclient 2.2.4 version

Reasons:
  • Blacklisted phrase (1): this video
  • Probably link only (1):
  • Low length (1.5):
  • No code block (0.5):
  • Low reputation (1):
Posted by: Dao Dao

79149040

Date: 2024-11-01 18:30:04
Score: 5.5
Natty:
Report link

The following answer has a script that serves the requested purpose: https://stackoverflow.com/a/77652870/16858784

Reasons:
  • Blacklisted phrase (1): stackoverflow
  • Probably link only (1):
  • Low length (1.5):
  • No code block (0.5):
  • Self-answer (0.5):
  • Single line (0.5):
  • Low reputation (0.5):
Posted by: Divinor

79149037

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

I had the same problem. Does your Mac have Intel processor or Apple Silicon (M series)?

If you have Intel processor, you don't need to do anything. PostgreSQL should work fine, since it's built for Intel processors.

If you have Apple Silicon, e.g. M3, you need to install Rosetta. You can check this Reddit link if you need help.

Reasons:
  • Whitelisted phrase (-1): I had the same
  • No code block (0.5):
  • Contains question mark (0.5):
  • Low reputation (1):
Posted by: Phil

79149036

Date: 2024-11-01 18:27:03
Score: 2
Natty:
Report link

to answer the question, @suppress is equivalent to @hide.

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

79149024

Date: 2024-11-01 18:22:02
Score: 0.5
Natty:
Report link

Just for the record, there's also blackfriday-tool command line utility, which utilizes blackfriday, a Go markdown processor, and looks a bit smarter (for example, understands what to replace with HTML character entities, etc). Being a cross-platform single binary with no dependencies (even no Perl) is also handy sometimes.

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

79149016

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

As advised in this document, custom domain names are still not supported for API Gateway. The best way for now to customize the domain of your gateway is to configure a load balancer then direct the request to the gateway.dev domain of your deployed API.

You can also consider searching for an existing feature request similar to this issue you encountered and Star it. If you don't see any matching issue or feature request, you can create one.

Reasons:
  • Blacklisted phrase (1): this document
  • No code block (0.5):
  • Low reputation (0.5):
Posted by: ralphyjade

79149012

Date: 2024-11-01 18:16:00
Score: 4
Natty:
Report link

I have similar problem on Samsung S6 tablet with Android 13. I wrote an app some time ago, recently I made a change, the app works OK with Android simulator on my PC, but when I try to debug it on Samsung S6 tablet with Android 13, I am getting a black screen, but somehow screen responds to my touch. So to investigate more, I let Flutter to create simple default app - again it works OK on the Android simulator, but a black screen on the tablet, which somehow responds to my touch.

BTW -The tablet has the most current Google Play service app: ver 24.43.36

zb

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

79148994

Date: 2024-11-01 18:11:59
Score: 3
Natty:
Report link

@pavlo-sobchuk's comments helped me identify the issue and solve it by a simple application of useShallow() like this: const chatMessages = useChatStore(useShallow((state) => state.getMessages(channel?.id)));

Reasons:
  • Low length (0.5):
  • Has code block (-0.5):
  • User mentioned (1): @pavlo-sobchuk's
  • Self-answer (0.5):
  • Single line (0.5):
  • Looks like a comment (1):
Posted by: ajmurmann

79148989

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

I was faced with inserting a texarea into the cell, and it increased as I entered text. I tried it in different ways. As a result, I made the cell itself . The React showed an error without the suppressContentEditableWarning={true} property. But it works in chrome and firefox as needed. Also, the onChange event does not work. Used the onInput={handleInputChange} event. And since there is no value in , I took event.target.textContent. I don't know how safe and correct this is. Therefore, you do all this under your own responsibility.

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

79148985

Date: 2024-11-01 18:07:58
Score: 0.5
Natty:
Report link

I agree with Mikael's answer that you should try to make your expression as concise as possible. I have an example of your real data shape, that combines linear functions and a constant function.

import numpy as np
import matplotlib.pyplot as plt
from scipy.optimize import curve_fit

# Define step function
def step_func(x, a, c, f1, f2):
    result = []
    for xi in x:
        if xi >= 0 and xi < f1:
            result.append(a * xi)
        elif xi >= f1 and xi < f2:
            result.append(a * f1)
        elif xi >= f2:
            result.append(c * xi + a * f1 - f2 * c)
        else:
            result.append(0)
    return np.asarray(result)

# Generating some demo data
x_data = np.linspace(0, 10, 100)
y_data = step_func(x_data, 2, 1, 3, 7) + np.random.normal(0, 0.5, x_data.size)  # 添加噪声

# Fitting function
def fitting_func(x, a, c, f1, f2):
    return step_func(x, a, c, f1, f2)

# Fitting for data
popt, pcov = curve_fit(fitting_func, x_data, y_data, p0=[1, -1, 4, 6])

# Obtain fitting parameters
a_fit, c_fit, f1_fit, f2_fit = popt
print(f'Fitting param: a={a_fit}, c={c_fit}, f1={f1_fit}, f2={f2_fit}')

# Generat fitting results
y_fit = fitting_func(x_data, *popt)

# Plot
plt.scatter(x_data, y_data, label='Data', s=10)
plt.plot(x_data, y_fit, color='red', label='Fitted')
plt.vlines([f1_fit, f2_fit], ymin = min(x_data), ymax = max(x_data) )
# plt.xlim(0,16)
# plt.ylim(0,1)
plt.legend()
plt.xlabel('x')
plt.ylabel('y')
plt.title('Step func fitting')
plt.show()

The above returns:

Fitting param: a=1.9532567200579396, c=1.085588494015425, f1=3.084102835100397, f2=7.1628504872999095

enter image description here

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

79148978

Date: 2024-11-01 18:02:56
Score: 0.5
Natty:
Report link

Tmux is a client server architecture. Whenever you create a new session/windows/pane, the server allocates a new external virtual/terminal to that element just like is has been manually started from elsewhere. This means that each tmux has its own stdin/stdout that notwithstandign you started each session with a popen call have nothing to do with the endpoints of the pipe. Those endpoint are uniquely related to the "tmux client" whose command is consumed immediately.

Nonetheless, you may: 1) send key-sequences to the windows/panes you created through the send-key comamand; 2) collect and receive output from "manually started" (with send-keys) panes-processes using sort of handmade IPC (named pipes, tcpip,...).

Remember that being children-process of different virtual-terminals, each pane/windows will run a different process whose code can be a clone of your program or a second external program. There is no way to have a multhtreaded program handling many tmux-items unless you do not write a dumb I/O hub-tranceiver process for each of them. Otherwise if you want to use a single multi-threaded process and simply need to split the screen in parts, curses library has windows that may serve your scope.

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

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