Skip to content

Instantly share code, notes, and snippets.

@mems
mems / akamaiopen.sh
Last active July 7, 2022 15:00 — forked from mousavian/akamai.api.sh
Akamai Open API with Bash
View akamaiopen.sh
#!/usr/bin/env bash
# See also https://github.com/akamai/AkamaiOPEN-edgegrid-powershell
usage() {
cat <<EOT
Usage: ${basename $0} -X value -s value -t value -a value -u value [-d value] [-h]
Options:
-s Client secret
@mems
mems / har2maff.py
Last active August 29, 2015 14:17 — forked from mdaniel/har2maff.py
Convert HAR to MAFF
View har2maff.py
#! /usr/bin/env python2.7
# -*- coding: utf-8 -*-
from __future__ import print_function, unicode_literals
from bs4 import BeautifulSoup
import hashlib
import logging
import json
import os
import sys
import re