Blog Home  Home Feed your aggregator (RSS 2.0)  
What did you learn today? - Wednesday, October 26, 2005
Phil Denoncourt's Technology Rants
 
 Thursday, October 27, 2005

I've just finished uploading the presentations I did at the New Jersey Code Camp to their site .  The demo files can be downloaded at my website under the file tab.  Sorry for the delay!

Wednesday, October 26, 2005 11:12:46 PM (GMT Standard Time, UTC+00:00)  #    Comments [0]   Speaking Engagements  | 
 Wednesday, October 26, 2005
Microsoft has released details for the next generation of .NET Certifications. (Information here). I've been certified by Microsoft for 10 years now (my MCP ID is in the 36000 range) and I currently hold the MCP, MCP+SB, MCSD, MCDBA, MCSA, MCSE, MCAD, and MCSD.NET certifications. I was fortunate enough to work for a Microsoft Partner for a few years who paid the testing fee for as many tests as I wanted to take. These certifications haven't gotten me jobs by themselves or increased my billing rate. But they do help employers/clients overlook that I didn't get a 4 year degree in Computer Science (I just have a two year degree) and have made clients feel more comfortable with my skillset.

It looks like that I just have to take an upgrade exam to bring my certs current. 4 tests for all the developer stuff. However, I also have the DBA certifications. There is an upgrade exam for the DBA Cert, but if I want to become a
MCITP: Database Developer, or MCITP: Business Intelligence Developer , I have to start from scratch for a total of 5 exams.

One of my pet peeves is developers who think certifications are worthless. For the most part, the rant sounds something like this: "I know everything I need to know to do my job, I'm a .NET god, why do I need to prove it to other people?". Well, you don't know what you don't know. Take one of the practice tests. Every developer I know who has taken one is humbled by the results. For the most part, developers use only a fraction of the .NET framework. Until I started preparing for the exams, I had never used EnterpriseServices, Reflection, or Code Access Security. You can write a lot of good applications without ever touching any of these areas. But, by knowing these areas, you can write more complete applications, and troubleshoot all those weird problems that crop up every now and then.

It's been known for some time that Microsoft is going to offer a
Microsoft Certified Architect program. I'm on the fence with this one. It strikes me as Country Clubish. You begin the program by having someone who is an architect recommend you. To gain acceptance, you are grilled by a "board" of other Architects about your solutions and experience. I would like to see it be a little more capability based. The costs are unclear, but I can't see that it would be cheap, and I'm not sure what advantage this credential gives me compared to some other guy who doesn't have it.
Wednesday, October 26, 2005 4:54:05 PM (GMT Standard Time, UTC+00:00)  #    Comments [0]    | 
Downtime by phildenoncourt
Apparently, the servers that host my site are based in Boca Raton, Florida and have been without power for the past two days. They're working off of generators right now. This is a tremendously minor inconvenience compared to what the people who live there must be going through. My prayers go out to all the people affected. Donate as you can.
Wednesday, October 26, 2005 2:27:21 PM (GMT Standard Time, UTC+00:00)  #    Comments [0]    | 
 Wednesday, October 19, 2005

Visual Studio 2003 stores Reference paths for projects in the .User file. Not in the csproj file. I can't see why they wanted to store that information in a separate file. The settings pertain only to the specific project. Anyway, if your application's build is dependant upon having the reference paths set, make sure you are adding the .User files to your source control system. The csproj file is not enough.

Normally you can find the .User file in the same directory as the project file... Unless it is a web application/service. Then you will find the file in the VSWebCache folder. Which makes it very difficult to put that file under source control. I don't see a good solution to this problem. Maybe porting the build to use NAnt. Although that would be burdensome if we just wanted to debug the project. 

I guess the best solution is to architect your project so that it isn't dependant on a reference path.

Wednesday, October 19, 2005 9:27:33 PM (GMT Standard Time, UTC+00:00)  #    Comments [0]   DotNet  | 

The New Hampshire Dot Net User Group meets tomorrow:

 

Boston University Corporate Education Center
72 Tyng Road
Tyngsboro, MA 01879


The meeting schedule is
The third Thursday @New Hampshire Dot Net


Oct 20 Jesse Liberty - Creating Personalized Sites with ASP.NET 2.0 and C#
Topics will include: forms-based security, roles and personalization including: anonymous personalization, personalization with user-defined types, master pages, themes and skins and personalizing with web parts and catalogs.

Wednesday, October 19, 2005 8:03:08 PM (GMT Standard Time, UTC+00:00)  #    Comments [0]    | 
 Tuesday, October 18, 2005
Gooogle Ads by phildenoncourt

I'm not sure if this critisism violates the agreement I have with gooogle.  It seems everybody is talking how great their ad technology was and how easy it is to implement.  So I put in on this site just to play around with it.  While it is true that it is very easy to implement, I think their matchmaking sucks.  Right now, if you go to the homepage of this blog, you are presented with ads for the XXXXXX XXXXXX (The name of the basketbal team from bostom).  How did that happen?  I don't even like that sport (I'm a small guy).  Am I missing something?  There are no references to that team on this page (I misspelled stuff in this entry so that there wouldn't be in the future, either).  I think I'm going to try ads from other companies to see if they do a better job.

Tuesday, October 18, 2005 8:31:19 PM (GMT Standard Time, UTC+00:00)  #    Comments [0]    | 
 Monday, October 17, 2005
Generating Test Skeletons by phildenoncourt
Nowadays there is a lot of discussion about TDD (Test Driven Development). While I think that anything that forces developers to pay more attention to testing their code is a good thing, I am not convinced that TDD is going to reduce my defect rate. My methodology is to write the code for a problem, document it, ruggedize (add range checks, errorhandling, and verify that resources will always be released), and then write unit tests.

When I talk about unit tests to developers, with the goal of trying to get them to place their unit tests in a unit testing framework like nUnit, there is a tendency for them to balk. "You want me to spend time writing code that an end user will never run" (read - Can I bill for that?), or "That would mean we'd have to start managing our previously disposable test harness code" (read - That means if I change my interface, the test code won't compile), or "Who is going to test the test code?" (read - I'm skeptical this will work and I'm trying to get out of doing this)

My experience with the three projects I've implemented full unit testing is that it is well worth the effort. Obviously, there is going to be more overhead when building the first version. However, it has saved me tremendous time when deploying the 2nd, 3rd, 4th.... time. Not only am I able to test the new features quickly, I can run the entire battery to make sure that I didn't break something when adding a new feature.

There is a utility called "Reflector Graph" that writes test skeletons for you. It is an addin to reflector. To generate a test skeleton, make sure you add the addin to reflector. Find the class you want to create a test for; right click and select Code Generation. On the drop down, select which type of object you are interested in.
Monday, October 17, 2005 5:23:57 PM (GMT Standard Time, UTC+00:00)  #    Comments [0]   DotNet  | 
New Jersey Code Camp by phildenoncourt

This past weekend I had the opportunity to present at the New Jersey Code Camp in Iselin NJ. I gave two talks; Troubleshooting Performance in SQL Server 2000 and Scraping Websites with the .NET framework. The talks went pretty well and had a lot of lively discussion. My son Ben made the trip with me and helped me by running the powerpoint show. On the way back we stopped at the New England Air Museum in CT. That is a really cool place if you are an aero euthusiast.


It was great to meet some of the developers from that area, including Scott Watermasysk, Don XML, Miguel Castro, Frank La Vigne, Kevin Goff, Hilary Cotter and Jim Bonnie. The NJ area has a very active community.


Carl and Richard stopped by on their tour and showed a little VB 2005 and a little mobility. Very interesting stuff. I got to go on the bus after the meeting and was even interviewed on DotNetRocks! (The small guy way in the back with the blue shirt...That's me!). All in all, a great weekend and a good time.

Monday, October 17, 2005 4:40:48 PM (GMT Standard Time, UTC+00:00)  #    Comments [0]   Speaking Engagements  | 
 Wednesday, October 12, 2005

Next Meeting October 13th
5:30 - 6:00 .NET Trauma Center
Stumped?   Frustrated?  Is your forehead sore from banging your head against the keyboard?  Bring in your application and see if some of the area's local experts can provide some guidance.



6:00 - 7:00 Visual Basic 9.0 Language Changes
Joe Sarna of JJS Systems will outline the changes that VB has undergone in the upcoming release of Visual Studio 2005.  Come learn about the new features such as operator overloading and the My namespace.

7:00 - 8:00 C# 2.0 Language Changes
Phil Denoncourt of Denoncourt Associates  will highlight the changes that C# has undergone.  He will cover templates, anonymous delegates and other fun features.

November 10, 2005 -  We got
Sam Gentile!  An INETA sponsored event.  Boston .NET expert Sam Gentile will give us a look a C# 2.0 Generics.  Pizza will be served.

December 15, 2005 - Visual Studio .NET Launch event.  Come learn about the new version of Visual Studio and SQL Server.  Door prizes will be available.

Wednesday, October 12, 2005 6:08:17 PM (GMT Standard Time, UTC+00:00)  #    Comments [0]   Speaking Engagements  | 
 Tuesday, October 11, 2005
Keyboard Evesdropping by phildenoncourt

Back in the mid 90's, I hypothesised that everybody had a distinctive pattern to the way that they typed specific words. The pattern that I typed my password was predictable and consistant. Meaning that if my password was "toyota", the time it took me to type the letters "t" and "o" was relatively static, but would be completely different from someone else typing the same word. So my idea was to build a product that added keyboard recoginition as another layer of authentication. With this technique, I could tell you my password and unless you were a proficient percussionist, you wouldn't be able to autheniticate with my credentials. I did some prototypes, writing a Gina dll and tested with a few people, but before I took the time to refine it, this company published their implementation.

Today I read of a new technique (link) that uses a microphone to listen to someone typing. Apparently, by recording the sound of someone typing, they are able to reconstruct the keys that were pressed. A new reason to be paranoid...

Tuesday, October 11, 2005 5:50:37 PM (GMT Standard Time, UTC+00:00)  #    Comments [0]    | 
NJ Code Camp by phildenoncourt
This weekend, I'll be giving two talks at the New Jersey Code Camp. An introductorary talk on different ways to improve performance in a SQL Server database and Web Scraping in .NET. This will be a fun event. My son Ben is coming to help me out, and it's a chance for us to spend some time together and see the country a little bit. If you're from the New England area and want to carpool, email me. If you're in the New Jersey area this weekend, look us up.
Tuesday, October 11, 2005 2:07:36 PM (GMT Standard Time, UTC+00:00)  #    Comments [0]   Speaking Engagements  | 
 Friday, October 07, 2005

I've given a introductory talk on Code Access Security a few times now. As I'm showing all the pieces from an administrative point of view (Code Groups, PermissionSets), and I go to create a code group, there is an option in the wizard that allows you to import the settings from an XML file. People listening to my talk always, without fail, ask, "How can I generate that XML file". It's fustrating, because there is no clear way to do. No menu option, no command line utility. I alway mean to research how to do it, but never seem to find the time. A couple of nights ago, I looked into it. It turns out on each PermissionSet, or CodeGroup, there is a ToXml method. Since it appears the only way to get the XML is using that method, I wrote a utility that will export the XML to a file. You can download it here.

Friday, October 07, 2005 1:09:30 PM (GMT Standard Time, UTC+00:00)  #    Comments [0]   Development | DotNet  | 
 Tuesday, October 04, 2005
Random.Next by phildenoncourt
Arg!! Serves me right for not reading the documentation and assuming the way a component works. I have a test framework that I use to generate random data when running unit tests on the data layer. I don't care what the data looks like as long as data is in fact saved. I use Random.Next to get a value that I use for a variety of purposes: Getting a letter, a number, or a boolean value. To get a random boolean value, I was using this code:
System.Random r = new Random();
bool tstResult = r.Next(0,1) ==0 ? true : false;
The problem is that Random.Next will return a value >= the first parameter and < the second parameter. So you can see that my routine always returns true. I had assumed that the arguments were the range of numbers you were interested in.
		
Tuesday, October 04, 2005 3:00:25 PM (GMT Standard Time, UTC+00:00)  #    Comments [0]   DotNet  | 
Copyright © 2010 Phil Denoncourt III. All rights reserved.
DasBlog 'Portal' theme by Johnny Hughes.
Pick a theme: