This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/bin/bash | |
# Resources | |
# http://www.gimpusers.com/tutorials/compiling-gimp-for-ubuntu | |
# http://ubuntuforums.org/showthread.php?p=11818979 | |
# | |
sudo apt-get build-dep gimp | |
sudo apt-get install libjpeg62-dev libopenexr-dev librsvg2-dev libtiff4-dev xsltproc gtk-doc-tools | |
mkdir gimp_build && cd gimp_build |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Ciao Pythonisti Italiani, | |
sto contattando varie comunità di programmatori Python per offrire aiuto nel packaging del vostro software. | |
Se avete mai lottato con il packaging e il rilascio di software Python (ad es. su PyPI), date un'occhiata a questo servizio: | |
- http://pythonpackages.com | |
L'idea di base è quella di automatizzare il packaging facendo il check-out del codice,facendo i test e l'upload (ad es. su PyPI) tutto via web, come spiegato in questa introduzione: | |
- http://docs.pythonpackages.com/en/latest/introduction.html |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
// Use Gists to store code you would like to remember later on | |
console.log(window); // log the "window" object to the console |