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.
<!doctype html><html><head><meta http-equiv="refresh" content="0; URL='http://www.urlHere.com'" /></head><body></body></html> |
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.
<!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 --> |
#!/bin/bash | |
clear | |
echo "====================" | |
echo " macOS SETUP SCRIPT " | |
echo "====================" | |
echo "" | |
sudo -v |
#!/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" |
{"lastUpload":"2020-06-24T17:48:07.785Z","extensionVersion":"v3.4.3"} |
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] | |
} |