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
jscs ./ --config=.jscsrc | cut -d " " -f1 | uniq -c | sort [ | wc -l] | |
jscs ./ --config=.jscsrc #get jscs results | |
| cut -d " " -f1 #keep only the file path | |
| uniq -c #group by file path and count | |
| sort #sort asc | |
################################# | |
| wc #get the number of files to change |
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 data = []; | |
$(".ti__details").each(function(i){ | |
var artist = $(this).find(".ti__artist meta").attr("content"); | |
var title = $(this).find(".ti__title").attr("content"); | |
var format = artist + " - " + title; | |
var yt = 'http://www.youtube.com/results?search_type=&search_query=' + encodeURI(artist + " " + title) + '&aq=f&oq='; | |
var spoti = 'https://play.spotify.com/search/'+ encodeURI(artist + " " + title); | |
var item = new Object; | |
console.groupCollapsed(format); | |
console.log(yt); |
NewerOlder