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
Verifying that +davidmassiani is my blockchain ID. https://onename.com/davidmassiani |
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
REGEX Sublime Text de remplacement des simples quotes par des doubles (et inversement) | |
(en plus d'ajouter le plugin "toggle quotes") | |
Find '(.*?)' | |
Where <open files> | |
Replace "$1" |
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
function scrollToAnchor(aid,v){ | |
var aTag = $(aid); | |
$('html,body').animate({scrollTop: aTag.offset().top - 60},v); | |
} | |
$(document).ready(function(){ | |
$('.subnav').waypoint('sticky'); | |
$('.subnav a').on('click',function(){ |
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 | |
if( ($new->current_post % 3) == 2 ){ | |
?> | |
<div class="clearfix"></div> | |
<?php | |
} | |
?> |
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
Columns : 12 | |
Grid Columns : 60px | |
Grid Gutter : 30px | |
------------------------------------------------------------------- | |
Grid Columns X Columns = GC | |
Grid Gutter X ( Columns - 1 ) = GG | |
------------------------------------------------------------------- |
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
$('#bottom').click(function() { | |
$(documentBody).animate({scrollTop: $('#top').offset().top}, 2000,'easeInOutCubic'); | |
}); |
NewerOlder