A Pen by Danny Beton on CodePen.
A Pen by A Non Ymous on CodePen.
Canvas Oil Pump Jack
Forked from Marko Švaljek's Pen Canvas Oil Pump Jack.
A Pen by Michael Abraham Vieth on CodePen.
Forked from Shaw's Pen Stock Ticker.
A Pen by Michael Abraham Vieth on CodePen.
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
#!/bin/bash -e | |
clear | |
echo "============================================" | |
echo "WordPress Install Script" | |
echo "============================================" | |
echo "Database Name: " | |
read -e dbname | |
echo "Database User: " | |
read -e dbuser | |
echo "Database Password: " |
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
# Update Node to latest version | |
brew upgrade | |
# Find potential problems | |
brew doctor | |
# Remove Node and prune libraries | |
brew uninstall node | |
brew prune |
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
# Get angular js html template | |
git clone https://github.com/angular/angular.js.git | |
# Install dependencies (takes a few minutes) | |
cd angular.js | |
npm install | |
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
# Update npm | |
npm install -g npm | |
# Installing Bower & Grunt cli | |
npm install -g yo bower gulp grunt-cli | |
# Installing the latest Yeoman webapp generators | |
npm install -g generator-gulp-webapp generator-webapp |
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
Sub CreateExcelFileFromOutlookVBA() | |
' Excel Application, workbook, and sheet object | |
Dim xlApp As Excel.Application | |
Dim xlBook As Excel.Workbook | |
Dim xlSheet As Object | |
' Filename | |
Dim fileDoesExist As Boolean | |
Dim FileName As String |
OlderNewer