Skip to content

Instantly share code, notes, and snippets.

View thekiba's full-sized avatar
🦊
What Does The Fox Say?

Reactive Fox thekiba

🦊
What Does The Fox Say?
View GitHub Profile
@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';
@tsabirgaliev
tsabirgaliev / Build lazy module
Last active January 4, 2019 01:40
Angular example plugin architecture
> tsc --lib es2016,dom --experimentalDecorators true --emitDecoratorMetadata true lazy.module.ts
@RJ
RJ / gen_server_call_pool.erl
Created February 18, 2011 16:21
gen_server:call balancer
%%
%% Simple pool for gen_servers that only use :call
%% @author RJ <rj@metabrew.com>
%%
-module(gen_server_call_pool).
-behaviour(gen_server).
-include("irc.hrl").
%% --------------------------------------------------------------------