Skip to content

Instantly share code, notes, and snippets.

@esteveste
esteveste / translation.json
Created December 16, 2019 14:19
Spotify Charts Country translation dictionary
{"us":"United States",
"gb":"United Kingdom",
"ad":"Andorra",
"ar":"Argentina",
"at":"Austria",
"au":"Australia",
"be":"Belgium",
"bg":"Bulgaria",
"bo":"Bolivia",
"br":"Brazil",
@esteveste
esteveste / meta-tags.md
Created March 7, 2018 14:14 — forked from kevinSuttle/meta-tags.md
List of Usable HTML Meta and Link Tags

Copied from http://code.lancepollard.com/complete-list-of-html-meta-tags/

Basic HTML Meta Tags

<meta charset='UTF-8'>
<meta name='keywords' content='your, tags'>
<meta name='description' content='150 words'>
<meta name='subject' content='your website's subject'>
<meta name='copyright' content='company name'>
String file contents
@esteveste
esteveste / installOpenCV.txt
Last active October 28, 2017 17:16
Anaconda OpenCv from sources -> 3.3.1
Try to get the most recent from sources
contrib link
https://github.com/opencv/opencv/archive/3.3.1.zip
sudo apt-get update
sudo apt-get upgrade
Then (if you have not done already) install the necessary build tools,
@esteveste
esteveste / gist:0ef4db23d5fbb687f6423704df2be773
Created October 28, 2017 15:31
Anaconda OpenCv from sources -> 3.3.1
sudo apt-get update
sudo apt-get upgrade
Then (if you have not done already) install the necessary build tools,
sudo apt-get install build-essential cmake git unzip pkg-config
Then, we install the following packages which allows OpenCV to interact with various image and video formats,
sudo apt-get install libjpeg8-dev libtiff5-dev libjasper-dev libpng-dev
sudo apt-get install libavcodec-dev libavformat-dev libswscale-dev libv4l-dev
sudo apt-get install libxvidcore-dev libx264-dev