<Additional information about your API call. Try to use verbs that match both request type (fetching vs modifying) and plurality (one vs multiple).>
-
URL
<The URL Structure (path only, no root url)>
-
Method:
/* jQuery Tiny Pub/Sub - v0.7 - 10/27/2011 | |
* http://benalman.com/ | |
* Copyright (c) 2011 "Cowboy" Ben Alman; Licensed MIT, GPL */ | |
(function($) { | |
var o = $({}); | |
$.subscribe = function() { | |
o.on.apply(o, arguments); |
<?php | |
/** | |
* Parses a url to extract the query parameters from it as a assoc array | |
* @param string $url | |
* @param bool $decode (optional) apply url decode | |
* @return array | |
*/ | |
function parseUrl($url, $decode = false) | |
{ |
<!DOCTYPE html> | |
<html lang="en"> | |
<head> | |
<meta charset="utf-8"> | |
<title>PROJECT</title> | |
<meta name="description" content="Edder Rojas Project"> | |
<meta name="author" content="Edder Rojas"> | |
<!—[if lt IE 9]> | |
<script src="http://html5shim.googlecode.com/svn/trunk/html5.js"></script> | |
<![endif]—> |
body { position: relative; padding-top: 90px; } | |
/* Responsive tests | |
------------------------- */ | |
.responsive-utilities-test { | |
margin-top: 5px; | |
margin-left: 0; | |
list-style: none; | |
overflow: hidden; /* clear floats */ | |
} |
# Don't add the Local settings file to the repository # | |
htdocs/wp-config-local.php | |
# If using SASS to compile stylesheets this saves conflicts, plus there not needed! # | |
htdocs/wp-content/themes/YOURTHEME/.sass-cache/* | |
# No need to add the upgrade folder to the repo # | |
htdocs/wp-content/upgrade/* | |
# sitemaps not needed locally # |
function ssh_connection() { | |
if $SHOW_HOST ; then | |
HOSTER="%{$fg[yellow]%}%m " | |
else | |
HOSTER="" | |
fi | |
if [[ -n $SSH_CONNECTION ]]; then | |
echo "%{$fg[cyan]%}☁ $HOSTER" | |
fi | |
} |
load "deploy" | |
set :application, "App Name" # Your app name | |
set :repository, "[email protected]:xxxxx/xxx.git" # Your git repository | |
set :user, "user_ssh" | |
set :document_root, "/home/#{user}/www/awesome_app" | |
set :deploy_via, :remote_cache | |
# SSH Settings |
#!/usr/bin/ruby | |
# finished: a quick script to notify you when a command is done using Mountain Lion notifications | |
# It grabs the current folder as the title and takes one argument as the message | |
# Example: make && make install && finished "Done compiling" || finished "compiler failed" | |
# | |
# Needs the terminal-notifier gem : `gem install terminal-notifier` | |
# Can alternately be used with the CLI <https://github.com/alloy/terminal-notifier> | |
# (remove require block below and swap comment lines at the bottom) | |
require 'rubygems' |
// Use Gists to store code you would like to remember later on | |
console.log(window); // log the "window" object to the console |