(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.
| 'use strict'; | |
| /* | |
| N-Gram-Based Text Categorisation | |
| Implementation by marko@zabreznik.net | |
| 28.3.2015 All rights reserved. | |
| Based on the paper by: | |
| William B. Cavnar and John M. Trenkle | |
| Environmental Research Institute of Michigan |
| // default exports | |
| export default 42; | |
| export default {}; | |
| export default []; | |
| export default foo; | |
| export default function () {} | |
| export default class {} | |
| export default function foo () {} | |
| export default class foo {} |
(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.
create different ssh key according the article Mac Set-Up Git
$ ssh-keygen -t rsa -C "your_email@youremail.com"
| function shortcode_empty_paragraph_fix($content) | |
| { | |
| $array = array ( | |
| '<p>[' => '[', | |
| ']</p>' => ']', | |
| ']<br />' => ']' | |
| ); | |
| $content = strtr($content, $array); |