To get a Learners license:
- Pass DATA test -> done
- Pass the Pass the DMV permit exam
- Documentation 3.a Primary identification (certified copy) -> birth certificate 3.b SS card
#!/bin/bash | |
# By Juan Riaño | |
# juanriano.com | |
# Feel free to use as you please, a thank you card (or email) will be appreciated, | |
# but don't hold me responsible for whacking your grandma's pc. | |
# This script standirizes file names, it is meant mostly for mp3s or pictures, just | |
# copy this script inside the folder where the files are located and run it. |
apt-add-repository -y ppa:aims/sagemath | |
apt-get update | |
apt-get install sagemath-upstream-binary |
//Class to repesent a playing-card | |
// Any card has a SUIT (Clubs, Diamonds, Hearts, Spades) | |
// Any card has a RANK (2, 3, .. 19, Jack, Queen, King, Ace) | |
// | |
public class PlayingCard implements Comparable | |
{ | |
//Instance Variables | |
private CardSuit suit; | |
private CardRank rank; | |
$ sudo su gdm -c "gconftool-2 --set /desktop/gnome/sound/event_sounds --type bool false" |
sudo add-apt-repository ppa:nilarimogard/webupd8 | |
sudo apt-get update && sudo apt-get install pulseaudio-equalizer |
ahang_ 10:41pm via web | |
Virus just hacked my computer and is now taking | |
over. Fuck. | |
JakeHerbs 10:26pm via Twitter for BlackBerry® | |
Tackling a computer virus all night and at 3.25am | |
guess who won hahaha stupid virus | |
Ihasafunny 10:23pm via Twitter for iPhone | |
Emma Watson is the wallpaper on my computer. |
# list processes that use sound and get their ids | |
lsof | grep pcm | |
# Now let's kill those processes | |
kill -9 id1 id2 id3 | |
# Now let's kill pulseaudio | |
pulseaudio --kill | |
# Pulseaudio restarts automatically, but | |
# to make sure lets send the start command | |
pulseaudio --start |
# list processes that use sound | |
lsof | grep pcm | |
# Now let's kill those processes | |
kill -9 id1 id2 id3 | |
# Now let's kill pulseaudio | |
pulseaudio -k | |
# Let's check that pulseaudio is gone | |
pulseaudio --check |
lsof | grep pcm | |
kill -9 id1 id2 id3 |