Thursday, July 17, 2014

It's been too long since I've posted something, so here you go!

So I got a new job a while back and it's fantastic. But working 8-5 every day really cuts into my project time... I've been trying to hold off on posting projects until I've finished them, but I haven't had time to really do so, hence the lack of posting.

That said, I am proud to announce that I have abandoned this reasoning, because I'm tired of not postin things.

So I've updated the Game System modification page with something that I was working on a few months ago, that I just haven't gotten back to yet. 

A screen swap for my Game Boy Advanced

I've got to order a new screen for it because the one I had initially ended up being defective. Maybe next week... 

I do have a few more things I've been working on that I would like to get up here in the next few days/weeks. I just need time to do it lol. 

Monday, March 24, 2014

NES Repair page added

I've added a new page detailing the unusual repair of my original Nintendo. It's pretty cool so go read about it! It's in the side bar over there ----->
The link is here: or the drop down box ^^^^^ on mobile.

Sneak preview:

Sunday, February 9, 2014

New Stuff!

I got some new things and proceeded to modify them :) 
It's under my newly added Game System modification page, so check it out!
Here's a preview:

Thursday, February 6, 2014

A quick script

So I got this awesome Japanese Harry Potter audiobook and I ripped it in .m4a format accidentally, instead of .m4b, which would show up as a book on my phone instead of music.
Rather than re-rip the 10 discs I decided to simply rename them. This proved to be quite annoying in the Mac gui. You have to click the name, hit space, click the end of the line, change the extension, confirm that you want to change it... for every file...
I decided to take a more direct approach and use terminal. To rename in terminal you just move the file to the same directory and change the name. 
So it was something to the effect of:

mv 01\ Audio\ Track.m4a 01\ Audio\ Track.m4b

but doing it this way meant I had to manually change the number every time by holding the left arrow till I got to the number and then change it...

Obviously I had to automate this process, so I threw together a little bash script to do all this for me. 
<CODE>
#/bin/sh
V=1
while [ $V -lt 10 ]; do
echo renaming Number $V
mv 0$V\ Audio\ Track.m4a 0$V\ Audio\ Track.m4b &
let V=$V+1
done
if [ $V = 10 ]; then
while [ $V -lt 30 ]; do
echo renaming number $V
mv $V\ Audio\ Track.m4a $V\ Audio\ Track.m4b &
let V=$V+1
done
fi
</CODE>
This little beauty starts at 01 and changes the name of each of them, sequentially, until 29. 
This takes about .3 seconds per folder and worked flawlessly!
The tricky bit, that looks a little redundant at first, was to get it to count 01, 02, 03, etc... Which is why there is the check to see if it's 10 or less :)

I hope this does somebody good lol I love it!

Wednesday, January 29, 2014

A quik fix


So I was straightening up earlier and I found both halves of my old glasses. That may not sound like good news to you, broken glasses and whatnot, but to me it's a relief. I've run across bothpieces separately before, but this is the first time I've had both together.

I decided this would be a good opportunity to do some 'plastic welding' 
For those of you new to my blog, I mean of course, melting and manipulating the plastic with a soldering iron, not actual plastic welding.

Now I don't just burn things with my soldering iron, I have specific retired tips for my soldering iron that I use for this. Here's an example
Anyway, I rejoined the new pieces and I've got myself a new pair of repaired glasses!
Here's a few shots of the repairs:



And the finished pair, that I'm wearing now :)

Sunday, January 26, 2014

New page!

So I've started a new series of projects to improve my wifi signal. Being the cheapskate that I am (broke guy is more like it) I decided to improvise some antenna solutions for it, rather than buy a new adapter or router.
Anyway, I've added a new page for it that you can check out here or find the Cantenna page on the sidebar (drop down box on mobile) So go check it out!
Here's a little preview:


Saturday, January 18, 2014

It's been a while

Hey everybody! It's been a while! 
Sorry for the long lapse of silence, but I got a new job typing all day, so I haven't really felt like typing in a while lol Well, that and the new baby, she's such a cute little handful. 
But, I finally got a chance to do a few things today, so I figured I'd post 'em.
First off I made a neat little modification to my heatsink on the iMac hacking part II page. so go read that over there. 
Secondly, I got a new Bench 'pi for Christmas, but I haven't done much but put it in the old one's case:

And last but not least, I added a really nicely detailed repair of my NES console, which you can read about here.
I've got several more things I need to be working on, so when I do make some progress, you will be the first to know!