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
Prezados colegas, | |
A Mconf Tecnologia (http://mconf.com) é uma startup que desenvolve produtos e | |
serviços baseados na plataforma Mconf - alguns de vocês devem conhecer pois é | |
o sistema de conferência web disponível pra comunidade da UFRGS | |
(http://mconf.ufrgs.br). | |
Estamos com uma oportunidade de estágio para alunos de Ciência da Computação | |
e Engenharia da Computação, na área de desenvolvimento de software. As | |
atividades a serem desenvolvidas durante o estágio são variadas, e incluem: |
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
#!/usr/bin/ruby | |
require 'uri' | |
require 'fileutils' | |
url = ARGV[0] | |
uri = URI.parse(url) | |
meeting_id = uri.query.sub(/meetingId=/, '') | |
file_repo = "#{uri.scheme}://#{uri.host}/presentation/#{meeting_id}" |
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
#!/bin/bash | |
set -e | |
sudo apt-get install build-essential git-core checkinstall yasm texi2html libvorbis-dev libx11-dev libvpx-dev libxfixes-dev zlib1g-dev pkg-config libxext-dev libv4l-dev netcat | |
FFMPEG_VERSION=2.3.3 | |
if [ ! -d "/usr/local/src/ffmpeg-${FFMPEG_VERSION}" ]; then | |
cd /usr/local/src |
NewerOlder