Skip to content

Instantly share code, notes, and snippets.

View daveaseeman's full-sized avatar

Dave Seeman daveaseeman

View GitHub Profile
@daveaseeman
daveaseeman / rename1.py
Last active March 14, 2018 18:09
Rename PDF files by date (examples)
import os
import datetime
path = os.getcwd()
filenames = os.listdir(path)
for filename in filenames:
if ".pdf" in filename:
old_file_and_path = os.path.join(path, filename)
filename = filename[:-4]
@daveaseeman
daveaseeman / bash_profile
Last active November 29, 2017 03:06
terminal customization
# import style from .bashrc
if [ -f ~/.bashrc ]; then
source ~/.bashrc
fi
alias laptop='bash <(curl -s https://raw.githubusercontent.com/daveaseeman/laptop/master/laptop)'
# set alias for python 3
alias python=python3
alias pip=pip3
#!/usr/bin/python
# Copyright (c) 2017 ObjectLabs Corporation
# Distributed under the MIT license - http://opensource.org/licenses/MIT
__author__ = 'mLab'
# Written with pymongo-3.4
# Documentation: http://docs.mongodb.org/ecosystem/drivers/python/
# A python script connecting to a MongoDB given a MongoDB Connection URI.
@daveaseeman
daveaseeman / mobile-bg.scss
Last active July 4, 2017 15:42
Full size background on mobile using media-query
.mobile-bg {
background-image: url('smiley.gif'); // remove if setting url in html
background-repeat: no-repeat;
background-attachment: fixed;
background-position: center center;
-webkit-background-size: cover;
-moz-background-size: cover;
-o-background-size: cover;
background-size: cover;
@media #{$small-and-down} {
@daveaseeman
daveaseeman / .gitignore
Last active June 17, 2017 17:08
python .gitignore
# Compiled Python Bytecode
*.pyc
*.pyo
# OS & Temp Files
.DS_Store
.DS_Store?
._*
.Trashes
*~
@daveaseeman
daveaseeman / readscale.py
Created May 24, 2017 20:00 — forked from jacksenechal/readscale.py
Python script to read a USB scale in the Linux
#!/usr/bin/python
import os, time
import usb.core
import usb.util
import pygtk
pygtk.require('2.0')
import gtk
from sys import exit
import math
@daveaseeman
daveaseeman / gist:2acf7e62c8759df87981915a0acdaaf0
Created May 3, 2017 19:31 — forked from Bouke/gist:11261620
Multiple Python installations on OS X

Previous versions used homebrew to install the various versions. As suggested in the comments, it's better to use pyenv instead. If you are looking for the previous version of this document, see the revision history.

$ brew update
$ brew install pyenv
$ pyenv install 3.5.0
$ pyenv install 3.4.3
$ pyenv install 3.3.6
$ pyenv install 3.2.6
$ pyenv install 2.7.10

$ pyenv install 2.6.9

@daveaseeman
daveaseeman / lemonstand.markdown
Last active April 20, 2017 03:27
Lemonstand Flow

cd into theme folder

cd theme-folder-name

Build Source

gulp build

cd out

cd ..

Run lemonsync (config needed if name != "lemonsync.cfg"

@daveaseeman
daveaseeman / gist:0ad7cbbe24752c429b07
Last active August 29, 2015 14:25 — forked from mhawksey/gist:1276293
Google App Script to insert data to a google spreadsheet via POST or GET
/*
Copyright 2011 Martin Hawksey
Licensed under the Apache License, Version 2.0 (the "License");
you may not use this file except in compliance with the License.
You may obtain a copy of the License at
http://www.apache.org/licenses/LICENSE-2.0
Unless required by applicable law or agreed to in writing, software
@daveaseeman
daveaseeman / display.txt
Created July 20, 2015 16:30
Solidworks 2015 Keyboard Shortcuts
User-Defined Toolbar
User-Defined Mouse Gestures
Hide/Show Display Pane
Hide/Show Feature Manager Tree
Hide/Show All Active Toolbars
Full Screen Mode On/Off
Hide/Show Task Pane
Collapse All Items in Feature Tree
Scroll to Top of Feature Tree
Scroll to Bottom of Feature Tree