sudo apt-get update
sudo apt-get -y install software-properties-common
| mapAt.on('dragend', function (e) { | |
| var center = mapAt.getCenter() | |
| console.log('center', center) | |
| }); |
| { | |
| "scripts": { | |
| "build-css": "node-sass-chokidar --include-path ./node_modules src/assets/sass -o src/assets/css", | |
| "watch-css": "npm run build-css && node-sass-chokidar src/assets/sass -o src/assets/css --watch --recursive", | |
| "start-js": "react-scripts start", | |
| "start": "npm-run-all -p watch-css start-js", | |
| "build-js": "react-scripts build", | |
| "build": "npm-run-all build-css build-js", | |
| "test": "react-scripts test --env=jsdom", | |
| "eject": "react-scripts eject" |
| <a href="https://web.whatsapp.com/send?l=es&phone=5215581852761&text=Quiero Informacion del Curso en" class="whatsapp_1 float float-right float-floatingButtonCenter" style="background-color: #25d366;" target="_blank"> | |
| <i class="whatsapp_1 fa fa-whatsapp whatsapp "></i> | |
| </a> |
| # Stop MySQL | |
| sudo service mysql stop | |
| # Make MySQL service directory. | |
| sudo mkdir /var/run/mysqld | |
| # Give MySQL user permission to write to the service directory. | |
| sudo chown mysql: /var/run/mysqld | |
| # Start MySQL manually, without permission checks or networking. |
| <html> | |
| <head> | |
| <title>Mi primera pagina HTML</title> | |
| <style> | |
| td { | |
| border: 1px solid; | |
| background: red; | |
| width: 70px | |
| } | |
| h1 { |
| <?php | |
| // Stolen from: http://www.holisticsystems.co.uk/blog/?p=931 | |
| $server = 'localhost'; | |
| $username = 'user'; | |
| $password = 'password'; | |
| $database = 'database'; | |
| $new_charset = 'utf8'; | |
| $new_collation = 'utf8_general_ci'; |
| [ | |
| "Uno", | |
| "Dos", | |
| "Tres", | |
| "Cuatro" | |
| ] |
| <!doctype html> | |
| <html lang="es-419"> | |
| <head> | |
| <title>7 de 10 productos en Ecuador están entre los más caros</title> | |
| <meta charset="utf-8"> | |
| <meta http-equiv="X-UA-Compatible" content="IE=edge"> | |
| <script type="text/javascript"> | |
| $().ready(function(){ |
| #!/bin/bash | |
| # | |
| # This script configures WordPress file permissions based on recommendations | |
| # from http://codex.wordpress.org/Hardening_WordPress#File_permissions | |
| # | |
| # Author: Michael Conigliaro <mike [at] conigliaro [dot] org> | |
| # | |
| WP_OWNER=www-data # <-- wordpress owner | |
| WP_GROUP=www-data # <-- wordpress group | |
| WP_ROOT=$1 # <-- wordpress root directory |