New computer setup
a/o 2020-05-29
--
Format the drive
- Restart with Cmd-R or Cmd-D
- Erase drive / 3x if second-hand
- Reinstall MacOS
DO WHAT THE FUCK YOU WANT TO PUBLIC LICENSE | |
Version 2, December 2004 | |
Copyright (C) 2011 YOUR_NAME_HERE <YOUR_URL_HERE> | |
Everyone is permitted to copy and distribute verbatim or modified | |
copies of this license document, and changing it is allowed as long | |
as the name is changed. | |
DO WHAT THE FUCK YOU WANT TO PUBLIC LICENSE |
a/o 2020-05-29
--
// Ryan Gonzalez 7/2013 | |
// Adapted from the blog post | |
// http://phaistonian.pblogs.gr/expanding-textareas-the-easy-and-clean-way.html | |
angular.module('autoresize', []); | |
angular.module('autoresize') | |
.directive('autoresize', function($window){ | |
'use strict'; | |
return { |
#!/usr/bin/env bash | |
# | |
# Add new version of nodejs to a nodejs or no.de SmartMachine | |
# | |
# Check to see if script is being run as the root user | |
if [[ $EUID -ne 0 ]]; then | |
echo "This script must be run as root. Aborting..." 1>&2 | |
exit 1 |