With
- nvm
- python@3
- MiniConda
- Docker
Automate all the things!
| <!DOCTYPE html> | |
| <html lang="es"> | |
| <head> | |
| <meta charset="utf-8"> | |
| <meta http-equiv="X-UA-Compatible" content="IE=edge"> | |
| <meta name="viewport" content="width=device-width, initial-scale=1"> | |
| <title>Web para actualizar la lista de infoJobs</title> | |
| <!-- Bootstrap --> | |
| <link rel="stylesheet" href="https://maxcdn.bootstrapcdn.com/bootstrap/3.3.1/css/bootstrap.min.css"> |
| <!DOCTYPE html> | |
| <html lang="es"> | |
| <head> | |
| <meta charset="utf-8"> | |
| <meta http-equiv="X-UA-Compatible" content="IE=edge"> | |
| <meta name="viewport" content="width=device-width, initial-scale=1"> | |
| <title>Myo™ Gesture Control Armband from ThalmicLabs™ | WebSockets Demo</title> | |
| <!-- Bootstrap --> | |
| <link rel="stylesheet" href="http://getbootstrap.com/examples/sticky-footer/sticky-footer.css"> |
| # conky configuration | |
| ############################################## | |
| # Settings | |
| ############################################## | |
| background yes | |
| use_xft yes | |
| xftfont Liberation Sans:size=9 | |
| xftalpha 1 | |
| update_interval 1.0 | |
| total_run_times 0 |
| #!/usr/bin/env bash | |
| # https://www.getopenerp.com/install-odoo-10-on-ubuntu-16-04/ | |
| # Update & upgrade distro status | |
| sudo apt-get update -s | |
| sudo apt-get upgrade -s | |
| # Install dev deps | |
| sudo apt-get install -s git make gcc curl poppler-utils mc bzr lptools antiword | |
| sudo apt-get install -s postgresql-client postgresql-client-common |
| # Based in: | |
| # https://www.digitalocean.com/community/tutorials/how-to-install-linux-nginx-mysql-php-lemp-stack-in-ubuntu-16-04 | |
| # https://www.digitalocean.com/community/tutorials/how-to-install-wordpress-with-lemp-on-ubuntu-16-04 | |
| # HTTP Config | |
| server { | |
| listen 80 default_server; | |
| listen [::]:80 default_server; | |
| server_name www.yoursite.com; |
| # Based in: | |
| # https://www.rosehosting.com/blog/magento-2-with-redis-varnish-and-nginx-as-ssl-termination/ | |
| upstream fastcgi_backend { | |
| server unix:/run/php/php7.0-fpm.sock; | |
| } | |
| server { | |
| listen 80; | |
| server_name www.yoursite.com; |
| #!/bin/sh | |
| # HowTo | |
| # Put it at /usr/local/bin/armaggeDocker.sh | |
| # Give permissions: chmod a+x /usr/local/bin/armaggeDocker.sh | |
| read -p "This will stop and delete all running containers and local images. Are you sure that you want to continue? (y/n) " -n 1 -r | |
| echo # (optional) move to a new line | |
| if [[ $REPLY =~ ^[Yy]$ ]] | |
| then |
| #!/bin/sh | |
| # https://coderwall.com/p/guqrca/remove-all-node_module-folders-recursively | |
| # $sudo mv /path/to/killAllNodeModules.sh /usr/local/bin/killAllNodeModules | |
| # $sudo chmod a+x /usr/local/bin/killAllNodeModules | |
| read -p "This will delete all node_modules & bower_componets in current and derived folders. Are you sure that you want to continue? (y/n) " -n 1 -r | |
| echo # (optional) move to a new line | |
| if [[ $REPLY =~ ^[Yy]$ ]] |
| #!/bin/sh | |
| # [DevLab](https://github.com/TechnologyAdvice/DevLab) | |
| # $sudo mv /path/to/killAllContainers.sh /usr/local/bin/killAllContainers | |
| # $sudo chmod a+x /usr/local/bin/killAllContainers | |
| read -p "This will stop and delete all running containers. Are you sure that you want to continue? (y/n) " -n 1 -r | |
| echo # (optional) move to a new line | |
| if [[ $REPLY =~ ^[Yy]$ ]] | |
| then |