Skip to content

Instantly share code, notes, and snippets.

@alexwlchan
alexwlchan / README.md
Created December 10, 2015 08:33
drangReader – Python scripts for a simple RSS reader

drangreader

This is a set of scripts for aggregating RSS feeds. It's based on a script originally written by Dr. Drang: http://leancrew.com/all-this/2015/11/simpler-syndication/

Installation

Download all the files from this Gist. Put them all in a directory, create a virtualenv and install requirements:

@tuxfight3r
tuxfight3r / 01.bash_shortcuts_v2.md
Last active May 23, 2024 16:51
Bash keyboard shortcuts

Bash Shortcuts

visual cheetsheet

Moving

command description
ctrl + a Goto BEGINNING of command line
@manveru
manveru / pong.go
Created April 26, 2010 18:52
A simple game of Pong written in Go.
package main
import (
"sdl"
"math"
"time"
"rand"
"flag"
"fmt"
)