Steven Kabbes

Results 40 comments of Steven Kabbes

Ah... agreed. We ran across the same thing. What you can do is [Context.openFileOutput](http://developer.android.com/guide/topics/data/data-storage.html#filesInternal) to write a file out, and then use [Context.getFilesDir](http://developer.android.com/reference/android/content/Context.html#getFilesDir%28%29) to determine what the base path for...

If you place the lib in APP_ROOT/lib/armeabi/libjninode.so, then the library will automatically be be placed in the correct library location of your app. Then you can use `System.loadLibrary("jninode")` instead of...

Yep, I'll look into it later today.

> need to psubscribe on non graphQL mutation events This might be true. Since the code base I work on isn't GraphQL everywhere yet, so I don't know enough about...

Ya, fair enough on the `asyncIterator` comment - I guess I sort of read it more as `createAsyncIterator` (the function that creates the datastructure). I tried to do a solution...

I don't have code that i can plop right into the up project, but I did recently write a script to do just this. Hopefully it can save you, or...

Hi everyone! My team is currently doing a proof of concept to switchover from SQS to graphile-worker, and I after reviewing the code and some of the PRs this one...

re: cron - completely understand, just wanted to provide some end-user insight to the maintainers. > That’s why the various values should be configurable and have long timeouts Ok, awesome....

Thanks for the thoughtful answer! Long jobs - sounds like just sharp edges of doing long-running jobs in general (and I'd have those problems in _any_ job queue - that...

I wonder if exposing a library function to read a task list from a directory would facilitate a lot of these requests. For example: ```javascript // pseudo-code import { run,...