Skip to content

Instantly share code, notes, and snippets.

View asbubam's full-sized avatar
:octocat:
Just enjoy the show.

asbubam asbubam

:octocat:
Just enjoy the show.
View GitHub Profile
@asbubam
asbubam / README.md
Created October 27, 2018 07:18 — forked from steve-jansen/README.md
Stop and start Symantec Endpoint Protection on OS X

This script enables you stop and start Symantec Endpoint Protection on OS X

Installation

sudo curl https://gist.githubusercontent.com/steve-jansen/61a189b6ab961a517f68/raw/sep -o /usr/local/bin/sep
sudo chmod 755 /usr/local/bin/sep
sudo chown root:staff /usr/local/bin/sep
@asbubam
asbubam / keybase.md
Last active August 13, 2019 04:15
keybase.md

Keybase proof

I hereby claim:

  • I am asbubam on github.
  • I am asbubam (https://keybase.io/asbubam) on keybase.
  • I have a public key ASAizpZrww2osgBYHC2vGFHUq3yIqK1tBSUvwGQc62OKfwo

To claim this, I am signing this object:

@asbubam
asbubam / check_lambda_provision.js
Last active March 7, 2021 05:47
Checking current all AWS lambda function's total/provisioned/reserved count.
const AWS = require('aws-sdk');
const lambda = new AWS.Lambda({ region: 'ap-northeast-2' });
const sleep = async (ms) => { await new Promise(resolve => setTimeout(resolve, ms)); };
const getFuncList = async () => {
let funcList = [];
let isStop = false;
let params = {}