Maximilian Alexander
Maximilian Alexander
Right now I'm having trouble with the i386 architecture. When you build with xcode you'll notice this warning: ``` ld: warning: ignoring file /Users/maxalex/ditto/ditto-crdt-lib/target/universal/release/libditto.a, missing required architecture i386 in file...
I'm very much interested in helping to contribute a JS-WASM effort!
I ended up not using this project :-\ On Sun, Jun 5, 2016 at 11:20 AM Gman9855 [email protected] wrote: > Did you ever find a solution to this? I'm looking...
I ended up writing my own implementation of a sliding menu. On Sun, Jun 5, 2016 at 11:23 AM Gman9855 [email protected] wrote: > What did you use instead? > >...
The example has 0.1 in the timer I wanted 60 frames per second, so I selected `0.016` ``` waveTimer = Timer.scheduledTimer(timeInterval: 0.016, target: self, selector: #selector(evaluateWave), userInfo: waveView, repeats: true)...
I'm also having the same problem... Can't seem to figure it out.
This would certainly make offline first a priority on mobile.
I think it will be critical to offline data with something like RealmDB On Sun, Sep 25, 2016 at 2:22 PM Josh Kuhn [email protected] wrote: > If you want to...
Thanks so much!! Hmm that's what I've been trying: Here's a dummy project that shows what I'm doing: https://github.com/mbalex99/rocksdb-liquid You can open `Examples/Liquid.xcworkspace` and if you build it you will...
Ah this is what I had to do 1. add this to the podspec ``` s.dependency 'ObjectiveRocks' s.ios.pod_target_xcconfig = { 'GCC_PREPROCESSOR_DEFINITIONS' => 'ROCKSDB_LITE=1 IOS_CROSS_COMPILE=1 NROCKSDB_THREAD_STATUS=1' } ``` 2. And in...