- Header Kernel - GCC
sudo apt-get install linux-headers
- Pacotes essenciais
This is a quick set-up guide on how to install Icecast for Mp3 and Ogg streaming, sort of online radio. Tested on Debian Wheezy. Probably works on Ubuntu, etc. Icecast is a "server-like". It offers the HTTP URL/port through which end-users can play the media. However, Icecast itself does not serve the files. It must get its input from other "client-like" software. For example, Ices0 sends mp3 input to Icecast and then Icecast delivers to the end user. Similarly, Ices2 sends ogg input to Icecast and then Icecast delivers to the end user.
Start by installing:
sudo apt-get install icecast2
| SPC | |
| SPC: find file | |
| , switch buffer | |
| . browse files | |
| : MX | |
| ; EX | |
| < switch buffer | |
| ` eval | |
| u universal arg | |
| x pop up scratch |
| require 'rails_event_store' | |
| require 'aggregate_root' | |
| PaymentAuthorized = Class.new(RailsEventStore::Event) | |
| PaymentSuccessed = Class.new(RailsEventStore::Event) | |
| PaymentFailed = Class.new(RailsEventStore::Event) | |
| PaymentCaptured = Class.new(RailsEventStore::Event) | |
| class Payment | |
| InvalidOperation = Class.new(StandardError) |
| const { parse, visit, print, Kind, BREAK } = require('graphql/language'); | |
| const { buildASTSchema } = require('graphql/utilities'); | |
| const { addResolveFunctionsToSchema } = require('graphql-tools'); | |
| const Sequelize = require('sequelize'); | |
| const { graphql } = require('graphql'); | |
| const jexl = require('jexl'); | |
| const deepAssign = require('deep-assign'); | |
| const { resolver: sequelizeResolver } = require('graphql-sequelize'); | |
| const { inspect } = require('util'); |