Skip to content

Instantly share code, notes, and snippets.

@mems
mems / akamaiopen.sh
Last active June 9, 2023 14:18 — forked from mousavian/akamai.api.sh
Akamai Open API with Bash
#!/usr/bin/env bash
# See also https://github.com/akamai/akamaipowershell
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
#! /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