Skip to content

Instantly share code, notes, and snippets.

View RemRyahirev's full-sized avatar

Andrey Ryakhovskiy RemRyahirev

  • Portugal, Cascais
View GitHub Profile
{
"date": "2026-08-09T04:24:33.622Z",
"machine": {
"cpu": "x86_64",
"ram": "16 GB",
"os": "Linux 6.17.0-1020-azure",
"bunVersion": "1.3.14",
"nodeVersion": "v24.18.0"
},
"settings": "50 connections, 10s duration",
@RemRyahirev
RemRyahirev / remove_bom.sh
Created February 20, 2018 10:37
Remove BOM from all affected files in current dir recursive
#!/bin/sh
find . -type f -exec sed 's/^\xEF\xBB\xBF//' -i.bak {} \; -exec rm {}.bak \;