Skip to content

Instantly share code, notes, and snippets.

Task Time required Assigned to Current Status Finished
Calendar Cache > 5 hours @georgehrke in progress - [x] ok?
Object Cache > 5 hours @georgehrke in progress [x] item1
[ ] item2
Object Cache > 5 hours @georgehrke in progress
  • item1
  • item2
Object Cache > 5 hours @georgehrke in progress
Object Cache > 5 hours @georgehrke in progress
  • item1
  • item2
  • works
@janwirth
janwirth / lodash.d.ts
Last active December 31, 2017 13:23 — forked from amir-arad/lodash.d.ts
Add last, reduce, mapKeys; extend flow
// https://gist.github.com/FranzSkuffka/d9c52982c265d44a1093f218664b6a5f
// https://raw.githubusercontent.com/donnut/typescript-ramda/master/ramda.d.ts
// https://raw.githubusercontent.com/DefinitelyTyped/DefinitelyTyped/master/lodash/lodash.d.ts
declare namespace fp {
interface Dictionary<T> {
[index: string]: T;
}
# based on http://www.paulund.co.uk/smooth-scroll-to-internal-links-with-jquery
$ ->
$('a[href*=#]:not([href=#])').on 'click.smoothscroll', (e) ->
e.preventDefault()
target = @hash
$target = $(target)
@janwirth
janwirth / webfontMixin.styl
Last active November 12, 2015 09:03 — forked from Nitive/fonts.styl
Font face mixin for WOFF & WOFF2
// font-face mixin
font-url(file)
return 'fonts/' + file
webfont(family, file, weight = normal, style = normal)
@font-face
font-family family
file += '/' + file
url(font-url(file + '.woff2')) format('woff2'),
url(font-url(file + '.woff')) format('woff')