Skip to content

Instantly share code, notes, and snippets.

@loctanvo
loctanvo / .hyper.js
Last active September 12, 2019 06:58
Configuration file for Hyper and hyper-snazzy theme. Modified split pane divider color.
// Future versions of Hyper may add additional config options,
// which will not automatically be merged into this file.
// See https://hyper.is#cfg for all currently supported options.
module.exports = {
config: {
// choose either `'stable'` for receiving highly polished,
// or `'canary'` for less polished but more frequent updates
updateChannel: 'stable',
function New-GeneratedPwd {
$bytes = New-Object "System.Byte[]" 32
$rnd = New-Object System.Security.Cryptography.RNGCryptoServiceProvider
$rnd.GetBytes($bytes)
[Convert]::ToBase64String($bytes)
}