This file contains 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
<?php | |
/** 1 2 3 4 5 6 7 8 | |
* 5678901234567890123456789012345678901234567890123456789012345678901234567890 | |
* | |
* Standardized Function Include file, v.0.0.2 | |
* Johnathan McKnight (akoimeexx@gmail.com) | |
* | |
* | |
* This functions are basic activities I find myself writing over and over | |
* again from project to project, on a nearly constant basis. They have been |
This file contains 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
import httplib | |
import re | |
import urllib | |
""" | |
@name: SimpleHTTP | |
@author: Johnathan McKnight, aka Akoi Meexx | |
@license: Creative Commons Attribution-Share Alike 3.0 | |
United States License (CC-SA) |
This file contains 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
<?php | |
class csvDB { | |
/** | |
* Class constant declarations | |
*/ | |
const FILE_MIMETYPE = 'text/csv'; | |
const FILE_EXTENSION = 'csv'; | |
const READ = "r"; | |
const WRITE = "a"; |
This file contains 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
/** | |
* JavaScript datatype functions | |
* adds additional functions to datatypes that are generally considered | |
* essential in other programming languages | |
* | |
* written by Akoi Meexx on April 13th, 2010 | |
*/ | |
/** | |
* String functions | |
*/ |
This file contains 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
/** | |
* CSS Isometric Layer Display | |
* written by Akoi Meexx - June 14th, 2011 | |
* | |
* Source obvs. free for all. If you use this and like it, just hit me up on | |
* twitter @akoimeexx. Everyone can always use a little ego boost. | |
*/ | |
/** | |
* CHANGELOG |
This file contains 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
/** | |
* AVR program to provide lighting modes for an RGB LED | |
* Copyright (c) 2011 Akoi Meexx (http://akoimeexx.com/) | |
* | |
* Chip type: Attiny13 | |
* Clock frequency: Default internal clock (9.6MHz / 8 = 1.2MHz) | |
* +--------+ | |
* [ (PB5) |1* 8| (VCC) Power ] | |
* [ Button (PB3) |2 7| (PB2) BLUE ] | |
* [ (PB4) |3 6| (PB1) GREEN ] |