Kenneth Lim

Results 443 comments of Kenneth Lim

I did a bit more tests and there are two bottle necks both file loads, namely reference.js and data.json. The problem is that reference.js is quite big itself and data.json...

I might have a go at this in a couple weeks time when I'm done with my own stuff. Plan is to improve load speed on the web and to...

I agree that leveraging cdnjs is a good idea but as far as I know, ISP in some countries are known to block, intentionally or unintentionally, calls to the CDN....

@maruilian11 To keep the local copies, for modernizr the test will simply become ``` window.Modernizr || document.write(LOAD LOCAL COPY); ``` However, for normalize it is much harder if not impossible....

@maruilian11 we can use modernizr directly from cdnjs while have a local copy as back up: ``` window.modernizr || document.write('') ``` The same goes for prism.js as soon as it's...

@swirly I believe that's something being worked on at the moment for the new website backend. Not sure what the current status is though. Would be great to have multiple...

@aamontoya89 Used to to localisation QA so do let me know. I can do both simplified and traditional Chinese. 😃

**Just a note to self, feel free to ignore.** https://github.com/CodingTrain/website/blob/main/CodingChallenges/CC_130_Fourier_Transform_1/P5/fourier.js

Sure that's fine. I'm still curious why FileReader is used instead of Blob directly though.

@stukennedy That gives a `TypeError: Can't modify immutable headers.` and even if it worked I would need to parse the XML response myself if I need anything from the response...