(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.
(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.
| #!/bin/bash | |
| # | |
| # Watch current directory (recursively) for file changes, and execute | |
| # a command when a file or directory is created, modified or deleted. | |
| # | |
| # Written by: Senko Rasic <senko.rasic@dobarkod.hr> | |
| # | |
| # Requires Linux, bash and inotifywait (from inotify-tools package). | |
| # | |
| # To avoid executing the command multiple times when a sequence of |
| var parser = document.createElement('a'); | |
| parser.href = "http://example.com:3000/pathname/?search=test#hash"; | |
| parser.protocol; // => "http:" | |
| parser.hostname; // => "example.com" | |
| parser.port; // => "3000" | |
| parser.pathname; // => "/pathname/" | |
| parser.search; // => "?search=test" | |
| parser.hash; // => "#hash" | |
| parser.host; // => "example.com:3000" |
| <?php | |
| public function process(ContainerBuilder $container) | |
| { | |
| $factory = $container->findDefinition('app.doctrine.repository.factory'); | |
| $repositories = []; | |
| foreach ($container->findTaggedServiceIds('app.repository') as $id => $params) { | |
| foreach ($params as $param) { | |
| $repositories[$param['class']] = $id; |
@jakearchibald done a bit of research around this:
###Loading a page with Content-Length < actual content length
###Loading a page with Content-Length > actual content length
| #!/usr/bin/env python | |
| """ | |
| PIP can stand for PIP Installs packages Programmatically, too! | |
| (and here's how) | |
| Requires: | |
| * Python 2.6 or higher (for print-as-a-function) | |
| * PIP 0.8.2 | |
| """ |