Rory
- Total activity 10
- Last activity
- Member since
- Following 0 users
- Followed by 0 users
- Votes 1
- Subscriptions 4
-
Rory created a post, Quick refactoring of inline JS to styles object?
I am working on a React Native project. Many of the components in the project use inline styles. <Flex style={{ paddingBottom: 2, paddingLeft: 2, }} direction="column"> <Flex.Item> <Text style=... -
Rory created a post, Option + Space to open terminal means the command I type doesn't work
I have Option + Space set to open my terminal.It sometimes adds a space character to the command line. So before I start typing, a space character is already there. This means I end up typing (for ... -
Rory created a post, Importing Settings does not import settings set in Preferences
I am using Import Settings and Export Settings to toggle between two separate settings configs.In one config, I want Tools > Browsers > Show browser popup in the editor to be checked. In the other ... -
Rory commented, -
Rory created a post, How do I extract a portion of JSX into its own method?
Given I have the following: export default class Blah extends React.Component { render() { return ( <div> <div> <div>foo</div> </div> <...