79612340

Date: 2025-05-08 12:12:29
Score: 3
Natty:
Report link

It worked for me, thanks @wappy!

Reasons:
  • Blacklisted phrase (0.5): thanks
  • Whitelisted phrase (-1): It worked
  • Whitelisted phrase (-1): worked for me
  • Low length (2):
  • No code block (0.5):
  • User mentioned (1): @wappy
  • Single line (0.5):
  • Low reputation (0.5):
Posted by: Rodrigo Viana Rocha

79612328

Date: 2025-05-08 12:07:27
Score: 1
Natty:
Report link
import java.util.Scanner;

public class Calculator   {
    public static void main(String[] args) {
        Scanner input = new Scanner(System.in);
        int  num1, num2, result;
        char operator;

        System.out.print("Enter 1 to add numbers: ");
        num1 = input.nextint();
    }
}
Reasons:
  • Low length (0.5):
  • Has code block (-0.5):
  • Low reputation (1):
Posted by: Nicholas Ssentongo

79612321

Date: 2025-05-08 12:05:26
Score: 4
Natty:
Report link
  1. What is the compaction type ?

  2. What is the size of each partition, make sure partitions size is 100 MB max, Large partitions will cause GC pauses

  3. What is the consistency level ?

  4. Make sure you have no disk issues, high disk queue size
    https://support.datastax.com/s/article/HOW-TO-Use-iostat-to-diagnose-CPU-and-IO-bottlenecks

  5. Also check if there are too many memtable flushes, values of these parameters
    memtable_heap_space_in_mb, memtable_cleanup_threshold

  6. Do you see frequent tombstones in logs ?

Reasons:
  • No code block (0.5):
  • Ends in question mark (2):
  • Starts with a question (0.5): What is the
  • Low reputation (1):
Posted by: Krishna Alapati

79612305

Date: 2025-05-08 11:57:24
Score: 1.5
Natty:
Report link

You only need to call Tcl_IncrRefCount() if you're holding onto the Tcl_Obj* beyond the function scope or storing it somewhere Tcl doesn't track.

If you're creating it and immediately passing it to interpreter or returning it, you don't need to do anything, Tcl owns the reference.

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

79612297

Date: 2025-05-08 11:51:22
Score: 0.5
Natty:
Report link

import matplotlib.pyplot as plt

import numpy as np

# Data points based on the visual interpretation

t_values = np.array([0, 1, 2, 3])

# Assuming r_peak = 1 and r_trough = -0.5

r_peak_value = 1.0

r_trough_value = -0.5

r_values = np.array([0, r_peak_value, 0, r_trough_value])

# Colors from the image (approximated)

line_color = 'deeppink'

axis_color = 'deeppink'

dashed_line_color = 'lightskyblue' # or 'cyan'

tick_label_color = 'lightskyblue'

plt.figure(figsize=(6, 5))

# Plot the main graph line

plt.plot(t_values, r_values, color=line_color, linewidth=2)

# Add vertical dashed lines

# From t=1, r=0 to t=1, r=r_peak_value

plt.plot([1, 1], [0, r_peak_value], color=dashed_line_color, linestyle='--', dashes=(4, 4), linewidth=1)

# From t=3, r=0 to t=3, r=r_trough_value

plt.plot([3, 3], [0, r_trough_value], color=dashed_line_color, linestyle='--', dashes=(4, 4), linewidth=1)

# Style the axes to look like the image

ax = plt.gca()

# Remove top and right spines

ax.spines['top'].set_visible(False)

ax.spines['right'].set_visible(False)

# Color and position bottom and left spines to act as axes

ax.spines['bottom'].set_position('zero')

ax.spines['bottom'].set_color(axis_color)

ax.spines['bottom'].set_linewidth(1.5)

ax.spines['left'].set_position('zero')

ax.spines['left'].set_color(axis_color)

ax.spines['left'].set_linewidth(1.5)

# Set ticks and labels for the x-axis (t-axis)

plt.xticks([0, 1, 2, 3], labels=['O', '1', '2', '3'], color=tick_label_color)

# Remove y-axis ticks and labels (as they are not prominent in the image)

plt.yticks([])

# Add axis labels 't' and 'r' at the end of the axes

# For 't' label at the right end of the x-axis

plt.text(max(t_values) + 0.1, -0.05, 't', color=axis_color, ha='left', va='top', fontsize=12)

# For 'r' label at the top end of the y-axis

max_r_for_label = max(r_peak_value, abs(r_trough_value)) + 0.2 # Determine a good y-pos for 'r'

plt.text(-0.05, max_r_for_label, 'r', color=axis_color, ha='right', va='top', fontsize=12, rotation=0)

# Set axis limits to give some padding and make arrows visible

plt.xlim(-0.2, max(t_values) + 0.3)

plt.ylim(min(r_trough_value, 0) - 0.3, max(r_peak_value, 0) + 0.3)

# Add arrowheads to the axes (simplified version)

# For x-axis (t)

ax.plot(1, 0, ">", transform=ax.get_yaxis_transform(), clip_on=False, color=axis_color, markersize=8)

# For y-axis (r)

ax.plot(0, 1, "^", transform=ax.get_xaxis_transform(), clip_on=False, color=axis_color, markersize=8)

plt.grid(False) # No grid in the original image

plt.title("r vs t Graph", color=line_color) # Optional title

plt.show()

Reasons:
  • Long answer (-1):
  • No code block (0.5):
  • Low reputation (1):
Posted by: Mr.Mohamed elamrousy

79612293

Date: 2025-05-08 11:49:22
Score: 2.5
Natty:
Report link

cuML mirrors scikit-learn, using GPU to accelerate machine learning algorithms.

But it seems that it does not provide an RFE module.

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

79612290

Date: 2025-05-08 11:47:21
Score: 3
Natty:
Report link

The website https://automotive-encryption.github.io/ specializes in solving seed key algorithms. Just send them the info, and they’ll send the algorithm back to you

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

79612286

Date: 2025-05-08 11:46:21
Score: 2.5
Natty:
Report link

When you want to move network related Azure services it is always hard to do that and you have to be aware of several ways how to do that.

For Virtual Machines you have a chance to move them only in the given ways: https://learn.microsoft.com/en-us/azure/azure-resource-manager/management/move-limitations/virtual-machines-move-limitations?tabs=azure-cli

Unfortunately you'll always have a short down time if you can not fulfill the requirements. For network related moves you can see a detailed manual here: https://learn.microsoft.com/en-us/azure/azure-resource-manager/management/move-limitations/networking-move-limitations

Reasons:
  • Probably link only (1):
  • No code block (0.5):
  • Starts with a question (0.5): When you
  • Low reputation (0.5):
Posted by: AW94

79612282

Date: 2025-05-08 11:42:20
Score: 2.5
Natty:
Report link

After chmod'ing the file, it is better to invoke the script by prepending with a directory ..

e.g. /path/to/script/script.sh

or if you have cd'ed to /path/to/script

- invoke via ./script.sh

since the current directory should not be on the PATH

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

79612267

Date: 2025-05-08 11:36:18
Score: 2
Natty:
Report link

I also faced the same issue on new next js project.Just to be presize on "next": "15.3.2".I have fixed by deleted the Grammerly extension from my browser and it worked.

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

79612266

Date: 2025-05-08 11:36:18
Score: 2.5
Natty:
Report link

When deploying an Angular app to Azure App Service (Windows) via ZIP, a web.config file is required to properly serve static files like index.html. Without it, Azure may throw errors ( dwasmod.dll).

To resolve the issue, I created a sample Angular application and added a web.config file to the root directory of the project.

Thanks to @Martin Brandl for clear explanation I've referred this blog and created a web.config file in my project.

Web.config file:

<?xml version="1.0" encoding="utf-8"?>
<configuration>
  <system.webServer>
    <rewrite>
      <rules>
        <rule name="Angular Routes" stopProcessing="true">
          <match url=".*" />
          <conditions logicalGrouping="MatchAll">
            <add input="{REQUEST_FILENAME}" matchType="IsFile" negate="true" />
            <add input="{REQUEST_FILENAME}" matchType="IsDirectory" negate="true" />
          </conditions>
          <action type="Rewrite" url="/index.html" />
        </rule>
      </rules>
    </rewrite>
    <staticContent>
      <mimeMap fileExtension=".json" mimeType="application/json" />
    </staticContent>
  </system.webServer>
</configuration>

Pipeline.yaml file:

trigger:
  branches:
    include:
      - main

pool:
  vmImage: 'windows-latest'

variables:
  buildOutput: '$(Build.SourcesDirectory)/dist/angular-app/browser'

stages:
- stage: Build
  jobs:
  - job: BuildAngularApp
    steps:

    - task: NodeTool@0
      inputs:
        versionSpec: '20.x'
      displayName: 'Install Node.js'

    - script: |
        echo Installing Angular CLI and dependencies...
        npm install -g @angular/cli
        npm ci

        echo Building Angular App...
        ng build --configuration production
      displayName: 'Install and Build Angular App'

    - task: CopyFiles@2
      displayName: 'Copy web.config to build output'
      inputs:
        SourceFolder: '$(Build.SourcesDirectory)'
        Contents: 'web.config'
        TargetFolder: '$(buildOutput)'

    - task: ArchiveFiles@2
      displayName: 'Create deployment ZIP'
      inputs:
        rootFolderOrFile: '$(buildOutput)'
        includeRootFolder: false
        archiveType: 'zip'
        archiveFile: '$(Build.ArtifactStagingDirectory)/deployment.zip'
        replaceExistingArchive: true

    - task: PublishBuildArtifacts@1
      displayName: 'Publish ZIP Artifact'
      inputs:
        PathtoPublish: '$(Build.ArtifactStagingDirectory)/deployment.zip'
        ArtifactName: 'drop'

- stage: Deploy
  dependsOn: Build
  condition: succeeded()
  jobs:
  - deployment: DeployToAzure
    environment: 'production'
    strategy:
      runOnce:
        deploy:
          steps:
          - download: current
            artifact: drop

          - task: AzureWebApp@1
            displayName: 'Deploy to Azure App Service'
            inputs:
              azureSubscription: '<azure-subscription>'
              appType: 'webApp'
              appName: '<azure-app>'
              package: '$(Pipeline.Workspace)/drop/deployment.zip'

I've successfully deployed application to Azure App Service (Windows) via Azure DevOps.

enter image description here

Set WEBSITE_RUN_FROM_PACKAGE to 0 in environment variables section of your App service.

enter image description here

Go to Configuration section of you web app -> Path mappings - > open virtual path and add below path

site\wwwroot\angular-app\browser

enter image description here

Prouction output:

enter image description here

Reasons:
  • Blacklisted phrase (0.5): Thanks
  • Blacklisted phrase (1): this blog
  • Probably link only (1):
  • Long answer (-1):
  • Has code block (-0.5):
  • User mentioned (1): @Martin
  • Starts with a question (0.5): When
Posted by: Sirra Sneha

79612260

Date: 2025-05-08 11:34:17
Score: 6
Natty: 7
Report link

Bonjour, j’essaie d’utiliser l’API de paiement marchand Flouci, mais j’obtiens une erreur 404. Mon compte est-il bien activé pour l’API ?

Reasons:
  • Low length (1):
  • No code block (0.5):
  • Ends in question mark (2):
  • Single line (0.5):
  • Looks like a comment (1):
  • Low reputation (1):
Posted by: Taboui Nidhal

79612251

Date: 2025-05-08 11:27:15
Score: 2.5
Natty:
Report link

Make sure you're using the correct return statement and formatting for your Office Script. Return [value1, value2]; is the only way to explicitly return arrays, not just log them or declare them.

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

79612250

Date: 2025-05-08 11:26:15
Score: 0.5
Natty:
Report link

You can use Auth::user(); to retrieve the authenticated user.

Reasons:
  • Whitelisted phrase (-1.5): You can use
  • Low length (1.5):
  • Has code block (-0.5):
  • Single line (0.5):
  • Low reputation (0.5):
Posted by: Edmon Belchev

79612245

Date: 2025-05-08 11:23:14
Score: 1
Natty:
Report link

I had exactly the same problem. I suspect it is due to timing. In the parent component or page, it might be the case that you have an await to fetch the json-url string value. But the child components will render immediately, before the parameter value has been set. Thus you will not have the json-url property available immediately. However it will be set maybe half a second later, but then it is too late, because the onMounted method has already completed. Displaying the value in the DOM will show the correct value, because it updates once the value has been set in the parent. So this explains how you see the value but onMounted doesnt. To solve this you need to avoid rendering the child components, until you have loaded all the data that they need in the parent page or component.

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

79612236

Date: 2025-05-08 11:14:11
Score: 1
Natty:
Report link

Alternatively you can use VS Code on Mac with Maui extensions.

This video should help you out.

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

Reasons:
  • Blacklisted phrase (1): youtube.com
  • Blacklisted phrase (1): This video
  • Whitelisted phrase (-1.5): you can use
  • Low length (1):
  • No code block (0.5):
  • High reputation (-1):
Posted by: DazManCat

79612228

Date: 2025-05-08 11:08:10
Score: 0.5
Natty:
Report link

Solved.

By relaxing authentication rules on the server, I was able to find out that the client certificate was always empty. The solution involved extending ChannelCredentials and overriding:

  @override
  SecurityContext get securityContext {
    return SecurityContext(withTrustedRoots: true)
      ..useCertificateChainBytes(clientCert)
      ..usePrivateKeyBytes(clientKey)
      ..setAlpnProtocols(supportedAlpnProtocols, false);
  }

In this instance, even loading a .pfx cert and using :

  @override
  SecurityContext get securityContext {
    return SecurityContext(withTrustedRoots: true)
      ..useCertificateChainBytes(clientCert)
      ..setAlpnProtocols(supportedAlpnProtocols, false);
  }

will send a completely empty cert.

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

79612221

Date: 2025-05-08 11:03:09
Score: 2
Natty:
Report link

They do hit the IdP (Identity Provider) every time you pass a token. How else can you validate the user? In the JWT header you have a field in which you can pass a public key and then you fetch the public key and then you validate against the same public key. The public key will be stored in the domain controlled by Microsoft.

Of course if someone changes the header field then the JWT will not be a valid one.

You fetch the key using JWKS.

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

79612218

Date: 2025-05-08 11:01:08
Score: 2
Natty:
Report link

chart.js 4.4.9 border configuration should be:-

y: {
border:{
  display:false,
},

},

Reasons:
  • Low length (1.5):
  • Has code block (-0.5):
  • Low reputation (1):
Posted by: Mr. sunil

79612213

Date: 2025-05-08 10:57:07
Score: 1
Natty:
Report link

You might need to specify .EntireRow or .EntireColumn for VB to know which to create. Also the range A2:M33 might not give you what you want, as a page break is either horizontal or vertical, try:

Worksheets("Stack").Range("M33").EntireRow.PageBreak = xlPageBreakManual

If what you are trying to do is set the page printarea you should instead write:

Worksheets("Stack").PageSetup.PrintArea = "A2:M33"
Reasons:
  • Has code block (-0.5):
  • Unregistered user (0.5):
  • Low reputation (1):
Posted by: Anders Christensen

79612204

Date: 2025-05-08 10:50:05
Score: 2
Natty:
Report link

Well, if the gang of three repeatedly appears, you could make the three a group as there is a pattern exists. You could nested NSCollectionLayoutGroup to achieve this pattern. But, if the unique one appears randomly, well you'd better try what @HangarRash said.

Reasons:
  • Low length (0.5):
  • Has code block (-0.5):
  • User mentioned (1): @said
  • Single line (0.5):
  • Low reputation (0.5):
Posted by: Neal.Marlin

79612196

Date: 2025-05-08 10:45:04
Score: 0.5
Natty:
Report link

You should write in your Docker compose the following;

  pgadmin:
    image: dpage/pgadmin4
    container_name: pgadmin
    restart: always
    environment:
      PGADMIN_DEFAULT_EMAIL: ${PGADMIN_DEFAULT_EMAIL}
      PGADMIN_DEFAULT_PASSWORD: ${PGADMIN_DEFAULT_PASSWORD}
      PGADMIN_CONFIG_X_FRAME_OPTIONS: '""'
    ports:
      - "5050:80"

If you are using only Docker, you can:

docker run -p 80:80 \
-e '[email protected]' \
-e 'PGADMIN_DEFAULT_PASSWORD=SuperSecret' \
-e 'PGADMIN_CONFIG_X_FRAME_OPTIONS=""' \
-d dpage/pgadmin4
Reasons:
  • Long answer (-0.5):
  • Has code block (-0.5):
  • Unregistered user (0.5):
  • Low reputation (1):
Posted by: Quim D

79612188

Date: 2025-05-08 10:40:03
Score: 1.5
Natty:
Report link

Using Slim3 w/ slim/twig-view plugin:

Replace render(), with fetch()

(Yes, i know this is a symfony question, but as many others will do I found this post whilst trying to solve the issue)

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

79612170

Date: 2025-05-08 10:30:00
Score: 0.5
Natty:
Report link

You should set PYTHONPATH to your project root directory to allow python find src module.

I.e. you can execute following command export PYTHONPATH=/home/me/my_project_dir to set PYTHONPATH in current shell.

Or just run pytest with PYTHONPATH=pwd && pytest

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

79612168

Date: 2025-05-08 10:29:00
Score: 1.5
Natty:
Report link

Not so much a solution but I can't comment yet. I tried doing exactly the same as you after one of my scripts stopped working and went through the process of Azure and registering the app. The documentation to do all this is massive and I couldn't get my script to work. I could get an oAuth token, set up the correct access policies and all was fine but couldn't get into the mailbox. There are different subscriptions and nothing is clearly defined what is covered in each.

It appears that Microsoft are changing to a new method of accessing emails through their own API and imapclient isn't set up to handle that yet. Their own python libraries I couldn't get to work either.

In all it took me hours and hours of frustration that I gave up and switched to gmail. Everything works... It took a couple of hours, was a similar process: get an oAuth token, set up access policies. Done.

I know this may not be a suitable course of action for you but switching to gmail was by far the easiest solution for me.

Reasons:
  • RegEx Blacklisted phrase (1): can't comment
  • Long answer (-1):
  • No code block (0.5):
  • Low reputation (1):
Posted by: DoT

79612167

Date: 2025-05-08 10:29:00
Score: 3.5
Natty:
Report link

Encontre psiquiatras e psicoterapeutas qualificados em Lisboa, prontos para ajudá-lo a lidar com ansiedade, depressão, stress e outros desafios emocionais. Marque a sua consulta com profissionais de confiança e inicie hoje o seu caminho para o bem-estar mental. Atendimento personalizado, confidencial e centrado nas suas necessidades. Cuidar da sua saúde mental é um passo essencial.

For More: https://psiworks.pt/

Reasons:
  • RegEx Blacklisted phrase (2): Encontre
  • No code block (0.5):
  • Low reputation (1):
Posted by: PSI Works

79612165

Date: 2025-05-08 10:26:59
Score: 1.5
Natty:
Report link

We had the same issue and it turns out that the client had also .easignore file which did ignored android folder. So apart from checking in .gitignore make sure you also have valid .easignore.

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

79612159

Date: 2025-05-08 10:24:58
Score: 0.5
Natty:
Report link

In C# 13 they are implementing a field keyword, so you will be able to write code like this:

public int MyProperty 
{
    get;
    set
    {
        field = value;
        functionDependingOnSetter(value);
    }
}
Reasons:
  • Low length (0.5):
  • Has code block (-0.5):
  • Low reputation (0.5):
Posted by: user1996726

79612152

Date: 2025-05-08 10:19:57
Score: 2.5
Natty:
Report link

I also can't set breakpoint with F12, but setting via Debug menu is fine. Well, actually no Function key is working in Spyder.

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

79612148

Date: 2025-05-08 10:17:57
Score: 1
Natty:
Report link
tabela_contratos=pd.read_excel("Contratos.xlsx") 

tabela_emails = pd.read_excel("Emails.xlsx") 

#realizar o merge 

tabela_final=pd.merge(
    tabela_contratos,
    tabela_emails,
    left_on="Cliente",
    right_on="Nome",
    how="inner" 
)

display(tabela_final)
Reasons:
  • Low length (0.5):
  • Has code block (-0.5):
  • Low reputation (1):
Posted by: Youssuf Abdula

79612140

Date: 2025-05-08 10:14:56
Score: 3.5
Natty:
Report link

Wow, you're right, thanks man! Absolutely strange that this is necessary.

Reasons:
  • Blacklisted phrase (0.5): thanks
  • Low length (1.5):
  • No code block (0.5):
  • Single line (0.5):
  • Low reputation (0.5):
Posted by: Touwer

79612139

Date: 2025-05-08 10:13:56
Score: 3
Natty:
Report link

use SSML tag.

<speak> <say-as interpret-as="spell-out"> $session.params.phonenumber </say-as> is that right?<break time="250ms"/> Please say 'yes' or 'no'.</speak>

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

79612130

Date: 2025-05-08 10:06:54
Score: 1
Natty:
Report link
import matplotlib.pyplot as plt

# Assuming your 10 series are in a list
series_list = [s1, s2, s3, s4, s5, s6, s7, s8, s9, s10]

fig, axes = plt.subplots(5, 2, figsize=(12, 15))
axes = axes.flatten()

for i, s in enumerate(series_list):
    axes[i].hist(s, bins=20, edgecolor='k')
    axes[i].set_title(f'Series {i+1} Distribution')

plt.tight_layout()
plt.show()

import seaborn as sns
sns.kdeplot(s, ax=axes[i], fill=True)
Reasons:
  • Has code block (-0.5):
  • Unregistered user (0.5):
  • Low reputation (1):
Posted by: Guest

79612128

Date: 2025-05-08 10:05:53
Score: 0.5
Natty:
Report link

Try this configuration:

request.UseBinary = true;
request.UsePassive = true;
request.EnableSsl = false; 
request.KeepAlive = true;
Reasons:
  • Whitelisted phrase (-1): Try this
  • Low length (1):
  • Has code block (-0.5):
  • Low reputation (1):
Posted by: Yash Mote

79612123

Date: 2025-05-08 09:59:51
Score: 1.5
Natty:
Report link

Of course, if you do the maths, you will find the number of possible permutations - an impractical situation to deal with. A rather easier and more manageable way could be to get a sample of 50 permutations is to generate the 50 random permutations directly, without ever needing to list or store all the possible ones. You can easily generate a random vector of length 50 consisting of numbers from 1 to 50. And pick up the elements from the indexed locations and save it in a new vector.

Reasons:
  • No code block (0.5):
  • Single line (0.5):
  • Low reputation (0.5):
Posted by: Naveed Ahmed

79612118

Date: 2025-05-08 09:55:50
Score: 0.5
Natty:
Report link

TypeScript Alone: Uses tsc or esbuild for compilation. Slower but mature, supports all TS features. Best for small/medium projects or when simplicity is key.

TypeScript with SWC: Uses SWC for faster transpilation (10-20x faster than tsc). Less mature, may miss some TS features. Best for large projects needing speed, often paired with tsc --noEmit for type checking.

When to Use:

TypeScript Alone: Default for most Vite projects, especially if simple or using advanced TS features. SWC: Use for large projects with slow builds, but test compatibility and consider tsc for type safety.

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

79612116

Date: 2025-05-08 09:53:50
Score: 1
Natty:
Report link
public synchronized boolean addToList(String key, Item item) {
   Collection<Item> list = theMap.get(key);
   if (list == null)  {
      list = new ArrayList<Item>();  // or, if you prefer, some other List, a Set, etc...
      theMap.put(key, list );
   }

   return list.add(item);
}
Reasons:
  • Low length (0.5):
  • Has code block (-0.5):
  • Low reputation (1):
Posted by: Manikandan M

79612114

Date: 2025-05-08 09:52:49
Score: 7
Natty: 7
Report link

I also managed to approve the request previously, but this solution doesn't work anymore? Does anyone know where requests are now?

Reasons:
  • RegEx Blacklisted phrase (2): Does anyone know
  • Low length (1):
  • No code block (0.5):
  • Ends in question mark (2):
  • Single line (0.5):
  • Low reputation (1):
Posted by: Charlotte Van Zyl

79612104

Date: 2025-05-08 09:46:47
Score: 4.5
Natty:
Report link

Problem solved, i have an error with my network configurations in Composer

Reasons:
  • RegEx Blacklisted phrase (1): i have an error
  • Low length (1.5):
  • No code block (0.5):
  • Self-answer (0.5):
  • Single line (0.5):
  • Low reputation (0.5):
Posted by: burrito

79612100

Date: 2025-05-08 09:44:46
Score: 1
Natty:
Report link

thanks to Martin Prikryl comment i found a solution that works for me to just add

[Dirs]
Name: {app}; Permissions: users-full

to inno setup file looks like my app need write Permissions to get installed

Reasons:
  • Blacklisted phrase (0.5): thanks
  • Whitelisted phrase (-1): works for me
  • Low length (0.5):
  • Has code block (-0.5):
  • Self-answer (0.5):
  • Low reputation (1):
Posted by: fares

79612087

Date: 2025-05-08 09:38:44
Score: 1.5
Natty:
Report link

from moviepy.editor import VideoFileClip

# Reload the video file after code execution environment reset

video_path = "/mnt/data/a0f0cc7f019bd0f6183eb71ef24d7d6d.mp4"

clip = VideoFileClip(video_path)

# Extract duration and check if audio exists

duration = clip.duration

has_audio = clip.audio is not None

(duration, has_audio)

Reasons:
  • No code block (0.5):
  • Low reputation (1):
Posted by: Patrick Lavi Micah

79612085

Date: 2025-05-08 09:37:44
Score: 2
Natty:
Report link

I’m also facing a similar issue in Unity. At first, I thought the audio I was sending to ElevenLabs might be corrupted or invalid. But after testing the API in a Node.js web app, I encountered the same problem.

I also tried using ElevenLabs’ WebSocket Explorer. Interestingly, I received a valid response from the first audio chunk, but after that, the connection got stuck in a continuous ping/pong loop with no agent response.

Additionally, I tested with a .wav file encoded to base64 using Base64.Guru. That worked and returned a response for the first time after opening the wss connection. However, when I tried sending audio using ElevenLabs' built-in input encoder, the connection was immediately closed. It seems like the audio chunk might be in an incompatible or unsupported format, but I’m still trying to pinpoint the exact cause.

For comparison, I also tested this repo: https://github.com/mapluisch/OpenAI-Realtime-API-for-Unity. It's a real-time WebSocket implementation for OpenAI, and it follows a similar architecture. Interestingly, it works perfectly, which makes the ElevenLabs behavior even more puzzling.

Reasons:
  • Long answer (-1):
  • Has code block (-0.5):
  • Me too answer (2.5): also facing a similar issue
  • Low reputation (1):
Posted by: Omar Ayoub

79612081

Date: 2025-05-08 09:35:44
Score: 1.5
Natty:
Report link

Put the ECS behind a Network Load Balancer. NLBs have a static IP.

Also ALBs in AWS don't have static IP.

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

79612077

Date: 2025-05-08 09:30:42
Score: 0.5
Natty:
Report link

2025

The main OpenSAML homepage is here: https://shibboleth.atlassian.net/wiki/spaces/OSAML/overview

The main OpenSAML Maven repo is here: https://build.shibboleth.net/maven/releases/org/opensaml/opensaml-bom/

The main OpenSAML Git repo is here: https://git.shibboleth.net/view/?p=java-opensaml.git

The latest version right now is 5.1.4 from May 2025.

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

79612073

Date: 2025-05-08 09:25:41
Score: 2
Natty:
Report link

import React from 'react'; import { Card, CardContent } from '@/components/ui/card';

const DeveloperShowcase = () => { return ( المطور جمال أصغر مطور في التاريخ
المبدع وراء قناة كاب كت

المطور جمال - أسطورة المستقبل ); };

export default DeveloperShowcase;

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

79612071

Date: 2025-05-08 09:25:41
Score: 0.5
Natty:
Report link

Thank you and below is the final and updated code.

Sub CATMain()
'--------------------Define CATIA------------------------------------------
    Dim CATIA
    Dim MyDocument
    Dim MyProduct
    'Get CATIA or Launch it if necessary.
    On Error Resume Next
    Set CATIA = GetObject(, "CATIA.Application")
    If CATIA Is Nothing Then
    Set CATIA = CreateObject("CATIA.Application")
    CATIA.Visible = True
    End If
    On Error GoTo 0

    Set CATIA = GetObject("", "CATIA.Application")
    Set MyDocument = CATIA.ActiveDocument
    Set MyProduct = MyDocument.Product

    MyRootPN = MyProduct.PartNumber
    MyRootInstanceName = MyProduct.Name
    
    Set oProductDoc = CATIA.ActiveDocument
    Set oProdParameters = oProductDoc.Product.Parameters
    Set oSel = oProductDoc.selection
    
    oSel.Clear
    ' Only Select the Geometrical sets with name "Protection Set*"
    oSel.Search "CATGmoSearch.OpenBodyFeature.Name=Protection Set*,all"

    For i = 1 To oSel.count
        Debug.Print oSel.Item(i).LeafProduct.Name
        Set oHybridBody = oSel.Item2(i).Value
        Debug.Print oHybridBody.Name
        ' loop over all hybridshapes
        For j = 1 To oHybridBody.HybridShapes.count
            Set oHybridShape = oHybridBody.HybridShapes.Item(j)
            Debug.Print oHybridShape.Name
        Next
        ' loop over all sketches
        For j = 1 To oHybridBody.HybridSketches.count
            Set oSketch = oHybridBody.HybridSketches.Item(j)
            Debug.Print oSketch.Name
        Next
        ' loop over all HybridBodies
        For k = 1 To oHybridBody.HybridBodies.count
            Set oHybridBodies = oHybridBody.HybridBodies.Item(k)
            Debug.Print oHybridBodies.Name
        Next
    Next
    oSel.Clear

End Sub
Reasons:
  • Blacklisted phrase (0.5): Thank you
  • Long answer (-1):
  • Has code block (-0.5):
  • Self-answer (0.5):
  • Low reputation (1):
Posted by: Sidamallappa LIMBIKAI

79612050

Date: 2025-05-08 09:10:37
Score: 3
Natty:
Report link

does anything happen when You click F12 button?

maybe also try to do this look without arguments? like

def kill_gta5():
    for proc in psutil.process_iter():
        if 'GTA5_Enhanced.exe' in proc.info['name']:
            proc.kill()
Reasons:
  • Low length (0.5):
  • Has code block (-0.5):
  • Ends in question mark (2):
  • Low reputation (1):
Posted by: mac blanco

79612047

Date: 2025-05-08 09:09:37
Score: 3.5
Natty:
Report link

I had forgotten to prefix the properties with server.ssl. Now everything works.

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

79612044

Date: 2025-05-08 09:08:37
Score: 3
Natty:
Report link

You can also try contacting the developers of kothay.app . Their tracking software seems pretty lightweight and can be integrated to most systems

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

79612034

Date: 2025-05-08 09:05:09
Score: 0.5
Natty:
Report link

While working with Dynamics 365 CE, I’ve run into similar issues. Here's what I've learned from my guess work:

Field Descriptions Within Dynamics 365 CE

Field descriptions may be located by navigating to:

Advanced Settings > Customizations > Customize the System > Entities > [Your Entity] > Fields Click on any field and find its description (if provided by the admin or developer).

Backend Database Identification

Online version: Operates on Dataverse (formerly Common Data Service).

On-premise version: Generally uses Microsoft SQL Server.

Viewing Queried Tables
With tools like XrmToolBox (and especially its plugins), Metadata Browser or FetchXML Builder, you can view entities/tables that are queried.

Also, look at Plug-in Trace Logs, and telemetry through the Power Platform Admin Center.
Dynamics-Created Tables That Aren’t in the Backend

Certain system tables are virtual or hidden: they exist in the app but not the physical DB.

Use the Dataverse Web API, the Power Platform SDK, or tools like Solution Explorer to access these hidden resources.

Column Descriptions & Business Context

In case you need some very specific descriptions from the system's columns, consider using the XrmToolBox's Metadata Document Generator.

It also permits the exporting of data types, descriptions, and other meta data which is ideal for documentation or even analysis purposes.

If you hope to have a more comprehensive architectural understanding of Dynamics 365 and how it is implemented in practices, I found this breakdown helpful:

Microsoft Dynamics 365 Services — it provides a fundamental learning point, more so for those straddling the technical and business sides.

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

79612020

Date: 2025-05-08 08:59:07
Score: 0.5
Natty:
Report link

Make sure your SHA-1 signing key is the same as the Google Play Console and Google Cloud Console or Firebase SHA-1 fingerprint.

  1. Go to Google Play Console

  2. Select your app

  3. Navigate to:
    Release > Setup > App Integrity

  4. Under App Signing, copy the SHA-1 (App signing key)

  5. Go to Google Cloud Console

  6. Open your project

  7. Go to:
    APIs & ServicesCredentials

  8. Edit the OAuth 2.0 Client ID for your Android app

  9. Add the new SHA-1 you got from the Play Console.

Note:

  1. It can take 5–10 minutes for the change to propagate.

  2. Internal testers may need to clear app data or reinstall.

  3. Ensure the internal testers are added in your OAuth Consent Screen as test users (if app isn’t verified yet).

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

79612010

Date: 2025-05-08 08:52:05
Score: 1.5
Natty:
Report link

Yes, migrating from AngularJS to Angular is not only a valid path forward — it's highly recommended for businesses that want to modernize their web applications and ensure long-term maintainability.

Since AngularJS reached its end of official support in December 2021, continuing to build or maintain apps on it increases your exposure to:

By migrating to Angular (the modern, TypeScript-based framework maintained by Google), you gain:

Enhanced performance with faster rendering and improved load times

Better maintainability through modular architecture and TypeScript support

Access to long-term support (LTS) and active community innovation

Easier integration with modern tools and APIs

Planning the Migration While the migration involves careful planning — especially for larger or legacy apps — Angular development service provides tools like the Upgrade Module (ngUpgrade) to help run AngularJS and Angular side-by-side during the transition.

Many businesses treat this migration as an opportunity to:

Refactor inefficient legacy code

Improve UI/UX with modern design systems

Future-proof their tech stack

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

79612008

Date: 2025-05-08 08:50:04
Score: 2.5
Natty:
Report link

Latest Spring Boot doc on the matters at: https://docs.spring.io/spring-boot/reference/features/external-config.html#features.external-config.files

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

79612001

Date: 2025-05-08 08:43:03
Score: 3
Natty:
Report link

Something is wrong. When I press stop button it spits out full response right away. So it seems like an animation.

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

79611982

Date: 2025-05-08 08:26:59
Score: 1
Natty:
Report link

Why it fails:

Correct way to do it:

If you want to use an alias and access functions directly, do:

from math import factorial as fact print(fact(5))

Reasons:
  • Has code block (-0.5):
  • Starts with a question (0.5): Why it
  • Low reputation (1):
Posted by: Mien

79611974

Date: 2025-05-08 08:21:54
Score: 8 🚩
Natty:
Report link

Hi am facing the very same problem here with Access Denied, i created a App and power automate flow with a service Account, i have full control to the site and document library......did you find a solution

Reasons:
  • RegEx Blacklisted phrase (3): did you find a solution
  • Low length (0.5):
  • No code block (0.5):
  • Me too answer (2.5): facing the very same problem
  • Single line (0.5):
  • Low reputation (1):
Posted by: Theresho Mashigo

79611971

Date: 2025-05-08 08:15:53
Score: 1
Natty:
Report link

I just killed all docker processes (ps -ef | grep -i docker), and after that I was able to start docker desktop, and from there all was good.

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

79611968

Date: 2025-05-08 08:14:53
Score: 2
Natty:
Report link
1395/3003 = Cat Stevens/Therapist

try splitting it using commas and then join them

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

79611963

Date: 2025-05-08 08:11:52
Score: 11.5
Natty: 7
Report link

r u able to create major upgradation successfully? I am also facing same issue in Installshield. Could u pls help me?

Reasons:
  • Blacklisted phrase (1): help me
  • RegEx Blacklisted phrase (3): Could u pls help me
  • Low length (1):
  • No code block (0.5):
  • Me too answer (2.5): I am also facing same issue
  • Ends in question mark (2):
  • Single line (0.5):
  • Low reputation (1):
Posted by: Sandhyarani Sahoo

79611961

Date: 2025-05-08 08:08:51
Score: 0.5
Natty:
Report link
let business_hours_in_mins = (startTime: datetime, endTime: datetime) {
    range day from startofday(startTime) to startofday(endTime) step 1d
    | extend weekday_num = toint(format_timespan(dayofweek(day), 'd'))
    | where weekday_num between (1 .. 5) 
    | extend
        business_start = day + 9h,
        business_end = day + 17h
    | extend
        effective_start = case(
            day == startofday(startTime), iif(startTime > business_start, startTime, business_start),
            business_start),
        effective_end = case(
            day == startofday(endTime), iif(endTime < business_end, endTime, business_end),
            business_end)
    | where effective_start < effective_end
    | extend minutes = datetime_diff('minute', effective_end, effective_start)
    | summarize total_business_mins = sum(minutes)
};

business_hours_in_mins(datetime(2024-04-01 08:00:00), datetime(2024-04-08 11:30:00))
Reasons:
  • Long answer (-0.5):
  • Has code block (-0.5):
  • Unregistered user (0.5):
  • Low reputation (1):
Posted by: user30480327

79611959

Date: 2025-05-08 08:08:51
Score: 0.5
Natty:
Report link

The most stupid lost of 6 hours of my life!!!

@RestController  
@RequestMapping("/")  
public class RootController {

    @GetMapping("/{id_user}")  
    public ResponseEntity\<Void\> global_network_config() {   
        return ResponseEntity.status(HttpStatus.NOT_IMPLEMENTED).build();   
    }  

}

Spring thought that "/console" means "/" with parh variable "console"!!!!!

The problem was solved by adding "ms"

    @GetMapping("/ms/{id_user}")  
    public ResponseEntity\<Void\> global_network_config() {   
        return ResponseEntity.status(HttpStatus.NOT_IMPLEMENTED).build();   
    }  

And to avoid problem with code 200 make normal socket config:

registry.addHandler(websocketMinecraftConsole, "/console")  
.setAllowedOrigins("\*");
Reasons:
  • Long answer (-0.5):
  • Has code block (-0.5):
  • Self-answer (0.5):
  • Low reputation (1):
Posted by: tankoman 228

79611956

Date: 2025-05-08 08:06:50
Score: 3
Natty:
Report link

Apparently 30 RPM does not mean being able to send 30 simultaneously. Requests need to be somewhat spread out over time. As such, adding a small delay between each request fixes my problem.

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

79611954

Date: 2025-05-08 08:06:50
Score: 3
Natty:
Report link

I'd like to share a handy website that helps you quickly check your browser, screen, and viewport resolution sizes. It's a great tool for accurate testing across devices.

Check it out below and find your exact dimensions: https://shortformof.com/all-tools-collection/browser-screen-viewport-resolution- checker/

Thanks!

Reasons:
  • Blacklisted phrase (0.5): Thanks
  • Blacklisted phrase (0.5): Check it out
  • Low length (0.5):
  • No code block (0.5):
  • Low reputation (1):
Posted by: Divyesh Sapariya

79611942

Date: 2025-05-08 07:59:48
Score: 0.5
Natty:
Report link

I created a new class to wrap the title and image in a way that suits my needs, as shown below:

public class CarouselItemHomePage
{
    public string Title { get; set; }
    public string Image { get; set; }
}

Next, I declared an ObservableCollection of this class and bound it to a CarouselView in XAML like this:

<CarouselView ItemsSource="{Binding CarouselItems}"
              HeightRequest="200"
              IndicatorView="CrIndicator"
              Loop="True">
    <CarouselView.ItemTemplate>
        <DataTemplate x:DataType="model:CarouselItemHomePage">
            <Image Source="{Binding Image}"
                   Aspect="AspectFill"
                   HeightRequest="200"/>
        </DataTemplate>
    </CarouselView.ItemTemplate>
</CarouselView>

In the OnAppearing method, I populate the collection as follows:

CarouselItems.Clear();
CarouselItems.Add(new CarouselItemHomePage
{
    Title = "cr1.png",
    Image = "cr1.png"
});
CarouselItems.Add(new CarouselItemHomePage
{
    Title = "cr2.png",
    Image = "cr2.png"
});
CarouselItems.Add(new CarouselItemHomePage
{
    Title = "cr3.png",
    Image = "cr3.png"
});
CarouselItems.Add(new CarouselItemHomePage
{
    Title = "cr4.png",
    Image = "cr4.png"
});

This setup works well for me. Thank you very much to everyone who has helped me with this. I truly appreciate your support and guidance.

Reasons:
  • Blacklisted phrase (0.5): Thank you
  • Long answer (-1):
  • Has code block (-0.5):
  • Self-answer (0.5):
  • Low reputation (1):
Posted by: hateemel

79611936

Date: 2025-05-08 07:53:46
Score: 6.5 🚩
Natty: 4.5
Report link

We have the same issue with our App - which has now been removed from play store.

Apparently - "Google Play Store does not allow apps whose primary purpose is to display a website's content using a webview"

However...

I also note: "Webview apps such as Facebook, Instagram, and Twitter are commonplace"

double standard?

Reasons:
  • No code block (0.5):
  • Me too answer (2.5): have the same issue
  • Ends in question mark (2):
  • Unregistered user (0.5):
  • Low reputation (1):
Posted by: mark r

79611926

Date: 2025-05-08 07:46:44
Score: 1
Natty:
Report link
 .box {
  width: 100px;
  height: 100px;
  background: red;
  transform: none;
  will-change: transform;
  transition: transform 0.5s ease;
}

.box:hover {
  transform: translateX(200px) rotate(45deg);
}
Reasons:
  • Low length (0.5):
  • Has code block (-0.5):
  • Low reputation (1):
Posted by: Sekhar Chaudhary

79611922

Date: 2025-05-08 07:45:44
Score: 0.5
Natty:
Report link

I think you've just forgotten to import the Route type in src/pages/home.rs

use create::app::Route;

I was able to replicate this problem in my dioxus app by commenting out this statement in a similar place.

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

79611921

Date: 2025-05-08 07:45:44
Score: 1.5
Natty:
Report link

I am too using the tailwindcss v4 with NgPrime. soo i got fix by adding this line to the angular.json file at style section.

"styles": [
"src/styles.scss",
"./node_modules/tailwindcss-primeui/v4/index.css"
],

and style scss file should look like this.

@use 'tailwindcss';
@use 'primeicons/primeicons.css';

as you can see i am using @use because @import can't be use after new ruleset for scss or sass.It is working for me.

Reasons:
  • Has code block (-0.5):
  • User mentioned (1): @use
  • User mentioned (0): @import
  • Low reputation (1):
Posted by: shashoto laha

79611915

Date: 2025-05-08 07:38:41
Score: 1
Natty:
Report link

You can find beginner-friendly and exam-oriented Java notes in Hindi at the following resources:

  1. NotesMedia.in – Java Notes in Hindi
    NotesMedia offers well-structured and easy-to-understand Java notes specifically for BCA and B.Tech students. The content is available in Hindi and covers topics like:

    • Object-Oriented Programming (OOP) concepts

    • Classes, Objects, Inheritance, Polymorphism

    • Syntax and coding examples in Java

    • Short theory and MCQs for exam prep

    The platform is student-friendly and provides both PDF downloads and web-view options.

  2. YouTube Channels
    If you prefer video explanations, check out Hindi-language Java tutorials from channels like:

    • CodeWithHarry (Introductory Java in Hindi)

    • Geeky Shows

    • Easy Engineering Classes

  3. GitHub Repositories
    Some users upload study material and college notes on GitHub. You can search for Java notes Hindi or BCA Java to find repositories with PDFs or markdown files.


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

79611911

Date: 2025-05-08 07:37:41
Score: 3
Natty:
Report link

You need to add the fields in FlutterFlow as well which you have added in firebase collection. This fields will connect with firebase collection fields. See the image for reference.enter image description here

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

79611901

Date: 2025-05-08 07:34:40
Score: 2
Natty:
Report link
$a=11;
while($a<=18){
   echo $a."-";
    $a=$a+2; 
}
echo $a;
Reasons:
  • Low length (1.5):
  • Has code block (-0.5):
  • Low reputation (1):
Posted by: Ayesha Zahoor

79611900

Date: 2025-05-08 07:34:39
Score: 6 🚩
Natty:
Report link

I am facing the same issues, But I don‘t how do fix that,....

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

79611898

Date: 2025-05-08 07:33:39
Score: 2.5
Natty:
Report link

php.ini uncoment upload_tmp_dir and entering right value was solution for me

upload_tmp_dir = C:\laragon\tmp

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

79611895

Date: 2025-05-08 07:31:38
Score: 0.5
Natty:
Report link
import { Platform } from "react-native";

const isIpad = Platform.OS === 'ios' && Platform.isPad
Reasons:
  • Low length (1):
  • Has code block (-0.5):
Posted by: Henning Hall

79611893

Date: 2025-05-08 07:30:38
Score: 1
Natty:
Report link

So I worked this one out but posted it anyway because I couldn't find the question originally.

YES, it is intended behaviour. It's not at all an issue with Cobra, it's being converted before being passed as an argument.

In bash: echo $$ returns 2084.

Someone smarter than me might be able to give a more in-depth explanation but I suspect it has something to do with Shell Parameter Expansion

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

79611881

Date: 2025-05-08 07:21:35
Score: 2
Natty:
Report link

-: Missing closing tags breaks layouts.

Inline styles clutter HTML.

Not testing on multiple devices hides issues.

Copy-pasting without understanding causes bugs.

Skipping version control or leaving debug logs complicates fixes. These are common early mistakes. Practice cleaning up code, using stylesheets, testing responsively, and tracking changes. Soon, your workflow will improve and you’ll avoid these pitfalls naturally. Remember to comment wisely, validate inputs, and keep learning with small steps.

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

79611874

Date: 2025-05-08 07:16:34
Score: 1.5
Natty:
Report link

I encountered this same question while building my own logger. I found that while the logger code itself could be very fast, the performance was ultimately limited by disk I/O speed (writing to the HDD). The logger's true potential couldn't be realized due to these hardware constraints.

https://pypi.org/project/prismalog/

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

79611872

Date: 2025-05-08 07:14:33
Score: 0.5
Natty:
Report link

I’ve dealt with a similar challenge while working with Dynamics 365 CE, so here’s what I’ve found helpful:

Field Descriptions in Dynamics 365 CE
You can view field descriptions by going to Advanced Settings > Customizations > Customize the System > Entities > [Entity Name] > Fields. Select a field to see its description (if defined by the admin or developer).

Backend Database Identification
If you're using Dynamics 365 Online, it’s built on Dataverse (formerly Common Data Service).
For on-premise, the backend is typically Microsoft SQL Server.
List of Queried Tables
Use tools like XrmToolBox (especially the Metadata Browser or FetchXML Builder plugins) Plug-in Trace Logs or Power Platform Admin Center. These help track activity and identify frequently used tables.
Tables Created by Dynamics 365 Not in DB
Some tables are virtual or system-managed and may not appear directly in the backend database. These can be explored via the Dataverse Web API or the Power Platform SDK.
**
Column Descriptions & Business Contex**t
The XrmToolBox’s Metadata Document Generator is very useful. It lets you export column descriptions, data types, and more—especially useful for documentation or business analysis.

For a more structured overview of Dynamics 365 architecture and services, I’d recommend checking this out: Microsoft Dynamics 365 Services. It provides solid foundational insight, especially if you’re bridging technical and business perspectives.

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

79611858

Date: 2025-05-08 07:05:30
Score: 1.5
Natty:
Report link

example UPDATE My_Table WHERE 1=2

It is clear that will be no locks on the rows.
But there can be TM lock on the table to prevent DDL.
It seems logical that TM lock could be put on table only on the first real update.
But probaly it put in the begining no matter if it will not update anything.
If update does full scan of big table and it last very long and in the middle of update somebody drops filed you are using in your query.
But if apropriate index exists then probably first index can be scaned and if key is found only then TM is put on the table.

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

79611857

Date: 2025-05-08 07:05:29
Score: 9 🚩
Natty: 4.5
Report link

Is there any updates on this issue? I have the exact same error

Reasons:
  • Blacklisted phrase (1): Is there any
  • Blacklisted phrase (1): any updates on
  • Low length (1.5):
  • No code block (0.5):
  • Me too answer (2.5): I have the exact same error
  • Contains question mark (0.5):
  • Single line (0.5):
  • Starts with a question (0.5): Is there any
  • Low reputation (1):
Posted by: Merna Hesham

79611850

Date: 2025-05-08 07:03:28
Score: 5
Natty:
Report link

I'm trying to add dependency in pom but when I'm updating my project or pom it is not showing in maven dependency section I restart project as well as system still not working

Reasons:
  • Blacklisted phrase (2): still not working
  • Low length (1):
  • No code block (0.5):
  • Single line (0.5):
  • Low reputation (1):
Posted by: Pranjul Kesharwani

79611838

Date: 2025-05-08 06:55:25
Score: 4
Natty: 4.5
Report link

This tool helps to find the language/framework used to build the apk.

https://github.com/EngineerDanny/apk-framework-detector

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

79611836

Date: 2025-05-08 06:53:25
Score: 1
Natty:
Report link

This is fixed in iOS 18.4. I have implemented this workaround for version 18.0 to 18.3:

if #available(iOS 18.4, *) {
} else if #available(iOS 18, *),
          UIDevice.current.userInterfaceIdiom == .pad,
          horizontalSizeClass == .regular {

    Rectangle()
        .fill(.regularMaterial)
        .frame(height: 50)
}
Reasons:
  • Has code block (-0.5):
  • Self-answer (0.5):
  • Low reputation (1):
Posted by: Jan

79611835

Date: 2025-05-08 06:52:24
Score: 3.5
Natty:
Report link

That was probably the Jupiter fees wasn't it ? If Im not wrong it's about 0.015$. I dont think it's a slippage of 0.015/18

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

79611831

Date: 2025-05-08 06:50:24
Score: 3
Natty:
Report link

current versions don't have VS version compatible with macOS. the best choice for it is Jetbrains Rider. it supports many VS features

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

79611819

Date: 2025-05-08 06:40:22
Score: 1
Natty:
Report link

Vite is a fast build tool and development server for modern JavaScript frameworks like React, Vue, and Svelte. Uses Rollup for optimized production builds. Extremely developer-friendly with a minimal config setup.

SWC (Speedy Web Compiler) is a super-fast JavaScript/TypeScript compiler written in Rust. Supports JSX, TypeScript, and modern JavaScript features. Can be used in bundlers like Webpack, Vite, or standalone.

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

79611818

Date: 2025-05-08 06:39:21
Score: 8.5 🚩
Natty: 4
Report link

now i have a big problem with this method
i have 3 firefox installed on my pc and when i want to start each one with batch file i use

cd "C:\mozilla\3\"

start firefox.exe

and it works just fine but can any one tell me how to tell batch file witch mozilla to kill? like i want a batch file to close mozila number 1 and 3 (especified by location)
is taht posible?

Reasons:
  • Blacklisted phrase (1.5): tell me how to
  • RegEx Blacklisted phrase (2.5): can any one tell me how
  • RegEx Blacklisted phrase (1): i want
  • No code block (0.5):
  • Ends in question mark (2):
  • Low reputation (1):
Posted by: Mostafa Mohseni

79611816

Date: 2025-05-08 06:38:20
Score: 3.5
Natty:
Report link

it would be immensly helpful if you post the whole error message :)

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

79611809

Date: 2025-05-08 06:34:19
Score: 5.5
Natty: 5.5
Report link

Currently running into the same issue, could you find a solution?

Reasons:
  • Low length (1.5):
  • No code block (0.5):
  • Ends in question mark (2):
  • Single line (0.5):
  • Low reputation (1):
Posted by: Dominik Bünzli

79611808

Date: 2025-05-08 06:33:18
Score: 1.5
Natty:
Report link

I was also stuck here even with AntD v5.23. FIX- Instead of using mode use picker

Correct ✅:

 <DatePicker picker={"year"} />

Wrong ❌:

 <DatePicker mode={"year"} />
Reasons:
  • Low length (1):
  • Has code block (-0.5):
  • Low reputation (1):
Posted by: Akshay Rajput

79611785

Date: 2025-05-08 06:16:13
Score: 12.5
Natty: 7.5
Report link

I'm having the exact same problem as you, did you solve it?

Reasons:
  • RegEx Blacklisted phrase (3): did you solve it
  • RegEx Blacklisted phrase (1.5): solve it?
  • Low length (1.5):
  • No code block (0.5):
  • Me too answer (2.5): I'm having the exact same problem
  • Ends in question mark (2):
  • Single line (0.5):
  • Low reputation (1):
Posted by: G Rivia

79611769

Date: 2025-05-08 05:57:09
Score: 2
Natty:
Report link

I had to remove the following rm -R /tmp/.chromium/

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

79611756

Date: 2025-05-08 05:33:04
Score: 0.5
Natty:
Report link

I know this was asked 2 years ago, but I have just experienced the same issue, and in my case it had nothing to do with using the free Community edition as mine was only 3 pages max.

The issue for me was that I had to assign the converter.Options.WebPageHeight to a non-zero value. O is the default, but this cannot be used if your page contains specific components (e.g. frames).

My estimations of the WebPageHeight (in pixels) had become too small over time as I added content but had not updated this value. The result was truncated content in the converted PDF

Updating this field with an appropriate value fixed this issue for me

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

79611745

Date: 2025-05-08 05:19:00
Score: 1.5
Natty:
Report link

What you can do is after creating the chart, go to chart design>change colors.
Over there you can go to monochromatic section from where you can select and assign which shade of colors works best for you based on the value points.
Hope that helps you out !

Reasons:
  • Whitelisted phrase (-1): Hope that helps
  • Low length (0.5):
  • No code block (0.5):
  • Starts with a question (0.5): What you can
  • Low reputation (1):
Posted by: Anurag Pandey

79611742

Date: 2025-05-08 05:10:58
Score: 2
Natty:
Report link

Just figured it out for my case scenario. I did npm install in the root of my project rather than in the functions folder. Once i did it inside the functions folder, firebase deploy worked just fine :)

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

79611739

Date: 2025-05-08 05:05:56
Score: 1.5
Natty:
Report link

Had this issue for a while

    {
  "angularCompilerOptions": {
    "skipLibCheck": true
  }
}

Just made skipLibCheck as true, What it does is skips for any third party library check and just runs the application anyways

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

79611731

Date: 2025-05-08 04:51:54
Score: 1
Natty:
Report link

The error occurs because AWS Glue 3.0 PythonShell jobs have specific Python package version requirements that must be met. To fix this, you can create a requirements.txt file with compatible package versions. Then,

create a Python script that uses these packages

  1. Create a Glue job with the following configuration

  2. Upload your script to S3

  3. Create the Glue job using AWS CLI

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

79611724

Date: 2025-05-08 04:31:50
Score: 1.5
Natty:
Report link

Go to ~/Library/Caches/org.swift.swiftpm and delete it. Go back to Xcode and do File-> Packages-> Reset Package Caches. This works for me in Xcode 16.1

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

79611723

Date: 2025-05-08 04:31:50
Score: 1
Natty:
Report link

Try restarting or logging off first and then starting your container again when you log back in. It has to do with permissions. So,

sudo shutdown -r now

or

sudo pkill -u username

Then

crc start

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

79611709

Date: 2025-05-08 04:10:45
Score: 1.5
Natty:
Report link

Workaround: You can ask the model in a prompt that when it finishes thinking, it will write you some sign that you decide on, say <thinking_end> and then you can easily do a split

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