How to generate a VNC password?

From here. #!/bin/perl use Crypt::CBC; my $key = pack(“C8”, 23, 82, 107, 6, 35, 78, 88, 7); $cipher = Crypt::CBC->new({ ‘key’=>$key, ‘cipher’=>’DES’, ‘prepend_iv’=>0, ‘regenerate_key’=>0 }); $ciphertext = $cipher->encrypt(“This data is hush hush”); $plaintext = $cipher->decrypt($ciphertext); print “Encrypted: $ciphertext\n”; print “Decrypted: $plaintext\n”;

Can you run GUI applications in a Linux Docker container?

You can simply install a vncserver along with Firefox 🙂 I pushed an image, vnc/firefox, here: docker pull creack/firefox-vnc The image has been made with this Dockerfile: # Firefox over VNC # # VERSION 0.1 # DOCKER-VERSION 0.2 FROM ubuntu:12.04 # Make sure the package repository is up to date RUN echo “deb http://archive.ubuntu.com/ubuntu precise … Read more