Skip to content

Instantly share code, notes, and snippets.

View briang's full-sized avatar

brian greenfield briang

  • Newcastle, UK
View GitHub Profile
@genehack
genehack / get-twitter-mutes.pl
Created October 20, 2014 13:09
Gets the list of users you have muted on Twitter.
#! /usr/bin/env perl
# NOTE: in order to use this, you need to fill in the various tokens in the constructor at the bottom!
package Net::Twitter::Role::Mute;
use Moose::Role;
use Net::Twitter::API;
base_url 'apiurl';
authenticate 1;
@sloria
sloria / bobp-python.md
Last active April 17, 2025 08:09
A "Best of the Best Practices" (BOBP) guide to developing in Python.

The Best of the Best Practices (BOBP) Guide for Python

A "Best of the Best Practices" (BOBP) guide to developing in Python.

In General

Values

  • "Build tools for others that you want to be built for you." - Kenneth Reitz
  • "Simplicity is alway better than functionality." - Pieter Hintjens