joshxyzhimself
joshxyzhimself
- https://news.ycombinator.com/item?id=30970720 - https://github.com/ekzhang/bore
Related - https://guardianproject.info/2021/11/30/implementing-tls-encrypted-client-hello/ - https://news.ycombinator.com/item?id=29530811
this is actually cool to have in js api too
Aside from worse compile times, has anyone noticed the larger memory build-up? On subsequent edits and re-bundling of my code my ram usage just keeps stacking up.
:smile_cat: :smile_cat: :smile_cat: @alexander-akait just simple bundle sir edit file -> recompile -> ram usage increase edit file again -> recompile -> ram usage increase edit file again -> recompile...
is webpack the new slack? :smile_cat: 
The official data for this can be found at the Philippine Standard Geographic Code (PSGC) published by the Philippine Statistics Authority (PSA). - https://psa.gov.ph/classification/psgc/ At the right part of the...
Also it should be noted that the Philippines has the concept of "Municipalities" which are like small cities. > A municipality is a local government unit (LGU) in the Philippines....
Can use lovell's sharp easily https://github.com/lovell/sharp ```js const sharp = require('sharp'); ``` ```js const image_buffer = fs.readFileSync(image_path); const image_buffer_jpeg = await sharp(image_buffer).resize(240, 144, { fit: 'contain' }).jpeg().toBuffer(); const pdf_image =...
Are there any advantages in building websockets here on top of undici compared to what exists in https://github.com/websockets/ws? (maybe performance?)