- Ubuntu 14.04 LTS x64
- Java 1.7
- Jenkins 1.639
- NodeJS plugin 0.2.1
/* | |
Hoje iremos MUDAR a vida da pessoa que nรฃo te responde no whatsappp... | |
Que tal enviar mensagens pra ela atรฉ obter uma resposta?! | |
Sensacional nรฃo acha?! Mas, somos devs, correto?! Entรฃo vamos automatizar esse paranauรช! | |
Para utilizar: | |
- Abra o web.whatsapp.com; | |
- Selecione a conversa que vocรช quer; | |
- Abra o console e cole o cรณdigo que estรก no gist; |
var mensagem, mensagemCodificada = '', cifra; | |
mensagem = prompt('Digite sua mensagem'); | |
cifra = parseInt(prompt('Digite o valor da cifra')); | |
for (var i = 0, length = mensagem.length; i < length; i++) { | |
mensagemCodificada += String.fromCharCode(mensagem.charCodeAt(i) + cifra); | |
} | |
alert(mensagemCodificada); |
version: '2' | |
services: | |
rabbitmq: | |
image: rabbitmq:3.6.4-management | |
hostname: rabbitmq | |
expose: | |
- "9090" | |
ports: | |
- "4369:4369" | |
- "5671:5671" |
EMOJI CHEAT SHEET
Emoji emoticons listed on this page are supported on Campfire, GitHub, Basecamp, Redbooth, Trac, Flowdock, Sprint.ly, Kandan, Textbox.io, Kippt, Redmine, JabbR, Trello, Hall, plug.dj, Qiita, Zendesk, Ruby China, Grove, Idobata, NodeBB Forums, Slack, Streamup, OrganisedMinds, Hackpad, Cryptbin, Kato, Reportedly, Cheerful Ghost, IRCCloud, Dashcube, MyVideoGameList, Subrosa, Sococo, Quip, And Bang, Bonusly, Discourse, Ello, and Twemoji Awesome. However some of the emoji codes are not super easy to remember, so here is a little cheat sheet. โ Got flash enabled? Click the emoji code and it will be copied to your clipboard.
People
๐
#!/bin/bash | |
# Adicione um novo remote; pode chamรก-lo de "upstream": | |
git remote add upstream https://github.com/usuario/projeto.git | |
# Obtenha todos os branches deste novo remote, | |
# como o upstream/master por exemplo: | |
git fetch upstream |
In this document I am using Sass's SCSS syntax. You can choose to use the indented syntax in sass, if you prefer it, it has no functional differences from the SCSS syntax.
For Less, I'm using the JavaScript version because this is what they suggest on the website. The ruby version may be different.