This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
FROM ubuntu:14.04 | |
# ---- Edit These ---- | |
ENV DOCS_NAME=template | |
ENV DOCS_SOURCE=source | |
ENV DOCS_REMOTE=http://yoursite.com | |
# -------------------- | |
# docs remote is used in the dash feed url, see build.sh | |
ENV DOCS_ROOT=/var/www | |
ENV DEBIAN_FRONTEND=noninteractive |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
import ( | |
jump "github.com/anachronistic/jump-consistent-hash" | |
) | |
type Ring struct { | |
VirtualNodes uint64 | |
RealNodes []string | |
Replication int32 | |
} |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
let g:unite_source_menu_menus.commands.command_candidates = [ | |
\['▷ record a macro q', 'normal q' ], | |
\['▷ move forward one word w', 'normal w' ], | |
\['▷ move to the end of the prev word e', 'normal e' ], | |
\['▷ replace the character underneath the cursor r', 'normal r' ], | |
\['▷ move forward till the next character typed t', 'normal t' ], | |
\['▷ yank/copy y', 'normal y' ], | |
\['▷ undo u', 'normal u' ], | |
\['▷ enter insert mode i', 'normal i' ], | |
\['▷ open a new line underneath the current li |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
package com.semantico.rigel; | |
import static com.semantico.rigel.transformers.CommonTransformers.*; | |
import java.util.Date; | |
import java.util.List; | |
import java.util.Map; | |
import java.util.Set; | |
import org.apache.solr.client.solrj.SolrQuery.ORDER; |
NewerOlder