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
| <?php /*Idea: You can fake a default using the well class! */?> | |
| <div class="well alert text-center"><strong>Update on Feb 4th 2015</strong>: Fixed small bug where the query was looking at orders of multiple of the same item as one sale.</div> |
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
| #!/bin/bash | |
| # Check Amazon Lowest Price | |
| while true | |
| do | |
| leCount=$( curl -s http://www.amazon.com/gp/aw/d/AISN_NUMBER_HERE | grep -c COMPANY ) | |
| if [[ $leCount -gt 0 ]] | |
| then | |
| echo "Still Lowest... " | |
| date |
NewerOlder