79231015

Date: 2024-11-27 16:08:47
Score: 4
Natty:
Report link

This is the document for adding custom control :

https://learn.microsoft.com/en-us/azure/devops/extend/develop/custom-control?toc=%2Fazure%2Fdevops%2Fmarketplace-extensibility%2Ftoc.json&view=azure-devops

and you can make it hidden from process change as in this link :

https://learn.microsoft.com/en-us/azure/devops/organizations/settings/work/customize-process-field?view=azure-devops#hide-a-field-or-custom-control

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

79230996

Date: 2024-11-27 16:04:46
Score: 6 🚩
Natty: 5
Report link

Yeaah, this worked to me. Thankys Is it a new way to deal with it ?

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

79230890

Date: 2024-11-27 15:31:35
Score: 7
Natty: 7.5
Report link

I am stuck on the same issue. Any soultion yet?

Reasons:
  • RegEx Blacklisted phrase (1.5): I am stuck
  • Low length (1.5):
  • No code block (0.5):
  • Ends in question mark (2):
  • Single line (0.5):
  • Low reputation (1):
Posted by: Rishabh Singh

79230843

Date: 2024-11-27 15:14:31
Score: 4
Natty: 4
Report link

Ok this is an easy one. Go to the Roles section of IAM in the web console and search for the permission you care about. For example I want to know which roles get "networkservices.meshes.list". I search for "networkservices.meshes.list" and all the roles that have it are returned.

Reasons:
  • Blacklisted phrase (1): I want to know
  • RegEx Blacklisted phrase (1): I want
  • Low length (0.5):
  • No code block (0.5):
  • Single line (0.5):
  • Low reputation (0.5):
Posted by: David Thornton

79230804

Date: 2024-11-27 15:06:28
Score: 4.5
Natty: 5
Report link

Thanks bro, this is very helpful

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

79230776

Date: 2024-11-27 14:56:25
Score: 5.5
Natty:
Report link

Same issue is solved and discussed here: /tmp/chromium: error while loading shared libraries: libnss3.so: cannot open shared object file: No such file or directory Vercel.

There's many solution, so i do not know which one will fit on your case.

Reasons:
  • Blacklisted phrase (1.5): any solution
  • RegEx Blacklisted phrase (1): Same issue
  • Probably link only (1):
  • Low length (1):
  • No code block (0.5):
  • Low reputation (0.5):
Posted by: Fedi Bounouh

79230770

Date: 2024-11-27 14:54:24
Score: 10.5 🚩
Natty:
Report link

any solutions? im have same problem

Reasons:
  • Blacklisted phrase (1.5): any solution
  • RegEx Blacklisted phrase (2): any solutions?
  • Low length (2):
  • No code block (0.5):
  • Me too answer (2.5): have same problem
  • Contains question mark (0.5):
  • Single line (0.5):
  • Low reputation (1):
Posted by: Anton

79230758

Date: 2024-11-27 14:50:23
Score: 4
Natty: 4
Report link

Hello many thanks for the last answer. But for the script running you must remove "break" at the end of the script. cheers C.

Reasons:
  • Blacklisted phrase (0.5): thanks
  • Blacklisted phrase (1): cheers
  • Low length (1):
  • No code block (0.5):
  • Low reputation (1):
Posted by: crunchattak

79230756

Date: 2024-11-27 14:50:22
Score: 10.5 🚩
Natty: 6.5
Report link

Did you find any solution for this? I'm facing a simular issue, using RN 0.73, and xCode 16.1

Reasons:
  • Blacklisted phrase (1.5): any solution
  • RegEx Blacklisted phrase (3): Did you find any solution
  • RegEx Blacklisted phrase (2): any solution for this?
  • Low length (1):
  • No code block (0.5):
  • Contains question mark (0.5):
  • Single line (0.5):
  • Starts with a question (0.5): Did you find any solution for this
  • Low reputation (1):
Posted by: Luis Barroso

79230748

Date: 2024-11-27 14:47:20
Score: 6.5
Natty: 8
Report link

what is the new endpoint? i want to know

Reasons:
  • Blacklisted phrase (1): i want to know
  • RegEx Blacklisted phrase (1): i want
  • Low length (1.5):
  • No code block (0.5):
  • Contains question mark (0.5):
  • Single line (0.5):
  • Starts with a question (0.5): what is the
  • Low reputation (1):
Posted by: dis gard

79230717

Date: 2024-11-27 14:39:18
Score: 5.5
Natty: 4.5
Report link

I have added styles to the elements in the default HTML structure of Azure AD B2C, like this:

<div id="api" data-name="Unified" role="main"></div>

I also added a script file inside the body tag as shown below:

<script src="https://gfxvsstorage.blob.core.windows.net/gfxvscontainer/script.js" defer></script>

script.js:

function setupLoginUI() {
    console.log("Entered!");

    const mainContainer = document.getElementById("api");
    const localAccountForm = document.getElementById("localAccountForm");
    const divider = document.querySelector(".continue-with-line");
    const create = document.querySelector(".create");
    const claimsProviderListButtons = document.querySelector(".claims-provider-list-buttons");

    if (mainContainer && localAccountForm && divider && claimsProviderListButtons && create) {
        // Check if the elements are already in the correct order
        const children = Array.from(mainContainer.children);
        const isCorrectOrder =
            children[0] === localAccountForm &&
            children[1] === divider &&
            children[2] === claimsProviderListButtons &&
            children[3] === create;

        if (!isCorrectOrder) {
            mainContainer.innerHTML = '';
            mainContainer.append(localAccountForm);
            mainContainer.append(divider);
            mainContainer.append(claimsProviderListButtons);
            mainContainer.append(create);
        }
    } else if (divider) {
        divider.style.display = 'none';
    }
}

setupLoginUI();

After setting everything up, I tested the login page in Azure AD B2C. The styles were applied correctly, and the script injected the elements properly on the first load. However, after refreshing the page, the DOM manipulations did not apply.

The "Entered!" text is logged in the console, but the formatting of the elements is not applied.

Could someone please provide a solution to resolve this issue?

Reasons:
  • RegEx Blacklisted phrase (2.5): Could someone please provide a solution
  • RegEx Blacklisted phrase (1.5): resolve this issue?
  • Long answer (-1):
  • Has code block (-0.5):
  • Ends in question mark (2):
  • Low reputation (1):
Posted by: Johnson F

79230699

Date: 2024-11-27 14:33:16
Score: 4.5
Natty: 4
Report link

I prefer big blue cube toes 🤣🤣

Reasons:
  • Low length (2):
  • No code block (0.5):
  • Unregistered user (0.5):
  • Single line (0.5):
  • Low reputation (1):
Posted by: Your mom's friend

79230631

Date: 2024-11-27 14:15:10
Score: 4
Natty: 4
Report link

Take a look at an example here: https://github.com/nextauthjs/next-auth/discussions/4394#discussioncomment-5503602

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

79230594

Date: 2024-11-27 14:04:01
Score: 9 🚩
Natty: 5.5
Report link

Did you find a way to add btn to superset?

Reasons:
  • RegEx Blacklisted phrase (3): Did you find a way to
  • Low length (1.5):
  • No code block (0.5):
  • Ends in question mark (2):
  • Single line (0.5):
  • Starts with a question (0.5): Did you find a
  • Low reputation (1):
Posted by: Dmytro

79230592

Date: 2024-11-27 14:04:00
Score: 6.5 🚩
Natty: 5
Report link

I am trying to achieve similar step with an IOT device which will be a controllee. Could you please let me know the settings and example code you used on Controller.

Reasons:
  • Blacklisted phrase (1): I am trying to
  • RegEx Blacklisted phrase (2.5): Could you please let me know
  • Low length (1):
  • No code block (0.5):
  • Single line (0.5):
  • Low reputation (1):
Posted by: Ankush Nag

79230552

Date: 2024-11-27 13:49:55
Score: 4
Natty:
Report link

Patch No. 17 resolved this issue for me. It should fix it for you as well. https://www.drupal.org/project/skeletontheme/issues/3275683#comment-15652299

Reasons:
  • Probably link only (1):
  • Low length (1.5):
  • No code block (0.5):
  • Low reputation (1):
Posted by: raj.solanki.07

79230544

Date: 2024-11-27 13:47:55
Score: 4
Natty:
Report link

Flutter clean then flutter pub get.

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

79230499

Date: 2024-11-27 13:33:50
Score: 4.5
Natty:
Report link

Why dont you just use a Localhost like Xampp? There you can run multiple Projects at once.

Reasons:
  • Low length (1.5):
  • No code block (0.5):
  • Contains question mark (0.5):
  • Single line (0.5):
  • Starts with a question (0.5): Why do
  • Low reputation (1):
Posted by: Konsti

79230408

Date: 2024-11-27 13:12:44
Score: 4
Natty:
Report link

When I click on the button in the javascript table, I want to select the select value in the modal that opens and write the row whose value is equal to the table. How can I?

`

<thead>

  <div class="h4 fw-bolder bg-danger p-1 text-center text-white" style="margin-bottom: 0; ">Arif Tangör Hoca</div>

  <tr class="table-dark">

    <th class="text-nowrap" scope="col">Ad - Soyad</th>

    <th scope="col">1.D</th>

    <th scope="col">2.D</th>

    <th scope="col">3.D</th>

    <th scope="col">4.D</th>

    <th scope="col">5.D</th>

    <th scope="col">6.D</th>

    <th scope="col">7.D</th>

    <th scope="col">8.D</th>

    <th scope="col">9.D</th>

    <th scope="col">10.D</th>

    <th scope="col">11.D</th>

    <th scope="col">İşlem Ekle</th>

    <th scope="col">İşlem Sil</th>


  </tr>

</thead>

<tbody>

  <tr>

    <th class="text-nowrap" scope="row">Kazım Yılmaz</th>

    <td class="catid" value="1">2000</td>

    <td class="catid" value="2">2000</td>

    <td class="catid" value="3">2000</td>

    <td class="catid" value="4">2000</td>

    <td class="catid" value="5">2000</td>

    <td class="catid" value="6"></td>

    <td class="catid" value="7"></td>

    <td class="catid" value="8"></td>

    <td class="catid" value="9"></td>

    <td class="catid" value="10"></td>

    <td class="catid" value="11"></td>

    <td style="padding-left: 0; padding-right: 0; border: 0; " class="text-nowrap">

Para Ekle

    <td style="padding-left: 0; padding-right: 0;" class="text-nowrap">

Sil

    <th class="text-nowrap" scope="row">Ömer Tangör</th>

    <td></td>

    <td></td>

    <td></td>

    <td></td>

    <td></td>

    <td></td>

    <td></td>

    <td></td>

    <td></td>

    <td></td>

    <td></td>

    <td style="padding-left: 0; padding-right: 0; border: 0; " class="text-nowrap">

Para Ekle

Sil

  </tr>

  <tr>

    <th class="text-nowrap" scope="row">Fatih Baş</th>

    <td></td>

    <td></td>

    <td></td>

    <td></td>

    <td></td>

    <td></td>

    <td></td>

    <td></td>

    <td></td>

    <td></td>

    <td></td>

    <td style="padding-left: 0; padding-right: 0; border: 0; " class="text-nowrap">

Para Ekle

Sil

<div class="modal-dialog">

  <div class="modal-content">

    <div class="modal-header">

      <button type="button" class="btn-close" data-bs-dismiss="modal" aria-label="Close"></button>

    </div>

    <div class="modal-body">

      <label for="" class="fw-bolder form-label">Hangi Döneme Eklenecek?</label>

      <select name="" class="form-select" required>

        <option value="">Seçiniz</option>

        <option value="1">1</option>

        <option value="2">2</option>

        <option value="3">3</option>

        <option value="4">4</option>

        <option value="5">5</option>

        <option value="6">6</option>

        <option value="7">7</option>

        <option value="8">8</option>

        <option value="9">9</option>

        <option value="10">10</option>

        <option value="11">11</option>

      </select>

      <label for="" class="mt-3 fw-bolder form-label">Eklenecek Tutar</label>

      <input type="text" class="form-control">


    </div>

    <div class="modal-footer">

      <button type="button" class="btn btn-danger fw-bolder" data-bs-dismiss="modal">Vazgeç</button>

      <button type="button" class="btn btn-success fw-bolder" onclick="islem()">Ekle&Kaydet</button>

    </div>

  </div>

</div>
`

When I click on the button in the javascript table, I want to select the select value in the modal that opens and write the row whose value is equal to the table. How can I?

Reasons:
  • Blacklisted phrase (0.5): How can I
  • RegEx Blacklisted phrase (1): I want
  • Long answer (-1):
  • Has code block (-0.5):
  • Ends in question mark (2):
  • Self-answer (0.5):
  • Starts with a question (0.5): When I
  • Low reputation (1):
Posted by: Kemal Reis

79230379

Date: 2024-11-27 13:05:42
Score: 4
Natty:
Report link

You should try the new chat capabilities with genkit 0.9: https://firebase.google.com/docs/genkit/chat

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

79230377

Date: 2024-11-27 13:05:41
Score: 4
Natty: 4.5
Report link

https://github.com/jrTilak/lazykit/blob/87089776521af1a1c2f32123f6050495020c8c87/src/www/src/scripts/generateRegistry.ts#L161-L171

I had a similar requirement and I used typescript.transpileModule

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

79230329

Date: 2024-11-27 12:50:37
Score: 4
Natty: 4
Report link

[ccm_root@hostname] 1089 {ccm_root} > echo $DISPLAY

[ccm_root@hostname] 1090 {ccm_root} > export DISPLAY=hostname:51 [ccm_root@hostname] 1091 {ccm_root} > echo $DISPLAY
hostname:51 [ccm_root@hostname] 1092 {ccm_root} > xclock No protocol specified Error: Can't open display: hostname:51 Exit 1

Still xclock is not getting open, if someone knows how to resolve this problem then please let me know

Reasons:
  • RegEx Blacklisted phrase (2.5): please let me know
  • No code block (0.5):
  • Low reputation (1):
Posted by: Shriyansh Rasotiya

79230299

Date: 2024-11-27 12:42:34
Score: 4.5
Natty: 4.5
Report link

Thanks @aimless "typeRoots": ["./src/types", "./node_modules/@types"] // it's important to put first your path file otherwise it won't work

this line helped but chatgpt, AI couldnt help me but this did.

Reasons:
  • Blacklisted phrase (0.5): Thanks
  • Blacklisted phrase (1): help me
  • Low length (0.5):
  • No code block (0.5):
  • User mentioned (1): @aimless
  • Low reputation (1):
Posted by: Rohan Kadam

79230279

Date: 2024-11-27 12:35:31
Score: 6.5 🚩
Natty:
Report link

I'm also facing the same issue with my website

Reasons:
  • Low length (2):
  • No code block (0.5):
  • Me too answer (2.5): I'm also facing the same issue
  • Single line (0.5):
  • Low reputation (1):
Posted by: woyner

79230260

Date: 2024-11-27 12:32:30
Score: 8.5
Natty: 7.5
Report link

Could you please share the code?

Reasons:
  • RegEx Blacklisted phrase (2.5): Could you please share the code
  • Low length (2):
  • No code block (0.5):
  • Ends in question mark (2):
  • Single line (0.5):
  • Low reputation (1):
Posted by: Sergio Azzolina

79230238

Date: 2024-11-27 12:26:29
Score: 4
Natty:
Report link

This answers the question - thanks to @AngelFire

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

79230183

Date: 2024-11-27 12:06:22
Score: 4
Natty:
Report link

https://github.com/expressjs/expressjs.com/issues/1408 please refer to this GitHub issue. there they have mentioned a solution for this issue.

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

79230145

Date: 2024-11-27 11:55:19
Score: 9 🚩
Natty: 5.5
Report link

Did you find any information about your question? How can I contact you?

I also need to use Fama-MacBeth procedure in my thesis.

Reasons:
  • Blacklisted phrase (0.5): How can I
  • Blacklisted phrase (2): can I contact
  • RegEx Blacklisted phrase (3): Did you find any
  • Low length (1):
  • No code block (0.5):
  • Contains question mark (0.5):
  • Starts with a question (0.5): Did you find any infor
  • Low reputation (1):
Posted by: Константин Климанов

79230111

Date: 2024-11-27 11:46:16
Score: 8
Natty: 7.5
Report link

Do you have any idea how we can refresh the table partition by powershell ?

Reasons:
  • RegEx Blacklisted phrase (2.5): Do you have any
  • Low length (1.5):
  • No code block (0.5):
  • Ends in question mark (2):
  • Single line (0.5):
  • Low reputation (1):
Posted by: aditya wadwankar

79230047

Date: 2024-11-27 11:30:10
Score: 15 🚩
Natty:
Report link

Did you find any Solution? I have the same problem using dbt-glue. Thanks

Reasons:
  • Blacklisted phrase (0.5): Thanks
  • Blacklisted phrase (1): I have the same problem
  • Blacklisted phrase (1.5): any Solution
  • RegEx Blacklisted phrase (3): Did you find any Solution
  • RegEx Blacklisted phrase (2): any Solution?
  • Low length (1.5):
  • No code block (0.5):
  • Me too answer (2.5): I have the same problem
  • Contains question mark (0.5):
  • Single line (0.5):
  • Starts with a question (0.5): Did you find any Solution
  • Low reputation (1):
Posted by: FDS

79230014

Date: 2024-11-27 11:18:06
Score: 5
Natty: 5
Report link

S -> SS | aSb ∣ bSa ∣ a

Can this be a solution as well?

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

79229976

Date: 2024-11-27 11:06:02
Score: 10 🚩
Natty: 5
Report link

i am also facing same issue

Please help if any solution worked

Reasons:
  • Blacklisted phrase (1.5): any solution
  • RegEx Blacklisted phrase (3): Please help
  • Low length (1.5):
  • No code block (0.5):
  • Me too answer (2.5): i am also facing same issue
  • Low reputation (1):
Posted by: NBR

79229969

Date: 2024-11-27 11:04:01
Score: 5.5
Natty:
Report link

I am also having same error.

Context: I'm using gitlab's MlFlow server to log and register artifact. Everything that I'm logging/saving is correctly reflecting in gitlab, however, for some reason I'm getting the mflow.exceptions.RestException. I'm using torchrun to start the trainer class and there are hook registered which are executed before and after the each epoch/iteration. All-in-all it's not bothering the workflow but it'll be nice to know why I'm getting this error so I can handle it better rather than ignoring it.

Error Image here

You can also see the code for logging in one of the hook class below:

Code that integrates MlFlow into training

Reasons:
  • RegEx Blacklisted phrase (1): I am also having same error
  • RegEx Blacklisted phrase (1): I'm getting this error
  • Long answer (-0.5):
  • No code block (0.5):
  • Me too answer (2.5): I am also having same error
  • Low reputation (1):
Posted by: Assassioner

79229942

Date: 2024-11-27 10:58:59
Score: 5.5
Natty: 7
Report link

This same cause is supporting now? If so anyone guide me to this.

Reasons:
  • Blacklisted phrase (1): guide me
  • Low length (1.5):
  • No code block (0.5):
  • Contains question mark (0.5):
  • Unregistered user (0.5):
  • Single line (0.5):
  • Low reputation (1):
Posted by: Saranya

79229925

Date: 2024-11-27 10:53:57
Score: 5
Natty:
Report link

I think the error is in the way you are using useState. Could you show me a piece of your code, where you declare your variable and where you assign the value? Have you tried to debug the value with maybe an alert()?

Reasons:
  • Whitelisted phrase (-1): Have you tried
  • RegEx Blacklisted phrase (2.5): Could you show me
  • Low length (0.5):
  • Has code block (-0.5):
  • Ends in question mark (2):
  • Single line (0.5):
  • Low reputation (1):
Posted by: Maël

79229918

Date: 2024-11-27 10:52:56
Score: 5
Natty:
Report link

I too faced the similar kind of issue, any solution is appreciated

Reasons:
  • Blacklisted phrase (1): appreciated
  • Blacklisted phrase (1.5): any solution
  • Whitelisted phrase (-1): solution is
  • Low length (1.5):
  • No code block (0.5):
  • Single line (0.5):
  • Low reputation (1):
Posted by: Deekxhith

79229845

Date: 2024-11-27 10:30:49
Score: 8 🚩
Natty:
Report link

Just use firefox.............................................

Reasons:
  • Low length (1.5):
  • No code block (0.5):
  • Unregistered user (0.5):
  • Has no white space (0.5):
  • Single line (0.5):
  • No latin characters (2):
  • Filler text (0.5): .............................................
  • Low entropy (1):
  • Low reputation (1):
Posted by: user28511260

79229832

Date: 2024-11-27 10:27:48
Score: 5
Natty:
Report link

It doesn't show up probably because you have something wrong in DialogCardPage. Please post DialogCardPage code, and the output from vs when you try to open the dialog.

Reasons:
  • RegEx Blacklisted phrase (2.5): Please post
  • Low length (1):
  • No code block (0.5):
  • Low reputation (1):
Posted by: T.mod

79229814

Date: 2024-11-27 10:22:46
Score: 4.5
Natty:
Report link

Thank you guys very much for the answers, the runInInjectionContext solved it!

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

79229762

Date: 2024-11-27 10:07:41
Score: 6 🚩
Natty:
Report link

I am having same issue with claude. The Tool input value from cli seem to be valid but crewai said it is not valid. I also found this discussion https://community.crewai.com/t/issue-with-ast-literal-eval-parsing-json-tool-input-in-toolusage-class/449

Reasons:
  • Probably link only (1):
  • Low length (1):
  • No code block (0.5):
  • Me too answer (2.5): I am having same issue
  • Low reputation (1):
Posted by: Ye Aung

79229741

Date: 2024-11-27 10:00:38
Score: 6 🚩
Natty:
Report link

enter image description here

I am still getting this issue @Deera

Reasons:
  • Probably link only (1):
  • Low length (2):
  • No code block (0.5):
  • User mentioned (1): @Deera
  • Single line (0.5):
  • Low reputation (1):
Posted by: Sidhant Pandey

79229710

Date: 2024-11-27 09:54:36
Score: 4
Natty: 4
Report link

It helped in my case using xcode 16.1

https://github.com/expo/expo/issues/31142#issuecomment-2421924466

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

79229704

Date: 2024-11-27 09:53:35
Score: 12
Natty: 8.5
Report link

I still have issues. Can someone help me? https://github.com/HaugaardThomas/Messe-App-Working/issues

Reasons:
  • Blacklisted phrase (1): help me
  • RegEx Blacklisted phrase (3): Can someone help me
  • Probably link only (1):
  • Contains signature (1):
  • Low length (1.5):
  • No code block (0.5):
  • Ends in question mark (2):
  • Unregistered user (0.5):
  • Single line (0.5):
  • Low reputation (1):
Posted by: Thomas

79229688

Date: 2024-11-27 09:48:33
Score: 4
Natty: 4.5
Report link

.Net 9.0 is supported starting with Visual Studio 17.12

https://dotnet.microsoft.com/en-us/download/dotnet/9.0

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

79229670

Date: 2024-11-27 09:41:31
Score: 4.5
Natty:
Report link

I found the payload format here in this link

https://github.com/Azure-Samples/azure-communication-services-calling-event-grid/blob/main/add-calling-push-notifications-event-grid/ACSCallingNativeRegistrarLite/Utilities/Utilities.cs

We ended up not using notification hub and implemented push delivery logic in our own server. After including the data required in the payload incoming calls were successfully being received.

Reasons:
  • Blacklisted phrase (1): this link
  • Probably link only (1):
  • Low length (0.5):
  • No code block (0.5):
  • Self-answer (0.5):
  • Low reputation (1):
Posted by: Fahim Jubayer

79229643

Date: 2024-11-27 09:34:28
Score: 14
Natty: 8
Report link

I am facing the same problem. Were you able to fix this?

Reasons:
  • Blacklisted phrase (1): m facing the same problem
  • RegEx Blacklisted phrase (1.5): fix this?
  • RegEx Blacklisted phrase (3): Were you able
  • Low length (1.5):
  • No code block (0.5):
  • Me too answer (2.5): I am facing the same problem
  • Ends in question mark (2):
  • Unregistered user (0.5):
  • Single line (0.5):
  • Low reputation (1):
Posted by: Mitesh P

79229588

Date: 2024-11-27 09:18:22
Score: 7.5 🚩
Natty:
Report link

It seems the problem is coming again since this tuesday 26 november but this time with no specific error: enter image description here

Someone found a way to fix this?

Reasons:
  • RegEx Blacklisted phrase (1.5): fix this?
  • Probably link only (1):
  • Low length (1):
  • No code block (0.5):
  • Ends in question mark (2):
  • Self-answer (0.5):
  • Low reputation (1):
Posted by: Alex Ad

79229585

Date: 2024-11-27 09:17:21
Score: 4.5
Natty:
Report link

I just found out how to solve this problem. Edit the system environment variable ComSpec and remove the semicolon at the end of the value.

Reasons:
  • Blacklisted phrase (1): how to solve
  • Low length (1):
  • No code block (0.5):
  • Unregistered user (0.5):
  • Single line (0.5):
  • Low reputation (1):
Posted by: Manfred

79229508

Date: 2024-11-27 08:55:14
Score: 9.5
Natty: 7.5
Report link

Is there a solution for this in VBA ?

Reasons:
  • Blacklisted phrase (3): Is there a solution
  • Low length (2):
  • No code block (0.5):
  • Ends in question mark (2):
  • Single line (0.5):
  • Starts with a question (0.5): Is there a solution for this in
  • Low reputation (1):
Posted by: Jesper Martin Schumacher

79229386

Date: 2024-11-27 08:06:01
Score: 5
Natty:
Report link

https://www.nuget.org/packages/ISO8583dotnet/#supportedframeworks-body-tab is a well maintained, light and easy to use library for ISO 8583 message parsing and packing, it works for .Net 8 above

Reasons:
  • Probably link only (1):
  • Low length (1):
  • No code block (0.5):
  • Unregistered user (0.5):
  • Single line (0.5):
  • Starts with a question (0.5): is a we
  • Low reputation (1):
Posted by: gxgTech

79229363

Date: 2024-11-27 07:56:57
Score: 8 🚩
Natty: 4.5
Report link

Do you solve the problem? I met the smae

Reasons:
  • RegEx Blacklisted phrase (1.5): solve the problem?
  • RegEx Blacklisted phrase (2.5): Do you solve the
  • Low length (1.5):
  • No code block (0.5):
  • Contains question mark (0.5):
  • Single line (0.5):
  • Low reputation (1):
Posted by: user28020954

79229294

Date: 2024-11-27 07:31:49
Score: 8.5 🚩
Natty: 4.5
Report link

do you have a solution now?please

Reasons:
  • RegEx Blacklisted phrase (2.5): do you have a
  • Low length (2):
  • No code block (0.5):
  • Ends in question mark (2):
  • Single line (0.5):
  • Low reputation (1):
Posted by: H Z

79229282

Date: 2024-11-27 07:25:47
Score: 4.5
Natty:
Report link

which payment provider you are using

Reasons:
  • Low length (2):
  • No code block (0.5):
  • Single line (0.5):
  • Starts with a question (0.5): which
  • Low reputation (1):
Posted by: iamyathz

79229271

Date: 2024-11-27 07:20:45
Score: 7 🚩
Natty: 4.5
Report link

Have you been able to resolve this problem? I am facing it now.

Reasons:
  • Blacklisted phrase (1.5): Have you been able to
  • RegEx Blacklisted phrase (1.5): resolve this problem?
  • Low length (1.5):
  • No code block (0.5):
  • Contains question mark (0.5):
  • Single line (0.5):
  • Low reputation (1):
Posted by: Gianluca Melis

79229260

Date: 2024-11-27 07:12:43
Score: 4
Natty:
Report link

@react-native/gradle-plugin Adding it as a devDependency first then try to run your app.

Reasons:
  • Low length (1.5):
  • No code block (0.5):
  • Single line (0.5):
  • Looks like a comment (1):
  • Low reputation (0.5):
Posted by: Avijit

79229239

Date: 2024-11-27 07:06:40
Score: 4.5
Natty: 5.5
Report link

Since OpenIso8583.Net is no longer supported, here https://www.nuget.org/packages/ISO8583dotnet/#supportedframeworks-body-tab is another amazing library that is light and easy to work with to parse and pack iso message.

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

79229231

Date: 2024-11-27 07:03:39
Score: 4.5
Natty: 5
Report link

Add this file to the root of your site:

https://subdomain.domain.com/apple-app-site-association

Reasons:
  • Probably link only (1):
  • Low length (2):
  • No code block (0.5):
  • Low reputation (1):
Posted by: Nik.206

79229220

Date: 2024-11-27 06:56:37
Score: 5.5
Natty:
Report link

coding all above, but still not working for me,

chatgpt give me this:

const gl = renderer.getContext();
gl.clearColor(0.0, 0.0, 0.0, 0.0); // RGBA for transparency
gl.clear(gl.COLOR_BUFFER_BIT);

and i put in 1st line of AnimationLoop, and it works.

Reasons:
  • Blacklisted phrase (2): still not working
  • RegEx Blacklisted phrase (3): not working for me
  • Low length (0.5):
  • Has code block (-0.5):
  • Low reputation (0.5):
Posted by: Eric

79229187

Date: 2024-11-27 06:44:33
Score: 5
Natty:
Report link

The DEADLINE_EXCEEDED is thrown by gRPC. What gRPC language and version is your Vercel hosted application using?

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

79229126

Date: 2024-11-27 06:24:28
Score: 4.5
Natty:
Report link

Are you able to integrate Agora Calling in EXPO app, im struggling to do this , can you share any article or github repo so i can do integration on my react native expo app !?

I have only found this docs on how to impletment in react native but when i tried to add to react native expo app i am getting agora native mudule not found

Reasons:
  • RegEx Blacklisted phrase (2.5): can you share
  • No code block (0.5):
  • Contains question mark (0.5):
  • Low reputation (1):
Posted by: macgadger

79229099

Date: 2024-11-27 06:08:24
Score: 5
Natty: 4.5
Report link

[enter image description here][1]

[1]: https://i.sstatic.net/WcoZDSwX.jpg chenge background

Reasons:
  • Blacklisted phrase (1): enter image description here
  • Probably link only (1):
  • Low length (1.5):
  • No code block (0.5):
  • Low reputation (1):
Posted by: Hardik Bhoya

79229093

Date: 2024-11-27 06:04:22
Score: 4.5
Natty:
Report link

I am also looking a better way to integrate Scrapy and Dagster. Here is a tutorial that might help you.

https://dagster.io/blog/data-engineering-in-python

Reasons:
  • Blacklisted phrase (2): I am also looking
  • Low length (1):
  • No code block (0.5):
  • Low reputation (1):
Posted by: Ajit kumar

79229068

Date: 2024-11-27 05:57:20
Score: 4
Natty: 4.5
Report link

Yes there is a recipe here: https://docs.openrewrite.org/recipes/software/amazon/awssdk/v2migration

AWS migration Guide here: https://docs.aws.amazon.com/sdk-for-java/latest/developer-guide/migration-tool.html

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

79229061

Date: 2024-11-27 05:54:18
Score: 7.5 🚩
Natty: 4.5
Report link

I've recently encountered an unexpected performance issue while running the Whisper Turbo V3 ASR model on NVIDIA GPUs. When inferencing via Triton Inference Server, the model exhibits better performance on a V100 GPU compared to an A100 GPU. This is surprising since the A100 is significantly more powerful and optimized for AI workloads.

Observations:

Latency and Throughput: Lower latency and higher throughput were observed on the V100.

Model and Environment: The Whisper Turbo V3 model is the same in both cases, and the Triton configurations are identical.

Any suggestion why this might happen. Thanks in advance for any help!

Reasons:
  • Blacklisted phrase (0.5): Thanks
  • Blacklisted phrase (1): any help
  • RegEx Blacklisted phrase (3): Thanks in advance
  • RegEx Blacklisted phrase (2): Any suggestion
  • Long answer (-0.5):
  • No code block (0.5):
  • Low reputation (1):
Posted by: Sneh Shah

79229011

Date: 2024-11-27 05:23:10
Score: 5.5
Natty: 5
Report link

Refer to this link https://forum.virtuemart.de/thread/4274-com-virtuemart-restricted-access-view-restricted-access-for-view-category/ You need to toggle off the VM Manager on the VM Catagory Menu Item

Reasons:
  • Blacklisted phrase (1): this link
  • Probably link only (1):
  • Low length (1.5):
  • No code block (0.5):
  • Unregistered user (0.5):
  • Low reputation (1):
Posted by: Megan

79228992

Date: 2024-11-27 05:10:06
Score: 6 🚩
Natty:
Report link

Please share some codes especially the screenOptions.

Reasons:
  • RegEx Blacklisted phrase (2.5): Please share some code
  • Low length (1.5):
  • No code block (0.5):
  • Single line (0.5):
  • Low reputation (1):
Posted by: engr.ukairo

79228990

Date: 2024-11-27 05:08:05
Score: 5
Natty: 4.5
Report link

Please go through the following code. It helped me a lot.

https://devblogs.microsoft.com/oldnewthing/20120301-00/?p=8193&nsl_bypass_cache=38b695449cfe09dfbda2fc1e01facf39

Reasons:
  • Blacklisted phrase (1): helped me a lot
  • Probably link only (1):
  • Low length (1.5):
  • No code block (0.5):
  • Low reputation (1):
Posted by: Madhusudhana

79228889

Date: 2024-11-27 04:01:48
Score: 12 🚩
Natty:
Report link

Did you find any solution for this issue?, I cant comment so posting it as answer.

Reasons:
  • Blacklisted phrase (1.5): any solution
  • RegEx Blacklisted phrase (1): cant comment
  • RegEx Blacklisted phrase (3): Did you find any solution
  • RegEx Blacklisted phrase (2): any solution for this issue?
  • Low length (1.5):
  • No code block (0.5):
  • Contains question mark (0.5):
  • Single line (0.5):
  • Starts with a question (0.5): Did you find any solution for this is
  • Low reputation (1):
Posted by: user28505268

79228873

Date: 2024-11-27 03:46:44
Score: 8.5
Natty: 8.5
Report link

it's a shame that you haven't received any responses after such a long time, but I'm reaching out to ask for your help. Maybe you've found a solution? Thanks in advance!!

Reasons:
  • Blacklisted phrase (0.5): Thanks
  • RegEx Blacklisted phrase (3): Thanks in advance
  • Low length (1):
  • No code block (0.5):
  • Ends in question mark (2):
  • Single line (0.5):
  • Low reputation (1):
Posted by: José Luna Intriago

79228872

Date: 2024-11-27 03:44:43
Score: 4
Natty:
Report link

O(n^4) is polynomial time complexity.

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

79228867

Date: 2024-11-27 03:42:41
Score: 6 🚩
Natty:
Report link

من علاقه ی زیادی به یادگیری پایتون دارم باید از کجا شورع کنم ؟؟ لطفا بع سایت ما هم سری بزنید

سیم کارت

سیم کارت رند

سیم کارت

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

79228827

Date: 2024-11-27 03:01:32
Score: 4.5
Natty:
Report link

Just call socket.Close() and I had tested it out,it worked https://stackoverflow.com/a/3560832

Reasons:
  • Blacklisted phrase (1): stackoverflow
  • Whitelisted phrase (-1): it worked
  • Probably link only (1):
  • Low length (1.5):
  • No code block (0.5):
  • Unregistered user (0.5):
  • Low reputation (1):
Posted by: lpj

79228763

Date: 2024-11-27 02:10:20
Score: 5.5
Natty:
Report link

Did you ever find a solution to this problem? I have some ideas.

Let there be a binary decision variable for every quadruple of (player 1, player 2, showcase, round number), provided both players are in the showcase.

The coefficients of these variables in the objective function is the absolute difference in rating between the players, but if the players are in the same conference, make the coefficient extremely large, like 999999999.

Then the problem is the minimize the objective function subject to:

Reasons:
  • RegEx Blacklisted phrase (3): Did you ever find a solution to this problem
  • Long answer (-0.5):
  • No code block (0.5):
  • Contains question mark (0.5):
  • Starts with a question (0.5): Did you
  • Filler text (0.5): 999999999
  • Low reputation (1):
Posted by: sawong

79228733

Date: 2024-11-27 01:54:17
Score: 4.5
Natty: 6
Report link

same for me ycm config

python packages

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

79228702

Date: 2024-11-27 01:28:10
Score: 9 🚩
Natty: 5
Report link

Hi @lazy developer Could you able to print the query results value in the body of the mail.If yes ,please help me there.i am struck over there.

Reasons:
  • Blacklisted phrase (1): help me
  • RegEx Blacklisted phrase (3): please help me
  • Low length (1):
  • No code block (0.5):
  • User mentioned (1): @lazy
  • Single line (0.5):
  • Looks like a comment (1):
  • Low reputation (1):
Posted by: Abinav

79228631

Date: 2024-11-27 00:37:58
Score: 5.5
Natty:
Report link

I didn't test it but have you tried the following? https://www.npmjs.com/package/class-validator#validating-nested-objects

Reasons:
  • Whitelisted phrase (-1): have you tried
  • Probably link only (1):
  • Low length (1.5):
  • No code block (0.5):
  • Ends in question mark (2):
  • Single line (0.5):
  • Low reputation (1):
Posted by: Martin Kishaba

79228596

Date: 2024-11-27 00:02:50
Score: 4
Natty:
Report link

Try to disable python.debug.use.single.port in Help | Find Action | Registry. Has it helped? Relevant issue in PyCharm's issue tracker

https://youtrack.jetbrains.com/issue/PY-77357/Python-Debug-Server-with-pydevd-pycharm-stopped-working-in-2024.3

reddit

Reasons:
  • Probably link only (1):
  • Low length (1):
  • No code block (0.5):
  • Contains question mark (0.5):
  • Low reputation (1):
Posted by: TomRiver

79228496

Date: 2024-11-26 22:52:34
Score: 5.5
Natty: 5.5
Report link

Hi i know its old but did you maybe find solution on this?

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

79228490

Date: 2024-11-26 22:48:31
Score: 4.5
Natty:
Report link

This is currently bugged, as described in https://github.com/postmanlabs/postman-app-support/issues/13230

Check the linked issue for possible workarounds

Reasons:
  • RegEx Blacklisted phrase (1): Check the link
  • Probably link only (1):
  • Low length (1.5):
  • No code block (0.5):
  • Low reputation (0.5):
Posted by: Falconal

79228437

Date: 2024-11-26 22:23:24
Score: 7.5 🚩
Natty:
Report link

I have the same code but for all certificates I'm getting this certStatus. As I know from RFC2560 specification the tagNumber: 2 means status uknown. Can you help me with that, where is the issue? Thank you in advance

certStatus: Primitive {
    blockLength: 2,
    error: '',
    warnings: [],
    valueBeforeDecodeView: Uint8Array(2) [ 130, 0 ],
    name: '',
    optional: false,
    idBlock: LocalIdentificationBlock {
      blockLength: 1,
      error: '',
      warnings: [],
      valueBeforeDecodeView: Uint8Array(0) [],
      isHexOnly: false,
      valueHexView: Uint8Array(0) [],
      tagClass: 3,
      tagNumber: 2,
      isConstructed: false
    },
    lenBlock: LocalLengthBlock {
      blockLength: 1,
      error: '',
      warnings: [],
      valueBeforeDecodeView: Uint8Array(0) [],
      isIndefiniteForm: false,
      longFormUsed: false,
      length: 0
    },
    valueBlock: LocalPrimitiveValueBlock {
      blockLength: 0,
      error: '',
      warnings: [Array],
      valueBeforeDecodeView: Uint8Array(0) [],
      isHexOnly: true,
      valueHexView: Uint8Array(0) []
    }
  }

And here is the example request

const res = await checkCertificateWithOcsp({
    issuerKeyHash:
        "f822fe8c66c80c18584716f9d017386399e9fc0146f395b89c02b3e3c223e192",
    issuerNameHash:
        "ab3060ce70e9bb1e343422e4446e5f0182ba5e859c5fc15d0879396f43b4d50e",
    responderURL: "http://ocsp-qa.hubject.com:8080",
    serialNumber: "70D1D93DFED232C9E92DB26F3A0B5462",
});

Reasons:
  • Blacklisted phrase (0.5): Thank you
  • Blacklisted phrase (1): help me
  • RegEx Blacklisted phrase (3): Thank you in advance
  • RegEx Blacklisted phrase (3): Can you help me
  • Long answer (-1):
  • Has code block (-0.5):
  • Contains question mark (0.5):
  • Low reputation (1):
Posted by: cYsecoR

79228407

Date: 2024-11-26 22:10:20
Score: 4
Natty:
Report link

My Instagram account was also hacked thanks to JEFFRY.WILLIAM.CYBER who came across to restore my account despite the hacker changed my mail and phone number he was able to perform is trick to recover my login. he is fast and reliable at is service whenever you need recovery urgently kindly reach out to him on Instagram using the name above to search or whatsapp +44.7459343020

Reasons:
  • Blacklisted phrase (0.5): thanks
  • RegEx Blacklisted phrase (2): urgently
  • No code block (0.5):
  • Low reputation (1):
Posted by: Fatimaarmy Abubakar Sadeeqkano

79228305

Date: 2024-11-26 21:24:07
Score: 7 🚩
Natty: 5
Report link

i'm searching the same, have you find an answer?

Reasons:
  • Blacklisted phrase (2): have you find
  • Low length (1.5):
  • No code block (0.5):
  • Ends in question mark (2):
  • Single line (0.5):
  • Low reputation (0.5):
Posted by: Cheloespinoza

79228276

Date: 2024-11-26 21:10:03
Score: 4
Natty: 4
Report link

Consumecode(code); is missing after UpdateUserBalance(code, userId); line.

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

79228265

Date: 2024-11-26 21:06:01
Score: 4
Natty:
Report link

I just have to send /start to the bot hahaha!

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

79228177

Date: 2024-11-26 20:33:50
Score: 5
Natty: 6
Report link

How do I have it select the non empty cells in range a1:D99999 and then export only the non empty cells to a separate worksheet?

Sorry, i am not a strong programmer

Reasons:
  • Blacklisted phrase (1): How do I
  • Low length (1):
  • No code block (0.5):
  • Contains question mark (0.5):
  • Unregistered user (0.5):
  • Starts with a question (0.5): How do I have it
  • Low reputation (1):
Posted by: Coxwain

79228167

Date: 2024-11-26 20:27:48
Score: 4
Natty:
Report link

per jonrsharpe it is a simple change.

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

79228158

Date: 2024-11-26 20:23:46
Score: 4
Natty:
Report link

Could you provide a minimal reproducible example of the code you're running ?

On top of that, i would suggest to:

Reasons:
  • RegEx Blacklisted phrase (2.5): Could you provide
  • Long answer (-0.5):
  • No code block (0.5):
  • Contains question mark (0.5):
  • Low reputation (1):
Posted by: Alessandro Cesa

79228123

Date: 2024-11-26 20:09:42
Score: 8.5 🚩
Natty: 5.5
Report link

Were you able to expand this to other users?

Reasons:
  • RegEx Blacklisted phrase (3): Were you able
  • Low length (1.5):
  • No code block (0.5):
  • Ends in question mark (2):
  • Single line (0.5):
  • Low reputation (1):
Posted by: Saikot Paul

79227971

Date: 2024-11-26 19:13:24
Score: 6 🚩
Natty:
Report link

what's the updated code after making the array thread-safe?

Reasons:
  • Low length (1.5):
  • No code block (0.5):
  • Ends in question mark (2):
  • Single line (0.5):
  • Starts with a question (0.5): what's the
  • Low reputation (1):
Posted by: iOS-Chotu

79227961

Date: 2024-11-26 19:10:20
Score: 6 🚩
Natty:
Report link

Instead of doing that you can just

display a small image of the character

as found here Is there a "glyph not found" character?

Reasons:
  • Probably link only (1):
  • Low length (1.5):
  • No code block (0.5):
  • Ends in question mark (2):
  • Low reputation (1):
Posted by: user1

79227919

Date: 2024-11-26 18:48:14
Score: 5
Natty: 4
Report link

Use .editorconfig, to see my answer to another question: https://stackoverflow.com/a/79227845/8163839

Reasons:
  • Blacklisted phrase (1): another question
  • Blacklisted phrase (1): stackoverflow
  • Probably link only (1):
  • Low length (1.5):
  • Has code block (-0.5):
  • Single line (0.5):
  • Low reputation (0.5):
Posted by: Jervis

79227912

Date: 2024-11-26 18:45:12
Score: 4
Natty:
Report link

Excellent discussion on this here.

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

79227906

Date: 2024-11-26 18:43:12
Score: 5.5
Natty:
Report link

Hi everyone ı got same problem and ı solved that here is the link https://www.youtube.com/watch?v=3WueA6ZJV5c .Its so simple to understand and do you are only should assignt the folder on the visual studyo and after that you can reach go live have a good day

Reasons:
  • Blacklisted phrase (1): youtube.com
  • Blacklisted phrase (1): good day
  • Blacklisted phrase (1): here is the link
  • Low length (0.5):
  • No code block (0.5):
  • Single line (0.5):
  • Low reputation (1):
Posted by: Ömer Yasin Karabağ

79227882

Date: 2024-11-26 18:33:09
Score: 5
Natty:
Report link

yes it works. I think this is what I am looking for, however, it creates a fake URL entry point that cannot be linked back to if you copy and paste the address directly.

Reasons:
  • Blacklisted phrase (2): I am looking for
  • Low length (1):
  • No code block (0.5):
  • Single line (0.5):
  • Low reputation (1):
Posted by: Bushra Rauf

79227878

Date: 2024-11-26 18:30:08
Score: 5
Natty: 4.5
Report link

A better Way I think is Using COllama here is a Video explain How

https://youtu.be/3tkmnItNXJM?si=SPIqTlYYjROv4m0d

Reasons:
  • Blacklisted phrase (1): youtu.be
  • Probably link only (1):
  • Low length (1.5):
  • No code block (0.5):
  • Low reputation (1):
Posted by: Mono job

79227877

Date: 2024-11-26 18:29:07
Score: 5
Natty: 6.5
Report link

Resolve your Google Sheets Slicer/ Pivot Table Issues- Read this blog -

https://fixyourdatatools.blogspot.com/2024/11/resolving-google-sheets-slicer-issues.html

Reasons:
  • Blacklisted phrase (1): this blog
  • Probably link only (1):
  • Low length (1.5):
  • No code block (0.5):
  • Low reputation (1):
Posted by: Abhay Agastya

79227858

Date: 2024-11-26 18:22:04
Score: 4
Natty:
Report link

I am writing a paper on results of a model I used. I am not sure how to cite it as my professor wrote most of it and I can't find the actual model online since the prof just sent it to us as an .ipynb file.

Does anyone know how I would cite something like this in a paper? I really only know the name of the file, the Professors name (who wrote the code), and version of python I am using.

I figured I could just put the professors name, year, title of model since this is just a project for class.

Reasons:
  • RegEx Blacklisted phrase (2): Does anyone know
  • No code block (0.5):
  • Contains question mark (0.5):
  • Low reputation (1):
Posted by: Tanuj Grandhi

79227804

Date: 2024-11-26 17:58:58
Score: 4.5
Natty:
Report link

I have the same issue.

Or you using turbopack, like that for dev : next dev --turbopack ? I tried without and the 'error' disappeared.

And of course I've awaited my params like that for exemple :

export default async function Blog({
  params,
}: Readonly<{
  params: Promise<{ lang: Locale }>;
}>) {
  const { lang } = await params;

I haven't found any issue on github about this, I'll think about opening one.

Reasons:
  • Blacklisted phrase (1): I have the same issue
  • Has code block (-0.5):
  • Me too answer (2.5): I have the same issue
  • Contains question mark (0.5):
  • Low reputation (1):
Posted by: R2u26A1

79227803

Date: 2024-11-26 17:58:55
Score: 6.5 🚩
Natty:
Report link

I have exactly the same error. Run the given command

pip install --upgrade openai

Reasons:
  • Blacklisted phrase (0.5): exactly the same error
  • Low length (1.5):
  • No code block (0.5):
  • Me too answer (2.5): I have exactly the same error
  • Unregistered user (0.5):
  • Low reputation (1):
Posted by: user28499661

79227773

Date: 2024-11-26 17:49:52
Score: 4
Natty:
Report link

While thinking about possible solution, it was realized that PGADMIN is sending NULL for valid_until parameter and hence function is failing to execute. This is because the account for which I was trying to reset password has no expiry set. I then added an expiry date to the account and then tried to change password and function worked as expected and extended expiry date to current_date + 90 days. Thank you @adrian for your valuable input.

Reasons:
  • Blacklisted phrase (0.5): Thank you
  • No code block (0.5):
  • User mentioned (1): @adrian
  • Self-answer (0.5):
  • Single line (0.5):
  • Low reputation (1):
Posted by: girish chalke