[ Launch: [dot enter: 09] move along ] 6286432 by jgautsch
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
# This one worked just fine 20 minutes ago. Nothing has changed since then. | |
class AddSubjectToIfReport < ActiveRecord::Migration | |
def change | |
add_column :if_reports, :subject, :text | |
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
require File.expand_path('../boot', __FILE__) | |
require 'rails/all' | |
if defined?(Bundler) | |
# If you precompile assets before deploying to production, use this line | |
Bundler.require(*Rails.groups(:assets => %w(development test))) | |
# If you want your assets lazily compiled in production, use this line | |
# Bundler.require(:default, :assets, Rails.env) | |
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
/*~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ | |
* Interacting with server | |
*~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~*/ | |
char *file_name = argv[3]; | |
/* First send the length of the file name */ | |
short int file_name_length = strlen(file_name); | |
if (send(sock, &file_name_length, sizeof(file_name_length), 0) <= 0) | |
DieWithError("send() sent a different number of bytes than expected"); |
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 'socket' | |
require 'pp' | |
host = 'localhost' | |
port = 1234 | |
s = UDPSocket.new | |
s.bind(nil, port) | |
while 1 do |
[ Launch: [dot enter: 08] movetofront ] 6286191 by jgautsch
[ Launch: [dot enter: 07] stacks ] 6286132 by jgautsch
[ Launch: [dot append: 06] simple transition ] 6285836 by jgautsch
[ Launch: [dot append: 03] electron ] 6285004 by jgautsch
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-08-13 16:25:28 executing `deploy:assets:precompile' | |
triggering before callbacks for `deploy:assets:precompile' | |
* 2013-08-13 16:25:28 executing `deploy:assets:update_asset_mtimes' | |
* executing "[ -e /mnt/workmein-production/shared/assets/manifest* ] && cat /mnt/workmein-production/shared/assets/manifest* || echo" | |
servers: ["production.foo.com"] | |
[production.foo.com] executing command | |
command finished in 147ms | |
* 2013-08-13 16:25:28 executing `deploy:assets:symlink' | |
* executing "rm -rf /mnt/workmein-production/releases/20130813212515/public/assets && mkdir -p /mnt/workmein-production/releases/20130813212515/public && mkdir -p /mnt/workmein-production/shared/assets && ln -s /mnt/workmein-production/shared/assets /mnt/workmein-production/releases/20130813212515/public/assets" | |
servers: ["production.foo.com"] |