Skip to content

Instantly share code, notes, and snippets.

View chriswrightdesign's full-sized avatar

Chris Wright chriswrightdesign

View GitHub Profile
@chriswrightdesign
chriswrightdesign / webkit-anim.scss
Created October 28, 2013 13:13
Fix the webkit animation bug
.no-flick{-webkit-transform:translate3d(0,0,0);} // put this class (or extend placeholder) to anywhere you don't want to flicker during a transform
.animation {
-webkit-backface-visibility: hidden; //will solve flickering on animated layers
}
@chriswrightdesign
chriswrightdesign / mysqlsearch.mysql
Created September 6, 2012 00:44
mySQL: Select statements
Word searching
1.
SELECT * FROM TABLE WHERE MATCH (`field`) AGAINST ('Keyword')
(Fastest)
2.