###shell
- Install from INSTALLATION_FILE.tar.gz
tar xzf INSTALLATION_FILE.tar.gz
./configure
make
sudo make install
###shell
tar xzf INSTALLATION_FILE.tar.gz
./configure
make
sudo make install
| /** | |
| * Remove acentos de caracteres | |
| * @param {String} stringComAcento [string que contem os acentos] | |
| * @return {String} [string sem acentos] | |
| */ | |
| function removerAcentos( newStringComAcento ) { | |
| var string = newStringComAcento; | |
| var mapaAcentosHex = { | |
| a : /[\xE0-\xE6]/g, | |
| e : /[\xE8-\xEB]/g, |
| Sample Dockerfile, then sample build output | |
| #-------------- | |
| FROM base | |
| RUN echo Layer 0 >> layerfile.txt | |
| RUN echo Layer 1 >> layerfile.txt | |
| RUN echo Layer 2 >> layerfile.txt | |
| RUN echo Layer 3 >> layerfile.txt | |
| RUN echo Layer 4 >> layerfile.txt |
Backstory: I decided to crowdsource static site generator recommendations, so the following are actual real world suggested-to-me results. I then took those and sorted them by language/server and, just for a decent relative metric, their Github Watcher count. If you want a heap of other projects (including other languages like Haskell and Python) Nanoc has the mother of all site generator lists. If you recommend another one, by all means add a comment.
| var SomeModel = Backbone.Model.extend({}); | |
| someModel = new SomeModel(); | |
| someModel.bind("change", function(model, collection){ | |
| alert("You set some_attribute to " + model.get('some_attribute')); | |
| }); | |
| someModel.set({some_attribute: "some value"}); |