Part of a series of examples. See:
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
{ | |
"id": "00Q22000001GZsGEAW", | |
"status": null, | |
"lead_contact": { | |
"name": "test Test", | |
"phone": null, | |
"email": null | |
}, | |
"archived": null, | |
"expire_at": null, |
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
Leads Actions: | |
------------ | |
GetLeads (URL: /locations/:location_id/leads?filter=<active|archived>) | |
------------ | |
GetLead (URL: /locations/:location_id/leads/:lead_id) |
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
<!DOCTYPE html> | |
<html> | |
<head> | |
<meta http-equiv="Content-Type" content="text/html;charset=utf-8"/> | |
<style type="text/css"> | |
body { | |
background: #333; | |
} |
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
/* based off of tinyxhr by Shimon Doodkin - license: public doamin - https://gist.github.com/4706967 | |
Added ontop of Simon's code: | |
- Serialization of the object | |
- Moved some arguments to line up with jQuery( url, data, callback ) | |
- Will attempt to parse JSON from the response if it's valid JSON | |
- Added a tinyPost and tinyGet method | |
Some other things that'd be good: | |
- Seprate error callback for failed responses |
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
# this script will install whisper, carbon and graphite-web on the current directory | |
# Modified to reflect current WebFaction python best practices | |
mkdir -p $HOME/lib/python2.7 | |
# Follow steps here http://theneum.com/blog/webfaction-virtualenv-how-to/ | |
easy_install-2.7 pip | |
pip-2.7 install virtualenvwrapper | |
mkdir ~/.virtualenvs |
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
<!DOCTYPE html> | |
<meta charset="utf-8"> | |
<link rel="stylesheet" href="http://cmx.io/v/0.1/cmx.css"/> | |
<script src="http://cmx.io/v/0.1/cmx.js"></script> | |
<body> | |
<scene id="scene1"> | |
<label t="translate(0,346)"> | |
<tspan x="0" y="0em">Comix Sample</tspan> | |
</label> | |
<actor t="translate(150,49)" pose="-11,9|-5,117|-11,99|-11,89|-11,79|-11,59|-16,34|-21,9|-6,34|-1,9|-18,79|-18,59|-6,79|-1,59"> |
Part of a series of examples. See: