Skip to content

Instantly share code, notes, and snippets.

View diepinto30's full-sized avatar
💡
changed to the world from Loja EC

Diego Pinto diepinto30

💡
changed to the world from Loja EC
View GitHub Profile
// Includes functions for exporting active sheet or all sheets as JSON object (also Python object syntax compatible).
// Tweak the makePrettyJSON_ function to customize what kind of JSON to export.
var FORMAT_ONELINE = 'One-line';
var FORMAT_MULTILINE = 'Multi-line';
var FORMAT_PRETTY = 'Pretty';
var LANGUAGE_JS = 'JavaScript';
var LANGUAGE_PYTHON = 'Python';
<?xml version="1.0" encoding="utf-8" ?>
<rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#"
xmlns:schema="http://schema.org/"
xmlns:org="http://www.w3.org/ns/org#"
xmlns:ns0="http://dbpedia.org/ontology/"
xmlns:ns1="http://www.opengis.net/def/function/geosparql/"
xmlns:ns2="http://swrc.ontoware.org/ontology#"
xmlns:ns3="http://linkedgeodata.org/ontology/"
xmlns:foaf="http://xmlns.com/foaf/0.1/"
xmlns:ns4="http://purl.org/healthcarevocab/v1#"
<?xml version="1.0" encoding="utf-8" ?>
<rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#"
xmlns:ns0="http://dbpedia.org/ontology/"
xmlns:ns1="http://purl.org/ontology/places#"
xmlns:schema="http://schema.org/"
xmlns:ns2="http://opencoinage.org/rdf/"
xmlns:ns3="http://contextus.net/ontology/ontomedia/ext/common/trait#"
xmlns:ns4="http://code-research.eu/ontology/visual-analytics#"
xmlns:foaf="http://xmlns.com/foaf/0.1/"
xmlns:rdfs="http://www.w3.org/2000/01/rdf-schema#"
using System.Collections;
using System.Collections.Generic;
using UnityEngine;
public class Txt360 : MonoBehaviour {
public string txtFile = "dato";
//string txtContents;
Text txtContents;
float timeLeft = 300.0f;
<?xml version="1.0" encoding="utf-8" ?>
<rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#"
xmlns:ns0="https://lit.lat.am.db.utpl.edu.ec/resource/">
<rdf:Description rdf:about="https://lit.lat.am.db.utpl.edu.ec/resource/Cien_Años_de_Soledad">
<ns0:esUn>
<rdf:Description rdf:about="https://lit.lat.am.db.utpl.edu.ec/resource/Novela">
<ns0:esUn rdf:resource="https://lit.lat.am.db.utpl.edu.ec/resource/Libro"/>
</rdf:Description>
</ns0:esUn>
@diepinto30
diepinto30 / Entrada del valores y vistas en una árbol binario en c++
Last active June 13, 2021 20:52
Entrada del valores y vistas en una árbol binario en c++
/*
Altura y niveles de un arbol binario en c++
autor: Diego Pinto
*/
#include <iostream>
#include <cstdlib>
using namespace std;
import java.util.Scanner;
* @author diepinto30
public class metodos003 {
// Permita imprimir la tabla de sumar o de restar o de multiplicar de un valor ingresado por teclado
// las tablas siempre empiezan en 1, el limite de la tabla tambien lo ingreso por teclado
// lo que quiere ver el usuario tambien la elige
// crear un metodo que imprima la tabla
public static void main(String[] args) {