Skip to content

Instantly share code, notes, and snippets.

View theatlasroom's full-sized avatar

Ezekiel theatlasroom

View GitHub Profile
@theatlasroom
theatlasroom / parallel-serial-async.js
Last active January 6, 2019 09:13
Parallel vs serial async await
const items = 10
async function delayedFunc(delay, i) {
return new Promise((resolve, reject) => {
console.log(`Start executing ${i}`)
setTimeout(() => {
console.log(`Finished ${i}`)
resolve()
}, delay)
})
@theatlasroom
theatlasroom / glossing-over-ethereum.md
Last active November 18, 2023 11:43
Ethereum 101

Ethereum

What is Ethereum

ether

A peer to peer network of virtual machines that developers can utilise to develop distributed applications (Dapps).

Dapps can function as programs that contain rules to be executed when certain conditions are met (similar to a contract).

Ethereum uses its own decentralised blockchain to store and execute these Dapps

Keybase proof

I hereby claim:

  • I am theatlasroom on github.
  • I am theatlasroom (https://keybase.io/theatlasroom) on keybase.
  • I have a public key whose fingerprint is 7198 1644 007A F9D1 7786 7D54 F276 AC63 BD03 DA6E

To claim this, I am signing this object:

@theatlasroom
theatlasroom / basic-post-receive-hook-with-pm2
Last active August 16, 2022 23:00
Basic post-receive hook - node + pm2
#!/bin/sh
# This is for an expressjs node app, it uses npm + bower packages and pm2 to start the app
# [pm2](https://github.com/Unitech/pm2)
# Assumes you've created a [bare git repo](https://git-scm.com/book/en/v2/Git-on-the-Server-Getting-Git-on-a-Server) with on your server with git init --bare
# Adapted from http://javascript.tutorialhorizon.com/2014/08/17/push-to-deploy-a-nodejs-application-using-git-hooks/
PORT=1337
APP_NAME="app-name"
APP_ROOT="/var/www/app"