http://datavu.blogspot.com/2014/08/useful-unix-commands-for-exploring-data.html ᔥ
Make sure to check out the comments for more useful commands and techniques.
http://datavu.blogspot.com/2014/08/useful-unix-commands-for-exploring-data.html ᔥ
Make sure to check out the comments for more useful commands and techniques.
http://codegangsta.gitbooks.io/building-web-apps-with-go/
You can also download the book in ePUB, MOBI and PDF formats.
This looks like an alternative to using client-side hooks in your source code repository to format code. EditorConfig plugins exist for the following (No NetBeans!):
The following core libraries exist for writing new plugins:
http://xordataexchange.github.io/crypt/
Crypt allows you to store and retrieve encrypted configuration values from an etcd or consul key/value store.
http://mozilla.github.io/nunjucks/
{% extends "base.html" %}
{% block header %}
<h1>{{ title }}</h1>
{% endblock %}
{% block content %}
<ul>
{% for name, item in items %}
<li>{{ name }}: {{ item }}</li>
{% endfor %}
</ul>
{% endblock %}
{{ foo | title }}
{{ foo | join(",") }}
{{ foo | replace("foo", "bar") | capitalize }}
{{ foo(1, 2, bar=3, baz=4) }}
{{ bar | transform(level=2) }}
{% extends "base.html" %}
{% block header %}
<h3>{{ subtitle }}</h3>
{% endblock %}
{% block content %}
<h1>{{ page.title }}</h1>
<p>{{ page.content }}</p>
{% endblock %}
<h1>Posts</h1>
<ul>
{% asyncAll item in items %}
<li>{{ item.id | lookup }}</li>
{% endall %}
</ul>