Skip to content

Instantly share code, notes, and snippets.

View malev's full-sized avatar

Marcos Vanetta malev

View GitHub Profile
@malev
malev / Radios nacionales
Last active March 16, 2022 16:32 — forked from pisculichi/radios_nacionales.txt
URLs de radios nacionales de Argentina, para poder escuchar en la terminal con mplayer o vlc
AMs Nacionales
Radio Madre 530 http://200.68.81.65:8000/am530
Radio Argentina 570 http://am570.prodera.com.ar:8000
Continental 590 http://1351.live.streamtheworld.com:80/CONTINENTAL_SC
Rivadavia 630 http://190.104.220.205:8234
Belgrano-650 650 http://wmserver3.aginet.com.ar:13574
Radio 10 710 rtmp://radio10.stweb.tv:1935/radio10/live
Cooperativa 770 http://rcoop.cnwks.ws:8358
Radio Mitre 790 http://buecrplb01.cienradios.com.ar/Mitre790.aac
@malev
malev / gulpfile.js
Last active August 29, 2015 14:27 — forked from danharper/gulpfile.js
New ES6 project with Babel, Browserify & Gulp
var gulp = require('gulp');
var sourcemaps = require('gulp-sourcemaps');
var source = require('vinyl-source-stream');
var buffer = require('vinyl-buffer');
var browserify = require('browserify');
var watchify = require('watchify');
var babel = require('babelify');
function compile(watch) {
var bundler = watchify(browserify('./src/index.js', { debug: true }).transform(babel));
@malev
malev / install_opencv.sh
Last active August 29, 2015 14:09 — forked from BloodAxe/setup.sh
Script to install OpenCV on Ubuntu
# Prepare system
apt-get updated
apt-get install -y cmake pkg-config python-software-properties python g++ make software-properties-common unzip
# Grab frest opencv library
curl -sL https://github.com/Itseez/opencv/archive/master.zip > opencv.zip
unzip opencv.zip
rm opencv.zip
# Configure & install OpenCV