- Do you have an Github account? If not create one.
- Install required tool.
- Latest Git Client.
- gpg tools.
# Ubuntu
sudo apt-get install gpa seahorse
| a:hover { | |
| /* border glow effect on hover */ | |
| box-shadow: 0px 0px 20px #000; | |
| filter:progid:DXImageTransform.Microsoft.Glow(Color=black,Strength=20); | |
| } |
| #!/usr/bin/env bash | |
| usage() { | |
| cat <<HERE | |
| usage: git make-remote <project-name> | |
| or: git make-remote <path/to/project-name> | |
| HERE | |
| } | |
| GIT_SERVER="git.zikes.me" |
# Ubuntu
sudo apt-get install gpa seahorse
| _complete_ssh_hosts () | |
| { | |
| COMPREPLY=() | |
| cur="${COMP_WORDS[COMP_CWORD]}" | |
| comp_ssh_hosts=`cat ~/.ssh/known_hosts | \ | |
| cut -f 1 -d ' ' | \ | |
| sed -e s/,.*//g | \ | |
| grep -v ^# | \ | |
| uniq | \ | |
| grep -v "\[" ; |
This is a step-by-step tutorial for hosting your website under your domain on IPFS, from zero, on a DigitalOcean Ubuntu 16.04.3 x64 Droplet (i am using the $10 variant with 1GB RAM).
Log in as root.
First, make sure the system is up to date, and install tar and wget:
basic script to extract any email addresses from a website that can be found
get all emails you can find from this page:
http://zombierecords.com/staff
Principles of Adult Behavior
| <!-- using the truncate filter --> | |
| {% for post in site.posts limit:10 %} | |
| <h2><a href="{{ post.url }}">{{ post.title }}</a></h2> | |
| <span class="post-date">{{ post.date | date: "%B %d, %Y" }}</span> | |
| {% if post.content.size > 2000 %} | |
| {{ post.content | truncatewords: 300 }} <!-- bad! content gives you rendered html and you will truncate in the middle of a node --> | |
| <a href="{{ post.url }}">read more</a> | |
| {% else %} | |
| {{ post.content }} | |
| {% endif %} |
| #!/usr/bin/env bash | |
| DIR=$(dirname "$(readlink -f "$0")") | |
| FILES="$DIR"/files/ | |
| mkdir -p "$FILES"/ | |
| if [ ! -f "$FILES"/sandbox-ca.crt ]; then | |
| echo '########################################' |