This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/bin/bash | |
# Setup log file | |
LOGFILE="$HOME/cli-updater.txt" | |
exec > >(tee -a "$LOGFILE") 2>&1 | |
# Function to handle macOS software updates | |
update_macos() { | |
echo "Updating macOS itself…" | |
if command -v softwareupdate &>/dev/null; then |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
var get = function (selector, scope) { | |
scope = scope ? scope : document; | |
return scope.querySelector(selector); | |
}; | |
var getAll = function (selector, scope) { | |
scope = scope ? scope : document; | |
return scope.querySelectorAll(selector); | |
}; |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
// Use Gists to store code you would like to remember later on | |
console.log(window); // log the "window" object to the console |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<!doctype html> | |
<html lang="nl"> | |
<head> | |
<meta charset="utf-8" /> | |
<title>Organigram (NL)</title> | |
<!--[if lt IE 9]><script src="//html5shiv.googlecode.com/svn/trunk/html5.js"></script><![endif]--> | |
<style> | |
body { font: 14px/1.5em Calibri, Arial, Helvetica, sans-serif; color: #222; margin: 4em; } | |
a { color: #868ba2; text-decoration: none; border-bottom: 1px dotted #868ba2; } | |
a:hover, a:focus { border-bottom: 1px solid #868ba2; } |