Skip to content

Instantly share code, notes, and snippets.

View mauroSolis's full-sized avatar

Mauro Solis mauroSolis

  • Costa Rica
View GitHub Profile
@mauroSolis
mauroSolis / FileFunctions.js
Created October 31, 2012 01:06
Practica 8
function remplazar(){
remplazarUna( document.getElementById("textarea").value, document.getElementById("findWorld").value, document.getElementById("replaceWorld").value);
}
function remplazarUna(text, busca, reemplaza ){
text = text.toString().replace(busca,reemplaza);
//return text;
document.getElementById("textarea").value = text;
@mauroSolis
mauroSolis / practica7.html
Created October 18, 2012 05:38
Practica 7 del miercoles 17 de actubre
<!DOCTYPE html>
<html>
<head>
<title>Practica 7</title>
<link href="css/bootstrap.css" rel="stylesheet">
<link href="css/bootstrap-responsive.css" rel="stylesheet">
<style type="text/css">
body {
padding-top: 60px;
padding-bottom: 40px;
@mauroSolis
mauroSolis / Practica4.xul
Created September 19, 2012 22:26
Practica4
<?xml version="1.0" encoding="utf-8"?>
<?xml-stylesheet href="chrome://global/skin/" type="text/css"?>
<window xmlns="http://www.mozilla.org/keymaster/gatekeeper/there.is.only.xul">
<menubar>
<menu label="Base de Datos">
<menupopup/>
</menu>
<menu label="Tabla">
<menupopup/>
</menu>