Skip to content

Instantly share code, notes, and snippets.

View a904guy's full-sized avatar
πŸ†š
π”Έπ•Ÿπ••π•£π•–π•¨ β„π•’π•¨π•œπ•šπ•Ÿπ•€

Andy Hawkins a904guy

πŸ†š
π”Έπ•Ÿπ••π•£π•–π•¨ β„π•’π•¨π•œπ•šπ•Ÿπ•€
View GitHub Profile
@a904guy
a904guy / LinkedIn-FullscreenMessage.js
Last active October 8, 2016 23:53
LinkedIn Full Screen Message Window
$("#layout-header,#top-text-ad-region,#inbox-threads,#inbox-module-rail,#compose-region").remove();
$("#inbox-content-container").css('min-width','100%','important');
@a904guy
a904guy / videoToPixels.py
Created April 11, 2015 07:58
Convert Video To Stitched Image From Video Frames
#!/usr/bin/python
__author__ = 'Andy Hawkins'
__version__ = 0
print
"""
__ __ __
| |--.--------| |--.-----.-----.--| |
| _ | | _ |__ --| _ | _ |
<?php
/**
* Created by [BombSquad Inc](http://www.bmbsqd.com)
* User: Andy Hawkins
* Date: 3/26/15
* Time: 9:01 PM
*/
if (php_sapi_name() == "cli") {
//Launch Web Server
@a904guy
a904guy / singleton.class.php
Last active December 19, 2015 19:29
Singleton Constructor that makes Functions based on Class names for easy access in PHP. Include it before an SPL autoloader, and you've got a shorthand method to creating class instances.IE: class db can be called like so: db(construction_vars)->method(vars)
<?php
/*
Author: Andy Hawkins
Email: YW5keUBhOTA0Z3V5LmNvbQ==
Facebook: http://fb.me/andyhawkins
HackerNews: http://hackerne.ws/user?id=a904guy
This file will allow you to create a project that will create global functions that allow you to instantly access and singleton classes from their class name