Skip to content

Instantly share code, notes, and snippets.

View seanlane's full-sized avatar

Sean Lane seanlane

View GitHub Profile
@seanlane
seanlane / slack_delete.py
Last active February 8, 2019 22:24 — forked from jackcarter/slack_delete.py
Delete Slack files older than 30 days. Rewrite of https://gist.github.com/jamescmartinez/909401b19c0f779fc9c1
#!/usr/bin/env python3
import requests
import time
import json
token = ''
#Delete files older than this:
days = 15
@seanlane
seanlane / The Technical Interview Cheat Sheet.md
Last active November 25, 2018 05:50 — forked from tsiege/The Technical Interview Cheat Sheet.md
The Technical Interview Cheat Sheet

Studying for a Tech Interview Sucks, so Here's a Cheat Sheet to Help

This is my technical interview cheat sheet that I forked from TSiege. Please comment if you would like to have me edit, or send me a link from your fork. Probably a lot left to add and correct here, so take everything with a grain of salt. This list is meant to be both a quick guide and reference for further research into these topics. It's basically a summary of that comp sci course you never took or forgot about, so there's no way it can cover everything in depth. It also will be available as a gist on Github for everyone to edit and add to.

Data Structure Basics

Array

Definition:

  • Stores data elements based on a sequential index, most commonly 0 based.
  • Based on tuples from set theory.