This concept is very much like .jar or .war archives in Java.
NOTE: The built
.pyzzipapp can run on both Python 2 & 3 but you can only build.pyzzipapps with Python 3.5 or later.
This concept is very much like .jar or .war archives in Java.
NOTE: The built
.pyzzipapp can run on both Python 2 & 3 but you can only build.pyzzipapps with Python 3.5 or later.
In this article, I will share some of my experience on installing NVIDIA driver and CUDA on Linux OS. Here I mainly use Ubuntu as example. Comments for CentOS/Fedora are also provided as much as I can.
| # PostgreSQL can be on a remote server but you'll need root privileges in Linux and superuser in PostgreSQL. | |
| # First install build tools | |
| sudo su | |
| aptitude install build-essential | |
| aptitude install postgresql-server-dev-9.4 | |
| # Clone and build the PL/pgSQL server-side debugger |
| { | |
| "$schema": "http://json-schema.org/draft-03/schema#", | |
| "type": [ | |
| { | |
| "type": "number", | |
| "minimum": 0, | |
| "exclusiveMinimum": true | |
| }, | |
| { | |
| "type": "string", |
| Use folowing steps to repackage dep package: | |
| 1: Extract deb package | |
| # dpkg-deb -x <package.deb> <dir> | |
| 2: Extract control-information from a package | |
| # dpkg-deb -e <package.deb> <dir/DEBIAN> | |
| 3. After completed to make changes to the package, repack the deb | |
| # dpkg-deb -b <dir> <new-package.deb> |
| class GAEHandler(logging.Handler): | |
| """ | |
| Logging handler for GAE DataStore | |
| """ | |
| def emit(self, record): | |
| from google.appengine.ext import db | |
| class Log(db.Model): | |
| name = db.StringProperty() |