The Open Code Project

Being Flexible with VPN Software, Virtual Machines, and Remote Desktop Connections

July 2nd,2009 by Allan Bogh

In my line of work I will often have to connect to a customer's network using VPN software. While many of these connections work fine, some will disable the internet connection on the computer. This affects Windows and Ubuntu alike, but there's a fun way around this problem.

A customer gave me instructions to connect to their system using my computer. I attempted to connect and noticed the lack of internet on my Windows XP machine. I looked up the workaround to t...

Listing expiring Active Directory user accounts with UMRA

June 30th,2009 by Allan Bogh

Many times people want to view a list of expiring user accounts in Active Directory in order to contact the user or their manager and inform them of the expiring user account. Active Directory administrators will have to edit the user account to manually reset this account expiration, but with User Management Resource Administrator (UMRA) you can develop a system which will reset this expiration based on ...

Listing expiring Active Directory user accounts with UMRA

June 30th,2009 by Allan Bogh

Many times people want to view a list of expiring user accounts in Active Directory in order to contact the user or their manager and inform them of the expiring user account. Active Directory administrators will have to edit the user account to manually reset this account expiration, but with User Management Resource Administrator (UMRA) you can develop a system which will reset this expiration based on ...

Common loops and switches in PHP and ASP/VBScript

June 16th,2009 by Allan Bogh

PHP //PHP for loop for($i=0; $i<count($array); $i++){ echo $array[$i]; } //PHP foreach foreach($array as $key=>$val){ echo $key; //this is the array position echo $val; //this is the value echo $array[$key]; //this is the same } //PHP breaking loops and inner loops for($i = 0; $i < 10; $i++){ for($j = 0; $j < 10; $j++){ if($j == 7){ break; //never gets here }else if($j == 6)...

An Open Source Project Timer

June 8th,2009 by Allan Bogh

The Project Timer system is a project developed by Allan Bogh (the author) as a means to keep track of time used on tasks and projects. The download files are found on SourceForge, where you can also find some screenshots.

Because this is an ongoing open source project I need help maintaining the code. The basic system wo...

Next
Refresh