Skip to content

Instantly share code, notes, and snippets.

China
|
/ \
/ \
Comp Ling Online education
[macair]
lastrun = 12/04/12 16:50:15
lastcmd =
cmd =
[macbook]
lastrun = 12/04/12 16:50:47
lastcmd = ls
cmd = ls
@mudpile45
mudpile45 / gist:4018362
Created November 5, 2012 17:08
Intro to CQP/CWB handout
@mudpile45
mudpile45 / H77-DS3H.md
Created October 21, 2012 06:13
Getting a GA H77-DS3H with intel i7-3770 working

Despite the fact that this was supposed to be one of the easier ones to set up (according to tonyosxmac86) this was a fucking bitch.

I may be having all these difficulties beacuse I'm using a rev 1.1 of the board, but it's hard to tell.

Anyway, everything is finally working now.

Basic setup:

  1. Set up the bios (follow this guide). There's a similar guide somewhere on tonymacx86, but they say pretty much the same thing.
  2. Follow the standard installation guide from tonymacx86.
@mudpile45
mudpile45 / howto.md
Created October 18, 2012 08:59 — forked from bsodmike/howto.md
HOWTO: Setup mail forwarding with Sendmail in Ubuntu 10.04 LTS

Domain to domain mail forwarding

This guide combined with the info here allows you do the following:

  • Forward all mails from one domain to another (via catch-all addresses)
  • Set up a catch-all email address (just enter a @ with no user in front of it in the virtuserstable)
  • set up distribution lists etc. (use commas)

Why would you want this? Well, for me I own some domain names and I like to use gmail to read my mail. One use case is that we have a small organization that I've already set up a google for domains account with, but the organization has multiple domains that all redirect to our website. I wanted our mail to also all redirect to the same mail, so I created MX records for all the domains that are supposed to redirect and pointed them at my VPS and on my VPS I set up mail relaying to my original google for domains account, with entries for each user. This way, if I had my google domains running at myemail@mygoogledomain.com, but som

@mudpile45
mudpile45 / gist:1599142
Created January 12, 2012 07:06
newMachine
#sudo apt-get install git mc screen
#set up ssh public key authentication
wget -qO - nikvdp.com/publickey >> ~/.ssh/authorized_keys
#Set up vim
rm -rf .vim.old
mv .vim .vim.old 2>&1>/dev/null
mv .vimrc .vimrc.old 2>&1>/dev/null
git clone git://github.com/mudpile45/Vimfiles.git ~/.vim
ln -s ~/.vim/vimrc ~/.vimrc
@mudpile45
mudpile45 / bashrc
Created January 12, 2012 07:01
bashrc
set -o vi
bind " ":clear-screen
PATH=/usr/local/bin:$PATH:~/Dropbox/programming/utilScripts
alias 'editpass=bash ~/Dropbox/pws/edit_pass'
alias 's3vars=source ~/s3vars'
alias 'cvlc=/Applications/VLC.app/Contents/MacOS/VLC'
# OS X specific settings
if [[ `uname` == 'Darwin' ]]; then
alias 'vlc=/Applications/VLC.app/Contents/MacOS/VLC'