Skip to content

Instantly share code, notes, and snippets.

View pointofpresence's full-sized avatar
🏠
Working from home

ReSampled pointofpresence

🏠
Working from home
View GitHub Profile
@pointofpresence
pointofpresence / 1660549971.js
Created August 15, 2022 07:52
Created with Copy to Gist
192
If you are using Apache as your web server, you can insert this into your .htaccess file:
<IfModule mod_rewrite.c>
RewriteEngine On
RewriteBase /
RewriteRule ^index\.html$ - [L]
RewriteCond %{REQUEST_FILENAME} !-f
RewriteCond %{REQUEST_FILENAME} !-d
@pointofpresence
pointofpresence / select multiple.jsx
Last active March 31, 2024 18:42
HTML: Тег select с мультивыбором
// В атрибут value можно передать массив, что позволит выбрать несколько опций в теге select:
<select multiple={true} value={['Б', 'В']}
// Boolean attribute 'multiple' indicates that multiple options can be selected in the list.
// If it is not specified, then only one option can be selected at a time. When `multiple` is
// specified, most browsers will show a scrolling list box instead of a single line dropdown.
@pointofpresence
pointofpresence / index types.ts
Last active March 31, 2024 14:44
Индексные типы позволяют определить тип данных для ключей объекта, которые могут быть строками, числами, символами или определенным шаблоном строк.
// Object with arbitrary string properties (like a hashmap or dictionary)
{ [key: string]: Type; }
{ [key: number]: Type; }
{ [key: symbol]: Type; }
{ [key: `data-${string}`]: Type; }
/*
Индексные типы позволяют определить тип данных для ключей объекта, которые могут быть строками, числами, символами
или определенным шаблоном строк.
@pointofpresence
pointofpresence / TS tuples.js
Last active March 31, 2024 20:44
TS: Кортежи
Basic tuples
let myTuple: [ string, number, boolean? ];
myTuple = [ 'test', 42 ];
@pointofpresence
pointofpresence / operator_&&=.js
Last active March 31, 2024 12:32
Оператор &&= используется для присваивания значения переменной только в том случае, если текущее значение переменной является «истинным» (не false, 0, NaN, null, undefined или пустой строкой).
let a;
let b = 1;
// assign a value only if current value is truthy
a &&= 'default'; // a is still undefined
b &&= 5; // b is now 5
@pointofpresence
pointofpresence / nullish_coalescing_operator.js
Last active March 31, 2024 13:33
JS: Оператор объединения с null (??=)
let a;
let b = 0;
// assign a value only if current value is null or undefined
a ??= 'default'; // a is now 'default'
b ??= 5; // b is still 0
@pointofpresence
pointofpresence / overloads.ts
Last active March 31, 2024 18:22
TS: Перегрузка функций
// Overloads
function conv(a: string): number;
function conv(a: number): string;
function conv(a: string | number): string | number {
// ...
}
@pointofpresence
pointofpresence / ffmpeg split .bat
Last active March 31, 2024 20:29
FFmpeg: Разбить видео на фрагменты по времени
https://stackoverflow.com/questions/5651654/ffmpeg-how-to-split-video-efficiently - VIDEO SPLIT
time ffmpeg -v quiet -y -i input.ts -vcodec copy -acodec copy -ss 00:00:00 -t 00:30:00 -sn test1.mkv
time ffmpeg -v quiet -y -i input.ts -vcodec copy -acodec copy -ss 00:30:00 -t 01:00:00 -sn test2.mkv
@pointofpresence
pointofpresence / 1661875637.txt
Created August 30, 2022 16:07
Created with Copy to Gist
Conditionally adding entries inside Array and object literals
http://2ality.com/2017/04/conditional-literal-entries.html
@pointofpresence
pointofpresence / css_min.js
Last active March 31, 2024 11:23
Функция min() принимает одно или большее количество значений, разделённых запятой, и возвращает наименьшее из них. Эту функцию используют для ограничения значений CSS-свойств жёстко заданным максимальным уровнем.
padding: min(85%, 9.75em) 0;