May
20
2012
0

Beginners Head-fi

Here are my first “high end” in-ear monitors. These Shure SE535 IEMs came my way from a fellow Audiokarma member. They are in great shape according to the original owner because they had recently been given to him as a replacement for an earlier model (maybe the SE530?). Being in chicago and only a few miles from Shure’s Chicago headquarters has it’s advantages. As the story goes, he walked into Shure after a

image

Written by Joe in: Uncategorized |
May
01
2012
0

Micro Seiki MB 12 Turntable

There is not a lot of info available online on the Micro Seiki MB 12 Turntable. Since I will (hopefully) be setting one up for my sister shortly, I did some research. I found some photos of the deck and wanted to share them for prosperity.

More photos and a link to the manual after the jump: (more…)

Written by Joe in: Uncategorized |
Feb
14
2011
16

Chi Flatiron Repair – Fix it Yourself – User Photos

My previous page seems to have generated quite a buzz with folks looking to repair their Chi Flat Iron. If you have not seen my original take-apart and repair guide, look here.

Here are some reader submitted photos of their Chi work. (more…)

Written by Joe in: Uncategorized |
Jun
10
2010
0

passwordless SSH on osx

Use at your own risk people!
For user:
ssh-keygen -t dsa
cat ~/.ssh/id_dsa.pub | ssh example.com ‘cat >> ~/.ssh/authorized_keys; chmod 644 ~/.ssh/authorized_keys; cat ~/.ssh/authorized_keys’
For Root:
sudo ssh-keygen -t dsa
sudo cat /var/root/.ssh/id_dsa.pub | ssh root@example.com ‘cat >> ~/.ssh/authorized_keys; chmod 644 ~/.ssh/authorized_keys; cat ~/.ssh/authorized_keys’
Written by Joe in: Uncategorized |
Jun
07
2010
0

Bash script to break apart a Mastery Manager Export

# This code is only for use under adult supervision. Proceed at your own risk. :)
#!/bin/bash
ORIGIFS=$IFS
# set $IFS to end-of-line
IFS=`echo -en “\n\b”`
if ( !$1 )
then
echo ‘usage: batch.command Name_Of_MM_Export_To_Process’;
break;
fi
for l in $(cat $1 )
do
if `echo ${l} | grep  ”Student” 1>/dev/null 2>&1`
#this line is the header, start a new output file
then
file=$(($file+1))
echo $l > $file.txt
echo -n ‘.’
else
# this line is not a header, write it to the current file
echo $l >> $file.txt
fi
done;  # end the loop
# return the original IFS
IFS=$ORIGIFS
plue a little one liner to rename the files using line 2, column 2 as the title.
n=0 ; for i in $(ls) ; do mv $i $(cat $i | head -n 2 | tail -n 1 | cut -d, -f2 | tr ‘ ‘ ‘_’ | tr ‘/’ ‘-’ | tr -d ‘”‘)–$n.txt ; n=$(($n+1)) ; done
Written by Joe in: Uncategorized |
May
18
2010
1

SSRS Expressions: Scope and Commenting Tips

In SSRS, Scope is confusing as hell. Below is an example of adding comments to SSRS expressions and how to probe scope. Adding a line like:

iif(inscope(“matrix1_dept”),”[d]“,”")

will display a “[d]” in cells that are in the scope of group “matrix_dept”, and nothing if it is outside that
scope. By adding multiple scope tests, you can see where cells lie in the scheme of things.
Written by Joe in: Uncategorized | Tags: , , , , , , ,
Jun
24
2009
0

Gaming setup


Just wanted to make note of my setup. it is not an amazing rig or anything, but it is not bad considering my “budget”. Click more for a breakdown of the gear: (more…)

Written by Joe in: Uncategorized |
Jan
02
2009
0
Sep
24
2008
1

Custom Logo Inside Alien Prison Break

Hello gamers, my name is Joe. And yes, that is my face on that poster INSIDE that game. I am from the UltimateArcade.com team and I am really excited to tell you about our latest release. At Ultimate Arcade we are working hard to provide you with the best gaming experience possible. Today we have added yet another reason why Ultimate Arcade is simply the best place for online gaming.

Ultimate Arcade’s latest game release, Alien Prison Break is not only a great game, it is also a fantastic opportunity for webmasters. “How so?” you ask. Let me tell you…

(more…)

Written by Joe in: Uncategorized | Tags: , ,

Powered by WordPress | Aeros Theme | TheBuckmaker.com WordPress Themes