Skip to content

Instantly share code, notes, and snippets.

View jedarlington's full-sized avatar

James Darlington jedarlington

View GitHub Profile
@jedarlington
jedarlington / SpongeBob in Pure CSS.markdown
Created September 18, 2015 13:49
SpongeBob in Pure CSS
@jedarlington
jedarlington / Magento HTML sitemaps generated for category and product at this url (Product sitemap link included in category sitemap)
Created January 21, 2014 15:52
Magento HTML sitemaps generated for category and product at this url (Product sitemap link included in category sitemap)
@jedarlington
jedarlington / 1_ruby_quicksort.rb
Created January 21, 2014 09:41
Here are some things you can do with Gists in GistBox.
# Use Gists to store entire functions
class QuickSort
def self.sort!(keys)
quick(keys,0,keys.size-1)
end
private
def self.quick(keys, left, right)