Skip to content

Instantly share code, notes, and snippets.

@visualrobots
visualrobots / index.html
Created July 26, 2018 09:53
particles.js demo
<div id="particles-js"></div>
<script>
/* -----------------------------------------------
/* Author : Vincent Garreau - vincentgarreau.com
/* MIT license: https://opensource.org/licenses/MIT
/* Demo / Generator : vincentgarreau.com/particles.js
/* GitHub : github.com/VincentGarreau/particles.js
/* How to use? : Check the GitHub README
/* v2.0.0
/* ----------------------------------------------- */

tmux cheatsheet

As configured in my dotfiles.

start new:

tmux

start new with session name:

## Modified commands
alias diff='colordiff' # requires colordiff package
alias grep='grep --color=auto'
alias more='less'
alias df='df -h'
alias du='du -c -h'
alias mkdir='mkdir -p -v'
alias nano='nano -w'
alias ping='ping -c 5'
@visualrobots
visualrobots / tumblr-photo-ripper.rb
Created October 10, 2016 08:48 — forked from jamiew/tumblr-photo-ripper.rb
Download all the images from a Tumblr blog
# Usage:
# [sudo] gem install mechanize
# ruby tumblr-photo-ripper.rb
require 'rubygems'
require 'mechanize'
# Your Tumblr subdomain, e.g. "jamiew" for "jamiew.tumblr.com"
site = "doctorwho"
@visualrobots
visualrobots / export_pinboard.py
Created August 26, 2016 07:29 — forked from dlo/export_pinboard.py
Export all Pinboard.in bookmarks with a specific tag.
#!/usr/bin/env python
"""
This script is designed to generate a simple HTML file with _all_ of your
Pinboard.in bookmarks.
You should edit the `username`, `password`, `bookmark_filename`, and `tag`
variables.
Requirements:
.