(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.
const gulp = require('gulp'); | |
const browserSync = require('browser-sync').create(); | |
const sass = require('gulp-sass'); | |
gulp.task('serve', ['sass'], function() { | |
browserSync.init({ | |
proxy: 'mood.dev' | |
}); | |
gulp.watch('sass/**/*.scss', ['sass']); |
(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.
FROM php:5.6-fpm | |
RUN apt update && apt install -y git zlib1g-dev | |
RUN curl -sS https://getcomposer.org/installer | php -- --install-dir=/usr/local/bin --filename=composer | |
WORKDIR /app |
from flask import Flask | |
from flask import jsonify | |
from flask import request | |
from flask_cors import CORS, cross_origin | |
import socket | |
TCP_IP = '127.0.0.1' | |
TCP_PORT = 5959 | |
BUFFER_SIZE = 20 |