In your command-line run the following commands:
brew doctorbrew update
In your command-line run the following commands:
brew doctorbrew update| #!/usr/bin/env node | |
| console.log("Hi Michael! I was executed from gist"); |
| /* | |
| Copy this into the console of any web page that is interactive and doesn't | |
| do hard reloads. You will hear your DOM changes as different pitches of | |
| audio. | |
| I have found this interesting for debugging, but also fun to hear web pages | |
| render like UIs do in movies. | |
| */ | |
| const audioCtx = new (window.AudioContext || window.webkitAudioContext)() |
title: Setting Up Laravel in Ubuntu / DigitalOcean keywords: servers, laravel, coderstape, coder's tape description: Let's take a look at settting up a server from scratch for Laravel. date: April 1, 2019 tags: servers, laravel permalink: setting-up-laravel-in-ubuntu-digitalocean img: https://coderstape.com/storage/uploads/GZTXUbyGum2xeUZM9qBD5aPv8EKLwG3C8RGcRon4.jpeg author: Victor Gonzalez authorlink: https://github.com/vicgonvt
| .confirm-wrapper { | |
| position: fixed; | |
| left: 0; | |
| top: 0; | |
| width: 100%; | |
| height: 100%; | |
| background-color: gray; | |
| opacity: 0; | |
| visibility: hidden; | |
| transform: scale(1.1); |
| npm init | |
| npm install typescript --save-dev |
| npx create-react-app my-react-ts-app --typescript | |
| cd my-react-ts-app | |
| npm install tslint tslint-react tslint-config-prettier --save-dev |
| echo fs.inotify.max_user_watches=524288 | sudo tee -a /etc/sysctl.conf && sudo sysctl -p |
| function getAjax(url, success) { | |
| var xhr = new XMLHttpRequest(); | |
| xhr.open('GET', url); | |
| xhr.onreadystatechange = function () { | |
| if (xhr.readyState > 3 && xhr.status == 200) success(xhr.responseText); | |
| }; | |
| xhr.setRequestHeader('X-Requested-With', 'XMLHttpRequest'); | |
| xhr.send(); | |
| return xhr; | |
| } |