via list: http://stackoverflow.com/questions/1028250/what-is-functional-reactive-programming/1030631#1030631 http://conal.net/fran/tutorial.htm http://conal.net/papers/icfp97/icfp97.pdf http://www.haskell.org/haskellwiki/FRP http://conal.net/papers/type-class-morphisms/type-class-morphisms-long.pdf http://conal.net/papers/push-pull-frp/push-pull-frp.pdf http://infoscience.epfl.ch/record/176887/files/DeprecatingObservers2012.pdf via https://github.com/lihaoyi/scala.rx
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
hey test |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
XMLHttpRequest cannot load https://view-api.box.com/proxy/--hash-goes-here--/info.json. The 'Access-Control-Allow-Origin' header contains the invalid value '*, *'. Origin 'https://my-local-box.dev' is therefore not allowed access. |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
" Opens an edit command with the path of the currently edited file filled in | |
" Normal mode: <Leader>e | |
map <Leader>e :e <C-R>=escape(expand("%:p:h"), ' ') . "/" <CR> | |
" Opens a tab edit command with the path of the currently edited file filled in | |
" Normal mode: <Leader>te | |
map <Leader>te :tabe <C-R>=escape(expand("%:p:h"), ' ') . "/" <CR> | |
" Opens a vsplit command with the path of the currently edited file filled in | |
" Normal mode: <Leader>ve |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
" http://stackoverflow.com/questions/762515/vim-remap-key-to-toggle-line-numbering | |
" source: http://stackoverflow.com/questions/4387210/vim-how-to-map-two-tasks-under-one-shortcut-key | |
let g:relativenumber = 0 | |
set nonumber | |
set relativenumber | |
function! ToggleRelativeNumber() | |
if g:relativenumber == 0 | |
let g:relativenumber = 1 | |
set number | |
set norelativenumber |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
*.DS_Store | |
*.swp | |
*.swo |
So this is nascent thing, linking CVEs to rubygems https://twitter.com/jm/status/301735569527033856
Service idea:
- Send your Gemfile.lock to a service, get emailed when a pertinent CVE becomes known
- Easy tie-in via GitHub OAuth and their webhook push API
- Almost-as-easy tie-in for other platforms (storage and deploy) via after-commit hooks (efficient via etags)
Related: ipython-tutor hacking:
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
{"followers"=>51, | |
"type"=>"User", | |
"url"=>"https://api.github.com/users/jasonm", | |
"gravatar_id"=>"8478f9ebe099ad853f022deeb2c1defe", | |
"html_url"=>"https://github.com/jasonm", | |
"gists_url"=>"https://api.github.com/users/jasonm/gists{/gist_id}", | |
"followers_url"=>"https://api.github.com/users/jasonm/followers", | |
"updated_at"=>"2013-01-20T00:41:57Z", | |
"email"=>"[email protected]", | |
"hireable"=>true, |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
[/tmp/sbarro] xcodebuild -version | |
Xcode 4.2.1 | |
Build version 4D502 | |
[/tmp/sbarro] which gcc | |
/usr/bin/gcc | |
[/tmp/sbarro] gcc --version | |
i686-apple-darwin11-llvm-gcc-4.2 (GCC) 4.2.1 (Based on Apple Inc. build 5658) (LLVM build 2336.1.00) | |
Copyright (C) 2007 Free Software Foundation, Inc. |