This file contains hidden or 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
http://www.mysite.com/index.php?option=com_content&view=article&id=[article id] |
This file contains hidden or 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
element:focus {outline:0;} |
This file contains hidden or 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
Go to the line "Options +FollowSymLinks" and add a "#" to comment it out as below. | |
#Options +FollowSymLinks (in htaccess) |
This file contains hidden or 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
setTimeout(function(){ | |
var sameHeightTop = $(".subBoxes"); | |
if (sameHeightTop.length !== 0) { | |
sameHeightTop.each(function () { | |
var tallest = 0; | |
var sameHeightChildren = $(this).find(".subBox"); | |
sameHeightChildren.each(function () { | |
var thisHeight = $(this).height(); | |
if (thisHeight > tallest) { | |
tallest = thisHeight; |
This file contains hidden or 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
<?php | |
//Protect against arbitrary paged values | |
$paged = ( get_query_var( 'paged' ) ) ? absint( get_query_var( 'paged' ) ) : 1; | |
$args = array( | |
'posts_per_page' => 10, | |
'category_name' => 'novice', | |
'paged' => $paged, | |
); | |
This file contains hidden or 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
sass -? |
This file contains hidden or 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
gem -v | |
ruby -v |
This file contains hidden or 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
sass --update | |
sass --update sytle.scss | |
sass --update style.scss:style.css | |
sass --update folder:folder | |
sass --watch folder:folder |
This file contains hidden or 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
ls - list files and folders | |
clear - reset terminal | |
cd .. - one folder back |
This file contains hidden or 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
// regular arguments | |
@mixin customBorder ($width, $color, $style) { | |
border: { | |
width: $width; | |
color: $color; | |
style: $style; | |
} | |
} |