Skip to content

Instantly share code, notes, and snippets.

View jasas1's full-sized avatar
💭
Digging deeper into Deep Learning

James Sumpter jasas1

💭
Digging deeper into Deep Learning
  • Cærul LLC
  • United States
View GitHub Profile
@cjthomp
cjthomp / pushid.py
Created July 21, 2017 19:28
Pushid plugin for SublimeText 3
import sublime, sublime_plugin
import random
import time
class PushidCommand(sublime_plugin.TextCommand):
def run(self, edit):
self.view.insert(edit, self.view.sel()[0].begin(), PushID().next_id())
class PushID(object):
PUSH_CHARS = ('-0123456789'