Big data

Install and Use PHP Composer on Ubuntu 16.04

Install and Use PHP Composer on Ubuntu 16.04 Table of Contents Introduction Composer vs PEAR Requirements Install PHP Composer Using PHP Composer Introduction PHP Composer is a package management system for PHP which prevents users from having to «reinvent the wheel» when it comes to commonly-used website components like user authentication or database management. Composer […]

Install and Use PHP Composer on Ubuntu 16.04 Leer más »

JSON Cheat Sheet

JSON Cheat Sheet A JSON cheat sheet. Data Types number var myNum = 123.456; Series of numbers; decimals ok; double­-pr­ecision floati­ng-­point format string var myString = «­abc­def­»; Series of characters (letters, numbers, or symbols); double­-quoted UTF-8 with backslash escaping boolean var myBool = true; true or false array var myArray = [ «­a», «­b», «­c»,

JSON Cheat Sheet Leer más »

what is JSON

Cuando todos nos iniciamos en el mundo de la programación web llegamos a un punto en el que necesitamos gestionar de forma sencilla y eficaz mucha información. Para los que no os suene el nombre de JSON, enhorabuena porque con esta serie de tutoriales vais a dar un gran paso en vuestro aprendizaje. Los tutoriales

what is JSON Leer más »

Como instalar en Linux: NGINX MariaDB y PHP (LEMP)

Como instalar en Linux: NGINX MariaDB y PHP (LEMP) Una buena alterantiva a LAMP es LEMP (Linux Nginx MariaDB/MySQL PHP. Nginx es un servidor web/proxy inverso de alto rendimiento, en inglés se pronuncia engine X. Como podemos ver hay que instalar 3 programas, empezaremos por Nginx . Como instalar Nginx Entraremos a nuestro servidor por SSH y

Como instalar en Linux: NGINX MariaDB y PHP (LEMP) Leer más »

Git keep calm and reset –hard

=================================================== $ git reset –hard A $ git reset –soft @{1} # (or ORIG_HEAD), which is D $ git commit =================================================== $ git revert –no-commit D $ git revert –no-commit C $ git revert –no-commit B $ git commit -m ‘the commit message’ listado total de commit push enviados al respositorio git shortlog -s -n

Git keep calm and reset –hard Leer más »