Skip to content

Instantly share code, notes, and snippets.

@tnadav
tnadav / how.I.met.your.mother.regex.jason
Created May 6, 2011 10:56
Regex template for torrent RSS download
/How[\.\s]?I[\.\s]?Met[\.\s]?Your[\.\s]?Mother[\.\s]?S[0-9]{2}E[0-9]{2}([\.\s]?REPACK)?[\.\s]?720p[\.\s]?HDTV[\.\s]?x264/i
jQuery.require.urlFilter = function(url) {
if ( !/\./.test(url) || (/^([\w\d$]+)./.test(url) && !/\//.test( url ) && !/.js$/.test( url )) ) {
url = url.replace(/\./g, "/").replace(/^([\w\d$]+)./, function(all, name) {
return (requireNamespaces[name] || name) + "/";
}) + ".js";
}
return url;
}