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-05-31T07:05:50.995Z",
"machine": {
"cpu": "x86_64",
"ram": "16 GB",
"os": "Linux 6.17.0-1015-azure",
"bunVersion": "1.3.14",
"nodeVersion": "v24.16.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 \;