79503148

Date: 2025-03-12 09:37:50
Score: 7.5 🚩
Natty: 6.5
Report link

@wjandrea great answer. Thanks!

Reasons:
  • Blacklisted phrase (0.5): Thanks
  • Low length (2):
  • No code block (0.5):
  • Unregistered user (0.5):
  • User mentioned (1): @wjandrea
  • Has no white space (0.5):
  • Single line (0.5):
  • Looks like a comment (1):
  • Low reputation (1):
Posted by: MrToro

79503146

Date: 2025-03-12 09:37:50
Score: 2.5
Natty:
Report link

The issue is that you aren't updating the state with the fetched data, so nothing is displayed on the screen. You need to store the fetched data in a state variable and render it in the UI. Also, you're not handling errors properly, so if the fetch fails, you won't see any feedback.

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

79503139

Date: 2025-03-12 09:35:49
Score: 0.5
Natty:
Report link

Thank you @Vitaliy Kurokhtin for the comment.

The reason you're facing the issue is due to wrong syntax, APIM requires expressions to be enclosed in @(...), not "@{...}".

Replace your existing policy with the following,


<inbound>
    <base />
    <set-query-parameter name="timestamp" 
        value="@(Uri.EscapeDataString(DateTime.UtcNow.ToString(&quot;yyyyMMddHHmmssfff&quot;) + &quot;+0000000&quot;))" />
</inbound>

Please refer MsDoc1, MsDoc2 for better understanding of APIM policy expression, Set query string parameter respectively.

Reasons:
  • Blacklisted phrase (0.5): Thank you
  • Long answer (-0.5):
  • Has code block (-0.5):
  • User mentioned (1): @Vitaliy
Posted by: Sirra Sneha

79503130

Date: 2025-03-12 09:30:48
Score: 10.5 🚩
Natty: 6
Report link

were you able to solve this issue? I am getting quite a similar problem but following the training. Cheers!

Reasons:
  • Blacklisted phrase (1): Cheers
  • Blacklisted phrase (1): you able to solve
  • RegEx Blacklisted phrase (1.5): solve this issue?
  • RegEx Blacklisted phrase (3): were you able
  • Low length (1):
  • No code block (0.5):
  • Contains question mark (0.5):
  • Unregistered user (0.5):
  • Single line (0.5):
  • Low reputation (1):
Posted by: Mila Saltikova

79503128

Date: 2025-03-12 09:30:48
Score: 2.5
Natty:
Report link

I was able to resolve the problem by creating a .NET MAUI project with Visual Studio 2022 Community instead of the CLI. I then added https://api.nuget.org/v3/index.json as a package source called "Nuget" in Tools > Nuget Package Manager > Package Manager Settings > Package Sources. I probably then restarted Visual Studio. I am not sure how to resolve this with the CLI by itself. I am able to build and run / test .NET MAUI applications now.

Edit: I just noticed the comment detailing how to accomplish this with the CLI. Thank you.

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

79503126

Date: 2025-03-12 09:28:47
Score: 1.5
Natty:
Report link

new Microsoft.Office.Interop.Excel.ApplicationClass() works in X++.

new Microsoft.Office.Interop.Excel.Application() NOT!

Microsoft.Office.Interop.Excel.Application() is defined as interface. X++ cannot use new to make an instance. C# new has special handling for this COM interface.

application = new Microsoft.Office.Interop.Excel.ApplicationClass() do not works for all methods, for example:

Application.union(range1,range2) does work with ApplicationClass.

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

79503109

Date: 2025-03-12 09:22:45
Score: 12.5 🚩
Natty:
Report link

I have the same issue. Have you solved it?

Reasons:
  • Blacklisted phrase (2): Have you solved it
  • Blacklisted phrase (1): I have the same issue
  • RegEx Blacklisted phrase (1.5): solved it?
  • Low length (1.5):
  • No code block (0.5):
  • Me too answer (2.5): I have the same issue
  • Ends in question mark (2):
  • Single line (0.5):
  • Low reputation (1):
Posted by: 何常凯

79503105

Date: 2025-03-12 09:19:45
Score: 0.5
Natty:
Report link

For those that have landed here while trying to solve the same problem for MySQL, the INSERT statement has to go before the CTE:

-- MySQL code! Not SQL Server
INSERT INTO tablea(a,b)
WITH alias AS
(
    SELECT y,z FROM tableb
)
SELECT y, z 
FROM alias
Reasons:
  • Low length (0.5):
  • Has code block (-0.5):
  • Low reputation (0.5):
Posted by: Steven Cromb

79503099

Date: 2025-03-12 09:16:44
Score: 1.5
Natty:
Report link

Thanks. It helped. I used it with

String content = new String(file.getBytes());

ObjectMapper mapper = new ObjectMapper();

StudentDTO studentDTO = mapper.readValue(contect, StudentDTO);

@JsonIgnoreProperties(ignoreUnknown = true)

public class StudentDTO {

}

Reasons:
  • Blacklisted phrase (0.5): Thanks
  • Low length (0.5):
  • Has code block (-0.5):
  • Low reputation (1):
Posted by: Muhammad Haroon

79503097

Date: 2025-03-12 09:14:43
Score: 1
Natty:
Report link

In duck_tester.py, try

from src import *

instead of

from src.get_ducks_for_justice import get_ducks 
Reasons:
  • Low length (1):
  • Has code block (-0.5):
  • Low reputation (0.5):
Posted by: Coco Q.

79503091

Date: 2025-03-12 09:12:43
Score: 4.5
Natty: 5
Report link

Thanks alot. This work directly for me!

Reasons:
  • Blacklisted phrase (0.5): Thanks
  • Low length (2):
  • No code block (0.5):
  • Single line (0.5):
  • Low reputation (1):
Posted by: ajagelund

79503087

Date: 2025-03-12 09:10:42
Score: 2
Natty:
Report link

Angular 16.2.12 has indirect dependencies to find-up versions 4.1.0 and 6.3.0. See here: https://deps.dev/npm/%40angular-devkit%2Fbuild-angular/16.2.12/dependencies

Adding a resolution to my package.json solved this for me.

{
  "dependencies": { ... },
  "devDependencies": { ... },
  "resolutions": {
    "find-up": "6.3.0"
  }
}
Reasons:
  • Probably link only (1):
  • Low length (0.5):
  • Has code block (-0.5):
  • Low reputation (1):
Posted by: hardtmedia

79503072

Date: 2025-03-12 09:03:41
Score: 2
Natty:
Report link

You can add below line in your gradle.properties file:

android.enableR8.fullMode=false

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

79503069

Date: 2025-03-12 09:02:41
Score: 4
Natty:
Report link

https://stackoverflow.com/a/62530710/26711102

He technically did what I wanted, but with

physics: AlwaysScrollableScrollPhysics(
  parent: BouncingScrollPhysics(),
),

it behaves strangely, jerking around. Is there still no good way to do this?

Reasons:
  • Blacklisted phrase (1): stackoverflow
  • Low length (0.5):
  • Has code block (-0.5):
  • Ends in question mark (2):
  • Low reputation (1):
Posted by: Maksim Sinitsyn

79503063

Date: 2025-03-12 08:58:39
Score: 5.5
Natty:
Report link

Thanks to "Lastchance" for your hint. And Thanks to "Kikon" for the detailed explanation. @Kikon: I have modified your script to see the difference between synchronous and sequential RK4 integration of system 1 &2.

import numpy as np
import matplotlib.pyplot as plt
import pandas as pd
import matplotlib.pyplot as plt




# Parameter values
tau=1.02 
f_1=0.16 
f_2=tau*f_1

m1 = 2000000 # mass1
m2 = 20000 # mass2

# Spring constants
k1 = m1*pow(2*np.pi*f_1,2)
k2 = m2*pow((2*np.pi*f_2),2)


# damping
d1 = (0.04/2/np.pi)*2*pow(k1*m1,0.5)



d_d1=6000
l_p=9.81/pow(2*np.pi*f_2,2)
b=0.3
d2=d_d1*pow((l_p-b)/l_p,2)

def system1(x1, y1, x2, y2):
    return (-d1 * y1 - k1 * x1 + k2 * (x2 - x1) + d2 * (y2 - y1)) / m1

def system2(x1, y1, x2, y2):
    return (-d2 * (y2 - y1) - k2 * (x2 - x1)) / m2

def runge_kutta_4(f1, f2, x1, y1, x2, y2, h):
    k1x1 = y1
    k1x2 = y2
    k1y1 = f1(x1, y1, x2, y2)
    k1y2 = f2(x1, y1, x2, y2)

    k2x1 = y1 + h * k1y1 / 2
    k2x2 = y2 + h * k1y2 / 2
    k2y1 = f1(x1 + h * k1x1 / 2, y1 + h * k1y1 / 2, x2 + h * k1x2 / 2, y2 + h * k1y2 / 2)
    k2y2 = f2(x1 + h * k1x1 / 2, y1 + h * k1y1 / 2, x2 + h * k1x2 / 2, y2 + h * k1y2 / 2)

    k3x1 = y1 + h * k2y1 / 2
    k3x2 = y2 + h * k2y2 / 2
    k3y1 = f1(x1 + h * k2x1 / 2, y1 + h * k2y1 / 2, x2 + h * k2x2 / 2, y2 + h * k2y2 / 2)
    k3y2 = f2(x1 + h * k2x1 / 2, y1 + h * k2y1 / 2, x2 + h * k2x2 / 2, y2 + h * k2y2 / 2)

    k4x1 = y1 + h * k3y1
    k4x2 = y2 + h * k3y2
    k4y1 = f1(x1 + h * k3x1, y1 + h * k3y1, x2 + h * k3x2, y2 + h * k3y2)
    k4y2 = f2(x1 + h * k3x1, y1 + h * k3y1, x2 + h * k3x2, y2 + h * k3y2)

    x1_next = x1 + h * (k1x1 + 2 * k2x1 + 2 * k3x1 + k4x1) / 6
    x2_next = x2 + h * (k1x2 + 2 * k2x2 + 2 * k3x2 + k4x2) / 6
    y1_next = y1 + h * (k1y1 + 2 * k2y1 + 2 * k3y1 + k4y1) / 6
    y2_next = y2 + h * (k1y2 + 2 * k2y2 + 2 * k3y2 + k4y2) / 6

    acc1_next = f1(x1_next, y1_next, x2_next, y2_next)
    acc2_next = f2(x1_next, y1_next, x2_next, y2_next)

    return x1_next, x2_next, y1_next, y2_next, acc1_next, acc2_next

# runge kutta 4th integration, 
'''
x1: system 1 displacement
y1: system1 velocity
acc1: system 1 acceleration
x2: system 2 displacement
y2: system2 velocity
acc2: system 2 acceleration

h: time step

'''
x1 = 0.5
y1 = 0.0
x2 = 0.25
y2 = 0.0

h = 0.02
numpoints = 5000
time = 0

temp1 = system1(x1, y1, x2, y2)
temp2 = system1(x1, y1, x2, y2)

df = pd.DataFrame(index=range(1 + numpoints), columns=range(7))

df.iloc[0] = [time, x1, y1, temp1, x2, y2, temp2]

for i in range(numpoints):
    x1, x2, y1, y2, acc1, acc2 = runge_kutta_4(system1, system2, x1, y1, x2, y2, h)
    time = time + h
    df.iloc[i + 1] = [time, x1, y1, acc1, x2, y2, acc2]

# runge kutta 4th integration - test with sequential integration of system 1 and system 2
x1 = 0.5
y1 = 0.0
x2 = 0.25
y2 = 0.0

h = 0.02
numpoints = 5000
time = 0

temp1 = system1(x1, y1, x2, y2)
temp2 = system1(x1, y1, x2, y2)

df_seq = pd.DataFrame(index=range(1 + numpoints), columns=range(7))

df_seq.iloc[0] = [time, x1, y1, temp1, x2, y2, temp2]

for i in range(numpoints):
    x1, temp_x2, y1, temp_y2, acc1, temp_acc2 = runge_kutta_4(system1, system2, x1, y1, x2, y2, h)
    temp_x1, x2, temp_y1, y2, temp_acc1, acc2 = runge_kutta_4(system1, system2, x1, y1, x2, y2, h)
    time = time + h
    df_seq.iloc[i + 1] = [time, x1, y1, acc1, x2, y2, acc2]


# Create plots with pre-defined labels.
fig, ax = plt.subplots()
ax.plot(df.loc[:,0], df.loc[:,1],label='displacement TT_synch') 
ax.plot(df_seq.loc[:,0], df.loc[:,1],'--',label='displacement TT_seq') 


legend = ax.legend(loc='upper right', shadow=None, fontsize='small')
ax.set_xlabel('time [s]', fontdict=None, labelpad=None, loc='center')
ax.set_ylabel('pos [m]', fontdict=None, labelpad=None, loc='center')    

the result shows that there is no difference between synchron and sequential calculation. synchron vs sequential

Therefore I have got below conclusions:

  1. the deviation I asked at the beginning ("odeint vs runge-kutta-4th") is due to incorrect differential equations
  2. the synchronous and sequential calculation for system 1 &2 using RK4 have no impact on calculation results.

What is your opinion?

Reasons:
  • Blacklisted phrase (0.5): Thanks
  • Blacklisted phrase (1): What is your
  • Long answer (-1):
  • Has code block (-0.5):
  • Ends in question mark (2):
  • User mentioned (1): @Kikon
  • Self-answer (0.5):
  • Looks like a comment (1):
  • Low reputation (1):
Posted by: Daniel Liu

79503061

Date: 2025-03-12 08:57:39
Score: 0.5
Natty:
Report link

In the code given the system path is set to '../tests' for the imported modules, as this is where duck_tester.py is being run from. When the imported modules themselves try to import, they are looking in '../tests' instead of '../src'. To address this, before importing modules within duck_tester.py, change the system path to '../src':

import sys
sys.path.append('../src')
Reasons:
  • Has code block (-0.5):
  • Self-answer (0.5):
  • Low reputation (0.5):
Posted by: acolls_badger

79503058

Date: 2025-03-12 08:56:39
Score: 0.5
Natty:
Report link

The problem is that sum_over_time returns a single value which is the total sum of all data points in the interval, whereas what you want is - for each timestamp - the sum up to that timestamp. That is unfortunately not possible in Prometheus alone.

But Grafana has support for that using an "Add field from calculation" transformation using "Cumulative functions" as mode . See https://stackoverflow.com/a/79453819/574351

Reasons:
  • Blacklisted phrase (1): stackoverflow
  • No code block (0.5):
  • High reputation (-1):
Posted by: Nicola Ambrosetti

79503054

Date: 2025-03-12 08:55:38
Score: 0.5
Natty:
Report link

I finally found the solution:

I had solid queue set up for development but not solid cable.

I believe that when using active job, the updates go through solid cable and not solid queue.

So setting up solid cable (on top up the setup of solid queue that i already had) fixed my issue

Reasons:
  • Whitelisted phrase (-2): solution:
  • Low length (0.5):
  • No code block (0.5):
  • Self-answer (0.5):
  • Low reputation (1):
Posted by: elviajero34

79503046

Date: 2025-03-12 08:51:37
Score: 1
Natty:
Report link

Above given path I couldn't find on my Windows 11 m/c. I run the command where python which returned path where python exe is present then one folder above at the returned path there is script folder which is having checkov cmd

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

79503043

Date: 2025-03-12 08:50:37
Score: 0.5
Natty:
Report link

You could try using COALESCE operator as given below

SELECT 
    c1.ctr_id,
    c1.ctr_id_parent,
    COALESCE(c1.amount, c2.amount) AS amount
FROM fk1 c1
LEFT JOIN fk1 c2
ON c1.ctr_id_parent = c2.ctr_id;
Reasons:
  • Low length (0.5):
  • Has code block (-0.5):
  • Low reputation (0.5):
Posted by: MubarakZade

79503021

Date: 2025-03-12 08:43:35
Score: 2
Natty:
Report link

I understood how to do it. Rather than:

IRubyObject io = adapter.eval(runtime, <scriptContent>);

I have to do:

JavaEmbedUtils.EvalUnit evalUnit = adapter.parse(runtime, <scriptContent>, <file name>, 1);
IRubyObject io = evalUnit.run();
Reasons:
  • Blacklisted phrase (1): I have to do
  • Low length (0.5):
  • Has code block (-0.5):
  • Self-answer (0.5):
  • Low reputation (0.5):
Posted by: Hervé Girod

79503019

Date: 2025-03-12 08:43:35
Score: 1
Natty:
Report link

SET @@sql_mode=(SELECT REPLACE(@@sql_mode,'ONLY_FULL_GROUP_BY',''));

It worked for me

Reasons:
  • Whitelisted phrase (-1): It worked
  • Whitelisted phrase (-1): worked for me
  • Low length (1.5):
  • No code block (0.5):
  • Low reputation (1):
Posted by: Rishu Tripathi

79503018

Date: 2025-03-12 08:42:35
Score: 3.5
Natty:
Report link

We have written a comprehensive article on Medium about how to use and implement MVVM in Flutter. Here is the link: https://medium.com/p/95be868b18b9

Reasons:
  • Blacklisted phrase (0.5): medium.com
  • Blacklisted phrase (1): Here is the link
  • Low length (1):
  • No code block (0.5):
  • Single line (0.5):
Posted by: LucaRoverelli

79503011

Date: 2025-03-12 08:39:34
Score: 2
Natty:
Report link
docker run -it openjdk:25-ea-jdk bash
Reasons:
  • Low length (2):
  • Has code block (-0.5):
  • Single line (0.5):
Posted by: Krzysztof Tomaszewski

79503001

Date: 2025-03-12 08:34:32
Score: 4
Natty:
Report link

If you read this you are gay... (3 people are gay for the moment)

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

79502994

Date: 2025-03-12 08:31:32
Score: 1
Natty:
Report link

Windows: in my .aws\credentials file I had credentials with a header [somename]. It wored OK when I added the header [default]. In the default header I copied the same values from the [somename]

So, when you use AWS functions that automatically get credentials from .aws\credentials, those function are looking for the credentials under the header [default].

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

79502990

Date: 2025-03-12 08:28:31
Score: 3.5
Natty:
Report link

I try to remove "using namespace" and resolve this problem, maybe you can try.

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

79502986

Date: 2025-03-12 08:23:30
Score: 0.5
Natty:
Report link

Attach an event listener to the input element to prevent default behavior of certain keys in input element.

document.getElementById('input-element-id').addEventListener('keydown', function(e) {
   if (e.key === 'ArrowUp' || e.key === 'ArrowDown') {
      e.preventDefault();
   }
});
Reasons:
  • Low length (0.5):
  • Has code block (-0.5):
  • Low reputation (0.5):
Posted by: vicki

79502985

Date: 2025-03-12 08:23:30
Score: 2.5
Natty:
Report link

What queries do you use? It would be nice to have examples of "bad" ones. Some queries, like grouping, will rather regress than accelerate from sharding.

Also, do you have enough resources (processor, disk performance)? If you run into them, you also would not get any benefits, but only regression due to the fact that aggregation requires additional small resources.

Trying to shard on such a small volume looks like you're trying to do something wrong.

Reasons:
  • No code block (0.5):
  • Contains question mark (0.5):
  • Starts with a question (0.5): What
  • Low reputation (1):
Posted by: Oleksandr Tkachuk

79502976

Date: 2025-03-12 08:18:29
Score: 2
Natty:
Report link

Based on Oracle documentation, the requirement for setting SQLNET.AUTHENTICATION_SERVICES differs significantly between Windows and Linux operating systems. For Windows installations of Oracle 19C, it is indeed mandatory to configure this parameter with the (NTS) value to enable secure authentication services mikedietrichde.com. However, this parameter is not required for Oracle Linux installations and can be removed entirely(or configure this parameter with the (NONE) value).

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

79502973

Date: 2025-03-12 08:17:29
Score: 0.5
Natty:
Report link

You can create a new self-signed certificate using this command (replace the values in angle brackets):

New-SelfSignedCertificate -Type Custom -Subject "CN=<PublisherName>" -KeyUsage DigitalSignature -FriendlyName "<Certificate firendly name>" -CertStoreLocation "Cert:\CurrentUser\My" -TextExtension @("2.5.29.37={text}1.3.6.1.5.5.7.3.3", "2.5.29.19={text}")

To see the certificates you've created, use this command:

Get-ChildItem "Cert:\CurrentUser\My" | Format-Table Thumbprint, Subject, FriendlyName

I've taken this information from Publish a packaged .NET MAUI app for Windows with the CLI; if copy-pasting the command from this comment doesn't work, try copying it directly from this article.

Reasons:
  • Blacklisted phrase (1): this article
  • Long answer (-0.5):
  • Has code block (-0.5):
  • Low reputation (0.5):
Posted by: tommat208

79502964

Date: 2025-03-12 08:10:28
Score: 2.5
Natty:
Report link

You need to append a space to the value when assigning it. replace $data = $_POST['textdata']; by $data = $_POST['textdata'] . ' ';

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

79502963

Date: 2025-03-12 08:09:27
Score: 1.5
Natty:
Report link

In my case, this issue was caused by using .com instead of .co in the URL of the Supabase endpoint.

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

79502960

Date: 2025-03-12 08:08:27
Score: 6 🚩
Natty: 4.5
Report link

same we trying can you suggest

We are tried to customize/override the extension template file. we want to override below extension and its originale path is

html/app/code/Webkul/Marketplace/view/frontend/templates/product/add.phtml

/html/app/code/Webkul/Marketplace/view/frontend/layout/marketplace_product_add.xml

Now we created a file structure to override this template with file but changes not appearing can you suggest what i missing.

html/app/design/frontend/Webkul/Marketplace/view/frontend/templates/product/add.phtml

html/app/design/frontend/Webkul/Marketplace/view/frontend/layout/marketplace_product_add.xml

Reasons:
  • RegEx Blacklisted phrase (2.5): can you suggest
  • RegEx Blacklisted phrase (2.5): can you suggest what
  • Long answer (-0.5):
  • No code block (0.5):
  • Low reputation (1):
Posted by: gourav

79502957

Date: 2025-03-12 08:06:26
Score: 0.5
Natty:
Report link

I now this is a bit old post but today I came across the same issue and was able to find a solution.

Just try to switch "remote ssh" plugin to "Pre-release" version from the extensions page and then restart the extension (or restart the vsc if you want but it is unnecessary, it worked after when I restart the extension).
Pre-release version

Reasons:
  • Whitelisted phrase (-1): it worked
  • No code block (0.5):
  • Low reputation (1):
Posted by: Ege BULUT

79502948

Date: 2025-03-12 08:02:25
Score: 1.5
Natty:
Report link

The python sys module has a field called sys.dont_write_bytecode If it is set to True "Python won’t try to write .pyc files on the import of source modules". See the doc here

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

79502940

Date: 2025-03-12 07:58:24
Score: 5
Natty:
Report link

This was fixed thanks to this python function found online: https://www.deanmalan.co.za/2023/2023-02-08-calculate-payfast-signature.html#solution-code

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

79502938

Date: 2025-03-12 07:54:23
Score: 1
Natty:
Report link

2025 and this problems still persists. I am using router.push in a Next JS project, with a slideshow, with custom cursor...same behavior as described above. Tried a few different workarounds, nothing worked so far.

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

79502934

Date: 2025-03-12 07:52:23
Score: 2.5
Natty:
Report link

If you want to filter out only dash, try this?

# grep -iw ^football01 | grep -v -

Reasons:
  • Whitelisted phrase (-1): try this
  • Low length (1.5):
  • No code block (0.5):
  • Contains question mark (0.5):
  • Low reputation (1):
Posted by: tedPao

79502930

Date: 2025-03-12 07:49:22
Score: 5.5
Natty: 4.5
Report link

I have the same problem in version 9.3 with Bootstrap 5. When the modal opens, the menu opens at the same time and the modal is disabled. It stays under the overlay and becomes practically inaccessible. I also used z-index and the same problem exists.

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

79502929

Date: 2025-03-12 07:49:22
Score: 0.5
Natty:
Report link

I had a little bit different scenario but I believe this should also work in your case:

At the installation folder where vs_community.exe resides, theres a folder Win10SDK_{version}. Click on it and choose winsdksetup.exe. I did it while the installer was open. When winsdksetup.exe finished, kill the installer via TaskManager, and start it again (I didn't restart my computer), the installation finished successfuly (after being stuck a little while on Microsot.Net.Core).

Reasons:
  • Whitelisted phrase (-1): in your case
  • No code block (0.5):
  • Low reputation (1):
Posted by: Dorin

79502928

Date: 2025-03-12 07:49:22
Score: 1.5
Natty:
Report link

This is an issue with the type of card. Both Mastercards and Visas failed for me, with new cards, and both virtual/physical company cards issued by Mastercard from Mercury. What worked was using my personal, physical credit card *first*, then changing it afterwards to the card I really wanted.

Reasons:
  • Low length (0.5):
  • No code block (0.5):
  • Single line (0.5):
Posted by: John Targaryen

79502924

Date: 2025-03-12 07:47:22
Score: 1.5
Natty:
Report link

Both Mastercards and Visas failed for me, with new cards, and both virtual/physical company cards issued by Mastercard from Mercury. What worked was using my personal, physical credit card *first*, then changing it afterwards to the correct card.

Reasons:
  • Low length (0.5):
  • No code block (0.5):
  • Single line (0.5):
Posted by: John Targaryen

79502921

Date: 2025-03-12 07:45:21
Score: 3
Natty:
Report link
A
1 $select * from table_name.txt
2 =A1. select(VALUE.split().group@i(~<=~[-1] !isalpha(~[-1])).max(~.len())>=5)

Try.DEMO

Reasons:
  • Low length (1):
  • No code block (0.5):
  • No latin characters (0.5):
  • Low reputation (1):
Posted by: sonma

79502915

Date: 2025-03-12 07:42:21
Score: 1.5
Natty:
Report link

I managed to work this around by

At the installation folder where vs_community.exe resides, theres a folder Win10SDK_{version}. Click on it and choose winsdksetup.exe. I did it while the installer was open. When winsdksetup.exe finished, kill the installer via TaskManager, and start it again (I didn't restart my computer), the installation finished successfuly (after being stuck a little while on Microsot.Net.Core).

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

79502908

Date: 2025-03-12 07:39:19
Score: 8 🚩
Natty: 6.5
Report link

can i fetch the time slot from the database and use it in my flow?

if yes how should my flow be?
now i have a simple form where the user will get a drop down and i have manually (from the meta dashboard) have given 4 time slots, but i want it to come from the database..

Can you please help me.

Reasons:
  • Blacklisted phrase (1): help me
  • RegEx Blacklisted phrase (3): Can you please help me
  • RegEx Blacklisted phrase (1): i want
  • Low length (0.5):
  • No code block (0.5):
  • Contains question mark (0.5):
  • Starts with a question (0.5): can i
  • Low reputation (1):
Posted by: Charan P

79502898

Date: 2025-03-12 07:33:17
Score: 1
Natty:
Report link

Add the object to append Value section and use 'insert dynamic content' for expressions. if you need strings, either place "" before and after the expression or @{...} couple the expression in curly brackets. We also don't use double quotes within expressions. It's single quotes for strings.

enter image description here

Reasons:
  • Low length (0.5):
  • Has code block (-0.5):
  • Single line (0.5):
  • Low reputation (0.5):
Posted by: Laviza Falak Naz

79502897

Date: 2025-03-12 07:33:17
Score: 5
Natty: 6
Report link

maybe u could try this plugin: npm i strapi-plugin-media-upload

Reasons:
  • Blacklisted phrase (1): this plugin
  • Whitelisted phrase (-1): try this
  • Probably link only (1):
  • Low length (2):
  • No code block (0.5):
  • Single line (0.5):
  • Low reputation (1):
Posted by: 柳小小

79502894

Date: 2025-03-12 07:33:17
Score: 1
Natty:
Report link

If using linux and you installed airflow in virtual environment

First activate the environment by typing in the terminal source airflow_env/bin/activate

Then run jupyter notebook from the same environment

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

79502888

Date: 2025-03-12 07:31:16
Score: 9
Natty: 7.5
Report link

How did you manage to attach a role directly to your workspace?

Reasons:
  • RegEx Blacklisted phrase (3): did you manage to
  • Low length (1.5):
  • No code block (0.5):
  • Ends in question mark (2):
  • Single line (0.5):
  • Starts with a question (0.5): How did you
  • Low reputation (1):
Posted by: Silvio Stoykov

79502885

Date: 2025-03-12 07:30:16
Score: 4.5
Natty: 5
Report link

another website is msdn itellyou https://msdn.itellyou.cn/

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

79502884

Date: 2025-03-12 07:30:16
Score: 1.5
Natty:
Report link

To fix this, I needed to write it this way:

    experimental: {
        turbo: {
            useSwcCss: true,
            rules: {
                ...,
                '*.{glsl,vs,fs,vert,frag}': {
                    loaders: ['raw-loader'],
                    as: '*.js',
                },
            },
        },
    },
Reasons:
  • Blacklisted phrase (0.5): I need
  • Has code block (-0.5):
  • Self-answer (0.5):
  • Low reputation (1):
Posted by: heskir

79502878

Date: 2025-03-12 07:27:15
Score: 1
Natty:
Report link

I use that extension now:

Open in GitHub, Bitbucket, Gitlab, VisualStudio.com - Visual Studio Marketplace

Extension for Visual Studio Code which can be used to jump to a source code line in Github, Bitbucket, Visualstudio.com and GitLab

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

79502871

Date: 2025-03-12 07:24:15
Score: 1
Natty:
Report link

For anyone landing on this you need to put the collection inside of query as well when using getDocs I believe.

import { collection, getDocs, query } from 'firebase/firestore'; 
        
const q = query(collection(db, 'incidents'), where('assignedUsers', 'array-contains', userStore.userId));
const querySnapshot = await getDocs(q);
Reasons:
  • Has code block (-0.5):
  • Self-answer (0.5):
  • Low reputation (1):
Posted by: user2826751

79502863

Date: 2025-03-12 07:22:14
Score: 1.5
Natty:
Report link

Based on my understanding of how CLOB works on Oracle.

Fetching a CLOB into a variable retrieves only a locator, not the full content. So chunking is necessary to efficiently read large data, prevent memory overflow, handle VARCHAR2 size limits, and improve performance.

Reasons:
  • Low length (0.5):
  • No code block (0.5):
  • Low reputation (0.5):
Posted by: Shanmuga Sundaram Natarajan

79502860

Date: 2025-03-12 07:19:14
Score: 3.5
Natty:
Report link

Updating Pycharm to 2024.3 resolved the problem.

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

79502857

Date: 2025-03-12 07:18:14
Score: 3
Natty:
Report link

You can see OpentelementryConfig example here:
https://github.com/mmushfiq/springboot-microservice-common-lib/blob/master/src/main/java/com/company/project/common/config/OpenTelemetryConfig.java

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

79502856

Date: 2025-03-12 07:17:13
Score: 3.5
Natty:
Report link

Same is with my code. I have converted literal to string using sparql, but swrl is not supporting it.

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

79502843

Date: 2025-03-12 07:12:12
Score: 2.5
Natty:
Report link

Use the keyboard shortcut Ctrl + } to indent the selected lines this is for Rstudio on my windows computer

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

79502837

Date: 2025-03-12 07:04:11
Score: 3.5
Natty:
Report link

But what if I declare the namespace in different .cpp files instead of in different header files? All AIs say its possible, but it is not working actually.

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

79502833

Date: 2025-03-12 07:03:11
Score: 1
Natty:
Report link

i tried a lot, only this helped me

if let views = navigationItem.searchController?.searchBar.searchTextField.subviews {
            for view in views {
                
    if type(of: view).description() == "_UISearchBarSearchFieldBackgroundView" {
                    view.alpha = 0
        }
    }
}
Reasons:
  • Low length (0.5):
  • Has code block (-0.5):
  • Low reputation (1):
Posted by: Daniil Karpitskiy

79502831

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

SQLSTATE[42S22]: Column not found: 1054 Unknown column 'custom_mobikul_banner_id' in 'field list' (SQL: update `mobikul_banner_translations` set `name` = Stories of Books3, `custom_mobikul_banner_id` = 5 where `id` = 17)
+-------------------+-----------------+------+-----+---------+----------------+

| Field | Type | Null | Key | Default | Extra |

+-------------------+-----------------+------+-----+---------+----------------+

| id | bigint unsigned | NO | PRI | NULL | auto_increment |

| company_id | int unsigned | NO | MUL | NULL | |

| name | text | YES | | NULL | |

| locale | varchar(191) | NO | | NULL | |

| locale_id | int unsigned | YES | | NULL | |

| mobikul_banner_id | bigint unsigned | NO | MUL | NULL | |

+-------------------+-----------------+------+-----+---------+----------------+

I dont know why this error is coming

Reasons:
  • Long answer (-1):
  • No code block (0.5):
  • Filler text (0.5): -------------------
  • Filler text (0): -----------------
  • Filler text (0): ---------
  • Filler text (0): ----------------
  • Filler text (0): -------------------
  • Filler text (0): -----------------
  • Filler text (0): ---------
  • Filler text (0): ----------------
  • Filler text (0): -------------------
  • Filler text (0): -----------------
  • Filler text (0): ---------
  • Filler text (0): ----------------
  • Low reputation (1):
Posted by: Ashif

79502823

Date: 2025-03-12 06:53:07
Score: 8 🚩
Natty:
Report link
I also encountered the same problem, have you solved it?
Reasons:
  • Blacklisted phrase (2): have you solved it
  • RegEx Blacklisted phrase (1.5): solved it?
  • Low length (1.5):
  • Has code block (-0.5):
  • Ends in question mark (2):
  • Single line (0.5):
  • Low reputation (1):
Posted by: Fcz

79502808

Date: 2025-03-12 06:44:04
Score: 4
Natty: 5
Report link

Can try some options like SMTPServiceProvider, Mailgun or iDealSMTP

Reasons:
  • Low length (1.5):
  • No code block (0.5):
  • Single line (0.5):
  • Starts with a question (0.5): Can
  • Low reputation (1):
Posted by: Tom Cruze

79502804

Date: 2025-03-12 06:42:04
Score: 1.5
Natty:
Report link

The reason is that the application-title metadata name has very weak support in modern browsers. You can check its compatibility on Can I Use.

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

79502797

Date: 2025-03-12 06:37:02
Score: 6
Natty: 7
Report link

Where to find Json file after the installtion of json server in mac?

Reasons:
  • Low length (1.5):
  • No code block (0.5):
  • Ends in question mark (2):
  • Single line (0.5):
  • Starts with a question (0.5): Where to find
  • Low reputation (1):
Posted by: Vinay Desai

79502794

Date: 2025-03-12 06:35:02
Score: 0.5
Natty:
Report link
{isPlayerA && <Counter person="Taylor" />}
{!isPlayerA && <Counter person="Sarah" />}

When isPlayerA is true,the Virtual DOM looks like:

[
   <Counter person="Taylor">, //FIRST CHILD
   false                      //SECOND CHILD(ignored in real DOM)
]

When isPlayerA becomes false,the virtual DOM changes to

[ 
   false,                    //FIRST CHILD(ignored in real DOM)
   <Counter person="Taylor"> //SECOND CHILD

]

Even though <Counter> is at the same position in the code, its position in the Virtual DOM has shifted.

The first child changed from <Counter> to false, so React unmounts(removes) <Counter person="Taylor" />.

The second child changed from false to <Counter>, so React mounts(adds) a new <Counter person="Sarah" />.

Since <Counter person="Taylor" /> is completely removed, its state is lost.

Since <Counter person="Sarah" /> is completely new, it gets a fresh state.

///////////////////////////////////////////////////////////////////////////

{isPlayerA ? <Counter person="Taylor" /> : <Counter person="Sarah" />}

In this case ,<Counter> is always the first child in the Virtual DOM. React sees that only the prop changes ("Taylor" to "Sarah"), so it updates the prop instead of unmounting the component.

Note: false do not create actual nodes in the real DOM. false does exist in the Virtual DOM, affecting reconciliation

Reasons:
  • Long answer (-1):
  • Has code block (-0.5):
  • Starts with a question (0.5): When is
  • Filler text (0.5): ///////////////////////////////////////////////////////////////////////////
  • Low reputation (1):
Posted by: Maheswar Reddy

79502790

Date: 2025-03-12 06:32:01
Score: 4.5
Natty:
Report link

Try using rich_editor or flutter_quill package

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

79502784

Date: 2025-03-12 06:30:00
Score: 2
Natty:
Report link
You can use OTT Converter enter image description here C To USB Type
Reasons:
  • Blacklisted phrase (1): enter image description here
  • Whitelisted phrase (-1.5): You can use
  • Low length (1.5):
  • Has code block (-0.5):
  • Single line (0.5):
  • Low reputation (1):
Posted by: Abdullah Afzal

79502755

Date: 2025-03-12 06:11:56
Score: 7 🚩
Natty: 5.5
Report link
{
   "error": {
      "message": "(#3) User must be on whitelist",
      "type": "OAuthException",
      "code": 3,
      "fbtrace_id": "AdbeY7pI7i62C8IJmYmy3j_"
   }
}

when i tried to schedule instagram post im still getiing this error any solution ?

Reasons:
  • Blacklisted phrase (1.5): any solution
  • RegEx Blacklisted phrase (2): any solution ?
  • Low length (0.5):
  • Has code block (-0.5):
  • Ends in question mark (2):
  • Starts with a question (0.5): when i
  • Low reputation (1):
Posted by: sukesh

79502751

Date: 2025-03-12 06:11:55
Score: 0.5
Natty:
Report link

First I want to know if the general idea is somewhat acceptable, or if there is a much better solution.

The general idea is OK. To my knowledge there is no outstandingly better solution. There is no built-in mechanism available that does exactly what you want, so you'll have to write some custom code either way. Your approach has the advantage of not allocating resources when there is no work to do, and the disadvantage that a new Thread has to be spawned each time a new request for work appears after an idle period. Other approaches, like using a BlockingCollection<T> or a Channel<T>, might have the opposite advantages and disadvantages.

What should I need to do to make this thread-safe?

You must enclose all interactions with all of your shared state inside lock blocks, and use the same locker object in all lock blocks. The shared state in your case is the internList and internThread fields. Since the internList is readonly, it could also serve a dual purpose as the locker object for the lock blocks. Inside the lock blocks you should do nothing else than interact with the shared state. Any unrelated work should stay outside, so that the lock can be released as soon as possible. The more you hold the lock, the higher the chances that another thread will be blocked, causing contention and slowing down your application.

Making your code thread-safe is an exercise in discipline, not in ingenuity. Every - single - interaction with your shared state must be protected, no exceptions. Even reading the Count of the List<T> must be protected. Only one thread at a time should be allowed to interact with your shared state. The moment that you decide to make an exception is the moment that your code becomes incorrect, and its behavior undefined.

What should I do to have the Address_Loaded event run in the UI thread?

There are many ways, with the most primitive being the Control.Invoke/Control.BeginInvoke APIs. My suggestion is to use the SynchronizationContext abstraction. Add a readonly SynchronizationContext field in your DatabaseQueue class, initialize it to SynchronizationContext.Current in the constructor of your class, and then use it in the ProcessQueueAsync method like this:

_syncContext.Send(_ =>
{
    // Here we are on the context where the DatabaseQueue was instantiated,
    // which should be the WinForms UI thread.
    currentAddress.IsLoaded = true;
}, null);

You could consider enclosing all Address modifications inside the delegate, so that each Address is mutated exclusively on the UI thread:

_syncContext.Send(_ =>
{
    currentAddress.PropertyX = valueX;
    currentAddress.PropertyY = valueY;
    currentAddress.IsLoaded = true;
}, null);

Regarding the choice between _syncContext.Send and _syncContext.Post, the first (Send) will block the background thread until the delegate has been fully invoked on the UI thread, including the invocation of all event handlers that are attached to the Address.Loaded event, and the second (Post) allows the background thread to continue working immediately after just scheduling the delegate. It's up to you what behavior you prefer.

Reasons:
  • Blacklisted phrase (0.5): I need
  • Blacklisted phrase (1): I want to know
  • Blacklisted phrase (2): What should I do
  • Whitelisted phrase (-1): in your case
  • RegEx Blacklisted phrase (1): I want
  • Long answer (-1):
  • Has code block (-0.5):
  • Contains question mark (0.5):
  • High reputation (-2):
Posted by: Theodor Zoulias

79502748

Date: 2025-03-12 06:06:54
Score: 1
Natty:
Report link

The following code removes all values from a Select Box except the selected one.

$("#YOUR_ELEMENT_ID").find('option').not(':selected').remove();
Reasons:
  • Low length (1):
  • Has code block (-0.5):
  • Low reputation (0.5):
Posted by: Vinay Modi

79502742

Date: 2025-03-12 05:59:52
Score: 7
Natty: 7
Report link

https://stackoverflow.com/questions/78458763/esproc-and-japersoft-studio-fail-to-integrate,Maybe this article can help you.

Reasons:
  • Blacklisted phrase (1): this article
  • Blacklisted phrase (1): stackoverflow
  • Probably link only (1):
  • Low length (2):
  • No code block (0.5):
  • Single line (0.5):
  • Low reputation (1):
Posted by: Judy

79502741

Date: 2025-03-12 05:59:52
Score: 4.5
Natty: 6.5
Report link

Same issue happened in vite v6.2 on mac, I'm using react-ts template, i need to delete and reinstall node_modules to work for a short time, after that, the issue comes out again

Reasons:
  • Blacklisted phrase (0.5): i need
  • RegEx Blacklisted phrase (1): Same issue
  • Low length (1):
  • No code block (0.5):
  • Single line (0.5):
  • Low reputation (1):
Posted by: Lzpeng

79502734

Date: 2025-03-12 05:56:51
Score: 2
Natty:
Report link

For anyone reading this in 2025, the real answer is adjusting your Info.plist with `NSAppTransportSecurity` as described here. You can read and see the additional option for NSAllowsLocalNetworking.

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

79502733

Date: 2025-03-12 05:56:51
Score: 0.5
Natty:
Report link

In My Case this was mistake

<Route path="/" Component={<Trending></Trending>} index></Route>

it took an hour to figure out just my c was capital provided by react es7 extension but it should be small

<Route path="/" component={<Trending></Trending>} index></Route>

Reasons:
  • Low length (0.5):
  • Has code block (-0.5):
  • Low reputation (0.5):
Posted by: web devlopment king

79502720

Date: 2025-03-12 05:42:49
Score: 1
Natty:
Report link

I recently published my library to maven central and faced the exact same issue. This stackoverflow answer helped:

Reasons:
  • Blacklisted phrase (1): stackoverflow
  • Whitelisted phrase (-1): in your case
  • Low length (0.5):
  • Has code block (-0.5):
  • Low reputation (1):
Posted by: Malik Gohar

79502719

Date: 2025-03-12 05:41:49
Score: 2.5
Natty:
Report link

RN 0.78.0 is still giving issues while project setup. It fails to start, better initialise project with 0.76.5 or similar.

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

79502714

Date: 2025-03-12 05:38:48
Score: 0.5
Natty:
Report link

When you don't set a fixed height for the inner container, the virtualization engine can't determine which rows are visible, rendering every row in the expanded section. By wrapping the inner list in a container with a specific height (say 300px), you let React Virtualized know how much space it has to work with. Then, using an AutoSizer, it calculates the available width and height, and the List component only renders the rows that fit within that space.

Maybe like this :

{expanded && (
  <div style={{ height: 300 }}>
    <AutoSizer>
      {({ height, width }) => (
        <List
          width={width}
          height={height}
          rowCount={rows.length}
          rowHeight={50}
          rowRenderer={innerRowRenderer}
        />
      )}
    </AutoSizer>
  </div>
)}
Reasons:
  • Long answer (-0.5):
  • Has code block (-0.5):
  • Starts with a question (0.5): When you
  • Low reputation (1):
Posted by: Jaydeep Pipaliya

79502713

Date: 2025-03-12 05:38:48
Score: 1.5
Natty:
Report link

After updating Visual Studio to 17.13.0 or later, View Designer cannot be opened. This is probably an unexpected behavior because it is not mentioned in the Release Notes of Visual Studio 17.13.0.

It is recommended that you report this issue to Visual Studio Feedback.

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

79502700

Date: 2025-03-12 05:25:45
Score: 3
Natty:
Report link

See this comment on GitHub from Brian: https://github.com/spring-projects/spring-framework/issues/30322#issuecomment-1597240920

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

79502660

Date: 2025-03-12 05:00:41
Score: 1.5
Natty:
Report link

I also find the answer to this question.

This below URL is able to get the pipeline definition.

POST https://api.fabric.microsoft.com/v1/workspaces/{workspaceId}/items/{itemId}/getDefinition

{
    "definition": {
        "parts": [
            {
                "path": "pipeline-content.json",
                "payload": "ewogsdfsdfsdf7sdfICJwcm9wZXJ0aWVz",
                "payloadType": "InlineBase64"
            },
            {
                "path": ".platform",
                "payload": "ewogIasdfsdf7sdfCIkc2NoZW",
                "payloadType": "InlineBase64"
            }
        ]
    }
}

Here, "payload" properties contain the definition of items in the encoded format. So, we need to decode it to see the proper output in JSON format.
Reasons:
  • Probably link only (1):
  • Long answer (-0.5):
  • Has code block (-0.5):
  • Self-answer (0.5):
  • Low reputation (1):
Posted by: Akash

79502652

Date: 2025-03-12 04:52:39
Score: 0.5
Natty:
Report link

Need to import the tailwind css utility files in the root css file.

Below are the utility files which needs to be used

@tailwind base;
@tailwind components;
@tailwind utilities;

Along with this make sure postcss plugin is configured properly.

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

79502644

Date: 2025-03-12 04:45:37
Score: 0.5
Natty:
Report link

Difference Between px, dp, dip, and sp in Android

Use dp for layout, sp for text, and px only for precise pixel-based drawing.

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

79502638

Date: 2025-03-12 04:40:36
Score: 4.5
Natty: 5.5
Report link

Google free income life time help me Google community

Reasons:
  • Blacklisted phrase (1): help me
  • Low length (1.5):
  • No code block (0.5):
  • Single line (0.5):
  • Low reputation (1):
Posted by: Shibu day

79502628

Date: 2025-03-12 04:33:35
Score: 1
Natty:
Report link

I was facing a similar problem MobaXTerm was not letting me do any write changes or similar permissions issue.

In my case the solution was fairly simple but the reason which could be causing this to happen would be creation of a new user which does not have the permissions :
It can be fixed by going to the location where user is located and doing : chmod 777 /user

This may not work if you're tying to do "chmod 777 /home/user" as it could be treated as a folder asking for permissions rather than a User, So a better approach is to navigate to the User location and give permissions.

If it helps!

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

79502621

Date: 2025-03-12 04:26:33
Score: 3.5
Natty:
Report link

The div layer is placed behind the scroll bar

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

79502618

Date: 2025-03-12 04:25:33
Score: 1
Natty:
Report link

update your .left class like this

.left {
  order:2;
  background-color:#3c3c3c;
  overflow-y: auto;
  width:auto;
   z-index:1000;
position:relative;
}

and .bg like this

  
  .bg { background: url(https://cdn.wallpapersafari.com/30/25/1fhUk9.jpg);
      
        position: fixed;
        background-attachment: fixed;
        background-size: cover;
        background-color: #00000033;
        background-position: center;
        inset: 0;
    z-index:-1;
    position:absolute;
    
}

https://codepen.io/Woj56k/pen/RNwLBwm

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

79502617

Date: 2025-03-12 04:24:33
Score: 3
Natty:
Report link

Found the answer. Since I have an intel processor, I needed the x86 app from:

https://github.com/lynx-family/lynx/releases/tag/3.2.0-rc.0

Reasons:
  • Blacklisted phrase (0.5): I need
  • Probably link only (1):
  • Low length (1.5):
  • No code block (0.5):
  • Self-answer (0.5):
  • High reputation (-1):
Posted by: sudoExclamationExclamation

79502610

Date: 2025-03-12 04:14:31
Score: 3
Natty:
Report link

I had the different problem. Mine failed because I had a period at the end of the "second argument" sentence. When I removed the period, the auto grader passed me. :)

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

79502606

Date: 2025-03-12 04:07:30
Score: 1
Natty:
Report link

Your call to `Move` should be in physics process, not unhandled input. Physics process is called at a steady interval, unhandled input isn't.

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

79502597

Date: 2025-03-12 03:56:28
Score: 2.5
Natty:
Report link

Perhaps you could consider wrapping your function inside setTimeout as it uses the browser's Web API to handle the delay externally, allowing JavaScript to continue running

setTimeout(()=>{
  // function
})

https://medium.com/@ashishkumarjena1437/understanding-how-settimeout-works-in-javascripts-single-threaded-environment-dd5889ea1599#:~:text=JavaScript%20is%20single%2Dthreaded%2C%20meaning,moves%20to%20the%20callback%20queue.

Reasons:
  • Blacklisted phrase (0.5): medium.com
  • Probably link only (1):
  • Low length (0.5):
  • Has code block (-0.5):
  • Low reputation (1):
Posted by: SY L

79502592

Date: 2025-03-12 03:51:28
Score: 1
Natty:
Report link

Is it possible to do for multiple inputs ?

Yes, it is possible with multiple inputs. Try by using mv-apply key = input iterates over each value in input and tostring(key) ensures each input key is treated as a string. In below code pack(tostring(key), b.value1) is used, which creates { "input1": b.value1, "input2": b.value1 } dynamically. Now make_bag() aggregates the results into a single dynamic object per row.

let T = datatable(a:string, b:dynamic)
[
    "hello", dynamic({"A":1,"B":2,"value1":3}),
    "world", dynamic({"value1":4,"value2":5})
];

let input = dynamic(["input1", "input2"]);

T
| mv-apply key = input on 
(
    summarize new_output_column = make_bag(pack(tostring(key), b.value1))
)

Output: enter image description here

Reasons:
  • Blacklisted phrase (1): Is it possible to
  • Long answer (-0.5):
  • Has code block (-0.5):
  • Contains question mark (0.5):
  • Starts with a question (0.5): Is it
Posted by: Balaji

79502591

Date: 2025-03-12 03:51:28
Score: 1
Natty:
Report link

BigQuery doesn't support minute partition. Also if you really partition by minutes, per the maximum 10K partitions per table limit, you can only keep 7 days of data in the table.

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

79502588

Date: 2025-03-12 03:47:26
Score: 5.5
Natty:
Report link

I'm having the same issue and it would be nice to not be a pacific email type like gmail it should allow all or most email types

Reasons:
  • Low length (1):
  • No code block (0.5):
  • Me too answer (2.5): I'm having the same issue
  • Single line (0.5):
  • Low reputation (1):
Posted by: Jason Cobble

79502585

Date: 2025-03-12 03:45:26
Score: 3
Natty:
Report link

I faced the same problem, adding the "Connection":"keep-alive" request header can resolve this problem.

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

79502572

Date: 2025-03-12 03:24:22
Score: 0.5
Natty:
Report link

You can't pass a temporary value to a non-const reference T&.

If you can't use a constant reference const T& because you need T to be modifiable, then you can simply add an overload that passes by value:

void bar(Foo& f);
void bar(Foo f){
    bar(f);
}

Then let copy elision do its thing.

Reasons:
  • Low length (0.5):
  • Has code block (-0.5):
  • Low reputation (0.5):
Posted by: 許恩嘉

79502568

Date: 2025-03-12 03:21:22
Score: 2.5
Natty:
Report link

Have you try this package:

https://github.com/bocanhcam/nova-breadcrumb

It's description look similar like what you need.

Reasons:
  • Whitelisted phrase (-1): try this
  • Probably link only (1):
  • Low length (1.5):
  • No code block (0.5):
  • Low reputation (0.5):
Posted by: Hoang

79502563

Date: 2025-03-12 03:17:20
Score: 0.5
Natty:
Report link

RegEx is part of the answer. Also use eval() to execute the argument string.

function myFunction() {
    return "Hello World!";
}
console.log(eval("myFunction{}".replace(/\{\}/, '()')));
Reasons:
  • Low length (0.5):
  • Has code block (-0.5):
  • Low reputation (0.5):
Posted by: roannav

79502560

Date: 2025-03-12 03:16:20
Score: 2
Natty:
Report link

If it's for personal use then you could export your daily browser cookie & spoof it using puppeteer.

If it's for commercial use than look into antidetect browsers. They offer pre-made cookies

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