Skip to content

Instantly share code, notes, and snippets.

View bsquidwrd's full-sized avatar
💭
Learning new things everyday

Squid bsquidwrd

💭
Learning new things everyday
View GitHub Profile
@bsquidwrd
bsquidwrd / my_standard.sql
Last active March 22, 2017 17:07
SQL Standard vs My standard
SELECT
S.[ID]
,S.[FN]
,S.[LN]
FROM
STF S
WHERE
S.[DEL] = 0
AND S.[ID] >= 100
@bsquidwrd
bsquidwrd / fetch_emails.py
Created March 16, 2017 17:05
Fetch emails with IMAP
import email
import imaplib
import os
class FetchEmail():
connection = None
error = None

Keybase proof

I hereby claim:

  • I am bsquidwrd on github.
  • I am bsquidwrd (https://keybase.io/bsquidwrd) on keybase.
  • I have a public key ASB1S6BX-Ak2z1fG5VqokwMWfNVUq5AvXUNu9gSnRbTkjgo

To claim this, I am signing this object:

#!/usr/bin/env python3.4
# Project: reddit_notifier
# File Name: reddit_notifier
# Created by: bsquidwrd
# Created on: 9/6/2015
import json
import sys
import time
#!/bin/bash
while :
do
clear
git --no-pager log --graph --pretty=oneline --abbrev-commit --decorate --all $*
sleep 1
done