Maximus

Results 20 comments of Maximus

I find it's breaking on this: ``` // Sort by pickup times NSArray *timesArray = [[timesDict allValues] sortedArrayUsingComparator:^NSComparisonResult(id obj1, id obj2) { NSDate *d1 = [DateUtility dateForOrderDateString:(NSString *)obj1[@"date"]]; NSDate *d2...

This works, but takes 5+ seconds to save: ``` // Sort by pickup times NSArray *timesArray = [[timesDict allValues] sortedArrayUsingComparator:^NSComparisonResult(id obj1, id obj2) { NSString *date1 = obj1[@"date"]; NSString *date2...

Would expect it to grab chars 4 through 8 in the below case. currently: `"abcdefgh"[4.. `""` // blank string expected example: `"abcdefgh"[4.. `"efgh"` Pull request: https://github.com/amayne/SwiftString/pull/22

Unfortunately this didn't fix the above error for me. Any other steps you may have done? Android Studio 0.9.2, Gradle 2.1, OSX ![image](https://cloud.githubusercontent.com/assets/1643285/5234510/70d28232-77d7-11e4-9939-366edc639504.png) ![image](https://cloud.githubusercontent.com/assets/1643285/5234522/aca5dc14-77d7-11e4-9dcf-99807e9f547f.png) ``` retrolambda { jdk System.getenv("JAVA_8") //have...

Below is my current, ugly-hardcoded, solution :( ``` retrolambda { jdk '/Library/Java/JavaVirtualMachines/jdk1.8.0_25.jdk/Contents/Home'//System.getenv("JAVA_8") oldJdk System.getenv("JAVA7_HOME") javaVersion JavaVersion.VERSION_1_7 } ```

This appears to be happening again :| `ERROR: function extensions.moddatetime() does not exist (SQLSTATE 42883)`

For the next person. If you pull your migrations and limit to certain schemas `--schema public,auth,storage` you must add the `extensions` schema... Fun

ya, jk. this is broken, even when adding in the `extensions`

> ```sql > CREATE EXTENSION IF NOT EXISTS moddatetime > SCHEMA "extensions"; > ``` ^^ In the earliest seed file, go "find" moddatetime, and then above the first occurrence add...