When changing your password, please remember that it must be between 5 and 8 characters in length and should contain both letters and numbers. Special characters (e.g. #, &, @) must not be used as they will not be accepted by the system. Passwords consisting of all letters or all numbers are not recommended. Although TD Canada Trust does not require you to change your password, we recommend that for security purposes you change your password every 90 days.
[Read More]
A collection of thoughts, ideas and rants inspired by my career in the fintech and banking industry.
Tools of the trade
Many large companies have explicit policies around which development tools to use. For example, “Here at Really Big Corporation we use CVS, Ant and Eclipse”. I understand that companies need to limit the proliferation of tools to ensure familiarity and supportability, but sometimes a little flexibility would be nice.
When I hire a tradesman to do work on my house I don’t tell him that we use handsaws here, not tablesaws. I trust him to use the tools that make him the most productive.
[Read More]Things to consider before switching to VOIP
There are many things to consider before switching to VOIP. My wife and I switched to VOIP in March out of frustration with our phone provider, Bell.
After two months of VOIP phone service we’ve decided to go back to a standard phone line. There are many reasons that factored into our decision:
- It was very unreliable
- It cost more than a standard phone line
- It didn’t work with our security system
I’ll expand on each of these in detail.
[Read More]Recruiting 101
Recruiting is difficult. Most of the top talent already have jobs and are rarely in the job market. As a recruiter (or a headhunter, or a talent scout) these are precisely the people that you should be trying to attract.
There are a few simple guidelines that might help you generate genuine interest in the role you’re trying to fill.
- Try to build relationships with candidates, not just a contact database. I need to know that you are someone I can work with and can be trusted to be discrete. Let’s have lunch together.
- Proof-read your email.
- Give me a detailed description of the role including the actual company name and location. Leave out the technology buzzwords - truly great developers can operate effectively in any landscape
- Do not ask me to send you “an updated copy of your resume in MS Word format”. I don’t know who you are or what you’re going to do with it; what happens if you unknowingly send my resume to my current employer?
- Be discrete. Don’t call me on my work phone. When you call my cell phone always ask first if it is OK to talk and listen to my answer. If I say no then just say, “OK, let’s talk later” and hang up.
Following these simple rules will dramatically increase the quality of your candidates and get a higher response rate to your communications. Who knows, you might even make more money because you’ll be able to consistently deliver the candidates that nobody else can find.
[Read More]VOIP providers in Canada
After a decade of abuse I’ve decided to ditch my Bell landline in favour of VOIP.
My last Bell bill was $60.26 for a basic phone with 2 features.
I did a lot of research into the various providers in Canada. My short list of potentials was
In the end I went for AcroVoice because they seem to have the best mix of service, simplicity and professionalism. Their basic service is only $10.95/month and they provide pre-configured hardware at a reasonable cost.
[Read More]Eclipse keyboard shortcuts
When I first started working at Intelliware I was amazed at how efficient the developers were while working in Eclipse. Most of this efficiency and speed came from a deep knowledge of Eclipse’s keyboard shortcuts.
Here is my list of Eclipse keyboard shortcuts that every developer should know.
- Ctrl-Shift-L: Show list of shortcuts
- Ctrl-K: Find next
- Ctrl-Shift-R: Open a file in your workspace. It supports CamelCase shorthand too, so “SBFil” will find “SomeBigFile.java” and “SBFile.java”
- Ctrl-Shift-G: Find references for a class or method. Want to find who calls MyClass.getName()? Put your cursor on the getName() definition and hit Ctrl-Shift-G
- F3: Drill into a method. This will jump from the code that calls the method into the method definition. Similar to holding Ctrl and clicking on the method call.
- Ctrl-T: Open implementors of an interface. Very useful when using F3 to follow the flow of method calls.
- Ctrl-O: Open a list of method declarations in the current class. Allows you to jump directly to the method using the arrow keys and enter. Bonus points: typing Ctrl-O again while the list is showing will also list method declarations from all superclasses
- Ctrl-E: Shows a list that allows you to switch between open files
- Alt-Shift-W: Locates the current file in the Navigation or Package Explorer tree.
- Ctrl-L: Go to line number. You might want to show line numbers by default by changing the preference General>Editors>Text Editors
- Ctrl-H: Find a string in all files. You can customize this to only show the File search by clicking the Customize button and unchecking the other options
- Ctrl-Shift-O: Organize import statements. This also removes any unused imports.
- Ctrl-Shift-F: Reformat the file
You should also familiarize yourself with the following debugging shortcuts
[Read More]Tapestry and JMeter
I was recently tasked with setting up some load tests for our Tapestry (4.1.6) web application. I chose to use Apache JMeter because it is open-source and is flexible enough to do what we needed, and doesn’t cost $12,000/month like some load testing tools.
I set up an HTTP Proxy Manager to record a simple navigation through the site and reconfigured my browser to use the proxy. The proxy recorded the requests without a hitch.
[Read More]Life after Java?
There has been a lot of talk lately that Java is on its way out, mostly fueled by Apple deprecatingJava, and by Apache threateningto quit Java.
I’m not crying Chicken Little just yet, but perhaps it’s time to start looking for the Next Big Thing. There are certainly a lot of contenders out there: Ruby (and Rails), Scala, Groovy (and Grails). My guess is there’ll be a couple of false starts before a clear winner is declared.
[Read More]Telus fail
A few months ago I bought an HTC Desire from Telus. While I loved the phone, it had problems from the beginning. The keyboard would regularly freeze mid- email/sms and the only way to revive the device was to pull out the battery and restart the phone.
It would often reboot when an incoming call was ringing. This is a major failure for a phone - at the very least it should be able to accept phone calls.
[Read More]Personal projects
I recently started working on a personal project - a web application - and faced a difficult decision. What technology stack do I use?
I like my personal projects to both fulfil a requirement and to teach me something in the process. Java is my native language, so I initially thought I’d build it in wicket-spring-hibernate.
The problem is that I can only work on the project for a few hours a week, and I find that developing in Java just takes too long. It’s a big hammer.
[Read More]