Proceso para exportar e importar una base de datos MySQL desde linea de comandos.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
-- MySQL dump 10.13 Distrib 5.1.51, for pc-linux-gnu (i686) | |
-- | |
-- Host: 127.0.0.1 Database: world | |
-- ------------------------------------------------------ | |
-- Server version 5.1.51-debug-log | |
/*!40101 SET @OLD_CHARACTER_SET_CLIENT=@@CHARACTER_SET_CLIENT */; | |
/*!40101 SET @OLD_CHARACTER_SET_RESULTS=@@CHARACTER_SET_RESULTS */; | |
/*!40101 SET @OLD_COLLATION_CONNECTION=@@COLLATION_CONNECTION */; | |
/*!40103 SET @OLD_TIME_ZONE=@@TIME_ZONE */; |
The Slim Framework is a great micro frameworks for Web application, RESTful API's and Websites. This Tutorial shows how to create a very basic but flexible project for every use case.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
import React from "react"; | |
/* | |
Read a text file and out put the content. | |
Example Usage: | |
var myTxt = require("./myTxt.txt"); | |
... |