I saw something similar to this on another website(I forget which one) and I thought I would take a stab at creating my own.
A Pen by Jesse Black on CodePen.
##Inside executable file to start
#!/usr/bin/env node
//Define Node Native Modules
//Define Third-Party Modules
(function(){
"use strict";
sudo apt-get install vim
Here is a nice list containing other flavors of vim that may better suit your needs. http://askubuntu.com/questions/281886/what-is-the-difference-between-the-different-vim-packages-available-in-ubuntu
To set persistent settings/preferences for vim, edit your .vimrc file in your root directory.
If you are not in your root directory or are unsure just type
Fix Formatting and figure out startup script.
Setup a bitcoin wallet. You can find a list of available wallets at https://bitcoin.org/en/choose-your-wallet. I decided to https://www.coinbase.com to start.
Sign up for a bitcoin pool. A comparison of mining pools can be found at https://en.bitcoin.it/wiki/Comparison_of_mining_pools. I found this a bit overwhelming so I decide to start with Slush's pool, (https://mining.bitcoin.cz), as a few tutorials were using it. This video contains some info on setting it up. https://www.youtube.com/watch?v=blDhGFTGuhU
ssh into your raspberry pi
Pull down any updates to any packages you have currently installed, $ sudo apt-get update
Install the updates you just downloaded, $ sudo apt-get upgrade
(?<=#)[^{\}]* |
var resizeTimer; | |
$(window).on('resize', function(e) { | |
clearTimeout(resizeTimer); | |
resizeTimer = setTimeout(function() { | |
// Run code here, resizing has "stopped" | |
}, 250); |
https://www.reddit.com/r/git/comments/48sngr/how_can_i_set_up_a_local_git_repo_with_multiple/ |