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
# Download all the images from a webpage | |
# Usage: imagegrab URL | |
function imagegrab () { | |
wget -nd -r -l 2 -A jpg,jpeg,png,gif $1 | |
} | |
# Grab all the colours from a stylesheet and dump them in a snippets file | |
# Totally useless with minified stylesheets. | |
# Usage: stylegrab styleSheetURL styleExpression | |
function stylesgrab () { |
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
<header> | |
<div class="button first" href="#1">1</div> | |
<a class="button second" href="#2">2</a> | |
<a class="button third" href="#3">3</a> | |
<a class="button fourth" href="#4">4</a> | |
</header> | |
<div id="container"> |
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
<div class="navigation"> | |
<ul> | |
<li> | |
<a href="#left" class="link-left">Look at that left page</a> | |
</li> | |
<li> | |
<a href="#middle" class="link-middle">Look at that middle page</a> | |
</li> | |
<li> | |
<a href="#right" class="link-right">Look at that right page</a> |
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
<div class="navigation"> | |
<ul> | |
<li> | |
<a href="#left" class="link-left">Look at that left page</a> | |
</li> | |
<li> | |
<a href="#middle" class="link-middle">Look at that middle page</a> | |
</li> | |
<li> | |
<a href="#right" class="link-right">Look at that right page</a> |
NewerOlder