This file contains hidden or 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
| -- phpMyAdmin SQL Dump | |
| -- version 4.6.4 | |
| -- https://www.phpmyadmin.net/ | |
| -- | |
| -- Host: localhost:3306 | |
| -- Generation Time: Nov 16, 2016 at 02:58 PM | |
| -- Server version: 5.6.28 | |
| -- PHP Version: 5.6.25 | |
| SET SQL_MODE = "NO_AUTO_VALUE_ON_ZERO"; |
This file contains hidden or 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
| { | |
| "peacock.favoriteColors": [ | |
| { | |
| "name": "Angular Red", | |
| "value": "#b52e31" | |
| }, | |
| { | |
| "name": "Auth0 Orange", | |
| "value": "#eb5424" | |
| }, |
This file contains hidden or 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
| cordova-res --skip-config --copy | |
| /Users/fredysaulteherantovar/.npm-global/bin/cordova-res --skip-config --copy |
This file contains hidden or 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
| //import libraries | |
| import * as functions from "firebase-functions"; | |
| import * as admin from "firebase-admin"; | |
| import * as express from "express"; | |
| import * as bodyParser from "body-parser"; | |
| import * as request from "request-promise-native"; | |
| //initialize firebase inorder to access its services | |
| admin.initializeApp(functions.config().firebase); |
This file contains hidden or 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
| //4EMA Fredyteheranto Style @Fredyteheranto | |
| study(title="4 EMA Fredyteheranto", shorttitle="Fredyteheranto", overlay=true) | |
| len1 = input(13, minval=8, title="Length") | |
| len2 = input(34, minval=8, title="Length") | |
| len3 = input(200,minval=8, title="Length") | |
| len4 = input(21, minval=8, title="Length") | |
| src = input(close, title="Source") |
This file contains hidden or 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
| const ipfs = require("nano-ipfs-store").at("https://ipfs.infura.io:5001"); | |
| (async () => { | |
| const doc = JSON.stringify({ | |
| foo: "bar", | |
| tic: "tac" | |
| }); | |
| const cid = await ipfs.add(doc); |
This file contains hidden or 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
| import requests | |
| def consultar_empresa_por_nit(nit: str) -> dict: | |
| """ | |
| Consulta y fusiona datos empresariales desde datos.gov.co y rues.org.co. | |
| Retorna una estructura consolidada y verificada. | |
| """ | |
| fuentes = [] | |
| resultado = {} | |
| datos_gov = {} |