Skip to content

Instantly share code, notes, and snippets.

View alequetzalli's full-sized avatar
📝
Writing OSS Docs

Quetzalli alequetzalli

📝
Writing OSS Docs
View GitHub Profile

📄 AsyncAPI Docs update (31 Jan - 11 Feb 2022)

As an Open-Source (OSS) contributor, I volunteer to write periodic updates about the AsyncAPI Docs ecosystem every 2 weeks.

🦄 This is Ale's personal summary

I want to note that this is not an official AsyncAPI Initiative update, but a personal summary I'm volunteering to write up for the OSS community. The goal is to let you know what's going on in the Docs area and how the Docs area has been teaming with other areas within the AsyncAPI Initiative. 😀👍🏽

📑 Google Season of Docs 2022

Google Season of Docs 2022 (GSoD) is coming up and the application process is opening soon on February 23, 2022. As you can imagine, I'm submitting an application for the AsyncAPI initiative once it's open. 😄

In anticipation of this, I have also created a new AsyncAPI Slack channel named #temp-gsod-2022 that you can now [join he

📄 AsyncAPI Docs update (17 Jan - 28 Jan 2022)

As an Open-Source (OSS) contributor, I volunteer to write periodic updates about the AsyncAPI Docs ecosystem every 2 weeks.

🦄 This is Ale's personal summary

I want to note that this is not an official AsyncAPI Initiative update, but a personal summary I'm volunteering to write up for the OSS community. The goal is to let you know what's going on in the Docs area and how the Docs area has been teaming with other areas within the AsyncAPI Initiative. 😀👍🏽

🎨 What Docs and Design teamed together on

For this time period, Docs got to talk through a lot of cool changes coming up within the DESIGN side of the initiative!

  • /websiteissue #503 update: chatting still w/ @mcturco through the ideation and development of a /new page added to the Docs to be a new homepage for our Docs.
  • /websiteissue [#518](https://github.com/as
@JeremyMorgan
JeremyMorgan / Code.gs
Last active February 20, 2020 15:18
Google Sheets Code to pull Dev.TO stats
function getFirstEmptyRow() {
var spr = SpreadsheetApp.getActiveSpreadsheet();
var column = spr.getRange('A:A');
var values = column.getValues(); // get all data in one call
var ct = 0;
while (values[ct][0] != "") {
ct++;
}
return (ct);
}
@gaearon
gaearon / modern_js.md
Last active April 18, 2024 15:01
Modern JavaScript in React Documentation

If you haven’t worked with JavaScript in the last few years, these three points should give you enough knowledge to feel comfortable reading the React documentation:

  • We define variables with let and const statements. For the purposes of the React documentation, you can consider them equivalent to var.
  • We use the class keyword to define JavaScript classes. There are two things worth remembering about them. Firstly, unlike with objects, you don't need to put commas between class method definitions. Secondly, unlike many other languages with classes, in JavaScript the value of this in a method [depends on how it is called](https://developer.mozilla.org/en-US/docs/Web/Jav
@PurpleBooth
PurpleBooth / README-Template.md
Last active May 22, 2024 13:17
A template to make good README.md

Project Title

One Paragraph of project description goes here

Getting Started

These instructions will get you a copy of the project up and running on your local machine for development and testing purposes. See deployment for notes on how to deploy the project on a live system.

Prerequisites

@rsms
rsms / async-function.js
Last active March 26, 2019 09:10
Simple ES7 async function example: sleep
function sleep(duration) {
return new Promise(function(resolve, reject) {
setTimeout(()=> { resolve(0) }, duration);
})
}
async function delayedMessage(message, delay) {
let remainingTime = await sleep(delay)
console.log(message, `(remaining time: ${remainingTime})`)
}