This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/usr/bin/env python | |
''' | |
Takes a GitHub service hook POST and automatically updates the associated repo. | |
''' | |
__license__ = ''' | |
Copyright 2009 Jake Wharton | |
hookpuller is free software: you can redistribute it and/or modify |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
using System; | |
using System.Runtime.InteropServices; | |
using System.Security.Principal; | |
namespace JakeWharton | |
{ | |
public class Impersonator : IDisposable | |
{ | |
private WindowsImpersonationContext ImpersonatedUser = null; | |
private IntPtr UserHandle; |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
using System; | |
using System.Text; | |
using System.Reflection; | |
namespace pyysharp | |
{ | |
public abstract class HtmlTag | |
{ | |
private static string TAB = " "; |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
def seven_seg(x): | |
''' | |
_ _ _ _ _ _ _ _ | |
|_||_| ||_ |_ |_| _| _| || | | |
_||_| ||_| _| | _||_ ||_| | |
1111101101 = 1005 | |
1101110001 = 881 | |
1101111100 = 892 |
NewerOlder