Step 1: Go to tweeterid.com and enter your username.
Step 2: Copy your user ID from the previous website.
Step 3: Copy the following URL:
# sudoers file. | |
# | |
# This file MUST be edited with the 'visudo' command as root. | |
# Failure to use 'visudo' may result in syntax or file permission errors | |
# that prevent sudo from running. | |
# | |
# See the sudoers man page for the details on how to write a sudoers file. | |
# | |
# Host alias specification |
// | |
// Variables | |
// -------------------------------------------------- | |
//== Colors | |
// | |
//## Gray and brand colors for use across Bootstrap. | |
@gray-base: #000; |
$bootstrap-sass-asset-helper: false !default; | |
// | |
// Variables | |
// -------------------------------------------------- | |
//== Colors | |
// | |
//## Gray and brand colors for use across Bootstrap. |
$bootstrap-sass-asset-helper: false !default; | |
// | |
// Variables | |
// -------------------------------------------------- | |
//== Colors | |
// | |
//## Gray and brand colors for use across Bootstrap. |
#!/bin/bash | |
if [ -d "bootstrap-sass" ]; then | |
cd bootstrap-sass | |
git pull | |
cd assets/stylesheets | |
sass -t compressed _bootstrap.scss bootstrap.min.css | |
mv bootstrap.min.css ../../../bootstrap.min.css | |
exit 0 | |
fi | |
git clone git://github.com/twbs/bootstrap-sass |
#!/bin/bash | |
### run.sh - citrusui CSS | |
git clone [email protected]:ce3564c1de08d12b56bf | |
git clone [email protected]:twbs/bootstrap-sass | |
cd ce3564c1de08d12b56bf | |
git pull | |
cd .. | |
cd bootstrap-sass |
#!/usr/bin/env ruby | |
print "URL: " | |
ENV["url"] = gets.chomp | |
print "Code: " | |
ENV["code"] = gets.chomp | |
system 'curl -i https://git.io -F "url=$url" -F "code=$code"' |
git config --global user.email [email protected] | |
git config --global user.name "Avery Magnotti" |