| Function | Shortcut |
|---|---|
| Fullscreen | ⌘+ Enter |
| Previous Tab | ⌘+ Left Arrow |
| Next Tab | ⌘+ Right Arrow |
| Go to Tab | ⌘ + Number |
| Go to Window | ⌘ + Option + Number |
| Go to Split Pane by Direction | ⌘ + Option + Arrow |
My therapist pissed me off a little today. I guess it's been percolating through my head today, but I haven't really put my finger on it until now.
I went in for my normally scheduled appointment, and asked her if I could get a letter for my orchiectomy (they only require this, and this alone). She said no problem, but she doesn't feel comfortable making a /recommendation/. She said she will confirm the diagnosis, and affirm that I'm capable of making the decision, but they don't like recommending anything because of potential "problems".
When I mentioned that studies have shown that 1% or less regret transition, she smiled and said that that's true, but they only hear about that 1%. Then she mentioned something about malpractice suits.
And there's our problem: our medical system is so afraid of the potential of a lawsuit or other problems, that the 99% of us have to jump through lengthy hoops to do what we know we have to do. We're treated as though we have a mental issue, and have to go through months an
| NSArray* nib = [[NSBundle mainBundle] loadNibNamed:@"TCSNumberKeyPad" owner:self options:nil]; | |
| [[nib objectAtIndex:0] setFrame:CGRectMake(0, 0, 1024, 352)]; | |
| self = [nib objectAtIndex:0]; |
| (function(){ | |
| var p = Date.prototype; | |
| p.val = 0; | |
| p.add = function(num) { | |
| this.val = num; | |
| return this; | |
| }; | |
| p.subtract = function(num) { |
| (function(){ | |
| Array.prototype.first = function() { | |
| return this[0]; | |
| }; | |
| Array.prototype.last = function() { | |
| return this[this.length - 1]; | |
| }; | |
| Array.prototype.skip = function(num) { | |
| return this.slice(num,this.length); | |
| }; |
| Math.floor((Math.random()*1000000000) + now.getTime()).toString(36); |
| #import <Foundation/Foundation.h> | |
| #import <CoreLocation/CoreLocation.h> | |
| typedef void (^ CallbackBlock)(float, float, NSError*); | |
| @interface LocationHelper : NSObject <CLLocationManagerDelegate> | |
| + (LocationHelper*) instance; | |
| - (void) getLocation:(CallbackBlock)block; | |
| @end |
| import wx | |
| import poplib | |
| import imaplib | |
| import re | |
| import time | |
| import cPickle | |
| import os,sys | |
| import random | |
| import zlib |
| cell = [[[SearchCellTop alloc] initWithStyle:UITableViewCellStyleDefault reuseIdentifier:cellIdentifier] autorelease]; | |
| NSArray* objects = [[NSBundle mainBundle] loadNibNamed:@"SearchCellTop" owner:cell options:nil]; | |
| cell = [objects objectAtIndex:0]; |
| - (void)webViewDidFinishLoad:(UIWebView *)webView { | |
| CGFloat contentHeight = [[webView stringByEvaluatingJavaScriptFromString: | |
| @"document.documentElement.scrollHeight"] floatValue]; | |
| webView.frame = CGRectMake(webView.frame.origin.x, webView.frame.origin.y, | |
| webView.frame.size.width, contentHeight); |