Skip to content

Instantly share code, notes, and snippets.

View alshell7's full-sized avatar

Owais alshell7

View GitHub Profile
@alshell7
alshell7 / install-rabbitmq-ubuntu1604.md
Last active August 1, 2019 13:21 — forked from fernandoaleman/install-rabbitmq-ubuntu1604.md
Install RabbitMQ on Ubuntu 16.06

Install RabbitMQ on Ubuntu 16.04

Add RabbitMQ apt repository

echo 'deb http://www.rabbitmq.com/debian/ testing main' | sudo tee /etc/apt/sources.list.d/rabbitmq.list
wget -O- https://www.rabbitmq.com/rabbitmq-release-signing-key.asc | sudo apt-key add -
@alshell7
alshell7 / tornado_fb_poster.py
Created January 17, 2017 05:36 — forked from abdelouahabb/tornado_fb_poster.py
this is how to post on your application page on facebook using only Tornado, no more libraries ;)
#!/usr/bin/env python
#-*- coding:utf-8 -*-
import tornado.auth
import tornado.escape
import tornado.httpserver
import tornado.ioloop
import tornado.options
import tornado.web
import tornado.gen