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
    
  
  
    
  | csscss -n 5 -v custom.css | 
  
    
      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
    
  
  
    
  | javascript: (function(){var ticketnumber = prompt("Enter ticket number without prefix", "");if (ticketnumber != null) {window.location = "https://loxabeauty.atlassian.net/browse/LTWO-" + ticketnumber;}})(); | 
  
    
      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
    
  
  
    
  | javascript:(function(){var allTagText=jQuery('.contentTagText:contains("SP")').text();var doneTagText=jQuery('.done .contentTagText:contains("SP")').text();var numberPattern=/\d+/g;var allSprintStoryPoints=allTagText.match(numberPattern);var allCount=0;var doneCount=0;for(var i=0;i<allSprintStoryPoints.length;i++){allCount+=parseInt(allSprintStoryPoints[i])};var doneSprintStoryPoints=doneTagText.match(numberPattern);if(doneTagText.length>0){for(var i=0;i<doneSprintStoryPoints.length;i++){doneCount+=parseInt(doneSprintStoryPoints[i])}}else{doneCount=0}alert('Total: '+allCount+' '+' Pending: '+(parseInt(allCount)-parseInt(doneCount))+' Complete: '+doneCount)}()); | 
  
    
      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
    
  
  
    
  | javascript: (function() { | |
| var allTagText = jQuery('.contentTagText:contains("SP")').text(); | |
| var doneTagText = jQuery('.done .contentTagText:contains("SP")').text(); | |
| var numberPattern = /\d+/g; | |
| var allSprintStoryPoints = allTagText.match(numberPattern); | |
| var allCount = 0;var doneCount = 0; | |
| for (var i = 0; i < allSprintStoryPoints.length; i++) { | |
| allCount += parseInt(allSprintStoryPoints[i]) | |
| }; | |
| var doneSprintStoryPoints = doneTagText.match(numberPattern); | 
  
    
      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
    
  
  
    
  | javascript: (function(){var e=document.location;var t=document.getElementsByTagName("link");var n="none";for(var r=0,i;i=t[r];r++){if(i.getAttribute("rel")=="canonical"){n=i.getAttribute("href");break}}alert("Canonical URL:\n" + n)})(); | 
  
    
      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
    
  
  
    
  | javascript: (function(){var e=document.location;var t=document.getElementsByTagName("link");var n="none";for(var r=0,i;i=t[r];r++){if(i.getAttribute("rel")=="canonical"){n=i.getAttribute("href");break}}alert("Canonical URL:\n" + n)})(); | 
  
    
      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
    
  
  
    
  | javascript:(function(){jQuery('#billing\\:firstname').val('test');jQuery('#billing\\:lastname').val('test');jQuery('#billing\\:email').val('test@loxabeauty.com');jQuery('#billing\\:street1').val('test');jQuery('#billing\\:city').val('test');jQuery('#billing\\:postcode').val('45324');jQuery('#billing\\:telephone').val('111');jQuery('#billing\\:region_id').val(47);jQuery('#billing\\:region_id').val(47).attr("selected", "selected");})(); | 
  
    
      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
    
  
  
    
  | var tree = function(leafs) { | |
| var branches = []; | |
| if( leafs.length == 1 ) return leafs; | |
| for( var k in leafs ) { | |
| var leaf = leafs[k]; | |
| tree(leafs.join('').replace(leaf,'').split('')).concat("").map(function(subtree) { | |
| branches.push([leaf].concat(subtree)); | |
| }); | |
| } | |
| return branches; | 
  
    
      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
    
  
  
    
  | # ~/Gemfile | |
| source "http://rubygems.org" | |
| group :development do | |
| gem 'compass' # Depends on Sass, will be installed automatically. | |
| gem 'compass-960-plugin' # 960.gs | |
| gem 'compass-validator' # So you can `compass validate`. | |
| gem 'oily_png' # Faster Compass sprite generation. | |
| gem 'css_parser' # Helps `compass stats` output statistics. |