(by @andrestaltz)
If you prefer to watch video tutorials with live-coding, then check out this series I recorded with the same contents as in this article: Egghead.io - Introduction to Reactive Programming.
| // ==UserScript== | |
| // @name Fix YouTube's Alt-Tab Pause/Play Issue | |
| // @namespace http://tampermonkey.net/ | |
| // @version 0.4 | |
| // @description Fix YouTube's Alt-Tab Pause/Play Issue | |
| // @author HPZ07 | |
| // @match https://www.youtube.com/* | |
| // @icon https://www.google.com/s2/favicons?sz=64&domain=youtube.com | |
| // @grant none | |
| // ==/UserScript== |
(by @andrestaltz)
If you prefer to watch video tutorials with live-coding, then check out this series I recorded with the same contents as in this article: Egghead.io - Introduction to Reactive Programming.
This is a summary of the "Learn You A Haskell" online book under http://learnyouahaskell.com/chapters.
| # | |
| # Install: | |
| # install https://github.com/github/gollum | |
| # in /srv/wiki do a git init | |
| # add this script to /etc/init/gollum.conf | |
| # | |
| # Usage: | |
| # start/stop/restart gollum | |
| # |
| This is an example how to perform multi-select faceting in ElasticSearch. | |
| Selecting multiple values from the same facet will result in an OR filter between each of the values: | |
| (facet1.value1 OR facet1.value2) | |
| Faceting on more than one facet will result in an AND filter between each facet: | |
| (facet1.value1 OR facet1.value2) AND (facet2.value1) | |
| I have chosen to update the counts for each facet the selected value DOES NOT belong to since we are performing an AND between each facet. I have included an example that shows how to keep the counts if you don't want to do this (filter0.sh). |
| """""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""" | |
| " /etc/vim/vimrc.local V1.1.12 2019-07-30 https://gist.github.com/mikehaertl/1612035 | |
| """""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""" | |
| " | |
| " A Vundle based Vim configuration with globally shared plugins on Ubuntu. | |
| " | |
| " This is a Vundle based Vim setup that keeps all plugins in a global | |
| " directory, namely /etc/vim/bundle. It's trimmed towards PHP development | |
| " with Yii. | |
| " |