ハンズオン中はごめんなさいをするしかなかったのですが、 Skinny Framework 1.0.6 から使えるようになりました!
$ ./skinny debug [port]
//A perfectly valid Reactive Streams Processor with Reactor (to attach to a Stream or connect with Actions/Promises) : | |
//This Processor is an Identity Producer/Subscriber - every request is propagated upside and every value propagated downside | |
// identityProcessor will not affect its input value and will eventually broadcast it to its subscribers. | |
deferred = Streams.defer(env); | |
deferred | |
.parallel(env.getDispatcher(dispatcher)) | |
.map(stream -> stream | |
.map(i -> i) | |
.reduce((Tuple2<Integer, Integer> tup) -> { |
package me.champeau.groovydroid | |
import android.app.Activity | |
import android.os.Bundle | |
import android.util.Log | |
import android.view.Menu | |
import android.view.View | |
import android.widget.EditText | |
import com.android.dx.dex.DexFormat | |
import com.android.dx.dex.DexOptions |
// jQuery GC Helper - v0.9.5 | |
// | |
// Copyright (C) 2014 MURAOKA Taro | |
// Licensed under the MIT license. | |
(function(global, jQuery) { | |
var observer; | |
function callback(mutations) { |
var attempts = 1; | |
function createWebSocket () { | |
var connection = new WebSocket(); | |
connection.onopen = function () { | |
// reset the tries back to 1 since we have a new connection opened. | |
attempts = 1; | |
// ...Your app's logic... |
winswを利用してサービス化する。 winswはJenkinsやGlassFishも使ってる。
This is transolation written by me as Japanese about Vue.js
データバインディングについてVue.jsと Backbone.stickitを比較する - mizchi's blog http://mizchi.hatenablog.com/entry/2014/02/18/163721
My Engilish is not so good. So please teach me what to say is better.
This is resource to suite to use vue.js againt my compony so I blame Backbone.stickit :D
package example.mdsample.java; | |
import java.io.UnsupportedEncodingException; | |
import java.security.MessageDigest; | |
import java.security.NoSuchAlgorithmException; | |
import javax.xml.bind.DatatypeConverter; | |
import org.apache.commons.lang.StringUtils; | |
public class App { |