79127856

Date: 2024-10-26 05:13:39
Score: 3.5
Natty:
Report link

Go into "Data"-"calculate"-"AutoCalculate"and press enter. highlight the cells you want to function or just select the whole sheet.

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

79127840

Date: 2024-10-26 04:58:36
Score: 4
Natty:
Report link

In my case, i can not access to web https://jitpack.io/com/android/tools/build/gradle/2.3.3/gradle-2.3.3.pom (404 error) so I can not download file, but on other devices can access and download file so can pass error

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

79127827

Date: 2024-10-26 04:40:33
Score: 3
Natty:
Report link

n = int(raw_input("What is n? "))

def digit(n): if n < 10: return 1 else: return 1 + digit(n/10)

print digit(n)

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

79127815

Date: 2024-10-26 04:30:31
Score: 0.5
Natty:
Report link

After test, I think the problem is your response.

You should response like:

{
  "update": {
    "message": "Updated!",
    "props": {
      "attachments": [
        {
          "text": "Ready?",
          "actions": [
            {
              "name": "Go!",
              "integration": {
                "url": "https://somewhere.com?foo=bar",
                "context": {
                  "action": "event_submitted"
                }
              }
            }
          ]
        }
      ]
    }
  },
  "ephemeral_text": "You updated the post!"
}

And you may want to check https://developers.mattermost.com/integrate/plugins/interactive-messages/

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

79127808

Date: 2024-10-26 04:14:28
Score: 4
Natty:
Report link

uninstalling sharp is working for me.

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

79127775

Date: 2024-10-26 03:41:22
Score: 1
Natty:
Report link

In InternalPartition.cpp (that should be .ixx I guess), you must export your partition, and export the definiton of Internal, so when MyLibrary.cpp import it, it has access to the exported class.

export module MyLibrary:InternalPartition;
...
export class Internal
...
Reasons:
  • Low length (0.5):
  • Has code block (-0.5):
  • Low reputation (1):
Posted by: Dumii

79127772

Date: 2024-10-26 03:38:22
Score: 2.5
Natty:
Report link

you can try to use husi instead. it's having support of juicity without the question you've mentioned.

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

79127771

Date: 2024-10-26 03:38:22
Score: 0.5
Natty:
Report link

Use constr instead str:

from ninja import Schema
from pydantic import constr

class TestSchema(Schema):
    name1: constr(min_length=6, max_length=6)
    name2: constr(max_length=6)
    name3: constr(min_length=6)
Reasons:
  • Low length (0.5):
  • Has code block (-0.5):
  • Low reputation (0.5):
Posted by: Mateus Alves de Oliveira

79127770

Date: 2024-10-26 03:35:21
Score: 1.5
Natty:
Report link

It's likely that the model that you are using for the Action Group is not enabled in your AWS Account.

Proceed to go to "Amazon Bedrock" service. Then click on "Model Access", and request access to the corresponding model (example: "Claude 3.5 Sonnet").

enter image description here

This should be enough, as the error is a missleading one.

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

79127749

Date: 2024-10-26 03:13:17
Score: 0.5
Natty:
Report link

If you followed all previous answears and the upgrade guide and still had no success, make sure you have every package that is referenced in your project in your composer.json, for example if you have something like: "Barryvdh\DomPDF\ServiceProvider::class" or "use Barryvdh\DomPDF\PDF" in your code, you have to make sure that in your composer.json you have "barryvdh/laravel-dompdf", or if you don't need or don't want it anymore remove it from your code, this can happen when you merge code from other branchs but your composer.json file is not in sync with other branchs, the error message isn't much helpful, but take a look at your log file storage/logs/laravel.log

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

79127733

Date: 2024-10-26 02:59:14
Score: 4.5
Natty:
Report link

<[]>allow/access=false/deny(y)

Reasons:
  • Low length (2):
  • No code block (0.5):
  • Has no white space (0.5):
  • Single line (0.5):
  • Low reputation (1):
Posted by: Robert

79127730

Date: 2024-10-26 02:56:13
Score: 2
Natty:
Report link

So you know, there is now a much faster way to disable the active state on a v-btn:

<v-btn :active="false">

Mentioned here: https://github.com/vuetifyjs/vuetify/issues/8172

KaelWD added a commit that referenced this issue on Sep 15, 2022 @KaelWD feat(VBtn): inherit active route state … b1b1740 Can be prevented with :active="false", same as VListItem

Reasons:
  • Low length (0.5):
  • Has code block (-0.5):
  • User mentioned (1): @KaelWD
  • Low reputation (1):
Posted by: deltaspace mad scientist

79127722

Date: 2024-10-26 02:51:12
Score: 4.5
Natty:
Report link

I think I’m having a similar issue with the golang sample. Using the Unix socket results in auth failure and I need to use the first party cloud SQL connector: https://github.com/GoogleCloudPlatform/golang-samples/blob/main/cloudsql/mysql/database-sql/connect_connector.go

In the past Unix socket connections have worked but within the last three or so months it seems to have stopped working.

A work around I found is to login to the DB manually using either the cloud shell or the sql auth proxy https://cloud.google.com/sql/docs/mysql/connect-auth-proxy And then redeploy the app and it seems to connect then.

Reasons:
  • Blacklisted phrase (0.5): I need
  • No code block (0.5):
  • Me too answer (2.5): having a similar issue
  • Low reputation (1):
Posted by: Hulto

79127698

Date: 2024-10-26 02:28:08
Score: 2.5
Natty:
Report link

BIOS: 00004e17 ??? 01 05 02 00 22 03 add dword ptr [invalid + 52559874], eax

00004f7f ??? 01 05 00 00 00 00 add dword ptr [invalid], eax

000054e2 ??? 09 15 00 0c 04 00 or dword ptr [invalid + 265216], edx

00006d65 ??? 03 04 05 06 07 08 0 add eax, dword ptr [invalid + 151521030]

000c539f ??? a2 0c 44 c7 d5 mov byte ptr [invalid + 3586606092], al

000c53da ??? a1 fc f4 a6 40 mov eax, dword ptr [invalid + 1084683516]

000c5415 ??? a0 fa 7a c4 18 mov al, byte ptr [invalid + 415529722]

000c5554 ??? 22 35 e8 72 5d b9 and dh, byte ptr [invalid]

000c5582 ??? 81 25 a3 72 d1 89 1 and dword ptr [invalid], a40f968c

000c55a4 ??? a3 04 40 ed 9a mov dword ptr [invalid + 2599239684], eax

000c55ac ??? db 2d c9 15 2d 96 fld ptr [invalid]

000c5623 ??? a0 cd b3 d5 7c mov al, byte ptr [invalid + 2094379981]

Reasons:
  • Blacklisted phrase (1): ???
  • Long answer (-0.5):
  • No code block (0.5):
  • Contains question mark (0.5):
  • Low reputation (1):
Posted by: avnevolin

79127682

Date: 2024-10-26 02:05:04
Score: 0.5
Natty:
Report link

2024: I found a simple approach, no need to edit build.gradle file.

Just add jniLibs dir and subdirs for archs, as in picture below (it's a simple answer by MS Copilot): enter image description here

Reasons:
  • Probably link only (1):
  • Low length (1):
  • Has code block (-0.5):
  • High reputation (-1):
Posted by: Dan D.

79127679

Date: 2024-10-26 02:03:04
Score: 3.5
Natty:
Report link

You could use JSONB column type in Postgres.

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

79127678

Date: 2024-10-26 02:03:04
Score: 1.5
Natty:
Report link

this isn't working, im still getting 1 fps bruh, i guess maybe is the compiler broken or somenthing, because as I am in the version of jdk 22, the source editor asks to trade (it of the option not to trade) after activating the exchange starts to crash. maybe that's it. I will not format my pc again because of robocode

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

79127663

Date: 2024-10-26 01:49:01
Score: 2.5
Natty:
Report link

Downgrade the @types/express package- npm i -D @types/express@4 The problem occurs mainly for the latest version.

Reasons:
  • Low length (1):
  • No code block (0.5):
  • Low reputation (1):
Posted by: Mahir faysal Dipto

79127653

Date: 2024-10-26 01:37:59
Score: 2.5
Natty:
Report link

Sub DesignarMantenimiento() Dim tbl As Table Dim row As Integer Dim respuesta As String Dim fechaHoy As String Dim celdaFecha As Cell Dim celdaCompletado As Cell

' Tomar la fecha de hoy
fechaHoy = Format(Date, "dd/mm/yyyy")

' Asegúrate de tener solo una tabla en el documento o especifica la tabla adecuada
Set tbl = ActiveDocument.Tables(1)

' Iterar sobre cada fila, excluyendo el encabezado
For row = 2 To tbl.Rows.Count
    Set celdaFecha = tbl.Cell(row, 4) ' Columna de Fecha Programada
    Set celdaCompletado = tbl.Cell(row, 5) ' Columna de Tareas a Realizar

    ' Preguntar si el mantenimiento de este bloque fue completado
    respuesta = InputBox("¿El mantenimiento del " & celdaFecha.Range.Text & " para el " & tbl.Cell(row, 1).Range.Text & " fue completado? (Sí/No)", "Confirmación de Mantenimiento")

    ' Si la respuesta es Sí, actualizar la celda de tareas como completado
    If LCase(respuesta) = "sí" Then
        celdaCompletado.Range.Text = "Completado el " & fechaHoy
    End If
Next row

MsgBox "Designación de mantenimiento actualizada.", vbInformation

End Sub

Reasons:
  • Blacklisted phrase (1): ¿
  • Blacklisted phrase (2): Pregunta
  • Long answer (-1):
  • Has code block (-0.5):
  • Low reputation (1):
Posted by: Juan fco Castillo

79127651

Date: 2024-10-26 01:36:59
Score: 1.5
Natty:
Report link

i'm assuming it's OpenVPN 3

to see the configs u can do

openvpn3 configs-list

to remove an unwanted config u can do

openvpn3 config-remove --config <profile-id>
Reasons:
  • Low length (1):
  • Has code block (-0.5):
  • Low reputation (1):
Posted by: RYON

79127645

Date: 2024-10-26 01:23:57
Score: 2
Natty:
Report link

A fun ADULT IS HEALD HOSTAGE HOSTIDGE RANSOMNED AND FOR HER ENCES AND ENCOMES AND IN COME AND IN NOUNDS MONEY AND ACCESSES FOR LIFE. OF LIFE. I AM SHE, HER, THEE, HEALD. TAKEN ARE ALL SAVED AND WHATS TO LIVE ON. AS BANK HOLDINGS. WITHELD TOTALS AND STOCKS. IM GOING TO KILL HIM IF YOU ALL DO NOT FUKN STOP HIM AND QUIT FUTHER PUNISHING ME AS YOU TOOK ME AND I AND SHE AMD HER AND THEE AS INCINERATOR BURNED. THATS NOBURNED. NOCINERATOR. L.M. NO AND ACT AS IF my 5 as V were cindys.as informant. That's noformant. Nonformant. Unformant. Not for Cindy as a mantle 9r award or trophy is that real she was caught. She were caught.before.

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

79127642

Date: 2024-10-26 01:20:57
Score: 3
Natty:
Report link

had same issue in EKS cluster, i have to enable public access in the networking tab which was private by default.

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

79127631

Date: 2024-10-26 01:04:53
Score: 2
Natty:
Report link

Seems we're not the only ones.

I got around this by downloading the 2021 version here: https://www.kaggle.com/datasets/sssunyy/ade20k/data

And the 2016 version here: http://sceneparsing.csail.mit.edu/

Based on the conversation I found here, it looks like downloading from the official site gets you the 2021 version, but it's hard to know for sure without access.

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

79127627

Date: 2024-10-26 01:00:52
Score: 5.5
Natty: 4.5
Report link

Is there any update regarding with this problem? Currently facing this problem too

Reasons:
  • Blacklisted phrase (1): Is there any
  • Low length (1.5):
  • No code block (0.5):
  • Contains question mark (0.5):
  • Single line (0.5):
  • Starts with a question (0.5): Is there any
  • Low reputation (1):
Posted by: MULIG

79127621

Date: 2024-10-26 00:50:50
Score: 1.5
Natty:
Report link

I have a solution inspired in this comment: ...requests/issues/1803#...30869031

from concurrent.futures import ThreadPoolExecutor


with ThreadPoolExecutor(max_workers=1) as executor:
    future = executor.submit(requests.get, url, stream=True)
    response = future.result(timeout=3)  # 3 secs of timeout
Reasons:
  • Probably link only (1):
  • Low length (0.5):
  • Has code block (-0.5):
  • Low reputation (0.5):
Posted by: eEmanuel Oviedo

79127612

Date: 2024-10-26 00:39:48
Score: 0.5
Natty:
Report link

You probably should check for Traversable objects in general using instanceof_function(Z_OBJCE_P(data), zend_ce_traversable).

If the type of the retval is IS_UNDEF after calling a user function, this means the function threw an exception.

Aside: you can just use Z_TYPE(retval) instead of Z_TYPE_P(&retval)

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

79127608

Date: 2024-10-26 00:36:48
Score: 3
Natty:
Report link

This is 2024. If you still have the same issue, your username should be the username of your cpanel account and the password should also be the password of your cpanel account.

import { DataSource } from 'typeorm';
import { DB_USER, DB_NAME, DB_PASSWORD, NODE_ENV, DB_TYPE, DB_PORT } from "./appconfig"
const AppDataSource = new DataSource({
type: DB_TYPE,
port: DB_PORT,
host: "localhost",
database: DB_NAME,
username: DB_USER,
password: DB_PASSWORD,
entities: [] // your entities,
synchronize: true,
logging: false,
});

AppDataSource.initialize()
.then(() => {
console.log('Database ::connected');
})
.catch((err) => {
console.error('Error during Data Source initialization:', err);
});

where to find this username config in mysql

Reasons:
  • Probably link only (1):
  • Long answer (-0.5):
  • Has code block (-0.5):
  • Me too answer (2.5): have the same issue
  • Low reputation (0.5):
Posted by: Samuel Tosan Ayo

79127590

Date: 2024-10-26 00:14:44
Score: 0.5
Natty:
Report link

Not an answer, but just some additional info.

I tried running the EmoApp from here (replacing the text to be rendered with the string from Basil's question):

On OS X (Intel) 14.6.1 with JDK 22.0.2 and JavaFX 22.0.2.

And got this output when rendering with various fonts:

output

None of the renderings provided the expected output provided in Basil's question for all text.

Reasons:
  • Blacklisted phrase (1): Not an answer
  • Blacklisted phrase (1): Is it possible to
  • No code block (0.5):
  • High reputation (-2):
Posted by: jewelsea

79127583

Date: 2024-10-26 00:06:42
Score: 1.5
Natty:
Report link

This works but you need to use your IP address in runserver, not 0.0.0.0 python manage.py runserver 192.168.10.7:8000 This works for me with devices on my local wifi

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

79127577

Date: 2024-10-26 00:02:41
Score: 1
Natty:
Report link

I found a slightly simpler way to change the color of a button in SwiftUI

Button(
    action: {
            print("¡Hola, mundo!")
            }
      )
        {
          Text("¡Hola, mundo!")
          .foregroundColor(.blue)
         }
Reasons:
  • Low length (0.5):
  • Has code block (-0.5):
  • Low reputation (1):
Posted by: Juan Carlos Robledo Morales

79127571

Date: 2024-10-25 23:57:40
Score: 3
Natty:
Report link

for overwrite only change files I'm using: robocopy B:\Source D:\Destination /MIR /E /V /ETA /R:0 /W:0 /NP

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

79127569

Date: 2024-10-25 23:56:40
Score: 0.5
Natty:
Report link

I printed my data to output as the image was rendered, and you appear to have the bytes reversed. This probably comes from not understanding that some encodings are "big-endian" and some are "little-endian".

6300,8308

should be

0063,0883
Reasons:
  • Low length (0.5):
  • Has code block (-0.5):
  • Low reputation (0.5):
Posted by: Mike

79127566

Date: 2024-10-25 23:51:39
Score: 4.5
Natty:
Report link

This is how I use it simply. You might need to check to see or add await and dubg and see where you getting. https://www.youtube.com/watch?v=7_fwNiZL0xY&t=59s

Reasons:
  • Blacklisted phrase (1): youtube.com
  • Probably link only (1):
  • Low length (1):
  • No code block (0.5):
  • Low reputation (1):
Posted by: Patrick Boholst

79127550

Date: 2024-10-25 23:36:36
Score: 1
Natty:
Report link

Recently I'd use:

AppDomain.CurrentDomain.ProcessExit += OnProcessExit;

which registers a function like this:

private static void OnProcessExit(object? sender, EventArgs e) { //.... your code here }

and gets called properly. No .dll import. Probably a lot more multiplatform this way.

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

79127530

Date: 2024-10-25 23:16:30
Score: 6 🚩
Natty: 5.5
Report link

These steps fixed this issue for me: https://stackoverflow.com/a/73132952/

Reasons:
  • 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: amigobrewbrew

79127515

Date: 2024-10-25 23:05:27
Score: 1
Natty:
Report link

Hello, everyone.

There is a beautiful diagram here: TCP/IP Reference.

It also explains:

The order of transmission of the header (from left to right)

 0                    1                   2                   3      - the tens
[0] 1 2 3 4 5 6 7 8 9 0 1 2 3 4 5 6 7 8 9 0 1 2 3 4 5 6 7 8 9 0 1    - the ones

where:

[0] is the most significant bit (MSB). That is, the bit labeled 0 is the most significant bit.

 0
[0]          - 0th (00), total 1

 0
 _ 1         - 1st (01), total 2

 0
 _ _ 2       - 2nd (02), total 3

 0
 _ _ _ ... 9 - 9th (09), total 10

    1
... 0        - 10th (10), total 11

    2
... _ 1      - 21st (21), total 22

and so on  
Reasons:
  • Probably link only (1):
  • Long answer (-0.5):
  • Has code block (-0.5):
  • Low reputation (1):
Posted by: 0m3

79127510

Date: 2024-10-25 23:02:26
Score: 0.5
Natty:
Report link

We ended up utilizing multiple endpoints in a Premium FrontDoor, essentially acting like 2 front doors.

We made the first endpoint with a route of / and https://api.modernhosting.com/my-service/* as the only backend. This allows us to essentially "map" this new endpoint host (with no route prefix) to our desired backend with a route prefix.

We then made a second endpoint which has an Origin Group containing the first endpoint and https://my-service.legacyhosting.com/*, thus allowing us to direct traffic between the two.

I feel like this setup is a little gross, but it gets the job done. Since this is a temporary arrangement for us, I'm willing to live with it. Still, it would be nice to see Azure provide something that can handle this use case more gracefully.

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

79127504

Date: 2024-10-25 22:57:25
Score: 0.5
Natty:
Report link

I just tested your code and for me it works fine. This is what I ended up using

public class Test : MonoBehaviour
{
    Vector2 a = new Vector2(0, 0);
    Vector2 b = new Vector2(0, 5);
    float movementSpeed = 2f;

    private void Update()
    {
        float move = Mathf.PingPong(Time.time * movementSpeed, 1);
        transform.position = Vector2.Lerp(a, b, move);
    }
}

Are you sure its the code itself that is wrong? Could it be something else in the game engine that isnt set up properly, for example, have you attached this script as a component to the object you want to move? Are there any other scripts that could affect this objects position? I dont think the issue is in this piece of code, the problem comes from somewhere else.

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

79127485

Date: 2024-10-25 22:43:22
Score: 3
Natty:
Report link

you can create table like this:

select * INTO Table1 From Table2

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

79127482

Date: 2024-10-25 22:41:21
Score: 1
Natty:
Report link

This is the correct sklearn method, as far as I know. Reference: https://www.youtube.com/watch?v=v2QpvCJ1ar8

Trick: Treat Model Class as hyperparameter to tune

from sklearn.model_selection import GridSearchCV
from sklearn.pipeline import Pipeline
from sklearn.ensemble import RandomForestRegressor
from sklearn.linear_model import LinearRegression
## create the Pipeline
pipe = Pipeline(
  [
      ('model', None) # Set None as placeholder
  ]
)

params = [
  dict(
    model = [LinearRegression()]
    model__penalty = ['l1', 'l2'],
  ),
  dict(
    model = [RandomForestRegressor()]
    model__n_estimators = [100, 200],
  )
]
grid = GridSearchCV(
  pipe,
  param_grid = params
)

grid.fit(X, y)
import pandas as pd
results = pd.DataFrame(grid.cv_results_)
Reasons:
  • Blacklisted phrase (1): youtube.com
  • Long answer (-0.5):
  • Has code block (-0.5):
  • Low reputation (1):
Posted by: Ahmed Thahir

79127478

Date: 2024-10-25 22:38:21
Score: 0.5
Natty:
Report link

Simply change the regex to exclude the apostrophes.

.replace(/[^a-zA-Z0-9]+(.)?/g, (_, char) => (char ? char.toUpperCase() : "")) // Remove non-alphanumerics and capitalize next character.
Reasons:
  • Low length (0.5):
  • Has code block (-0.5):
  • Low reputation (0.5):
Posted by: Adil

79127474

Date: 2024-10-25 22:35:20
Score: 1
Natty:
Report link

In my case the issue was due to a missing Proguard rule to satisfy R8

-keep class android.os.SystemProperties {*;}
Reasons:
  • Low length (1):
  • Has code block (-0.5):
  • Low reputation (0.5):
Posted by: Ganso Doido

79127473

Date: 2024-10-25 22:34:20
Score: 1
Natty:
Report link

In my case the issue was due to a missing Proguard rule to satisfy R8

-keep class android.os.SystemProperties {*;}
Reasons:
  • Low length (1):
  • Has code block (-0.5):
  • Low reputation (0.5):
Posted by: Ganso Doido

79127451

Date: 2024-10-25 22:23:18
Score: 2.5
Natty:
Report link

This is the challenging of all but I try more than what you are saying but not; I want to suggest to all programmer this fpdf error causes by your own currently made a mistake and loosing program itself. Therefore cross check all the code what you write and fix it that is the solution. Either browser or generating a copy file does not have give a solution. I respect all ; I fix I am not doing fpdf type program on my page.

Reasons:
  • RegEx Blacklisted phrase (1): I want
  • No code block (0.5):
  • Low reputation (1):
Posted by: Abinet Asrat

79127450

Date: 2024-10-25 22:19:17
Score: 2
Natty:
Report link

If you just want to save simple Data like a Bool a String or an Integer i would recommend using Shared Preferences https://developer.android.com/training/data-storage/shared-preferences

If you want to Store more complex Data like a hole Userprofil oder another complex Data structure you should use a Database concept like Room. https://developer.android.com/training/data-storage/room/

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

79127436

Date: 2024-10-25 22:09:15
Score: 3.5
Natty:
Report link

If you really want to do that, do you already searched in the pud.dev packages Manager? Maybe https://pub.dev/packages/flutter_widget_from_html or simular can do the job.

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

79127421

Date: 2024-10-25 22:01:13
Score: 3
Natty:
Report link

I was struggling with this and eventually discovered the manufacturer had placed the sticker on the case backwards and I had it wired wrong. The writing on the PCB was correct.

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

79127417

Date: 2024-10-25 21:59:13
Score: 1.5
Natty:
Report link

Convert the JPG to BMP format using your favorite image application. Windows Paint will do it, and whatever Linux has standard will do it as well.

Then, you can pull the pixel data directly out of the BMP file. The conversion will most likely produce an image with 24 bits-per-pixel, but you can find that answer in the header info of the BMP file. Also in there is the location of the pixel data. Look up the Wikipedia page for "BMP format". It's simple to understand, just from wiki's image of the format.

If 24-bit, the data will be one byte of blue, one byte of green, one byte of red, etc...to the end of the file. Yes, the data is stored BGR instead of RGB.

That data you now have is RGB888. You can convert it easily enough to RGB565. I have a very recent thread on here (StackOverflow) showing three different conversion algorithms.

Here's my quick attempt. I didn't bother rotating the image. LCD image looks better than my terrible camera allows.

enter image description here

Reasons:
  • Blacklisted phrase (1): StackOverflow
  • Long answer (-0.5):
  • No code block (0.5):
  • Low reputation (0.5):
Posted by: Mike

79127415

Date: 2024-10-25 21:58:12
Score: 3
Natty:
Report link
Future<List<DataRow>> myrow = Future.value([]);
Reasons:
  • Low length (1.5):
  • Has code block (-0.5):
  • Has no white space (0.5):
  • Single line (0.5):
  • Low reputation (1):
Posted by: mysCod3r

79127403

Date: 2024-10-25 21:54:11
Score: 4
Natty:
Report link

Are you trying to listen server method _connection.On<string>("broadcastMessage", (s2) => Getmsg(s2)); before the service started?

Reasons:
  • Low length (1):
  • Has code block (-0.5):
  • Ends in question mark (2):
  • Single line (0.5):
  • Low reputation (1):
Posted by: yigit sertac

79127394

Date: 2024-10-25 21:51:10
Score: 0.5
Natty:
Report link

The same happened when I updated Android Studio to the latest version this week. I managed to resolve the issue with the help of a different thread: https://stackoverflow.com/a/79068663.

After updating the com.android.application plugin to version 8.3.2 in the android/settings.gradle file and the gradle distributionUrl to v8.5 in the gradle-wrapper.properties file, it worked fine for me again.

Reasons:
  • Blacklisted phrase (1): stackoverflow
  • Whitelisted phrase (-1): it worked
  • Has code block (-0.5):
  • Low reputation (1):
Posted by: Lukas G

79127384

Date: 2024-10-25 21:46:09
Score: 1
Natty:
Report link

This solution worked pretty well for me. It will return a new dictionary with any key/pair that has either a different value or if it's missing entirely from the other dictionary.

diff = {x: dict_one[x] for x in dict_one if x not in dict_two or x in dict_two and dict_one[x] != dict_two[x]}

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

79127374

Date: 2024-10-25 21:42:08
Score: 3
Natty:
Report link

How many threads are you using? Adjust and increase thread size according to your cpu core count. Don't commit for each document. Call commit every 1000 docs for instance.

Reasons:
  • Low length (1):
  • No code block (0.5):
  • Contains question mark (0.5):
  • Starts with a question (0.5): How
  • Low reputation (0.5):
Posted by: M.Sinan Şahin

79127369

Date: 2024-10-25 21:39:08
Score: 2
Natty:
Report link

Looks like an 8.0.40 problem. I ran into the same error message about

Authentication Plugin '' cannot be loaded

This was on a new workstation with a completely clean install of MySQL Workbench 8.0.40 via MSI installer, using TCP/IP over SSH for connection to the server.

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

79127367

Date: 2024-10-25 21:37:05
Score: 6.5 🚩
Natty: 4.5
Report link

@goks Is there any way to get the parser or download it from github the one you created

Reasons:
  • Blacklisted phrase (1): Is there any
  • Low length (1.5):
  • No code block (0.5):
  • User mentioned (1): @goks
  • Single line (0.5):
  • Looks like a comment (1):
  • Low reputation (1):
Posted by: Gnaneswar Reddy Sodini

79127361

Date: 2024-10-25 21:35:04
Score: 0.5
Natty:
Report link

The following SQL should give you the result you are looking for:

SELECT Table1.fldOrder, 
       (SELECT TOP 1 Table2.fldT2Date 
        FROM Table2 
        WHERE Table2.fldOrder=Table1.fldOrder AND Table2.fldT2Date<=Table1.fldT1Date
        ORDER BY Table2.fldT2Date DESC;) AS fldDate 
FROM Table1;
Reasons:
  • Low length (0.5):
  • Has code block (-0.5):
  • Low reputation (0.5):
Posted by: BobS

79127355

Date: 2024-10-25 21:32:04
Score: 1
Natty:
Report link

You can also pipe it to select object to get both the name and powershell version

Find-Module -Name AzureAD | Select-Object -Property Name, @{Name="PowerShellVersion";Expression={$_.AdditionalMetadata.PowerShellVersion}}

Hope this helps

Reasons:
  • Whitelisted phrase (-1): Hope this helps
  • Low length (0.5):
  • No code block (0.5):
  • Low reputation (1):
Posted by: Cory Bouma

79127335

Date: 2024-10-25 21:22:01
Score: 2
Natty:
Report link

Does something like below will work for you? If not why?

import org.springframework.data.jpa.repository.Query;
import org.springframework.data.repository.query.Param;
import java.util.List;

public interface TestVersionRepository extends JpaRepository<TestVersion, Long> {

    @Query("SELECT tv FROM TestVersion tv " +
           "WHERE tv.version = (SELECT max(tv2.version) FROM TestVersion tv2 " +
           "WHERE tv2.identification = tv.identification) " +
           "ORDER BY tv.identification, tv.majorVersion DESC, tv.minorVersion DESC, tv.patchVersion DESC")
    List<TestVersion> findLatestVersions();
}
Reasons:
  • Blacklisted phrase (0.5): why?
  • Long answer (-0.5):
  • Has code block (-0.5):
  • Ends in question mark (2):
  • Low reputation (0.5):
Posted by: Ebuzer Taha KANAT

79127334

Date: 2024-10-25 21:22:01
Score: 0.5
Natty:
Report link

I didn't have to delete any derived data or caches.

All I had to do was:

  1. Update to Latest Package Versions
  2. Restart Xcode.

enter image description here

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

79127332

Date: 2024-10-25 21:22:01
Score: 2
Natty:
Report link

This happens to me when I open a folder in visual studio rather than a project or solution. The search feature may start searches in the "Current Solution" by default, but no solution/project is open.

On the search dialog, select "Look in: All Open Documents"

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

79127329

Date: 2024-10-25 21:20:00
Score: 1
Natty:
Report link

The Observation API by default does not record metrics nor spans. You need to register handlers to record anything. This is the "superpower" of the API, you decide runtime what outputs you want. I recommend watching this talk from beginning to end: https://www.youtube.com/watch?v=Qyku6cR6ADY#t=14m23s

Spring Boot on the other hand registers handlers for you based on your classpath: if micrometer-core is present, it will register DefaultMeterHandler to record metrics, if Micrometer Tracing is on the classpath, it will register tracing handlers.

In order to prevent registration of DefaultMeterHandler, you can do a few things:

Btw why do you want to publish spans but not metrics?

Reasons:
  • Blacklisted phrase (1): youtube.com
  • Long answer (-0.5):
  • Has code block (-0.5):
  • Ends in question mark (2):
  • High reputation (-1):
Posted by: Jonatan Ivanov

79127326

Date: 2024-10-25 21:18:00
Score: 4
Natty:
Report link

Can you share the CarListPerStreetWidgetV2 widget? If this widget is a StatefulWidget, you must update that widget in the didUpdateWidget.

For example:

@override
void didUpdateWidget(covariant CarListPerStreetWidgetV2 oldWidget) {
  super.didUpdateWidget(oldWidget);
  if(oldWidget.streetName != widget.streetName) {
    setState(() {});
  }
}
Reasons:
  • RegEx Blacklisted phrase (2.5): Can you share
  • Has code block (-0.5):
  • Contains question mark (0.5):
  • Starts with a question (0.5): Can you share the
  • Low reputation (1):
Posted by: mysCod3r

79127308

Date: 2024-10-25 21:08:58
Score: 1.5
Natty:
Report link

Solution after some hours search without DevTools:

HasCdp cdp = ((HasCdp)driver);
Map map = new HashMap<String,String>();
map.put("source","console.log('test');");
cdp.executeCdpCommand("Page.addScriptToEvaluateOnNewDocument", map);
Reasons:
  • Low length (0.5):
  • Has code block (-0.5):
  • Self-answer (0.5):
  • Low reputation (1):
Posted by: kingingo

79127298

Date: 2024-10-25 21:00:56
Score: 1.5
Natty:
Report link

does this work for you?

[
  {
    "operation": "modify-default-beta",
    "spec": {
      "Booking": {
        "*": {
          "*": "Booking[&1].&",
          "BookingLines": {
            "BookingLine": {
              "*": {
                "Metadata": {
                  "TrackingList": {
                    "Tracking": "null"
                  }
                }
              }
            }
          }
        }
      }
    }
  },
  {
    "operation": "shift",
    "spec": {
      "Booking": {
        "*": {
          "BookingLines": {
            "BookingLine": "Booking[&2].BookingLines.BookingLine"
          },
          "*": "&2[&1].&"
        }
      }
    }
  }
 ,
  {
    "operation": "shift",
    "spec": {
      "Booking": {
        "*": {
          "*": "Booking[&1].&",
          "BookingType": {
            "@": "Booking[&2].&1",
            "3": {
              "@(2,BookingLines)": {
                "BookingLine": {
                  "*": {
                    "Metadata": {
                      "TrackingList": {
                        "Tracking": {
                          "null": {
                            "#N": "Booking[&10].BookingLines.BookingLine[&5].Metadata.TrackingAvailable"
                          },
                          "*": {
                            "#Y": "Booking[&10].BookingLines.BookingLine[&5].Metadata.TrackingAvailable"
                          }
                        }
                      }
                    }
                  }
                }
              }
            }
          }
        }
      }
    }
  }
]
Reasons:
  • Long answer (-1):
  • Has code block (-0.5):
  • Ends in question mark (2):
  • Low reputation (1):
Posted by: Leonardo Marques

79127296

Date: 2024-10-25 20:59:56
Score: 1.5
Natty:
Report link

This is probably the best way, especially if the script is too large and you have it stored as an SQL file. In DBeaver, click the SQL button, right-click on the newly opened subwindow, and Go to Execute -> Execute SQL Script Natively. Choose your file and run it.

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

79127293

Date: 2024-10-25 20:58:56
Score: 0.5
Natty:
Report link

I found the answer to this question while writing it! In #5 of the process I described, I thought about seeing this line in someone else's csrfguard.properties file:

org.owasp.csrfguard.ProtectedMethods=POST

But since it was commented out in CSRF Guard's file, I thought there were some default settings for it--but apparently not! Adding that line fixed the issue!

I also think that if I had set up the error page, I may have noticed this issue sooner.

Reasons:
  • Has code block (-0.5):
  • Self-answer (0.5):
  • Low reputation (0.5):
Posted by: Izek H

79127283

Date: 2024-10-25 20:52:54
Score: 1.5
Natty:
Report link

add "Action Extension" to your project.

in the targets list press "+" and search for "Action Extension"

then add rules to info.plist to handle necessary types

Reasons:
  • Low length (1):
  • No code block (0.5):
Posted by: Andrii Tishchenko

79127250

Date: 2024-10-25 20:35:50
Score: 4.5
Natty:
Report link

I just tried decodeUriComponent('%0A') with the replace function and it did not work!

Reasons:
  • Blacklisted phrase (1): did not work
  • Low length (1.5):
  • No code block (0.5):
  • Single line (0.5):
  • Low reputation (1):
Posted by: Dachi Gong

79127241

Date: 2024-10-25 20:31:48
Score: 2.5
Natty:
Report link

Also, none of this works under cygwin since this requires a modern QT, and cygwin is still on QT 5.9.4

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

79127240

Date: 2024-10-25 20:31:48
Score: 0.5
Natty:
Report link

New variants:

Fastest must be this:

var set = new Set( [ 1,2,3 ] ); 
console.log( set[Symbol.iterator]().next().value );

Short variant:

var set = new Set( [ 1,2,3 ] ); 
console.log( set.values().find( () => true ) );

// OR

console.log( set.values().find( () => 1 ) );

About last one: set.values() return Iterator, then I use Iterator.prototype.find

MDN article https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/Iterator/find

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

79127230

Date: 2024-10-25 20:28:48
Score: 1
Natty:
Report link

One data-heavy compromise would be to make a new filename each day, so that your users become accustomed to looking for a file in a certain directory having the most recent date in the filename; there would be dozens of other files that they skip past when they do this.

Another way is to instruct your users not to open the files at all, but to import the data into their own worksheets using one of the methods here, or simply to make cell references in their spreadsheets.

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

79127229

Date: 2024-10-25 20:27:48
Score: 0.5
Natty:
Report link

This is a response but does not use slices and quotes:

def select[A: Type](using quotes: Quotes)(productExpr: Expr[A], elemSymbol: quotes.reflect.Symbol): Expr[Any] =
    Select.unique(productExpr.asTerm, elemSymbol.name).asExpr
Reasons:
  • Low length (0.5):
  • Has code block (-0.5):
  • Self-answer (0.5):
Posted by: Readren

79127226

Date: 2024-10-25 20:25:47
Score: 2
Natty:
Report link

Have you tried to deploy it on a linux service app plan? It looks like you are built for Linux not windows from the error.

Reasons:
  • Whitelisted phrase (-1): Have you tried
  • Low length (1):
  • No code block (0.5):
  • Contains question mark (0.5):
  • Single line (0.5):
  • Low reputation (0.5):
Posted by: Khanh Nguyen

79127220

Date: 2024-10-25 20:23:46
Score: 2
Natty:
Report link

Based on Is it possible to enable remote jmx monitoring programmatically?

I was able to give an answer to this: https://stackoverflow.com/a/79126986/17205238

TLDR; Register a Bean and manually startup the JMX rmi connector pass environment variables as needed (https://docs.oracle.com/javase/8/docs/technotes/guides/jmx/tutorial/security.html in my example via the method getJmxEnvironment())

    @Bean
    Registry rmiRegistry() throws Exception {
        
        var jmxPort = getJmxPort(); //get your port from a property? jmx.port
        var registry = LocateRegistry.createRegistry(jmxPort);
        MBeanServer mbs = ManagementFactory.getPlatformMBeanServer();
        JMXServiceURL url = new JMXServiceURL("service:jmx:rmi://0.0.0.0:"+jmxPort+"/jndi/rmi://127.0.0.1:"+jmxPort+"/jmxrmi");
        JMXConnectorServer srvr = JMXConnectorServerFactory.newJMXConnectorServer(url, getJmxEnvironment(), mbs);
        srvr.start();
        return registry;
    }

Hope it helps

Reasons:
  • Blacklisted phrase (1): Is it possible to
  • Blacklisted phrase (1): stackoverflow
  • Whitelisted phrase (-1): Hope it helps
  • Probably link only (1):
  • Long answer (-0.5):
  • Has code block (-0.5):
  • Low reputation (1):
Posted by: manrodriguezf

79127218

Date: 2024-10-25 20:21:44
Score: 11.5 🚩
Natty: 6
Report link

How did you resolve this error?

Reasons:
  • RegEx Blacklisted phrase (3): did you resolve this
  • RegEx Blacklisted phrase (1.5): resolve this error?
  • Low length (2):
  • No code block (0.5):
  • Ends in question mark (2):
  • Unregistered user (0.5):
  • Single line (0.5):
  • Starts with a question (0.5): How did you
  • Low reputation (1):
Posted by: testgeek

79127210

Date: 2024-10-25 20:19:43
Score: 0.5
Natty:
Report link

You need to pass the domain to the provider:

  cognitoUserPoolsTokenProvider.setKeyValueStorage(new CookieStorage({ domain: <your domain> }))

and sign out with with the param global: true

    await signOut({
      global: true
    })
Reasons:
  • Low length (0.5):
  • Has code block (-0.5):
  • Low reputation (0.5):
Posted by: Kenzo

79127198

Date: 2024-10-25 20:16:43
Score: 1
Natty:
Report link

If you are using chrono >= 0.4.38 you will need to use the now feature in your Cargo.toml file:

[dependencies]
...
chrono = { version = "0.4.38", features = ["now"] }

Then you could use:

let timestamp = chrono::offset::Utc::now();
Reasons:
  • Low length (0.5):
  • Has code block (-0.5):
  • Low reputation (1):
Posted by: Supermanuu

79127197

Date: 2024-10-25 20:15:42
Score: 2
Natty:
Report link

i find the answer and i want to share with some pepole maybe stuck like me :

from django.db.models import Prefetch
products = products.filter(available=True).prefetch_related(
        Prefetch('colors', queryset=ProductColor.objects.order_by('-quantity'))
    )

fix the problem

Reasons:
  • RegEx Blacklisted phrase (1): i want
  • Low length (0.5):
  • Has code block (-0.5):
  • Self-answer (0.5):
  • Low reputation (0.5):
Posted by: Pourya Mohamadi

79127178

Date: 2024-10-25 20:06:40
Score: 3
Natty:
Report link

Something that works to quit the error is simply remove lang="ts" from script setup declaration. But obviously it's not the best solution.

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

79127165

Date: 2024-10-25 20:01:39
Score: 0.5
Natty:
Report link

Most likely cause: Your image's resolution (3840x2160) is much more than the TV's display resolution (1280x720). Your WebOS Browser is downscaling the image to fit the screen, resulting in a worse image.

Some Solution

  1. Make the image smaller: Create a version of the image that matches the TV's resolution (1280x720). This will reduce file size and eliminate the need for downscaling.

  2. Try different filetypes: Try converting the image to WebP or AVIF and see if your result improves

  3. Check TV settings: Make sure there aren't any settings messing with your image.

If these solutions don't work, you'll probably to accept the fact that that image on your webpage will look worse on your LG TV.

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

79127149

Date: 2024-10-25 19:55:38
Score: 0.5
Natty:
Report link

It is necessary to create a class inheriting from Qthread.

class RequestThread(QThread):
def __init__(self, mainwindow, parent=None):
    super().__init__()
    # print('created qthread')
    # self.mainwindow = mainwindow

def run(self):
    value = self.mainwindow.number1
    this insert request  function

    while value < 100:
        time.sleep(0.1)

        value = value + 1
        self.mainwindow.log_text_edit.append(f'1111')

in constructor add

class MainWindow(QWidget):
    def __init__(self):
        self.RequestThread_instance = RequestThread(mainwindow=self)

add handler click button:

 def connections(self):
        self.start_task_button.clicked.connect(self.start_task)

    def start_task(self):
        print('start_task')
        self.RequestThread_instance.start()
Reasons:
  • Long answer (-0.5):
  • Has code block (-0.5):
  • Self-answer (0.5):
  • Low reputation (1):
Posted by: Sergey Polykhov

79127143

Date: 2024-10-25 19:53:37
Score: 1.5
Natty:
Report link

The best solution I'm aware of turned out to be using a transaction, which allows me much of the benefits as if this were a single query:

await db.transaction(async (tx) => {
  const [user] = await tx.insert(users)...
  const [settings] = await tx.insert(settings).values({ user_id: user.id})
})
Reasons:
  • Low length (0.5):
  • Has code block (-0.5):
  • Self-answer (0.5):
  • Low reputation (1):
Posted by: ivo

79127131

Date: 2024-10-25 19:48:36
Score: 2
Natty:
Report link

Here is the updated code, which provides the expected results. Thanks @AnonCoward for the suggestion.

import boto3
import sys

s3_r = boto3.resource('s3')

bucket_name = 'dummy-data-bucket'
file_key = 'employee_details/emp.csv'

def s3versions(bucket, prefix):
    '''List all versions of files in s3.'''
    bucket = s3_r.Bucket(bucket)
    versions = bucket.object_versions.filter(Prefix = prefix)
    for version in reversed(list(versions)):
        object = version.get()
        version_id = object.get('VersionId')
        if version_id != 'null':      
            path = version.object_key
            last_modified = object.get('LastModified')
            print(path, version_id, last_modified,  sep = '\t')
                
def lambda_handler(event, context):
    s3versions(bucket_name,file_key)
Reasons:
  • Blacklisted phrase (0.5): Thanks
  • Long answer (-0.5):
  • Has code block (-0.5):
  • User mentioned (1): @AnonCoward
  • Self-answer (0.5):
  • Low reputation (1):
Posted by: sanju

79127127

Date: 2024-10-25 19:46:35
Score: 0.5
Natty:
Report link

Yes, the DCP is generated from source and can help to speed up synthesis by reusing the output of a previous run. It's no problem if it's not there. It will just do a full synthesis run and regenerate it, and you can ignore the warning. So you don't need to commit it to your repo unless maybe you want other computers to be able to reuse the synth results.

I'd suggest setting the 'Automatically use the checkpoint from the previous run' option so you can still take advantage of incremental synthesis when you rebuild on the same computer.

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

79127120

Date: 2024-10-25 19:44:35
Score: 1.5
Natty:
Report link

If you are only wanting to include the dimensions, then advanced options and selecting as many dimension details you want would work. to get to as many dimension flavors, expand the time stamp run time of yoru query when setting up the dimensions. Once they are set, you can then reduce the time stamp to 5m granularity. (| where timestamp > ago(72h) or to more #of days)

Reason to expand the time when setting up is only to capture more flavors/dimensions from the past occurences.

in my opinion, Logic app is probably more needed if you want to build the dynamic URL to the failure page or if you want to trigger alerts from diff appis from diff RGs.

Just a thought!

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

79127118

Date: 2024-10-25 19:43:34
Score: 2
Natty:
Report link

Try running

npm config set legacy-peer-deps true
Reasons:
  • Low length (1.5):
  • Has code block (-0.5):
  • Low reputation (1):
Posted by: Oswin

79127115

Date: 2024-10-25 19:42:34
Score: 1.5
Natty:
Report link

Just trying gradle clean and build works for me. same error I had but for annotationProcessor

- ./gradlew clean
- ./gradlew build
Reasons:
  • Whitelisted phrase (-1): works for me
  • RegEx Blacklisted phrase (1): same error
  • Low length (1):
  • Has code block (-0.5):
  • Low reputation (1):
Posted by: Rajesh Sharma

79127112

Date: 2024-10-25 19:41:34
Score: 1.5
Natty:
Report link

sudo ln -sfn /Applications/Android\ Studio.app/Contents/jbr /Library/Java/JavaVirtualMachines/jbr

try this and go!!!

Reasons:
  • Whitelisted phrase (-1): try this
  • Low length (1):
  • No code block (0.5):
  • Low reputation (1):
Posted by: user27990072

79127106

Date: 2024-10-25 19:39:33
Score: 1.5
Natty:
Report link

I finally resolved the issue!

It turns out I had multiple PhpStorm versions installed.

![](image.png)

Initially, I deleted the plugins folder for PhpStorm 2024.3, but the CodeGeeX plugin was still present in the plugins folder for PhpStorm 2024.2. It seems PhpStorm was still accessing the plugin from that older version!

The error was completely resolved once I removed the plugin from the 2024.2 folder.

Reasons:
  • No code block (0.5):
  • Self-answer (0.5):
  • Low reputation (0.5):
Posted by: Luis Ribeiro

79127091

Date: 2024-10-25 19:35:32
Score: 4
Natty:
Report link

Since fixed width tables break responsive CSS working with conditional CSS is a viable workaround for this age old problem: https://stackoverflow.design/email/base/mso/

Reasons:
  • Blacklisted phrase (1): stackoverflow
  • Low length (1):
  • No code block (0.5):
  • Single line (0.5):
  • Low reputation (1):
Posted by: André

79127073

Date: 2024-10-25 19:27:30
Score: 3
Natty:
Report link

Or use an earlier version of J - e.g. J807,Win 64 platform. All the exercises in the book version for Calculus will run smoothly without such error messages.

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

79127068

Date: 2024-10-25 19:26:30
Score: 2.5
Natty:
Report link

Finally, I was able to solve the problem using this blog. The author has well explained the concept.

The approach suggested by Nimi was right. There was this magic bytes trick that was missing and treating them the right way helped me to solve the issue.

Will have to read about magic bytes in much detail though.

I would like to Thank OneCricketeer and Nimi for their time. Much Appreciated.

Reasons:
  • Blacklisted phrase (1): Appreciated
  • Blacklisted phrase (1): this blog
  • Has code block (-0.5):
  • Self-answer (0.5):
  • Low reputation (0.5):
Posted by: RushHour

79127061

Date: 2024-10-25 19:25:30
Score: 3
Natty:
Report link

When I launch IntelliJ, it automatically opens 2 projects in different windows. I have no idea how or why it started doing that. I'm trying to figure out how to make it only open 1.

Reasons:
  • Low length (0.5):
  • No code block (0.5):
  • Single line (0.5):
  • Starts with a question (0.5): When I
  • Low reputation (1):
Posted by: B Sheely

79127055

Date: 2024-10-25 19:22:29
Score: 0.5
Natty:
Report link

An alternative approach is to use an A/B update mechanism, where you always keep the previous version of the software installed, and after an update completes, swap shortcuts, etc. to point to the new version.

(If folder A is the last working version, install to folder B, then point shortcuts to the exe in folder B. Likewise for folder B being the last working version, wipe and overwrite folder A, then install there, and swap the shortcuts.)

This might not be practical for large software, but it ensures you always have one functional version installed, and avoids issues like this one.

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

79127050

Date: 2024-10-25 19:21:29
Score: 0.5
Natty:
Report link

This error was happening because I was importing Form from react-hook-form instead of from the shadcn import @/components/ui/form. Correcting the import fixed the error

Reasons:
  • Low length (1):
  • Has code block (-0.5):
  • Self-answer (0.5):
  • Single line (0.5):
  • High reputation (-1):
Posted by: Jasperan

79127047

Date: 2024-10-25 19:19:28
Score: 5.5
Natty:
Report link

MATLAB can be tricky with location of the function. Is the function below your main code?

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

79127045

Date: 2024-10-25 19:17:28
Score: 3
Natty:
Report link

Try not rebuilding the project after you have saved these changes to build.gradle, when the rebuild button (vs code) appears at the bottom right of the screen

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

79127042

Date: 2024-10-25 19:16:28
Score: 0.5
Natty:
Report link

I've recently encountered the same problem due to my company's highly rigid network policies.

Yet, when I switched from the SSH to the HTTPS address, the problem went away.

I also had to use the Windows certificate mechanism git config --global http.sslbackend schannel (as recommended here), but that's about it.

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

79127041

Date: 2024-10-25 19:15:27
Score: 4
Natty:
Report link

Axeman's comment was correct. Doing x <- nrow(df) worked perfectly.

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

79127040

Date: 2024-10-25 19:15:27
Score: 0.5
Natty:
Report link

the learning rate could be quite low to converge, try something between 0.001 and 0.0001. Also you can try Biriectional LSTM layers which use to work better in financial time series.

Anyway the error is extremely high. I dont know what currency are you using but the RMSE is around 62000 which can be a solid 100% of error in the prediction. Such a discrepancy it is not likely due to a hyperparameter fixing. Are you also normalizing the output? you can also do it with the MinMaxScaler() as you did with the inputs.

Hope it helps!

Reasons:
  • Whitelisted phrase (-1): Hope it helps
  • Long answer (-0.5):
  • No code block (0.5):
  • Contains question mark (0.5):
  • Low reputation (1):
Posted by: jreyesgfi