class CreateMemberships < ActiveRecord::Migration
def change
create_table :memberships do |t|
t.boolean :needs_emails, default:true
t.belongs_to :user
t.belongs_to :tag
t.timestamps null:false
end
end
This file contains hidden or 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
config.load_autoconfig() | |
config.bind('R', 'config-source ;; message-info config-reloaded') | |
# saner defaults | |
# -------------- | |
c.auto_save.session = True | |
c.aliases['x'] = 'quit --save' | |
c.completion.shrink = False | |
c.input.insert_mode.auto_load = True | |
c.confirm_quit = ["downloads"] |
# docker version
Client version: 0.6.4
Go version (client): go1.1.2
Git commit (client): 2f74b1c
Server version: 0.6.4
Git commit (server): 2f74b1c
Go version (server): go1.1.2
Last stable version: 0.6.5, please update docker
Two awsome things were released yesterday :
- bittorrent sync aka btsync
- backupsy
Compare this to the pricing of : dropbox pro
This file contains hidden or 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
[2013-04-17 00:54:56] INFO Adhearsion::Initializer: Adhearsion v2.3.1 initialized in "development"! | |
[2013-04-17 00:55:28] INFO Adhearsion::Router: Call bb418258-a6e8-11e2-9923-2dafca7e20c6 selected route "default" (AController) | |
[2013-04-17 00:55:28] DEBUG Adhearsion::Call: bb418258-a6e8-11e2-9923-2dafca7e20c6: Executing command #<Punchblock::Command::Accept headers_hash={}, target_call_id=nil, component_id=nil, target_mixer_name=nil, state_name=:new> | |
[2013-04-17 00:55:28] INFO Adhearsion::Call: bb418258-a6e8-11e2-9923-2dafca7e20c6: Executing controller #<AController call=bb418258-a6e8-11e2-9923-2dafca7e20c6, metadata={}> | |
[2013-04-17 00:55:28] INFO Adhearsion::Call: bb418258-a6e8-11e2-9923-2dafca7e20c6: Hanging up | |
[2013-04-17 00:55:28] DEBUG Adhearsion::Call: bb418258-a6e8-11e2-9923-2dafca7e20c6: Executing command #<Punchblock::Command::Hangup headers_hash={}, target_call_id=nil, component_id=nil, target_mixer_name=nil, state_name=:new> | |
[2013-04-17 00:55:28] DEBUG Adhearsion::Call: bb418258-a6e8-11e2-9923- |
playing with ssml & "uplifting" adhearsion simon game
- lets talk binary and take me back in time bending robot
- simon should speak faster than faster than faster
- correct number of attemps + game over & high score after 3 fails
If you look at the example @ http://www.w3.org/TR/speech-synthesis/#edef_break "Press 1 or wait for the tone" We can assume space separation is the way to do this. However this doesn't requires us to use ssml so I add in http://www.w3.org/TR/speech-synthesis/#edef_prosody
This file contains hidden or 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
require "xm/version" | |
require 'xmpp4r' | |
require 'yaml' | |
module Xm | |
include Jabber | |
@@y = YAML.load_file(ENV['HOME']+'/.xm') | |
@@cl = Client.new(JID.new(@@y[:login])) | |
if @@y.has_key? :server | |
@@cl.connect(@@y[:server]) | |
else |
This file contains hidden or 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
vim /etc/apt/sources.list | |
#paste in | |
deb http://files.freeswitch.org/repo/deb/debian/ squeeze main | |
curl http://files.freeswitch.org/repo/deb/debian/freeswitch_archive_g0.pub | apt-key add - | |
apt-get update | |
apt-get install freeswitch freeswitch-lang-en freeswitch-sounds | |
ulimit -c unlimited | |
touch /etc/freeswitch/freeswitch.xml | |
freeswitch |
NewerOlder