in OS X 10.4 to macOS sierra 10.12 and maybe higher!
Copy this entire code block and paste it into your terminal and push Return to create this file for you with correct permissions. It will (probably) ask for your password:
@tailwind base; | |
@tailwind components; | |
@tailwind utilities; | |
.field { | |
@apply .rounded .border .py-2 .px-3 .text-gray-800; | |
} | |
.field-label { | |
@apply .mb-2 .uppercase .font-bold .text-lg .text-gray-900; |
const chalk = require('chalk'); | |
const fs = require('fs'); | |
const del = require('del'); | |
const spawnSync = require('child_process').spawnSync; | |
/** | |
* A script for "yarnifying" projects - updating them to use Yarn instead of npm. | |
* | |
* Usage: |
in OS X 10.4 to macOS sierra 10.12 and maybe higher!
Copy this entire code block and paste it into your terminal and push Return to create this file for you with correct permissions. It will (probably) ask for your password:
#!/bin/bash | |
bucket=$1 | |
set -e | |
echo "Removing all versions from $bucket" | |
versions=`aws s3api list-object-versions --bucket $bucket |jq '.Versions'` | |
markers=`aws s3api list-object-versions --bucket $bucket |jq '.DeleteMarkers'` |
As configured in my dotfiles.
start new:
tmux
start new with session name:
(function(window,undefined){ | |
// Prepare our Variables | |
var | |
document = window.document, | |
$ = window.jQuery; | |
// Wait for Document | |
$(window).bind(function(){ | |
// Prepare Variables |