- Add Procfile with the following contents
worker: python your_script.py
- Add requirements.txt file with the format
MODULE_NAME==MODULE_VERSION. Example:
slackclient==1.2.1
Updated 4/11/2018
Here's my experience of installing the NVIDIA CUDA kit 9.0 on a fresh install of Ubuntu Desktop 16.04.4 LTS.
| #!/bin/bash | |
| # Author: Maxwel Leite | |
| # Website: http://needforbits.wordpress.com/ | |
| # Description: Script to install Microsoft Vista TrueType Fonts (TTF) aka Microsoft’s ClearType fonts on Ubuntu distros | |
| # Microsoft added a group of new "ClearType Fonts" to Windows with Windows Vista and Office 2007. | |
| # These fonts are named Constantia, Corbel, Calibri, Cambria (and Cambria Math), Candara, and Consolas. | |
| # Calibri became the default font on Microsoft Word 2007, and it’s still the default font on Word 2016 today. | |
| # Dependencies: wget, fontforge and cabextract | |
| # Note: Microsoft no longer provides the PowerPoint Viewer 2007 (v12.0.4518.1014) or any version anymore for download | |
| # Tested: Ubuntu Saucy/Trusty/Xenial/Bionic |
| cd myAwesomeLibrary | |
| mkdir build | |
| cd build | |
| cmake -DPYTHON_LIBRARY=/home/saravanabalagi/.conda/envs/dev/lib/libpython3.6m.so -DPYTHON_EXECUTABLE=/home/saravanabalagi/.conda/envs/dev/bin/python .. | |
| cmake --build .. |
| [Desktop Entry] | |
| Name=Atom | |
| Comment=A hackable text editor for the 21st Century. | |
| GenericName=Text Editor | |
| Exec=/usr/bin/atom %F | |
| Icon=atom | |
| Type=Application | |
| StartupNotify=true | |
| Categories=GNOME;GTK;Utility;TextEditor;Development; | |
| MimeType=text/plain; |
| /* This stylesheet is generated, DO NOT EDIT */ | |
| /* Copyright 2009, 2015 Red Hat, Inc. | |
| * | |
| * Portions adapted from Mx's data/style/default.css | |
| * Copyright 2009 Intel Corporation | |
| * | |
| * This program is free software; you can redistribute it and/or modify it | |
| * under the terms and conditions of the GNU Lesser General Public License, | |
| * version 2.1, as published by the Free Software Foundation. | |
| * |
| /* This stylesheet is generated, DO NOT EDIT */ | |
| /* Copyright 2009, 2015 Red Hat, Inc. | |
| * | |
| * Portions adapted from Mx's data/style/default.css | |
| * Copyright 2009 Intel Corporation | |
| * | |
| * This program is free software; you can redistribute it and/or modify it | |
| * under the terms and conditions of the GNU Lesser General Public License, | |
| * version 2.1, as published by the Free Software Foundation. | |
| * |
| # If you come from bash you might have to change your $PATH. | |
| # export PATH=$HOME/bin:/usr/local/bin:$PATH | |
| # Path to your oh-my-zsh installation. | |
| export ZSH="/Users/saravanabalagi/.oh-my-zsh" | |
| # Set name of the theme to load --- if set to "random", it will | |
| # load a random theme each time oh-my-zsh is loaded, in which case, | |
| # to know which specific one was loaded, run: echo $RANDOM_THEME | |
| # See https://github.com/robbyrussell/oh-my-zsh/wiki/Themes |
| { | |
| "100": "Continue", | |
| "101": "Switching Protocol", | |
| "102": "Processing", | |
| "103": "Early Hints", | |
| "200": "OK", | |
| "201": "Created", | |
| "202": "Accepted", | |
| "203": "Non-Authoritative Information", | |
| "204": "No Content", |