Skip to content

Instantly share code, notes, and snippets.

View thomasplevy's full-sized avatar
🍗
I'm Hungry

Thomas Patrick Levy thomasplevy

🍗
I'm Hungry
  • Moose Town Media Business Company
  • Phoenix, AZ
  • 21:21 (UTC -07:00)
View GitHub Profile
@thomasplevy
thomasplevy / gist:c34ca1252cb2ed79829f
Created October 8, 2014 17:00
MySQL Database Find and Replace
###
# @source http://stackoverflow.com/a/19374770/400568
###
SELECT t,
INSERT(col,
LOCATE(@start, col),
LOCATE(@end, col) + CHAR_LENGTH(@end) - LOCATE(@start, col),
'') with_delimiters_replaced,
INSERT(col,
@thomasplevy
thomasplevy / gist:2328971
Created April 7, 2012 13:36
HTML5 STARTER
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="utf-8">
<title>Thomas Patrick Levy</title>
<meta name="description" content="">
<meta name="author" content="">
<!-- STYLESHEETS -->
@thomasplevy
thomasplevy / gist:2495620
Created April 26, 2012 03:45
CSS: normalize
/*! normalize.css 2011-11-04T15:38 UTC - http://github.com/necolas/normalize.css */article,aside,details,figcaption,figure,footer,header,hgroup,nav,section{display:block}audio,canvas,video{display:inline-block;*display:inline;*zoom:1}audio:not([controls]){display:none}[hidden]{display:none}html{font-size:100%;overflow-y:scroll;-webkit-text-size-adjust:100%;-ms-text-size-adjust:100%;-webkit-tap-highlight-color:rgba(0,0,0,0)}body{margin:0}body,button,input,select,textarea{font-family:sans-serif}a{color:#00e}a:focus{outline:thin dotted}a:hover,a:active{outline:0}h1{font-size:2em}abbr[title]{border-bottom:1px dotted}b,strong{font-weight:bold}blockquote{margin:1em 40px}dfn{font-style:italic}mark{background:#ff0;color:#000}pre,code,kbd,samp{font-family:monospace,serif;_font-family:'courier new',monospace;font-size:1em}pre{white-space:pre;white-space:pre-wrap;word-wrap:break-word}q{quotes:none}q:before,q:after{content:'';content:none}small{font-size:75%}sub,sup{font-size:75%;line-height:0;position:relative;vertical-
@thomasplevy
thomasplevy / gist:2495621
Created April 26, 2012 03:45
LESS: CSS3 MIXINS
.gradient(@args){
background-image: -webkit-linear-gradient(@args);
background-image: -moz-linear-gradient(@args);
background-image: -ms-linear-gradient(@args);
background-image: -o-linear-gradient(@args);
background-image: linear-gradient(@args);
}
.border-radius(@args){
-webkit-border-radius: @args;
-moz-border-radius: @args;
@thomasplevy
thomasplevy / html5.haml
Created April 26, 2012 03:43
HAML: HTML5/HAML/SINATRA STARTER
!!!
%html{ :lang => 'en'}
%head
%title= @title
%meta{ :charset => 'utf-8' }
%meta{ :content => '', :name => 'description' }
%meta{ :content => '', :name => 'author' }
%link{ :rel => 'stylesheet', :href => '/css/style.css' }
%script{ :src => 'https://ajax.googleapis.com/ajax/libs/jquery/1.7.2/jquery.min.js' }
@thomasplevy
thomasplevy / gist:2495624
Created April 26, 2012 03:45
PHP: mysql_query
$result = mysql_query("SELECT * FROM $table");
if(!$result) { die("SOMETHING BROKE!"); }
while($row = mysql_fetch_array($result)) {
echo '
'.$row['row'].'
';
}
@thomasplevy
thomasplevy / dabblet.css
Created May 16, 2012 15:01
CSS BOOKMARK WITH SHADOW BISH
/* CSS BOOKMARK WITH SHADOW BISH */
.bookmark {
position: absolute;
top: 50px;
left: 150px;
background: rgba(15,135,85,.5);
width: 140px;
height: 350px;
}
@thomasplevy
thomasplevy / Fullpage.html
Created May 18, 2012 22:35
CSS AWESOME INPUTS
<!DOCTYPE html>
<html>
<head>
<meta charset="UTF-8">
<title>CSS SEXY INPUTS &middot; CodePen</title>
<style>
@thomasplevy
thomasplevy / dabblet.css
Created June 10, 2012 16:15 — forked from anonymous/dabblet.css
css3 slash images
/**
* css3 slash images
*/
div {
position: relative;
margin: 25px;
}
div:before {
@thomasplevy
thomasplevy / gist:5879274
Last active December 19, 2015 01:58
META TAGS (with Social Stuff)
<!-- HTML5 -->
<meta name="description" content="{{DESCRIPTION}}">
<meta name="author" content="{{AUTHOR}}">
<!-- FACEBOOK -->
<meta property="og:image" content="{{IMG URL}}">
<meta property="og:title" content="{{PAGE TITLE}}">
<meta property="og:url" content="{{CANONICAL URL}}">
<meta property="og:site_name" content="{{SITE NAME}}">
<meta property="og:type" content="{{WEBSITE TYPE}}"> <!-- SEE: https://developers.facebook.com/docs/opengraph/#types -->