Careers 2.0 by Stack Overflow
gravatar
profile updated
on Apr 17

Joshua Harley

Evans, CO, United States

www.gibixonline.com

Top 10% Stack Overflow for
Top 20% Stack Overflow for
Top 30% Stack Overflow for
Currently IT Professional III, Institutional Systems and Architecture at University of Northern Colorado, Information Management and Technology.

I personally love learning new technologies and find ways to implement them both at work and at home. Not only do I work as a programmer during the day, I also have personal programming projects that I work on during my spare time.

I've worked with embedded technologies (.Net micro framework), Windows COM (developing a plugin to allow high level tagging on .png files in c,c++), Windows networking (run my own virtual network with a domain), and c# with both Windows Form applications as well as ASP.Net web applications.

I love to experiment both at work and at home and constantly bring new thoughts to the table. I'm a quick learner and can admit when I'm wrong.

Technologies

Dislikes:

Experience show all

IT Professional III, Institutional Systems and Architecture, University of Northern Colorado, Information Management and Technology

November 2011 - Current

Account Management

Our student account management system was written 6 years prior to my overhaul of the system. The system had morphed from it's original purpose into a tool that allowed first-time users to activate their account, to change a password, or reset a lost password. Our help desk used the system as their go-to troubleshooting step - they would tell clients to go through the process and call back in 30 minutes if they still couldn't access their account.

As part of the initial authentication process, I implemented a two-factor system with an asynchronous lookup and slight delay on the validation portion. This two-factor system isn't using any special external source, but relies on the user providing three different pieces of identifying information. The asynchronous lookup and delay are to help deny potential intruders from harvesting our system by brute forcing - the time to answer is identical regardless if the lookup was successful or not. The system also implements a basic throttling mechanism based on IP address that only activates when requests are received faster than an average person should be able to navigate the site.

The new system also encourages users to pick strong pass-phrase passwords over the standard short, random character password. The interface provides easy-to-read suggestions, as well as a basic, graphical scoring system.

While a short, simple password like A1a1a1a1a meets the minimum requirements and could be used, the scoring system would score this password around 30%, and show the user helpful hints that will help to increase their password score. A stronger, more complex password, such as myPa$sw0rDi$g0oD, would score perfectly, as it successfully implements all of the provided suggestions.

Custom Authentication Mechanism

One of my current projects provides a central mechanism that helps to securely implement single sign-on for our web applications, utilizing our third-party web portal. By creating a specialized web application that integrates directly with our portal, we are notified when a user logs in, accesses a new web application, and logs off. The single sign-on process generates a one-time token that is sent to the client's browser, which then uses the token and sends it to the destination web application. The destination web application uses the token to securely retrieve the user's credentials directly from the specialized central server, and allows us to securely identify the user without needing to trust any credentials coming from the browser.

An added advantage to this centralized system is the coordinatation of user-rights management at a high level for participating web applications. Part of the centralized process is retrieving common user data and their roles assigned to the application. This practice allows us to audit our web applications in a single place, and to have a standard system that creates and assigns user roles. We also have the ability to "secure" roles, which cause the destination web application to challenge the user to provide their password before being granted access. The password is salted and hashed using SHA-1 in the browser using JavaScript and is then forwarded on to the central server for verification. This allows us to secure sensitive roles from stolen cookies and replay attacks.

The destination web applications opt-in to the new authentication system by loading a shared assembly that provides the authentication process by using the standard, built-in .Net methods. The authentication framework implements services by using the IHttpModule interface to provide the AuthenticateRequest stage to authenticate our users. It also provides centralized session management, which allows our centralized web application to coordinate a user's logout from all associated web applications.

IT Professional II, Institutional Systems and Architecture, University of Northern Colorado, Information Management and Technology

August 2009 - November 2011

TFS implementation

One of my first tasks was implementing and migrating our existing data from our test Team Foundation Server 2008 (TFS) server which was an older Dell sitting on the floor in my cube. I researched the minimum and recommended requirements of TFS, determined what requirements our virtual infrastructure could provide, and requisitioned a new server for TFS. We chose to do a standalone install so TFS could be operationally independent from our SQL and SharePoint servers, allowing us to easily maintain our security and setup as well as being able to patch during our windows without affecting the rest of the university. We upgraded this server to TFS 2010 in January 2011. Since then, we check in all of our new code to TFS and we decompile and check in any old production code before making any changes.

Electronic Internal Order

I began learning and using agile programming practices during my largest project to date; the Electronic Internal Order (EIO) form. This application replaces the paper Temporary Intramural Order (TIO) form and adds electronic notification, order routing, document attachments and interfaces with our ERP system to coordinate approval queues and transfer of funds. Being the sole developer on the project provided opportunities to try new ways of working and coding styles. After a couple of months getting the initial framework ready, I met with the customers to provide an update and show them my progress. I received both positive and negative feedback and a feature list from the customers and worked the changes in to the application. Through these meetings, the customers rated the feature list in priority order and met with me every month. It was through these meetings that I understood their goal, met their requirements, and could tailor the application to their specifications. We eventually settled into an agile-like pattern; I would deploy a new version of the application with their approval every month and publish any necessary bug fixes two weeks later. This constant iteration pattern identified bugs missed during testing and quickly deployed fixes to production. To keep with the rapid development cycle, the source tree for EIO was broken in to two branches: Main and Development. The two-branch structure allowed me to continue to develop new features in Development and kept the production code tree in sync with Main. Any hot-fixes for production were made in the Main branch and migrated to Development and Development migrated to Main when a feature was complete and deployed to main. EIO was in development from April 2010 until December 2010.

ERP upgrade

I assisted during the upgrade to our ERP system from version 7 to version 8 and handled the upgrade of our user portal system from version 3 to version 4. To assist the user portal upgrade I took extensive documentation during our test deployment covering any customizations we make and wrote a tool used to migrate 50,000 user accounts from the old portal to the new portal. The ERP and user portal system upgrades completed successfully over the course of a week. Our ERP system runs on a mix of Oracle Fusion Middleware 11g/Oracle Application Server 10gR3 and our user portal runs on Tomcat within a Cygwin environment for Windows.

IT Professional I, Application Development and Database Services, University of Northern Colorado, Information Technology

March 2009 - August 2009

Though my time in this particular position was brief, one of my primary tasks was to convert a web application provided to us by another university from PHP to ASP.Net 2.0. This application accepted exam text files output by a Scantron scanning machine, parsed the results, and provided the instructor with the graded output. I eventually modified the program to include statistics about the exam, such as the standard deviation of scores and the KR-20 value (a measure of internal consistency reliability). Creating this application was definitely a learning experience for me. The original project was just to convert the PHP program to ASP, and as we added and extended more features, I discovered that I should have gone back and totally rethought the database architecture. I was able to extend the database architecture as it was, but it was quite the challenge. This application is still in use and is used quite frequently.

During this time, I also set up a local server to demo Team Foundation Server 2008 to my development group. Prior to the demonstration, we had no type of version control at all - we just copied files from one developer's machine to another. After an initial trial period, I convinced my team of the benefits of version control, and we worked TFS into our daily workflow.

I would like to highlight a utility I wrote that is still in use today. The AutoBuildIncrement application codes in the current date and time in to the AssemblyVersion attribute. This allows us to code the current build of the application in to the website (shown as a tooltip on the version footer) and tie a production build to a specific check-in.

PC Network Technician, Academy School District 20

August 2007 - March 2009

Coded, released and maintain several in-house applications, including DHCP and network management programs, in C# and C++. Designed and implemented an “Exchange Web View” web application in C#, SQL, and PowerShell. Researched, priced, and implemented Windows Deployment Services servers, a clustered, highly available Print server, and a SharePoint 3.0 server. Authored batch scripts to perform routine operations such as silently installing software and automating permission settings in Active Directory. Provide technological support for upper-level administrative staff including the Board of Directors and Superintendent and Deputy Superintendent.

Technology Technician, Rampart High School

December 2004 - August 2007

Built, designed and maintained internal and external websites. Implemented Active Directory building-wide, and authored and edited training videos for Active Directory. Assisted migrating building administrators to BlackBerry devices and Exchange servers. Wrote and maintained technical documentation. Installed and maintained a local server system. Researched and priced out new systems and software for department use. Set up, coordinated, and administered the new Advanced Placement Japanese Language test. Provided technical support to students, staff, and faculty. Performed computer software and hardware upgrades.

Certifications

GIAC Secure Software Programmer- .NET (GSSP-.NET)

2012

Stack Exchange show all Last seen yesterday

Open Source show all

iTunesRelay

Bitbucket, Jan 2012 - Mar 2012

This project connects with an iTunes library on a Windows machine and attempts to stream the playing songs to a configured UPnP/DLNA streaming device.

I am the creator of the project. I was wanting a way to easily stream my music using iTunes to my network UPnP/DLNA devices.


ReaderShare

Bitbucket, Feb 2012; followed by 2 people

The Reader Share project was designed to help fill the void after Google removed the original sharing feature in Google Reader. It uses a PostgreSQL database and allows users to share articles with one another.


wlalias

Bitbucket, Aug 2012 - Apr 2013; followed by 12 people

Wlalias is a command line utility program to create custom email aliases for users with Domains for Windows Live set up through Hotmail/Outlook.com.

I originally created this program for myself to create aliases on my own domain. When a friend needed to do the same I hacked together a half-working version for him. He eventually convinced me to polish the tool and release it publicly so others can eventually find it and be able to use it.


Apps & Software

favicon

A simple tool for creating and managing email aliases for Domains for Windows Live.

Anything and everything related to the project.


Writing show all

Elevating COM objects from .Net

Joshua's Blog | now with actual content!

While I was working on one of my personal projects I needed to do some administrative tasks from a program launched as a normal user. I was able to find a way to elevate my custom COM object from C#.


wlalias 1.0 relased - Create email aliases for Domains for Windows Live

An article describing the wlalias tool as well as its uses and limitations with HTML friendly previews.


Tools

1985 Leading Edge 8086

Visual Studio

Background

Projects and links

MusicRei: A .Net based streaming music library manager.

PNGExtension: A C++ based COM object that extends Windows Explorer to allow applications to add attributes (like Author, Tags, and Rating) to PNG image files. Currently, Windows out of the box, does not support these features. It implements it in such a way that it appears native to the user and any application using the Windows API can access it.

SevereWeatherAlerter: A C# based Windows service that monitors the NWS WWA text feeds for severe weather events in the area and sends out a Growl notification on the local network as well as uses Google Voice so send a coded SMS text message to a phone. The phone component uses C# to listen for incoming SMS messages and will sound a unique alert based on the type of alert as well as use the current GPS location of the device to determine if the user is within the warning polygon area.


Background

All of my coding knowledge has been self taught. I have never taken a formal course in coding outside of AP Computer Science, which covered basic C++ and classes, in High School. I constantly develop both at work and at home and have a couple of personal projects that I keep jumping between. As I write code I am constantly learning new things and new tricks and seek to implement them in other projects.

I've been interested in computers ever since I was given an old Leading Edge computer with an Intel 8086 processor, 512KB ram, and a 10MB hard drive. Even though I don't still have it, I can remember playing around on its yellow-on-black monochrome screen. I even remember how I learned what format c: does as well as the fact that himem.sys cannot be loaded on a machine without XMS memory. Apparently adding himem.sys in MS-DOS 5.0 without expanded memory will cause the machine to hang during boot. :)

Ever since then my passion has been with technology, I am always by a computer during the day and am following all of the latest news on what's coming out in the future. I think that this is a great time to be in computing and I look forward to where it will lead.