This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
// Use Gists to store code you would like to remember later on | |
console.log(window); // log the "window" object to the console |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
'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); |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
/* | |
* 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; | |
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<# | |
.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 |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
version: '3.3' | |
services: | |
app: | |
build: ./node | |
args: | |
- NODE_VERSION=latest | |
- PROJECT_PATH=/opt/app/ | |
- NODE_ENV=production |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
@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: |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/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 ======================================================== |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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'); |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
/** | |
* @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 = () => { |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/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 |
OlderNewer