September 2007 Archives

Primitivism and tribalism

| | No TrackBacks
An amazing critical writer on the West and intellectual admiration for tribalism.

[Roger Sandall]

Due South quotes

| | No TrackBacks

Online language translation

| | No TrackBacks

Whoami

| | No TrackBacks

Code to translate user name to Windows SID

using System;
using System.DirectoryServices;
using System.Security.Principal;


class Program
{
  static void Main(string[] args)
  {
    foreach (string arg in args)
    {
      string path = String.Format("WinNT://KBCFP/{0}", arg);
      DirectoryEntry root = 
        new DirectoryEntry(path, null, null, 
        AuthenticationTypes.Secure);
      SecurityIdentifier si = 
        new SecurityIdentifier((byte[])
        root.Properties["objectSid"][0], 0);
      Console.WriteLine("{0}: {1}", arg, si.Value);
    }
  }
}

Cheat sheets for python

| | No TrackBacks

Cheat sheets for python

Pages

OpenID accepted here Learn more about OpenID
Powered by Movable Type 4.32-en

About this Archive

This page is an archive of entries from September 2007 listed from newest to oldest.

August 2007 is the previous archive.

October 2007 is the next archive.

Find recent content on the main index or look in the archives to find all content.