79508808

Date: 2025-03-14 10:46:12
Score: 4
Natty:
Report link

I guess I'll just do a backup and restore then.

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

79508796

Date: 2025-03-14 10:43:11
Score: 2
Natty:
Report link

I don´t know what is contained in your HPV_subtypes object, but if it is the tibble that can be created from the code below, then you´re passing a vector to the d argument in graph_from_data_frame . Instead you need to pass a dataframe with two columns (the first two in your dataframe), usually named from and to, which specify the association between your components in the dataframe. The remaining columns are regarded as edge attributes, if the vertices argument is NULL , which is the default. Have a look at the example from the ?graph_from_data_frame help page.

What do you want to achieve with this code? is it just for visualization, or do you want to use this graph for computation purposes?

Reasons:
  • Long answer (-0.5):
  • Has code block (-0.5):
  • Ends in question mark (2):
  • Low reputation (1):
Posted by: ChickenTartR

79508795

Date: 2025-03-14 10:43:11
Score: 1
Natty:
Report link

Try to Debugging with Developer Tools:

  1. Open Developer Tools: Right-click on the page, select "Inspect" or press F12 on your keyboard.
  2. Use the "Elements" Tab: Check the structure of the page. Look for any unwanted divs, containers, or elements that are creating the background or unnecessary padding/margins.
  3. Check Styles in the "Styles" Tab: You can also see which CSS properties are being applied to certain elements. Look for padding, margins, or background color that could be coming from an unexpected source.
Reasons:
  • Long answer (-0.5):
  • No code block (0.5):
  • Low reputation (1):
Posted by: Anto Navis

79508791

Date: 2025-03-14 10:41:11
Score: 0.5
Natty:
Report link

Wow thank you very much @Topaco for such a detailed answer - I tried it and it worked perfectly.

To answer the key derivation part of my own question, here's a faster performing version of the same key derivation. (Testing both the one you suggested Topaco (with the modifications you suggested) and this one, this was about 3x faster (I guess because it uses OpenSSL's deprecated MD5 functions which I read somewhere are faster performing than the new EVP functions).

char keyandiv[144];
unsigned char key[128];
unsigned char iv[16];
unsigned char digest[16];
int countingsize;
MD5_CTX ctx;
while (countingsize < 144 ) {
    MD5_Init(&ctx5);

    if (countingsize > 0) {
    MD5_Update(&ctx, digest, sizeof(digest));
    }
    MD5_Update(&ctx, password, sizeof(password));
    MD5_Update(&ctx, (unsigned char*)salt, sizeof(salt));
    MD5_Final(digest, &ctx5);   

    for (int j = 1; j < 10000; j++) {
        MD5_Init(&ctx);
    MD5_Update(&ctx, digest, sizeof(digest));
    MD5_Final(digest, &ctx);
    }

    memcpy(keyandiv + countingsize, digest, sizeof(digest));
    countingsize += sizeof(digest);
}

strncpy((char*) &key, keyandiv, 128);
for(int i5=128; i5<144; i5++){
    iv[i5-128] = keyandiv[i5];
}
Reasons:
  • Blacklisted phrase (0.5): thank you
  • Whitelisted phrase (-1): it worked
  • Long answer (-1):
  • Has code block (-0.5):
  • User mentioned (1): @Topaco
  • Self-answer (0.5):
  • Low reputation (1):
Posted by: singlethread

79508787

Date: 2025-03-14 10:40:10
Score: 7 🚩
Natty:
Report link

Any resolution? I have the same issue. For me I can't docker pull anything also, e.g. docker pull postgres.

Reasons:
  • Blacklisted phrase (1): I have the same issue
  • Low length (1):
  • No code block (0.5):
  • Me too answer (2.5): I have the same issue
  • Contains question mark (0.5):
  • Single line (0.5):
  • Low reputation (1):
Posted by: Yasser Ansari

79508768

Date: 2025-03-14 10:30:07
Score: 11 🚩
Natty: 6.5
Report link

Did you find solution? I have the same problem.

Reasons:
  • Blacklisted phrase (1): I have the same problem
  • RegEx Blacklisted phrase (3): Did you find solution
  • Low length (1.5):
  • No code block (0.5):
  • Me too answer (2.5): I have the same problem
  • Contains question mark (0.5):
  • Single line (0.5):
  • Starts with a question (0.5): Did you find solution
  • Low reputation (1):
Posted by: Michał Kostrzewa

79508756

Date: 2025-03-14 10:25:05
Score: 1
Natty:
Report link

You may use multitail utility

multitail -l "command1" -l "command2"

It spits screen and show output in different views

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

79508754

Date: 2025-03-14 10:24:05
Score: 1
Natty:
Report link

It's back to normal now for me, I rolled back to a previous commit with the Firebase App Hosting interface, it worked, and triggered a new rollout from my branch, it worked as well.

Reasons:
  • Whitelisted phrase (-1): it worked
  • Low length (0.5):
  • No code block (0.5):
  • Single line (0.5):
  • Low reputation (0.5):
Posted by: lordofmax

79508753

Date: 2025-03-14 10:24:05
Score: 4.5
Natty: 5
Report link

Generic HTTP(S)/JSON Connector and https://botium.atlassian.net/wiki/spaces/BOTIUM/pages/38502401/Writing+own+connector this both pages do not exist

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

79508751

Date: 2025-03-14 10:23:05
Score: 1
Natty:
Report link

I recently encountered a requirement to encrypt and decrypt messages in my project. After some research, I found a way to achieve this using @metamask/eth-sig-util. Below is the approach I used ( this is only available for Metamask as only Metamask is allowing encryption/decryption until now ).

Encryption
To encrypt the message, I used the encrypt function from @metamask/eth-sig-util:

import { encrypt } from "@metamask/eth-sig-util";

const encrypted = encrypt({
 publicKey: encryptionPublicKey,
 data: inputMessage, // The message to encrypt
 version: "x25519-xsalsa20-poly1305",
});

const encryptedString =
 "0x" + Buffer.from(JSON.stringify(encrypted)).toString("hex");

Decryption
To decrypt the encrypted message, I used eth_decrypt provided by MetaMask:

const decrypted = await window.ethereum.request({
method: "eth_decrypt",
params: [encryptedData, address],
});

This approach worked seamlessly in my project. Hope this helps someone facing a similar issue! 🚀

Let me know if you have any questions.

Reasons:
  • Whitelisted phrase (-1): Hope this helps
  • Long answer (-1):
  • Has code block (-0.5):
  • Me too answer (2.5): facing a similar issue
  • Low reputation (1):
Posted by: Fayk

79508743

Date: 2025-03-14 10:19:03
Score: 1.5
Natty:
Report link

CloudFront still expects CachedMethods when using ForwardedValues. Although the AWS SDK v2 marks it as deprecated, u must explicitly set it when ForwardedValues is defined.I think u should modify your newBehavior struct by adding the CachedMethods field under ForwardedValues

Reasons:
  • Low length (0.5):
  • Has code block (-0.5):
  • Single line (0.5):
  • Low reputation (1):
Posted by: Nguyễn Minh Chiến

79508742

Date: 2025-03-14 10:18:03
Score: 2
Natty:
Report link

I was facing the same issue and based on trial an error I found out that updating the deploymentMethod to "zipDeploy" worked.

For some reason using "runFromPackage" or even "auto" both slots points to the same deployed package.

Reasons:
  • Low length (0.5):
  • No code block (0.5):
  • Low reputation (1):
Posted by: Otávio Azevedo

79508740

Date: 2025-03-14 10:18:03
Score: 0.5
Natty:
Report link

After trying :

find /var/www/html -type d -exec chmod 755 {} \; to give permissions for folders

find /var/www/html -type f -exec chmod 644 {} \; to give permissions for files

What did it for me was this command :

sudo chown -R www-data:www-data /var/www/html

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

79508736

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

The problem is still there (Xcode 16.2, MacOS 15.3.2). As far as I can tell, it occurs when the same custom font is both distributed in the catalyst app and also installed on Mac. The app runs on under Mac Catalyst from Xcode, but the generated app will not open on Mac. A workaround is to disable the custom font on Mac in Font Book (or remove it)

I have reported as FB16864964

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

79508734

Date: 2025-03-14 10:16:02
Score: 4
Natty:
Report link

https://www.npmjs.com/package/react-to-print React-to-print will work for it install and follow guide, happy coding!

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

79508729

Date: 2025-03-14 10:15:02
Score: 2.5
Natty:
Report link
  1. Download the latest protobuf version from https://github.com/protocolbuffers/protobuf/releases

  2. search for runtime_version.py within the download

  3. copy that file into the folder given by the error message (...Lib\site-packages\google\protobuf)

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

79508720

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

I think it could be due to accumulated stale connections. My suggestions are:

1, Adjusting the maximum pool size would also help.

2, Closing established connections when your app shutsdown so they can be returned back to the pool. Check if you forgot that.

3, As the answer above says, adjusting the settings for connection timeout, and socket timeout and maxidletime might also fix the issue.

You can find the docs here, check it out.

Reasons:
  • Blacklisted phrase (0.5): check it out
  • No code block (0.5):
  • Low reputation (1):
Posted by: Nathnael Dereje

79508716

Date: 2025-03-14 10:12:01
Score: 3.5
Natty:
Report link

the result is great! if you are using amd cpus, try it!

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

79508711

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

You can also want to use a function with two arguments: name and item. In this case mapply() is your friend:
score <- list(name1 = 1, name2 = 2)
res <- mapply(names(score), score, FUN=function(nm, it) it*nchar(nm))

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

79508710

Date: 2025-03-14 10:09:00
Score: 2
Natty:
Report link

SELECT top 1 CONCAT(P.FNAME, ' ', P.SNAME, ' ', COUNT(E.EPI_NO)) AS Info FROM EPISODES E

JOIN PRESENTERS P ON E.PRES_ID = P.PRES_ID

GROUP BY P.PRES_ID, P.FNAME, P.SNAME

ORDER BY COUNT(E.EPI_NO) DESC

This gives the fname and lname of the Presenter who has done the max number of episodes.

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

79508705

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

@Ruikai Feng, you are absolutely right! I cannot believe I have used such a naive, faulty approach :-(. I have added a simple Microsoft.Playwright test to verify the erroneous behavior. After that, I have refactored the CustomAuthenticationStateProvider to Implement the IAuthenticationStateProvider directly and use HttpContext to obtain the custom request header:

public class CustomAuthenticationHandler : IAuthenticationHandler 
{
  public const string SchemeName = "CustomAuthenticationScheme"; 
  private const string UserNameHeaderName = "X-Claim-UserName";
  
  private HttpContext? _httpContext;
  
  public CustomAuthenticationHandler()
  {
  }
  
  public Task<AuthenticateResult> AuthenticateAsync()
  {
    if (this._httpContext is null)
    {
      return Task.FromResult(AuthenticateResult.Fail("No HttpContext"));
    }
    if (!this._httpContext.Request.Headers.TryGetValue(UserNameHeaderName, out var userName) || (userName.Count == 0))
    {
      return Task.FromResult(AuthenticateResult.Fail("No user name found in the request headers."));
    }
    return Task.FromResult(AuthenticateResult.Success(new AuthenticationTicket(CreateClaimsPrincipal(userName.ToString()), SchemeName)));
  }
  // Code omitted for clarity
  public Task InitializeAsync(AuthenticationScheme scheme, HttpContext context)
  {
    this._httpContext = context;
    return Task.CompletedTask;
  }
  
  private ClaimsPrincipal CreateClaimsPrincipal(string userName = "DEFAULT")
  {
    var claims = new[] { new Claim(ClaimTypes.Name, userName) };
    var identity = new ClaimsIdentity(claims, SchemeName);
    return new ClaimsPrincipal(identity);
  }
}

Register the provider with a custom scheme in the DI container:

// Add our custom authentication scheme and handler for request headers-based authentication..
  builder.Services.AddAuthentication(options =>
  {
    options.AddScheme<CustomAuthenticationHandler>(
      name: CustomAuthenticationHandler.SchemeName, 
      displayName: CustomAuthenticationHandler.SchemeName);
  });

I hope that this is finally the correct way to do the authentication based on trusted request headers. I would really like to hear your opinion.

Reasons:
  • Blacklisted phrase (0.5): I cannot
  • Long answer (-1):
  • Has code block (-0.5):
  • User mentioned (1): @Ruikai
  • Self-answer (0.5):
  • Low reputation (0.5):
Posted by: Palo Mraz

79508699

Date: 2025-03-14 10:02:59
Score: 1
Natty:
Report link

You can achieve this in VS Code by updating the settings:

Go to Settings and set "window.titleBarStyle" to "native".

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

79508696

Date: 2025-03-14 09:59:58
Score: 1.5
Natty:
Report link

I found a good explanation of why those messages are failing. Hope it helps.
Explanation

Reasons:
  • Whitelisted phrase (-1): Hope it helps
  • Low length (1.5):
  • No code block (0.5):
  • Low reputation (0.5):
Posted by: Jaime

79508694

Date: 2025-03-14 09:59:58
Score: 1
Natty:
Report link

The issue arises because HashRouter uses # for routing, while Spotify authentication response also appends the access token after #, causing a conflict. When Spotify redirects back, the token gets mixed with the routing, making it difficult to extract. A workaround is to manually parse the URL fragment in JavaScript using window.location.href.split("#")1 to extract the token separately. Alternatively, consider using BrowserRouter and deploying your app on Vercel or Netlify, which support proper SPA routing. If you're interested in Spotify-related solutions, including accessing Spotify Premium features, you might find Spotifine.com helpful. It provides insights and downloads for enhancing your Spotify experience.

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

79508688

Date: 2025-03-14 09:57:58
Score: 3.5
Natty:
Report link

delete android studio pls worst IDE ever

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

79508685

Date: 2025-03-14 09:56:58
Score: 1.5
Natty:
Report link

I had a similar issue. I can select add docker-compose but I get the error "An error occured while sending request".

I had updated Microsoft.VisualStudio.Azure.Containers.Tools.Targets to newst version. I think it might be because I upgraded to .NET 9

Reasons:
  • RegEx Blacklisted phrase (1): I get the error
  • Low length (0.5):
  • Has code block (-0.5):
  • Low reputation (0.5):
Posted by: Michael Skirda

79508681

Date: 2025-03-14 09:55:57
Score: 3
Natty:
Report link

strong password create

Download Simontok VPN https://si-montok.pro/

Reasons:
  • Low length (1.5):
  • No code block (0.5):
  • Low reputation (1):
Posted by: Simontok APK

79508677

Date: 2025-03-14 09:55:57
Score: 3
Natty:
Report link

You could just use https://mvnpm.org/ (free) and just put the dependency you want in the pom!

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

79508666

Date: 2025-03-14 09:51:56
Score: 1.5
Natty:
Report link

So the only way you can a create a secure string that can be used on multiple machines is to use a key when you create the password.

On the first machine run the following to make the secure string

$Key = (3,4,2,3,56,34,254,192,1,1,2,23,42,54,33,233,1,34,2,7,6,5,35,43)

read-host -assecurestring | convertfrom-securestring -key $Key | out-file C:\Scripts\test\securestring_movable.txt

type in the password at the prompt

then copy the secure string file onto a another machine and run

$Key = (3,4,2,3,56,34,254,192,1,1,2,23,42,54,33,233,1,34,2,7,6,5,35,43)

$password = cat C:\Scripts\test\securestring_movable.txt | ConvertTo-SecureString -Key $Key

In my use case only the secure string file lives on the remote machine. I then use Zoho's Desktop Central or Heimdal to run the script remotely. That way the key and the secure string are not on the same machine.

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

79508660

Date: 2025-03-14 09:49:56
Score: 4.5
Natty: 5
Report link

Stakater Reloader supports this now: https://github.com/stakater/Reloader/pull/808

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

79508656

Date: 2025-03-14 09:47:55
Score: 0.5
Natty:
Report link

How about selecting the right url dynamically within your application. Sample say.

export const getApiUrl = () => {
  if (typeof window === 'undefined') {
    // Server
    return process.env.SERVER_PYTHON_API;
  } else {
    // Client
    return process.env.NEXT_PUBLIC_PYTHON_API;
  }
};

Then when making API calls, use the function to get the correct URL. Sample like

const fetchData = async () => {
  const apiUrl = getApiUrl();
  const response = await fetch(`${apiUrl}/your-endpoint`);
  const data = await response.json();
  return data;
};

With this you can work with both URL's. And update docker compose env with both url

 environment:
      - NEXT_PUBLIC_PYTHON_API=http://localhost:8000
      - SERVER_PYTHON_API=http://server:8000
Reasons:
  • Long answer (-0.5):
  • Has code block (-0.5):
  • Starts with a question (0.5): How
  • Low reputation (1):
Posted by: Tobi Akintunlese

79508655

Date: 2025-03-14 09:47:55
Score: 0.5
Natty:
Report link

I got the answer.

In the bpy code at last I am doing:

const finalCode = `${userCode}\n\nfor obj in bpy.context.scene.objects:\n    obj.select_set(True)\nbpy.ops.wm.usd_export(filepath="/workspace/${outputName}", export_textures=True, export_materials=True, export_animation=True)`

this exports in Universal Scene Description(USD) and save in a file(/workspace/outputName). Since ${tempDir}:/workspace, which is why the file is stored in ${tempDir}/${outputName}

I could give the output to user now.

Solved!

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

79508651

Date: 2025-03-14 09:45:55
Score: 0.5
Natty:
Report link

In graph2vec using networkx, the label and feature should be numerical for the purpose of training. You did not use the right structure so it won't find the graphs

G.add_node(0, label = 1, feature=0.5)
G.add_node(1, label = 2, feature=1.2)
G.add_node(2, label = 3, feature=0.8)
Reasons:
  • Low length (0.5):
  • Has code block (-0.5):
  • Low reputation (0.5):
Posted by: Coco Q.

79508648

Date: 2025-03-14 09:44:54
Score: 4.5
Natty: 4
Report link

You can try the CANoe DLT Add-On to parse DLT messages: https://www.vector.com/int/en/download/canoe-add-on-for-autosar-diagnostic-log-and-trace-dlt-2-7-2/

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

79508639

Date: 2025-03-14 09:41:53
Score: 5
Natty: 5
Report link

Here is a lib that provide a @Transactional annotation for nestjs and drizzle (and others ORM) : https://papooch.github.io/nestjs-cls/plugins/available-plugins/transactional/drizzle-orm-adapter

Reasons:
  • Probably link only (1):
  • Low length (1):
  • No code block (0.5):
  • User mentioned (1): @Transactional
  • Single line (0.5):
  • Low reputation (1):
Posted by: web cedric

79508637

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

Hey I was also having the same video/issue

The auth is being exported from @clerk/nextjs/server Updated doc on auth()and it is asynchronous function

use this while importing it

import { auth } from "@clerk/nextjs/server"

and

const page = async () => {

const { userId } = await auth(); ... }

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

79508630

Date: 2025-03-14 09:35:52
Score: 1.5
Natty:
Report link

Use command line arg ”--user-data-dir“ to run chrome as many physically separated instances as you want.

e.g.

"C:\Program Files (x86)\Google\Chrome\Application\chrome.exe" --user-data-dir=d:\chrome-profile\test

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

79508627

Date: 2025-03-14 09:34:52
Score: 2
Natty:
Report link

Initialize error: Evaluation failed: TypeError: Cannot read properties of undefined (reading 'default') at puppeteer_evaluation_script:5:95

"whatsapp-web.js": version updated from "1.23.0" to "1.26.0", It solved my problem.

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

79508607

Date: 2025-03-14 09:26:50
Score: 2.5
Natty:
Report link

Late answer but I had the problem now and solved it now with none of the proposed solutions.

Though I agree with @axiac about conditionally using a trait depending on its existence, I had a similar problem of conditional use of traits (based on other conditions).

class_alias() is your friend here.

https://stackoverflow.com/a/79508550/3872061

Reasons:
  • Blacklisted phrase (1): stackoverflow
  • Low length (0.5):
  • Has code block (-0.5):
  • User mentioned (1): @axiac
  • Low reputation (0.5):
Posted by: fpierrat

79508606

Date: 2025-03-14 09:26:50
Score: 1
Natty:
Report link

You need to do the setting to remove that behavior first, that you can find at

Settings > Tools > Actions on Save

Uncheck the Reformat code , you can pick some file types to apply this or not.

Reasons:
  • Low length (0.5):
  • No code block (0.5):
Posted by: Dhana D.

79508595

Date: 2025-03-14 09:24:49
Score: 2
Natty:
Report link

I had a similar issue on PhpStorm 2023.3.8

Turned out that I've marked the directory as excluded. When I removed the exclusion the option to run the file as PHP was visible again.

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

79508593

Date: 2025-03-14 09:24:48
Score: 9 🚩
Natty: 5.5
Report link

I have the same problem as you, have you solved it?

Reasons:
  • Blacklisted phrase (1): I have the same problem
  • Blacklisted phrase (2): have you solved it
  • Low length (1.5):
  • No code block (0.5):
  • Me too answer (2.5): I have the same problem
  • Single line (0.5):
  • Low reputation (1):
Posted by: Flec

79508590

Date: 2025-03-14 09:23:48
Score: 3
Natty:
Report link

After hours of debugging, I came across this comment in github, which solves my problem. I hope those who face this issue can also look into this comment, which will be helpful, thank you! https://github.com/facebook/react/issues/11538#issuecomment-390386520

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: Selvakumar Sekar

79508582

Date: 2025-03-14 09:21:48
Score: 1
Natty:
Report link

Remove all the dlls from your app and install the following:

For more details, you can refer to this forum post.

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

79508559

Date: 2025-03-14 09:11:46
Score: 0.5
Natty:
Report link

I created a library for generating presigned URLs for S3 objects: aws-simple-sign.

It works well with Cognitect's aws-api library, as it can reuse the same client (credentials).

Additionally, it supports Babashka, where the AWS Java SDK isn't available.

Tested with both AWS and MinIO, but it should work with any S3-compatible provider.

Reasons:
  • Contains signature (1):
  • Has code block (-0.5):
Posted by: Jacob

79508543

Date: 2025-03-14 09:02:44
Score: 8.5 🚩
Natty: 5.5
Report link

Sorry, bro, I'm sorry I can't answer your question, but I actually want to ask you one, if that's OK. I'm finishing my studies in computer science and my thesis involves integrating BPEL orchestration with blockchain and smart-contracts. I'm having an enormous difficulty in being able to run BPEL somewhere. No modern IDE supports it natively any more and above all, I can't even configure Apache ODE on Tomcat, as it requires too old a version of Java. I read that you are using BPEL, could you tell me how you did it? How do I create a BPEL development environment?

Reasons:
  • Blacklisted phrase (1): How do I
  • RegEx Blacklisted phrase (2.5): could you tell me how you
  • RegEx Blacklisted phrase (0.5): sorry I can't
  • Long answer (-0.5):
  • No code block (0.5):
  • Ends in question mark (2):
  • Single line (0.5):
  • Looks like a comment (1):
  • Low reputation (1):
Posted by: Fonz Za

79508540

Date: 2025-03-14 09:01:43
Score: 2.5
Natty:
Report link

Laravel does not provide a direct money column type.
I think using decimal is the better option, but if u really need the money type then use raw SQL

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

79508536

Date: 2025-03-14 08:58:42
Score: 2
Natty:
Report link

I recently encountered an issue with Podman Desktop on my Apple Silicon MacBook, where the application failed to initialize properly. After some troubleshooting, I found a solution that might help others facing the same problem.

Problem Description

When launching Podman Desktop, the console displayed an error message indicating that the initialization failed. The specific error was related to permission issues, and the application did not start correctly.

Solution Steps

  1. Open Terminal
    Launch the Terminal application on your MacBook.

  2. Run Podman Desktop with Elevated Permissions
    Execute the following command to start Podman Desktop with sudo privileges:

    sudo /Applications/Podman\ Desktop.app/Contents/MacOS/Podman\ Desktop
    

    This command allows the application to initialize with the necessary permissions.

  3. Allow Initialization to Complete
    Keep the Terminal window open and let Podman Desktop complete its initialization process. This step is crucial as it ensures that all required directories and configurations are set up correctly.

  4. Exit and Restart Podman Desktop
    Once the initialization is complete, close the Terminal window and exit Podman Desktop. Then, restart the application normally (either from the Applications folder or via Spotlight).

Reasons:
  • Long answer (-1):
  • Has code block (-0.5):
  • Me too answer (2.5): facing the same problem
  • Low reputation (1):
Posted by: user29974548

79508527

Date: 2025-03-14 08:51:41
Score: 0.5
Natty:
Report link

If you use Quasar, there is openURL function:

import { openURL } from 'quasar'

openURL(
  'http://...',
  undefined,
  {
    target: '_blank'
  }
)

Docs:

  1. https://quasar.dev/quasar-utils/other-utils/#openurl
  2. https://developer.mozilla.org/en-US/docs/Web/API/Window/open#target
Reasons:
  • Probably link only (1):
  • Low length (1):
  • Has code block (-0.5):
  • High reputation (-1):
Posted by: Eugene Gr. Philippov

79508521

Date: 2025-03-14 08:49:41
Score: 2
Natty:
Report link

I also developed an application that listens to SMS. I did a lot of research but I couldn't solve this with Flutter. And I did it with Kotlin. If the application is going to be open all the time, you need to get permission from the user to ignore battery optimization. Don't forget to get permission for SMS too. (These may be sensitive permissions) If you want to review it, you can look here ->> https://github.com/dcicek/read_sms

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

79508507

Date: 2025-03-14 08:44:39
Score: 0.5
Natty:
Report link

to sort files by last modification time you can try :

find . -type f -printf "\n%TF-%TT %p" | sort

to sort by reverse order and to remove the prefix you can try :

find . -type f -printf "\n%TF-%TT %p" | sort -r | cut -d " " -f 2

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

79508499

Date: 2025-03-14 08:42:39
Score: 0.5
Natty:
Report link

I'm using Python 3.13 and ran into the same problem. I found out about the library pytubefix, which basically is a working version of pytube. I stumbled upon it randomly while checking out this github repository.

Try installing it using pythom -m pip install pytubefix, import it in your program and it should work just fine.

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

79508490

Date: 2025-03-14 08:38:38
Score: 4
Natty:
Report link

Using the @Embedded annotation will make it more troublesome to upgrade the database, and you should also pay attention to where it is referenced.

Reasons:
  • Low length (1):
  • No code block (0.5):
  • User mentioned (1): @Embedded
  • Single line (0.5):
  • Low reputation (1):
Posted by: Taotao Xue

79508486

Date: 2025-03-14 08:38:38
Score: 2.5
Natty:
Report link

This happens because of the cross-domain, I also faced this problem in my project, and I couldn't resolve it so I served my front-end from the back-end. And deployed as a single domain now it will work.

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

79508483

Date: 2025-03-14 08:36:37
Score: 2.5
Natty:
Report link

I solved this issue by adding '%M2_HOME%\bin' as a system variable. Refer How to fix maven error in jenkins on windows: ‘mvn’ is not recognized as an internal or external command

Reasons:
  • Whitelisted phrase (-2): I solved
  • Probably link only (1):
  • Low length (1.5):
  • No code block (0.5):
  • Single line (0.5):
  • Low reputation (1):
Posted by: Chamali Vishmani

79508481

Date: 2025-03-14 08:35:37
Score: 0.5
Natty:
Report link

I guess this issue is resolved in the first comment. Putting it here in steps.

Set GOPATH and GOROOT paths in your environment (system variables)

GOPATH will be %USERPROFILES%\go , GOROOT is C:\Program Files\go

Add Path values for these two by appending the \bin folder.

GOROOT is the place of Go installation files

GOPATH is the Workspace for your projects and dependencies. This is where go stores all installed artifacts/dependency like maven .m2 repo in local. Contains your Go source code (src/), compiled binaries (bin/), dependencies (pkg/).

Apply the same analogy for mac. Restart the ide, it should work.

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

79508477

Date: 2025-03-14 08:32:36
Score: 0.5
Natty:
Report link

I had the same problem so I find your post.I don't know if you still need help,I found the problem.
The situation is that google make the Service Account to be a real google account,so it makes the progress becomes other account try to add file to your google account.Then I create a folder and set folder's sharing to anyone can edit. And I can finally add file.

Hope this can help you! sorry English is not my native language,my typing could look wierd :(

Reasons:
  • Blacklisted phrase (1): :(
  • Whitelisted phrase (-1): Hope this can help
  • Whitelisted phrase (-1): I had the same
  • No code block (0.5):
  • Low reputation (1):
Posted by: user29974478

79508474

Date: 2025-03-14 08:30:36
Score: 3.5
Natty:
Report link

enter image description here

I have created the extension to browse and revert file to any commit. It's non-intrusive as have memory about your current edits and will change file content only once you like what you see.

2 modes available:
- Full file changes view
- Diff view

enter image description hereenter image description here

https://marketplace.visualstudio.com/items?itemName=noma4i.git-flashback

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

79508473

Date: 2025-03-14 08:29:36
Score: 3
Natty:
Report link

You cannot edit the scope for AWS Managed IdC applications. That can only be done for customer managed Idc applications

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

79508461

Date: 2025-03-14 08:22:34
Score: 0.5
Natty:
Report link

Though it's an older thread, wanted to share my findings. For me it was the combination of Kevin Doyon's answer, and using the MouseEnter event instead of MouseHover.

protected override void OnMouseEnter(EventArgs eventargs)
{
    toolTipError.SetToolTip(this, "Hello");
    toolTipError.Active = true;
}

protected override void OnMouseLeave(EventArgs eventargs)
{
    toolTipError.SetToolTip(this, null);
    toolTipError.Active = false;
}

I also preferred using method SetToolTip over Show. With SetToolTip the tooltip is shown at the expected position, with Show I needed to provide an offset (position determined using PointToClient(Cursor.Position)).

Reasons:
  • Blacklisted phrase (0.5): I need
  • Long answer (-0.5):
  • Has code block (-0.5):
  • Low reputation (1):
Posted by: Binary Thoughts

79508458

Date: 2025-03-14 08:22:34
Score: 3
Natty:
Report link

You could just use https://mvnpm.org/ (free) and just put the dependency you want in the pom!

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

79508455

Date: 2025-03-14 08:20:34
Score: 1
Natty:
Report link

I’ve worked on a similar challenge and implemented an app called iTraqqar: Find My TV, which is designed for Google TV and Android TV to help users track their TV’s location and enhance security.

To achieve this, I used the Google Geolocation API, which allows for approximate location tracking based on network data. Since Google TVs lack built-in GPS hardware, traditional methods like FusedLocationProviderClient and LocationManager do not work as expected.

I-Traqqar: Find My TV

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

79508451

Date: 2025-03-14 08:18:34
Score: 3
Natty:
Report link

From the event object, you can get the label of the selected option with this: event.target.selectedOptions[0].label

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

79508449

Date: 2025-03-14 08:17:33
Score: 1
Natty:
Report link

First of all, if your application is rejected, there is no problem, it will be better for you to see your mistakes and correct them in order to learn.

As far as I have experienced, you should provide valid information in the privacy policy and data security steps. Because if these are invalid, your application may be removed later even if it is published at the beginning.

You should create a test user for your application and provide this user information to Google Play. (If your application has a login)

There should be no sensitive permissions in your application. If there will be, you should explain them properly. You can read for sensitive permissions ---> https://support.google.com/googleplay/android-developer/answer/9888170?hl=en

When obtaining permission from the user in your application, you should write a valid explanation that informs the user in detail.

You should test your application on various screens.

Finally, do not forget to give internet permission.

You can also get help from here ->>> https://docs.flutter.dev/deployment/android#publish-to-the-google-play-store

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

79508448

Date: 2025-03-14 08:17:33
Score: 1
Natty:
Report link

I noticed same problem on ECS containers after enabling IMDSv2 on account level.

As per docs you should specify metadata hop limit to 2:

On the Manage IMDS defaults page, do the following:

  1. For Instance metadata service, choose Enabled.
  2. For Metadata version, choose V2 only (token required).
  3. For Metadata response hop limit, specify 2 if your instances will host containers.

See also this question: Using IMDS (v2) with token inside docker on EC2 or ECS

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

79508447

Date: 2025-03-14 08:17:33
Score: 1.5
Natty:
Report link

It's not a Python language specification, but a CPython implementation detail. Older version of the other implementation Python, PyPy, doesn't use Stack, and has no recursion depth limit.

https://doc.pypy.org/en/latest/stackless.html#recursion-depth-limit

You may try using PyPy to interpert your Python script if the maximum recursion depth in CPython doesn't satisfy your need.

Reasons:
  • No code block (0.5):
  • Low reputation (1):
Posted by: 戴淯琮 Yu-Tsung Tai

79508444

Date: 2025-03-14 08:16:33
Score: 4.5
Natty:
Report link

A little late, but remember that openAI is just a language prediction model. It takes a string of text, and predicts what comes next based on all its training data. Think about all the training data it's had on the internet. This includes screenplays, short novels, fanfictions, etc. It knows a lot about how to continue conversations based on the likelyhood of the next word, but only if it's in the right format. So, instead of formatting your data like just regular strings, format it in a way that makes sense for the AI to continue it, such as in a screenplay. In other words, iterate on a string like:

import openai

openai.api_key = "secret_key"

model_engine = "text-davinci-003"

conversation = "This is the script for a casual conversation between a human and an AI:\n"

for i in range(2):

[tab]conversation += f"\nHuman: {input()}\n"

[tab]response = openai.Completion.create(engine = model_engine, prompt=conversation, max_tokens = 1024, n=1, stop=None, temperature=0.5)

[tab]conversation += f"{response['choices'][0]['text']}\n"

[tab]print(response["choices"][0]["text"])

print(conversation)

With this code, I got this output:

This is the script for a casual conversation between a human and an AI:

Human: Hello, computer. What is your name?

AI: Hi there! My name is AI. It's nice to meet you.

Human: Come up with a better name.

AI: How about AI-2?

Reasons:
  • Blacklisted phrase (0.5): Hi there
  • Blacklisted phrase (1): What is your
  • Long answer (-1):
  • No code block (0.5):
  • Ends in question mark (2):
  • Unregistered user (0.5):
  • Low reputation (1):
Posted by: luce

79508443

Date: 2025-03-14 08:16:33
Score: 3.5
Natty:
Report link

In the admin panel, you need to enter words to be blocked from search. Magento does not have this feature by default, but if you search on Google, you can find modules that filter search terms as shown below.

enter image description here

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

79508428

Date: 2025-03-14 08:05:31
Score: 3.5
Natty:
Report link

I opt to use SignalR instead. However, [sesson] is one of the solutions. I like signalR better. I need get educated about the signalR.

Thanks for input.

See my first SignalR app with the help from DeepSeek (ChatGpt and Claude.ai won't help much but DeepSeek gives me solution and make sense).

link: https://github.com/d052057/YtSharp

Reasons:
  • Blacklisted phrase (0.5): Thanks
  • Blacklisted phrase (0.5): I need
  • Contains signature (1):
  • Low length (0.5):
  • No code block (0.5):
  • Low reputation (0.5):
Posted by: D052057

79508425

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

Your issue comes from trying to call asyncio.run() inside an already running event loop. Instead, you should use loop.run_forever() for continuous streaming. Here's the fix:

1. Replace run_until_complete(start_stream()) with:

task = loop.create_task(start_stream())

loop.run_forever()

2. If you're running this inside Jupyter Notebook or another environment with an active event loop, use:

import nest_asyncio

nest_asyncio.apply()

asyncio.run(start_stream())

This should solve the problem. Let me know if you

need more help!

Reasons:
  • Long answer (-0.5):
  • No code block (0.5):
  • Low reputation (1):
Posted by: Sebastian Jóźko

79508404

Date: 2025-03-14 07:46:27
Score: 3.5
Natty:
Report link

It seems it use serial COM. NOT an USB serial transfer.

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

79508401

Date: 2025-03-14 07:44:26
Score: 2.5
Natty:
Report link

From the event object, you can get the label of the selected option with this: event.target.selectedOptions[0].label

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

79508398

Date: 2025-03-14 07:43:26
Score: 2.5
Natty:
Report link

This error may also appear if you are using wrong standart during compilation (e.g. your compiler is set to c++ standart 17 and the following call only appear in 18 or later).

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

79508396

Date: 2025-03-14 07:42:26
Score: 1.5
Natty:
Report link

Unfortunately no, I don't think that is possible with batching. It would be achievable if there was some API to append custom errors to the response, but I guess it would be quite clunky to do... You may report that as a feature request in the project repository if you want (I am the maintainer).

Reasons:
  • Low length (0.5):
  • No code block (0.5):
  • Single line (0.5):
Posted by: Jan Martiška

79508395

Date: 2025-03-14 07:42:26
Score: 2
Natty:
Report link

As per U880D's comment, using device_requests works.

Instead of gpus: all I used:

          - driver: nvidia
            count: -1
            capabilities:
              - [ "gpu" ]
Reasons:
  • Low length (1):
  • Has code block (-0.5):
  • Self-answer (0.5):
  • Low reputation (1):
Posted by: Toni

79508383

Date: 2025-03-14 07:35:24
Score: 4
Natty: 5
Report link

The Microsoft Active Directory policy change detection system for ubuntu is not activated/configured.

https://documentation.ubuntu.com/adsys/en/latest/how-to/set-up-adwatchd/

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

79508379

Date: 2025-03-14 07:34:23
Score: 8.5 🚩
Natty: 4
Report link

I am facing an issue that is relevant to this post, please guide me if i am doing it correct:

I have four private function apps for Dev, UAT, QA, and Prod respectively hosted in Azure V-Net behind Azure Application gateway. I have created four separate listeners with HTTPs and port 4430, 4431, 4432, and 443 respectively. I am sending API requests from dataverse for these function app using a domain name that is translated to the public IP of the application gateway. Now, I am able to access the function app using all ports but when i try to access any api end point it works for port 443 for any environment but using non standard port i do not get any response and get unauthorized error? What could be the reason?

Reasons:
  • Blacklisted phrase (1): guide me
  • Blacklisted phrase (1): What could be
  • RegEx Blacklisted phrase (2.5): please guide me
  • RegEx Blacklisted phrase (1): I am facing an issue that is relevant to this post, please
  • Long answer (-0.5):
  • No code block (0.5):
  • Ends in question mark (2):
  • Low reputation (1):
Posted by: user29974396

79508373

Date: 2025-03-14 07:31:22
Score: 5.5
Natty: 4.5
Report link

I think this is some sort of bug in VSCode or plugins. I am using the PWA Builder plugin and I have the same problem. I am also using Github Copilot, which spins in circles telling me to remove display_manifest (because that triggers an error saying undefined) and then add it again (because it not being present triggers an error saying it is missing). It's pretty maddening.

Reasons:
  • Blacklisted phrase (1): I have the same problem
  • No code block (0.5):
  • Me too answer (2.5): I have the same problem
  • Single line (0.5):
  • Low reputation (1):
Posted by: Noelle Hockaday

79508372

Date: 2025-03-14 07:30:21
Score: 3
Natty:
Report link

Most of the time, windows SDK is missing. Search for the relevant windows sdk for your windows version

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

79508358

Date: 2025-03-14 07:18:19
Score: 4
Natty:
Report link

Maybe https://developer.apple.com/documentation/uikit/uitextitem will do the job, there's also some info in this WWDC session https://developer.apple.com/videos/play/wwdc2023/10058

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

79508343

Date: 2025-03-14 07:09:17
Score: 3
Natty:
Report link

I created a chrome extension for this, you can also get notified based on certain keyword in issue comments.

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

79508337

Date: 2025-03-14 07:04:16
Score: 2
Natty:
Report link

I didn't think to try ChatGPT before.

It gave me the following solution but it does nothing (not even set the greens/reds..

{"field":"Adult CAP", 'tooltipValueGetter': {"function": "params.data.DRLcount + ' scans included'"},
        'cellStyle': {
            # This function checks for empty values (None or empty string)
            'function': '''
                function(params) {
                    // Check if the value is null, undefined, or empty
                    if (params.value === null || params.value === undefined || params.value === '') {
                        return null; // No style applied for empty cells
                    }
                    // Apply some style conditions if the cell is not empty
                    if (params.value > 7) {
                        return { backgroundColor: 'redn' };
                    } else {
                        return { backgroundColor: 'green' };
                    }
                }
            '''
        }

I also tried forcing nan's to zeroes and then the following:

{"field":"Adult CAP", 'tooltipValueGetter': {"function": "params.data.DRLcount + ' scans included'"},
        'cellStyle': {"styleConditions": [{"condition": "0 > params.value <= 11","style": {"backgroundColor": "#16F529"}},
        {"condition": "params.value > 11","style": {"backgroundColor": "#FD1C03"}}, {"condition": "params.value == 0","style": {"backgroundColor": "#FD1C03"}}]}},

It still colours my 0's green?

Reasons:
  • Long answer (-1):
  • Has code block (-0.5):
  • Ends in question mark (2):
  • Self-answer (0.5):
  • Low reputation (1):
Posted by: JRP

79508336

Date: 2025-03-14 07:04:16
Score: 2.5
Natty:
Report link

These messages appear every time you enter a non-email into an input with type="email" and submit the form. It's not an element at all.

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

79508334

Date: 2025-03-14 07:02:16
Score: 2.5
Natty:
Report link

inject(LivrosService) correctly retrieves the singleton instance of LivrosService. We then call loadById() on the injected instance.

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

79508333

Date: 2025-03-14 07:01:15
Score: 2
Natty:
Report link

For what it's worth: I also just hit this. I had the above listed libraries in my application's WEB-INF\lib folder. Copying these to tomcat's lib folder resolved.

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

79508319

Date: 2025-03-14 06:57:15
Score: 1
Natty:
Report link

TaskStart DateEnd DateDurationResponsibilityUniform Type and Color    Finalize uniform type and design10-Apr-2513-Apr-25 ManagerConfirm uniform colors14-Apr-2514-Apr-25 ManagerOrder uniforms15-Apr-2516-Apr-25 ProcurementDistribute uniforms to staff20-Apr-2523-Apr-25 HR DepartmentCatering Staff Manning    Calculate catering staff requirements7-Apr-259-Apr-25 Catering ManagerAssign roles for catering staff8-Apr-2510-Apr-25 Catering ManagerConfirm catering staff availability6-Apr-257-Apr-25 HR DepartmentTrain catering staff8-Apr-2510-Apr-25 TrainerSetup Crew Manning    Calculate setup crew requirements7-Apr-259-Apr-25 Event PlannerAssign roles for setup crew8-Apr-2510-Apr-25 Event PlannerConfirm setup crew availability6-Apr-257-Apr-25 HR DepartmentTrain setup crew8-Apr-2510-Apr-25 TrainerStewarding Manning    Calculate stewarding requirements7-Apr-259-Apr-25 Chief StewardAssign roles for stewarding staff8-Apr-2510-Apr-25 Chief StewardConfirm stewarding staff availability6-Apr-257-Apr-25 HR DepartmentTrain stewarding staff8-Apr-2510-Apr-25 Trainer

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

79508312

Date: 2025-03-14 06:54:14
Score: 3
Natty:
Report link

wrap-table-header see if this works

https://developer.salesforce.com/docs/component-library/bundle/lightning-datatable/specification

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

79508309

Date: 2025-03-14 06:51:14
Score: 3
Natty:
Report link

Honestly, what i understand from you question is that you may be running into trouble using Lame may be through subprocess for the bitrate conversion.

I have not tried that, but what i was trying was to convert the WAV format into MP3 while avoiding the FFMPEG which is quite bulky to be bundled with executable through pyinstaller.

So, i was looking for "libmp3lame.dll" to work with 64 bit python and it was not working becasue of some ctype issues and pretty old version of the Lame DLL.

Then I came across lameenc 1.8.1 available at https://pypi.org/project/lameenc/ which did the trick for me.

It is also self contained so I do not need to bundle any additional dll file in my executable built with pyInstaller.

Please give it a try.

Reasons:
  • RegEx Blacklisted phrase (2.5): Please give
  • Long answer (-0.5):
  • No code block (0.5):
  • Low reputation (0.5):
Posted by: Anubhav Yadav

79508305

Date: 2025-03-14 06:49:14
Score: 2.5
Natty:
Report link

Since mv cannot handle subdirectories, I would use

cp -rf /path/to/source /path/to/target

Then if I want to delete the source directory, I would do

rm -rf /path/to/source
Reasons:
  • RegEx Blacklisted phrase (1): I want
  • Low length (1):
  • Has code block (-0.5):
  • Low reputation (1):
Posted by: johnsmith0x3f

79508292

Date: 2025-03-14 06:38:11
Score: 2
Natty:
Report link

I am looking for such an application, which utilizes the IR blaster not only for sending, but also receiving data, such as the way it worked on the old phones, Sony Ericsson, Nokia, i.e. The modern IRs are just for sending data. There is no option to use the camera for IR data entering and replicating (my phone, and many more have IR nightvision cameras and are able to see/detect infrared light).

Anyways, about your problem, there is a little application called "Install with options", which allows you to bypass many reasons of why a certain app does not want to install - Hardware compatibility, OS version, region issues.. I have it on Android 14, so i am pretty sure it will be backwards compatible. The only thing i don't know is if it required root, but i think it didn't. Give it a try.

Reasons:
  • Blacklisted phrase (2): I am looking for
  • Whitelisted phrase (-1): it worked
  • Long answer (-0.5):
  • No code block (0.5):
  • Low reputation (1):
Posted by: Rattlesnake

79508280

Date: 2025-03-14 06:30:10
Score: 5.5
Natty:
Report link

I have also encountered the same problem. Have you solved it?

Reasons:
  • Blacklisted phrase (2): Have you solved it
  • Low length (1.5):
  • No code block (0.5):
  • Single line (0.5):
  • Low reputation (1):
Posted by: Flec

79508276

Date: 2025-03-14 06:28:09
Score: 0.5
Natty:
Report link

Are you requesting subsequent resource loading in the backend?

If so, try specifying sub_filter

example

location /wiremock/__admin {
    rewrite ^/wiremock(.*)$ $1 break;
    proxy_pass https://localhost:7443/__admin;
    proxy_set_header Host $host;
    sub_filter '/__admin' '/wiremock/__admin';
    sub_filter_once off;
    proxy_set_header Accept-Encoding ""; 
}

sub_filter will replace all response bodies from the backend, so be careful not to make unintended matches.

http://nginx.org/en/docs/http/ngx_http_sub_module.html

I think the best way to fix it is to specify resource loading that matches the front.

Reasons:
  • Long answer (-0.5):
  • Has code block (-0.5):
  • Contains question mark (0.5):
  • Low reputation (1):
Posted by: sato

79508266

Date: 2025-03-14 06:23:08
Score: 0.5
Natty:
Report link

The problem was that I was using the plain PHP image directly, and the mysqli extension was not included inside the PHP container. To fix this, we need to install the mysqli extension. There are two ways to do this:

1, Manually Install mysqli in the Running Container

2, Build a Custom Docker Image with mysqli Pre-installed

I ended up going with the second approach, creating a custom Docker image, which solved the problem and ensured everything works smoothly.

Thanks to everyone!!

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

79508249

Date: 2025-03-14 06:05:05
Score: 3.5
Natty:
Report link

ModuleNotFoundError: No module named 'mmcv._ext'

Facing similar issue with fastBev package dependency:

Installed the below dependencies mmcv-full 1.7.2 mmdet 3.3.0 mmengine 0.10.6 mmsegmentation 1.2.2 nvcc --version nvcc: NVIDIA (R) Cuda compiler driver Copyright (c) 2005-2024 NVIDIA Corporation Built on Thu_Mar_28_02:18:24_PDT_2024 Cuda compilation tools, release 12.4, V12.4.131 Build cuda_12.4.r12.4/compiler.34097967_0 pip list | grep torch torch 2.4.1+cu124 torchaudio 2.4.1+cu124 torchvision 0.19.1+cu124 But shows ModuleNotFoundError: No module named 'mmcv._ext' . Tried reinstalling the mmcv version multiple times, but still does not help. Tried both options: Option 1: `pip install mmcv-full==1.7.2 -f https://download.openmmlab.com/mmcv/dist/cu124/torch2.4.0/index.html --no-cache-dir Option 2: git clone https://github.com/open-mmlab/mmcv.git cd mmcv pip install -r requirements/optional.txt pip install -e .`

Reasons:
  • Long answer (-0.5):
  • No code block (0.5):
  • Me too answer (2.5): Facing similar issue
  • Low reputation (1):
Posted by: NewUser123

79508226

Date: 2025-03-14 05:43:01
Score: 4
Natty:
Report link

BCE is a java jar/war/class encrypt tools。
try https://bce.gopiqiu.com/

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

79508222

Date: 2025-03-14 05:41:00
Score: 1
Natty:
Report link
String in = "a2b3c4";
        for (int i = 0; i < in.length(); i++) {
            i++;
            k = Integer.parseInt(String.valueOf(in.charAt(i)));
            al = in.charAt(i - 1);
            System.out.print(String.valueOf(al).repeat(k));

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

79508219

Date: 2025-03-14 05:36:59
Score: 3.5
Natty:
Report link

Resolved this by adding node_modules in .dockerignore file and using npm to install pnpm

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

79508216

Date: 2025-03-14 05:30:58
Score: 1
Natty:
Report link

To run a Spring Boot 3 fat JAR with external libraries in a lib directory and configuration files in a config directory, follow these steps:

  1. Directory Structure: Ensure your structure looks like this:

    enter image description here

  2. Run the Application: Use the following command to start your application, ensuring to include the external libraries and configuration folder:

    java -cp "MyApp.jar:lib/*" org.springframework.boot.loader.WarLauncher --spring.config.additional-location=file:./config/

    Explanation:

    • -cp "MyApp.jar:lib/*": Sets the classpath to include your JAR and all JARs in the lib folder.

    • --spring.config.additional-location=file:./config/: Tells Spring to load configuration files from the config directory.

    Make sure to adjust the path separator if you're on Windows (; instead of :).

Reasons:
  • Blacklisted phrase (1): enter image description here
  • Long answer (-0.5):
  • Has code block (-0.5):
  • Low reputation (1):
Posted by: Sarwar Miral

79508207

Date: 2025-03-14 05:23:56
Score: 1.5
Natty:
Report link

If you still run into the problem after adding the import '@angular/localize/init' line, it might be that you need to move the line above all other imports, because order of imports is important. If some other import above uses $localize function, the error will persist

Reasons:
  • Low length (0.5):
  • Has code block (-0.5):
  • Single line (0.5):
  • Low reputation (1):
Posted by: Андрей Пискунов

79508204

Date: 2025-03-14 05:21:55
Score: 4.5
Natty: 4.5
Report link

Me too experiencing this, any updates?

i've set all scheme app.config.ts,

and it is callable with adb or npx to my appscheme

I don't get what's wrong maybe is this just a warn? as word it is?

Reasons:
  • RegEx Blacklisted phrase (0.5): any updates
  • Low length (0.5):
  • No code block (0.5):
  • Ends in question mark (2):
  • Low reputation (1):
Posted by: 정희범