Sass versions of
- Bootstrap 4
- Fontawesome 5.5
with Elixir / Phoenix Framework 1.3 and 1.4 using Webpack 4 and Babel 7
export CLICOLOR=1; | |
export LSCOLORS=ExFxCxDxBxegedabagacad; | |
function git_branch { | |
ref=$(git symbolic-ref HEAD 2> /dev/null) || return; | |
echo "("${ref#refs/heads/}") "; | |
} | |
function git_since_last_commit { | |
now=`date +%s`; |
#!/usr/bin/env ruby | |
# Memory usage script for WebFaction customers adapted to attempt to | |
# draw username from the pwd | |
# Nick Trew <[email protected]> | |
# 2009-05-25 | |
# START CONFIG # | |
require 'pathname' |
/* | |
* TypeHelpers version 1.0 | |
* Zoltan Hawryluk, Nov 24 2009. | |
* @see http://www.useragentman.com/blog/2009/11/29/how-to-detect-font-smoothing-using-javascript/ | |
* | |
* Released under the MIT License. http://www.opensource.org/licenses/mit-license.php | |
* | |
* Works for | |
* - IE6+ (Windows), | |
* - Firefox 3.5+ (Windows, Mac, Linux), |
var Job = { | |
data : [ | |
"We are glad to see you here. This site is dedicated to", | |
"poetry and to the people who make poetry possible", | |
"poets and their readers. FamousPoetsAndPoems.com is", | |
"a free poetry site. On our site you can find a large", | |
"collection of poems and quotes from over 631 poets", | |
"Read and Enjoy Poetry", | |
"I, too, sing America", |
defmodule Chat.Client do | |
def join(server) do | |
client_send server, :join | |
end | |
def say(server, message) do | |
client_send server, { :say, message } | |
end | |
def leave(server) do |
// Use Gists to store code you would like to remember later on | |
console.log(window); // log the "window" object to the console |
Sass versions of
with Elixir / Phoenix Framework 1.3 and 1.4 using Webpack 4 and Babel 7
exFAT support on macOS seems to have some bugs because my external drives with exFAT formatting will randomly get corrupted.
Disk Utility is unable to repair this at first, but the fix is this:
diskutil list
to find the right drive id.disk1s1
sudo fsck_exfat -d <id from above>
. eg sudo fsck_exfat -d disk1s3
-d
is debug so you'll see all your files output as they're processed.YES
if it gives you the prompt Main boot region needs to be updated. Yes/No?