Skip to content

Instantly share code, notes, and snippets.

View vishalseshagiri's full-sized avatar
๐Ÿ’ญ
Pho-cussing

vishalseshagiri

๐Ÿ’ญ
Pho-cussing
View GitHub Profile
@vishalseshagiri
vishalseshagiri / 00.howto_install_phantomjs.md
Created September 18, 2018 17:11 — forked from julionc/00.howto_install_phantomjs.md
How to install PhantomJS on Debian/Ubuntu

How to install PhantomJS on Ubuntu

Version: 1.9.8

Platform: x86_64

First, install or update to the latest system software.

sudo apt-get update
sudo apt-get install build-essential chrpath libssl-dev libxft-dev
@vishalseshagiri
vishalseshagiri / gist:215efbf8303d5bdb28d8843dbf8425ce
Created November 24, 2017 03:00 — forked from rxaviers/gist:7360908
Complete list of github markdown emoji markup

People

:bowtie: :bowtie: ๐Ÿ˜„ :smile: ๐Ÿ˜† :laughing:
๐Ÿ˜Š :blush: ๐Ÿ˜ƒ :smiley: โ˜บ๏ธ :relaxed:
๐Ÿ˜ :smirk: ๐Ÿ˜ :heart_eyes: ๐Ÿ˜˜ :kissing_heart:
๐Ÿ˜š :kissing_closed_eyes: ๐Ÿ˜ณ :flushed: ๐Ÿ˜Œ :relieved:
๐Ÿ˜† :satisfied: ๐Ÿ˜ :grin: ๐Ÿ˜‰ :wink:
๐Ÿ˜œ :stuck_out_tongue_winking_eye: ๐Ÿ˜ :stuck_out_tongue_closed_eyes: ๐Ÿ˜€ :grinning:
๐Ÿ˜— :kissing: ๐Ÿ˜™ :kissing_smiling_eyes: ๐Ÿ˜› :stuck_out_tongue:
import os
import json
import datetime
from flask import Flask, url_for, redirect, \
render_template, session, request
from flask.ext.sqlalchemy import SQLAlchemy
from flask.ext.login import LoginManager, login_required, login_user, \
logout_user, current_user, UserMixin
from requests_oauthlib import OAuth2Session
@vishalseshagiri
vishalseshagiri / py-arduino.py
Last active September 20, 2015 17:05 — forked from eraclitux/py-arduino.py
Simple code to test Arduino to Python serial communication
#!/usr/bin/python
# -*- coding: utf-8 -*-
"""
Sample code to test Arduino to Python serial communication
"""
import serial
error_message="################ !!! Communication Error !!! ################\n"