- 2 Tbsp vegetable oil
- Red bell pepper, diced
- Yellow bell pepper, diced
- 4 cloves garlic, minced
- 2 yellow onions, minced
- 24 oz. can tomatoes, diced (Pastine 4-LYFE)
- 24 oz. can tomatoes, crushed (See above)
- 1 can black beans, drained/rinsed
- 1 can kidney beans, drained/rinsed
- 1 can vegetable stock
Date: [[Date of Document]] Between [Our Company] and [Your Company]
We’re not big on formality, but sometimes it’s best to have a few simple things written down so that we’re all on the same page. In this contract you won’t find complicated legal terms or large passages of unreadable text. We have no desire to trick you into signing something that you might later regret. We do want what’s best for the safety of both parties, now and in the future.
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
/** | |
* Progressive Enahncement to use SVG sprites with PNG fallback for IE6+7 | |
* | |
* The trick: | |
* Legacy IE does not support rgba values. | |
* By defining a rgba background color together with the | |
* SVG background image for all modern browsers, legacy IE | |
* will ignore the SVG and use the | |
* first background definition containing the fallback PNG | |
* |
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
(function($) { | |
$.fn.smoothScroll = function() { | |
return this.on('click', function() { | |
var hash = $(this).attr('href'); | |
var dest = $(hash).offset(); | |
$('html:not(:animated),body:not(:animated)').animate({scrollTop: dest.top, scrollLeft: dest.left}, 500, function() { | |
window.location.hash = hash; |