(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.
#!/usr/bin/env bash | |
ENV=$1 | |
APP=$2 | |
NAMESPACE=$3 | |
FILENAME=upgrade-error.txt | |
while true | |
do | |
function upgrade() { |
(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.
# Check java version | |
JAVA_VER=$(java -version 2>&1 | sed 's/java version "\(.*\)\.\(.*\)\..*"/\1\2/; 1q') | |
if [ "$JAVA_VER" -lt 18 ] | |
then | |
# Download jdk 8 | |
echo "Downloading and installing jdk 8" | |
wget --no-cookies --no-check-certificate --header "Cookie: gpw_e24=http%3A%2F%2Fwww.oracle.com%2F; oraclelicense=accept-securebackup-cookie" "http://download.oracle.com/otn-pub/java/jdk/8-b132/jdk-8-linux-x64.rpm" | |
# Silent install |
package manning.tap; | |
import java.util.ArrayList; | |
import java.util.HashMap; | |
import java.util.HashSet; | |
import java.util.List; | |
import java.util.Map; | |
import manning.schema.Data; | |
import manning.schema.DataUnit; | |
import org.apache.thrift.TBase; |
From 4f486eecf8a20e52455a227e2e3502f1aeb14983 Mon Sep 17 00:00:00 2001 | |
From: koichik <[email protected]> | |
Date: Thu, 14 Apr 2011 01:17:18 +0900 | |
Subject: [PATCH] Fix Buffer.write() with UCS-2 should not be write partial char | |
--- | |
src/node_buffer.cc | 6 +++++- | |
test/simple/test-buffer.js | 9 +++++++++ | |
2 files changed, 14 insertions(+), 1 deletions(-) |