Skip to content

Instantly share code, notes, and snippets.

View MarieGutiz's full-sized avatar

Mariela Gutiérrez MarieGutiz

View GitHub Profile
const sleep = (delay) => new Promise((resolve) => setTimeout(resolve, delay))
const repeatedGreetings = async () => {
await sleep(1000)
console.log("First")
await sleep(1000)
console.log("Second")
await sleep(1000)
console.log("Third")
}
@arthurbeggs
arthurbeggs / install_quartus17.sh
Created November 2, 2019 03:15
Install Quartus Prime Lite 17.0 in Ubuntu
#!/bin/bash
################################################################################
### Install Quartus and ModelSim ###
################################################################################
# Source code at https://github.com/arthurbeggs/scripts #
################################################################################
# #
# Based on https://github.com/jessebarreto/ConfigureWorkspace script. #
# #