Skip to content

Instantly share code, notes, and snippets.

View tomkrush's full-sized avatar

Tom Krush tomkrush

  • Cars.com
  • Oswego IL
View GitHub Profile
@uhtred
uhtred / placeholdit.php
Created March 20, 2013 21:12
PHP: Placehold it image
<?php
/*
How to use
/940x278
/940x278/000000
/940x278&text=Texto
/940x278/000000&text=Texto
RewriteEngine On
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<title>Responsive Design Testing</title>
<style>
body { margin: 20px; font-family: sans-serif; overflow-x: scroll; }
.wrapper { width: 6000px; }
.frame { float: left; }
h2 { margin: 0 0 5px 0; }
@tomkrush
tomkrush / gist:1149816
Created August 16, 2011 18:40
CodeIgniter Jot Migration for Sessions
<?php
class Create_Table_Sessions
{
function up()
{
create_table('ci_sessions', array(
array('name' => 'session_id', 'type' => 'varchar(40)', 'DEFAULT' => '0', 'NOT NULL' => TRUE),
array('name' => 'ip_address', 'type' => 'varchar(16)', 'DEFAULT' => '0', 'NOT NULL' => TRUE),
array('name' => 'user_agent', 'type' => 'varchar(50)', 'NOT NULL' => TRUE),
array('name' => 'last_activity', 'type' => 'int(10)', 'UNSIGNED' => TRUE, 'DEFAULT' => '0', 'NOT NULL' => TRUE),