Skip to content

Instantly share code, notes, and snippets.

@onewhaleid
onewhaleid / excel2html.htm
Created January 26, 2018 12:01 — forked from andyj/excel2html.htm
Paste Excel in to HTML to create at <table>
<html>
<head>
<style>
*{
font-family: arial;
font-size: 11px;
}
table{
border-collapse: collapse;
border: 1px solid silver;
@onewhaleid
onewhaleid / atom_fix_deprecations.py
Created February 1, 2017 19:22
Python script for fixing deprecations in Atom packages.
import os
import sys
# Usage:
# > python atom_rename_deprecations path_to_package path_to_deprecations
def main(path_to_package, path_to_deprecations):
"""
Fixes deprecated function calls in atom package.