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
call "C:\Program Files (x86)\Microsoft Visual Studio 12.0\VC\vcvarsall.bat" amd64 |
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
"""Basic script for splitting a sprite image up.""" | |
import os | |
import os.path | |
from PIL import Image | |
from PIL import ImageDraw | |
ICON_SIZE = 64 |
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
'''View a simple timesheet kept in sqlite''' | |
from __future__ import division # Ensure division is floating | |
import sqlite3 | |
import time | |
from datetime import date, timedelta | |
DB_PATH = 'db.sqlite' | |
class TimeEntry: |
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
# This requires admin privilges. | |
# | |
# Could not load file or assembly 'System.Net.Http, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a' or one of its dependencies. The system cannot find the file specified. | |
# | |
# Download and install: ASP.NET MVC 4 for Visual Studio 2010 SP1 and Visual Web Developer 2010 SP1 | |
# Link: http://www.microsoft.com/en-us/download/details.aspx?id=30683 | |
# Change into the directory where gacutil for .NET 4.5 is located. | |
cd C:\Program Files (x86)\Microsoft SDKs\Windows\v8.1A\bin\NETFX 4.5.1 Tools |