Skip to content

Instantly share code, notes, and snippets.

View obenjiro's full-sized avatar
🎯
Focusing

Alexey Okhrimenko obenjiro

🎯
Focusing
View GitHub Profile
@obenjiro
obenjiro / calendar.md
Created April 13, 2019 03:53
Пару календарей назад я был совсем другим

COMING SOON...

@obenjiro
obenjiro / talks.md
Last active April 17, 2021 19:17
Доклады - Алексей Охрименко
@obenjiro
obenjiro / angular-schematics.md
Created November 21, 2018 13:48
Angular Schematics

COMING SOON

@obenjiro
obenjiro / its-better-to-lose-a-day.md
Created October 4, 2018 05:16
It's better to lose a day

COMING SOON..

@obenjiro
obenjiro / switch-map-cancel.ts
Last active August 16, 2018 13:05
Naive of cancelable switchMap
const { interval, of, from, pipe, empty } = Rx;
const { take, tap, share, takeUntil, switchMap,startWith, withLatestFrom, filter, concatMap, delay, merge } = RxOperators;
const $refresh = interval(1000).pipe(
take(4),
concatMap((x) => of(x).pipe(delay(x <= 2 ? 2000 : 1000))),
share()
)
const cancel$ = of(-1).pipe(delay(5200), share());
@obenjiro
obenjiro / refactoring.md
Created May 28, 2018 08:59
Рефакторинг - ссылка на все ссылки

COMING SOON...