search for: horatio

Displaying 12 results from an estimated 12 matches for "horatio".

Did you mean: horacio
2007 May 31
3
where to get list of all ActiveRecord classes
Anybody know how to get a list of all your model classes from a rails environment? I''d like to do something like "ActiveRecord::Base.subclasses" but that gives me: pcollins@horatio:~/proj/foobox$ script/console Loading development environment. >> ActiveRecord::Base.subclasses NoMethodError: protected method `subclasses'' called ... Anybody know how to do this? (getting a directory listing doesn''t count) Much obliged, PMC -- Posted via http://...
2006 May 26
3
Breakdowns in has_many abstraction
...end end Here''s a transcript showing the second problem, from a breakpoint I set in the update method. It illustrates some of the weirdness that''s going on here. > @umbrellas = @person.umbrellas => [#<Umbrella:0x38d7218 @attributes={"name"=>"U. Horatio", "id"=>"1", "person_i d"=>"1"}>, #<Umbrella:0x38d5ca0 @attributes={"name"=>"U. Glavellus", "id"=>"2", "person_id"=>"1"}>] > @umbrellas.each{|u| u.name = u.id.to_s} =...
2007 Feb 27
3
Icecast source encoder that can handle http streams?
...rver. The only external icecast source app that seems to handle http streams is MuSE, and I'm having a hell of a time getting it working. Does anyone know of any other way I can accomplish this? -- owen at nerdnetworks.org (Owen B. Mehegan) 'There are more things in heaven and earth, Horatio, Than are dreamt of in your philosophy.' --William Shakespeare
2012 Jan 26
1
(no subject)
Dear Rhelp, When I try to plot a barplot, I get the following message: Error in plot.new() : figure margins too large What does this mean and how can I fix it? I appreciate your help, Horatio Gates [[alternative HTML version deleted]]
2007 Feb 27
0
Icecast source encoder that can handle http streams?
...ing local mp3:s, you're relaying the other station. I haven't tried it, and it's been a while since I set up an icecast station, but I'm guessing it work. Regards, Oscar > -- > owen at nerdnetworks.org (Owen B. Mehegan) > 'There are more things in heaven and earth, Horatio, > Than are dreamt of in your philosophy.' > --William Shakespeare > > _______________________________________________ > Icecast mailing list > Icecast at xiph.org > http://lists.xiph.org/mailman/listinfo/icecast >
2010 Feb 16
2
OT- Using TR-069
Hi, Phone vendors (Snom, Thomson-Technicolor, ...) are on the way to support TR-069 (see http://en.wikipedia.org/wiki/TR-069). Has someone experienced with TR-069 ? What do you think of this protocol set ? Regards -------------- next part -------------- An HTML attachment was scrubbed... URL: http://lists.digium.com/pipermail/asterisk-users/attachments/20100216/2cbda4a8/attachment.htm
2007 Feb 27
2
Icecast source encoder that can handle http streams?
...ther station. > > I haven't tried it, and it's been a while since I set up an icecast > station, but I'm guessing it work. > > Regards, > Oscar > >> -- >> owen@nerdnetworks.org (Owen B. Mehegan) >> 'There are more things in heaven and earth, Horatio, >> Than are dreamt of in your philosophy.' >> --William Shakespeare >> >> _______________________________________________ >> Icecast mailing list >> Icecast@xiph.org >> http://lists.xiph.org/mailman/listinfo/icecast >> >
2008 Jun 12
5
[RFC][PATCH 0/3] configfs: Miscellaneous fixes
Hi, The following patches fix few bugs/APIs in configfs. The third one depends on the patch introducing configfs_dirent_lock previously submitted in http://lkml.org/lkml/2008/6/12/232 Louis -- Dr Louis Rilling Kerlabs Skype: louis.rilling Batiment Germanium Phone: (+33|0) 6 80 89 08 23 80 avenue des Buttes de Coesmes http://www.kerlabs.com/ 35700 Rennes
2002 Dec 10
2
names<- bug, and incompatibility with c() (PR#2358)
When assigning names to particular elements of hitherto-unnamed vectors, there is inconsistent behaviour depending on whether the element being named is the last one: test> mm <- 1:3 test> names( mm)[1] <- 'y' Error in "names<-.default"(*tmp*, value = "y") : names attribute must be the same length as the vector test> names( mm)[2] <-
2008 Mar 28
3
Two phones fail to agree on codec, asterisk at fault?
...t? First of all, why does it even bother with 3 and 111, given how I disallowed them? And second, why does it *dare* to announce more than what is available to the peer to which it relays? -- martin | http://madduck.net/ | http://two.sentenc.es/ "there are more things in heaven and earth, horatio, than are dreamt of in your philosophy." -- hamlet spamtraps: madduck.bogus at madduck.net -------------- next part -------------- A non-text attachment was scrubbed... Name: not available Type: application/pgp-signature Size: 189...
2010 Jul 22
4
[PATCH 1/3] ext3/ext4: Factor out disk addressability check
As part of adding support for OCFS2 to mount huge volumes, we need to check that the sector_t and page cache of the system are capable of addressing the entire volume. An identical check already appears in ext3 and ext4. This patch moves the addressability check into its own function in fs/libfs.c and modifies ext3 and ext4 to invoke it. Signed-off-by: Patrick LoPresti <lopresti at
2012 Jan 18
4
R-Help
I am trying to create a frequency distribution and I am a bit confused. Here are the commands I have entered: > data <- read.csv(file="40609_sortedfinal.csv",head=TRUE,sep=",") > NumberOfActionsByStatus = data$STATUS > NumberOfActionsByUser = data$ETS_LOGIN > NumberOfBidOffer = data$BID_OFFER > NumberOfActionsByUser.freq = table(NumberOfActionsByUser) >