This allows you to use the following video streaming services outside of the US from your Mac without having to use a proxy or VPN, so no big bandwidth issues:
- Hulu / HuluPlus
- CBS
- ABC
- MTV
- theWB
- CW TV
- Crackle
- NBC
| before_deploy: | |
| - mkdir deploy_staging | |
| - cp */target/**/*.jar deploy_staging | |
| deploy: | |
| skip_cleanup: true | |
| provider: s3 | |
| bucket: build-bucket | |
| region: us-west-2 | |
| local-dir: deploy_staging |
This allows you to use the following video streaming services outside of the US from your Mac without having to use a proxy or VPN, so no big bandwidth issues:
| #!/bin/bash | |
| pushd /tmp | |
| git clone https://github.com/BanzaiMan/travis-artifacts.git | |
| cd travis-artifacts | |
| git checkout travis_errors | |
| gem build travis-artifacts.gemspec | |
| gem install travis-artifacts*.gem | |
| popd |
| #!/Users/fsg/projects/jruby-1.7.1/bin/jruby | |
| require 'java' | |
| require 'pry' | |
| # $CLASSPATH << "jars/netty-4.0.0.Alpha7/jar/all-in-one/" | |
| require 'jars/netty-4.0.0.Alpha7/jar/all-in-one/netty-4.0.0.Alpha7.jar' | |
| java_import 'java.net.InetSocketAddress' |
| public class Bar { | |
| public static int baz() { | |
| return 1; | |
| } | |
| } |
This allows you to use the following video streaming services outside of the US from your Mac without having to use a proxy or VPN, so no big bandwidth issues:
| media_libs="/engineyard/portage/media-libs" | |
| media_sound="/engineyard/portage/media-sound" | |
| media_video="/engineyard/portage/media-video" | |
| if [ $(uname -m) == 'x86_64' ]; then | |
| mask="~amd64" | |
| elif [ $(uname -m) == 'i686' ]; then | |
| mask="~x86" | |
| fi |
| $ jruby jruby-6014.rb | |
| Hi. I'd like to see what I look like during initialization. :) | |
| self # => #<Klass:0xd2b918> (Klass) | |
| Hi. I'd like to see what I look like during initialization. :) | |
| self # => Sun Aug 21 23:40:01 EDT 2011 (JavaKlass) |
| require "java" | |
| $: << File.join(File.dirname(__FILE__), 'lib') | |
| require 'scala-library' | |
| require 'akka/akka-actor-1.1.2' | |
| java_import 'akka.actor.Actors' | |
| java_import 'akka.actor.ActorRef' | |
| java_import 'akka.actor.UntypedActor' |