This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| startup_message off | |
| vbell off | |
| #set bindings so we can easily access windows 10-18 | |
| bind ) select 10 | |
| bind ! select 11 | |
| bind @ select 12 | |
| bind \# select 13 |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| #!/usr/bin/python | |
| #-*- coding: utf-8 -*- | |
| import os, sys | |
| import argparse | |
| import jinja2 | |
| import json | |
| def parse_args(argv): | |
| parser = argparse.ArgumentParser(description='') |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| #!/usr/bin/python | |
| #-*- coding: utf-8 -*- | |
| import os, sys, datetime | |
| import argparse | |
| import json | |
| from sqlalchemy.types import (VARCHAR, TEXT, BOOLEAN, INTEGER, FLOAT, TIME, | |
| DATE, DATETIME, TIMESTAMP) | |
| from sqlalchemy.schema import (ForeignKey) | |
| from sqlalchemy.sql.expression import (asc, desc) | |
| from sqlalchemy.schema import Column |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| #!/usr/bin/python | |
| #-*- coding: utf-8 -*- | |
| import os, sys, datetime | |
| import argparse | |
| import json | |
| from sqlalchemy.types import (VARCHAR, TEXT, BOOLEAN, INTEGER, FLOAT, TIME, | |
| DATE, DATETIME, TIMESTAMP) | |
| from sqlalchemy.schema import (ForeignKey) | |
| from sqlalchemy.sql.expression import (asc, desc) | |
| from sqlalchemy.schema import Column |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| #!/usr/bin/python | |
| #-*- coding: utf-8 -*- | |
| import os, sys, datetime | |
| import argparse | |
| import json | |
| import jinja2 | |
| from sqlalchemy.types import (VARCHAR, TEXT, BOOLEAN, INTEGER, FLOAT, TIME, | |
| DATE, DATETIME, TIMESTAMP) | |
| from sqlalchemy.schema import (ForeignKey) | |
| from sqlalchemy.sql.expression import (asc, desc) |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| #!/bin/bash | |
| import -display :0.0 -window root ${HOME}/Pictures/Screenshot-Study-${1}-$(date +%Y-%m-%dT%H:%M:%S).png | |
| paplay /usr/share/sounds/freedesktop/stereo/complete.oga | |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| #!/usr/bin/python | |
| #-*- coding: utf-8 -*- | |
| from __future__ import print_function | |
| import os, sys, yaml, re, uuid | |
| import datetime, argparse | |
| import jinja2 | |
| class AsiaTokyoTimezone(datetime.tzinfo): | |
| def utcoffset(self, dt): | |
| return datetime.timedelta(hours=9) |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| @namespace url(http://www.w3.org/1999/xhtml); | |
| @-moz-document url("about:newtab") { | |
| .newtab-cell { | |
| /* | |
| height:3% !important; | |
| width:12% !important; | |
| */ | |
| height: 144px !important; | |
| width: 256px !important; | |
| } |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| #!/usr/bin/python | |
| #-*- coding: utf-8 -*- | |
| from __future__ import print_function, division | |
| import os, sys, random | |
| def get_statement(): | |
| x = random.randint(1, 99) | |
| y = random.randint(1, 99) | |
| arithmetic_operators = ['+', '-', '/', '*'] | |
| arithmetic_operator = arithmetic_operators[random.randint(0, len(arithmetic_operators) - 1)] |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| #!/usr/bin/python | |
| #-*- coding: utf-8 -*- | |
| import sys, json | |
| import argparse | |
| from sqlalchemy.ext.declarative import declarative_base | |
| from sqlalchemy import create_engine | |
| Base = declarative_base() |