Skip to content

Instantly share code, notes, and snippets.

View brunoventura's full-sized avatar
✈️
Travel and code

Bruno Ventura brunoventura

✈️
Travel and code
  • Kovi
  • Florianópolis
View GitHub Profile
// Autor: Eliezer Emanuel Bernart
// Data: 23/08/2014
#include <opencv2/highgui/highgui.hpp>
#include <iostream>
#include <vector>
// Variáveis de controle
int escala = 15,
qualidade = 75;
@ianlewis
ianlewis / csv_import_magic.js
Last active February 3, 2023 13:16
A Google Apps Script for importing CSV data into a Google Spreadsheet.
// vim: ft=javascript:
/*jslint sloppy: true, vars: true, white: true, nomen: true, browser: true */
/*global SpreadsheetApp, UiApp, UrlFetchApp, Utilities */
/*
* A script to automate requesting data from an external url that outputs CSV data.
*
* Adapted from the Google Analytics Report Automation (magic) script.
* @author nickski15@gmail.com (Nick Mihailovski)
* @author ianmlewis@gmail.com (Ian Lewis)
*/