Skip to content

Instantly share code, notes, and snippets.

@felsantiago
felsantiago / index.html
Last active November 5, 2020 03:38 — forked from adunkman/index.html
Relay messages from RabbitMQ to a browser using Socket.io - https://www.dunkman.me/blog/2012/messaging-using-rabbitmq-socketio/
<!DOCTYPE html>
<html>
<head>
<script src="/socket.io/socket.io.js"></script>
<script>
(function () {
var onMessage = function (data) {
// Do something with the message data
};
@felsantiago
felsantiago / git.md
Created October 16, 2020 15:29 — forked from leocomelli/git.md
Lista de comandos úteis do GIT

GIT

Estados

  • Modificado (modified);
  • Preparado (staged/index)
  • Consolidado (comitted);

Ajuda