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
<PluginPreferences> | |
<VideoQuality>720p</VideoQuality> | |
</PluginPreferences> |
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 ruby | |
require 'net/http' | |
# usage | |
# tweet2tumblr http://twitter.com/kristaderamus/statuses/1278922567 | |
# authentication | |
email = "[email protected]" | |
password= "yourpassword" | |
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
11:16:22 T:2686240544 M:408170496 NOTICE: Mapping drive Z to /tmp/plex | |
11:16:22 T:2686240544 M:408100864 NOTICE: Mapping drive Q to /Applications/Plex.app/Contents/Resources/Plex | |
11:16:22 T:2686240544 M:408100864 NOTICE: Mapping drive T to /Users/jmaddox/Library/Application Support/Plex | |
11:16:22 T:2686240544 M:408100864 NOTICE: Mapping drive U to /Users/jmaddox/Library/Application Support/Plex | |
11:16:22 T:2686240544 M:408088576 NOTICE: ----------------------------------------------------------------------- | |
11:16:22 T:2686240544 M:408084480 NOTICE: Starting Plex, Platform: Mac OS X. Built on Mar 9 2009 | |
11:16:22 T:2686240544 M:408084480 NOTICE: Plex version 0.7.13-e61c0c4. | |
11:16:22 T:2686240544 M:408084480 NOTICE: Q is mapped to: /Applications/Plex.app/Contents/Resources/Plex | |
11:16:22 T:2686240544 M:408084480 NOTICE: The executable running is: /Applications/Plex.app/Contents/MacOS/Plex | |
11:16:22 T:2686240544 M:408084480 NOTICE: Log File is located: /Users/jmaddox/Library/Logs/Plex.log |
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
$ defaults write com.apple.Safari DebugSafari4IncludeToolbarRedesign -bool NO | |
$ defaults write com.apple.Safari DebugSafari4LoadProgressStyle -bool NO |
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
- Quit Safari | |
- Locate 1Password in your /Applications folder | |
- Ctrl-click > Show Package Contents | |
- Contents > Resources > SupportedBrowsers.plist | |
- Root > Safari > MaxBundleVersion > Change 5525.9 to 5528.16 (Safari 4 Developer Preview's bundle version is 5526.11.2) | |
- Start Safari |
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
This is my readme |
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
<!-- PYROT EXTRA --> | |
<item id="10000000"> | |
<description>Pyrot button</description> | |
<label> Pyrot </label> | |
<label2> Download with </label2> | |
<visible>!Skin.HasSetting(HideMovies)</visible> | |
<onclick>XBMC.ActivateWindow(MyVideoLibrary,plugin://video/pyrot,return)</onclick> | |
</item> | |
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
## treat this as a binary, don't show in diffs, and ignore from merges | |
*.pbxproj -crlf -diff -merge | |
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
Feature: Create customer rental | |
In order to make money | |
An admin | |
Should be able to create new customer rentals | |
Scenario: Create a new customer rental | |
Given an admin user | |
When the admin is logged in | |
And is on the customers page | |
Then I should see "Jon Maddox" |
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
- (void)viewDidLoad { | |
self.title = @"Finding tweets..."; | |
// get tweets | |
[NSThread detachNewThreadSelector:@selector(getTweets) toTarget:self withObject:nil]; | |
} | |
- (void)getTweets{ | |
NSAutoreleasePool *pool = [[NSAutoreleasePool alloc] init]; | |