similar to: It''s all the same list: Gmane, Mailing List, Ruby Forum, Nabble, ...

Displaying 20 results from an estimated 20000 matches similar to: "It''s all the same list: Gmane, Mailing List, Ruby Forum, Nabble, ..."

2006 May 24
8
Where to recruit Ruby on Rails developers?
Anyone have suggestions on where to recruit Ruby on Rails developers? My startup''s in Berkeley, CA and I''m looking for a talented technical lead. I''ve tried LinkedIn and Craigslist but the pickings are slim. This project provides an opportunity to use OpenLaszlo. rocky at_sign teampatent dot com -- Posted via http://www.ruby-forum.com/.
2005 Dec 20
0
Mailing list mirror on www.ruby-forum.com
Hi, with David''s permission I have set up a forum mirror for this mailing list: http://www.ruby-forum.com/forum/5 Andreas -- Posted via http://www.ruby-forum.com/.
2003 Jul 13
3
How robust is mle in R?
A newbie question: I'm trying to decide whether to run a maximum likelihood estimation in R or Stata and am wondering if the R mle routine is reasonably robust. I'm fairly certain that, with this data, in Stata I would get a lot of complaints about non-concave functions and unproductive steps attempted, but would eventually have a successful ML estimate. I believe that, with the
2006 May 05
6
rake rails:update
This question has been asked before, but I am still can''t run rake rails:update. I get rake aborted! Don''t know how to build task ''rails:update'' My environment: FC4, Ruby 1.8.4, Rails 1.1 Any idea what to do? -------------- next part -------------- An HTML attachment was scrubbed... URL:
2006 Mar 27
3
Enumerable?
Hi, Can anyone please point me to some docs on Enumerable. I can''t seem to find anything on how to use it. Thanx -------------- next part -------------- An HTML attachment was scrubbed... URL: http://wrath.rubyonrails.org/pipermail/rails/attachments/20060327/0825d5e8/attachment-0001.html
2008 Aug 28
1
CentOS Mailing list on nabble . why not ??
Hello All, I would like to know that like other communities why not our Cent OS Community is on Nabble. I think it is better for us if we will be there on. -- Thanks and Regards, Kapil Singh Kushwah Linux System/Network Administrator Hotwax Media Inc. Indore,(M.P) INDIA -------------- next part -------------- An HTML attachment was scrubbed... URL:
2006 Apr 16
7
Problem running unit tests
I am running Rails 1.1.2 with Ruby 1.82-15. My database is Postgresql. I haven''t had any problems generating models, migrations, using scaffolds, and generally building and using my application, but I haven''t been able to get testing to work. I initially just ignored the problem and kept developing, but would like to add proper testing from here on out. Currently when I type
2003 Oct 29
0
Re: Large installation [was: SS7 signalling/Softswitch]
>I spoke with someone today who is interested in an IP Centrex solution that >starts with about 3500 extensions in a multi-tenant application. And >growing from there. > >I'm wondering about scalability of Asterisk. I'm trying to put my head >around how to put the whole thing together, if it can be put together. > >The nice thing about it is that if I can show
2012 Oct 05
0
[LLVMdev] LLVM Loop Vectorizer
> I think this is the wrong way to look at the problem. The real question is: why should we keep OPT and LLC separate? Keeping them separate and using some extension of TargetData will just mean manually duplicating information in this extended TargetData that we otherwise have in the backends. This is error-prone [from personal experience] and otherwise unproductive. > You quite obviously
2006 Apr 27
7
HTML Title
Hi there, If I have an application.rhtml template what''s the best way to set the contents of title element in the html -> head area of the template to something set in the view for action in a controller. I want to just have one template which renders the basic layout for all pages and I''ve been scratching my head over this one for a couple of hours now. Any help
2006 May 25
3
No joy for newbie Capistrano user
Hello, I tried taking Capistrano out for a test drive and I can''t even get out of the garage. I am following the instructions here: http://manuals.rubyonrails.com/read/chapter/98#page262 As well as Duncan Davidson''s Deploying Rails with Lighty: Deploying Rails with LightTPDhttp://duncandavidson.com/essay/2005/12/railsonlighty Specifically, when I do: rake remote:exec
2015 Mar 22
1
Fedora Mock
On Sun, 2015-03-22 at 19:38 -0400, Mark LaPierre wrote: > On 03/22/15 16:22, Tim Dunphy wrote: > > how do > > I build in mock? > > http://fedoraproject.org/wiki/Projects/Mock Noticing a minor error, a spelling mistake, on http://fedoraproject.org/wiki/Projects/Mock I clicked on contact which proudly proclaimed Fedora was more wonderful than before and announced the only
2017 Jan 31
1
[Fwd: The CentOS list]
On 2017-01-30, Valeri Galtsev <galtsev at kicp.uchicago.edu> wrote: > > Mark has problem sending mail to centos at centos.org list Isn't there an email address for the list admins? https://lists.centos.org/mailman/listinfo/centos centos-owner at centos.org It's a bit unproductive to trouble list members about list problems. --keith -- kkeller at
2006 Jul 09
1
Acessing multiply servers with same IP''s
Good day, My name is Mike and without further ado forgive me that I''ll go straight to the point. rtlsrc-2.4.29-2.diff this patch is obsoleted, but it would come in handy when trying to solve the IP collisions in networks. I have situation around here becouse I intend to connect through my wifi card to many gateways with same IP adresses - 192.168.0.1 with /24 mask - then
2000 Aug 25
1
win2000 plaintext password
This is probably an FAQ, but my looking into the issue was unproductive. When connecting to a samba share from a win2000 professional machine, I get prompted for a password. Security is set to user on the samba machine. I reenter the same password as the local user that I login as, and then it accepts it. I'm not using encrypted passwords, but I have added the PlainTextPassword registry
2006 Apr 03
4
validates_numericality_of, :allow_nil => true?
Is there a way to use validates_numericality_of and still allow null values? I have a model with some optional values that can be nil, but if they''re present, they must be numbers. Will I need to construct a custom valiation for this, or is there some method built in? Seems like it would be a common enough need. Jeff -- Posted via http://www.ruby-forum.com/.
2012 Oct 05
0
[LLVMdev] LLVM Loop Vectorizer
Hal, Nadav; I think we're piling too many issues into this one thread: On Fri, Oct 5, 2012 at 11:43 AM, Hal Finkel <hfinkel at anl.gov> wrote: > I think this is the wrong way to look at the problem. The real question > is: why should we keep OPT and LLC separate? Keeping them separate and > using some extension of TargetData will just mean manually duplicating > information
2006 Mar 18
4
Accessing overridden method
I have two model classes: class Item < ActiveRecord::Base belongs_to :channel, :counter_cache => true validates_presence_of :channel end class Channel < ActiveRecord::Base has_many :items, :dependent => true end In the Channel controller I have variable channel.items, an Array of Items. I would like to use the Array find method. However, channel.items.find() is a Rails
2006 Feb 17
2
plz register this mailing-list with gmane
Thanks in advance. Alain -- Posted via http://www.ruby-forum.com/.
2005 Mar 01
3
adding syslinux mailing list to gmane.org
Hello! I would like to add the syslinux mailing list to gmane.org so I can read it with my newsreader (I think it is more convenient). Is that ok? For more information go to http://www.gmane.org/ Cheers Alex