Skip to content

Instantly share code, notes, and snippets.

View mwingle's full-sized avatar

Matt Wingle mwingle

View GitHub Profile
@iozozturk
iozozturk / bitbucket-migrate.sh
Created August 3, 2017 11:05
Migration script from any git server to Bitbucket cloud
#declare list of repositories
#clone repositories from list
# git config --global push.followTags true
repos=( repo1, repo2, anyRepo )
function migrate(){
echo "Migrating repos"
currentDir=$(pwd)
for repo in "${repos[@]}"
do
@siwalikm
siwalikm / aes-256-cbc.js
Last active July 23, 2024 02:26
AES-256-CBC implementation in nodeJS with built-in Crypto library
'use strict';
const crypto = require('crypto');
const ENC_KEY = "bf3c199c2470cb477d907b1e0917c17b"; // set random encryption key
const IV = "5183666c72eec9e4"; // set random initialisation vector
// ENC_KEY and IV can be generated as crypto.randomBytes(32).toString('hex');
const phrase = "who let the dogs out";
var encrypt = ((val) => {