Fuwei Chin

Results 16 comments of Fuwei Chin

Yes,yes! Most type of auto-sent requests will accept `*/*`, e.g. requests initiated by ``,``,``, etc. + image `accept: image/webp,image/apng,image/*,*/*;q=0.8` + css `accept: text/css,*/*;q=0.1` + javascript `accept: */*` + font `accept:...

For now, `http2` is not working with the latest version of Express. You can use `spdy` with Express, or just wait for Express v5. see https://medium.com/@azatmardan/http-2-with-node-js-c928b90423d0

Consider bypassing `` by adding an option like `pragmaFragIdentifier` to identify it. Here is a solution: 1. edit babel-plugin-react-scoped-css/index.js, add the commented code below ```js JSXElement(path, stats) { if (!this.hasScopedCss...

My idea is not to add `data-v-*` support on React Fragment, but to bypass(not to add data-v-* on) Fragment. Assuming Fragment JSX can be written in 3 forms: + Short...

### Revision For the second solution, icon groups should be cached, so export and use `getIconGroups` instead of `createIconGroups`. ```jsx let iconGroups=null; function getIconGroups() { if (iconGroups===null) { iconGroups=createIconGroups(); }...

It's interesting that [Chrome 103](https://developer.chrome.com/blog/new-in-chrome-103/) supports [HTTP status code 103](https://github.com/bashi/early-hints-explainer/blob/main/explainer.md) (Early Hints). Please also consider sending status 1xx (more specifically, status 103) and headers (like 'Link') in the prereadprocessing phase...

The code to test conflux writer speed: ```js window.testWriterSpeed=function(){ let memFile=new File([new ArrayBuffer(1*1024**3)],'1GB.bin', {type:'application/octet-stream'}); console.time('zip'); let iterator=[memFile].values(); let entryStream=new ReadableStream({ async pull(controller) { const {done, value:entry} = iterator.next(); if (done)...

By the way, I created a java unit test to reproduce the error, see code below. conflux.zip standands for a zip file created with conflux 7zip.zip standands for a zip...

I use a 5inch 720x1280 touch screen, the buttons/texts Stream-Pi Client rendered are too small (and low-res) to be recognized.

The "Skip" link button doesn't work, it just cannot stop validating. Etcher for Windows 1.9.11