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
package gws.grottworkshop.fourandroid; | |
import gws.grottworkshop.fourandroid.FontLoader.Font; | |
import gws.grottworkshop.fourandroid.FontLoader.FontCollector; | |
import gws.grottworkshop.fourandroid.FontLoader.RawFont; | |
import gws.grottworkshop.fourandroid.util.ImageCacheManager; | |
import gws.grottworkshop.fourandroid.util.ImageCacheManager.CacheType; | |
import gws.grottworkshop.fourandroid.util.RequestManager; | |
import android.app.Application; |
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
from datetime import date | |
from fabric import colors | |
from fabric.api import env, local, settings, run, cd | |
from fabric.context_managers import prefix | |
from fabric.contrib.files import exists | |
# Global Variables! | |
# ----------------- | |
DEFAULT_VENV = 'my_venv' | |
DEFAULT_VENV_ACTIVATE = "source /path/to/your/.virtualenvs/{0}/bin/activate" |
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/env sh | |
## | |
# This is script with usefull tips taken from: | |
# https://github.com/mathiasbynens/dotfiles/blob/master/.osx | |
# | |
# install it: | |
# curl -sL https://raw.github.com/gist/2108403/hack.sh | sh | |
# |
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 | |
# ############################################################################ | |
# | |
# MIT licensed | |
# http://www.opensource.org/licenses/mit-license.php | |
# | |
# Script to create a new PhoneGap project from the PhoneGap Template. | |
# You need to install PhoneGapLib first (through the installer) | |
# before this script can work. |
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 | |
# Copyright (c) 2011 Float Mobile Learning | |
# http://www.floatlearning.com/ | |
# | |
# Permission is hereby granted, free of charge, to any person obtaining | |
# a copy of this software and associated documentation files (the "Software"), | |
# to deal in the Software without restriction, including without limitation | |
# the rights to use, copy, modify, merge, publish, distribute, sublicense, | |
# and/or sell copies of the Software, and to permit persons to whom the |