(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.
| package main | |
| import ( | |
| "fmt" | |
| "github.com/hailiang/gosocks" | |
| "io" | |
| "net" | |
| "os" | |
| "strings" | |
| "time" |
(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.
| package com.buenocodigo.utilities; | |
| import android.app.Activity; | |
| import android.app.Fragment; | |
| import android.app.FragmentManager; | |
| import android.os.Bundle; | |
| import java.lang.reflect.Constructor; | |
| import java.lang.reflect.InvocationTargetException; |
| #!/usr/bin/env python | |
| import cStringIO | |
| import json | |
| import sys | |
| from pygments import highlight | |
| from pygments.formatters import Terminal256Formatter | |
| from pygments.lexers.web import JavascriptLexer | |
| from pygments import styles |