A simple guide to install PyQt5 on Mac OS X 10.9 (Maverick) and use python 3.4 on a virtualenv.
- xcode 5.1.1
- python 3.4.0
- Qt libraries 5.2.1
package gziphandler | |
import ( | |
"compress/gzip" | |
"io" | |
"net/http" | |
"strings" | |
) | |
type gzipResponseWriter struct { |
package main | |
import ( | |
"fmt" | |
"io" | |
"log" | |
"net/http" | |
"os" | |
) |
For symmetic encryption, you can use the following: | |
To encrypt: | |
openssl aes-256-cbc -salt -a -e -in plaintext.txt -out encrypted.txt | |
To decrypt: | |
openssl aes-256-cbc -salt -a -d -in encrypted.txt -out plaintext.txt | |
For Asymmetric encryption you must first generate your private key and extract the public key. |
# coding: utf-8 | |
"""Juego de la vida de Conway. | |
Autor: Juan Luis Cano <[email protected]> | |
El tablero es un array de NumPy, donde 0 significa célula muerta y 1 célula | |
viva. Se muestra una animación con matplotlib. | |
""" |
<html> | |
<head> | |
<meta http-equiv="Content-Type" content="text/html; charset=utf-8 / html5"> | |
<title>Deportivos 2015</title> | |
</head> | |
<body bgcolor="00ffff"> | |
<center> | |
<font size=7> | |
<h1>Todo sobre lo novedoso 2015</h1> | |
</center> |