I hereby claim:
- I am harmstyler on github.
- I am harmstyler (https://keybase.io/harmstyler) on keybase.
- I have a public key ASAHu5vyMaraw8XhU-rFa8YOZMvsUMAbSkQsTwsi0gbtJQo
To claim this, I am signing this object:
I hereby claim:
To claim this, I am signing this object:
ezpublish: | |
system: | |
front_siteaccess: | |
locaction_view: # This Works | |
embed: | |
folder: | |
controller: "AcmeWebBundle:Content:listAllFolderChildren" | |
template: AcmeWebBundle:embed:folder.html.twig | |
match: | |
Identifier\ContentType: [folder] |
<?php | |
namespace Blend\Iterate\BlogBundle\Entity; | |
use Doctrine\ORM\Mapping as ORM; | |
/** | |
* Post | |
* | |
* @ORM\Table() |
{ | |
// Custom color scheme available at http://buymeasoda.github.com/soda-theme/extras/colour-schemes.zip | |
"color_scheme": "Packages/User/Monokai Soda (SL).tmTheme", | |
// Ignored packages, remove Vintage to enable VIM mode | |
"ignored_packages": | |
[ | |
"Vintage" | |
], | |
// Soda Theme, requires "Theme - Soda" package | |
"theme": "Soda Dark 3.sublime-theme", |
<?php | |
/** | |
* TimeStampedEntity.php | |
*/ | |
namespace HarmsTyler\Common\Entity; | |
use Doctrine\ORM\Mapping as ORM; | |
/** |
This handy piece of code allows you to create a full width/height div according to the viewport. The code also handles window resizing. Great for modal dialogs or popups.
// global vars
var winWidth = $(window).width();
var winHeight = $(window).height();
// set initial div height / width
$('div').css({
Array::equals = (array) -> | |
return false unless array | |
return false unless @length is array.length | |
i = 0 | |
while i < @length | |
if this[i] instanceof Array and array[i] instanceof Array | |
# Check and recurse into the nested arrays | |
return false unless this[i].equals(array[i]) | |
else if this[i] instanceof Object and array[i] instanceof Object | |
# Stringify objects for comparison |
Gist created from https://github.com/arturoherrero/command-line-one-liners
$ !!
$ sudo !!
import os | |
PROJECT_DIR = os.path.dirname(os.path.abspath(__file__)) | |
BASE_DIR = os.path.abspath(os.path.join(PROJECT_DIR, '../../')) | |
# URL prefix for static files. | |
# Example: "http://example.com/static/", "http://static.example.com/" | |
STATIC_URL = '/static/' | |
# Additional locations of static files |