Jay Z
Story of a champion. Sorry I’m a champion.
Story of a champion. Sorry I’m a champion.
If you saw my checkpoint from a few weeks ago, you’ll see that I am progressing in the general direction that I had hoped when I started out in January. I just booked a trip to Vegas with a few buds, which means pool exposure just went up 1000%.
Fortunately the trip is just over 3 months away, which is the perfect amount of time to harden down the fitness regime, set some specific goals – and focus on the prize.
Diet
I saw some results with the visceral fat diet that I was on for about a month. I shed between 5-10 lbs. This diet is not practical for the long term as it doesn’t involve any sugar (fruit included, even as strict as no root vegetables, carrots, beets, potatoes, etc). My new focus is to eat well constantly, save for 1 meal a week.
To be successful at this, I have to maintain proper portions. Generally this is only a problem at dinner, but breakfast I can get a little out of hand with the Kashi GoLean Crunch and Yogurt. I’m going to continue to measure my breakfast portions (1/3 C rolled oats before cooking and 1/4 C egg whites, or 1/2 C Kashi with enough yogurt to cover it).
My protein intake has been pretty good. I’ve been having egg whites for breakfast every morning, 2 protein shakes throughout the day, a can of tuna, and 1/2 a chicken breast. I’m not going to change anything here.
I’ve been really good with my alcohol intake. Aside from a glass of wine here and there I have only had 2 ‘drinking’ nights since New Year’s day. This will continue aside from my ‘planned cheats’.
Planned Cheats
Fitness
Weights – I have been extremely happy with my weight lifting at the gym, and there is not much I want to change here. I am pushing myself more and more in terms of load, and only want this to increase.
Cardio – My cardio has fallen over the last month. Previously I was doing interval training 2-3 times a week. My current goal for cardio is to go 3 times in addition to my 6 day weight lifting cycle:
Size/Weight
I’m currently floating between 225lbs and 230lbs. I want to get to 215lbs by June 7th (90 days from today). I will be posting pictures probably tonight of my current progress to date, for bi-weekly trend comparison. This should bring out the definition I’m looking for in my abs, and also get rid of excess fat on my love handles (still got ‘em) and chest.
Stay tuned!
Shendy.
It’s been a while since I’ve written a post. Twitter has pretty much killed my need for blogging. Check me out there for more recent updates.
I did want to take some time (and more than 140 characters) to update my progress thus far. I’m back to ‘Vegas Shape’ as I’m calling it – the shape I was in last June went I went to Vegas with the boys. I have been going to the gym 6 days a week now, actually incorporating a Saturday workout for the first time in forever for the last 4-5 weeks. I am very happy with how the gym is going. My arms, chest and shoulders are starting to get more defined (and bigger hopefully), and most importantly – I can start to see those “abdominal muscles” I’ve heard so much about.
Current weight: 223.5 1/2 lbs – My lowest in at least 10 years. My goal is 215 by mid-April.
Diet
Improvements/Goals
As soon as I charge the batteries in my camera, I will take some progress pictures. I’m very happy with how far I’ve come, but have a lot further to go.
That’s it for now – I’m off to the lake for a poker tourney with the boys, some Prime Rib a la Brandon Boone, and some delicious chicken wings. Cheat meal? I think I deserve one.
Shendy.
Put me anywhere on God’s green earth,
I’ll triple my worth.
When working with a DataSet object, I got this error.
“Failed to enable constraints. One or more rows contain values violating non-null, unique, or foreign-key constraints.”
Talk about annoying – this took me the better part of an hour and half to figure out where this error was coming from. Quite descriptive if you ask me <rolling eyes>. It’s as useful as this:
As with any bug the more information you can get on it – the better. The code I put together thanks to a tip from Roy Osherove’s Blog gets into the DataSet object to see which column is actually throwing the error.
foreach( DataTable table in dataSet.Tables)
{
if (table.HasErrors)
{
foreach ( var error in table.GetErrors())
{
if (error.HasErrors)
throw (new Exception( error.RowError));
}
}
}
This produced a much more descriptive error that allowed me to track down the problem:
Shendy.
I’m doing the best I ever did.
I’m doing the best that I can.
My food for thought’s so hot, it gives you dudes ulcers.
Since I started using WordPress in January/09, the whole permalinks thing has confused me – mainly because I didn’t spend the time to implement it correctly, but also partly because their documentation is confusing.
I dedicated some time today (ended up taking 10 minutes), to figure this out.
The default for WordPress URLs is http://www.iamshendy.ca?cat=10, or http://www.iamshendy.ca?p=12. This doesn’t fair well for users that want to access your site directly and can’t remember what “cat” is, or which number “p” was supposed to be set to. More importantly – it prevents search engines from better indexing your content. If a link within your site appears as http://www.iamshendy.ca/fitness/ – a user will have a better chance of remembering it, and a search engine can now index the ‘fitness’ keyword for your site.
With the intro out of the way – here’s a few tips to consider while following through WordPress’ documentation
which according to their example – looks like it would work:
![]()
But on fact does not – you actually have to use the tags provided.
Hope this helps you out – email me if you have any questions.
Shendy.