Conditionals:
- http://nsis.sourceforge.net/LogicLib
- http://nsis.sourceforge.net/Examples/LogicLib.nsi
- http://nsis.sourceforge.net/How_can_I_use_conditional_execution_%28If_..._EndIf_equivalent%29
UI extensions:
PyCharm setup
Environment
Packages
Pro: no need to setup a DNS server to test virtualhosts Con: keep in mind that all "fake" hosts will point to 127.0.0.1!
#<ip-address> <hostname.domain.org> <hostname>
127.0.0.1 localhost.localdomain localhost
127.0.0.1 host.localdomain host
127.0.0.1 sub.host.localdomain sub.host
::1 localhost.localdomain localhost
/etc/httpd/conf/httpd.conf
/etc/apache2/apache2.conf
Include /home/albert/.httpd/*.conf
Very cool & detailed tutorial on how to setup Emacs for Python editing, completion & execution.
1# setup a transifex virtualenv
2virtualenv2 VENV; source VENV/bin/activate; pip install transifex-client
3
4# global config: ~/.transifexrc
5# this step can be omitted, as 'tx init' will create the file if it doesn't exist
6[https://www.transifex.com]
7username = User
8token =
9password = un54f3_p4ssw0rd!
10hostname = https://www.transifex.com
11
12# setup example project
13mkdir example; cd example
14tx init
15tx set --auto-remote https://www.transifex.com/projects/p/my-project/
16
17# get the files
18tx pull -l pt_BR
19
20# edit things
21poedit / linguist-qt4
22
23# push to transifex
24tx push -t
setuptools is a collection of enhancements to the Python distutils
This document describes the current state of packaging in Python using Distribution Utilities (“Distutils”) and its extensions from the end-user’s point-of-view, describing how to extend the capabilities of a standard Python installation by building packages and installing third-party packages, modules and extensions.