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
<!DOCTYPE html> | |
<html lang="en"> | |
<head> | |
<title>Bootstrap Example</title> | |
<meta charset="utf-8"> | |
<meta name="viewport" content="width=device-width, initial-scale=1"> | |
<link rel="stylesheet" href="https://maxcdn.bootstrapcdn.com/bootstrap/3.4.1/css/bootstrap.min.css"> | |
<script src="https://ajax.googleapis.com/ajax/libs/jquery/3.7.1/jquery.min.js"></script> | |
<script src="https://maxcdn.bootstrapcdn.com/bootstrap/3.4.1/js/bootstrap.min.js"></script> | |
</head> |
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
var _class_obj = { | |
variable:'asignar valor default', | |
init: function(args) { | |
this.valueInit(); | |
this.cacheDom(); | |
this.initEvento(); | |
this.bindEvento(); | |
}, | |
valueInit: function() { | |
this.variable = valor; |
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
Archivos .tar.gz: | |
Comprimir: tar -czvf empaquetado.tar.gz /carpeta/a/empaquetar/ | |
Descomprimir: tar -xzvf archivo.tar.gz | |
Archivos .tar: | |
Empaquetar: tar -cvf paquete.tar /dir/a/comprimir/ | |
Desempaquetar: tar -xvf paquete.tar | |
Archivos .gz: | |
Comprimir: gzip -9 index.php |
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
CREATE TABLE emp ( | |
empname text NOT NULL, | |
salary integer | |
); | |
CREATE TABLE emp_audit( | |
operation char(1) NOT NULL, | |
stamp timestamp NOT NULL, | |
userid text NOT NULL, | |
empname text NOT NULL, |
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
Fatal error: Cannot use 'Object' as class name as it is reserved in C:\xampp\htdocs\sii_\vendor\yiisoft\yii2\base\Object.php on line 77 | |
1.- El archivo /yii2/base/Object | |
<?php | |
namespace yii\base; | |
use Yii; | |
class Object extends BaseObject | |
{ | |
} |