Below are important or breaking changes are implemented to the staging in comparing to the master branch
Needs to be merged!
The API specification includes all changes made last 6 month. Hopefully ;)
Below are important or breaking changes are implemented to the staging in comparing to the master branch
Needs to be merged!
The API specification includes all changes made last 6 month. Hopefully ;)
var googleDataEvents = { | |
pageTracker: null, | |
init: function (document) { | |
document.find("a[data-ga-label],area[data-ga-label]").click(this.trackLink); | |
}, | |
trackLink: function (e) { | |
if (_gaq) { | |
e.preventDefault(); | |
var l = $(this); | |
var label = l.attr("data-ga-label"); |
# Hello World | |
This is content converted from Markdown! | |
Here's a JSON sample: | |
```json | |
{ | |
"foo": "bar" | |
} |
<html> | |
<head> | |
<style> | |
h1 { | |
font-family: Calibri; | |
} | |
</style> | |
</head> | |
<body> | |
<h1>Hello World!</h1> |
#!/usr/bin/env python | |
# -*- coding: utf-8 -*- | |
import sys | |
import logging | |
import getpass | |
from optparse import OptionParser | |
import time | |
import sleekxmpp |
# Lambda function to subscribe all new cloudwatch log groups to a log shipper function | |
# Used in conjunction with https://github.com/SumoLogic/sumologic-aws-lambda | |
import os | |
import logging | |
import json | |
import uuid | |
import boto3 | |
from botocore.exceptions import ClientError |