(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.
I hereby claim:
To claim this, I am signing this object:
Homebrew build logs for d12frosted/emacs-plus/emacs-plus on Mac OS X 10.10.5 | |
Build date: 2016-07-14 07:10:05 |
Homebrew build logs for d12frosted/emacs-plus/emacs-plus on Mac OS X 10.10.5 | |
Build date: 2016-07-14 07:15:56 |
Homebrew build logs for d12frosted/emacs-plus/emacs-plus on Mac OS X 10.10.5 | |
Build date: 2016-07-14 07:22:25 |
package main | |
import ( | |
"fmt" | |
"io/ioutil" | |
"os" | |
) | |
var delimiter = [...]byte{96, 240, 96, 240} | |
var beatDelimiter = [...]byte{160, 15} |
// Copyright [2016] <Gergely Brautigam> | |
#include "./bob.h" | |
#include <boost/algorithm/string.hpp> | |
#include <string> | |
std::string bob::hey(std::string text) { | |
boost::trim_right(text); | |
if (text.empty()) { | |
return "Fine. Be that way!"; | |
} |
path = [[]] | |
file = File.open("input.txt") | |
contents = file.read | |
split = contents.split(", ") | |
split.each do |s| | |
m = s.match(/([L|R])(\d+)/) | |
l = m[1] | |
n = m[2] | |
path << [l, n.to_i] | |
end |
<?php | |
abstract class Command { | |
abstract public function unExecute (); | |
abstract public function Execute (); | |
} | |
class concreteCommand extends Command { | |
private $operator,$operand,$calculator; | |
public function __construct ($calculator,$operator,$operand) { | |
$this->operator = $operator; | |
$this->operand = $operand; |