Skip to content

Instantly share code, notes, and snippets.

View akoimeexx's full-sized avatar
🚗
Taking care of life.

Akoi Meexx akoimeexx

🚗
Taking care of life.
View GitHub Profile
@akoimeexx
akoimeexx / Functions.inc.php
Created March 12, 2013 17:25
Basic functions I tend to re-create on a project by project basis, consolidated and documented for easy use.
<?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
@akoimeexx
akoimeexx / SimpleHTTP.py
Created March 27, 2012 14:53
SimpleHTTP - Quick and easy HTTP method access in Python
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)
@akoimeexx
akoimeexx / csvDB.class.php
Created March 27, 2012 14:47
csvDB - a php class to provide database-like interactions with csv files
<?php
class csvDB {
/**
* Class constant declarations
*/
const FILE_MIMETYPE = 'text/csv';
const FILE_EXTENSION = 'csv';
const READ = "r";
const WRITE = "a";
@akoimeexx
akoimeexx / datatypes.js
Created March 27, 2012 14:20
Javascript Datatype functions
/**
* 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
*/
@akoimeexx
akoimeexx / 3d-layers.css
Created March 27, 2012 14:05
Iso-metrics project - a simplified way of viewing the layers of an html file
/**
* 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
@akoimeexx
akoimeexx / rgb_driver-v6.c
Created March 27, 2012 13:47
AVR Attiny13 RGB Led Driver
/**
* 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 ]