find . -iname "my-file"
find . -not -name "my-file"$ sudo find / -name "version.sh"
$ sudo find / -name "tomcat7"
| - Funciona sobre nodejs | |
| - Gulp permite automatizar tareas comunes (build system): minified, reload browser, compression of images, validation sintaxis code , etc | |
| - Guidlines: Your plugin should only do one thing, and do it well. | |
| - Gulp utiliza el modulo stream de node.js, lo cual lo hace mas rapido para construir a diferencia de grunt. | |
| # Installation: | |
| if we will use one linux guest in a windows host: | |
| https://github.com/npm/npm/issues/992 | |
| In Host: - Go to windows/execute -> secpol.msc | |
| - Directivas locales > Asignacion de derechos de usuario > crear vinculos simbolicos -> doble clic y añadirtu usuario |
find . -iname "my-file"
find . -not -name "my-file"$ sudo find / -name "version.sh"
$ sudo find / -name "tomcat7"
curlcurl:sudo apt install libssh2-1-dev libssl-dev
cd curl/
./configure --with-ssl --with-libssh2
make
sudo make install
| SFTP: SSH File Transfer Protocol | |
| - Is a standard network protocol that is used to transfer the data from one host to another host over a secure connection. | |
| FTPS : File Transfer Protocol /SSL |
| <?php | |
| $uri = 'http://eder.domain.net'; | |
| $options = [ | |
| 'trace' => 1, // See the actual XML generated by PHP SOAP Client Class | |
| 'encoding' => 'UTF-8', | |
| 'exceptions' => true, | |
| 'uri' => 'http://tempuri.org/', | |
| // this solve: text/xml; charset=utf-8 was not the expected type 'application/soap+xml; charset=utf-8' | |
| 'soap_version' => SOAP_1_2, | |
| ]; |
| Use in ubuntu 14.04 lts | |
| -- Install all stack developr | |
| $ sudo apt-get update && sudo apt-get -y install apache2 php5 php5-mcrypt php5-mysql php5-odbc php5-mcrypt && sudo a2enmod rewrite && sudo service apache2 restart && cd ~ && curl -sS https://getcomposer.org/installer | sudo php && sudo mv composer.phar /usr/local/bin/composer && composer -V | |
| $ sudo apt-get -y install git && git config --global user.email "[email protected]" && git config --global user.name "eder rafo" && git config --global alias.st status && git config --global alias.cm commit && git config --global alias.co checkout && git config --global alias.br branch && git config core.filemode false | |
| -- Create administrator in sf2.8 compatible | |
| $ php --version | |
| PHP 5.5.9-1ubuntu4.26 (cli) (built: Sep 17 2018 13:46:30) |
| 1. Authenticate the user via an API key(when developing a web service for instance) | |
| 2. The API key is provided for every request and is passed as a query string parameter or via an HTTP header. | |
| https://www.cloudways.com/blog/symfony-api-token-authentication/ |