Home   About   Sponsors   Events   Employment   News   Specials   Other Events   Discussions   Links   Downloads 
 
 
 You are here: Home > Employment > Résumé Board
Register   Login  

 

Author Thread: Seeking Entry-level Software Development Position
joseph_hac
Seeking Entry-level Software Development Position
Posted: Saturday, October 15, 2005 9:43 PM (EST)

Joseph Hachey

joseph_hac@yahoo.com

OBJECTIVE
To obtain an entry-level position in the field of Information Technology.

SKILLS
-Knowledgeable in all areas of the System Development Life Cycle.
-Utilizes UML, Entity Relationship, Data Flow, and Work Flow Diagrams toanalyse a problem, and propose viable solutions.
-Confident in relational database design, normalization, and managementusing such Database Management Systems as MS Access, SQL Server, andMySQL.
-Ability to develop object-oriented solutions using consoles, windowsforms, web applications, and mobile devices.

TECHNOLOGIES
ANSI C, C++, Visual Basic, C#, Perl, ASP.NET, Java,Assembly, T-SQL, XHTML w/ CSS, CFML, XML, .NET Framework (Compact andFull), SQL Server 2000, SQL Server CE.

EDUCATION
2002 – 2005                                    Fleming College                                         Peterborough, ON
Computer Programmer/ Analyst Diploma

1998 – 2002                                    David & Mary Thompson C.I.                Scarborough, ON
Ontario Secondary School Diploma

RELATED EXPERIENCE
Winter 2005                                    Bell Canada/ Fleming College               Peterborough, ON
Applied Project
-Designed, prototyped, and implemented system that extends Bell Canada’s Enterprise Resource Planning software to the .NET Compact Framework platform.
-Produced user manuals, data flow diagrams, schemas, and other technical documentation to ensure applications were easily supported and maintained once handed over to Bell Canada.
-Managed project resources and scheduling effectively to attain project-related goals and ensure deliverables were completed on time and within budget.

Fall 2003 – Spring 2005             Fleming College                                         Peterborough, ON
Peer Tutor
-Assisted students with computer-related troubles.
-Taught beginner and intermediate users how to get the most out of the MS Office System.
-Applied technical knowledge to troubleshoot hardware/software/network issues in a dynamic IT environment.

Summer 2004                                Fleming College                                          Peterborough, ON
Archival Assistant / Peer Tutor
-Developed Palm-based A/V equipment tracking application which synchronizes with existing MS Access database.
-Converted newsletters dating back to the early 70’s to Portable Document Format (PDF).
-Maintained computers and workspaces.

Winter 2001                                    Teleperformance Inc.                                Toronto, ON
Sales Representative
-Learned and understood all Sprint Canada plans and sales methods.
-Analyzed customers’ needs and presented the plan that best suited them.
-Spoke professionally and politely to customers.
-Strived to reach sales goals daily.

Winter – Fall 2000                        CanTrak Inc.                                               Toronto, ON
Tele-Research Interviewer
-Conducted and processed lengthy computerized surveys.
-Represented clients such as Molson, Firestone and Hershey to company standards.
-Established a polite, trustworthy rapport with interview recipients.

ACHIEVEMENTS
-Awarded Canadian Information Processing Society Award for academic excellence – 2005
-Received Aiming for the Top academic scholarship – 2002 - 2005
-Nominated for Microsoft’s North American Student Developer Champion Award – 2004

AFFILIATIONS
-Toastmasters International – 2005
-East of Toronto .NET User Group – 2004 - 2005




Top
 
Search: Go

Love sought is good, but given unsought is better.
--- Shakespeare

Sara Ford's WebLog : Visual Studio 2008 Tip of the Day
Tags: Visual Studio 2008 Tip of the Day
  • Did you know… Dock your Call Stack window alongside the Solution Explorer for a better debugging experience - #362

    Whenever I found a bug that required the developer to investigate on my machine, I swear the first thing each and every one of them would do was dock the Class Stack alongside the Solution Explorer.

    Call Stack docked alongside Solution Explorer

    If you’re dealing with call stacks only 5 lines deep, you’ll probably like the default layout – docked to the bottom.  However, if you’re dealing with call stacks 20 lines deep, you probably want to be able to see more lines without wasting your editor space.  By tab-docking the Call Stack Window alongside the Solution Explorer, you’ll be able to see many more lines in your Call Stack window without rearranging your editor.

    Technorati Tags: ,


  • Did you know… Ctrl+K, Ctrl+v allows you to quickly search for objects within your solution? - #361

    Another good keyboard shortcut many don’t know about. I only say that because I forgot all about this one until now…

    There is a command called View.ClassViewGoToSearchCombo which does exactly as it says.

    image

    When you press Ctrl+K, Ctrl+V, wherever you are in the IDE, your focus will jump to the Class View search combo box, so you can just start typing and searching immediately.

    Class View with focus on Search Combo Box

    Technorati Tags: ,


  • Did you know… You can use devenv.exe /edit to open a file in an existing Visual Studio instance - #360

    Visual Studio has a command line argument you can specify to open a file in an existing instance of VS.

    command line example

    Just run devenv /edit <filename> and the file will open in the IDE.

    file opened in Visual Studio alongside other files

    You could also create a VSEdit command if you find yourself using this feature a lot.  Just create a file called "VSEdit.cmd" (you can use notepad to do this) with the following:

    @"devenv.exe" /edit %*

    provided you already have %Program Files%\Microsoft Visual Studio 9.0\Common7\IDE added to your system PATH environment variable. And, of course, you might want to place this VSEdit.cmd in a directory that's in your PATH or add it.

    another command line example

    Technorati Tags: ,


  • Did you know… Ctrl+. shows a smart tag - #359

    We’ve all seen smart tags before, the little line that appears whether we’re renaming something or VS wants to help us add a using statement to our code.

    C# smart tag example

    There are two keyboard shortcuts to invoke (show) smart tags in the editor. There’s the keyboard shortcut no one can seem to remember Alt+Shift+F10, required for consistency with Office’s smart tags. Then there’s the slightly easier to remember keyboard shortcut Ctrl+. (period)

    In C# it’s cool that you can just press Ctrl+. then press Enter, and the smart tag does its job. But in VB, you have to press Ctrl+. then arrow down (to select the first item) then press Enter. Sigh, yet another accessibility bug…

    VB smart tag example

    The command is View.ShowSmartTag if you want to rebind to something else. the Blogosphere seems to like Alt+Down Arrow, which isn’t bound to anything in the Editor scope.

    View.ShowSmartTag command

    Technorati Tags: ,


  • Did you know… you can display a license in the Content Installer - #358

    Directly from the help documentation:

    To display an End User License Agreement (EULA) in the Visual Studio Content Installer, you must embed this information in the .zip file. WinZip supports including embedded information through the Comment feature. For more information about WinZip, see http://www.winzip.com. For more information about the Comment feature, see the WinZip Help file.

    Using WinZip 12.0, the Comment feature is found under View – Comment.

    As soon as you run a .vsi that has this content embedded in it, you''ll see the EULA dialog box pop up.

    Football is spelled s-o-c-c-e-r

    Hey, i’m just saying…

    Technorati Tags: ,



    Last Refreshed 11/21/2008 11:47:46 PM
  •