79245586

Date: 2024-12-02 21:04:15
Score: 0.5
Natty:
Report link

If you're asking if you could be caught, the answer is yes. An admin can use keyloggers or screen recordings (Programs like the light speed filter agent) to track you.

That being said, people evade software restrictions in different ways. For example, some websites (replit.com) with virtual computers with internet access or virginiacyberrange.net let you install virtual Linux; it wouldn't be trackable on your device if you had the correct settings. But you would be tracked from the website, so that's a bad idea. If you build your own and disable/break any tracking software, you could get around it.

For instance, if your admin blocks a website using the light speed filter agent, it injects JS into the browser. So all you have to do is delete its vars as they're loading, and you can do it either way.

A: Crash the program
B: Disable the filtering on that website.

Here's an example:

   function timeout(ms) {
        return new Promise(resolve => setTimeout(resolve, ms));
    }

    async function Never() {
        await timeout(75);
        console.clear();
        console.log("=====");

        // Functions
        var getLoaderPolicy = function () { }    // no-op function;
        var loadES6 = function () { }    // no-op function;
        var isYoutube = function () { }    // no-op function;
        var checkCurrentSite = function () { }    // no-op function;
        var getHardBlockPolicy = function () { }    // no-op function;
        var hardBlock = function () { }    // no-op function;
        var stopVideo = function () { }    // no-op function;
        var updateLocation = function () { }    // no-op function;

        // Variables
        var hardBlockPolicy = null;
        var prevURL = null;



        console.log("=====");

        // re-assign
        window.isYoutube = function () { }    // no-op function
        window.loadES6 = function () { }    // no-op function
        window.checkCurrentSite = function () { }    // no-op function
        window.getHardBlockPolicy = function () { }    // no-op function
        window.hardBlock = function () { }    // no-op function
        window.stopVideo = function () { }    // no-op function
        window.updateLocation = function () { }    // no-op function
        window.initFlagScanning = function () { }    // no-op function
        window.getLoaderPolicy = function () { }    // no-op function
        window.loaderPolicy = function () { }    // no-op function

        console.log("Just incase, Functions deleted again This is not needed, but we Bypassed the filter agent. =)");

        console.log("=====");
    }
Never()

This worked on my website; feel free to use it if someone ever wants it.

If you want to delete a tracking software from your computer entirely, you can delete the exes from a boot prompt, sethc hack (Detectable), Bitlocker hacks, BCPE, etc. There are plenty of exploits in Windows; it's a cheese grater in terms of security.

If you have any questions feel free to comment.

Reasons:
  • Blacklisted phrase (1): to comment
  • Long answer (-1):
  • Has code block (-0.5):
  • Low reputation (1):
Posted by: Voidless7125

79245582

Date: 2024-12-02 21:03:14
Score: 2.5
Natty:
Report link

Web App using Callback Pattern to Sheets

I modified your code and there seems to be an error, I use google.script.run instead for client-side to call server-side script functions. I also include withSuccessHandler(function(response) { ... }) for a callback function that will be executed when the server-side function is running to return a response.

Code.gs

function doGet() {
  return HtmlService.createHtmlOutputFromFile('index').setTitle('Web Form App to Sheets');
}

function postForm(data) {
  try {
    let toAppend = []
    const header = ["email", "Feelingnervousanxiousoronedge","Notbeingabletostoporcontrolworrying","Worryingtoomuchaboutdifferentthings","Troublerelaxing", "Restlesstroublesittingstill","Becomingeasilyannoyedirritable","Feelingafraidasifsomethingawfulwillhappen","score","result"];
    const ss = SpreadsheetApp.getActiveSpreadsheet().getActiveSheet();
    header.forEach((x) => {
      Object.keys(data).forEach((key) => {
        if(x === key){
          toAppend.push(data[key].toString());
        }
      })
    })
    ss.appendRow(toAppend)
    return {status:"success"};
  } catch (err) {
    return err;
  }
}

index.html

<!DOCTYPE html>
<html lang="en">

<head>
  <meta charset="UTF-8">
  <meta name="viewport" content="width=device-width, initial-scale=1.0">
  <title>Anxiety Checkup Form</title>
  <style>
    /* Styling the form */
    .form-container {
      max-width: 600px;
      margin: 0 auto;
      font-family: 'Roboto', sans-serif;
      /* Default font */
      background-color: #ffffff;
      /* White background */
      border: 1px solid #ccc;
      /* Border around the form */
      border-radius: 10px;
      /* Rounded corners */
      padding: 20px;
      box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
      /* Subtle shadow */
      box-sizing: border-box;
      /* Ensure padding is included in the width */
    }

    h2,
    .note {
      text-align: center;
      font-size: 18px;
      color: #333;
      /* Dark gray text */
    }

    .note {
      font-size: 12px;
      color: #555;
      /* Medium gray */
      margin-bottom: 10px;
    }

    label {
      display: block;
      font-size: 14px;
      /* Label font size */
      font-weight: regular;
      /* Regular labels */
      margin-bottom: 5px;
      text-align: left;
      color: #333;
      /* Dark gray text */
      text-transform: none;
      /* Use proper sentence casing */
    }

    input[type="email"],
    select {
      width: calc(100% - 20px);
      /* Adjust for padding */
      padding: 10px;
      font-size: 14px;
      margin-bottom: 15px;
      border: 1px solid #ccc;
      border-radius: 5px;
      box-sizing: border-box;
      /* Ensure padding is included in width */
      color: #333;
      /* Dark gray text */
      background-color: #fff;
      /* White background */
    }

    button {
      background-color: #e79659;
      color: white;
      padding: 10px 20px;
      font-size: 16px;
      border: none;
      border-radius: 5px;
      cursor: pointer;
    }

    button:hover {
      background-color: #e79659;
    }

    #result {
      margin-top: 20px;
      font-size: 16px;
      color: #333;
      /* Dark gray text */
      text-align: center;
    }
  </style>
</head>

<body>

  <div class="form-container">
    <form id="checkupForm">
      <label for="email">Email</label>
      <input type="email" id="email" name="email" placeholder="Enter your email" required />

      <label>1. Feeling nervous, anxious, or on edge</label>
      <select name="q1" required>
            <option value="" disabled selected>Select a value</option>
            <option value="0">0</option>
            <option value="1">1</option>
            <option value="2">2</option>
            <option value="3">3</option>
        </select>

      <label>2. Not being able to stop or control worrying</label>
      <select name="q2" required>
            <option value="" disabled selected>Select a value</option>
            <option value="0">0</option>
            <option value="1">1</option>
            <option value="2">2</option>
            <option value="3">3</option>
        </select>

      <label>3. Worrying too much about different things</label>
      <select name="q3" required>
            <option value="" disabled selected>Select a value</option>
            <option value="0">0</option>
            <option value="1">1</option>
            <option value="2">2</option>
            <option value="3">3</option>
        </select>

      <label>4. Trouble relaxing</label>
      <select name="q4" required>
            <option value="" disabled selected>Select a value</option>
            <option value="0">0</option>
            <option value="1">1</option>
            <option value="2">2</option>
            <option value="3">3</option>
        </select>

      <label>5. Restless, trouble sitting still</label>
      <select name="q5" required>
            <option value="" disabled selected>Select a value</option>
            <option value="0">0</option>
            <option value="1">1</option>
            <option value="2">2</option>
            <option value="3">3</option>
        </select>

      <label>6. Becoming easily annoyed, irritable</label>
      <select name="q6" required>
            <option value="" disabled selected>Select a value</option>
            <option value="0">0</option>
            <option value="1">1</option>
            <option value="2">2</option>
            <option value="3">3</option>
        </select>

      <label>7. Feeling afraid as if something awful will happen</label>
      <select name="q7" required>
            <option value="" disabled selected>Select a value</option>
            <option value="0">0</option>
            <option value="1">1</option>
            <option value="2">2</option>
            <option value="3">3</option>
        </select>

      <button type="button" onclick="calculateScore()">Submit</button>
    </form>

    <div id="result"></div>
  </div>

  <script>
    function calculateScore() {
        const form = document.getElementById('checkupForm');
        const email = form.querySelector('input[type="email"]').value;
        const inputs = form.querySelectorAll('select');
        let score = 0;

        if (!email) {
            alert('Please enter your email.');
            return;
        }

        const answers = [];
        for (let input of inputs) {
            if (!input.value) {
                alert('Please answer all questions.');
                return;
            }
            const value = parseInt(input.value);
            score += value;
            answers.push(value);
        }

        let resultText = `Your score is ${score}. `;
        let resultCategory;

        if (score <= 4) {
            resultCategory = "You are doing fine.";
        } else if (score <= 7) {
            resultCategory = "Your anxiety is high.";
        } else {
            resultCategory = "Your anxiety level is really high. Please consider seeking professional help.";
        }

        resultText += resultCategory;
        document.getElementById('result').innerText = resultText;

        // Prepare data to send to Google Sheets
        const data = {  
            email: email,
            Feelingnervousanxiousoronedge: answers[0],
            Notbeingabletostoporcontrolworrying: answers[1],
            Worryingtoomuchaboutdifferentthings: answers[2],
            Troublerelaxing: answers[3],
            Restlesstroublesittingstill: answers[4],
            Becomingeasilyannoyedirritable: answers[5],
            Feelingafraidasifsomethingawfulwillhappen: answers[6],
            score: score,
            result: resultCategory
        };
        
          google.script.run.withSuccessHandler(function(response) {
            console.log(response);
            if (response.status === "success") {
                console.log("Data saved to Google Sheets!");
                alert("Your response has been submitted successfully!");
                form.reset();
            } else {
                console.error("Error saving data:", response.error || response);
                alert("There was an issue submitting your form. Please try again.");
            }
          }).postForm(data);

    }
  </script>

</body>

</html>

Sample Output:

Sample 1

Sample 2

Sample 3

References:

Reasons:
  • RegEx Blacklisted phrase (2.5): Please answer
  • Probably link only (1):
  • Long answer (-1):
  • Has code block (-0.5):
  • Low reputation (0.5):
Posted by: Lime Husky

79245577

Date: 2024-12-02 21:02:14
Score: 4
Natty: 6
Report link

Apologies for the silly question but where do you input your query in Jira ? I need to download all the issues related to my epics .tha k u

Reasons:
  • Blacklisted phrase (0.5): I need
  • Low length (1):
  • No code block (0.5):
  • Contains question mark (0.5):
  • Single line (0.5):
  • Low reputation (1):
Posted by: Leticia Gabandé

79245569

Date: 2024-12-02 21:00:13
Score: 1
Natty:
Report link

config/functions is not a folder where you implement bootstrap. Bootstrap is implemented in src/index.js

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

79245558

Date: 2024-12-02 20:55:11
Score: 5
Natty:
Report link

I'm the same error. I didn't find any solution for this on any forum.

Reasons:
  • Blacklisted phrase (1.5): any solution
  • Low length (1.5):
  • No code block (0.5):
  • Single line (0.5):
  • Low reputation (1):
Posted by: Leonardo Dionizio

79245554

Date: 2024-12-02 20:52:11
Score: 2.5
Natty:
Report link

maybe this help:

t.me/share?url=<url>&text=<text>

check https://core.telegram.org/api/links for more info

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

79245546

Date: 2024-12-02 20:51:10
Score: 0.5
Natty:
Report link

The issue is that try files is being executed always so all the requests no matter the path used end up returning index.html. To fix it I followed a suggestion from Matt Holt in this forum. By using router and switching the reverse proxy to be the first line, the backend starts being called before.

# Main site for biospringbok.com
biospringbok.com {
        root * /var/www/html # Path to your React app's build folder


        #Route is used to ensure that first reverse proxy is executed and only resort to try files if its not an api call
        route {
                reverse_proxy /api/* localhost:8080

                # Redirect all routes not matching files to index.html for client-side routing
                try_files {path} /index.html # This allows React Router to take over for non-file URLs

                # Serve static files (React app)
                file_server
           }
}
Reasons:
  • Long answer (-0.5):
  • Has code block (-0.5):
  • Self-answer (0.5):
  • Low reputation (1):
Posted by: Tomaz

79245545

Date: 2024-12-02 20:50:10
Score: 1.5
Natty:
Report link

I encountered the same issue with milvus-standalone running on Docker after releasing a certain collection. It was resolved by increasing the loadTimeoutSeconds in the milvus.yaml configuration file.

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

79245539

Date: 2024-12-02 20:47:09
Score: 1.5
Natty:
Report link

We can use Databricks connect - Databricks Connect combined with Asset Bundles is a game-changing combination.

If you are using Visual studio code - The Databricks extension for Visual Studio Code already has built-in support for Databricks Connect for Databricks Runtime 13.3 LTS and above

Refer to the Databricks documenation - They have explained it well, with screenshots, to guide you through the process.

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

79245530

Date: 2024-12-02 20:40:07
Score: 4
Natty:
Report link

You are missing activation events:

https://code.visualstudio.com/api/references/activation-events

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

79245526

Date: 2024-12-02 20:37:06
Score: 1
Natty:
Report link

It seems to be a common problem: stratify_by is there but partition_by is not, meaning that the two sets should be non-overlapping on the value of a specific variable, such as video_id or patient_id.

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

79245523

Date: 2024-12-02 20:37:06
Score: 2
Natty:
Report link

After so many googles like versions and no support for GPU (tensorflow-gpu) gone and advise for native installs, I got the best response that works. i.e

pip install tensorflow[and-cuda] update: its a very long install and i will test and update later .

Note: however i am using 12.4 toolkit (and don't install CUSTOM , choose EXPRESS - overwrites driver) and 12.4 pytorch as its the max supported (https://download.pytorch.org/whl/cu124)

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

79245512

Date: 2024-12-02 20:31:05
Score: 3.5
Natty:
Report link

git push origin source-branch:target-branch --force

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

79245508

Date: 2024-12-02 20:31:05
Score: 1.5
Natty:
Report link

Another option, besides re-creating the table and then doing "INSERT INTO <Target_Table> SELECT * FROM <Source_Table>" is to use "bq cp mydataset.mytable mydataset2.mytable2". It's there in the google docs, not sure how I missed it. Seems it should be simpler/quicker than the "INSERT INTO ..." option though I have not compared.

Reasons:
  • No code block (0.5):
  • Self-answer (0.5):
  • Single line (0.5):
Posted by: racerX

79245499

Date: 2024-12-02 20:28:03
Score: 5.5
Natty: 5.5
Report link

I'm seeing the same warning, it looks like they consider the loading page that shows right after the splash screen as another splash screen. Can this warning be ignored ?

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

79245491

Date: 2024-12-02 20:24:02
Score: 2
Natty:
Report link

I've never got clang formatting to work correctly. See this post for problems:Clang format excessive amount of identation

I've had good experience with VsCode's formatting tools, but you can't do bulk formatting. You could use format on save, but it might not do all of them.

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

79245488

Date: 2024-12-02 20:23:01
Score: 1
Natty:
Report link

After a completely clean re-try, it looks like there was a mix of settings from an older Dokku version.

Digital Ocean's 1-click Dokku droplet does not include the latest Dokku version. After an initial setup, I upgraded the version without any success to the deployment. As a last resource, I created a non-1-click droplet and then installed Dokku manually, everything works as expected.

There are already issues in the official repo, so nothing new to add.

Reasons:
  • No code block (0.5):
  • Self-answer (0.5):
Posted by: Sebastialonso

79245481

Date: 2024-12-02 20:22:01
Score: 3
Natty:
Report link

getComputedStyle(document.body).getPropertyValue("--your-color")

Reasons:
  • Low length (1.5):
  • Has code block (-0.5):
  • Has no white space (0.5):
  • Single line (0.5):
  • Low reputation (1):
Posted by: Egor Kiryanov

79245476

Date: 2024-12-02 20:19:00
Score: 2.5
Natty:
Report link

For those if you have the same issue as well, I found how to fix:

const unsubscribeClosed = rewarded.addAdEventListener(
      AdEventType.CLOSED,
      () => {
        rewarded.load();
        Alert.alert("Tebrikler!", "Reklamı izleyerek ödül kazandın.");
      }
    );

This is going to trigger when user closes the ad. It will load the new ad and when you press the button to watch a new ad, it is going to open without any problem. I found it on github account of the "react-native-google-mobile-ads". There are more evens on AdEventType and others. Here you can find all:

https://github.com/invertase/react-native-google-mobile-ads/blob/main/src/ads/RewardedAd.ts

And the documentation of "React Native Google Mobile Ads"

https://docs.page/invertase/react-native-google-mobile-ads/displaying-ads

Reasons:
  • Long answer (-0.5):
  • Has code block (-0.5):
  • Me too answer (2.5): have the same issue
  • Self-answer (0.5):
  • Low reputation (0.5):
Posted by: Ozan

79245474

Date: 2024-12-02 20:18:00
Score: 1.5
Natty:
Report link

To fix the resolution you might need to check the image contains in the dataset. Since, if you take a max resolution of to preserve details can increase computational load while average size of suppose (224x224) may not be ideal. I recommend to use padding which will maintain the aspect ratio and use a standard resolution of 256x256. Review scaled images again to find the best resolution.

I Hope that'll help you.

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

79245473

Date: 2024-12-02 20:18:00
Score: 2.5
Natty:
Report link

I found this article: https://learn.microsoft.com/en-us/azure/event-grid/custom-event-to-queue-storage#send-an-event-to-your-custom-topic

It has a destination and role chart. to send to queues, I need to add Storage Queue Data Message Sender.

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

79245471

Date: 2024-12-02 20:17:00
Score: 1
Natty:
Report link

I'm sorry this is far too late, but i had the same requirement and created a dart CLI tool that does just that. it's called flutter_templify. You can Create templates based on a simple Yaml file, Define folder structure, files, and even add reference files to copy from. You can check it out on pub.dev

Reasons:
  • Blacklisted phrase (0.5): check it out
  • Whitelisted phrase (-1): i had the same
  • Low length (0.5):
  • No code block (0.5):
  • Low reputation (0.5):
Posted by: Michael Aziz

79245469

Date: 2024-12-02 20:14:59
Score: 1
Natty:
Report link

I'm sorry this is far too late, but i had the same requirement and created a dart CLI tool that does just that. it's called flutter_templify. You can Create templates based on a simple Yaml file, Define folder structure, files, and even add reference files to copy from. You can check it out on pub.dev

Reasons:
  • Blacklisted phrase (0.5): check it out
  • Whitelisted phrase (-1): i had the same
  • Low length (0.5):
  • No code block (0.5):
  • Low reputation (0.5):
Posted by: Michael Aziz

79245464

Date: 2024-12-02 20:13:59
Score: 2
Natty:
Report link

tarchetypes v. 0.11.0 fixes this problem, as suggested in the comments.

Reasons:
  • Low length (1.5):
  • Has code block (-0.5):
  • Single line (0.5):
  • Low reputation (0.5):
Posted by: Matthew Kuperus Heun

79245463

Date: 2024-12-02 20:12:59
Score: 1
Natty:
Report link

I'm sorry this is far too late, but i had the same requirement and created a dart CLI tool that does just that. it's called flutter_templify. You can Create templates based on a simple Yaml file, Define folder structure, files, and even add reference files to copy from. You can check it out on pub.dev

Reasons:
  • Blacklisted phrase (0.5): check it out
  • Whitelisted phrase (-1): i had the same
  • Low length (0.5):
  • No code block (0.5):
  • Low reputation (0.5):
Posted by: Michael Aziz

79245461

Date: 2024-12-02 20:12:59
Score: 1.5
Natty:
Report link

For me the issue was that I was using a deprecated package instead of it's up to date newer counterpart. In my case it was @react-native-community/cameraroll (deprecated) instead of @react-native-camera-roll/camera-roll.

Obviously this question is specific to that but consider updating your package which is being affected.

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

79245459

Date: 2024-12-02 20:11:58
Score: 0.5
Natty:
Report link

or just add on your attribute

 @JsonInclude(JsonInclude.Include.NON_NULL)

example:

@JsonProperty("mapIDs")
@JsonInclude(JsonInclude.Include.NON_NULL)
private List<Integer> mapIDs;
Reasons:
  • Low length (0.5):
  • Has code block (-0.5):
  • Low reputation (0.5):
Posted by: DevMateus

79245458

Date: 2024-12-02 20:11:58
Score: 1
Natty:
Report link

I'm sorry this is far too late, but i had the same requirement and created a dart CLI tool that does just that. it's called flutter_templify. You can Create templates based on a simple Yaml file, Define folder structure, files, and even add reference files to copy from. You can check it out on pub.dev

Reasons:
  • Blacklisted phrase (0.5): check it out
  • Whitelisted phrase (-1): i had the same
  • Low length (0.5):
  • No code block (0.5):
  • Low reputation (0.5):
Posted by: Michael Aziz

79245449

Date: 2024-12-02 20:07:57
Score: 4
Natty: 4
Report link

Bump, also dealing with this issue. 407 no matter how I set the parameters.

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

79245445

Date: 2024-12-02 20:07:57
Score: 4
Natty:
Report link

Any progress in communication with the printer? I try the same with Videojet DataFlex 6530 and Node-red by Ethernet TCP/IP. I want to get information from the printer, for example "Total Distance Printed".

Reasons:
  • RegEx Blacklisted phrase (1): I want
  • Low length (0.5):
  • No code block (0.5):
  • Contains question mark (0.5):
  • Single line (0.5):
  • Low reputation (1):
Posted by: Michal

79245444

Date: 2024-12-02 20:05:56
Score: 3
Natty:
Report link

It´s probably because the dockerfile user npm run start but when you enter on interactive mode you are using nodejs commmand.

echo 'LD_LIBRARY_PATH='$LD_LIBRARY_PATH' on this point, this is the other difference, and the error looks that something are missing. Could you test the CMD command exactly on interactive mode?

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

79245443

Date: 2024-12-02 20:05:56
Score: 5.5
Natty:
Report link

Please provide how output of your file looks like. It would be helpful to make further steps with your code

Reasons:
  • RegEx Blacklisted phrase (2.5): Please provide how
  • Low length (1):
  • No code block (0.5):
  • Single line (0.5):
  • Low reputation (1):
Posted by: Charlixie

79245420

Date: 2024-12-02 19:57:54
Score: 1
Natty:
Report link

What you need is AWS Bedrock Knowledge Base and we can do this in 3 steps:

  1. Create the Knowledge base
  2. Using agents to consume from the knowledge base
  3. Set ingestion workflow for automatic knowledge base update

Step 1: knowledge base creation

see here: https://docs.aws.amazon.com/bedrock/latest/userguide/knowledge-base.html

You upon creating (quick create knowledge base) you get to choose where your data resides (s3) from there you will create your vector storage (OpenSearch serverless? mind the cost, or others)

Afterwards, you'll choose a model to generate the embeddings. There, you can select from multiple models with different dimensional spaces. Larger dimensional spaces provide deeper knowledge and may also increase storage costs and response times but i doubt this would be an issue.

You’ll also get to configure chunking and define fields to connect OpenSearch to the Bedrock Service. (run for the default as a starter) but be mindful that you first need to request access to the Foundation Models (FMs) before using them currently creating the knowledge base will fail silently if you choose a FM that is not granted before hand.

When you've created everything is up and running you need to "sync" your data, it might not be visually intuitive but you select your data source and then click "sync"

After that you will be able to "Test" the knowledge base from the console, you'd choose your model of choice (a FM has already been granted) some are good for reasoning and can take a couple of seconds to answer while others are good for quicker response.

There, you’ll have two options:


Step 2 Now that you are done with the first step, the second one is to consume: Using the agent to interact Reading on the Agent runtime here: Agent runtime

We can see two suitable calls:

You can configure the agent for optimal results. there are various options available, most of which are straightforward if you’re familiar with the topic.

One key thing to remember is the session_id. This sets the "thread" or chat session. If you’re testing and want fresh responses every time, set the session_id to change automatically (in code, maybe time.now() or something like that) otherwise, you might encounter some strange or repeated answers :)


Step 3 Lastly, but not least, comes the ingestion workflow: See Data Source Ingestion

If needed, you can set up an event trigger for updates to your S3 bucket. When new data is added, the trigger can invoke a Lambda function to automatically start an ingestion job (which is part of the Data Source Ingestion link)

happy coding :)

Reasons:
  • Long answer (-1):
  • No code block (0.5):
  • Contains question mark (0.5):
  • Starts with a question (0.5): What you
  • Low reputation (0.5):
Posted by: photowalker

79245412

Date: 2024-12-02 19:55:54
Score: 2
Natty:
Report link

... enum declaration ends with a semicolon.

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

79245399

Date: 2024-12-02 19:49:52
Score: 1
Natty:
Report link

Capture the mic audio yourself and pass the audio stream into both the SpeechRecognizer and the OpenTok session.

For SpeechRecognizer, use EXTRA_AUDIO_SOURCE.

For OpenTok, use AudioDeviceManager#setAudioDevice.

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

79245392

Date: 2024-12-02 19:46:51
Score: 1.5
Natty:
Report link

Slack is using Let's Encrypt for SSL certificates (at least for that site), and Let's Encrypt only supports Android 7.0 and higher.

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

79245377

Date: 2024-12-02 19:41:49
Score: 1.5
Natty:
Report link

There are a few things that might be wrong.

  1. you should use sum() instead of summation
  2. Your piece wise expression should be like this: (1, condition) where the condition is a boolean expression
  3. The way your function is set up is wrong, there is now reason to have two result sections when you only use the results of 1. If you want both you have to specify it in the result
Reasons:
  • No code block (0.5):
  • Low reputation (1):
Posted by: VamPartySlayer Yt

79245360

Date: 2024-12-02 19:36:48
Score: 1
Natty:
Report link
var Config = builder.Configuration;
builder.Services.AddDbContext<Context>(z =>
z.UseNpgsql(Config.GetConnectionString("DB")));
builder.Services.AddStackExchangeRedisCache(z =>
{
    z.Configuration = builder.Configuration.GetConnectionString("Redis");
    z.InstanceName = "redis";
});
Reasons:
  • Low length (0.5):
  • Has code block (-0.5):
  • Low reputation (1):
Posted by: zeon

79245356

Date: 2024-12-02 19:36:48
Score: 4
Natty:
Report link

Nobody? Too bad... I can imagine that many of you will quickly recognize the problem :)

Reasons:
  • Low length (1.5):
  • No code block (0.5):
  • Contains question mark (0.5):
  • Self-answer (0.5):
  • Single line (0.5):
  • Low reputation (0.5):
Posted by: heiland

79245343

Date: 2024-12-02 19:33:46
Score: 4.5
Natty: 4
Report link

If my understanding and testing is correct, this doesn’t address the original issue. The toggle list needs to be manually maintained. It doesn’t toggle based on the “started” status which defeats the purpose of cicd a bit.

Is there a way to do this automatically without the user having to parse the trigger.json or maintain a list separately?

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

79245338

Date: 2024-12-02 19:32:46
Score: 0.5
Natty:
Report link

My current solution for this (as discussed in comments with @KamilCuk):

cp $(cc -print-file-name=libc.a) libcmy.a
ar x libcmy open.lo close.lo read.lo stat.lo fstat.lo lseek.lo access.lo fopen.lo fileno.lo
objcopy --redefine-sym open=orig_open       open.lo
objcopy --redefine-sym close=orig_close    close.lo
objcopy --redefine-sym read=orig_read       read.lo
objcopy --redefine-sym stat=orig_stat       stat.lo
objcopy --redefine-sym fstat=orig_fstat    fstat.lo
objcopy --redefine-sym lseek=orig_lseek    lseek.lo
objcopy --redefine-sym access=orig_access access.lo
objcopy --redefine-sym fopen=orig_fopen    fopen.lo
objcopy --redefine-sym fileno=orig_fileno fileno.lo
ar rs libcmy.a open.lo close.lo read.lo stat.lo fstat.lo lseek.lo access.lo fopen.lo fileno.lo

And then linking with libcmy.a instead of plain -lc.

Then in the code we can add prototypes for these orig functions and define new functions using the orig functions.

Reasons:
  • Long answer (-0.5):
  • Has code block (-0.5):
  • User mentioned (1): @KamilCuk
  • Self-answer (0.5):
Posted by: Vadim Kantorov

79245336

Date: 2024-12-02 19:31:46
Score: 1.5
Natty:
Report link

CRAN does not necessarily make it easy but Posit package manager does. gt 10.1 is available here

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

79245330

Date: 2024-12-02 19:27:45
Score: 2.5
Natty:
Report link

maybe my answer is a bit late but I think I have the solution to your problem. Use WSL with Ubuntu in Windows Terminal. Basically in WSL what you will do is create and configure your Neovim just as you configured it in Windows (of course considering changes in path issues, etc.). But that solved my problems with nvim-jdtls for large projects. You will even notice improvements in Neovim performance. Here is a channel that configures all that from scratch: https://youtu.be/zbpF3te0M3g?si=d-5InekD4uPQCxLD

Reasons:
  • Blacklisted phrase (1): youtu.be
  • No code block (0.5):
  • Low reputation (1):
Posted by: Abel Angel Ortega

79245321

Date: 2024-12-02 19:23:44
Score: 0.5
Natty:
Report link

To see schemas accessible by a group on redshift:

SELECT * FROM svv_schema_privileges WHERE identity_name = 'my_group_name';

remove the filter to list all groups and the level of schema access they have.

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

79245319

Date: 2024-12-02 19:22:43
Score: 7.5 🚩
Natty: 4.5
Report link

the ./gradlew clean step above throws this error. Can anyone help please?

Build file 'C:\myApp\android\app\build.gradle' line: 2

Failed to apply plugin 'org.jetbrains.kotlin.android'. Could not isolate value org.jetbrains.kotlin.gradle.plugin.PropertiesBuildService$Params_Decorated@67dd4464 of type PropertiesBuildService.Params > Failed to query the value of property 'localProperties'. > Malformed \uxxxx encoding.

Reasons:
  • RegEx Blacklisted phrase (3): Can anyone help
  • RegEx Blacklisted phrase (0.5): anyone help please
  • RegEx Blacklisted phrase (1.5): help please
  • No code block (0.5):
  • Contains question mark (0.5):
  • Unregistered user (0.5):
  • Low reputation (1):
Posted by: ughosal

79245307

Date: 2024-12-02 19:19:41
Score: 2
Natty:
Report link

When your service is stopped, the process is moved to the "cached" list and the OS will reclaim that memory when needed. You do not need to (and should not try to) manage that lifecycle yourself. If your service is re-started later and the process is still in the cached list, the OS is able to efficiently re-use the existing process.

Reasons:
  • No code block (0.5):
  • Single line (0.5):
  • Starts with a question (0.5): When you
  • Low reputation (0.5):
Posted by: Ahaan Ugale

79245303

Date: 2024-12-02 19:17:41
Score: 2
Natty:
Report link

Try installing the VSCode extension

vscode:extension/denoland.vscode-deno

https://supabase.com/docs/guides/functions/local-development

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

79245290

Date: 2024-12-02 19:14:40
Score: 3.5
Natty:
Report link

base of https://stackoverflow.com/a/40776082/13200808

add this code to next.config.js

  webpack: (config) => {
    config.node = {
      __dirname: true,
    };
    return config;
  },

Reasons:
  • Blacklisted phrase (1): stackoverflow
  • Probably link only (1):
  • Low length (1):
  • Has code block (-0.5):
  • Low reputation (1):
Posted by: מוישי דויטש

79245283

Date: 2024-12-02 19:10:39
Score: 2
Natty:
Report link

Q4 2024 update - it is now possible to create extension/adaptation projects using VS code as mentioned in the following blog -

Introducing SAPUI5 Adaptation Projects in Visual Studio Code - https://community.sap.com/t5/technology-blogs-by-sap/introducing-sapui5-adaptation-projects-in-visual-studio-code/ba-p/13580992

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

79245277

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

Based on the answer from celsown ( https://stackoverflow.com/a/73807773/5538923 ), I could print the full date in the local language in PHP from a date field in the DB with this instruction:

echo IntlDateFormatter::formatObject(IntlCalendar::fromDateTime($row["dataA"], "en_US"), 'eeee d MMMM y', "it_IT");

The result was: "lunedì 2 dicembre 2024".

Reasons:
  • Blacklisted phrase (1): stackoverflow
  • Low length (0.5):
  • Has code block (-0.5):
  • Low reputation (0.5):
Posted by: marcor92

79245274

Date: 2024-12-02 19:08:38
Score: 2.5
Natty:
Report link

Use the Context object in the hub to get the ASP.Net Core Identity UserId.

var userId = Context.UserIdentifier;

https://learn.microsoft.com/en-us/aspnet/core/signalr/hubs?view=aspnetcore-9.0#the-context-object:~:text=before%20SendAsync%20finishes.-,The%20Context%20object,-The%20Hub%20class

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

79245269

Date: 2024-12-02 19:07:38
Score: 3
Natty:
Report link

parameters: -name: env displayName: Enviornment type: string default: dev values: -dev -qa -prod

variables: -group: ${{format('{0}Variables', parameters.env}}

Reasons:
  • Long answer (-0.5):
  • No code block (0.5):
  • Ends in question mark (2):
  • Low reputation (1):
Posted by: Alexander Gonzalez Garcia

79245266

Date: 2024-12-02 19:06:38
Score: 3
Natty:
Report link

SELECT X from (SELECT X, IsNumber(X) num FROM myTable) WHERE num = 'TRUE'

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

79245261

Date: 2024-12-02 19:04:37
Score: 3
Natty:
Report link

In response to those who said the above did not answer the question, my entry sheds more light on the issue (I cannot provide comments). It looks like the answer will be for MS to fix this issue.

Reasons:
  • Blacklisted phrase (0.5): I cannot
  • Low length (0.5):
  • No code block (0.5):
  • Single line (0.5):
  • Low reputation (1):
Posted by: TimF

79245253

Date: 2024-12-02 19:00:36
Score: 5
Natty:
Report link

The code that I submitted actually works, so here's the solution https://stackblitz.com/edit/stackblitz-starters-pxppkj?file=src%2Fmain.ts

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

79245237

Date: 2024-12-02 18:54:34
Score: 1
Natty:
Report link

You can create a for loop -

for column in df.columns[1:]:
    plt.figure():
    plt.plot(df["date"], df[column]) 
    plt.show()
Reasons:
  • Low length (1):
  • Has code block (-0.5):
  • Low reputation (0.5):
Posted by: user25332792

79245235

Date: 2024-12-02 18:54:34
Score: 2
Natty:
Report link

You can just use std::set<MyPod*> instead of a std::Map<MyPod*, MyPod*>.

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

79245233

Date: 2024-12-02 18:54:34
Score: 1
Natty:
Report link

I've found that I can use in:

if ("propertyName" in obj) {
}

Documentation: https://developer.mozilla.org/en-US/docs/Web/JavaScript/Guide/Expressions_and_operators#in

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

79245219

Date: 2024-12-02 18:48:33
Score: 2.5
Natty:
Report link

You can refer to the reasons and solutions for your issue at the following link: "https://stackoverflow.com/a/79163054/28591255". I’ll also provide some additional insights to enhance the solution further. I will change: "RUN chmod -R 755 /app/Rotativa/" to "RUN mkdir -p /app/Rotativa/Linux &&
mv /usr/local/bin/wkhtmltopdf /app/Rotativa/Linux/ &&
chmod 755 /app/Rotativa/Linux/wkhtmltopdf"

Good luck for you!

Reasons:
  • Blacklisted phrase (1): stackoverflow
  • No code block (0.5):
  • Low reputation (1):
Posted by: DEV-Vu TD

79245213

Date: 2024-12-02 18:46:32
Score: 1
Natty:
Report link

total = summation(math_func(x), (x, 2, 2)) is wrong. The function name is sum, not summation

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

79245205

Date: 2024-12-02 18:43:31
Score: 3
Natty:
Report link

So, seems like I misinterpret the location of my middlewares which read my html and css data before serving the static files, resulting this failure. I appreciate your responses to my first question.

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

79245203

Date: 2024-12-02 18:43:31
Score: 3
Natty:
Report link

For those that are as dumb as me, I actually TODAY turned off notifications for Chrome. Nevermind, everything is working.

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

79245197

Date: 2024-12-02 18:40:30
Score: 2
Natty:
Report link

12345678Reminder But avoid …

Asking for help, clarification, or responding to other answers. Making statements based on opinion; back them up with references or personal experience. To learn more, see our tips on writing great answers.

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

79245196

Date: 2024-12-02 18:40:30
Score: 4
Natty: 4.5
Report link

Got the solution? I was also trying to figure out the same.

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

79245192

Date: 2024-12-02 18:36:29
Score: 2.5
Natty:
Report link

' scaffold-DbContext "User ID=postgres;Password=12345;Host=localhost;Port=5432;Database=db;Pooling=true" Npgsql.EntityFrameworkCore.PostgreSQL -OutputDir Models `

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

79245182

Date: 2024-12-02 18:33:28
Score: 1.5
Natty:
Report link

Adyen has a working flutter example that you can find on github/adyen-flutter. For more information you can refer to the Adyen documentation. If you can provide any code snippets, we can help you troubleshoot, but this all I have for now!

Good luck!

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

79245158

Date: 2024-12-02 18:24:26
Score: 0.5
Natty:
Report link

Managed to work it out:

Had done the labels wrong:

dataRT$evolveto=factor(dataRT$evolveto, levels=c(0,1), labels=c("Camouflage", "Visible"))  

Then call the ggplot functions like this:

bar3<-ggplot(dataRT, aes(gen,contrastT, fill=fiteval)) + stat_summary(fun = mean, geom ="bar", position="dodge") +stat_summary(fun.data =mean_cl_normal, geom ="errorbar", position = position_dodge(width=0.90), width =0.2) +labs(x="generation", y="Colour Disparity", fill="Evaluation Model") + facet_wrap(~ evolveto, labeller=label_value) +  labs(title = "Evolve To")
Reasons:
  • Long answer (-0.5):
  • Has code block (-0.5):
  • Self-answer (0.5):
  • Low reputation (1):
Posted by: Jac Billington

79245153

Date: 2024-12-02 18:23:25
Score: 3
Natty:
Report link

Turns out I simply needed to use blobDetector.DetectRaw(binaryFrame, keypoints);

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

79245147

Date: 2024-12-02 18:22:25
Score: 3.5
Natty:
Report link

I was able to fix it by moving 'esbuild' from devDependencies to dependencies.

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

79245145

Date: 2024-12-02 18:21:25
Score: 1
Natty:
Report link

Yes, you can deploy your webpage in a Docker container and then host it on a cloud service.

For Node.js file

FROM node:16 WORKDIR /app COPY . . RUN npm install CMD ["npm", "start"] EXPOSE 3000

Build the docker image

docker build -t my-webpage .

on Git Bash

Run

docker run -p 3000:3000 my-webpage

For deploying the container on a cloud service

  1. AWS - Push the container to ECR. Deploy using ECS or a Docker-enabled EC2 instance.

  2. Azure - Push the container to ACR. Deploy using Azure Kubernetes.

  3. Google Cloud - Push the container image to GCR. Deploy on Cloud run.

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

79245139

Date: 2024-12-02 18:18:24
Score: 2.5
Natty:
Report link

you can check this registry key: HKEY_CURRENT_USER\SOFTWARE\Microsoft\Windows\CurrentVersion\CapabilityAccessManager\ConsentStore\microphone

Under the NonPackaged key, all non-microsoft applications that have used the microphone are listed with path to the executable. If an application is currently using the mic, the LastUsedTimeStop value is set to 0. Cheers!

Reasons:
  • Blacklisted phrase (1): Cheers
  • No code block (0.5):
  • Low reputation (1):
Posted by: Faldo

79245138

Date: 2024-12-02 18:18:24
Score: 1
Natty:
Report link

I had issues clearing the cache in chrome. I tried the "Dev Tools" > "Right Click Refresh Button" but it didn't work.

What worked for me is:

  1. Click the "Website Configuration icon" on the left side of the address bar.
  2. Click "Cookies and site data".
  3. Click "Manage on-device site data".
  4. Click the "trash icon" for all data that you want to delete.
  5. Refresh the page.

Placement of Configuration icon and "Cookies and site data" option

Reasons:
  • Whitelisted phrase (-1): worked for me
  • Probably link only (1):
  • No code block (0.5):
  • Low reputation (0.5):
Posted by: Guillem Poy

79245137

Date: 2024-12-02 18:16:23
Score: 1
Natty:
Report link

To see schemas accessible by a group on redshift:

SELECT * FROM svv_schema_privileges WHERE identity_name = 'my_group_name';

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

79245133

Date: 2024-12-02 18:15:22
Score: 3.5
Natty:
Report link

When I do "Notebook: Format Notebook" I get Extension 'Black Formatter' is configured as formatter but it cannot format 'Markdown'-files

Am I the only one?

Reasons:
  • Low length (1):
  • Has code block (-0.5):
  • Ends in question mark (2):
  • Starts with a question (0.5): When I
  • Low reputation (0.5):
Posted by: Josiah Coad

79245132

Date: 2024-12-02 18:13:22
Score: 1
Natty:
Report link

I can't help you directly, but here's the documentation.

Here's the steps, pulled directly from the link. Linking a Button To add a link to your button:

  1. Click on a button, and a toolbar will appear above it.
  2. Click the Link icon in the toolbar. The icon looks like an actual link you would find in a metal chain.
  3. Search for an existing page on your site or type/paste a URL.
  4. Click the “Apply” button.

Here

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

79245125

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

In the AirportController constructor, change the string from DefaultConnection to FlightBookingDbContext, because your appsettings.json file has connection named FlightBookingDbContext

Reasons:
  • Low length (0.5):
  • Has code block (-0.5):
  • Single line (0.5):
  • Low reputation (1):
Posted by: Tousif Md. Amin Faisal

79245119

Date: 2024-12-02 18:07:20
Score: 1
Natty:
Report link

I ended up just doing a full docker system prune -a and docker volume prune -a and the issue went away. Not entirely sure what was going on but that worked for me.

Reasons:
  • Whitelisted phrase (-1): worked for me
  • Low length (1):
  • Has code block (-0.5):
  • Self-answer (0.5):
  • Single line (0.5):
  • Low reputation (0.5):
Posted by: Landon Crabtree

79245109

Date: 2024-12-02 18:03:19
Score: 10.5 🚩
Natty: 5.5
Report link

were you able to solve the above usecase? I have figured the way to use cxOracle session pool along with ThreadPoolExecutor to fetch data in chunks from Oracle and push it to Snowflake. Please let me know if you have it figured end to end as i’m seeing some data duplication mostly due to incorrect session handling or cursor caching.

Reasons:
  • Blacklisted phrase (1): you able to solve
  • RegEx Blacklisted phrase (2.5): Please let me know
  • RegEx Blacklisted phrase (1.5): solve the above usecase?
  • RegEx Blacklisted phrase (3): were you able
  • No code block (0.5):
  • Contains question mark (0.5):
  • Single line (0.5):
  • Low reputation (1):
Posted by: AMEYA DALVI

79245108

Date: 2024-12-02 18:02:18
Score: 3
Natty:
Report link

if you are interested in a helping on a project with react-native-vision-camera and react-native-fast-opencv (used in expo app) let me know how to contact you. Couldnt find any mail or else on your github and others

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

79245099

Date: 2024-12-02 18:00:17
Score: 1
Natty:
Report link

you should define the type of your dict:

from typing import Union, Dict

result: Dict[str, Union[int, str]]

Mypy raise the error as it just check the first value from your dict and determine it as type Dict[str, str]

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

79245094

Date: 2024-12-02 17:57:17
Score: 3.5
Natty:
Report link

You can now create your own React Widget in Workshop: https://www.palantir.com/docs/foundry/workshop/widgets-iframe/#custom-widget-via-iframe

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

79245093

Date: 2024-12-02 17:57:17
Score: 1.5
Natty:
Report link

I had this issue and tried all of the suggested things but nothing worked. Finally I first ran pod search firebase that will show you what versions your setup can currently see on the cdn. For some reason pod repo update did nothing.

so i ran pod remove trunk and then pod setup after that i ran pod search firebase now I could see all the way to 11.5 where as before i could see max of 10.10 . After that pod install worked just fine

Reasons:
  • Blacklisted phrase (1): but nothing work
  • Has code block (-0.5):
  • Low reputation (1):
Posted by: James Preston

79245086

Date: 2024-12-02 17:55:16
Score: 5.5
Natty: 5.5
Report link

so i am supposed to use the createClient inside the client.ts file?

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

79245085

Date: 2024-12-02 17:55:15
Score: 3
Natty:
Report link

You can take the reference and how it works from Wordle ... This app handle the duplicate letters in wordle like "Guess".

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

79245083

Date: 2024-12-02 17:55:15
Score: 2.5
Natty:
Report link

It's very hard to get this working on Mac. The closest is to get the inspect element which is hidden within the context menu of the 'type a message' input box. Teams version: Version 24295.606.3238.6194

Until MS tries to block this too 😏

enter image description here

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

79245079

Date: 2024-12-02 17:53:15
Score: 1
Natty:
Report link

I think that tagging tests is the best way to do that. You also have a way to Conditionally skip a group of tests.

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

79245077

Date: 2024-12-02 17:50:14
Score: 3.5
Natty:
Report link

In the New Teams app in Mac, the inspect element is hidden within the context menu of the 'type a message' input box. Teams version: Version 24295.606.3238.6194

enter image description here

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

79245075

Date: 2024-12-02 17:48:13
Score: 1.5
Natty:
Report link

So i found a solution. In MyForm_Load i put the following line of code.

this->comboboxCharacters->DropDownHeight = this->comboboxCharacters->ItemHeight * 8;

this shows only 8 elements at a time and has a scroll bar.

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

79245050

Date: 2024-12-02 17:41:11
Score: 0.5
Natty:
Report link

A similar issue was raised here and the OP was able to solve the issue by removing

[tool.autoflake]
check = true

in the pyproject.toml. See Remove unused imports not working in place.

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

79245048

Date: 2024-12-02 17:41:11
Score: 0.5
Natty:
Report link

I don't understand the entity "FilesUploadEnum".

If it is the name of a given file, why not replace the input parameter with:

"@RequestParam("file") List<MultipartFile> files"

and get the file names directly from the object like this:

files.forEach(f-> System.out.println(f.getOriginalFilename()));
Reasons:
  • Low length (0.5):
  • Has code block (-0.5):
  • Low reputation (0.5):
Posted by: ECHU

79245039

Date: 2024-12-02 17:39:11
Score: 2.5
Natty:
Report link

It's simply the notation that CoffeeScript (an amazing language, BTW!) uses for declaring objects. You'll find all necessary details on the CoffeeScript website!

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

79245033

Date: 2024-12-02 17:38:10
Score: 2.5
Natty:
Report link

Need to see the controller action and the file names. I am guessing the error is not coming from this view file at all, you may have returned the action to a different cshtml file.

Reasons:
  • Low length (0.5):
  • No code block (0.5):
  • Single line (0.5):
  • Low reputation (1):
Posted by: Tousif Md. Amin Faisal

79245014

Date: 2024-12-02 17:28:08
Score: 1.5
Natty:
Report link

Just call GET on this:

https://storename.com/wp-json

This has all the info.

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

79245013

Date: 2024-12-02 17:28:08
Score: 2
Natty:
Report link

Maybe this is new: Xcode > Settings > Text Editing Editing tab Uncheck “Predictive code completion” Might have to restart Xcode- mine crashed when i made the change (just had to restart)

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

79245009

Date: 2024-12-02 17:25:08
Score: 1
Natty:
Report link

If someone is still looking to solve this problem, you can find the answer in the description of npmjs.com : https://www.npmjs.com/package/@getbrevo/brevo

Since the v2.1.1 you have to do like this :

const brevo = require('@getbrevo/brevo');
let apiInstance = new brevo.TransactionalEmailsApi();

let apiKey = apiInstance.authentications['apiKey'];
apiKey.apiKey = 'YOUR API KEY';

let sendSmtpEmail = new brevo.SendSmtpEmail();
Reasons:
  • Has code block (-0.5):
  • Unregistered user (0.5):
  • Low reputation (1):
Posted by: Enzo

79245008

Date: 2024-12-02 17:25:08
Score: 1
Natty:
Report link

added this to my package.json to remove error and continue using node16

"devDependencies": {
  "serverless": "^3",
Reasons:
  • Low length (1):
  • Has code block (-0.5):
  • Low reputation (0.5):
Posted by: Dan O

79245007

Date: 2024-12-02 17:24:07
Score: 1
Natty:
Report link

SQL query can be modified

The goal of these employees can be described as enslavement or something like that, so it should not be like this.

NOT EXISTS ( SELECT 1 FROM tbl_absent WHERE tbl_clients.specialId = tbl_absent.specialId AND '$varCurDate' BETWEEN tbl_absent.startDate AND tbl_absent.endDate )

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

79245003

Date: 2024-12-02 17:23:07
Score: 1
Natty:
Report link

Ok, searching for regex and "limiting string length" helped to find a regex pattern for checking if the length is in a set range.

And checking the length of the key only requires to split key and value, separated by a =.

These .htaccess lines work = a 403 is returned if ...

RewriteCond %{QUERY_STRING} ^(\w{1,5})=(.*)$ [NC]
RewriteRule .* - [F,L]
Reasons:
  • Has code block (-0.5):
  • Self-answer (0.5):
  • Low reputation (1):
Posted by: nitmws

79244996

Date: 2024-12-02 17:22:07
Score: 2.5
Natty:
Report link

The OneHotEncoder does not increase the number of variables, it just creates a binary column for each category. The model becomes more complex and slow to train.
With these reduced number of variables you should take into account that too many categories may lead to overfitting

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

79244984

Date: 2024-12-02 17:19:06
Score: 0.5
Natty:
Report link

Actual way to do it, according to docs:

CSS:

@use '@angular/material' as mat;

.your-class {
    mat-spinner {
        @include mat.progress-spinner-overrides((
            active-indicator-color: orange,
        ));
    }
}

HTML:

<div class="your-class">
    <mat-spinner></mat-spinner>
</div>
Reasons:
  • Low length (0.5):
  • Has code block (-0.5):
  • Low reputation (0.5):
Posted by: Gereon99