Lead Developer? Senior Developer? Junior Analyst? What does it all mean?
Well below is my heirarchy:
1) Developers
**UPDATE: Thanks to Eric Liu for the link!
20070225
Developer Heirarchy in a Development Team
20070224
JP Boodhoo's Nothin But .Net Bootcamp
How was the training?
- F*cking, f*cking, f*cking AWESOME!!... I forgot to have another f*cking right beside f*cking.
For those people who missed out, what do you have to say.
- You f*cking missed out!
I couldn't afford it.
- Sell drugs. Don't even bother with weed.... Go blow, or even meth
Would you go again?
- Without a doubt
What was your JP moment?
- Friday - JP was just freestylin, spittin, bustin out crazy OO madness from 5PM - 11PM.
What did you not like about the course?
- Sitting right beside IglooCoder , and right in front of crazy legz
How many pizza's did you eat?
- A lot
Would you (me, Jonas) use what you have learned at work?
- F*ck ya!
So in Python calculation would you have to implement to rate this experience
- Jonas + Nerding + NothinButDotNet bootcamp = happy happy happy ^ 8========D
Again, thanks JP for coming up to Edmonton!
20070209
LINQ - Explicit Query
This is for Justice Gray.
I had to watch ALL the movies. Took 5 hours, and DAMN it was worth it! I actually just wanted to see the credits!
[Test]
public void ShouldFindUsingLINQ()
{
List<Movie> movies = CreateMovie();
var results = from m in movies
from a in m.Actors
where a.FirstName == "Hannah" &&
a.LastName == "Harper"
select new {a.FirstName, m.Title, a.ScreenName};
foreach (var result in results)
{
Console.Out.WriteLine("{0} is an actress in the movie {1} and her screen name is {2}",
result.FirstName, result.Title, result.ScreenName);
}
/*Output
*Hannah is an actress in the movie 8 Inches and her screen name is Enduro Girl
*Hannah is an actress in the movie Assploitations 4 and her screen name is Hanna
*/
}
private static List<Movie> CreateMovie()
{
List<Movie> movies = new List<Movie>();
movies.Add(CreateMovie("8 Inches", "Some chick that wished she swallowed 8 inches of wang ",
CreateActor("Hannah", "Harper", "Enduro Girl")));
movies.Add(CreateMovie("Internal Cumbustion 10", string.Empty,
CreateActor("Evelyne ", "Foxy", "Evelyne"),
CreateActor("Jenna", "Haze ", "Jenna"),
CreateActor("Isabel", "Ice", "Isabel"),
CreateActor("Kid", "Jamaica", "Jamaica"),
CreateActor("Virginee ", string.Empty, "Virginee")));
movies.Add(CreateMovie("Assploitations 4", string.Empty,
CreateActor("Hannah", "Harper", "Hanna"),
CreateActor("Shayna", "Knight ", "Shayna"),
CreateActor("Lucy", "Lee", "Lucy"),
CreateActor("Lauren", "Phoenix ", "Lauren"),
CreateActor("Aurora ", "Snow", "Aurora")));
return movies;
}
private static Actor CreateActor(string firstName, string lastName, string screenName)
{
Actor actor = new Actor();
actor.FirstName = firstName;
actor.LastName = lastName;
actor.ScreenName = screenName;
return actor;
}
private static Movie CreateMovie(string title, string description, params Actor[] actors)
{
Movie movie = new Movie();
movie.Title = title;
movie.Description = description;
movie.Actors = AddActors(actors);
return movie;
}
20070206
20070204
eZed.ca
I busted out the plastic, and bought myself http://www.ezed.ca.
Now, you can hit this blog up with ezed.ca! Too bad some bastards are squatting on the .com & .net... Ah well.
Incase you are wondering what I am using to forward my www subdomain, I am using a FREE dns server. It is afraid.org. I have been using this thing for years, and it's kick ass! Don't even bother with those dyndns crap.
Woot Woot!




