Skip to content

Instantly share code, notes, and snippets.

View albertosouza's full-sized avatar
👨‍🔬
Creating things

Alberto Souza albertosouza

👨‍🔬
Creating things
View GitHub Profile
@albertosouza
albertosouza / Organization json-ld
Created December 5, 2017 23:56 — forked from cjzopen/Organization json-ld
Organization json-ld example
<script type="application/ld+json">
{
"@context" : "http://schema.org",
"@type" : "Organization",
"name" : "example",
"logo": "https://example.com.tw/logo.png",
"url" : "https://example.com.tw/",
"address" : "address",
"email" : "[email protected]",
"founder" : "you can use People type here",
/**
* Script simples para importação de dados de cotação da Bovespa
*
* Requisitos:
* - Node.js instalado
* - instalar as dependencias: npm install extract-zip moment request
*
* Exemplo de uso: node script_simples_importaca_cota_hist_bovespa.js 05022019
*
* Post relacionado: https://albertosouza.net/artigos/22-importando-dados-bovespa
@albertosouza
albertosouza / pegar-href-de-links-com-cherrio.md
Created October 28, 2019 16:29
Exemplos de como pegar o href de links com cherrio
@albertosouza
albertosouza / easy-soap-request-index.js
Created December 5, 2019 14:22 — forked from circa10a/easy-soap-request-index.js
easy-soap-request-index.js
const axios = require('axios-https-proxy-fix');
/**
* @author Caleb Lemoine
* @param {object} opts easy-soap-request options
* @param {string} opts.url endpoint URL
* @param {object} opts.headers HTTP headers, can be string or object
* @param {string} opts.xml SOAP envelope, can be read from file or passed as string
* @param {int} opts.timeout Milliseconds before timing out request
* @param {object} opts.proxy Object with proxy configuration
@albertosouza
albertosouza / check-if-file-exists.js
Created January 19, 2020 14:43
Simple script to show how to check if file exists with Node.js
// text.txt file is in same folder where we are running this script
let filePath = path.join(process.cwd(), 'text.txt');
// Check if file exists and have access with fs.access:
fs.access(filePath, fs.F_OK, function (err) {
if (err) {
console.log('file not exists or not have access');
} else {
console.log('file exists');
}
});