Skip to content

Instantly share code, notes, and snippets.

View glebmachine's full-sized avatar
🙈
Angular hustler

Gleb Mikheev glebmachine

🙈
Angular hustler
View GitHub Profile

Привет, меня зовут Глеб Михеев

Я занимаюсь коммерческой разработкой уже 19 годиков

Я руковожу программным комитетом конференции FrontendConf, выступаю с докладами и топлю за образование, комьюнити и обмен знаниями. Надеюсь, что моя деятельность делает мир чуточку лучше)

Вероятно, если вы сюда зашли, то вы были на моем выступлении или посмотрели его в записи. Спасибо, <3

Ниже вы найдете ссылки на мои соцсети, каналы, выступления и все, что, как мне кажется может быть вам полезно

#!/bin/bash
if [ "$#" -eq 0 ]; then
echo "Нужно указать имя файла +_+"
exit
fi
echo -n "Битрэйт (2000k): "
read bitrate
if [ "$bitrate" == "" ]; then
bitrate='2000'
@glebmachine
glebmachine / snippet.js
Last active February 1, 2024 21:40
Snippet: Force Safari to switch to discrete GPU
try {
document.createElement('canvas').getContext('webgl', { powerPreference: "high-performance" })
} catch(e) {}
export class DataServiceError<T> {
constructor(public error: any, public requestData: T) {}
}
// Function of additional success actions
// that returns a function that returns
// an observable of ngrx action(s) from DataService method observable
@glebmachine
glebmachine / pollyfils.ts
Created December 25, 2018 14:08
Пример полифилов
/** IE9, IE10 and IE11 requires all of the following polyfills. **/
import 'core-js/es6/array';
import 'core-js/es6/date';
import 'core-js/es6/function';
import 'core-js/es6/map';
import 'core-js/es6/math';
import 'core-js/es6/number';
import 'core-js/es6/object';