This file contains 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
diff --git a/ast/ast.go b/ast/ast.go | |
index 8db3b39..f0420f4 100644 | |
--- a/ast/ast.go | |
+++ b/ast/ast.go | |
@@ -2,6 +2,7 @@ package ast | |
import ( | |
"bytes" | |
+ "fmt" | |
"strings" |
This file contains 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
#!/bin/bash | |
#This script creates 1 master, 2 slaves and 3 sentinels services in docker swarm. | |
docker network create \ | |
--driver overlay \ | |
testes_network | |
SWARM_MASTER=192.168.205.125 | |
#Master |
Please fork this gist and use as your own checklist as you develop/deploy your web application or api.
WARNING: This checklist makes an assumption of the level of expertise and experience of the reader and assumes significant in-depth knowledge and experience in web development.
- golinks - golinks is a web app that allows you to create smart bookmarks, commands and aliases by pointing your web browser's default search engine at a running instance. Similar to bunny1 or yubnub. (Demo)
MIT
Go
- notes - notes is a self-hosted note taking web app that lets you keep track of your notes and search them in a easy and minimal way. (Demo)
MIT
Go
- pastebin - pastebin is a simple pastebin service with convenient CLI. (Demo)
MIT
Go
- shorturl - shorturl is a simple URL shortener with very tiny URL(s). (Demo)
MIT
Go
- todo - todo is a simple todo manager. (Demo)
MIT
Go
- [wiki](https://git.mills.io/prolog
Allow developers to specify workflows without the need for installing additional tooling such as a modeler.
- It should be easy to define a simple workflow with a text editor only
- The format must map down directly to BPMN
- The format must be based on an existing text based format like (XML, JSON, YAML, TOML, ...)
OS level virtualisation is attracting a lot of attention at the moment. A list of the technologies is available here http://blog.aquasec.com/a-brief-history-of-containers-from-1970s-chroot-to-docker-2016
A far more detailed history of the formative years is available here
This file contains 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
#!/bin/bash | |
# Script para generar entorno simulado de cluster Swarm con 3 nodos | |
# Creación de maquina default (se utilizara como cliente ) | |
# docker-machine create -d virtualbox default | |
# eval $(docker-machine env default) | |
# Lanzamos swarm desde maquina default | |
SWARM_TOKEN=$(docker run swarm create) |
- Update HISTORY.rst
- Commit the changes:
git add HISTORY.rst
git commit -m "Changelog for upcoming release 0.1.1."
- Update version number (can also be minor or major)
bumpversion patch
- | e | p | |
---|---|---|---|
l | execl | execle | execlp |
v | execv | execve | execvp |
- int execl(char const *path, char const *arg0, ...);
- int execle(char const *path, char const *arg0, ..., char const *envp[]);