Become a member
Sign in
Chris Page
Chris Page

Chris Page

3 Following
1 Followers
  • Profile
  • Claps
  • Highlights
  • Responses

Highlighted by Chris Page

See more

From Google Forms + Google Sheets + Google Apps Script = ❤. Easy Database Solution for Static Websites by Rohit Agrawal

Step 1: Make a Google Form with each field corresponding to the names of the fields in the HTML form.

From Hands on K3S (Using K3OS) by Rémy Boulanouar

K3OS is at k8s what rancherOs was for docker. And you know what, it’s by the same company!

From How to use Async Await in JavaScript by Ashay Mandwarya 🖋️💻🍕

async function firstAsync() {
let promise = new Promise((res, rej) => {
setTimeout(() => res("Now it's done!"), 1000)
});

// wait until the promise returns us a value
let result = await promise;

// "Now it's done!"
alert(result);
}
};

Claps from Chris Page

See more

How to proxy web sockets with Nginx ?

Ibraheem Abu Kaff

Sunil Sandhu, just did it!

António Almeida

Just so much cleaner.

Rob Muhlestein