Here are instructions for getting ShairPort installed on your 10.6 64bit machine.
These are modified instructions from: http://asktherelic.com/2011/04/11/air-speakers-for-everyone/
Finally use your COMPUTER as an AirTunes speaker!!!
| #!/usr/bin/env ruby | |
| raise "Specify a video file!" unless mkv_file = ARGV.first | |
| audio_file = mkv_file.gsub(/\.mkv/, ".ac3") | |
| audio_track_file = mkv_file.gsub(/\.mkv/, ".mp4") | |
| video_file = mkv_file.gsub(/\.mkv/, ".264") | |
| m4v_file = mkv_file.gsub(/\.mkv/, ".m4v") | |
| VLC_PATH = "/Applications/VLC.app/Contents/MacOS/VLC" | |
| MP4BOX_PATH = "/Users/tekkub/bin/MP4box" |
| 750ml Meyer's Dark Rum | |
| 750ml Meyer's Light Rum | |
| 46oz Pineapple Juice | |
| 32oz Orange Juice | |
| 32oz Mango Juice |
| #!/usr/bin/env ruby | |
| # | |
| # SHOW ME | |
| # Takes X pictures of you via your iSight, animates them, uploads them to CloudApp, and puts | |
| # the url in your clipboard | |
| # | |
| # This uses a bunch of projects to make the magic happen, mostly thanks | |
| # to Zach Holman: http://github.com/holman | |
| # | |
| # |
Here are instructions for getting ShairPort installed on your 10.6 64bit machine.
These are modified instructions from: http://asktherelic.com/2011/04/11/air-speakers-for-everyone/
Finally use your COMPUTER as an AirTunes speaker!!!
Heroku introduced a major update today to the platform. In addition to the press release and blog post, here is a list of all updated content:
Devcenter.heroku.com
| require 'rubygems' | |
| require 'json' | |
| require 'open-uri' | |
| filename = "MAME_Favorites.txt" | |
| list_text = open(filename).read | |
| # replace brackets | |
| list_text.gsub!('[', '{') |
| #! /bin/bash | |
| ### BEGIN INIT INFO | |
| # Provides: unicorn | |
| # Required-Start: $local_fs $remote_fs $network $syslog | |
| # Required-Stop: $local_fs $remote_fs $network $syslog | |
| # Default-Start: 2 3 4 5 | |
| # Default-Stop: 0 1 6 | |
| # Short-Description: starts the unicorn web server | |
| # Description: starts unicorn |
| i386 : iPhone Simulator | |
| x86_64 : iPhone Simulator | |
| arm64 : iPhone Simulator | |
| iPhone1,1 : iPhone | |
| iPhone1,2 : iPhone 3G | |
| iPhone2,1 : iPhone 3GS | |
| iPhone3,1 : iPhone 4 | |
| iPhone3,2 : iPhone 4 GSM Rev A | |
| iPhone3,3 : iPhone 4 CDMA | |
| iPhone4,1 : iPhone 4S |
| class SafariApnController < ApplicationController | |
| # When a user allows permission to receive push notifications, a POST request is sent to the following URL: | |
| # webServiceURL/version/pushPackages/websitePushID | |
| # post '/:version/pushPackages/:website_push_id' => 'safari_apn#package' | |
| def package | |
| #return the push package | |
| send_file(File.join(Rails.root, 'public', 'pushPackage.zip'), type: 'application/zip', disposition: 'inline') | |
| end |
| import 'babel-polyfill'; | |
| import firstView from 'views/first'; | |
| import * as liveReload from 'lib/liveReload'; | |
| App.onLaunch((launchOptions) => { | |
| firstView(); | |
| liveReload.connect(launchOptions); | |
| }); |