Skip to content

Instantly share code, notes, and snippets.

View anyabravich's full-sized avatar
🕷️

Anya anyabravich

🕷️
View GitHub Profile
@anyabravich
anyabravich / hls.sh
Last active October 27, 2025 12:35
hls.js
# =============================================================================
# Скрипт для конвертации видео в HLS формат (TS-Video)
# Использование: ./convert-to-hls.sh input.avi [input2.avi ...]
# =============================================================================
# Цвета для вывода
RED='\033[0;31m'
GREEN='\033[0;32m'
YELLOW='\033[1;33m'
NC='\033[0m' # No Color
@anyabravich
anyabravich / index.js
Last active April 15, 2022 10:57
Next.js localStorage is not defined Error in JavaScript
if (typeof window !== 'undefined') {
console.log('You are on the browser')
// 👉️ can use localStorage here
} else {
console.log('You are on the server')
// 👉️ can't use localStorage
}
// articles: https://clck.ru/eyFce