Keybase proof
I hereby claim:
- I am kraklin on github.
- I am tomaslatal (https://keybase.io/tomaslatal) on keybase.
- I have a public key ASB-cXNF9E7oYhmo6CHIQVUbkv63tnSixsDN5c8ihPR8VQo
To claim this, I am signing this object:
module BenchmarkPattern exposing (main) | |
import Benchmark exposing (..) | |
import Benchmark.Runner exposing (BenchmarkProgram, program) | |
main : BenchmarkProgram | |
main = | |
program suite |
I hereby claim:
To claim this, I am signing this object:
"""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""" | |
" Plugins (Vundle) | |
"""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""" | |
set nocompatible " be iMproved, required | |
filetype off " required | |
" set the runtime path to include Vundle and initialize | |
set rtp+=~/.vim/bundle/Vundle.vim | |
call vundle#begin() | |
" alternatively, pass a path where Vundle should install plugins |
getCoordsForPosition position = | |
-- first quadrant | |
if List.member position [1..5] then | |
{ x = (9 * position - 4.5), y = 41 } | |
else if List.member position [6..9] then | |
{ x = 40.5, y = 41 - (position - 5) * 9 } | |
else if position == 10 then | |
{ x = 49.5, y = 5 } | |
-- second quadrant | |
else if List.member position [11..15] then |
for(var i=0; i <28; i++){var nodes = document.querySelectorAll("table"); nodes[nodes.length -1].rows[i].style.backgroundColor="#eeffee";} |