Skip to content

Instantly share code, notes, and snippets.

View seanquijote's full-sized avatar
🏠
Working from home

Sean Quijote seanquijote

🏠
Working from home
View GitHub Profile
@seanquijote
seanquijote / nodejs-laravel-auto-setup.sh
Created December 3, 2020 11:31
Simple Auto-Setup Script for NodeJS and Laravel
#!/usr/bin/env bash
#title : Simple Auto-Setup Script for NodeJS and Laravel
#description : Installs all dependencies for NodeJS and Laravel web apps
#author : seanquijote
#date_created : 20200428
#date_lastupdated : 20200521
#version : 0.0.4
#==============================================================================
read -e -p "Enter Username: " UNAME
@seanquijote
seanquijote / my-fizzbuzz-sample.js
Created February 17, 2021 13:15
My FizzBuzz Sample
var output;
var maxNum = 100;
const run = () => {
for (var i = 1; i <= maxNum; i++) {
output = "";
if (divide(i, 3) == 0) {
appendOutput("Fizz");
}