(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.
| """ | |
| A deep neural network with or w/o dropout in one file. | |
| License: Do What The Fuck You Want to Public License http://www.wtfpl.net/ | |
| """ | |
| import numpy, theano, sys, math | |
| from theano import tensor as T | |
| from theano import shared | |
| from theano.tensor.shared_randomstreams import RandomStreams |
(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.
| <?hh | |
| // concatenative programming | |
| // based on this paper: | |
| // http://mitarbeiter.hs-heilbronn.de/~herzberg/Publications/ICSOFT.2009.pdf | |
| namespace igorw\concat; | |
| class OpenQuotation { | |
| var $words; |
W3C Introduction to Web Components - explainer/overview of the technologies
| <?php | |
| namespace Nrk\Predis; | |
| use Nrk\Predis\Connection\MasterSlaveWrapperConnection; | |
| use Predis\Cluster\Distribution\HashRing; | |
| use Predis\Connection\PredisCluster; | |
| use Predis\Option\ClientOptions; | |
| class MasterSlaveClusterInitializer |