Lukas

Results 37 comments of Lukas

one thing i have found is that you can check wether an application is currently frontmost via applescript (or via python applescript bridge, because applescript is horrible). so the workflow...

of topic: Jonyjack you can indeed activate multitasking, hat it on my ol iPhone 3g for a long time, google will help. btt: maybe you should bring up the alert...

Quite excited for this feature! One thing I think might be worth considering is support for some more traditional file sharing protocols. In my particular use case, we have a...

Yes, I have experienced issues with "recent versions of iOS ;)" too. The code is running into a loop between `-inputKeyboardDidShow:` and `-reAssignFirstResponder`.

For me it occurred when I had two inputs, selected one (bringing the keyboard up) and then changed to the other one by tapping on it. I'll see if I...

Regarding the iOS7 support: I don't like the `UIScrollViewKeyboardDismissModeInteractive` much, at least not how it is now. I could live with the need for a scrollView, but the implementation is...

Not exactly. The problem with using #90 and `equal` or `contains` is that they still only allow assertions about the elements in the array. I need to check properties of...

@paulsamuels that's almost what I need, but (aside from not looking that elegant, ymmv) has one flaw: When I want to test wether the array contains two objects, each having...

an example yould be [this comment](https://github.com/specta/expecta/issues/95#issuecomment-39149477), assert that any of the elements in the array passes the matcher, then assert any element passes another matcher

I'm experiencing the same issue as @tranquvis. A minified version of my handler is this: ```swift JSONResponse { env, respond in let input = env["swsgi.input"] as! SWSGIInput JSONReader.read(input) { data...