Skip to content

Instantly share code, notes, and snippets.

View macfire's full-sized avatar

MediaFuse macfire

View GitHub Profile
@macfire
macfire / models.py
Created April 25, 2016 18:32 — forked from johnschimmel/models.py
example model with mongoengine and wtforms
# -*- coding: utf-8 -*-
from mongoengine import *
from flask.ext.mongoengine.wtf import model_form
from datetime import datetime
class Comment(EmbeddedDocument):
name = StringField()
comment = StringField()
timestamp = DateTimeField(default=datetime.now())
@macfire
macfire / MultiExporter.jsx
Created April 30, 2016 14:47 — forked from TomByrne/MultiExporter.jsx
An Illustrator script for exporting layers and/or artboards into separate files (PNG8 / PNG24 / EPS / PDF / SVG / JPG / FXG).See http://www.tbyrne.org/export-illustrator-layers-to-svg-files
// MultiExporter.jsx
// Version 0.1
// Version 0.2 Adds PNG and EPS exports
// Version 0.3 Adds support for exporting at different resolutions
// Version 0.4 Adds support for SVG, changed EPS behaviour to minimise output filesize
// Version 0.5 Fixed cropping issues
// Version 0.6 Added inner padding mode to prevent circular bounds clipping
//
// Copyright 2013 Tom Byrne
// Comments or suggestions to tom@tbyrne.org
@macfire
macfire / create_svg_symbol_library.py
Last active June 29, 2017 14:05
Convert a folder of individual SVG icon files to a SVG symbol library embedded in HTML document. Includes a bullet list of the symbols.
# -*- coding: utf-8 -*-
"""
create_svg_symbol_library.py
~~~~~~~~~~~~~~~~~~~
:copyright: (c) 2016 by Jerry McCreary.
:license: MIT
Convert a folder of individual SVG icon files to a SVG symbol library
embedded in HTML document. Includes a bullet list of the symbols.
@macfire
macfire / nginx.conf
Created June 7, 2016 22:01 — forked from plentz/nginx.conf
Best nginx configuration for improved security(and performance). Complete blog post here http://tautt.com/best-nginx-configuration-for-security/
# to generate your dhparam.pem file, run in the terminal
openssl dhparam -out /etc/nginx/ssl/dhparam.pem 2048
@macfire
macfire / 01-ubuntu-16.04-setup.md
Created October 17, 2016 13:28 — forked from tomysmile/01-ubuntu-16.04-setup.md
Ubuntu 16.04 Setup in Digital Ocean

Initial Server Setup with Ubuntu 16.04

Update Packages

$ sudo apt-get update

Add Swap

@macfire
macfire / countryinfo.py
Created October 18, 2016 14:45 — forked from pamelafox/countryinfo.py
Python list of country codes, names, continents, capitals, and pytz timezones
countries = [
{'timezones': ['Europe/Andorra'], 'code': 'AD', 'continent': 'Europe', 'name': 'Andorra', 'capital': 'Andorra la Vella'},
{'timezones': ['Asia/Kabul'], 'code': 'AF', 'continent': 'Asia', 'name': 'Afghanistan', 'capital': 'Kabul'},
{'timezones': ['America/Antigua'], 'code': 'AG', 'continent': 'North America', 'name': 'Antigua and Barbuda', 'capital': "St. John's"},
{'timezones': ['Europe/Tirane'], 'code': 'AL', 'continent': 'Europe', 'name': 'Albania', 'capital': 'Tirana'},
{'timezones': ['Asia/Yerevan'], 'code': 'AM', 'continent': 'Asia', 'name': 'Armenia', 'capital': 'Yerevan'},
{'timezones': ['Africa/Luanda'], 'code': 'AO', 'continent': 'Africa', 'name': 'Angola', 'capital': 'Luanda'},
{'timezones': ['America/Argentina/Buenos_Aires', 'America/Argentina/Cordoba', 'America/Argentina/Jujuy', 'America/Argentina/Tucuman', 'America/Argentina/Catamarca', 'America/Argentina/La_Rioja', 'America/Argentina/San_Juan', 'America/Argentina/Mendoza', 'America/Argentina/Rio_Gallegos', 'America/Argentina/Ushuai
@macfire
macfire / fontawesome_list.py
Created November 8, 2017 14:52
FontAwesome choices in Select2 drop down field
# Using tuples to trigger Select2 in flask-admin.
# Adjust as needed
FONTAWESOME = (
("","---"),
("fa-500px", "fa-500px"),
("fa-address-book", "fa-address-book"),
("fa-address-book-o", "fa-address-book-o"),
("fa-address-card", "fa-address-card"),
("fa-address-card-o", "fa-address-card-o"),
@macfire
macfire / javascript_console_helpers.js
Created November 9, 2017 14:41
Javascript console helpers
/**
* Short version to window.console.log()
*/
var LOG = LOG || console.log.bind(console);
/**
* Display function caller
* Put at beginning of a function to determine who called the function
*/
// Display function name only
@macfire
macfire / codekit_hook_timestamp.txt
Last active August 3, 2018 21:49
Codekit hook: timestamp
//Shell script in 'Hooks' settings panel
// Prepends timestamp to specified files
TIME=$(date +"%a %d %b %Y %H:%M:%S")
lf=$'\n';
sed "1s;^;/* $TIME */\\$lf;" $CK_INPUT_PATH > $CK_OUTPUT_PATH
@macfire
macfire / flask_gridfs_images.py
Created April 6, 2019 23:29 — forked from cuppster/flask_gridfs_images.py
Recipe for downloading images into a mongoDB gridfs collection, then serving the images with a Flask application. No temp files created.
#!/usr/bin/env python
# -*- coding: utf-8 -*-
"""
SYNOPSIS
flask_gridfs_images.py --start
flask_gridfs_images.py --add <IMAGE_URL>
DESCRIPTION