Skip to content

Instantly share code, notes, and snippets.

View neotheicebird's full-sized avatar

prash neotheicebird

  • Chennai
View GitHub Profile
@neotheicebird
neotheicebird / 0_reuse_code.js
Created February 18, 2016 07:10
Here are some things you can do with Gists in GistBox.
// Use Gists to store code you would like to remember later on
console.log(window); // log the "window" object to the console
@neotheicebird
neotheicebird / realtime-plot.py
Created February 29, 2016 14:11 — forked from Uberi/realtime-plot.py
Realtime plotting with Matplotlib.
#!/usr/bin/env python3
import time, random
import math
from collections import deque
start = time.time()
class RealtimePlot:
def __init__(self, axes, max_entries = 100):
@neotheicebird
neotheicebird / realtimeplot.py
Created March 1, 2016 07:27 — forked from pklaus/realtimeplot.py
Plotting or real-time data with the Matplotlib animation API. Source: http://stackoverflow.com/a/15724978/183995
#!/usr/bin/env python
import numpy as np
import time
import matplotlib
matplotlib.use('TKAgg')
#matplotlib.use('GTKAgg')
from matplotlib import pyplot as plt
@neotheicebird
neotheicebird / Flake8.txt
Created November 16, 2018 21:11 — forked from tossmilestone/Flake8.txt
Flake8 integrated with PyCharm
How to manually setup flake8 as PyCharm external tool
File / Settings / Tools / External Tools / Add
Name: Flake8
Program: $PyInterpreterDirectory$/python
Parameters: -m flake8 --max-complexity 10 --ignore E501 $FilePath$
Working directory: $ProjectFileDir$
Output Filters / Add
Name: Filter 1