Welcome!

By registering with us, you'll be able to discuss, share and private message with other members of our community.

SignUp Now!

Search results

  1. saramar

    Python Google cloud API call with Python "Cannot read and write in different locations"

    hi fyzeri To fix the error "google.api_core.exceptions.BadRequest: 400 Cannot read and write in different locations: source: EU, destination: US", you can either change the location of the file in Cloud Storage to be the same as the location of the table in BigQuery, or change the location of...
  2. saramar

    Fun activity Say hello... in a coding language!

    name = "Sara"; console.log("Hello " + name);
  3. saramar

    JavaScript How can I change this to highlight one answer when its correct?

    To highlight the correct answer when it is selected, you can add a class to the label element of the correct answer. For example, you can add a class called "correct" to the label element of the correct answer in the following way: // and for each available answer... for(letter in...
  4. saramar

    Node.JS How to properly make xhttp request to url every 20secs using node js

    the code you provided uses the XMLHttpRequest object, which is used to make HTTP requests from a web browser. If you want to make HTTP requests from a Node.js script, you will need to use a different library. There are several options available, but a popular choice is the request library. You...
Back
Top Bottom