Skip to content

Instantly share code, notes, and snippets.

@skube
skube / style.css
Created December 10, 2018 14:41
CSS Link general rules
// LoVe Fears HAte (pseudo class order)
// Use:
// a {} generally for everything but colors,
// Then, apply color attributes with pseudo selectors
// a == a:link & a:visited (could use one or the other)
// a, a:link {this is a little redundant}
// a:focus, a:hover (always used together)
@skube
skube / bootable_macos_highsierra.sh
Last active October 20, 2018 12:48
Bash script to create a Bootable ISO from macOS Install Image from Mac App Store
#!/bin/bash
#
# Bash script to create a Bootable ISO from macOS Install Image from Mac App Store
# Version: macOS v10.13 (High Sierra)
#
# INSTRUCTIONS:
# - save as a text file
# - open terminal
# - on command line, enter: sh bootable_macos_highsierra.sh
#
@skube
skube / bootable_macos_sierra.sh
Created October 20, 2018 12:42
Bootable macOS ISO from installer DMG
#!/bin/bash
#
# Bash script to create a Bootable ISO from macOS Install Image from Mac App Store
# Version: macOS v10.12 (Sierra)
#
# INSTRUCTIONS:
# - save as a text file
# - open terminal
# - on command line, enter: sh bootable_macos_sierra.sh
#

title

Subhead

code here?

npm install --save-dev
@skube
skube / test.sh
Last active March 3, 2018 13:58
Just testing
npm install --save
npm install --save-dev
npm i -S
npm i -D
yarn add
@skube
skube / README.md
Last active September 2, 2021 08:07 — forked from maybelinot/.block
Zoomable Sunburst on d3.js v4
@skube
skube / index.html
Last active October 1, 2016 18:33
Sunburst
<!DOCTYPE html>
<meta charset="utf-8">
<style>
path {
stroke: #fff;
}
</style>
<body>
<script src="https://d3js.org/d3.v4.min.js"></script>
<script>
@skube
skube / command_line_tips.md
Last active August 29, 2015 14:27
Command Line Tips

#:notebook_with_decorative_cover: Understanding Command Line Abridged from Codecademy

##List

  • ls -t orders files and directories by the time they were last modified

##Copy, Move, Rename & Delete##

  • cp copies files
  • mv moves and renames files
@skube
skube / Media Object Full HTML (BEM style)
Created February 19, 2015 18:49
Media Object in BEM style (full)
/**
* Media object. (BEM style)
*
* stubbornella.org/content/2010/06/25/the-media-object-saves-hundreds-of-lines-of-code/
*/
.media,
.media__body {
overflow:hidden;
_overflow:visible;
@skube
skube / ST3: User: Default (Windows).sublime-keymap
Created February 17, 2015 21:33
User keymappings for Sublime Text (Windows)
[
// { "keys": ["ctrl+d"], "command": "duplicate_line" },
{ "keys": ["ctrl+shift+w"], "command": "null" },
{ "keys": ["shift+f3"], "command": "find_under_expand" },
// { "keys": ["j", "j"], "command": "exit_insert_mode",
// "context":
// [
// { "key": "setting.command_mode", "operand": false },
// { "key": "setting.is_widget", "operand": false }
// ]