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
brew install smartmontools | |
sudo smartctl --all /dev/disk0 | |
# Look for 'Percentage used' line. |
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
// Place your key bindings in this file to override the defaults | |
[ | |
// Keybindings that are active when the focus is in the editor | |
{ | |
"key": "cmd+alt+up", | |
"command": "cursorMove", | |
"args": { | |
"to": "up", | |
"by": "line", | |
"value": 10 |
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
const gulp = require('gulp'); | |
const sass = require('gulp-sass'); | |
const autorefixer = require('gulp-autoprefixer'); | |
const sourcemaps = require('gulp-sourcemaps'); | |
const browserSync = require('browser-sync').create(); | |
// Compile sass into CSS & auto-inject into browsers | |
gulp.task('sass', function (done) { | |
gulp.src("./styles/common.scss") | |
.pipe(sourcemaps.init()) |
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
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100" width="160" height="160"> | |
<path class="loader-a" fill="none" stroke-width="4" stroke-linejoin="round" stroke-linecap="round" stroke-miterlimit="10" stroke-dasharray="128" stroke-dashoffset="128" d="M25.36,5.18h0a4.76,4.76,0,0,1-6.73,0h0a4.76,4.76,0,0,0-6.73,0L5.18,11.91a4.76,4.76,0,0,0,0,6.73h0a4.76,4.76,0,0,1,0,6.73h0a4.76,4.76,0,0,0,0,6.73l6.73,6.73a4.76,4.76,0,0,0,6.73,0h0a4.76,4.76,0,0,1,6.73,0h0a4.76,4.76,0,0,0,6.73,0l6.73-6.73a4.76,4.76,0,0,0,0-6.73h0a4.76,4.76,0,0,1,0-6.73h0a4.76,4.76,0,0,0,0-6.73L32.09,5.18A4.76,4.76,0,0,0,25.36,5.18Z"/> | |
<path class="loader-b" stroke-width="4" stroke-linejoin="round" stroke-linecap="round" stroke-miterlimit="10" stroke-dasharray="128" stroke-dashoffset="128" d="M25.36,5.18h0a4.76,4.76,0,0,1-6.73,0h0a4.76,4.76,0,0,0-6.73,0L5.18,11.91a4.76,4.76,0,0,0,0,6.73h0a4.76,4.76,0,0,1,0,6.73h0a4.76,4.76,0,0,0,0,6.73l6.73,6.73a4.76,4.76,0,0,0,6.73,0h0a4.76,4.76,0,0,1,6.73,0h0a4.76,4.76,0,0,0,6.73,0l6.73-6.73a4.76, |