Tanguy Krotoff

Results 69 issues of Tanguy Krotoff

**Description** Have the possibility to mark ECS containers as non essential Currently all containers are marked as essential: https://github.com/docker/compose-cli/blob/79770d5803d1b475409aad187b11a2b63d79a037/ecs/convert.go#L122 **Use case** I have a container that initialises (create, seed...) the...

With stylelint 15 the stylistic rules have been removed in favor of tools like Prettier. > When we created these rules, pretty printers (like [Prettier](https://prettier.io/)) didn't exist. They now offer...

https://github.com/remix-run/react-router/releases/tag/react-router%406.4.0 - Error handling: https://reactrouter.com/en/main/start/tutorial#handling-not-found-errors - Loading data: https://reactrouter.com/en/main/start/tutorial#loading-data - Form action: https://reactrouter.com/en/main/start/tutorial#updating-contacts-with-formdata See also https://www.reddit.com/r/reactjs/comments/11ftptf/is_react_router_v6_overengineered/

> Bootstrap[...] > these frameworks can add unnecessary bloat to an experience [...] > users still have to download the framework’s unused CSS and JavaScript, resulting in slower page loads...

This package is unfortunately not tested. Would be nice to unit test the source code

Layout: ``` ./client/gulpfile.ts ./server/gulpfile.ts # Contains "scripts": {"build": "gulp --cwd client build && gulp --cwd server build"} # so one can run `npm run build` to build both client and...

``` HTML Green Bold blue Blue Turquoise Light green Bold green Yellow Orange Red Bold red Purple Gray ``` ### With jQuery ``` JavaScript $('#colorpicker').val(); ``` returns null ### Without...

Pressing enter key should select the color

enhancement

See https://twitter.com/lcasdev/status/1564598435772342272 - https://developer.mozilla.org/en-US/docs/Web/API/Response/json_static - https://caniuse.com/mdn-api_response_json_static - https://github.com/WebKit/WebKit/commit/206817f17f39b6de35ea63268b74b750030d574f Here: https://github.com/tkrotoff/fetch/blob/v0.16.0/src/createHttpError.ts#L30-L34 ```TypeScript new Response(JSON.stringify(body), { status, statusText, headers: { 'content-type': jsonMimeType } }) ``` becomes ```TypeScript Response.json(body, { status, statusText })...

Implement upload progress example - https://www.reddit.com/r/reactjs/comments/rmhkw7/modern_api_datafetching_methods_in_react/hppzra5/ - https://stackoverflow.com/q/35711724 - https://developer.mozilla.org/en-US/docs/Web/API/Response/body - https://developer.mozilla.org/en-US/docs/Web/API/ReadableStream