Skip to content

Instantly share code, notes, and snippets.

View olanaso's full-sized avatar
🏠
Working from home

Erick Simón Escalante Olano olanaso

🏠
Working from home
  • MTC DDP
  • Lima Peru
View GitHub Profile
@olanaso
olanaso / modificacio_data.sql
Last active September 26, 2024 21:48
RFC003
update Opciones
set descripcion_opcion='Seleccionar columnas-Reporte de Datos SGBI'
where id_opciones=2
go
INSERT INTO [dbo].[RolOpciones] (id_rol_opciones, codigo_opcion, id_rol, descripcion_opcion, descripcion_rol, activo, fecha_creacion)
VALUES
(3, 'OP002', 001, 'Selección columnas - Reporte Semanal', 'Especialista de registro', 1, '2024-09-06 00:00:00.000'),
(4, 'OP002', 005, 'Selección columnas - Reporte Semanal', 'Especialista DRE', 1, '2024-09-06 00:00:00.000'),
@olanaso
olanaso / merge-geojson.js
Created August 8, 2022 20:08
Merge geojson using @mapbox/geojson-merge
var geojsonMerge = require('@mapbox/geojson-merge');
const fs = require('fs');
concat = require('concat-stream');
const path = require('path')
var urlorigen="C:/Users/ASUS/PycharmProjects/clases/2021-I/SBN/result/part4/"
function readGeojson() {
return new Promise((resolve, reject) => {
@olanaso
olanaso / README.md
Created November 14, 2019 20:45 — forked from joyrexus/README.md
Vanilla JS equivalents of jQuery methods

Sans jQuery

Events

// jQuery
$(document).ready(function() {
  // code
})