This was a hard week. I'm not sure when it started to go down hill but I know by Wednesday evening I was out of it mentally and physically. I know I wasn't sleeping well and I guess the added stress of the divorce paperwork put me over the edge. I had lost all vitality and mentally I became easily distract.. Squirrel! Hm? Oh right, Anyway if you're wondering what it's like to deal with depression there is a TED talk which describes it well.
So, what got me out of the funk you ask? Well Wednesday night I prayed, something I had gotten out of the habit of doing. I basically said that I'm really struggling and asked for a lifeline –someone to talk to because I didn't know who to contact (I blame this on the mental mush, I've had a number of friends tell me I can call and chat any time)– and I guess I also wanted someway to know that God was really listening.
06 February 2016
31 January 2016
Sep159
I know it's been some time since I posted last, but not much has really happened. I feel like all I've done is run and recover and I mean that literally. Back in November I was enticed by a friend to run a marathon. This is something I've wanted to do for some time now and with everything going on I needed a change and a goal, so I signed up. Now this isn't my first sporting event I've signed up for but it's been years since feeling like I could even attempt something of this magnitude and even then I wasn't sure I could do it.
This month I've run for 10 hours and 55 minutes completing 63.7 miles and burning almost 8,000 calories. The marathon takes place at the end of May in Utah. At this rate I should be able to finish without much trouble, but right now it feels like a constant battle and a lot of recovery. Just yesterday I ran 12 miles and tomorrow I'll probably run about 6 miles. I never thought I would say this but a 1 mile run is a piece of cake, two miles isn't really even that bad. Crazy right! I guess with all things in perspective 1 mile compared to 26.2 miles really isn't a lot.
This month I've run for 10 hours and 55 minutes completing 63.7 miles and burning almost 8,000 calories. The marathon takes place at the end of May in Utah. At this rate I should be able to finish without much trouble, but right now it feels like a constant battle and a lot of recovery. Just yesterday I ran 12 miles and tomorrow I'll probably run about 6 miles. I never thought I would say this but a 1 mile run is a piece of cake, two miles isn't really even that bad. Crazy right! I guess with all things in perspective 1 mile compared to 26.2 miles really isn't a lot.
17 January 2016
Sep145
It's been a couple of busy weeks. Although I'm realizing I can't remember half of what happened off the top of my head. I may have to start doing this once a week, maybe even every few days. But I think for now it will be a weekly update; and as this process of journaling becomes more accustomed –causing either the posts to be longer or written faster– I will look into updating more often.
Well since today is the freshest in my mind I'll start there. Hmmm.. on second thought I suppose it's better to start with what lead up to today's events. So I'll be starting with what happened this last week.
Well since today is the freshest in my mind I'll start there. Hmmm.. on second thought I suppose it's better to start with what lead up to today's events. So I'll be starting with what happened this last week.
03 January 2016
Sep131
The past year has been... well, let's say the events in my life have changed things drastically. And today I stand looking at a closed door, struggling to find hope and encouragement; contemplating what I'm doing and why I should bother pushing forward. Alexander Graham Bell once said, “When one door closes another door opens, but we so often look so long and so regretfully upon the closed door, that we do not see the ones which open for us.” and he's right. I've had doors close before and it was challenging. Sometimes I've even seen the new ones open, but this, this is different. Maybe it's not, maybe I just want it to be; but, for arguments sake, right now, as I'm writing this, it's different.
I'm sure by now you're thinking, "Enough with the thoughts and emotions, what happened?" Well, the reason I'm telling this is to get those emotions and thoughts out of my head; call it therapy. If you don't like it you don't have to read it. But, just to warn you from this point forward the blog will be about me blabbing about my life.
I'm sure by now you're thinking, "Enough with the thoughts and emotions, what happened?" Well, the reason I'm telling this is to get those emotions and thoughts out of my head; call it therapy. If you don't like it you don't have to read it. But, just to warn you from this point forward the blog will be about me blabbing about my life.
08 March 2013
TFTP Server in Snow Leopard
I have an old WRTP54G from Vonage and wanted to unlock it so I can setup my own VoIP with Asterisk. But in order to do that the instructions indicated I needed to have a tftp server setup using windows and that just looked like a lot of setup/work. So I looked at how to do it on a Mac and this is what I found.
You can start and stop tftp using the following commands
sudo launchctl load -F /System/Library/LaunchDaemons/tftp.plist
sudo launchctl unload /System/Library/LaunchDaemons/tftp.plist
tftp files are stored in /private/tftpboot
Now That was Easy!
I did however still need a windows vbox to run cyt35.exe and I don't have the code or know what it does so I couldn't hack it from the mac. Maybe I'll dig into it some day.
TFTP [source]
WRTP54G Unlock [soruce]
You can start and stop tftp using the following commands
sudo launchctl load -F /System/Library/LaunchDaemons/tftp.plist
sudo launchctl unload /System/Library/LaunchDaemons/tftp.plist
tftp files are stored in /private/tftpboot
Now That was Easy!
I did however still need a windows vbox to run cyt35.exe and I don't have the code or know what it does so I couldn't hack it from the mac. Maybe I'll dig into it some day.
TFTP [source]
WRTP54G Unlock [soruce]
11 January 2013
Raspberry Pi
A number of moths ago I purchases a Raspberry Pi. It is basically a computer smaller than a 3x5 card with a price around $35. You can find out more about it and the number of amazing things they are capable of at raspberrypi.org.
I may have to get a few more...
As for the ONE that I do own I've followed a few steps and set it up with XBMC (which is a nice little media center). You can read how to do it at raspbmc.com.
01 December 2010
Terminal and PATH
After installing the latest MySQL for education/testing to my Mac I noticed I still needed to add the mysql/bin directory to my $PATH. I thought okay this should be simple to do right? But, following a mind numbing searching through a bunch of .shell_name_profile_info files in my home directory I became frustrated. So where is the correct place to store a new path for just installed software (assuming it didn't do it for me?)
The final answer should be simple right? Well, (and I'm lying here) it depends, who do you want to have easy access to the new path? For instance if you use su - and you add the path to just your stuff your out of luck when root or any other user is trying to get things started.
Info for Mac OS X 10.6:
I like TextMate but vi is free and included. (info on using vi)
Strictly You PATH:(or the person you are logged in as)
vi ~/.profile
edit or add if it's not already there
export PATH="/path/you/want/to/add:$PATH"
and save the file.
All User PATH:
go to
cd /etc/paths.d
make a new file
sudo vi mysql(SoftwareName)
enter your new path
/usr/local/mysql/bin
and save the new file
And because I'm still somewhat new to this if anyone has info on the proper place to setup PATH just for root please let me know and I'll add it in. Thanks.
The final answer should be simple right? Well, (and I'm lying here) it depends, who do you want to have easy access to the new path? For instance if you use su - and you add the path to just your stuff your out of luck when root or any other user is trying to get things started.
Info for Mac OS X 10.6:
I like TextMate but vi is free and included. (info on using vi)
Strictly You PATH:(or the person you are logged in as)
vi ~/.profile
edit or add if it's not already there
export PATH="/path/you/want/to/add:$PATH"
and save the file.
All User PATH:
go to
cd /etc/paths.d
make a new file
sudo vi mysql(SoftwareName)
enter your new path
/usr/local/mysql/bin
and save the new file
And because I'm still somewhat new to this if anyone has info on the proper place to setup PATH just for root please let me know and I'll add it in. Thanks.
Subscribe to:
Posts (Atom)