Growing disks for virtual machines have become pretty trivial with tools like livecd's and gparted....

Continue reading...

No doubt the Unix find and remove command comes in very useful when cleaning up large folders. Howev...

Continue reading...

I have had issues using Dell Drac’s on some servers. It appears to be related to high latency networ...

Continue reading...

Instructions how to use the OpenVPN plug-in with the Gnome NetworkManager.

Details:

- In this ca...

Continue reading...

Some businesses still rely on the the Proxy auto-config file format originally designed by Netscape...

Continue reading...

Recently had an issue with a CIFS share on a Solaris 11 box. Still not sure how this happened but it...

Continue reading...

Sometimes I want to email from Python and this is pretty easy. Or even just testing mail flow I pref...

Continue reading...

I use Python to pull Active Directory information sometimes. In my case mainly to report or view inf...

Continue reading...

Quick sort routine...


def sort(array):
  if len(array) 

Continue reading...

Quick and simple Python list with node insert capabilty.


class Node:
    def __init__(self,value)...

Continue reading...

When using the kernel enabled CIFS server on Solaris 11, we found that the idmap service picks Domai...

Continue reading...

While I am writing a curses based recording application in Python I thought it a good idea to jot do...

Continue reading...

```
#!/usr/bin/python 
rows=5;cols=2 
players=[[0]*cols for _ in xrange(rows)] 
print "####### Pri...

Continue reading...

To troubleshoot when clients have issues accessing DFS shares. This occurs mostly over VPN connectio...

Continue reading...

A simple vbscript to allow recovery of DFS Replicated files that have been pushed into the ConflictA...

Continue reading...