Consulting

using Lorem ipsum

Architecture

using Lorem ipsum

Urban Design

using Lorem ipsum

Flat Share

using Lorem ipsum

Outstanding

Service

Lorem Ipsum is simply dummy of printing and typesetting and industry. Lorem Ipsum been.

Apartment Design

We will work with you small large changes so you house your dreams

Learn More
Apartment Design

Repair Welding

We will work with you small large changes so you house your dreams

Learn More
Repair Welding

Expert Mechanical

We will work with you small large changes so you house your dreams

Learn More
Expert Mechanical

Rooms & Halls

We will work with you small large changes so you house your dreams

Learn More
Rooms & Halls

Outstanding

Funfact

Lorem Ipsum is simply dummy of printing and typesetting and industry. Lorem Ipsum been.

Funfact Image

Happy Clients

4590 +

Image

Awards Winner

7800 +

Image

Active Projects

2390 +

Image

Eng. Members

4390 +

Image

Outstanding

Team

Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua.

Philip Wilson

Engineer

Philip Wilson
Philip Wilson
Stock Home

Builder

Stock Home
Stock Home
Tokyo Stark

Engineer

Tokyo Stark
Tokyo Stark
Surgio

Builder

Surgio
Surgio
Imagen
Imagen
Imagen
Imagen
Imagen
Imagen

Outstanding

Blog

Lorem Ipsum is simply dummy of printing and typesetting and industry. Lorem Ipsum been.

Comando scp entre servidores

Para la autenticación y la configuración de la conexión, deberás generar un par de llaves ssh en el terminal mediante el siguiente comando:

Equipo de origen:

ssh-keygen -t rsa

Copia esta llave del sistema remoto usando:

ssh-copy-id user@remote_machine

Imagen
Instalar LAMP

LAMP: Linux + Apache + Mysql + PHP

En un sistema FEDORA instalado, lo primero que hacemos es una actualización de los paquetes (como usuario root).

dnf upgrade --refresh

Ahora, instalaremos el apache

dnf -y install apache

Instalado procedemos a arrancarlo y que se ejecute cuando arrancamos el equipo

systemctl enable httpd
systemctl start httpd

Ahora, vamos a instalar Mysql

dnf -y install mariadb-server

systemctl start mariadb
systemctl enable mariadb
Imagen
Syntaxhighlighter

Este plugin (https://es.wordpress.org/plugins/syntaxhighlighter) se utiliza para insertar código en cualquier entrada de wordpress. La documentación incluida es muy clara.

Código en R


insectos <- c(16,11,20,21,14,7,37,32,15,25,39,41,21,12,14,17,13,17,45,59,48,46,38,47)
colores <- as.factor(c(rep(c("azul", "verde", "blanco", "amarillo"), each =6)))
fm = aov( lm(insectos ~ colores) )

Pedimos un resumen de la tabla del ANOVA

summary(fm)

#>             Df Sum Sq Mean Sq F value   Pr(>F)    
#> colores      3   4218    1406   30.55 1.15e-07 ***
#> Residuals   20    921      46                     
#> ---
#> Signif. codes:  0 '***' 0.001 '**' 0.01 '*' 0.05 '.' 0.1 ' ' 1


Código en PHP

!DOCTYPE HTML
<html>
<head>
<title> Ejemplo<title>
<head>
<body>

<?php echo "¡Hola, soy un script de PHP!"; >

</body>
</html>

Código de MySQL

CREATE TABLE `basedatosmysql` (
`id` smallint(7) unsigned NOT NULL auto_increment,
`nombre` varchar(50) NOT NULL default '',
`categoria` varchar(50) NOT NULL default '',
`descripcion` text NOT NULL,
PRIMARY KEY&nbsp; (`id`)
) ENGINE=MyISAM DEFAULT CHARSET=latin1 PACK_KEYS=0 AUTO_INCREMENT=8140 ;

Imagen