Skip to content

Instantly share code, notes, and snippets.

2008.11.16 16:31:00
Victim: Nathalia Itiero
Corp: The Aduro Protocol
Alliance: NONE
Faction: NONE
Destroyed: Helios
System: X-M2LR
Security: 0.0
Damage Taken: 1703
2008.11.23 16:50:00
Victim: Nathalia Itiero
Corp: The Aduro Protocol
Alliance: NONE
Faction: NONE
Destroyed: Harbinger
System: Ladistier
Security: 0.3
Damage Taken: 18828
2008.11.24 18:14
Victim: Chtimi
Corp: Pandora Requiem
Alliance: None
Faction: NONE
Destroyed: Megathron
System: E9G-MT
Security: 0.0
Damage Taken: 34340
kristoffer@boxofgoodies:~/nexus$ rake spec
(in /home/kristoffer/nexus)
/usr/local/lib/ruby/site_ruby/1.8/rubygems/custom_require.rb:31:in `gem_original_require': no such file to load -- activemessaging/processor (MissingSourceFile)
from /usr/local/lib/ruby/site_ruby/1.8/rubygems/custom_require.rb:31:in `require'
from /usr/local/lib/ruby/gems/1.8/gems/activesupport-2.2.2/lib/active_support/dependencies.rb:155:in `require'
from /home/kristoffer/nexus/app/models/alert.rb:2
from /usr/local/lib/ruby/site_ruby/1.8/rubygems/custom_require.rb:31:in `gem_original_require'
from /usr/local/lib/ruby/site_ruby/1.8/rubygems/custom_require.rb:31:in `require'
from /usr/local/lib/ruby/gems/1.8/gems/activesupport-2.2.2/lib/active_support/dependencies.rb:155:in `require'
from /usr/local/lib/ruby/gems/1.8/gems/activesupport-2.2.2/lib/active_support/dependencies.rb:262:in `require_or_load'
class Group < ActiveRecord::Base
require 'ftools'
cattr_accessor :update_sql
@@update_sql = "
SELECT
groupID as id,
categoryID as category_id,
groupName as name,
description as description,
class Group < ActiveRecord::Base
require 'ftools'
cattr_accessor :update_sql
@@update_sql = "
SELECT
groupID as id,
categoryID as category_id,
groupName as name,
description as description,
def self.find_or_load_by_name(name)
if name.downcase == "none" then return nil end
alliance = self.find_by_name(name)
if !alliance
self.do_update
alliance = self.find_by_name(name)
end
return alliance
end
playworkschool:myapp2 Kristoffer$ rake
(in /Users/Kristoffer/myapp2)
missing config/settings.yml
create config/settings.yml
missing config/redis/test.conf
create config/redis/test.conf
/Users/Kristoffer/myapp2/vendor/quietbacktrace-0.1.1/lib/quietbacktrace.rb:153:in `<top (required)>': uninitialized constant Test::Unit::Util (NameError)
from /Users/Kristoffer/myapp2/test/test_helper.rb:8:in `require'
from /Users/Kristoffer/myapp2/test/test_helper.rb:8:in `<top (required)>'
from /Users/Kristoffer/myapp2/test/routes/css_test.rb:1:in `require'
@flexd
flexd / main.css
Created September 12, 2011 15:05
CSS for anti-aliasing
body {
background-color: #F9F7ED;
font-family: Georgia, Ubuntu, serif;
-webkit-font-smoothing: antialiased;
}
@flexd
flexd / style.css
Created September 16, 2011 15:47
CSS anti-aliasing in different browsers
# WebKit browsers
body {
-webkit-font-smoothing: antialiased;
}
# Gecko (Firefox) browsers
body {
-moz-font-smoothing: antialiased;
}