79174028

Date: 2024-11-10 02:23:18
Score: 2
Natty:
Report link

Had this issue occur to me and none of the above & nor other solutions helped. Ended up fixing it by uninstalling then reinstalling git. I also opted out of installing GCM when that window came up during the Git install. A quick web search says that shouldn't make a difference but alas GCM is only useful for HTTP remotes so i figured I didnt need it anyways.

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

79174020

Date: 2024-11-10 02:15:17
Score: 1
Natty:
Report link

I had the same error while doing homework for my college class. The error occured after my file got imported by the other testing file given by the professor and nothing is working. I got it fixed after I checked "Initialize Program Counter to global main" option in the settings menu. Thanks to Jesse Victor's answer.

Reasons:
  • Blacklisted phrase (0.5): Thanks
  • Whitelisted phrase (-1): I had the same
  • No code block (0.5):
  • Low reputation (1):
Posted by: user28218044

79174014

Date: 2024-11-10 02:04:15
Score: 4.5
Natty:
Report link

RenderTargetBitmap seemed to do the trick many thanks

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

79174013

Date: 2024-11-10 02:03:14
Score: 3.5
Natty:
Report link

Just use vpn. It will solve the problem.

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

79174010

Date: 2024-11-10 01:57:13
Score: 1
Natty:
Report link

I found a way to resolve this issue. In Xcode menu choose Settings. In Settings choose Accounts tab. If you haven't added your Apple ID to the list, click the "+" and do so. You should now have a "team" that looks like `My Name (Personal Team). Then go to the "Signing and Capabilities" tab (which appears in the tab set along with "Build Settings" and "Build Phases" etc.) Now make sure that "Team" is set to "My Name (Personal Team)", make sure your bundle identifier is filled out uniquely, and make sure that "Signing Certificate" is set to "Developer", and not "Run Locally".

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

79174008

Date: 2024-11-10 01:54:12
Score: 2.5
Natty:
Report link

Could you share the ec2_metadata code?

Based on the issue, it’s likely that either there’s a core logic error or your EC2 instance is using IMDSv2, while the code might be trying to fetch the metadata using the IMDSv1 approach.

this is how to get the metadata with python using IMDSv1

import requests

def get_metadata_v1():
    url = "http://169.254.169.254/latest/meta-data/"
    try:
        response = requests.get(url, timeout=2)
        response.raise_for_status()
        return response.text
    except requests.exceptions.RequestException as e:
        print(f"Failed to fetch metadata using IMDSv1: {e}")
        return None

print(get_metadata_v1())

and this is how to get it using IMDSv2

import requests

def get_metadata_v2():
    base_url = "http://169.254.169.254/latest/meta-data/"
    token_url = "http://169.254.169.254/latest/api/token"
    
    try:
        # Step 1: Get the token
        token_response = requests.put(
            token_url, headers={"X-aws-ec2-metadata-token-ttl-seconds": "21600"}, timeout=2
        )
        token_response.raise_for_status()
        token = token_response.text

        # Step 2: Use the token to fetch metadata
        metadata_response = requests.get(
            base_url, headers={"X-aws-ec2-metadata-token": token}, timeout=2
        )
        metadata_response.raise_for_status()
        return metadata_response.text
    except requests.exceptions.RequestException as e:
        print(f"Failed to fetch metadata using IMDSv2: {e}")
        return None

print(get_metadata_v2())
Reasons:
  • RegEx Blacklisted phrase (2.5): Could you share
  • Long answer (-1):
  • Has code block (-0.5):
  • Contains question mark (0.5):
  • Low reputation (1):
Posted by: Fedi Bounouh

79174003

Date: 2024-11-10 01:47:10
Score: 4.5
Natty: 4.5
Report link

Adding this also worked for me. enter image description here

Reasons:
  • Blacklisted phrase (1): enter image description here
  • Whitelisted phrase (-1): worked for me
  • Probably link only (1):
  • Low length (2):
  • No code block (0.5):
  • Low reputation (1):
Posted by: user8234953

79173997

Date: 2024-11-10 01:43:09
Score: 1.5
Natty:
Report link

[SOLVED] Just to shed some light as to where the problem lied. I read a post here on SO suggesting that the default control ID in resource editor should be changed from the default control ID of ID_STATIC to something else such as ID_STATIC_TEXT now all is working. I hope this helps someone else having similar issues. I've posted working code that toggles the color of the static text control.

HBRUSH CFileRenamerDlg::OnCtlColor(CDC* pDC, CWnd* pWnd, UINT nCtlColor)
{
    HBRUSH hbr = CDialogEx::OnCtlColor(pDC, pWnd, nCtlColor);
    CWnd* pWndT = pWnd->GetDlgItem(IDC_STATIC);

    static int nColor = 0x0;
    int rgbRedC = 0x000000FF;
    int rgbGreenC = 0x0000FF00;
    int rgbBlueC = 0x00FF0000;
    int regbBlackC = 0x00000000;

    // TODO:  Change any attributes of the DC here
    switch (nCtlColor)
    {
    case CTLCOLOR_STATIC:

        if (nColor == regbBlackC)
        {
            pDC->SetTextColor(RGB(0, 0, 255));
            nColor = rgbBlueC;
        }
        else if (nColor == rgbBlueC)
        {
            pDC->SetTextColor(RGB(255, 0, 0));
            nColor = rgbRedC;
        }
    }
    return hbr;
}

void CFileRenamerDlg::OnBnClickedGo()
{
    CWnd* pWnd = this->GetDlgItem(IDC_STATIC_TEXT);
    pWnd->Invalidate(0);
}
Reasons:
  • Whitelisted phrase (-1): hope this helps
  • Long answer (-1):
  • Has code block (-0.5):
  • Me too answer (2.5): having similar issue
  • Self-answer (0.5):
  • Low reputation (1):
Posted by: blogger6799

79173996

Date: 2024-11-10 01:43:09
Score: 2.5
Natty:
Report link

Word Wrap to false in JSON config

  1. Click >>> <language_name> in the Status Bar to the bottom-right of the VS Code window. This opens the Language Mode picker.

  2. Click >>> Configure <language_name> language based settings...

  3. Add >>> "editor.wordWrap": "off", under "[<language_name>]": { ...

Language settings.json

...
    "[csv]": {
        "editor.wordWrap": "off",
        "editor.insertSpaces": false
    }
...

VS Code showing a CSV file with "CSV" button highlighted at the bottom, indicating to click it. VS Code showing a dropdown menu with "Configure 'CSV' language based settings..." highlighted, indicating it as the next step. An arrow labeled "Click" points to this option. enter image description here

Reasons:
  • Blacklisted phrase (1): enter image description here
  • Probably link only (1):
  • Has code block (-0.5):
  • Low reputation (1):
Posted by: Logan Reynolds

79173989

Date: 2024-11-10 01:34:08
Score: 1
Natty:
Report link

The Windows documentation suggests that LVN_GETINFOTIP is not sent by report view listview controls. In practice I found this to be the case (2024).

So in these circumstances how to display the tooltip?

I can see why it's necessary to find some alternative to an ordinary tooltip window when using a listview control. The problem with a large control like a listview is that although a TTN_NEEDTEXT notification message (asking for the display text to be specified) will be sent when the cursor first enters the control, a second TTN_NEEDTEXT will not be sent if the cursor then moves within the control onto a different item. This is because the cursor is still in the same control.

One workaround for this is to set the listview style to LVS_EX_TRACKSELECT and then monitor the LVN_HOTTRACK messages sent to the listview's parent. When monitoring this message, if iItem in NMLISTVIEW is -1 then the cursor is in the listview but is not over an item so no action should be taken. But otherwise you can send TTM_POPUP to the tooltip window.

This causes the tooltip to appear at the cursor and before doing so it will send TTN_NEEDTEXT to the window which was specified when the tooltip was associated with the listview using TTM_ADDTOOL.

To avoid sending TTM_POPUP each time the cursor moves in the listview control, only send it if hItem (and iSubItem if required to be tested) is different from the last time LVN_HOTTRACK was received.

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

79173987

Date: 2024-11-10 01:31:07
Score: 1.5
Natty:
Report link

You cannot cast a BLOB to a string by DB2 SQL directly, at least unable to do it now by the CAST function.

in Casting between data types, we can see when taking BLOB or BINARY as Cast from data type, VARCHAR and CLOB are both not available.

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

79173986

Date: 2024-11-10 01:30:07
Score: 1.5
Natty:
Report link

In my case, this error occurred because the server from which I was calling the APIs was serving through nginx http/1.1 to my node@20 API call.

Updating the the API server to nginx http/2.x resolved the issue.

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

79173963

Date: 2024-11-10 01:11:03
Score: 2
Natty:
Report link

simply add 199.232.28.133 raw.githubusercontent.com to /etc/hosts

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

79173961

Date: 2024-11-10 01:09:03
Score: 3.5
Natty:
Report link

I discovered the solution to my question. I hope this helps others.

enter image description here

Reasons:
  • Whitelisted phrase (-1): hope this helps
  • Probably link only (1):
  • Low length (1.5):
  • No code block (0.5):
  • Self-answer (0.5):
  • Single line (0.5):
  • Low reputation (0.5):
Posted by: Axium7

79173952

Date: 2024-11-10 00:58:00
Score: 4
Natty: 6
Report link

@Data @Entity public class Course implements Serializable

Reasons:
  • Low length (1.5):
  • No code block (0.5):
  • User mentioned (1): @Data
  • User mentioned (0): @Entity
  • Low reputation (1):
Posted by: Tariku Ahmed

79173951

Date: 2024-11-10 00:58:00
Score: 2
Natty:
Report link

You must use double quotes. For example:

data = 'fields name; where slug = "'+slug+'";'
Reasons:
  • Low length (1.5):
  • Has code block (-0.5):
  • Low reputation (1):
Posted by: mHashem

79173950

Date: 2024-11-10 00:57:00
Score: 2
Natty:
Report link

100000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000 0000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000

Floating point error: 1.#J

Failed to load, Try again

Reasons:
  • Long answer (-1):
  • No code block (0.5):
  • Filler text (0.5): 00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000
  • Filler text (0): 0000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000
  • Low entropy (1):
  • Low reputation (1):
Posted by: Ryker Lewis

79173942

Date: 2024-11-10 00:41:57
Score: 2
Natty:
Report link

{ address: '1KDAsrVmvSeDAs8P2nqSFRhABhNfu1aM9T', path: "m/44'/0'/0'/0/0", privateKey: '254fbbc7e390f88539d832daa4d03db502648666581417dcdecfae3a2ae23175', WIF: 'KxUEqsUXePmjrVP5SHvWykpJU4oM7S4bnTvsQSZnU5TAvD9wWzon

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

79173921

Date: 2024-11-10 00:09:52
Score: 0.5
Natty:
Report link

I would recommend to do some custom code around BSON. https://bsonspec.org/

Reasons:
  • Low length (1.5):
  • No code block (0.5):
  • Single line (0.5):
  • High reputation (-2):
Posted by: Ray Hulha

79173908

Date: 2024-11-09 23:53:49
Score: 1
Natty:
Report link

I too am having this issue on Android 14/ Samsung S23U, iPad 9thGen and iPadPro12.5 both using iOS18. I've revised code etc. I'm going to have to code so that I can set a flag to use tokens if ever needed although the Topic is much more efficient. Either that or failover to SMS, but the messages get accepted by Google... just not processed so not sure how I'd determine a failover.

Update*** I had been overwriting the app. Uninstalling and reinstalling got it functional on Android. I'll try iOS now.

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

79173901

Date: 2024-11-09 23:47:48
Score: 1
Natty:
Report link
  1. Go to node_modules/canvas
  2. run npm install --build-from-source

This will compile the C++ add-on and output the correct canvas.node.

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

79173894

Date: 2024-11-09 23:39:47
Score: 0.5
Natty:
Report link

Besides for seed choice, your issue might lies in the choice of the Pseudo-random Number Generator (PRNG) that your R environment is using.

R usually implements the Mersenne Twister by default for generating random numbers which are then scaled to a range between 0 and 1 - thus simulating uniform random variables. The other distributions can then be simulated via the inverse probability transform.

For a easier understanding of how PRNGs work- check out this Kahn Academy video.

Additionally you can also check out the R documentation on this topic:

  1. https://www.rdocumentation.org/packages/base/versions/3.6.2/topics/Random
  2. https://www.rdocumentation.org/packages/base/versions/3.6.2/topics/Random.user

If you want to look at implementing different PRNGs to see what happens "under the hood" with R. I am in the process of developing an R package that allows users to implement different PRNGs via functions. Check it out here.

Reasons:
  • Blacklisted phrase (0.5): Check it out
  • Long answer (-0.5):
  • No code block (0.5):
Posted by: Bensstats

79173893

Date: 2024-11-09 23:39:47
Score: 1
Natty:
Report link

It is better to use the homebrew package https://brew.sh or if you are using an old mac you can use macports https://www.macports.org/install.php, here you will find it easier to solve problems especially because of the larger community.

Reasons:
  • Whitelisted phrase (-1.5): you can use
  • Low length (0.5):
  • No code block (0.5):
  • Single line (0.5):
  • Low reputation (1):
Posted by: Ari Anggoro

79173889

Date: 2024-11-09 23:37:46
Score: 1
Natty:
Report link

Your problem is the key, just use the intended value as the key in this example the category is the value so use it as the key.

"use client";

import React, { useState } from "react";
import { Select, SelectSection, SelectItem } from "@nextui-org/select";
const ServiceInfoContainer: React.FC = () => {
  const [service, setService] = useState<string>("");

  const categories: string[] = [
    "Beginner (0-1 year)",
    "Intermediate (2-3 years)",
    "Experienced (4-5 years)",
    "Expert (6+ years)",
  ];

  const handleChange = (e: React.ChangeEvent<HTMLSelectElement>) => {
    setService(e.target.value);
  };

  return (
    <>
      Service: {service}
      <Select onChange={handleChange} label="Select years of experience">
        {categories.map((categ) => (
          <SelectItem key={categ} value={categ}>
            {categ}
          </SelectItem>
        ))}
      </Select>
    </>
  );
};

export default ServiceInfoContainer;

enter image description here

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

79173887

Date: 2024-11-09 23:35:45
Score: 0.5
Natty:
Report link

Disable jekyll by default, which ignores directories starting with an unserscore(_). if your assets are in such directories, they might be excluded during the build process. to prevent this, add a .nojekyll file to root of your repository. check refer this

Also GitHub Pages is case-sensitive, meaning Icon.svg and icon.svg are considered different files. Ensure that the capitalization in your code matches exactly with your file names.

use relative paths that accurately reflect your project's directorystructure. for ex: if you are SVGs are located in assets/icons directory relative to your HTML file, the path should be

assets/icons/github.svg.

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

79173886

Date: 2024-11-09 23:34:45
Score: 1
Natty:
Report link

If instead of babel you're using ts-jest, configure ts-jest as the transformer by running

npx ts-jest config:init

See https://kulshekhar.github.io/ts-jest/docs/getting-started/installation/#jest-config-file

This will add the following to your jest.config.js config file:

  transform: {
    "^.+.tsx?$": ["ts-jest",{}],
  },
Reasons:
  • Probably link only (1):
  • Low length (0.5):
  • Has code block (-0.5):
Posted by: djjeck

79173876

Date: 2024-11-09 23:18:42
Score: 0.5
Natty:
Report link

Note: The following steps might take a bit of time. These packages are said to be successfully installed if the console displays any message like Successfully installed ... after each package installation.

Update the pip package manager.

pip install --upgrade pip

Install the Flask package of version 1.1.2 as follows. Use the following command in the console.

pip install Flask==1.1.2

Install the tensorflow package of version 1.14.0 as follows.

python -m pip install --upgrade setuptools

pip install protobuf==3.17.3

pip install --no-cache-dir  --force-reinstall -I grpcio==1.11.0

pip install tensorflow==1.14.0

Install the pillow package of version 6.2.2 as follows, for working with images(like loading the images which we would see later).

pip install pillow==6.2.2
Reasons:
  • Long answer (-0.5):
  • Has code block (-0.5):
  • Unregistered user (0.5):
  • Low reputation (1):
Posted by: Breno

79173874

Date: 2024-11-09 23:16:42
Score: 4.5
Natty: 5.5
Report link

Which lineageOS version are you using? Would like to do the same.

Thanks!

Reasons:
  • Blacklisted phrase (0.5): Thanks
  • Low length (1.5):
  • No code block (0.5):
  • Contains question mark (0.5):
  • Starts with a question (0.5): Which
  • Low reputation (1):
Posted by: UnRealPro

79173872

Date: 2024-11-09 23:16:41
Score: 3.5
Natty:
Report link

Sorting was wrong and also the preloaded data didn't load causing the Game to fail show anything.

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

79173858

Date: 2024-11-09 23:01:38
Score: 5
Natty: 4.5
Report link

I tried this, it didnt redirect to the page I attempted to access that required me to login but instead of redirecting to the account/account page is send me to index.php ? Is there a way to pass the user from the login through to the page they intended to access instead of being sent back where they came from when they tried to access it?

Reasons:
  • Blacklisted phrase (1): Is there a way
  • No code block (0.5):
  • Ends in question mark (2):
  • Single line (0.5):
  • Low reputation (1):
Posted by: user857509

79173856

Date: 2024-11-09 23:00:37
Score: 4.5
Natty: 4.5
Report link

Aqui em nosso site EtmaCAST , a correção sugerida está funcional. Parabéns Mario !

Reasons:
  • Blacklisted phrase (1): está
  • Low length (1.5):
  • No code block (0.5):
  • Single line (0.5):
  • Low reputation (1):
Posted by: ETMA Capacitao Assessoria e Se

79173854

Date: 2024-11-09 22:57:37
Score: 1
Natty:
Report link

🤔

How are you guaranteeing that the record exists? Undefined is neither in String nor LanguageKey, and I think that's what it's complaining about.

You can fix this by adding an empty check

...
const language = this.languages[langKey];
if(!language) throw Error();
this.needsString(language);
...
Reasons:
  • Low length (0.5):
  • Has code block (-0.5):
  • Contains question mark (0.5):
  • Low reputation (0.5):
Posted by: guest

79173853

Date: 2024-11-09 22:57:36
Score: 4
Natty:
Report link

Your parenthesis is misplaced. (1,arr)[0] should work.

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

79173845

Date: 2024-11-09 22:48:35
Score: 1
Natty:
Report link

Because of the limited context, I think you should log the value of $result->salePaymentRequestResult->token to make sure it's the correct data.

\Log::info('Token:', [$result->salePaymentRequestResult->token]);

I think this should shed more light on your issue.

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

79173833

Date: 2024-11-09 22:39:34
Score: 2.5
Natty:
Report link

I just needed to add a / in front of the path like this /something/:id

Reasons:
  • Low length (1.5):
  • Has code block (-0.5):
  • Self-answer (0.5):
  • Single line (0.5):
  • Low reputation (0.5):
Posted by: Csaba Mihaly

79173820

Date: 2024-11-09 22:28:32
Score: 1.5
Natty:
Report link

I have the latest hugo server and have created a new site, downloaded the ananke theme following the instructions. I had to to set the line the theme="ananke" in the config.toml and comment out the line theme = ["github.com/theNewDynamic/gohugo-theme-ananke"] when running using the command hugo server --source=themes/ananke/exampleSite/ themesDir=../..

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

79173818

Date: 2024-11-09 22:27:31
Score: 2.5
Natty:
Report link

I've been running into this problem myself for years, so I just released an iOS Database Client called Dodona for Oracle. It's exclusively a query tool right now, but I'm planning to introduce other DBMS functionality in future updates. It's made possible by the new OracleNIO Swift Framework and more generally, Swift Concurrency.

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

79173810

Date: 2024-11-09 22:26:31
Score: 1
Natty:
Report link

Just import Headers from @nestjs-common:

import { Body, Controller, Post, Headers } from '@nestjs/common';
Reasons:
  • Low length (1):
  • Has code block (-0.5):
  • Low reputation (0.5):
Posted by: OMartinez-NeT

79173807

Date: 2024-11-09 22:24:30
Score: 4
Natty:
Report link

If you have not found a solution, I suggest you start over by making a new repoistory and copying the files into it.

Reasons:
  • RegEx Blacklisted phrase (1): have not found a solution
  • Low length (1):
  • No code block (0.5):
  • Single line (0.5):
  • Low reputation (1):
Posted by: Mohamad Khalil

79173799

Date: 2024-11-09 22:16:29
Score: 4.5
Natty:
Report link

Hi as per Microsoft It's now possible, refer this link

enter image description here

Reasons:
  • Blacklisted phrase (1): this link
  • Probably link only (1):
  • Low length (1.5):
  • No code block (0.5):
  • Single line (0.5):
Posted by: AmilaMGunawardana

79173796

Date: 2024-11-09 22:15:28
Score: 3
Natty:
Report link

just install curl php extension in ubuntu : apt install php8.3-curl -y

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

79173778

Date: 2024-11-09 22:06:26
Score: 3
Natty:
Report link

await ctx.replyWithHTML(message, { reply_markup : { force_reply : true } });

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

79173776

Date: 2024-11-09 22:03:26
Score: 1.5
Natty:
Report link

function sendMessage($chatId, $message) {

$url = WEBSITE . "/sendMessage?chat_id=" . $chatId . "&text=" . urlencode($message);
file_get_contents($url);

}

Reasons:
  • Low length (1):
  • Has code block (-0.5):
  • Low reputation (1):
Posted by: Ораз Маликов

79173772

Date: 2024-11-09 22:02:25
Score: 1.5
Natty:
Report link

This is an old question but I keep looking for decent clients, so thought this might be helpful as some of these answers are outdated

NATS CLI should be the go to tool, it pretty much has everything you need.

There is also NatsDash if you are looking for a UI/GUI/TUI based tool for managing or interacting with core NATS or Jetstream consumers: https://nats-dash-gui.returnzero.win/ it works with existing NATS CLI contexts.

There is also NUI which is web based, but it takes a quite a bit of configuration to get it working.

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

79173768

Date: 2024-11-09 22:00:25
Score: 2.5
Natty:
Report link

enter image description here

double click here then

change this :

<InvariantGlobalization>true</InvariantGlobalization>

to :

<InvariantGlobalization>false</InvariantGlobalization>
Reasons:
  • Probably link only (1):
  • Low length (1):
  • Has code block (-0.5):
  • Low reputation (1):
Posted by: youness zagouri

79173766

Date: 2024-11-09 21:59:24
Score: 1
Natty:
Report link

Yarn cache might be causing your issue, try clearing the cache yarn cache clean and installing with yarn add @tsconfig/node20 --dev, then run yarn install

Hopefully, this solves your issue. I tried this on my mac and it works

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

79173759

Date: 2024-11-09 21:52:23
Score: 1.5
Natty:
Report link

For this guide, I'll be adding example.exe located in C:\Users\SomeApp\example.exe.

On the lower middle section of your screen where it says "Search", type "control panel" and navigate to your Control Panel.

open control panel

The window that pops up is the Control Panel. Click "System and Security" at the top left-hand side of this window. control panel In the next window, select System.

select system

In the middle of the next screen, select Advanced system settings advanced system settings

On the panel that pops up, click "Environmental Variables..."

On the next panel, select Path and then Edit...

environment variables On the panel that pops up, select New. This is where we will put the path. In my case, I will type: C:\Users\SomeApp as shown below. enter image description here

Select "Ok" on all three open panels and restart command prompt and you'll be good to go!

Reasons:
  • Blacklisted phrase (1): this guide
  • Probably link only (1):
  • Long answer (-0.5):
  • No code block (0.5):
  • Self-answer (0.5):
  • High reputation (-1):
Posted by: Melanie Shebel

79173757

Date: 2024-11-09 21:49:23
Score: 2.5
Natty:
Report link

I've had this problem for a few weeks, but only on Android 9 (I haven't tried on Android 10 but maybe too).

Perhaps a consequence of the obsolescence of older systems.

Reasons:
  • Low length (1):
  • No code block (0.5):
  • Low reputation (1):
Posted by: Olivier MARÉ

79173756

Date: 2024-11-09 21:48:22
Score: 1.5
Natty:
Report link

Pls try

    Set para = curRow.Range.Paragraphs(curRow.Range.Paragraphs.Count - 1)
    para.Range.ListFormat.RemoveNumbers
    para.Range.Characters.Last.Previous.Delete  ' ** add ** '

Microsoft documentation:

Characters.Last property (Word)

Please share your table layout with sample text if it doesn't work on your file.

enter image description here

Reasons:
  • RegEx Blacklisted phrase (2.5): Please share your
  • Probably link only (1):
  • Low length (0.5):
  • Has code block (-0.5):
  • High reputation (-2):
Posted by: taller

79173748

Date: 2024-11-09 21:42:21
Score: 3
Natty:
Report link

Here is a link to the unity documentation about this. Hope it helps. Upgrade custom shaders for URP compatibility

Reasons:
  • Whitelisted phrase (-1): Hope it helps
  • Probably link only (1):
  • Low length (1.5):
  • No code block (0.5):
  • Low reputation (1):
Posted by: a Duck

79173747

Date: 2024-11-09 21:42:21
Score: 1.5
Natty:
Report link

The problem that you encounter maybe it derives from the projection of your geodataframe. The explore() method uses the crs EPSG:4327

First you can check your crs(Coordinate Reference System) by using:

Then change your crs of your data frame to EPSG:4326 by:

Finally try the explore() method again.

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

79173742

Date: 2024-11-09 21:38:20
Score: 1.5
Natty:
Report link

EC2 doesn't have a permanent DNS hostname independent of their IP address by default. but there's some work around.

1 - you can get yourself an Elastic IP address and associate it with your EC2 instance, then the DNS name will remain tied to this static address.

2 - you can also place an ALB in front of the EC2, and then the ALB will always have a fixed DNS name, that doesn't change, regardless of the underlying IP addresses or status, and can provide you with much scalability and elasticity.

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

79173740

Date: 2024-11-09 21:35:20
Score: 2.5
Natty:
Report link

clickjacking testifram ifram{position:absolute;top: 0; left: 0; width: 100%; height:100%; opacity: 0. /make ifram almost invisible */z-index: 10:} .cover {position: absolute; top: 0; left: 0; width: 100%; height: 100; z-index: 5;} click here to proceed

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

79173737

Date: 2024-11-09 21:32:19
Score: 1
Natty:
Report link

This happened to me after a git commit fail, I just created a new flutter project and copy pasted the lib folder, and it worked for me

Reasons:
  • Whitelisted phrase (-1): it worked
  • Whitelisted phrase (-1): worked for me
  • Low length (1):
  • No code block (0.5):
  • Single line (0.5):
  • Low reputation (1):
Posted by: Chathura Dilshan Udawaththa

79173736

Date: 2024-11-09 21:31:19
Score: 2
Natty:
Report link

Im also encountering this issue, and i'm trying to mess with the android xml files. it seems this is an Xiaomi-only issue, and unfortunatly i havent yet found a fix for my device (Poco F5).

This thread gives some more insight :) Android 12+ splash screen background color is ignored in dark mode

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

79173718

Date: 2024-11-09 21:16:13
Score: 6.5 🚩
Natty:
Report link

Same error but not find any answer :(

Reasons:
  • Blacklisted phrase (1): :(
  • RegEx Blacklisted phrase (1): Same error
  • Low length (2):
  • No code block (0.5):
  • Unregistered user (0.5):
  • Single line (0.5):
  • Low reputation (1):
Posted by: Qasdikl

79173708

Date: 2024-11-09 21:10:12
Score: 3.5
Natty:
Report link

There is an open source tool called Mirth Migrator that indicates which channels and also which other code templates are using a function defined in a code template.

You can find it on GitHub

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

79173697

Date: 2024-11-09 21:03:11
Score: 1
Natty:
Report link

I would suggest nameisok package. Currently in addition to pypi repository check as @Afternoon's package checks, it also checks for existing package names in GoogleBigQuery database.

As @user66081 suggested it checks for similarity and provides a warning.

pip install nameisok

from command line / terminal

nameisok myawesomePackageName

or for multiple names,

nameisok pandas,example,numpy,myawesomePackageName

https://pypi.org/project/nameisok/

Reasons:
  • Has code block (-0.5):
  • User mentioned (1): @Afternoon's
  • User mentioned (0): @user66081
  • Low reputation (0.5):
Posted by: Sermet Pekin

79173696

Date: 2024-11-09 21:02:11
Score: 1.5
Natty:
Report link

enter image description here

as you can see there, it's mentioned that the Application Load Balancer (ALB) will import the Certificate Revocation List (CRL) from S3 once and perform all CRL checks locally. This means:

• No repeated fetching from S3: The ALB doesn’t continuously retrieve the CRL from S3, avoiding repeated latency and associated S3 access costs.

• No latency impact during client authentication: Since the ALB performs CRL checks locally, there is no added latency during the mTLS handshake process.

https://aws.amazon.com/blogs/networking-and-content-delivery/introducing-mtls-for-application-load-balancer/

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

79173693

Date: 2024-11-09 21:00:10
Score: 4
Natty:
Report link

I get this error if I have a parquet file saved with engine='fastparquet', but I have not set the engine to fastparqet when trying to load it.

Reasons:
  • RegEx Blacklisted phrase (1): I get this error
  • Low length (1):
  • No code block (0.5):
  • Single line (0.5):
  • Low reputation (1):
Posted by: nanopete

79173691

Date: 2024-11-09 20:59:09
Score: 5
Natty: 4
Report link

I was wondering if you managed to find a solution? I'm struggling with the same "germline annotation ... could not be found" problem, except on linux computers. None of the "solutions" I found online helped, which is why I'm asking.

Reasons:
  • Blacklisted phrase (2): was wondering
  • Low length (0.5):
  • No code block (0.5):
  • Contains question mark (0.5):
  • Single line (0.5):
  • Low reputation (1):
Posted by: user28216352

79173689

Date: 2024-11-09 20:58:09
Score: 1.5
Natty:
Report link

Actually, these days, nobody really cares much about your GitHub profile—unless you’ve contributed to some really popular open-source repositories.

It’s mainly for you: to work on projects, learn new things, save your work, and maybe use it as a reminder when you need to recall how you solved a similar issue in one of your projects.

And that’s pretty much it!

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

79173677

Date: 2024-11-09 20:52:08
Score: 4
Natty:
Report link

It was simple as holding on the window and dragging to the right

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

79173673

Date: 2024-11-09 20:49:05
Score: 8 🚩
Natty: 5
Report link

Same...I'm in the same struggle. Did you find a solution?

I have found these two resources and so far i've been unsuccessful but it's there, in the code...anyone else have success with this yet?

https://community.openai.com/t/upload-image-to-assistant-via-api/801717/6

https://geoligard.com/using-laravel-to-interact-with-openai-s-assistants-api-with-vision

Reasons:
  • RegEx Blacklisted phrase (3): Did you find a solution
  • Probably link only (1):
  • Low length (0.5):
  • No code block (0.5):
  • Ends in question mark (2):
  • Low reputation (1):
Posted by: Stephen McDermott

79173669

Date: 2024-11-09 20:47:04
Score: 0.5
Natty:
Report link

The issue clearly is in line

COPY . .

which it tries to copy the local node_modules to the container node_modules. you may explicitly give the names of files to copy, or to ignore a node_modules folder in any subdirectory, the syntax should be:

**/node_modules
Reasons:
  • Low length (0.5):
  • Has code block (-0.5):
  • Low reputation (0.5):
Posted by: ha36d

79173668

Date: 2024-11-09 20:47:04
Score: 3.5
Natty:
Report link

Algorithm for checking if a string was built from a list of substrings Here's a solution. I really want to know if some IO platforms have this algorithm problem. It seems really classic.

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

79173663

Date: 2024-11-09 20:45:03
Score: 5.5
Natty:
Report link

I want to use a requested url.i want to follow the steps before the 15th of November 2024.the URL is not giving me the access to complete the steps

Reasons:
  • RegEx Blacklisted phrase (1): I want
  • RegEx Blacklisted phrase (1): i want
  • Low length (1):
  • No code block (0.5):
  • Unregistered user (0.5):
  • Single line (0.5):
  • Low reputation (1):
Posted by: Itumeleng

79173659

Date: 2024-11-09 20:44:03
Score: 3
Natty:
Report link

I have seen this solution being able able to decode a Swift Message. You can customize it as well since it is a straight forward solution. Loboid Swift Repo

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

79173657

Date: 2024-11-09 20:41:02
Score: 5.5
Natty: 5
Report link

have you found a solution for this problem because I also have this problem with my site and I haven't seen anyone mention this issue anywhere else.

Reasons:
  • RegEx Blacklisted phrase (2.5): have you found a solution for this problem because I also have this problem with my site and I haven
  • Low length (1):
  • No code block (0.5):
  • Single line (0.5):
  • Low reputation (1):
Posted by: rezesmal

79173650

Date: 2024-11-09 20:35:00
Score: 0.5
Natty:
Report link

But this does not work on MacOs 13, 14 and 15:

import os
cmd = 'open -a KeyboardViewer'
os.system(cmd)

I had to use the following apple script can do this:

tell application "System Settings"
    activate
end tell

do shell script "open 'x-apple.systempreferences:com.apple.preference.universalaccess?Keyboard'"

set endDate to (current date) + 5.0
repeat
    try
        tell application "System Events"
            click checkbox 1 of group 3 of scroll area 1 of group 1 of group 2 of splitter group 1 of group 1 of window "Keyboard" of application process "System Settings"
        end tell
        exit repeat
    on error errorMessage
        if ((current date) > endDate) then
            error errorMessage
        end if
    end try
end repeat

tell application "System Settings"
    quit
end tell

I wonder if there is an easier way to do this. I would be too much grateful for any help!

Reasons:
  • Blacklisted phrase (1): any help
  • Long answer (-0.5):
  • Has code block (-0.5):
  • Low reputation (0.5):
Posted by: Rida Shamasneh

79173646

Date: 2024-11-09 20:31:59
Score: 1.5
Natty:
Report link

Use this instead

For uploading on test.pypi.org:

twine upload --repository testpypi dist/*

For uploading pypi:

twine upload --repository pypi dist/*

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

79173615

Date: 2024-11-09 20:15:56
Score: 0.5
Natty:
Report link
=IF(ROW() - 21 <= $L$35, 0, INDEX($J$22:$J$1000, ROW() - $L$35 - 21))
Reasons:
  • Low length (1.5):
  • Has code block (-0.5):
  • Single line (0.5):
  • High reputation (-1):
Posted by: Michal

79173612

Date: 2024-11-09 20:14:56
Score: 2
Natty:
Report link

as @SteffenUllrich pointed out, before checking errno we must make sure that recvfrom has a bad return value.

int rv = recvfrom(..);
if (rv < 0 && errno == EWOULDBLOCK) { ... }

silly mistake, my bad.

Reasons:
  • Low length (0.5):
  • Has code block (-0.5):
  • User mentioned (1): @SteffenUllrich
  • Self-answer (0.5):
  • Low reputation (0.5):
Posted by: ugo_capeto

79173600

Date: 2024-11-09 20:07:55
Score: 3
Natty:
Report link

Writing here as I am not able to comment on SO.

Have you tried replacing jira URL with just the base URL

jira_url="https://cloud_name_here.atlassian.net"

Thanks

Reasons:
  • Blacklisted phrase (0.5): Thanks
  • Blacklisted phrase (1): I am not able to
  • Blacklisted phrase (1): to comment
  • Whitelisted phrase (-1): Have you tried
  • Low length (1):
  • Has code block (-0.5):
  • Low reputation (1):
Posted by: Varun

79173581

Date: 2024-11-09 19:57:53
Score: 3.5
Natty:
Report link

Since your question is lacking context, I'll suggest isolating the statements and log the values. You can start by asking the following questions:

  1. What's the value of $result->salePaymentRequestResult->token at that point of code?
  2. What happens when you assign a static string to $cart->transaction_id? For example: $cart->transaction_id = 'test_token';
  3. Is there any mutator defined for transaction_id attribute? Defining a Mutator
  4. Is there any observer defined for the model? Observers
Reasons:
  • Blacklisted phrase (1): Is there any
  • Has code block (-0.5):
  • Ends in question mark (2):
  • Low reputation (1):
Posted by: Araf Farayez

79173574

Date: 2024-11-09 19:52:52
Score: 2
Natty:
Report link

In vue js you can use this 'vuedef' command for auto generate

Reasons:
  • Whitelisted phrase (-1.5): you can use
  • Low length (1.5):
  • No code block (0.5):
  • Single line (0.5):
  • Low reputation (1):
Posted by: Achintha Shashika

79173570

Date: 2024-11-09 19:50:51
Score: 4
Natty: 5
Report link

Woe, that this was not answered. we suffer together.

#4 of this thread did not work. This is my only contribution.

Reasons:
  • Blacklisted phrase (1): did not work
  • Low length (1):
  • No code block (0.5):
  • Unregistered user (0.5):
  • Low reputation (1):
Posted by: WantMyGUI

79173565

Date: 2024-11-09 19:47:48
Score: 6.5 🚩
Natty: 4
Report link

Dera team Hope you all free some issues with my account and I want to change my account name martuza 1234 please solve this issue as soon as my real name Murtaza khan Thanks Regards Murtaza khan

Reasons:
  • Blacklisted phrase (0.5): Thanks
  • Blacklisted phrase (1): Regards
  • RegEx Blacklisted phrase (1): I want
  • RegEx Blacklisted phrase (1): I want to change my account name martuza 1234 please
  • Contains signature (1):
  • Low length (0.5):
  • No code block (0.5):
  • Low reputation (1):
Posted by: Murtaza Khan

79173555

Date: 2024-11-09 19:39:46
Score: 2.5
Natty:
Report link

You can also use the OpenGL rendering option which utilized the GPU rather than the CPU. You can also open an interactive window to test code before adding it to your final code product. Some behavior might be different from the default Cairo rendering option. See aquabeam's description for more information.

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

79173553

Date: 2024-11-09 19:36:45
Score: 4
Natty: 3
Report link

i love your code and i .and i create flipsita websitethat is a coin flip simulator based on your code idea

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

79173546

Date: 2024-11-09 19:31:44
Score: 0.5
Natty:
Report link

As mentioned in the comments, it is difficult to follow the logic behind the OP's approach, as it doesn't offer additional advantages nor simplify things in any way that I can tell.

Since @Sweeper provided the solution for fixing the drag gesture (incorporated with some minor changes in the example below), here's how the same functionality could be achieved in a more SwiftUI way and more along the lines of what I believe @Sweeper was suggesting in earlier comments.

Some additional notes:

Here's the full code:

import SwiftUI

struct StarDragGesture: View {
    
    //State values
    @State private var points: [CustomPoint] = [CustomPoint(x: 100, y: 100), CustomPoint(x: 200, y: 200, size: CGSize(width: 50, height: 50)), CustomPoint(x: 300, y: 100)]
    
    //Body
    var body: some View {
        ZStack {
            
            //Background color
            Color.blue
                .ignoresSafeArea()
            
            //Display a star for every point in the points array, at the specified position
            ForEach($points) { $point in
                StarView(position: $point)
            }
            
            //Button for checking the updated star positions in the console
            Button {
                print("-----")
                for (index, point) in points.enumerated() {
                    print("Point \(index + 1) - X: \(point.x), Y: \(point.y)")
                }
            } label: {
                Text("Check positions")
                    .foregroundStyle(.blue)
            }
            .buttonStyle(.borderedProminent)
            .tint(.white)
            
        }
        
    }
}

struct StarView: View {
    
    //Parameters
    @Binding var position: CustomPoint
    
    //State values
    @State private var lastTranslation: CGSize = .zero
    @State private var initialPosition: CustomPoint?
    
    //Body
    var body: some View {
        
        StarShape(points: 5, innerRatio: 0.4)
            .fill(Color.white)
            .shadow(radius: 5)
            .frame(width: position.size.width, height: position.size.height)
            .position(position.coordinates)
        
            //Reset star position on double tab
            .onTapGesture(count: 2) {
                if let initialPosition {
                    position = initialPosition
                }
            }
            .gesture(dragGesture)
        
            //Optional - Capture initial position for resetting
            .onAppear {
                initialPosition = position
            }
        
    }
    
    private var dragGesture: some Gesture {
        
        DragGesture(minimumDistance: 0)
            .onChanged { value in
                updatePosition(value.translation)
                lastTranslation = value.translation
            }
            .onEnded { value in
                updatePosition(value.translation)
                lastTranslation = .zero
            }
    }
    
    //Helper function for updating the position based on gesture translation
    private func updatePosition(_ translation: CGSize ) {
        position.x += translation.width - lastTranslation.width
        position.y += translation.height - lastTranslation.height
    }
    
}

struct StarShape: Shape {
    var points: Int = 5
    var innerRatio: CGFloat = 0.5  // Adjusts the depth of the star's inner points
    
    func path(in rect: CGRect) -> Path {
        guard points >= 2 else { return Path() }
        
        let center = CGPoint(x: rect.width / 2, y: rect.height / 2)
        let angle = 2 * .pi / CGFloat(points)
        let radius = min(rect.width, rect.height) / 2
        
        var path = Path()
        let startAngle = -CGFloat.pi / 2
        
        for i in 0..<points * 2 {
            let rotationAngle = startAngle + angle * CGFloat(i) / 2
            let pointRadius = i % 2 == 0 ? radius : radius * innerRatio
            let x = center.x + pointRadius * cos(rotationAngle)
            let y = center.y + pointRadius * sin(rotationAngle)
            
            if i == 0 {
                path.move(to: CGPoint(x: x, y: y))
            } else {
                path.addLine(to: CGPoint(x: x, y: y))
            }
        }
        
        path.closeSubpath()
        return path
    }
}

struct CustomPoint: Identifiable {
    
    let id: UUID = UUID()
    var x: CGFloat
    var y: CGFloat
    
    //Computed properties
    var coordinates: CGPoint {
        CGPoint(x: x, y: y)
    }
    
    //Optional property for possibly creating stars of various sizes
    var size: CGSize = CGSize(width: 100, height: 100)
}

#Preview {
    StarDragGesture()
}

Give this a try and let me know if it makes sense or if it still makes things difficult for your use case.

Reasons:
  • Blacklisted phrase (0.5): thanks
  • Long answer (-1):
  • Has code block (-0.5):
  • User mentioned (1): @Sweeper
  • User mentioned (0): @Sweeper
  • Low reputation (0.5):
Posted by: Andrei G.

79173533

Date: 2024-11-09 19:26:43
Score: 2.5
Natty:
Report link

Am still getting the error after implementing this here is the error i got page: '/api/question' } 11 | } 12 |

13 | const openai = newOpenAI({ | ^ 14 | apiKey: process.env.OpenAI_API_KEY, 15 | }) 16 | ✓ Compiled /_error in 424ms (1044 modules) POST /api/question 500 in 935ms

Reasons:
  • RegEx Blacklisted phrase (1): Am still getting the error
  • No code block (0.5):
  • Low reputation (1):
Posted by: Itoro Mfon

79173530

Date: 2024-11-09 19:21:42
Score: 3
Natty:
Report link

The important thing here is to include the typescript source code inside the library, and also configuring launch.json to resolve source maps location correctly

Here i have a video explaining the changes and debugging typescript code inside node_modules

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

Reasons:
  • Blacklisted phrase (1): youtube.com
  • Low length (0.5):
  • No code block (0.5):
  • Low reputation (1):
Posted by: neovimdev

79173526

Date: 2024-11-09 19:20:41
Score: 3
Natty:
Report link

Try my aso.dev - we support translating by Google, DeepL, GPT, Claude

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

79173522

Date: 2024-11-09 19:18:41
Score: 1.5
Natty:
Report link

Just use modifier for menu

.colorScheme(.dark)
Reasons:
  • Low length (1.5):
  • Has code block (-0.5):
  • Low reputation (0.5):
Posted by: Levchenko

79173521

Date: 2024-11-09 19:17:41
Score: 1.5
Natty:
Report link

Found solution in here:

pip uninstall kivy-ios
pip install git+https://github.com/kivy/kivy-ios
Reasons:
  • Low length (1):
  • Has code block (-0.5):
  • Self-answer (0.5):
  • Low reputation (0.5):
Posted by: 320V

79173518

Date: 2024-11-09 19:16:40
Score: 4.5
Natty:
Report link

i have another problem with the exportOptions.plist.

Encountered error while creating the IPA: error: exportArchive exportOptionsPlist error for key "method" expected one {} but found app-store-connect

Where did you find your file ? I was searching all directorys in my flutter app but there is no exportOptionsPlist file anywhere.

Reasons:
  • RegEx Blacklisted phrase (3): did you find your
  • No code block (0.5):
  • Contains question mark (0.5):
  • Low reputation (0.5):
Posted by: Woogielicious

79173512

Date: 2024-11-09 19:13:39
Score: 0.5
Natty:
Report link

I'm thinking whether it's worth trying to implement inter prediction if I have RAM limitations.

I don't know much about FPGA, but I don't think you should worry about RAM. Less than 3MB might suffice.

Do I understand correctly that the buffer size will be equal to the resolution multiplied bits on pixel, given that I am working with YUV 4:2:0 fotmat? Or do I only need the Y brightness component?

I'm not sure to have understand this correctly. Using YUV 4:2:0 chroma sampling, the buffer has a size of :

width * height * 3 / 2

And is there any way to use an already compressed picture that has already passed through entropy encoding(cavlc or cabac) for inter-frame prediction? Otherwise, if you use the picture after the reconstruction conversion, it weighs the same as the original, although its quality is already lower. This fact requires a lot of RAM, which is not enough in FPGA.

As far as I know, it's not really possible.

It's called transcoding, but it's usually done by decoding and re-encoding.

I have not found any examples in the open source that would not use RAM less than the full size of the uncompressed picture. For YUV at 720p, this is 1350 KB.

This is correct ;

720×1280×3÷2 = 1382400

If you encounter a genuine issue regarding memory. You may use an SD card (here's a similar question). Access time would be much slower, but it it'd solve your problem.

Reasons:
  • Blacklisted phrase (1): is there any
  • Long answer (-1):
  • Has code block (-0.5):
  • Contains question mark (0.5):
  • Low reputation (0.5):
Posted by: Mike

79173510

Date: 2024-11-09 19:12:39
Score: 1.5
Natty:
Report link

I don't know about fastlane price points, but in my product aso.dev you can use templates for pricing.

Reasons:
  • Whitelisted phrase (-1.5): you can use
  • Low length (1.5):
  • No code block (0.5):
  • Single line (0.5):
  • Low reputation (0.5):
Posted by: gorniv

79173507

Date: 2024-11-09 19:11:39
Score: 1
Natty:
Report link

let's breakdown why this is happening:

1 - Frontend and backend interaction via Browser: The react app is built and served from the web server (EC2 for your case). However, once it's loaded into the user's browser, it runs client-side on the user's machine. So when the react app makes a request. that HTTP request originates from the user's browser not from the server where the react app was hosted.

2 - Why Backend can't be in private subnet alone: If the backend is in private subnet, it has no direct exposure to the internet . which means: only resources in the same VPC can communicate with it, that's why the user browser will have no access to it. So, the Solution for this Public facing ALB with backend in the Private Subnet.
• Deploy a public-facing Application Load Balancer (ALB).

• The ALB sits in a public subnet and forwards requests to the Flask API in the private subnet.

• The React app in the browser can now send requests to the ALB’s public DNS.

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

79173501

Date: 2024-11-09 19:07:37
Score: 0.5
Natty:
Report link

I have this issue too. After some search, I find that it's probably due to the type of the card. Pre-paid card is easily denied by such services.

A possible solution is: use Mastercard instead of Visa. Reason: Visa has a so-called "Decision Manager" algorithm that decides whether to pass your verification or not (fraud or not). And this algorithm is owned by Visa.

Reasons:
  • Whitelisted phrase (-1): solution is
  • No code block (0.5):
  • Low reputation (1):
Posted by: AIIA

79173497

Date: 2024-11-09 19:05:37
Score: 4
Natty:
Report link

thnksssss overflow very good details

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

79173490

Date: 2024-11-09 19:04:36
Score: 1
Natty:
Report link

If you get this error after deploying your application on Vercel, trying to retrieve the data but it turns out error 504(Default timeout). Do this:

For me I was using #MONGODB, #nextjsAPI, #Vercel for deployment when facing that error. I dont't know if it can work for others

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

79173484

Date: 2024-11-09 19:00:36
Score: 1
Natty:
Report link

I was browsing the web and encountered this repo which is 3yrs old, but it looks like a real answer to our question:

Decode Whatsapp .enc files using mediaKey

The idea here is to create a n8n Node that can do the same thing.

Reasons:
  • Low length (0.5):
  • No code block (0.5):
Posted by: Dimitri Hartt

79173479

Date: 2024-11-09 18:58:33
Score: 7 🚩
Natty:
Report link

I have the same problem. It's make me so angry

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

79173476

Date: 2024-11-09 18:58:33
Score: 0.5
Natty:
Report link

It is simple. Just perform bit shift using division:

function bitAtPos(mask: number, pos: number): number {
  return mask / 2 ** pos & 1;
}

bitAtPos(18446744073709552000, 64) // 1
Reasons:
  • Low length (0.5):
  • Has code block (-0.5):
  • Low reputation (0.5):
Posted by: Aleko

79173466

Date: 2024-11-09 18:49:32
Score: 3
Natty:
Report link

my windows 10 pc with fnm node manager: C:\Users\WilliamLi\AppData\Roaming\fnm\node-versions\v22.11.0\installation\node.exe

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

79173465

Date: 2024-11-09 18:48:32
Score: 2
Natty:
Report link

If you can please provide context about the need for such a function I am happy to adjust my response but given your function I was able to simply the code to the following.

def docal2(a: np.array, b: np.array, d: np.array) -> np.array:
    r, c = a.shape
    sum_ = np.zeros(c, dtype=float)
    for i in range(r):
        sum_[0:d[i]] -= a[i, 0]
        sum_[d[i]] += b[i, 0]
        print(f"{sum_=}")
    return sum_

This should prevent unecessay slicing of your original data and speed up the computation significantly. If you can provide further context I am happy to help you even vectorize the calculation instead of raw iterations.

Few points:

Reasons:
  • RegEx Blacklisted phrase (2.5): please provide
  • Long answer (-1):
  • Has code block (-0.5):
  • Contains question mark (0.5):
  • Low reputation (0.5):
Posted by: anmol_gorakshakar

79173464

Date: 2024-11-09 18:48:29
Score: 6 🚩
Natty:
Report link

I need more context to figure this out. You said it is a Vite app, so I guess it is SPA with react. Can you tell me what your routes look like? (Is it using react-router-dom?). What about your backend are you using REST or Graphql?

On the http://localhost/F1-Hybrid-Data/f1-app I assume you are fetching data on the mount (or in route in loaders). Can you share your code? for routes and page handling or supposed to handle route F1-Hybrid-Data/f1-app?.

Reasons:
  • Blacklisted phrase (0.5): I need
  • RegEx Blacklisted phrase (2.5): Can you tell me what your
  • RegEx Blacklisted phrase (2.5): Can you share your code
  • Has code block (-0.5):
  • Ends in question mark (2):
  • High reputation (-1):
Posted by: TRomesh

79173451

Date: 2024-11-09 18:40:26
Score: 4.5
Natty: 3
Report link

alvin lim alvin lim alvin lim alvin lim alvin lim

Reasons:
  • Probably link only (1):
  • Low length (2):
  • No code block (0.5):
  • Low reputation (1):
Posted by: short movie