To toast:
- Make sure you have ImageMagick installed (
brew install imagemagick) - Change line 7 of toast.rb to the repository name you're working with
- toast!
$ bundle install
$ ./get_token [user] [pass]
$ export GHUSER=[myuser]
| #ifndef NS_DESIGNATED_INITIALIZER | |
| #if __has_attribute(objc_designated_initializer) | |
| #define NS_DESIGNATED_INITIALIZER __attribute((objc_designated_initializer)) | |
| #else | |
| #define NS_DESIGNATED_INITIALIZER | |
| #endif | |
| #endif |
| #!/usr/bin/python | |
| import sys | |
| import os, shutil | |
| import subprocess | |
| import os.path | |
| from datetime import datetime | |
| ######################## Functions ######################### |
| (* Create Notebook Index Note With Hyperlinks to All Notes in that Notebook *) | |
| property LF : ASCII character 10 | |
| tell application "Evernote" | |
| set nbNames to name of every notebook | |
| set nbNames to my simple_sort(nbNames) | |
| set nbName to choose from list nbNames with title "Create Index Note for which Notebook?" | |
| set nbName to nbName as string | |
| //This validation method is completely generic; it dispatches to validate<Action>:, where <Action> is the item's action, duly initially-capitalized. | |
| - (BOOL) validateUserInterfaceItem:(id <NSValidatedUserInterfaceItem>)item { | |
| SEL action = [item action]; | |
| if (![self respondsToSelector:action]) { | |
| //We don't respond to the action, so unconditionally return NO. | |
| return NO; | |
| } | |
| /*Determine the selector of the message to send ourselves for actual validation. | |
| */ |
| // | |
| // CrashlyticsLogger.h | |
| // | |
| // Created by Julien Grimault on 4/1/13. | |
| // | |
| // | |
| #import "DDLog.h" | |
| @interface CrashlyticsLogger : DDAbstractLogger |
| #import <RestKit/RestKit.h> | |
| #import "CoreData+MagicalRecord.h" | |
| // Use a class extension to expose access to MagicalRecord's private setter methods | |
| @interface NSManagedObjectContext () | |
| + (void)MR_setRootSavingContext:(NSManagedObjectContext *)context; | |
| + (void)MR_setDefaultContext:(NSManagedObjectContext *)moc; | |
| @end | |
| @implementation AppDelegate |
To toast:
brew install imagemagick)$ bundle install
$ ./get_token [user] [pass]
$ export GHUSER=[myuser]
| diff --git a/subsonic-main/src/main/java/net/sourceforge/subsonic/service/SettingsService.java b/subsonic-main/src/main/java/net/sourceforge/subsonic/service/SettingsService.java | |
| index f7031bf..39ee5b4 100644 | |
| --- a/subsonic-main/src/main/java/net/sourceforge/subsonic/service/SettingsService.java | |
| +++ b/subsonic-main/src/main/java/net/sourceforge/subsonic/service/SettingsService.java | |
| @@ -620,14 +620,11 @@ public class SettingsService { | |
| } | |
| public boolean isLicenseValid() { | |
| - return isLicenseValid(getLicenseEmail(), getLicenseCode()) && licenseValidated; | |
| + return true; |
| { | |
| "Statement":[ | |
| { | |
| "Action":[ | |
| "route53:ChangeResourceRecordSets", | |
| "route53:GetHostedZone", | |
| "route53:ListResourceRecordSets" | |
| ], | |
| "Effect":"Allow", | |
| "Resource":[ |
| #!/bin/bash | |
| # This script automatically sets the version and short version string of | |
| # an Xcode project from the Git repository containing the project. | |
| # | |
| # To use this script in Xcode 4, add the contents to a "Run Script" build | |
| # phase for your application target. | |
| set -o errexit | |
| set -o nounset |