Seph Soliman

Results 70 comments of Seph Soliman

Move fast, break things ;)

There's a caveat for @pawelkowalak's suggestion in that `.Valid` needs to be set to `true` if that's the only error. Otherwise you may later do `if token.Valid {` and find...

@KristobalJunta You can read the source code, but here's an example: ```javascript var irc = require('irc'); var client = new irc.Client('xxx', 'username', { password: 'xxxxx', debug: true, channels: ['#somehannel'], });...

Hi Twilly I don't have official angular/React support yet, meaning there's no official way to add and remove checkboxes dynamically. BUT... that being said. If you call `DragCheck.attachEvents([ element1, element2,...

To address @ccampbell's question: I understand your challenge from a user perspective, and I'd say you're right. A key shouldn't need to do two things. However: I'd need this feature...

This is an Xcode/iOS simulator issue from what I've gathered. I am googling this issue and have noticed that it worked in the past. It doesn't seem to be Expo-specific...

I think this can be closed now as it seems to have been fixed in a recent version: https://github.com/itinance/react-native-fs/blob/master/android/src/main/java/com/rnfs/RNFSManager.java#L118-L126 Notice that it's now using "wrt" depending on Android version. This...

The current workaround seems to be, as @bebraw suggests, to use nodemon. I'm doing the following which works at the moment: `nodemon --watch webpack.config.js --exec webpack-dev-server --content-base app/`

@SudoPlz [They are still working on it](https://twitter.com/emilyjanzer/status/1283109297254064128?s=21). I suspect TurboModules should not be expected to work in a production setting just yet.

Ah that makes sense now. I think just documenting it clearly would suffice. It's not 100% clear how they are shared so i had to look into Apple docs and...