Shopping Carts
Open Source
Name | Remarks |
---|---|
OpenCart | |
Magento Community Edition |
javascript:(function(){ | |
if (document.body.parentNode.style.webkitFilter==='grayscale(1)'){ | |
document.body.parentNode.style.webkitFilter='grayscale(0)' | |
} else { | |
document.body.parentNode.style.webkitFilter='grayscale(1)'; | |
} | |
})(); |
# Convert a playlist in text format to a cue file | |
# Author: steven2358 | |
# Usage: | |
# 1. Make a playlist file "playlist.txt" using this format: | |
''' | |
Album Artist - Album Name | |
FileName.mp3 | |
MM:SS:mm - Artist1 - Title1 | |
MM:SS:mm - Artist2 - Title2 | |
MM:SS:mm - Artist3 - Title3 |
Name | Remarks |
---|---|
OpenCart | |
Magento Community Edition |
require 'rubygems' | |
require 'mechanize' | |
FIRST_NAME = 'FIRST_NAME' | |
LAST_NAME = 'LAST_NAME' | |
PHONE = 'PHONE' | |
EMAIL = 'EMAIL@provider.com' | |
PARTY_SIZE = 2 | |
SCHEDULE_RANGE = { :start_time => '19:00', :end_time => '20:30' } |
A jQuery slideshow that simply fades between a list of images.
Features:
// Use Gists to store code you would like to remember later on | |
console.log(window); // log the "window" object to the console |
name = Hide user history | |
description = "Hide the history tab on user pages." | |
package = User interface | |
version = "6.x-1.0" | |
core = "6.x" | |
project = "hide_user_history" |
name = Hide language Options | |
description = "Hide the language options on the user edit page." | |
dependencies[] = locale | |
package = User interface | |
version = "6.x-1.0" | |
core = "6.x" | |
project = "hide_language_options" |
Redirect 301 / http://www.newdomain.com/ |
# Check if Kaggle has launched a competition today. | |
# | |
# Ported to Python 2 from https://github.com/BraunPhilipp/snippets/blob/master/kaggle.py | |
from urllib2 import urlopen | |
from bs4 import BeautifulSoup | |
import time | |
import random | |
import string | |
import datetime |