Skip to content

Instantly share code, notes, and snippets.

View kozmaz87's full-sized avatar
🐈‍⬛
Meowing

Zoltan Kozma kozmaz87

🐈‍⬛
Meowing
View GitHub Profile
import string
alphabet = string.ascii_lowercase
key1 = '95 83 96 67 56 56 64 92 92 30 85 82 38 81 61 86 48 92 71 79 64 87 87 65 17'
key2 = '76 72 84 63 41 36 45 84 73 18 84 63 30 73 60 77 28 69 66 65 44 62 73 51 12'
print(''.join((map(lambda x: alphabet[int(x[0]) - int(x[1]) - 1], zip(key1.split(' '), key2.split(' '))))))
@kozmaz87
kozmaz87 / Vagrantfile
Created January 4, 2019 01:02
Vagrant mattermost team demo setup for Windows host
# -*- mode: ruby -*-
# vi: set ft=ruby :
Vagrant.configure("2") do |config|
config.vm.box = "centos/7"
config.vm.network "public_network"
config.vm.provision "shell", inline: <<-SHELL