This file contains 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
#!/bin/bash | |
for i in `cat url.txt` | |
# Your mileage may vary. | |
do curl -v $i -H 'Accept: text/html,application/xhtml+xml,application/xml;q=0.9,image/webp,*/*;q=0.8' -H 'Connection: keep-alive' -H 'DNT: 1' -H 'Accept-Encoding: gzip,deflate,sdch' -H 'Host: ret.nu' -H 'Accept-Language: en-US,en;q=0.8' -H 'User-Agent: Mozilla/5.0 (Macintosh; Intel Mac OS X 10_9_0) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/31.0.1650.48 Safari/537.36' -L --compressed -O | |
done |
This file contains 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
jQuery('.previousResultPage a:first')[0].click() |
This file contains 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
jQuery('.nextResultPage a:first')[0].click() |
This file contains 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
document.getElementById("selectAll").click(); |
This file contains 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 notes = [] | |
$('.footnotes p').each(function() { | |
notes.push($(this).text().replace('↩','')) | |
}); | |
$('sup').each(function (index) { | |
$(this).wrap("<span data-tooltip class=\"has-tip\" title=\"" + notes[index] + "\"></span>"); | |
}); |
This file contains 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 notes = []; | |
$('a[href*="ftnref"]').each(function (i) { | |
n = i + 1; | |
notes.push($(this[i]).parent().text()); | |
$(this).parent().wrap('<li class="footnote" id=fn:' + n + '>' + notes[i] + '</li>'); | |
$(this).remove(); | |
}); | |
$('.footnote').parent().wrapAll('<div class="footnotes" />'); | |
$('div > .footnote').unwrap(); | |
$('.footnotes').wrapInner('<ol></ol>'); |
This file contains 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
#progresswrapper { | |
position: fixed; | |
top: 0px; | |
height: 2px; | |
width: 100%; | |
z-index: 1000; | |
} | |
#progressbar { | |
top: 0; | |
position: fixed; |
This file contains 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
å | |
alle | |
andre | |
at | |
av | |
både | |
båe | |
bare | |
begge | |
ble |
This file contains 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
tell application "Transmit" | |
set myFave to item 1 of (favorites whose name is "NameOfFavorite") | |
set myRules to (skip rules whose name is "codekit") | |
tell current tab of (make new document at end) | |
connect to myFave | |
change location of local browser to path "~/Codekit/Projekt" | |
change location of remote browser to path "domains/domain/assets" | |
synchronize local browser to remote browser using skip rules myRules | |
close remote browser | |
close |
OlderNewer