Ben Clayton

Results 20 comments of Ben Clayton

@romgrk-comparative This really helped me :-). Thanks. I improved the 'bit brittle' part by using built-in utilities from craco to grab `babel-loader` without 'magic numbers' in the code. ```javascript const...

I found a workaround! Summary: ``` cd /Applications/PhpStorm.app/Contents/bin/ cp idea.properties idea.properties.bak nano idea.properties ``` Edit the line: ``` idea.max.intellisense.filesize=2500 ``` To read: ``` idea.max.intellisense.filesize=5000 ``` .. restart and bingo! Documentation...

@slonv23 That should work but will the Image.getSize call use the cached version of the image? I suspect it may result in another request to download the image as we're...

@Thrajnor Hi there. For me, another network request was made when `Image.getSize()` is used with a remote image. I had a temporarily misconfigured server that resulted in the whole image...

I find myself using BINDO quite a lot, especially for marking computed properties as requiring updating. For example: ``` obj-c [BINDO(self, quantity) observe:^(id observable, NSNumber *value, NSDictionary *observationInfo) { [self...

@thisiscam Did you ever get this working programmatically? I tried deleting the initWithNib method with no luck

Thanks for the quick response. I had a look at that’s basically what I did too. Not sure why mine isn’t working, I get no theming or ‘tap ripples’ or...

@agilgur5 is this fix likely to make it in do you think? styled-components/macro support would be extremely useful in the library we're building

i also found this issue, and resolved it by editing `~/.aws/config` and making sure my non-default profile had a region set in there by adding this: ``` [profile myotherprofile] region=eu-west-2...