This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
find ./ -exec grep -Hn "yourSearch" {} \; |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
// escape blockquotes | |
if ( | |
selectedNode.children && | |
(lastNode = Array.prototype.slice.call(selectedNode['children'], -1)[0]).tagName == 'BR' | |
&& selectedNode.tagName == 'BLOCKQUOTE') { | |
// remove previous break | |
selectedNode.removeChild(lastNode); | |
// attach to something new | |
var invisibleSpace = document.createTextNode(wysihtml5.INVISIBLE_SPACE); |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
/** | |
* Application.ui.Playlist | |
* | |
* Description | |
* | |
* | |
*/ | |
Application.ui.Playlist = new(function(){ |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<!DOCTYPE html> | |
<html> | |
<head> | |
<style> | |
html, body { | |
margin : 0; | |
padding : 0; | |
height : 100%; | |
width : 100%; | |
background : #000; |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<!DOCTYPE html> | |
<html> | |
<head> | |
<style> | |
ul, li { margin: 0; padding: 0; list-style: none; } | |
.menu-wrapper { | |
position: absolute; | |
width: 200px; | |
font: 13px/1.4 "freight-sans-pro", "Helvetica", Arial, sans-serif; |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
// Define packages: | |
var sigma = {}; | |
sigma.tools = {}; | |
sigma.classes = {}; | |
sigma.instances = {}; | |
// Adding Array helpers, if not present yet: | |
(function() { | |
if (!Array.prototype.some) { | |
Array.prototype.some = function(fun /*, thisp*/) { |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<!DOCTYPE html> | |
<html> | |
<head> | |
<title>Posters Test for Video</title> | |
<style> | |
.group { | |
height: 250px; | |
outline: 1px solid red; | |
position: relative; |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/bin/bash | |
set -e | |
# | |
# @package Wordpress Commands | |
# @authors Matt Kenefick ([email protected]) | |
# @date 2014-08-07 16:27:36 | |
# | |
# Install the most recent version of Wordpress to your current directory. | |
# Connect to your local MySQL, check if DB exists, if not, create. |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
/* | |
from 2 years ago: http://bugs.jqueryui.com/ticket/8844 | |
most things don't work there. | |
I was testing on Parallels, Windows 8, IE 11.0.9600 | |
Bullets from list items kept showing up on desktop IE 11 and | |
windows phone 8 IE10 no matter what I did. !important, dynamic | |
style, etc, didn't work. They always showed up. |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
@-webkit-keyframes pulse { | |
0% { | |
-webkit-transform: scale3d(1, 1, 1); | |
transform: scale3d(1, 1, 1); | |
} | |
50% { | |
-webkit-transform: scale3d(1.05, 1.05, 1.05); | |
transform: scale3d(1.05, 1.05, 1.05); | |
} |
OlderNewer