Attention: the list was moved to
https://github.com/dypsilon/frontend-dev-bookmarks
This page is not maintained anymore, please update your bookmarks.
# Instalación de paqueterias | |
sudo apt-get install libapache2-mod-wsgi | |
# Vamos a la carpeta | |
cd /etc/apache2 | |
# Agregamos esta linea dentro del http.conf (site 1, site 2, depende la configuración de sus virtual host) Tiene que apuntar directo a un archivo .wsgi que tiene que estar preferente mente alado de la carpeta de su proyecto. | |
WSGIScriptAlias / /home/ajamaica/django.wsgi |
<canvas id="canvas"></canvas> |
Attention: the list was moved to
https://github.com/dypsilon/frontend-dev-bookmarks
This page is not maintained anymore, please update your bookmarks.
# Add the following 'help' target to your Makefile | |
# And add help text after each target name starting with '\#\#' | |
help: ## Show this help. | |
@fgrep -h "##" $(MAKEFILE_LIST) | fgrep -v fgrep | sed -e 's/\\$$//' | sed -e 's/##//' | |
# Everything below is an example | |
target00: ## This message will show up when typing 'make help' | |
@echo does nothing |
<snippet> | |
<content><![CDATA[ | |
### | |
${2:Module description} | |
@class ${1:module_name} | |
@main ${3:flux/account} | |
@author ${4:Ana Reyna} | |
### | |
yOSON.AppCore.addModule "${1:module_name}", (Sb) -> | |
dom = {} |
<snippet> | |
<content><![CDATA[ | |
/** | |
* ${2:Descripción del módulo} | |
* @submodule ${3:nombre_del_modulo} | |
* @main ${1:default} | |
* @author ${4:Nombre del Autor} | |
*/ | |
yOSON.AppCore.addModule("${3:nombre_del_modulo}", function(Sb){ |
IMPORTANT NOTE: Only tested under linux/debian 7.0
For use this bash it needs run in the $HOME folder and execute this command:
~ sudo chmod +x install_emacs_24.5.sh
Then:
~ ./install_emacs_26.sh
function current_branch() { | |
ref=$(git symbolic-ref HEAD 2> /dev/null) || return | |
echo ${ref#refs/heads/} | |
} | |
function gpull() { | |
git pull origin $(current_branch) | |
} | |
function gpush() { |
IMPORTANT NOTE: Tested in macOS
For use this bash it needs run in the $HOME folder and execute this command:
~ sudo chmod +x install_vim.sh
Then:
~ ./install_vim.sh