Skip to content

Instantly share code, notes, and snippets.

View robinpokorny's full-sized avatar

Robin Pokorny robinpokorny

View GitHub Profile
@robinpokorny
robinpokorny / index.js
Created January 2, 2017 13:47
Flowtype and Promise.resolve
// @flow
// BAD
// Will throw this type error:
// ‘undefined This type is incompatible with some incompatible instantiation of `T`’
const resolve = <T> (init?: T): Promise<T> => Promise.resolve(init)
// GOOD
// The return promise type is `?T`, i.e. nullable T
const resolve = <T> (init?: T): Promise<?T> => Promise.resolve(init)
@robinpokorny
robinpokorny / fallback-promise.js
Last active January 4, 2017 11:04
Promise sequence fallback (first non-empty) – with Flow
// @flow
type Task<T> = (...args: any[]) => Promise<?T>
type Options<T> = {
args?: any[],
initial?: T,
isEmpty?: (value: ?T) => boolean
}
export default <T> (
@robinpokorny
robinpokorny / 1-three-letter-emojis-github.md
Last active March 27, 2017 08:15
List of three-letter (or less) emojis available on GitHub and BitBucket

👍 - +1

👎 - -1

🅰️ - a

🆎 - ab

🔤 - abc

@robinpokorny
robinpokorny / cases.css
Created November 6, 2016 11:27
Evil BEM naming test cases for css-should-plugin-bem
ul.menu--primary
body .menu--primary
#page.item .item--primary .item--secondary
.menu__nav--primary i.item__icon.item__icon--spinning
.menu>.item--bold
a[lang|=cs].item--bold
*:hover .item--disabled+a.item--bold:active
export * as moduleA from './moduleA'
// should be a shorthand for:
import * as _moduleA from './moduleA'
export const moduleA = _moduleA
@robinpokorny
robinpokorny / fizzbuzz.js
Last active November 1, 2016 09:42
Minimal readable Fizz Buzz test solution in JavaScript
// This function isolates the logic
// Its param is number `i`
// It returns 'Fizz', 'Bazz', 'FizzBuzz' or the number
// (This implementation takes advatage of some JavaScript specific features)
const toFizzBuzz = (i) =>
// We construct a string
// First part is 'Fizz' if the number is divisible by 3
// and an empty string otherwise
// `i%3` is 0 iff `i` is divisible by 3
@robinpokorny
robinpokorny / 1-info.md
Last active September 4, 2022 17:27
📰 Dead simple tweetable JavaScript PubSub pattern module using Set (ES2015)
var pokemons = [
{
"name": "rattata",
"resource_uri": "api/v1/pokemon/19/"
},
{
"name": "charmander",
"resource_uri": "api/v1/pokemon/4/"
},
{
@robinpokorny
robinpokorny / .bowerrc
Last active August 29, 2015 14:07
Ukázka zápisů balíčků v Bower
{
"directory": "lib/components"
}
@robinpokorny
robinpokorny / serendibite.html
Created October 13, 2014 09:02
Serendibite grid – syntax prototype
<div class="#">
<div class="[ 1/2 3/4@md 5/12@lg 2_@lg ]">
</div>
<div class="[ 1/2 1/4@md 5/12@lg ]">
</div>
</div>