Sankey Barchart
Info
Provides a visualization similar to google analytics shopper behavior analytics.
Requires
- d3js
- underscorejs
# Half-width Katakana => Full-width Katakana | |
"ア" => "ア" | |
"イ" => "イ" | |
"ウ" => "ウ" | |
"エ" => "エ" | |
"オ" => "オ" | |
"カ" => "カ" | |
"キ" => "キ" | |
"ク" => "ク" | |
"ケ" => "ケ" |
Provides a visualization similar to google analytics shopper behavior analytics.
#!/bin/bash | |
TABLE=$1 | |
MAX=$2 | |
echo "Examining Table $TABLE...." | |
echo "scan 'hbase:meta',{ COLUMNS => 'info:server', FILTER=>\"PrefixFilter('$TABLE')\"}" | hbase shell > "$TABLE.out" 2>&1 | |
echo "Making splits $TABLE.splits" | |
echo "" > "$TABLE.splits" |
<!-- This should be served by your server --> | |
<script src="/socket.io/socket.io.js"></script> | |
<script> | |
var socket = io.connect('http://localhost'); | |
socket.on('news', function (data) { | |
console.log(data); | |
socket.emit('my other event', { my: 'data' }); | |
}); | |
</script> |
[#ftl] | |
[#-- @ftlvariable name="resourceApis" type="java.util.List<com.webcohesion.enunciate.api.resources.ResourceApi>" --] | |
[#-- @ftlvariable name="serviceApis" type="java.util.List<com.webcohesion.enunciate.api.services.ServiceApi>" --] | |
[#-- @ftlvariable name="data" type="java.util.List<com.webcohesion.enunciate.api.datatype.Syntax>" --] | |
[#-- @ftlvariable name="title" type="java.lang.String" --] | |
[#-- @ftlvariable name="disableMountpoint" type="java.lang.Boolean" --] | |
[#-- @ftlvariable name="disableResourceLinks" type="java.lang.Boolean" --] | |
[#-- @ftlvariable name="apiRelativePath" type="java.lang.String" --] | |
[#-- @ftlvariable name="includeApplicationPath" type="java.lang.Boolean" --] |
hadoop fsck / | egrep -v '^\.+$' | grep -v corrup | grep / | grep -oh '^\S*:' | rev | cut -c 2- | rev | sort | uniq > corrupted.flst |
<!doctype html> | |
<html> | |
<head> | |
<meta charset="utf-8"> | |
<title>Catalina News</title> | |
</head> | |
<link href="https://fonts.googleapis.com/css?family=Noto+Sans|Roboto:100,300,400,500" rel="stylesheet"> | |
<style> | |
body { | |
margin: 0px auto; |
package com.halo.struts.action; | |
import java.io.FileInputStream; | |
import java.io.IOException; | |
import javax.print.Doc; | |
import javax.print.DocFlavor; | |
import javax.print.DocPrintJob; | |
import javax.print.PrintException; | |
import javax.print.PrintService; |
package org.mule.example.echo; | |
import java.util.ArrayList; | |
import java.util.Hashtable; | |
import java.util.List; | |
import javax.naming.Context; | |
import javax.naming.NamingEnumeration; | |
import javax.naming.directory.Attribute; | |
import javax.naming.directory.Attributes; |
Exception in thread "iothread-2" java.lang.NullPointerException | |
at zmq.Utils.tuneTcpSocket(Utils.java:48) | |
at zmq.TcpListener.acceptEvent(TcpListener.java:91) | |
at zmq.IOObject.acceptEvent(IOObject.java:123) | |
at zmq.Poller.run(Poller.java:250) | |
at java.lang.Thread.run(Thread.java:748) | |
Exception in thread "iothread-2" java.lang.NullPointerException | |
at zmq.Utils.tuneTcpSocket(Utils.java:48) | |
at zmq.TcpListener.acceptEvent(TcpListener.java:91) | |
at zmq.IOObject.acceptEvent(IOObject.java:123) |