/**
* Adds a segment named `name`
*
* @param name {string}
* @param options {object}
* @param options.expiration {integer} timestamp
* @param options.maxAge {integer} number of seconds before it expires
This file contains 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
{ pkgs, ... }: { | |
imports = [ ./hardware-configuration.nix ]; | |
# Bootloader. | |
boot.loader.systemd-boot.enable = true; | |
boot.loader.efi.canTouchEfiVariables = true; | |
networking.hostName = "eva04"; # Define your hostname. | |
networking.networkmanager.enable = true; |
- Can you verify 5555 amp links?
- sure I can!
This file contains 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 | |
# | |
# A script to start/stop the CoreNLP server on port 80, made | |
# in particular for the configuration running at corenlp.run. | |
# This script should be placed into: | |
# | |
# /etc/init.d/corenlp | |
# | |
# To run it at startup, link to the script using: | |
# |
This file contains 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
package: | |
name: freeling | |
version: "4.0.0" | |
source: | |
url: https://github.com/TALP-UPC/FreeLing/releases/download/4.0/FreeLing-4.0.tar.gz | |
md5: hola | |
requirements: | |
build: |
This file contains 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
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 |
This file contains 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 | |
$PYTHON setup.py install |
This file contains 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
''' Present a scatter plot with linked histograms on both axes. | |
Use the ``bokeh serve`` command to run the example by executing: | |
bokeh serve selection_histogram.py | |
at your command prompt. Then navigate to the URL | |
http://localhost:5006/selection_histogram |
This file contains 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
Vagrant.configure(2) do |config| | |
config.vm.box = "ubuntu/trusty64" | |
config.vm.network "private_network", ip: "192.168.33.10" | |
config.vm.provision "shell", inline: <<-SHELL | |
apt-get update -q | |
su - vagrant | |
wget -q https://repo.continuum.io/miniconda/Miniconda-latest-Linux-x86_64.sh -O miniconda.sh | |
chmod +x miniconda.sh | |
./miniconda.sh -b -p /home/vagrant/miniconda | |
echo 'export PATH="/home/vagrant/miniconda/bin:$PATH"' >> /home/vagrant/.bashrc |
This file contains 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
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)); |
NewerOlder