79561097

Date: 2025-04-08 03:16:14
Score: 5.5
Natty:
Report link

do you have the dataset?

import pandas as pd
import matplotlib.pyplot as plt
import seaborn as sns
df = pd.read_csv("you dataset here")
sns.scatterplot(data=df, x="Age", y="Sales")
plt.title("Relationship between Age and Car Toy Sales")
plt.show()
Reasons:
  • RegEx Blacklisted phrase (2.5): do you have the
  • Low length (0.5):
  • Has code block (-0.5):
  • Ends in question mark (2):
  • Low reputation (1):
Posted by: Muideen

79561082

Date: 2025-04-08 03:01:10
Score: 1.5
Natty:
Report link

Screenshot of the VS Code Extension setting

I have also been confused on this issue for a while. Literally just until a moment ago, I found the answer: There is a setting called "Notebook: Kernel Enabled" and it is defaulted NOT CHEKED!

Mark that checkbox and restart VS Code, open your .vsnb file and there should be pop up message says the Wolfram Kernel has been launched (given the path is properly set or can be auto-detected).

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

79561067

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

seem ur token has expired, i also faced this, u have to regenerate the token and try to login via gh with ur new token, that work for me :D

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

79561063

Date: 2025-04-08 02:36:04
Score: 2.5
Natty:
Report link

The most straightforward way would be to use Google Cloud's Data Transfer Service. You can also write a custom script, for example, in Python, connecting to the Facebook Marketing API or using a third party ETL tool.

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

79561051

Date: 2025-04-08 02:25:01
Score: 0.5
Natty:
Report link

use @SoftDelete annotation.

import org.hibernate.annotations.SoftDelete;

@Entity
@Table(name = "file_entity")
@SoftDelete(columnName = "deleted")
public class FileEntity
Reasons:
  • Low length (1):
  • Has code block (-0.5):
Posted by: SageJustus

79561048

Date: 2025-04-08 02:24:01
Score: 3.5
Natty:
Report link

On Windows 11, python 3.13.1, environment variable PYTHON_COLORS=0 turns off colors in the interpreter.

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

79561047

Date: 2025-04-08 02:23:00
Score: 4.5
Natty: 4
Report link

Yes. it's work. Replace With > Local History it'd resolved my problem.
Big thank you for the good advice.

Reasons:
  • Blacklisted phrase (0.5): thank you
  • Whitelisted phrase (-1.5): resolved my problem
  • RegEx Blacklisted phrase (3): thank you for the good advice
  • Low length (1):
  • No code block (0.5):
  • Low reputation (1):
Posted by: user30203240

79561030

Date: 2025-04-08 01:58:55
Score: 4.5
Natty: 4.5
Report link

This happens because the QB desktop uses auto ref number which has go be switched off for manually set txnunbers.

Which Soap are you using?

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

79561027

Date: 2025-04-08 01:57:54
Score: 2
Natty:
Report link

It depends on what you are trying to do in the "maybe something more complicated block"

If you're just using it as a counter, I think it's fine; there are 100 ways to increment a counter.

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

79561025

Date: 2025-04-08 01:54:53
Score: 0.5
Natty:
Report link

Why not use `spring-boot-starter-actuator` dependency? That will give you the option of exposing plenty of endpoints.

As for `prometheus`, you will have to use `io.micrometer:micrometer-registry-prometheus` dependency in addition to enable `/actuator/prometheus`. It is plug-and-play so it will start exposing your jvm metrics.

The following config must be added in the base `application.yml` of the spring-boot service:

management:
  endpoints:
    web:
      exposure:
        include: * # health,prometheus
    health:
      show-details: always

You can be more granular on what endpoints you want to expose by replacing the * with something more specific as per Spring's doco: Endpoints :: Spring Boot

Reasons:
  • Long answer (-0.5):
  • Has code block (-0.5):
  • Contains question mark (0.5):
  • Starts with a question (0.5): Why not use
  • Low reputation (0.5):
Posted by: John Chan

79561021

Date: 2025-04-08 01:52:52
Score: 0.5
Natty:
Report link

When you want to perform an action a certain number of times without caring about the loop variable, the convention is to use an underscore (_) instead of a named variable like i. This signals to readers of your code: "I'm not going to use this variable."

So your questionable function can be rewritten in a more Pythonic way like this:

def more_pythonic():
    for _ in range(3):
        print('Is this OK?')
Reasons:
  • Has code block (-0.5):
  • Starts with a question (0.5): When you
  • Low reputation (0.5):
Posted by: João Amgarten

79561016

Date: 2025-04-08 01:43:50
Score: 5.5
Natty:
Report link

I have the same issue. The issue is related to https://github.com/huggingface/transformers/pull/37337

In my case, installing accelerate fix the issue, as the workaround.

pip install accelerate
Reasons:
  • Blacklisted phrase (1): I have the same issue
  • Probably link only (1):
  • Low length (1):
  • Has code block (-0.5):
  • Me too answer (2.5): I have the same issue
  • Low reputation (0.5):
Posted by: kenma

79561007

Date: 2025-04-08 01:35:48
Score: 3
Natty:
Report link

this isn't a "bug," if you go to the include folder, iostream doesn't have a file extension, so vscode just sets it to default. (image: )

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

79560995

Date: 2025-04-08 01:12:43
Score: 2
Natty:
Report link

It might be already enabled, check the drop down next to the model choice in the chat. It starts with the "Ask" option, which is the default mode, and can be changed to "Edit" or "Agent".

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

79560981

Date: 2025-04-08 00:43:38
Score: 0.5
Natty:
Report link

The error happens because Artemis tries to use AIO (via libaio), which Docker blocks by default in non-Alpine images.

To fix it, set ARTEMIS_JOURNAL_TYPE=NIO in your Docker run or compose file to use NIO instead.

ex:

docker run -e ARTEMIS_JOURNAL_TYPE=NIO apache/activemq-artemis:2.40.0
Reasons:
  • Low length (0.5):
  • Has code block (-0.5):
  • Low reputation (0.5):
Posted by: Vijay

79560979

Date: 2025-04-08 00:42:37
Score: 1.5
Natty:
Report link

Also, make sure you have only one *.properties file inside gradle/wrapper/ folder. In my case, setting up in Windows WSL, I found wsl.graddle.properties file in the folder!!!

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

79560977

Date: 2025-04-08 00:40:36
Score: 8.5 🚩
Natty: 4
Report link

Were you able to find a fix? One way could be to save the dates/ time in string format. I am in the middle of a bug fix though, and saving it in string format would mean that all the previous use cases would fail.

Reasons:
  • RegEx Blacklisted phrase (1): Were you able to find a
  • RegEx Blacklisted phrase (1.5): fix?
  • RegEx Blacklisted phrase (3): Were you able
  • Low length (0.5):
  • No code block (0.5):
  • Contains question mark (0.5):
  • Single line (0.5):
  • Low reputation (1):
Posted by: Rahul Chandak

79560966

Date: 2025-04-08 00:26:32
Score: 0.5
Natty:
Report link

When you create a field in QT Designer, you can to assign an ID or name, then, when you load the ui file into a python class like

uic.loadUi(os.path.join(os.path.dirname(__file__), "customer.ui"), self)

the class load all fields from the ui file and you can to call like:

self.geometry.setText() = "something" #where self.geometry is the name of your ui field.

There is an other example:

class MainPage(QMainWindow):
    def __init__(self):
        super(MainPage, self).__init__()
        uic.loadUi("SysMainUI.ui",self)
        #self.minimizeBtn is a button into "SysMainUI.ui"
        #self.minimizeBtn calls to "minimizar" function when clicked it
        self.minimizeBtn.clicked.connect(self.minimizar)
        self.maximizeBtn.clicked.connect(self.maximizar)
        self.normalizeBtn.clicked.connect(self.normalizar)
        self.closeBtn.clicked.connect(self.cerrar)
Reasons:
  • Long answer (-0.5):
  • Has code block (-0.5):
  • Starts with a question (0.5): When you
  • Low reputation (1):
Posted by: AnnubiS2

79560965

Date: 2025-04-08 00:24:31
Score: 2
Natty:
Report link

There isn't a way to automate it.

One workaround is creating a development environment for your project and un-enforcing app check on it.

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

79560954

Date: 2025-04-08 00:10:28
Score: 1
Natty:
Report link

Perhaps you could use service account with OAuth2 to authenticate your script and access BigQuery on behalf of a backend identity, rather than the active user. This approach allows you to centralize IAM permissions and avoid granting BigQuery access to every user individually.

First need to create a service account in Google Cloud and assign it the necessary roles, then generate a JSON key for that service account, and use it in your Apps Script to manually build a JWT which you'll send to Google’s OAuth2 token endpoint to exchange for an access token, and finally, with that token, you can make authorized BigQuery API requests as the service account you created. Take a look below how it should work:

// Save service account json credentials for test purposes
const SERVICE_ACCOUNT_JSON = {
  "type": "service_account",
  "project_id": "your-project-id",
  "private_key_id": "your-private-key",
  "private_key": "your-private-key",
  "client_email": "[email protected]",
  "client_id": "1234567890",
  ...
};

// Create manually a JWT
function createJWT(sa) {
  const header = {
    alg: "RS256",
    typ: "JWT"
  };

  const iat = Math.floor(Date.now() / 1000);
  const exp = iat + 3600;

  const claimSet = {
    iss: sa.client_email,
    scope: "https://www.googleapis.com/auth/bigquery",
    aud: "https://oauth2.googleapis.com/token",
    exp: exp,
    iat: iat
  };

  const base64Header = Utilities.base64EncodeWebSafe(JSON.stringify(header));
  const base64Claim = Utilities.base64EncodeWebSafe(JSON.stringify(claimSet));
  const signatureInput = `${base64Header}.${base64Claim}`;

  const signatureBytes = Utilities.computeRsaSha256Signature(signatureInput, sa.private_key);
  const base64Signature = Utilities.base64EncodeWebSafe(signatureBytes);

  return `${signatureInput}.${base64Signature}`;
}

// Exchange JWT for access token
function getAccessToken() {
  const jwt = createJWT(SERVICE_ACCOUNT_JSON);

  const response = UrlFetchApp.fetch('https://oauth2.googleapis.com/token', {
    method: 'post',
    payload: {
      grant_type: 'urn:ietf:params:oauth:grant-type:jwt-bearer',
      assertion: jwt
    }
  });

  return JSON.parse(response.getContentText()).access_token;
}

// Call BigQuery through Google APIs using service account token
function runQuery() {
  const accessToken = getAccessToken();
  const projectId = 'your-project-id';

  const queryRequest = {
    query: 'SELECT name FROM `your_dataset.your_table` LIMIT 5',
    useLegacySql: false
  };

  const response = UrlFetchApp.fetch(`https://www.googleapis.com/bigquery/v2/projects/${projectId}/queries`, {
    method: 'post',
    contentType: 'application/json',
    payload: JSON.stringify(queryRequest),
    headers: {
      Authorization: 'Bearer ' + accessToken
    }
  });

  const result = JSON.parse(response.getContentText());
  Logger.log(result);
}

By this way you'll be able to use service account token for every call to BigQuery, keeping IAM permissions only for service account being used on this script. On this approach, everyone with access to the document (and App Script), will have access to run the script (and may edit it), so please be aware of it. Did this solve your issue?

Note: Please, avoid using hardcoded sensive data, like SERVICE_ACCOUNT_JSON , here I'm just giving an example for test purposes.

Reference:

Reasons:
  • RegEx Blacklisted phrase (1.5): solve your issue?
  • Long answer (-1):
  • Has code block (-0.5):
  • Contains question mark (0.5):
  • Low reputation (0.5):
Posted by: dfop02

79560950

Date: 2025-04-08 00:06:27
Score: 3
Natty:
Report link

To pass a Bearer token in a Postman request, select Bearer Token as the Auth type under the Authorization tab instead of No Auth. Then, paste the token into the token input field. After that, you should be able to fetch data from the backend

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: Muhammad Zeeshan

79560939

Date: 2025-04-07 23:51:24
Score: 1
Natty:
Report link

addMiniMap() takes the tiles parameter which allows you to specify a URL for map tiles or use one of the pre-defined map tile providers, so just adjust your code to the following:

leaflet() |>
  addProviderTiles("CartoDB.Positron") %>%
  setView(lng = 13.4, lat = 52.52, zoom = 14) %>%
  addMiniMap(width = 150, height = 180, position = "topleft", tiles = "Esri.NatGeoWorldMap")

enter image description here

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

79560938

Date: 2025-04-07 23:50:24
Score: 1.5
Natty:
Report link

You can still download a previous version of VS 2022 Community --- just use the Update Catalog link (https://www.catalog.update.microsoft.com/Search.aspx?q=visual%20studio%202022) to download a previous update exe file and run it --- but first, have your AppData/Local/temp directory open in a window, and when you run the exe, right click "copy" on the directory as soon as it pops up and paste it somewhere.

Then, you have to open command prompt, cd to the location of the directory you copied, and enter (depending on what the name of the setup exe is) vs_setup.exe install --channelId VisualStudio.17.Release --productId Microsoft.VisualStudio.Product.Community

You will be greeted with the full setup of the previous version (so if you hate the "AI" code stuff....)

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

79560934

Date: 2025-04-07 23:43:22
Score: 2
Natty:
Report link

Do this to commit changes to the DataGrid when a button is clicked

dataGrid.CommitEdit();
Reasons:
  • Low length (1.5):
  • Has code block (-0.5):
  • Low reputation (1):
Posted by: Dragan Radovac

79560928

Date: 2025-04-07 23:33:20
Score: 0.5
Natty:
Report link

If I understoof your question right you need something like this. To get the x-coordinate of the point F I simply access it via x[F] which GeoGebra turns into x(G). Hope it helps.

See the example:
enter image description here

Reasons:
  • Whitelisted phrase (-1): Hope it helps
  • Probably link only (1):
  • Low length (0.5):
  • Has code block (-0.5):
  • Low reputation (0.5):
Posted by: Vorashil Farzaliyev

79560927

Date: 2025-04-07 23:28:19
Score: 1
Natty:
Report link

To make the symbol rotate around its center, you need to specify the transform-origin:

First Way : transform-origin: 50% 50%;

2nd Way :

transform-origin: center;

If you're applying this to something like a <span> (which is inline by default), make sure to add:

display: inline-block;
Reasons:
  • Low length (0.5):
  • Has code block (-0.5):
  • Low reputation (1):
Posted by: Fares Mohamed

79560921

Date: 2025-04-07 23:13:16
Score: 1
Natty:
Report link
after  three days of looking why my ssd1306 did not work I found that reloading the pi w with 0

I had a similar problem in a raspberry pi pico with a DS3231 real time clock module and I solved it switching the microPython version to RPI_PICO-20231005-v1.21.0.uf2

the code was 
from machine import Pin, I2C
from ssd1306 import SSD1306_I2C

i2c=I2C(1,sda=Pin(2), scl=Pin(3), freq=400000)

devices = i2c.scan()
print(devices)
print(devices[0])
try:
    oled = SSD1306_I2C(128, 64, i2c,addr=devices[0])
    oled.text("hello world", 0, 0)
    oled.show()
except Exception as err:
    print("eeeee")
    print(f"Unable to initialize oled: {err}")
    this where i found it thanks
https://stackoverflow.com/questions/76972665/oserror-errno-5-eio-when-running-my-code
Reasons:
  • Blacklisted phrase (0.5): thanks
  • Blacklisted phrase (1): did not work
  • Blacklisted phrase (1): stackoverflow
  • Whitelisted phrase (-2): I solved
  • Long answer (-0.5):
  • Has code block (-0.5):
  • Unregistered user (0.5):
  • Low reputation (1):
Posted by: user30202264

79560920

Date: 2025-04-07 23:12:16
Score: 3
Natty:
Report link

Your approach works, with the risk of writing to _schemas in production. If you're on Confluent, schema linking would be the blessed path https://www.confluent.io/blog/easy-data-migration-with-schema-linking/

Reasons:
  • Probably link only (1):
  • Low length (1):
  • Has code block (-0.5):
  • Single line (0.5):
  • Low reputation (1):
Posted by: Chet Sharma

79560906

Date: 2025-04-07 22:59:13
Score: 0.5
Natty:
Report link

I recently encountered this problem, the solution above, with manually capturing the necessary focus with nextFocus(), will solve the problem, but not the root cause. I think in most cases the problem is that the screen contains icons (for example, the field clear icon) that also capture focus, so the correct solution is to minimize all such widgets in ExcludeFocus, this will allow you to switch to the next one automatically. Please bump this answer up a notch, thanks.

Reasons:
  • Blacklisted phrase (0.5): thanks
  • Whitelisted phrase (-1): solution is
  • Has code block (-0.5):
  • Single line (0.5):
  • Low reputation (1):
Posted by: Mykhailo

79560901

Date: 2025-04-07 22:49:11
Score: 3.5
Natty:
Report link

It seems you are missing python2. Try running:

python2 --version

if it is not installed then

https://www.python.org/downloads/release/python-272/

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

79560898

Date: 2025-04-07 22:44:10
Score: 2
Natty:
Report link

Is it possible to save traces locally without sending them to zipkin ui ?

Yes, you can implement an exporter to write the data to disk.

Could I use different transport to send them to zipkin ?

Yes, you can implement an exporter to use whatever transport Zipkin supports.

Reasons:
  • Blacklisted phrase (1): Is it possible to
  • Low length (0.5):
  • No code block (0.5):
  • Contains question mark (0.5):
  • Starts with a question (0.5): Is it
  • High reputation (-1):
Posted by: Jonatan Ivanov

79560894

Date: 2025-04-07 22:41:10
Score: 0.5
Natty:
Report link

Since both of your apps are running in container now, your database won't be accessible at 127.0.0.1 anymore. You should use the name of the service (from docker compose) instead.

Try changing the datasource url to

spring.datasource.url=jdbc:mysql://mysqldb:3306/task_adc
Reasons:
  • Low length (0.5):
  • Has code block (-0.5):
  • Low reputation (0.5):
Posted by: Warlike

79560893

Date: 2025-04-07 22:39:09
Score: 0.5
Natty:
Report link

Add a @DiscriminatorColumn to your Person entity to explicitly specify the column that differentiates the subtypes (Hunter, Policeman). This improves readability.

@Entity
@Inheritance(strategy = InheritanceType.SINGLE_TABLE)
@DiscriminatorColumn(name = "person_type")
public class Person { 
   // ...
}

How often do you need to access the dog associated with a Policeman? If it's very frequent, the performance benefit of your current approach becomes more significant.

If you anticipate a massive number of Hunters compared to Policemen, the wasted space due to NULLs in the dog_id column might become more of a concern. However, with modern databases, this is usually not a major issue unless you're dealing with truly enormous datasets.

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

79560874

Date: 2025-04-07 22:21:05
Score: 1.5
Natty:
Report link

In my case deleting the vendor folder and reinstalling the dependencies with composer install, solved the problem.

I'm using Laravel 9, PHP 8 and Laravel Sail.

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

79560873

Date: 2025-04-07 22:20:05
Score: 1.5
Natty:
Report link

It seems like Webpack is ignoring or blocking access to the crypto module which is why Connector can’t use it for encryption, thus receiving that error. Basically externals prevent bundling of dependencies but will retrieve them at runtime. Try removing {crypto: false} in externals in your Webpack config. According to this documentation, externals: [NodeExternals()], will ignore all modules in the node_modules folder.

Reasons:
  • Blacklisted phrase (1): this document
  • Has code block (-0.5):
  • Single line (0.5):
  • Low reputation (0.5):
Posted by: yannco

79560870

Date: 2025-04-07 22:15:04
Score: 1
Natty:
Report link

Somewhat duplicate. For setting the formula, it looks like you should not set the value property. See here:

Write formula to Excel with Python

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

79560857

Date: 2025-04-07 22:05:01
Score: 3
Natty:
Report link

You can use this https://www.graalvm.org/latest/reference-manual/native-image/guides/configure-with-tracing-agent/ to generate configuration needs to compile reflections and more...

Reasons:
  • Whitelisted phrase (-1.5): You can use
  • Probably link only (1):
  • Low length (1.5):
  • No code block (0.5):
  • Single line (0.5):
  • Low reputation (1):
Posted by: Paulo Sales

79560855

Date: 2025-04-07 22:04:01
Score: 2.5
Natty:
Report link

The color boxes are only displayed in the className. Of course, you can do this by installing the "Color Highlight" extension and converting the colors to HEX. For example, instead of writing 'bg-red-600', write '#e7000b'.

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

79560854

Date: 2025-04-07 22:03:00
Score: 4
Natty: 4
Report link

you are talking rocket science, steve is not proud

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

79560844

Date: 2025-04-07 21:52:58
Score: 2
Natty:
Report link

The solution to this error for me was: updating the "AWSSDK.Core" nuget package references in all the projects in my solution.

Ex:
I had a solution with 3 projects and the versions of the "AWSSDK.Core" nuget package was different.
So i updated to the last stable version in the 3 projects and that was it.

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

79560843

Date: 2025-04-07 21:51:58
Score: 1
Natty:
Report link
This error occurs when the data type is not defined in the dataset.
PFDQuery.ParamByName('PDATA').DataType := ftDateTime;
if FData = 0 then
  PFDQuery.ParamByName('PDATA').IsNull
else
  PFDQuery.ParamByName('PDATA').AsDateTime := FData;

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

79560837

Date: 2025-04-07 21:44:55
Score: 6 🚩
Natty:
Report link

New templates and plugins for Sponzy on https://bbest.live/shop

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

79560809

Date: 2025-04-07 21:23:51
Score: 2.5
Natty:
Report link

[email protected] +13104564806

header 1 header 2
cell 1 cell 2
cell 3 cell 4
Reasons:
  • Low length (1):
  • No code block (0.5):
  • Low reputation (1):
Posted by: Jorge Jaime

79560784

Date: 2025-04-07 21:09:48
Score: 1
Natty:
Report link

Try to debug installation of gunicorn. In example add the following lines to your dockerfile and send the result log here

whereis gunicorn
which gunicorn
dpkg --get-selections | grep '^g'
pip list | grep '^g'
Reasons:
  • Low length (0.5):
  • Has code block (-0.5):
  • Low reputation (1):
Posted by: Ivan Galkin

79560781

Date: 2025-04-07 21:08:48
Score: 3.5
Natty:
Report link

Happened to me importing from a csv to longtext. Wrapping the field in Trim() solved it.

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

79560777

Date: 2025-04-07 21:07:48
Score: 1.5
Natty:
Report link

You're using gtsummary version 2.1.0.9010 and the theme element "tbl_summary-arg:type" was not yet supported in that version. It was introduced in version 2.2.0.

And you need to explicitly say that you don't want dichotomous-style summary:

reset_gtsummary_theme()

trial |>

tbl_summary(

type = all_dichotomous() ~ "categorical",

dichotomous = "no"

) |>

as_flex_table()

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

79560776

Date: 2025-04-07 21:06:47
Score: 0.5
Natty:
Report link

The way you have targeted your HTML elements is close, but incorrect. You should not be giving multiple elements the same id (read another answer here and see this article to find out more about why).

Having more than 1 element with same id will only return the first element, which is why only 1 button works.

To solve this issue, replace the id with class and modify your code to look like this:

Buttons

<button class="NotifyBtn" name="Billy" town="Bob">Press Me</button>
<button class="NotifyBtn" name="Timmy" town="Tawin">Press Me</button>
<button class="NotifyBtn" name="Milly" town="House">Press Me</button>

JavaScript:

let buttons = document.getElementsByClassName("NotifyBtn")
for(let i = 0; i < buttons.length; i++){
    let button = buttons[i]
    button.addEventListener("click", function(){
        var name = button.getAttribute("name");
        var town = button.getAttribute("town");
        fetch("{% url 'alert_via_JSON_Response' %}", {
            method: "POST",
            headers: {
                "X-CSRFToken": "{{ csrf_token }}",
                "Content-Type": "application/json"
            },
            body: JSON.stringify({ message: "Hi there: " + `${name} born in ${town}`
             })
            }).then(response => response.json())
                .then(data => alert(data.status));
    });
}

What this does is select all elements with class and return them as an array of elements. Then for loop each item in the array and attach the event listener to each of them.

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

79560773

Date: 2025-04-07 21:04:47
Score: 0.5
Natty:
Report link

Why This Happens:

$res is a mysqli_result object, not an array.

You can’t use foreach directly on a mysqli_result object. That’s why $row ends up being null.

How to Fix It:

He needs to convert the result into something iterable, like an array. Option 1: Use while and fetch_assoc() (most common way)

<?php
while ($row = $res->fetch_assoc()) {?>
<div class="card Align-Content-On-X-Axis_center">
    <img src="./Images/images.jpeg" alt="ERR" />
    <h3><?= $row["Name"]; ?></h3>
</div>
<?php}?>

Option 2: Convert $res to an array first, then use foreach

<?php
$rows = [];
while ($row = $res->fetch_assoc()) {
    $rows[] = $row;
}
?>

<?php foreach ($rows as $row) { ?>
    <div class="card Align-Content-On-X-Axis_center">
        <img src="./Images/images.jpeg" alt="ERR" />
        <h3><?= $row["Name"]; ?></h3>
    </div>
<?php } ?>
Reasons:
  • Long answer (-0.5):
  • Has code block (-0.5):
  • Starts with a question (0.5): Why This
  • Low reputation (1):
Posted by: Fares Mohamed

79560772

Date: 2025-04-07 21:04:47
Score: 3.5
Natty:
Report link

I ended up switching to the static map and removing all labels through the styling rules in that map's API. Not sure why I got downvoted for this, but hope this helps out any others looking to do the same thing.

style_params = [
        "feature:all|element:labels|visibility:off",
        "feature:poi|visibility:off",
        "feature:transit|visibility:off",
        "feature:road|element:labels|visibility:off"
    ]

base_url = "https://maps.googleapis.com/maps/api/staticmap"
    url = (
        f"{base_url}?center={lat},{lon}"
        f"&zoom={zoom}"
        f"&size={size}"
        f"&maptype={maptype}"
        f"&{style_params}"
        f"&key={api_key}"
    )

Resulting image

enter image description here

Cheers,

Dillon

Reasons:
  • Blacklisted phrase (1): Cheers
  • Whitelisted phrase (-1): hope this helps
  • RegEx Blacklisted phrase (2): downvote
  • Probably link only (1):
  • Long answer (-0.5):
  • Has code block (-0.5):
  • Self-answer (0.5):
  • Low reputation (1):
Posted by: Dillon Tryhorn

79560756

Date: 2025-04-07 20:47:43
Score: 1.5
Natty:
Report link

How funny that I am working through a problem incredibly similar to this. How in your code did you account for additional points? I know in the documentation that it mentions using | to separate points, but I have yet to get that to function. Below is the line of code I am using to generate my URL.


directions_url = f"https://www.google.com/maps/dir/?api=1&origin={lats[0]},{lons[0]}&destination={lats[1]},{lons[1]}"
print(directions_url)
Reasons:
  • Has code block (-0.5):
  • Contains question mark (0.5):
  • Starts with a question (0.5): How
  • Low reputation (1):
Posted by: Chris_Freeman

79560752

Date: 2025-04-07 20:44:42
Score: 1
Natty:
Report link

Its a bug i have to backport the latest InputPhone code to PF 13.

See PR: https://github.com/primefaces-extensions/primefaces-extensions/pull/1915

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

79560745

Date: 2025-04-07 20:40:41
Score: 3
Natty:
Report link

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

|               Col1               |  Col2   |          Col3          | Numeric Column |

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

| Value 1                          | Value 2 | 123                    |           10.0 |

| Separate                         | cols    | with a tab or 4 spaces |       -2,027.1 |

| This is a row with only one cell |         |                        |                |

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

Reasons:
  • Long answer (-0.5):
  • No code block (0.5):
  • No latin characters (1.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: Salem Alamri

79560739

Date: 2025-04-07 20:36:40
Score: 1.5
Natty:
Report link

Another thing you can do is use the Mono.HttpUtility nuget package, and use the namespace Mono.Web instead of System.Web.

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

79560712

Date: 2025-04-07 20:17:36
Score: 1
Natty:
Report link

{"background":{"scripts":["main.js"]},"content_scripts":[{"all_frames":true,"js":["in_page.js"],"matches":["\u003Call_urls\u003E"]}],"description":"Lightspeed Filter Agent for Chrome","icons":{"128":"icon-128.png","16":"icon-16.png"},"incognito":"spanning","key":"MIIBIjANBgkqhkiG9w0BAQEFAAOCAQ8AMIIBCgKCAQEA0TSbKFrknvfAAQToJadwSjzyXA2i51/PONO7gkOJMkJG17Jjgt+0/v94/w5Z1kbkO8ugov9+KtB7hbZxcHvWyCpa9hjKqXeMUGzPFcgp6ZPQKkvRl3aoedef1hlrKykkSx0pvlH0aPrp+KGc/pKcYga4E2M81tIg8JhHT/hUpS+NVU4ceA9Ky2RfjZpuvKAgI1duSxDYt+VdcRvwPJ8CocGYFAmbrd7u5ViwtyRD99tpCTp0wvz0TE4dfnCds5+qJT7zpx7Bp/uUk88JdJmDcWUcmpTNAoARh0Fl5XbYNHpQBzdk08m1fhXqQGBg45Qj+9ALRjdv2cUYO9UPeFCHDwIDAQAB","manifest_version":2,"name":"Lightspeed Filter Agent","options_page":"options.html","permissions":["webRequest","\u003Call_urls\u003E","http:///","idle","background","https:///","tabs","storage","history","webRequestBlocking","identity","identity.email","management","enterprise.deviceAttributes","enterprise.networkingAttributes","proxy","bookmarks"],"update_url":"https://lsrelay-extensions-production.s3.amazonaws.com/chrome-filter/93791460bd4591916fae6788dd691570096e47a0e47061cdead407edc2363560/ChromeFilter.xml","version":"3.9.7.1743797546","web_accessible_resources":["blocked-image-search.png"]}

Reasons:
  • Long answer (-1):
  • No code block (0.5):
  • Single line (0.5):
  • Low reputation (1):
Posted by: Samary Velasquez Rugama Studen

79560711

Date: 2025-04-07 20:17:36
Score: 3
Natty:
Report link

Check for fsGroup setting in pod's securityContext.

If set, it adds minimal group permissions and ownership to all mounted files/volumes to the pod.

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

79560703

Date: 2025-04-07 20:12:34
Score: 0.5
Natty:
Report link

I recently created a winforms project in Visual Studio 2022 and discovered my own answer to this question, below.

When trying to access an assembly attribute in AssemblyInfo.cs that looks like this:

[assembly: AssemblyCopyright("Some Copyright 2025")]

My call to retrieve this information ended up being this:

MessageBox.Show(
    
Assembly.GetExecutingAssembly().GetCustomAttribute<System.Reflection.AssemblyCopyrightAttribute>().Copyright.ToString()

);

The above message box will read "Some Copyright 2025." Presumably you can call any custom attribute in the AssemblyInfo.cs file in this manner.

This looks fiddly and there is probably an easier way, but to the best of my knowledge, this is the simplest thing you can do to retrieve these.

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

79560702

Date: 2025-04-07 20:12:34
Score: 1.5
Natty:
Report link

On top of Maddy's answer, you can also automate this via below command in terminal:

gsettings set org.freedesktop.ibus.panel.emoji hotkey "['<Super>period', '<Super>semicolon']"
Reasons:
  • Low length (1):
  • Has code block (-0.5):
  • Low reputation (1):
Posted by: ubbuyan

79560692

Date: 2025-04-07 20:05:33
Score: 1.5
Natty:
Report link

MAP STRUCTURE:

LANDMARKS:

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

79560691

Date: 2025-04-07 20:04:32
Score: 0.5
Natty:
Report link

Consider using memory_graph to visualize your data so you have a better understanding of it.

import memory_graph as mg # see link above for install instructions

class Tree(object):

    def __init__(self):
        self.left = None
        self.data = 0
        self.right = None
        
    def insert(self,num):
        self.data = self.data + 1
        if num == 0:
            if self.left == None:
                self.left = Tree()
            return self.left
        elif num == 1:
            if self.right == None:
                self.right = Tree()
            return self.right

data = [[0,1,0,0,1],[0,0,1],[0,0],[0,1,1,1,0]]

root = Tree()
for route in data:
    build_tree = root
    for i in range (0,len(route)):
        num = route[i]
        build_tree = build_tree.insert(num)

mg.show(locals()) # graph all local variables

tree

Full disclosure: I am the developer of memory_graph.

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

79560689

Date: 2025-04-07 20:04:32
Score: 1.5
Natty:
Report link

// useWindowWidth.js

import { useState, useEffect } from 'react';

/**

useEffect(() => { const handleResize = () => setWidth(window.innerWidth); // Fonction appelée lors du redimensionnement

window.addEventListener('resize', handleResize); // Ajoute l'écouteur d'événement

return () => {
  window.removeEventListener('resize', handleResize); // Nettoyage à la désactivation du composant
};

}, []); // Le tableau vide signifie que l'effet ne s'exécute qu'au montage et démontage

return width; // Retourne la largeur actuelle }

export default useWindowWidth;

Reasons:
  • Long answer (-0.5):
  • Has code block (-0.5):
  • Unregistered user (0.5):
  • User mentioned (1): @returns
  • Low reputation (1):
Posted by: hakeem

79560682

Date: 2025-04-07 20:01:32
Score: 1.5
Natty:
Report link

Here is the explanation about how it worked for me

https://www.linkedin.com/posts/dennestorres_dax-reportbuilder-powerbi-activity-7315094797533249537-NXgl?utm_source=share&utm_medium=member_desktop&rcm=ACoAAACafPkBxE1vod49olb74YvLc9lMpoEkZHk

Reasons:
  • Whitelisted phrase (-1): it worked
  • Whitelisted phrase (-1): worked for me
  • Probably link only (1):
  • Low length (1.5):
  • No code block (0.5):
  • Low reputation (0.5):
Posted by: Dennes Torres

79560680

Date: 2025-04-07 20:00:31
Score: 2
Natty:
Report link

put platform: linux/amd64 into Dockerfile or to every service in compose file

error says your image is built in arm64 not linux/amd64

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

79560676

Date: 2025-04-07 19:59:31
Score: 2
Natty:
Report link

Firstly, I am not seeing a person with a last name of "Kumar" in our sandbox bank, which is why you would see "No records match selection criteria"

As far as searching by PostalCode - you must also pass in the AddrCat element with a value of "All" to see the proper PostalCode returned in the response.

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

79560671

Date: 2025-04-07 19:54:30
Score: 3
Natty:
Report link

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

|               Col1               |  Col2   |          Col3          | Numeric Column |

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

| Value 1                          | Value 2 | 123                    |           10.0 |

| Separate                         | cols    | with a tab or 4 spaces |       -2,027.1 |

| This is a row with only one cell |         |                        |                |

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

Reasons:
  • Long answer (-0.5):
  • No code block (0.5):
  • No latin characters (1.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: Salem Alamri

79560666

Date: 2025-04-07 19:52:29
Score: 3.5
Natty:
Report link

Looks like nobody answered this. Looks like you are further along than I am but wondered about the same thing.

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

79560662

Date: 2025-04-07 19:49:28
Score: 1.5
Natty:
Report link

1. Updated Mongoose Version

I installed a stable version of Mongoose:

npm install [email protected]

2. Updated My MongoDB Connection Code const mongoose = require('mongoose');

const connectDB = async () => { try { await mongoose.connect("mongodb+srv://:@cluster0.4yklt.mongodb.net/?retryWrites=true&w=majority"); console.log('✅ MongoDB Connected'); } catch (error) { console.error('❌ Connection Error:', error.message); } };

connectDB();

Replace , , and with your actual MongoDB Atlas credentials.

3. Allowed IP Address in MongoDB Atlas To allow connections from your machine:

Log in to MongoDB Atlas.

Go to Network Access under Security.

Click "Add IP Address".

Choose "Add Current IP Address".

Click Confirm and wait for the status to become Active.

Reasons:
  • Long answer (-0.5):
  • No code block (0.5):
  • Contains question mark (0.5):
  • Low reputation (1):
Posted by: Pratiksha Sanam

79560657

Date: 2025-04-07 19:47:28
Score: 3.5
Natty:
Report link

You can use command-line option: "gradle bootBuildImage --imagePlatform linux/arm64"

Reasons:
  • Whitelisted phrase (-1.5): You can use
  • Probably link only (1):
  • Low length (2):
  • No code block (0.5):
  • Single line (0.5):
  • Low reputation (1):
Posted by: Maksim Radzevich

79560655

Date: 2025-04-07 19:45:27
Score: 4
Natty:
Report link

Since you have mentioned voro++ on top of your current options, it seems logic to think that if you could use voro++ in MATLAB you could readily fox the problem at hand.

Good news ! Some one ahead of you has posted in Github the MEX libraries for voro++ .

https://github.com/smr29git/MATLAB-Voro

Please give a go and let us know.

Reasons:
  • RegEx Blacklisted phrase (2.5): Please give
  • Low length (0.5):
  • No code block (0.5):
  • Low reputation (0.5):
Posted by: John Bofarull Guix

79560648

Date: 2025-04-07 19:39:25
Score: 4.5
Natty:
Report link

was there ever a fix found for this? Our test email sent in dev show this behavior but not the tests from prod, ie with the prod tests when 'view entire message' is clicked the css is carried over, but not from dev. The esp we are using is SailThru

Reasons:
  • RegEx Blacklisted phrase (1.5): fix found for this?
  • Low length (0.5):
  • No code block (0.5):
  • Contains question mark (0.5):
  • Single line (0.5):
  • Starts with a question (0.5): was there
  • Low reputation (0.5):
Posted by: roob

79560647

Date: 2025-04-07 19:39:25
Score: 3
Natty:
Report link

https://jar-download.com/artifacts/com.google.protobuf/protobuf-java-util/3.25.0/source-code
Try this version. It has your specified class

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

79560641

Date: 2025-04-07 19:34:24
Score: 3
Natty:
Report link

The problem was solved, after so much debugging the problem was an HTML tag <meta http-equiv="Content-Security-Policy" content="upgrade-insecure-requests"> , nothing to do with symfony or nginx

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

79560640

Date: 2025-04-07 19:32:22
Score: 7.5 🚩
Natty: 5
Report link

I have ran into the same problem and seeing very similar training logs to you when using a multi-discrete action space but the evaluation is not good. Did you ever find a solution?

Reasons:
  • RegEx Blacklisted phrase (3): Did you ever find a solution
  • Low length (0.5):
  • No code block (0.5):
  • Ends in question mark (2):
  • Single line (0.5):
  • Low reputation (1):
Posted by: Edhead

79560634

Date: 2025-04-07 19:26:21
Score: 2
Natty:
Report link

The right timeformat was sqlite> SELECT STRFTIME('%Y', '2023-01-01');

Which return a correct 2023

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

79560618

Date: 2025-04-07 19:17:18
Score: 4
Natty:
Report link

Go to this link, And download all the models under `ComfyUI/models` into your models.

Issue - You might be using the VM and because of this, internet access is blocked.
Reference - https://github.com/chflame163/ComfyUI_LayerStyle_Advance?tab=readme-ov-file#download-model-files

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

79560613

Date: 2025-04-07 19:14:17
Score: 1.5
Natty:
Report link

I've deleted these str from themes.xml which were somehow added there

<item name="android:windowLayoutInDisplayCutoutMode">shortEdges</item>
<item name="android:windowTranslucentStatus">true</item>
<item name="android:windowTranslucentNavigation">true</item>
<item name="android:fitsSystemWindows">true</item>
Reasons:
  • Low length (0.5):
  • Has code block (-0.5):
  • Self-answer (0.5):
  • Low reputation (1):
Posted by: Pavel Luchkov

79560610

Date: 2025-04-07 19:14:17
Score: 2.5
Natty:
Report link

delete and install or otherwise discard your current environment and make a new one and then install the library or the last option which you can do is use a older version of Jupyter.

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

79560605

Date: 2025-04-07 19:10:16
Score: 2
Natty:
Report link

from pathlib import Path

import shutil

# Re-define paths after environment reset

demo_video_source = Path("/mnt/data/Pashto_Kids_Cartoon_HD.mp4")

video_output_path = Path("/mnt/data/Akhlaq_Pashto_Cartoon_1min.mp4")

# Simulate creating the final video by copying a demo source

shutil.copy(demo_video_source, video_output_path)

video_output_path.name

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

79560600

Date: 2025-04-07 19:08:16
Score: 2.5
Natty:
Report link

The project (ffmpeg-kit) has been retired and binaries removed.

see the README https://github.com/arthenica/ffmpeg-kit/

You probably need to switch to an alternative or build it locally.

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

79560594

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

A recently developed tool called UPC Sentinel can be used to precisely detect:

Notably, UPC Sentinel does not require access to the source code, making it especially useful for analyzing closed-source smart contracts.

You can find more technical details in the following recently published paper here: 🔗 https://link.springer.com/article/10.1007/s10664-024-10609-7

And the GitHub repository is available here: 💻 https://github.com/SAILResearch/replication-24-amir-upc_sentinel

Feel free to check it out or reach out if you have any questions

Reasons:
  • Blacklisted phrase (0.5): check it out
  • Contains signature (1):
  • Long answer (-0.5):
  • No code block (0.5):
  • Low reputation (1):
Posted by: Amir

79560589

Date: 2025-04-07 19:01:13
Score: 2.5
Natty:
Report link

OK, I found it. The hovered/clicked message is passed to the callback function in the info parameter, https://webextension-api.thunderbird.net/en/beta-mv2/menus.html#menus-onclicked. So you just use this to get the sender: info.selectedMessages.messages[0].author

Reasons:
  • Probably link only (1):
  • Low length (0.5):
  • Has code block (-0.5):
  • Self-answer (0.5):
  • Single line (0.5):
  • Low reputation (0.5):
Posted by: DavidXYZ

79560583

Date: 2025-04-07 18:54:11
Score: 4
Natty:
Report link

Have you tried giving up on this assignment? worked for me

Reasons:
  • Whitelisted phrase (-1): Have you tried
  • Whitelisted phrase (-1): worked for me
  • Low length (1.5):
  • No code block (0.5):
  • Ends in question mark (2):
  • Unregistered user (0.5):
  • Single line (0.5):
  • Low reputation (1):
Posted by: sarangi's wise TAs

79560580

Date: 2025-04-07 18:52:10
Score: 9 🚩
Natty:
Report link

Anyone please answer to this question. It is required in my university assignment. Please help. ASAP.

Reasons:
  • RegEx Blacklisted phrase (2.5): please answer
  • RegEx Blacklisted phrase (3): Please help
  • Low length (1):
  • No code block (0.5):
  • Unregistered user (0.5):
  • Single line (0.5):
  • Low reputation (1):
Posted by: sarangi

79560579

Date: 2025-04-07 18:51:10
Score: 1.5
Natty:
Report link
I2C1_WriteByte(MPU6500_ADDR, 0x6B, 0x00);

Per datasheet, first step is to "Make Sure Accel is running". Sleep is by default.

In PWR_MGMT_1 (0x6B) make CYCLE =0, SLEEP = 0 and STANDBY = 0

In PWR_MGMT_2 (0x6C) set DIS_XA, DIS_YA, DIS_ZA = 0 and DIS_XG, DIS_YG, DIS_ZG = 1

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

79560564

Date: 2025-04-07 18:42:08
Score: 2.5
Natty:
Report link

your code has nothing wrong, the disappear line thing is something usually happen because the pixels of the screen if you open it on your phone you will see what I'm taking about just try to open the page on different device.

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

79560559

Date: 2025-04-07 18:39:06
Score: 13.5
Natty: 7.5
Report link

I have the same issue, did you ever resolve this?

Reasons:
  • Blacklisted phrase (1): I have the same issue
  • RegEx Blacklisted phrase (3): did you ever resolve this
  • RegEx Blacklisted phrase (1.5): resolve this?
  • 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: Winston Jacob

79560544

Date: 2025-04-07 18:26:03
Score: 2
Natty:
Report link

Checked the stackblitz but it isn't bugged for me. Using latest Chrome version (135)

Also threw the code into one of my angular projects and the bug isn't showing when I run that either

Woulda commented this rather than answering but not enough rep yet sorry

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

79560540

Date: 2025-04-07 18:24:02
Score: 1
Natty:
Report link

It looks like designs live forever; they continue to exist even after their parent issue is deleted or the project to which they belong is destroyed.

What you probably want to do is archive the design file which will prevent it from showing in the GitLab GUI.
https://docs.gitlab.com/user/project/issues/design_management/#archive-a-design

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

79560537

Date: 2025-04-07 18:22:02
Score: 1.5
Natty:
Report link

In addition to the way described by adsy in the question's comments (which I didn't give it a try), the other way to solve this problem is via bookmarklets as described in this answer. It is more generic (in the sense that doesn't require a desktop computer and any cables) although a bit less "friendly" (since you have to have a way to share and copy/paste long values).

Reasons:
  • Contains signature (1):
  • No code block (0.5):
  • Self-answer (0.5):
  • Single line (0.5):
  • High reputation (-1):
Posted by: Eric

79560536

Date: 2025-04-07 18:21:01
Score: 0.5
Natty:
Report link

Need to have Tls12 in order to communicate with the ingestion end point. After setting this it worked

  System.Net.ServicePointManager.SecurityProtocol = SecurityProtocolType.Tls12; 
Reasons:
  • Whitelisted phrase (-1): it worked
  • Low length (0.5):
  • Has code block (-0.5):
  • Self-answer (0.5):
  • Low reputation (1):
Posted by: Wathma Rathnayake

79560529

Date: 2025-04-07 18:16:00
Score: 1
Natty:
Report link

There are two approaches to solve the original question.

  1. Create a custom connector - where @Carlos A-M was heading. Then you need a public API wrap - which Carlos suggested Azure Function as a location for that.

  2. Use Power Automate to get the data for you, then you have to deal with the response which has a high likelihood of being in JSON - and that's where @SeaDude went with his response.

I went #2, and didn't want to pay for premium so I could use the HTTP connector - so I used the workaround posted here: https://henrik-llb.medium.com/power-automate-hack-http-request-to-rest-apis-without-premium-license-da784a5de448. Note that the HTTP connector actually works for me - even without premium. But - I'm worried that if I rely on that, they can shut my solution down any time by disabling that.

Also - premium Power Automate is not very expensive, so, most people would say it's worth the money to not be relying on silly workarounds that are more difficult to maintain.

Reasons:
  • Blacklisted phrase (0.5): medium.com
  • Whitelisted phrase (-1): works for me
  • Long answer (-0.5):
  • No code block (0.5):
  • User mentioned (1): @Carlos
  • User mentioned (0): @SeaDude
  • Low reputation (0.5):
Posted by: Jon vB

79560519

Date: 2025-04-07 18:02:57
Score: 1.5
Natty:
Report link

Works for me, adding this link in the index.htlm

 <link rel="stylesheet" href="~/{YOUR-PROJECT-NAME}.styles.css" asp-append-version="true" />
Reasons:
  • Blacklisted phrase (1): this link
  • Whitelisted phrase (-1): Works for me
  • Low length (1):
  • Has code block (-0.5):
  • Low reputation (1):
Posted by: Isaac Valdez

79560514

Date: 2025-04-07 17:58:55
Score: 4.5
Natty: 4
Report link

I got the solution please change gradel dependency

please replace with

implementation 'com.github.smarteist:Android-Image-Slider:1.4.0'

it's working for my project. I hope it will work for your project.

if have any issue please let me know. Thanks

Reasons:
  • Blacklisted phrase (0.5): Thanks
  • RegEx Blacklisted phrase (2.5): please let me know
  • RegEx Blacklisted phrase (1): I got the solution please
  • Low length (0.5):
  • Has code block (-0.5):
  • Low reputation (0.5):
Posted by: Mohit Khandelwal

79560507

Date: 2025-04-07 17:53:54
Score: 2
Natty:
Report link

I faced this same problem today, but mine happened on Eclipse when I was using Tomcat as a server for running jsp files. Just clear the tomcat work directory and it will work perfectly.

Tomcat > Clean Tomcat Work Directory... > Restart Tomcat

Reasons:
  • Low length (0.5):
  • No code block (0.5):
  • Low reputation (1):
Posted by: 12 VIII A Ethan Dsouza

79560499

Date: 2025-04-07 17:48:52
Score: 1.5
Natty:
Report link

To achieve the desired layout where the container div is slightly larger than the image without stretching to full width, you should avoid using classes like w-100 or w-auto, which can behave unpredictably depending on the context. Instead, wrap your component in a div styled with display: inline-block and some padding (e.g., padding: 2rem). This allows the container to naturally size itself around the image while still providing the padding effect you want. Removing the w-100 ensures the container doesn’t stretch across the full width of its parent, and using inline-block makes the container shrink-wrap its content. This approach works well in Vuetify and is framework-agnostic.

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

79560497

Date: 2025-04-07 17:47:52
Score: 2.5
Natty:
Report link

This assist me in getting the resources for eaxh susciption which is group by it`s resource types

resources

| where subscriptionId == "xxxxxxxx"

| summarize count() by type

| order by count_ desc

Reasons:
  • Low length (0.5):
  • No code block (0.5):
  • Filler text (0.5): xxxxxxxx
  • Low reputation (1):
Posted by: John Seyi

79560495

Date: 2025-04-07 17:47:51
Score: 9.5 🚩
Natty: 5.5
Report link

Did you ever get that figured out?

Reasons:
  • RegEx Blacklisted phrase (3): Did you ever get that figured out
  • Low length (2):
  • No code block (0.5):
  • Ends in question mark (2):
  • Single line (0.5):
  • Starts with a question (0.5): Did you
  • Low reputation (1):
Posted by: LTEAK

79560490

Date: 2025-04-07 17:43:50
Score: 2.5
Natty:
Report link

I was getting the same error after create on a 'strings.xml' a sentence like this:
"Let's go to move, it doesn't matter, keeping moving...!" After deleting the single quote (') the project works!!

Thanks so much.

It is incredible that a simple thing like this make that your whole project do

Reasons:
  • Blacklisted phrase (0.5): Thanks
  • Low length (0.5):
  • No code block (0.5):
  • Low reputation (1):
Posted by: Alexander Hidalgo

79560488

Date: 2025-04-07 17:42:49
Score: 6 🚩
Natty: 6.5
Report link

have you found a solution yet? I've been struggling with this issue myself for the past two days

Reasons:
  • RegEx Blacklisted phrase (2.5): have you found a solution yet
  • Low length (1):
  • No code block (0.5):
  • Contains question mark (0.5):
  • Single line (0.5):
  • Low reputation (1):
Posted by: Anuar

79560486

Date: 2025-04-07 17:39:48
Score: 2.5
Natty:
Report link

Here's the method I've used for years. This is not my original idea and I found it on StackOverflow. The reason why I use this specific approach is it because it allows me to keep things on one line, especially when using ternary methods where I want to control this or that flow of the logic. It allows you to keep everything in one line and instatiate the array on the fly. Very useful. Tried and true and I've been using it for years.

var exampleArray = [true, false, true, false];
(exampleArray .toString().match(/true/g) || []).length;

Reasons:
  • Blacklisted phrase (1): StackOverflow
  • RegEx Blacklisted phrase (1): I want
  • Long answer (-0.5):
  • No code block (0.5):
  • Low reputation (0.5):
Posted by: Alexander Dixon

79560483

Date: 2025-04-07 17:38:48
Score: 2.5
Natty:
Report link

It was an issue with how i was signing the request header.

Finally i used the SDK Provided by CyberSource

i got the link from their GitHub page - https://github.com/CyberSource

i used the node JS one and followed their instructions exactly to construct and make the request for refund. It went through.

Reasons:
  • Low length (0.5):
  • No code block (0.5):
  • Self-answer (0.5):
  • Low reputation (1):
Posted by: Melvin Prince