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
puts "hello world" |
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
# in your application layout (using HAML) | |
= javascript_include_tag '//ajax.googleapis.com/ajax/libs/jqueryui/1.8/jquery-ui.min.js' | |
= stylesheet_link_tag "//ajax.googleapis.com/ajax/libs/jqueryui/1.8/themes/smoothness/jquery-ui.css" | |
# in your view (HAML + simple_form, simplified for easier reading) | |
= simple_form_for @bp_reading do |f| | |
= f.input :recorded_at, :as => :string, :input_html => { :class => 'jquery-ui-date'} | |
= f.button :submit, :disable_with => "Saving...", :value => "Save" | |
# in your javascript (coffeescript) |
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
# in your view (HAML + simple_form, simplified for easier reading) | |
= simple_form_for @bp_reading do |f| | |
= f.input :recorded_at, :as => :string, :input_html => { :class => 'jquery-ui-date'} | |
= f.input :recorded_at, :as => :hidden, :input_html => { :id => 'recorded-at-alt'} | |
= f.button :submit, :disable_with => "Saving...", :value => "Save" | |
# in your javascript (coffeescript) | |
$ -> | |
$(".jquery-ui-date").datepicker( | |
altField: "#recorded-at-alt", |
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
# in your view (HAML + simple_form, simplified for easier reading) | |
= simple_form_for @bp_reading do |f| | |
= f.input :recorded_at, :as => :string, :input_html => { :class => 'jquery-ui-date', :value => @bp_reading.try(:recorded_at).try(:strftime,'%m/%d/%Y')} | |
= f.input :recorded_at, :as => :hidden, :input_html => { :id => 'recorded-at-alt'} | |
= f.button :submit, :disable_with => "Saving...", :value => "Save" | |
# in your javascript (coffeescript) | |
$ -> | |
$(".jquery-ui-date").datepicker( | |
altField: "#recorded-at-alt", |
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
/** | |
* Responsive Design | |
*/ | |
background: #f06; | |
background: linear-gradient(45deg, #f06, yellow); | |
min-height:100%; |
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
class Squeezebox | |
def initialize(config = {}) | |
puts 'enter initialize in Squeezebox' | |
@t = Net::Telnet::new( | |
'Host' => config['host']||'localhost', | |
'Port' => config['port']||9090, | |
'Prompt' => /./ # needed to work | |
) | |
@id_set = false |
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
class SiriProxy::Plugin::Squeezebox < SiriProxy::Plugin | |
def initialize(config) | |
@s = Squeezeboxer.new(config) | |
end | |
listen_for /radio on/i do | |
@s.power('1') | |
say "Radio is now turned on!" | |
request_completed | |
end |
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
%ol#stream | |
%li.stream-item | |
What can I help you with? | |
#speech-form | |
=form_tag("/home/process_speech", :method => :get, :id=>"process_speech") do | |
%input#speech-button{:name => "utterance", :type => "text", "x-webkit-speech" => ""} |
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
# Function called when a speech recognition result is received. | |
speechChange = (e) -> | |
# Flow | |
# 1. pass received text to service that can interpret the text (using WolframAlpha right now) | |
# 2. when this service returns, show results of this service in the stream | |
e.preventDefault() | |
if e.type == 'webkitspeechchange' && e.originalEvent.results | |
topResult = e.originalEvent.results[0] | |
adjustStream(topResult.utterance) | |
# submit the form to the proxy service |
OlderNewer