Skip to content

Instantly share code, notes, and snippets.

As part of learning guitar, I'm finding Nirvana songs to be pretty accessible both on acoustic and electric. And because I know most of these songs pretty well, it might be a fun mini task to try to learn them. So below is a set list from their last show, which seems to have a bunch of Drop-D tuning songs at the end, which is handy for practice purposes. As I learn, I'll make notes of chord progressions etc below each one as a reference for myself as I work through them. Most can be played in Eb tuning, though in some cases the album versions vary.

Other non-Nirvana tunes are here.

1. My Best Friend's Girl

not studied yet

2. Radio Friendly Unit Shifter

Now Studying:

My current focus is on Nirvana songs, so I'll set them aside here Everything else, I'll keep here.

Fun Songs

  • Breaking the Girl, RHCP
  • My Friends, RHCP
  • Don't look back in Anger, Oasis
  • Hazy Shade of Winter, Bangles

Books read

2023

  • Kill Orbit, Joel Dane
  • Burn Cycle, Joel Dane
  • Cry Pilot, Joel Dane
  • Lincoln Highway, Amor Towles
  • Chip Wars
@1rick
1rick / weekly
Created November 17, 2013 05:56
generate weekly wordpress roundup list
#!/usr/bin/env python
"""a script for fetching posts from wordpress, and then autogenerating markdown files for end-of-week-posts."""
from __future__ import division, print_function
import xmlrpclib
import datetime
import os
from bs4 import BeautifulSoup
@1rick
1rick / file0.txt
Created August 28, 2013 03:32
Quickpost to Drupal via prepopulate module ref: http://qiita.com/1rick/items/df199d87762d34897d91
javascript:var nodeaddpath="http://www.example.com/fugu/node/add/article",d=document,w=window,e=w.getSelection,k=d.getSelection,x=d.selection,s=e?e():k?k():x?x.createRange().text:0,l=d.location,e=encodeURIComponent,title=""+d.title+"",body="> "+s+"\n\nFrom ["+d.title+"]("+d.location+")",url=nodeaddpath+"?edit[title]="+e(title)+"&edit[body][und][0][value]="+e(body);nourl=function(){w.location=nodeaddpath};a=function(){w.open(url,"quickpost","toolbar=0,resizable=1,scrollbars=1,status=1,width=424,height=570")||(l.href=url)};/Firefox/.test(navigator.userAgent)?"about:blank"==l?setTimeout(nourl,0):setTimeout(a,0):"about:blank"==l?nourl():a();;void(0);
@1rick
1rick / paraperma
Created August 21, 2013 10:44
Text Expander snippet for quick time-stamped paragraph permalinks. Decent for live-blogging when you don't want something that looks as shitty as a live blog.
<p name="%1H:%M">%clipboard <a href="#%1H:%M">¶</a></p>
<p><a name="%1H:%M"></a><a href="#%1H:%M" class="liveblog">%1H:%M</a> - %|</p>
@1rick
1rick / gist:4555401
Last active December 11, 2015 05:58
Asana bookmarklet
javascript: function trim12(str){ var str=str.replace(/^\s\s*/,''), ws=/\s/, i=str.length; while(ws.test(str.charAt(--i))); return str.slice(0,i+1);}location.href='mailto:x+2994000114462@mail.asana.com?SUBJECT='+encodeURIComponent(trim12('[Story idea] '+document.title))+'&BODY='+encodeURIComponent(trim12(document.title))+encodeURIComponent('\n\n'+location.href)+encodeURIComponent('\n\n%3E'+window.getSelection());
@1rick
1rick / post-wordcount.py
Created November 16, 2012 05:26
A script for fetching posts from wordpress, and then doing a wordcount. Modified from http://is.gd/pyDGSE
#!/usr/bin/env python
"""a script for fetching posts from wordpress, and then doing a wordcount. here i do it for a specific user, but it could be for all users. fill in username and password, domain, as well as the desired user to fetch,
as their name is displayed, as opposed to their username."""
from __future__ import division
from bs4 import BeautifulSoup
import xmlrpclib