Tom Rogers

Results 10 issues of Tom Rogers

Parsing of options seems to work fine, but what's the deal as far as positional args? My script should accept one. Am I just on my own to figure out...

react-native v0.33.0 react-native-fs v1.5.1 I make a habit of checking the size-on-disk of each file I download, because I've noticed that sometimes a download operation will produce a truncated file...

The string syntax for specifying a `fn` is nice, but I prefer to implement my function as an actual Function. For example, instead of `fn: 'x^2'`, I wish to use...

bug
wontfix

I think I've finished integrating react-native-oauth into my app, but I'm seeing an unexpected prompt, "Open this page in APP_NAME?", in the authorization flow. I want to confirm whether this...

Per the instructions in the readme, I tried to register a new OAuth Redirect URI via Facebook's dev site. Here's the relevant part: > Before we leave the Facebook settings,...

Jimp can modify an image in a lot of ways, but the documentation doesn't explain how a person can access the image's current properties. Like reading its _current_ width or...

As far as I can tell, there's no way for me to specify the HTTP status code that should be returned by the fake call. If I'm writing a library...

Describe in the API docs how to use the options to make a node impassable. Consider this grid: ``` ┌───┐ │ A │ ├───┤ │ │ ├───┤ │ B │...

I use the decorator pattern for all top-level route components, e.g.: ``` @connect((state, props) => ({ users: state.users.filter((u) => u.isActive !== props.selectedUserGroupId) })) export default class SceneHome extends Component {...

https://github.com/marharyta/webpack-boilerplate/blob/master/webpack-sass-setup/webpack.config.js#L24 The `test` regex should be either: - `/\.s[ca]ss$/` or - `/\.s(c|a)ss$/` The current regex will return true for "s|ss": ``` /\.s[c|a]ss$/.test('.s|ss') //> true ```