Geordie J

Results 53 comments of Geordie J

FWIW this would be extremely valuable for us @evanw. Currently each deployment we make creates hundreds of new files, even if nothing actually changed in the code (our issue is...

Hi there! I'm just wondering if code splitting with IIFE is still interesting to @evanw and others. As much as we'd love to use `esm` for our browser output, we...

I would like to quickly chime in on this discussion again because it's been a few months since I last wrote. In July I put a bunch of work into...

``` var supportedLngs = ['en', 'de']; _.each(supportedLngs, function (lng) { if( lng === 'en' ) return; var obj = require('numeral/languages/'+lng); numeral.language(lng, obj); }); ``` ok I looked at some more...

We are running into the same issue (also using `graphql`). You were asking about why anyone would do that, the reason is security, to avoid prototype pollution attacks: https://book.hacktricks.xyz/pentesting-web/deserialization/nodejs-proto-prototype-pollution#examples. >...

Hi @janek, I'd really like to get this PR merged because it's been open for a long time. My main concern is still this ordering of the indicators. I have...

@janek we could override `var subviews` to return a filtered version of `private var _subviews = [UIView]`. It's tricky though because AFAIK we're using `subviews` for some "internal" UIKit logic,...

@hakkurishian sorry, this seems to have flown under our radar. We don’t currently have plans to implement edit ability on UITextView because we have tasks that directly affect our app...

Sure thing! Yes it’s not an overnight job but get back to me when you have more clarity and I’m happy to outline the bits and pieces that’d go into...

The main thing is- the whole project is iterative. You wouldn’t need to implement every single detail at once. As you can see the UITextView does just what we need...