(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.
| <div class="message status"> | |
| Sass 3.3 envoie du poney ! | |
| </div> | |
| <div class="message warning"> | |
| Une fois tombé dans Sass, | |
| il est difficile de revenir en arrière ! | |
| </div> | |
| <div class="message error"> | |
| LESS c'est senSass :] | |
| </div> |
| #include <stdio.h> | |
| void doSonething1(){ | |
| printf("Pramod's wedding ticket \n"); | |
| } | |
| void doSonething2(){ | |
| printf("Send ticket to Saheed \n"); | |
| } |
| #!/usr/bin/env bash | |
| echo Installing Open MPI packages | |
| sudo apt-get install openmpi-common | |
| sudo apt-get install openmpi-bin | |
| sudo apt-get install libopenmpi-dev | |
| sudo apt-get install openmpi-doc | |
| echo Installing C compiler and ssh |
For stateful applications, there are 5 different ways of managing the history of state:
| <plugin> | |
| <groupId>org.apache.maven.plugins</groupId> | |
| <artifactId>maven-assembly-plugin</artifactId> | |
| <executions> | |
| <execution> | |
| <phase>package</phase> | |
| <goals> | |
| <goal>single</goal> | |
| </goals> | |
| <configuration> |
| #!/usr/bin/env bash | |
| wget https://storage.googleapis.com/golang/go1.6.2.linux-amd64.tar.gz | |
| sudo rm -rf /usr/local/go | |
| sudo tar -C /usr/local -xzf go1.6.2.linux-amd64.tar.gz | |
| echo "export GOPATH=~/go" >> ~/.bashrc | |
| source ~/.bashrc | |
| # mkdir -p $GOPATH/src/myapp | |
| # cd $GOPATH/src/myapp |
| dmesg -t > dmesg_current | |
| dmesg -t -k > dmesg_kernel | |
| dmesg -t -l emerg > dmesg_current_emerg | |
| dmesg -t -l alert > dmesg_current_alert | |
| dmesg -t -l crit > dmesg_current_alert | |
| dmesg -t -l err > dmesg_current_err | |
| dmesg -t -l warn > dmesg_current_warn | |
| # -*- mode: ruby -*- | |
| # vi: set ft=ruby : | |
| # Vagrantfile API/syntax version. Don't touch unless you know what you're doing! | |
| VAGRANTFILE_API_VERSION = "2" | |
| Vagrant.configure(VAGRANTFILE_API_VERSION) do |config| | |
| config.vm.box = "minimal/xenial64" |