Forked from Mohit Aneja's Pen Tabbed Content with jQuery and CSS.
Forked from Mohit Aneja's Pen Tabbed Content with jQuery and CSS.
A Pen by Captain Anonymous on CodePen.
Forked from Mohit Aneja's Pen Tabbed Content with jQuery and CSS.
Forked from Mohit Aneja's Pen Tabbed Content with jQuery and CSS.
A Pen by Captain Anonymous on CodePen.
<?php | |
/* | |
Plugin Name: WooCommerce <enter name> Gateway | |
Plugin URI: http://woothemes.com/woocommerce | |
Description: Extends WooCommerce with an <enter name> gateway. | |
Version: 1.0 | |
Author: WooThemes | |
Author URI: http://woothemes.com/ | |
Copyright: © 2009-2011 WooThemes. |
<?php | |
# Demonstrates how to add new contact to campaign. | |
# JSON::RPC module is required | |
# available at http://github.com/GetResponse/DevZone/blob/master/API/lib/jsonRPCClient.php | |
require_once 'jsonRPCClient.php'; | |
# your API key is available at | |
# https://app.getresponse.com/my_api_key.html |
/* | |
* RC4 symmetric cipher encryption/decryption | |
* | |
* @license Public Domain | |
* @param string key - secret key for encryption/decryption | |
* @param string str - string to be encrypted/decrypted | |
* @return string | |
*/ | |
function rc4(key, str) { | |
var s = [], j = 0, x, res = ''; |
package main | |
import ( | |
"fmt" | |
"sync" | |
"time" | |
) | |
func main() { |
" Note: Skip initialization for vim-tiny or vim-small. | |
if 0 | endif | |
let g:make = 'gmake' | |
if system('uname -o') =~ '^GNU/' | |
let g:make = 'make' | |
endif | |
" Add or remove your Bundles here: | |
call plug#begin() |