Skip to content

Instantly share code, notes, and snippets.

View leonmwandiringa's full-sized avatar
💭
Never lose you inner child

Leon Mwandiringa leonmwandiringa

💭
Never lose you inner child
View GitHub Profile
@leonmwandiringa
leonmwandiringa / 0_reuse_code.js
Created April 28, 2017 20:27
Here are some things you can do with Gists in GistBox.
// Use Gists to store code you would like to remember later on
console.log(window); // log the "window" object to the console
@leonmwandiringa
leonmwandiringa / encryption.js
Created September 23, 2018 17:21 — forked from vlucas/encryption.ts
Stronger Encryption and Decryption in Node.js
'use strict';
const crypto = require('crypto');
const ENCRYPTION_KEY = process.env.ENCRYPTION_KEY; // Must be 256 bytes (32 characters)
const IV_LENGTH = 16; // For AES, this is always 16
function encrypt(text) {
let iv = crypto.randomBytes(IV_LENGTH);
let cipher = crypto.createCipheriv('aes-256-cbc', new Buffer(ENCRYPTION_KEY), iv);
/*
* Handles the HTML input/output for Caesar cipher encryption/decryption.
* This is the one and only entry point function called from the HTML code.
*/
function doCrypt(isDecrypt) {
var shiftText = document.getElementById("shift").value;
if (!/^-?\d+$/.test(shiftText)) {
alert("Shift is not an integer");
return;
}
<#
.SYNOPSIS
Copies logs and artifacts to a single directory on a user's Desktop
Script must be ran as Admin
.PARAMETER OutputDirectory
specifies new directory that will be created and to which logs will be copied
.OUTPUTS
copylog.txt file that lists all successful and failed copy actions
version: '3.3'
services:
app:
build: ./node
args:
- NODE_VERSION=latest
- PROJECT_PATH=/opt/app/
- NODE_ENV=production
@echo off
set OPENSSL_CONF=/System/Library/OpenSSL/openssl.cnf
echo Generate CA key:
openssl genrsa -passout pass:1111 -des3 -out ca.key 4096
echo Generate CA certificate:
openssl req -passin pass:1111 -new -x509 -days 365 -key ca.key -out ca.crt -subj "/C=US/ST=CA/L=Cupertino/O=YourCompany/OU=YourApp/CN=MyRootCA"
echo Generate server key:
#!/bin/bash
REPOSITORIES=(DNC-DShop DNC-DShop.Api DNC-DShop.Api.Next DNC-DShop.Common DNC-DShop.Services.Customers DNC-DShop.Services.Identity DNC-DShop.Services.Notifications DNC-DShop.Services.Operations DNC-DShop.Services.Orders DNC-DShop.Services.Products DNC-DShop.Services.Signalr)
if [ "$1" = "-p" ]
then
echo ${REPOSITORIES[@]} | sed -E -e 's/[[:blank:]]+/\n/g' | xargs -I {} -n 1 -P 0 sh -c 'printf "========================================================\nCloning repository: {}\n========================================================\n"; git clone https://github.com/devmentors/{}.git'
else
for REPOSITORY in ${REPOSITORIES[*]}
do
echo ========================================================
import { runWithAdal } from 'react-adal';
import { authContext, Authuser, authenticateUserToSevices } from '../src/auth/auth';
const DO_NOT_LOGIN = false;
runWithAdal(authContext, async () => {
await authenticateUserToSevices()
// eslint-disable-next-line
require('./indexApp.js');
/**
* @uses main ad auth logic wrapper
* @return ad methods
*/
import axios from "axios";
import { AuthenticationContext, adalGetToken, withAdalLogin, adalFetch } from 'react-adal';
import adalConfig from "./config";
export const authContext = new AuthenticationContext(adalConfig);
export const getToken = () => {
@leonmwandiringa
leonmwandiringa / gopath
Created June 25, 2019 18:32 — forked from austingebauer/gopath
Set GOPATH, GOBIN, and PATH in current directory
#!/usr/bin/env bash
#
# Sets the GOPATH and GOBIN to the current directory.
# Adds GOBIN to the PATH.
#
# Usage:
# 1. Put this script somewhere on your PATH.
# 2. Enter directory of a golang project (contains src, pkg, bin)
# 3. Execute: . gopath