Skip to content

Instantly share code, notes, and snippets.

View DylanTackoor's full-sized avatar

Dylan Tackoor DylanTackoor

View GitHub Profile
@DylanTackoor
DylanTackoor / README.md
Last active January 16, 2017 16:56
Example ReadMe file.
@DylanTackoor
DylanTackoor / CS50xMiami.md
Last active July 22, 2017 21:55
CS50xMiami

CS50x Miami

CS50x Miami Puzzle Day

Introduction

CS50x Miami is The Idea Center @ Miami Dade College's adaption of CS50, Harvard University's introduction to the intellectual enterprises of computer science, and the art of programming, for MDC students and the South Florida community.

But what does that mean?

Well, CS50x Miami is a course that teaches you how to design and implement solutions to problems. But more than that, it teaches you how to think more critically, more methodically, and more computationally, if you will.

@DylanTackoor
DylanTackoor / redirect.html
Last active August 29, 2017 13:35
HTML5 Redirect for forwarding
<!doctype html><html><head><meta http-equiv="refresh" content="0; URL='http://www.urlHere.com'" /></head><body></body></html>
@DylanTackoor
DylanTackoor / CS50x Miami.md
Created August 28, 2017 15:42
CS50x Miami

CS50x Miami

CS50x Miami Puzzle Day

Introduction

CS50x Miami is The Idea Center @ Miami Dade College's adaption of CS50, Harvard University's introduction to the intellectual enterprises of computer science, and the art of programming, for MDC students and the South Florida community.

But what does that mean?

Well, CS50x Miami is a course that teaches you how to design and implement solutions to problems. But more than that, it teaches you how to think more critically, more methodically, and more computationally, if you will.

@DylanTackoor
DylanTackoor / HTMLboilerplate.html
Created September 5, 2017 00:18
HTML Boilerplate
<!DOCTYPE html>
<html lang="en">
<head>
<title><?= $title ?></title>
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8" />
<!-- Mobile Responsive -->
<meta name="viewport" content="width=device-width, initial-scale=1, maximum-scale=1.0" />
<!-- Windows phone tab color -->
@DylanTackoor
DylanTackoor / carlos.sh
Last active September 13, 2017 23:58
carlos.sh
#!/bin/bash
clear
echo "===================="
echo " macOS SETUP SCRIPT "
echo "===================="
echo ""
sudo -v
@DylanTackoor
DylanTackoor / spacemacsLinuxSetup.sh
Created November 14, 2017 18:48
spacemacsLinuxSetup.sh
#!/bin/bash
sudo add-apt-repository ppa:kelleyk/emacs
sudo apt update
sudo apt install -y git emacs25
cd ~ || exit
sudo wget https://raw.githubusercontent.com/DylanTackoor/dotfiles/master/config/.spacemacs
{
"env": {
"es6": true,
"node": true,
"browser": true,
"jquery": true
},
"extends": "eslint:recommended",
"parserOptions": {
"sourceType": "module"
@DylanTackoor
DylanTackoor / cloudSettings
Last active June 24, 2020 17:48
Visual Studio Code Settings Sync Gist
{"lastUpload":"2020-06-24T17:48:07.785Z","extensionVersion":"v3.4.3"}
@DylanTackoor
DylanTackoor / Arrays: Left Rotation.js
Created March 26, 2019 19:20
HackerRank Solutions
const a = [1, 2, 3, 4, 5]
const d = 4
function rotLeft(array, shift) {
const newArr = []
for (let index = 0; index < array.length; index++) {
const newIndex = Math.abs(index - shift + array.length)
newArr[newIndex] = array[index]
}