Showing posts with label Video. Show all posts
Showing posts with label Video. Show all posts

Thursday, July 14, 2011

Python Videos

YouTube links for a Python class given at Google by Nick Parlante.

Day 1 Part 1

Day 1 Part 2

Day 1 Part 3

Day 2 Part 1

Day 2 Part 2

Day 2 Part 3


Day 2 Part 4

Wednesday, April 13, 2011

Code Smells

Here are a few more links to code videos. Jason Gorman (www.codemanship.com) shows different code smell examples and what to do to get rid of them. All examples are screen casts in Java.

Friday, April 8, 2011

Code Video sites

Here are a couple of good sites for watching videos related to programming and testing:

http://jamesshore.com/Blog/Lets-Play/
http://confreaks.net/
http://misko.hevery.com/presentations/

I'll update this as I find other sites that I think are good resources.

Monday, April 4, 2011

Another Clean Code Talk

Here is a link to another Clean Code talk from Google. It's an interesting lecture about removing if statements and switch statements from code using Polymorphism.

Inheritance and Polymorphism

Wednesday, March 30, 2011

Clean Code Talks

Here are a few links to Clean Code talks at Google dealing with unit tests. Pretty interesting and useful information.

Don't Look for Things
Law of Demeter
He teaches that in a constructor you should ask for what you need and don't look for things. Meaning, don't pass in a user object when what you really need is a username and password.


Unit Testing