The sony piiq head phones sound awesome for for a low price tag
- www.piiq.com
- twitter.com/JoshHighland
- Contest ends July 1, 2010
{ 3 comments }
The sony piiq head phones sound awesome for for a low price tag
{ 3 comments }
Are you annoyed with your wordpress install asking you for your FTP cradentials everytime you try to upgrade a plugin? I know I was. Thankfully, there’s a simple solution which will save the FTP login (username/password/server) so WordPress stops asking you for them. Here’s how you do it.
define("FTP_HOST", "localhost");
define("FTP_USER", "yourftpusername");
define("FTP_PASS", "yourftppassword");Once you’ve made that edit, save the file and voila! No more punching in your ftp username and password all the time.
{ 1 comment }

In my quest to embrace all things geek, I’m surprised that is has taken me so long to fall in love with this staple of geekdom. I am of course talking about the Rubiks cube.
I never had a rubiks cube growing up, sure I played with them but never at any length of time, or the intention of solving one.
The company that I currently work for had a developers conference and had some rubiks cubes with the company logo printed on them. After the conference, some of the left over cubes made their way into the hands of @BoringGeek, @LMajano, and myself. Nothing could have been crueler then handing some engineers a puzzle like a rubiks cube. I’m not going to lie, I physically lost sleep trying to solve the cube, but I had fun doing it.
I eventually broke down and started doing research on the rubiks cube and how to solve it. The more I learned about the cube, the more interested in it I became. I realized that solving the cube required pattern recognition and the implementation of algorithms through a series of motions. It was at that point in my mind that my computer science mindset kicked in and I started to make the cube do what I wanted instead of being surprised by what happened. I was in control of feeding the variables into the function and the function would produce a predictable and consistent result.
I can now solve the cube consistently, and typically around 3 minutes, a far cry from the speed cubing champions of the world, but I’m still proud of myself and continue to have fun solving the cube.
{ 0 comments }

If you get the error “warning:comparison between pointer and integer”, odds are you are thinking right, but implementing your comparison wrong.
ur doin it wrong
if(count == 2) {
the right way
if([count intValue] == 2) {
{ 3 comments }