Monday, August 20, 2012

CGKeyCode List Table Enum from Frameworks/Carbon.framework/Frameworks/HIToolbox.framework/Events.h


typedef UInt16                          EventModifiers;
enum {
                                        /* modifiers */
  activeFlagBit                 = 0,    /* activate? (activateEvt and mouseDown)*/
  btnStateBit                   = 7,    /* state of button?*/
  cmdKeyBit                     = 8,    /* command key down?*/
  shiftKeyBit                   = 9,    /* shift key down?*/
  alphaLockBit                  = 10,   /* alpha lock down?*/
  optionKeyBit                  = 11,   /* option key down?*/
  controlKeyBit                 = 12,   /* control key down?*/
  rightShiftKeyBit              = 13,   /* right shift key down? Not supported on Mac OS X.*/
  rightOptionKeyBit             = 14,   /* right Option key down? Not supported on Mac OS X.*/
  rightControlKeyBit            = 15    /* right Control key down? Not supported on Mac OS X.*/
};

enum {
  activeFlag                    = 1 << activeFlagBit,
  btnState                      = 1 << btnStateBit,
  cmdKey                        = 1 << cmdKeyBit,
  shiftKey                      = 1 << shiftKeyBit,
  alphaLock                     = 1 << alphaLockBit,
  optionKey                     = 1 << optionKeyBit,
  controlKey                    = 1 << controlKeyBit,
  rightShiftKey                 = 1 << rightShiftKeyBit, /* Not supported on Mac OS X.*/
  rightOptionKey                = 1 << rightOptionKeyBit, /* Not supported on Mac OS X.*/
  rightControlKey               = 1 << rightControlKeyBit /* Not supported on Mac OS X.*/
};

/* MacRoman character codes*/
enum {
  kNullCharCode                 = 0,
  kHomeCharCode                 = 1,
  kEnterCharCode                = 3,
  kEndCharCode                  = 4,
  kHelpCharCode                 = 5,
  kBellCharCode                 = 7,
  kBackspaceCharCode            = 8,
  kTabCharCode                  = 9,
  kLineFeedCharCode             = 10,
  kVerticalTabCharCode          = 11,
  kPageUpCharCode               = 11,
  kFormFeedCharCode             = 12,
  kPageDownCharCode             = 12,
  kReturnCharCode               = 13,
  kFunctionKeyCharCode          = 16,
  kCommandCharCode              = 17,   /* glyph available only in system fonts*/
  kCheckCharCode                = 18,   /* glyph available only in system fonts*/
  kDiamondCharCode              = 19,   /* glyph available only in system fonts*/
  kAppleLogoCharCode            = 20,   /* glyph available only in system fonts*/
  kEscapeCharCode               = 27,
  kClearCharCode                = 27,
  kLeftArrowCharCode            = 28,
  kRightArrowCharCode           = 29,
  kUpArrowCharCode              = 30,
  kDownArrowCharCode            = 31,
  kSpaceCharCode                = 32,
  kDeleteCharCode               = 127,
  kBulletCharCode               = 165,
  kNonBreakingSpaceCharCode     = 202
};

/* useful Unicode code points*/
enum {
  kShiftUnicode                 = 0x21E7, /* Unicode UPWARDS WHITE ARROW*/
  kControlUnicode               = 0x2303, /* Unicode UP ARROWHEAD*/
  kOptionUnicode                = 0x2325, /* Unicode OPTION KEY*/
  kCommandUnicode               = 0x2318, /* Unicode PLACE OF INTEREST SIGN*/
  kPencilUnicode                = 0x270E, /* Unicode LOWER RIGHT PENCIL; actually pointed left until Mac OS X 10.3*/
  kPencilLeftUnicode            = 0xF802, /* Unicode LOWER LEFT PENCIL; available in Mac OS X 10.3 and later*/
  kCheckUnicode                 = 0x2713, /* Unicode CHECK MARK*/
  kDiamondUnicode               = 0x25C6, /* Unicode BLACK DIAMOND*/
  kBulletUnicode                = 0x2022, /* Unicode BULLET*/
  kAppleLogoUnicode             = 0xF8FF /* Unicode APPLE LOGO*/
};


/*
 *  Summary:
 *    Virtual keycodes
 *  
 *  Discussion:
 *    These constants are the virtual keycodes defined originally in
 *    Inside Mac Volume V, pg. V-191. They identify physical keys on a
 *    keyboard. Those constants with "ANSI" in the name are labeled
 *    according to the key position on an ANSI-standard US keyboard.
 *    For example, kVK_ANSI_A indicates the virtual keycode for the key
 *    with the letter 'A' in the US keyboard layout. Other keyboard
 *    layouts may have the 'A' key label on a different physical key;
 *    in this case, pressing 'A' will generate a different virtual
 *    keycode.
 */
enum {
  kVK_ANSI_A                    = 0x00,
  kVK_ANSI_S                    = 0x01,
  kVK_ANSI_D                    = 0x02,
  kVK_ANSI_F                    = 0x03,
  kVK_ANSI_H                    = 0x04,
  kVK_ANSI_G                    = 0x05,
  kVK_ANSI_Z                    = 0x06,
  kVK_ANSI_X                    = 0x07,
  kVK_ANSI_C                    = 0x08,
  kVK_ANSI_V                    = 0x09,
  kVK_ANSI_B                    = 0x0B,
  kVK_ANSI_Q                    = 0x0C,
  kVK_ANSI_W                    = 0x0D,
  kVK_ANSI_E                    = 0x0E,
  kVK_ANSI_R                    = 0x0F,
  kVK_ANSI_Y                    = 0x10,
  kVK_ANSI_T                    = 0x11,
  kVK_ANSI_1                    = 0x12,
  kVK_ANSI_2                    = 0x13,
  kVK_ANSI_3                    = 0x14,
  kVK_ANSI_4                    = 0x15,
  kVK_ANSI_6                    = 0x16,
  kVK_ANSI_5                    = 0x17,
  kVK_ANSI_Equal                = 0x18,
  kVK_ANSI_9                    = 0x19,
  kVK_ANSI_7                    = 0x1A,
  kVK_ANSI_Minus                = 0x1B,
  kVK_ANSI_8                    = 0x1C,
  kVK_ANSI_0                    = 0x1D,
  kVK_ANSI_RightBracket         = 0x1E,
  kVK_ANSI_O                    = 0x1F,
  kVK_ANSI_U                    = 0x20,
  kVK_ANSI_LeftBracket          = 0x21,
  kVK_ANSI_I                    = 0x22,
  kVK_ANSI_P                    = 0x23,
  kVK_ANSI_L                    = 0x25,
  kVK_ANSI_J                    = 0x26,
  kVK_ANSI_Quote                = 0x27,
  kVK_ANSI_K                    = 0x28,
  kVK_ANSI_Semicolon            = 0x29,
  kVK_ANSI_Backslash            = 0x2A,
  kVK_ANSI_Comma                = 0x2B,
  kVK_ANSI_Slash                = 0x2C,
  kVK_ANSI_N                    = 0x2D,
  kVK_ANSI_M                    = 0x2E,
  kVK_ANSI_Period               = 0x2F,
  kVK_ANSI_Grave                = 0x32,
  kVK_ANSI_KeypadDecimal        = 0x41,
  kVK_ANSI_KeypadMultiply       = 0x43,
  kVK_ANSI_KeypadPlus           = 0x45,
  kVK_ANSI_KeypadClear          = 0x47,
  kVK_ANSI_KeypadDivide         = 0x4B,
  kVK_ANSI_KeypadEnter          = 0x4C,
  kVK_ANSI_KeypadMinus          = 0x4E,
  kVK_ANSI_KeypadEquals         = 0x51,
  kVK_ANSI_Keypad0              = 0x52,
  kVK_ANSI_Keypad1              = 0x53,
  kVK_ANSI_Keypad2              = 0x54,
  kVK_ANSI_Keypad3              = 0x55,
  kVK_ANSI_Keypad4              = 0x56,
  kVK_ANSI_Keypad5              = 0x57,
  kVK_ANSI_Keypad6              = 0x58,
  kVK_ANSI_Keypad7              = 0x59,
  kVK_ANSI_Keypad8              = 0x5B,
  kVK_ANSI_Keypad9              = 0x5C
};

/* keycodes for keys that are independent of keyboard layout*/
enum {
  kVK_Return                    = 0x24,
  kVK_Tab                       = 0x30,
  kVK_Space                     = 0x31,
  kVK_Delete                    = 0x33,
  kVK_Escape                    = 0x35,
  kVK_Command                   = 0x37,
  kVK_Shift                     = 0x38,
  kVK_CapsLock                  = 0x39,
  kVK_Option                    = 0x3A,
  kVK_Control                   = 0x3B,
  kVK_RightShift                = 0x3C,
  kVK_RightOption               = 0x3D,
  kVK_RightControl              = 0x3E,
  kVK_Function                  = 0x3F,
  kVK_F17                       = 0x40,
  kVK_VolumeUp                  = 0x48,
  kVK_VolumeDown                = 0x49,
  kVK_Mute                      = 0x4A,
  kVK_F18                       = 0x4F,
  kVK_F19                       = 0x50,
  kVK_F20                       = 0x5A,
  kVK_F5                        = 0x60,
  kVK_F6                        = 0x61,
  kVK_F7                        = 0x62,
  kVK_F3                        = 0x63,
  kVK_F8                        = 0x64,
  kVK_F9                        = 0x65,
  kVK_F11                       = 0x67,
  kVK_F13                       = 0x69,
  kVK_F16                       = 0x6A,
  kVK_F14                       = 0x6B,
  kVK_F10                       = 0x6D,
  kVK_F12                       = 0x6F,
  kVK_F15                       = 0x71,
  kVK_Help                      = 0x72,
  kVK_Home                      = 0x73,
  kVK_PageUp                    = 0x74,
  kVK_ForwardDelete             = 0x75,
  kVK_F4                        = 0x76,
  kVK_End                       = 0x77,
  kVK_F2                        = 0x78,
  kVK_PageDown                  = 0x79,
  kVK_F1                        = 0x7A,
  kVK_LeftArrow                 = 0x7B,
  kVK_RightArrow                = 0x7C,
  kVK_DownArrow                 = 0x7D,
  kVK_UpArrow                   = 0x7E
};

/* ISO keyboards only*/
enum {
  kVK_ISO_Section               = 0x0A
};

/* JIS keyboards only*/
enum {
  kVK_JIS_Yen                   = 0x5D,
  kVK_JIS_Underscore            = 0x5E,
  kVK_JIS_KeypadComma           = 0x5F,
  kVK_JIS_Eisu                  = 0x66,
  kVK_JIS_Kana                  = 0x68
};

Saturday, November 12, 2011

Get Android working with WPS router when WPS seems to fail

This is a quick hack for Android phones trying to connect to routers using WPS.

The built in Android software for this functionality seems quite unstable so in case you are having issues with connecting to a router like myself here is what I did to fix the issue. (this likely works with software that is not MS but I have not verified)

1. Connect using a laptop or other compatible device to the router.
2. View the connection properties and the security settings. The encryption type on my Windows 7 system indicates WPA-Personal Encryption type: TKIP.
3. Click "Show characters"
4. Connect to network WITHOUT WPS Available setting and enter password from step 3.

Good luck!

Tuesday, January 11, 2011

When tax cuts are a violation of the Constitution

First of all, I don't agree with the notion that government officials should get to establish their current or future compensation. So please take that as a grain of salt as I use the constitution as an argument against the Obama tax cuts. Yes, "Obama tax cuts". If Afghanistan is Obama's war then by the same logic Bush's tax cuts are now Obama's, I'll point you to a signature if you disagree.

I have a couple other quick suggestions to make so that I can claim to be constructive and not just a naysayer.

>>The salaries for the Executive and Legislative branches should be a reflection of the economic status of the country based on actual metrics such as GDP and/or median income.

>>The long term benefits of each member should also be a reflection of the growth or decline of the country during their tenure.

>>Lobbyists should be exempt from any current or pending benefits from the government. (It seems to makes sense that elected officials should lose benefits should they chose to exploit the connections established during public tenure. Such a policy would likely not be very effective for stopping revolving door issues between government and industry but at least it will slightly lower expenditures and establish a positive incentive structure. This should also help to protect against financial feedback loops between government officials and lobbyists.)

Now, with that said I think there is little doubt that the salaries of most elected officials are merely bread crumbs for the total incomes of such individuals (see http://www.opensecrets.org/pfds/index.php). For example President Obama, Bush(s), Clinton, etc. are all millionaires as a direct result of their political endeavors, not the 400k they make per year as president. Be it a result of book deals, speaking events or less legal means such as: http://www.washingtonpost.com/wp-dyn/content/article/2008/07/01/AR2008070103008.html or http://www.nytimes.com/2008/06/18/washington/18dodd.html or http://www.cnn.com/2010/POLITICS/02/25/rangel.ethics/index.html?iref=allsearch or http://www.nytimes.com/2010/09/12/us/politics/12boehner.html?_r=2&hp=&adxnnl=1&pagewanted=all&adxnnlx=1294747825-bHxQvr6L60Dv4iPu9ON1kg

Note: I don't begrudge anyone for the amount of money they make so long as it is moral and legal.

Now to the meat of the post:

AMENDMENT XXVII
Originally proposed Sept. 25, 1789. Ratified May 7, 1992.

No law, varying the compensation for the services of the Senators and Representatives, shall take effect, until an election of representatives shall have intervened.


Total compensation is not just a measurement of income but also an offset from taxes. Therefore, tax cuts that (disproportionally) benefit Senators and Representatives violate the 27th Amendment in that they are laws that very the compensation of Senators and Representatives and these changes take effect within their own terms.

So is it any wonder that the Obama tax cuts passed (again)? Why would the legislature or Obama be against receiving a huge increase in income? These tax cuts were unconstitutional with Bush as president and still are with Obama.

Note: Now only the Republican side matters in this picture.

References:

http://voices.washingtonpost.com/ezra-klein/2010/08/the_bush_tax_plan_vs_the_obama.html

House & Senate Salaries (Interesting note: In 1990 the Senator's pay began to outpace Representative's pay, this lasted until 1992)
http://www.senate.gov/reference/resources/pdf/97-1011.pdf
http://usgovinfo.about.com/od/uscongress/a/congresspay.htm

President's Salary
http://usgovinfo.about.com/od/thepresidentandcabinet/a/presidentialpay.htm
http://www.senate.gov/reference/resources/pdf/98-53.pdf
Random Note: While researching different resources on presidential salaries (http://en.wikipedia.org/wiki/President_of_the_United_States) I noticed the following image:

Wikipedia for "Bush Tax Cuts"
http://en.wikipedia.org/wiki/Bush_tax_cuts

A final note:

A picture really is worth a thousand words.

Tuesday, July 20, 2010

5 of the Worst Movies I've ever seen

What the #$*! Do We Know!?
8MM
Crash
Signs
Expelled: No Intelligence Allowed

Monday, May 24, 2010

US GPD: A nearly perfect parabola



Is this graph just scaled against the US economy or does the US have nearly perfect economic growth?

I'm no economist so can someone explain why the US GPD behaves in a nearly perfect parabola? The line is too perfect, it reminds me of Madoff's performance vs. Possible Replications on page 4:
http://www.riskdata.com/files/news/Madoff_Bias_Ratio.pdf


It is interesting that the rest of the worlds economies show similar positive and negative trends over time indicating an
interdependence between the world economies. Nearly every  country suffers from shared global economic cycles with exception of the US? Even countries like Mexico and Canada follow world trends but not the US. Many countries also go negative many times relative to their own prices for longer periods than the US ever does even in years commonly accepted as US recessions.

Update: The good news is that the new numbers are in and they aim to prove me wrong. The bad news is that for the first time in recent history the US's GDP has significantly declined between 2007 and 2008.

Saturday, May 22, 2010

Create a dynamic class in python and then use introspection to evalute each member of that class

>>> class Test():
...     pass
...
>>> a = Test()
>>> a.blah = 5
>>> dir(a)
['__doc__', '__module__', 'blah']
>>> for x in dir(a):
...     if "__" not in x:
...             print eval("a." +str(x))
...
5