Wednesday, August 25, 2010

Ronnie Coleman Soundboard

Love Ronnie Coleman?

Download the "Ronnie Coleman Soundboard" for Android mobile phones and you can listen to your favorite Ronnie Coleman Quotes ALLDAY.

also set your favorite quotes as call/notification tones.

Thursday, November 5, 2009

My broken headphones



So my headphones broke after a few months of using them. These headphoenes are the V-moda Vibe duo
(http://www.v-moda.com/collection/modaphones/vibe%20duo.aspx)
After doing some research about getting another pair I came along this review. Keep in mind that my headphones also broke on the right side.

When My first set of Vibe Duos stopped working, I was unhappy. The sound simply stopped coming out of the right ear.

I realized it was because the "high quality" fabric-covered cable was fraying internally right where the cord connects to the jack that plugs into the phone. when I jiggled it, I could get intermittent sound.

So I returned them to V-Moda and got a free replacement set. After all, they sounded great.

But the second pair broke in EXACTLY the same fashion within 3 months.

So I had them replaced again, free of charge under warranty.

Guess what happened.

That's right, third pair broke in identical fashion, perhaps 3.5 months this time.

So I got a FOURTH replacement pair and sold them on Ebay.

Never Again, I promised myself.

So there we go, as stated in the blog "Never Again"

Thursday, April 23, 2009

Lesson Learned

So since I am slacking at work someone had to refactor my code. Although the code that I wrote started from pretty much the beginning of my career.

I started writing this code and as functionality needed to be added I just added it to the module. I had modular code to a certain extent but used it in the wrong way. When a certain case hit I was using one module to do the other modules task. This made my code confusing for other developers.

Another big thing wrong with that code was that things could be extracted. While programming classes are made to do a certain task, and that task alone. I was making the class do several different things which could be extracted into their own classes.

The lesson learned here is keep my code modular. Refactoring as I go.

The bad habit that I had was started out with a modular design and just adding functionality to classes as those functions were needed. I need to learn to pull that functionality from the class and create new classes which can be used by my original class.

Thursday, April 2, 2009

Back from Vacation

So I went on vacation. Took a break from school work, and work.

It was a good break from everything, I think I really needed that vacation cause I just might be over working myself. The three hour time difference is small but I can actually notice that I am more tired than normal. Catching up on school work and work work is rough with having to work at the restaurant. Cooking at the restaurant after a two week break is kind of rough as well, having to get used to being in a cloud of smoke just sucks.

Back to the same old routine now.

Another thing I noticed is that a lot of the fixes I had done prior to my vacation were not correctly done. I need to start looking into the correct ways to implement my code. I should already know these things but I am still missing them. Taking more care when doing my work might take a little more time but will help me in becoming a valuable asset to any company that I may work for. Plan to read more technical books to learn how to program better. Just have to find free time to do things such as read.

Back to my endless nightmare known as life.

Thursday, March 5, 2009

Back to hacking.

So my task of researching DEM's is put on hold now. Back to hacking. 

I think it was good that I took a break and my brain had time to settle.  Can't wait till i quit the restaurant and can have free time to do more work related things.  I want to make time to do side projects on my own and I want to make more time to read.

The price of my time is currently set at $1500. Is it worth it?  Am I going to be able to survive without that extra income? 

...

Always weighing on my mind.

Tuesday, February 17, 2009

SwingWorker

While researching my first algorithm I came across SwingWorker which is my first step I've taken into threaded applications.

A summary of SwingWorker:
SwingWorker is designed for situations where you need to have a long running task run in the background thread and provide updates to the User Interface when done, or still processing.

Any subclass of SwingWorker must implement the doInBackground() method to perform the background computation.

The workflow of SwingWorker:
1. Current thread
The Execute() method is called on this thread.
(schedules the SwingWorker on the worker thread)
2. Worker Thread
The doInBackground() method is called.
3. Event Dispatch Thread
Invokes the process() and done() methods here and notifies and PorpertyChangeListeners on this thread.

Use at work:
We are using the SwingWorker to make a calculation that deals with the rendering of the graphics which does take some time, so that is why SwingWorker was used in this case.

Just something I learned.
Here is the javadoc
https://swingworker.dev.java.net/nonav/javadoc/index.html

Thursday, February 12, 2009

New Task

So my boss is letting me try a different type of work...

Recently at work I've been "hacking" so they call it, just writing code to do a certain thing (which I still need work on). But now I am going to start looking into algorithms and analyzing outputs from different types of algorithms.  I got an "A" in my data structures and algorithms class so maybe algorithms is what I might be interested in.

My approach is going to be research the two data sets first, before even looking at the algorithms, then look at the implementations.