September 2007 Archives

Primitivism and tribalism

| | Comments (0) | TrackBacks (0)
An amazing critical writer on the West and intellectual admiration for tribalism.

[Roger Sandall]

Due South quotes

| | Comments (0) | TrackBacks (0)

Online language translation

| | Comments (0) | TrackBacks (0)

Whoami

| | Comments (0) | TrackBacks (0)

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

| | Comments (0) | TrackBacks (0)
Cheat sheets for python
http://www.limsi.fr/Individu/pointal/python/pqrc/versions/PQRC-2.4-USLetter-latest.pdf http://rgruet.free.fr/PQR24/PQR2.4.html

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.