Robots at UCF and more!!!
Thank You JT for letting me speak to your class.
Here is the PowerPoint:
http://www.onetug.org/DNN/Portals/0/member_files/2007_04_02_robot.ppt
Some other links we discussed.
Free converter for old versions of office to read the new file types:
http://www.microsoft.com/downloads/details.aspx?familyid=941b3470-3ae9-4aee-8f43-c6bb74cd1466&displaylang=en
A student asked how to get experience, I recommended volunteering for this group that creates and donates applications for nonprofit organizations.
http://www.nonprofitways.com/
Interview at Microsoft
http://channel9.msdn.com/ShowPost.aspx?PostID=19737
http://channel9.msdn.com/ShowPost.aspx?PostID=19187
Free font for VS.NET to make code easier to read
http://windark.net/blog/PermaLink,guid,918cc94f-1235-4d39-ba3d-07279c451d67.aspx (Thanks Eddy)
SysInternals alot of very cool tools for windows
http://www.microsoft.com/technet/sysinternals/default.mspx
CodePlex source code repository and collaboration tool
http://www.codeplex.com/
Refactor! for Visual Basic 2005
http://msdn2.microsoft.com/en-us/vbasic/ms789083.aspx
SOA - Take a look at this article by Tom Fuller (http://www.soapitstop.com) from Tampa about SOA
http://aspalliance.com/707
My solution to the exercise you did in class
http://www.onetug.org/DNN/Portals/0/member_files/ISMUserInformationCollector.zip
You talked about arrays, How about Generics??? :)
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 |
'list of type strings Dim lst As New List(Of String) lst.Add("Shawn") lst.Add("jt") lst.Add("asdf") For Each s As String In lst Console.WriteLine(s) Next ' ' ' 'How about a list of customers? Dim cList As New List(Of Customer) Dim c As New Customer() c.FirstName = "Shawn" c.LastName = "Weisfeld" c.Age = 12 cList.Add(c) c = New Customer() c.FirstName = "JT" c.LastName = "Shim" c.Age = 12 cList.Add(c) For Each cc As Customer In cList Console.WriteLine(String.Format("{0}, {1} ({2})", cc.LastName, cc.FirstName, cc.Age)) Next |