Skip to content

Instantly share code, notes, and snippets.

View anurag-ks's full-sized avatar
:electron:
Focusing

Anurag Sharma anurag-ks

:electron:
Focusing
View GitHub Profile
@anurag-ks
anurag-ks / PY0101EN-1-1-Types.ipynb
Created May 19, 2019 07:14
Created on Cognitive Class Labs
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
@anurag-ks
anurag-ks / gsoc-summary-2018.md
Last active August 12, 2018 13:12
A summary about my gsoc 2018 project work with OpenWISP.

openwisp-ipam: IP Address Management module for OpenWISP 2

Aim - This project idea was to create a new OpenWISP 2 IPAM module with the basic features for IP Address Management.

The project is divided into two phases -

  • Phase 1 - Developing django-ipam from scratch
  • Phase 2 - Extending django-ipam into openwisp-ipam which can be used in the openwisp 2 systems.

Phase 1 - django-ipam

@anurag-ks
anurag-ks / fetch_mttn_data.py
Created October 2, 2017 07:56
Simple script to fetch authors and their respective posts on the MTTN Website.
import requests
import io, json
class Author(object):
id = 0
name = ""
posts = []
def __init__(self, id, name, posts):
@anurag-ks
anurag-ks / calculator.py
Created January 28, 2015 13:05
This is my first ever *complete*, simple, amateurish, kinda-useless, desktop application built in Gtk toolkit
from gi.repository import Gtk
class MainWindow(Gtk.Window):
def __init__(self):
Gtk.Window.__init__(self)
self.connect("delete-event", Gtk.main_quit)
self.set_size_request(240, 240)
self.set_resizable(False)