similar to: Any Rails guru around in the next hour or so for a phone consultation at $1 per min ?

Displaying 20 results from an estimated 2000 matches similar to: "Any Rails guru around in the next hour or so for a phone consultation at $1 per min ?"

2012 Jul 16
1
After moving from Ruby 1.8.7 to 1.9.3 - test/unit/error (LoadError)
People, For my old library app I did with Rails 2.1.1, if I use Fedora 16/Ruby 1.8.6, everything is OK. If I copy the app to a Fedora 17/Ruby 1.9.3 setup and reinstall all the old Gems and run: ./script/server I get: /usr/share/rubygems/rubygems/custom_require.rb:55:in `require'': cannot load such file -- test/unit/error (LoadError) from
2011 Sep 26
2
Boxplot BUT with Mean, SD, Max & Min ?
People, It appears that there is no way of getting Boxplots to plot using Mean, SD, Max & Min - is there something else that would do what I want? I couldn't find it . . Thanks, Phil. -- Philip Rhoades GPO Box 3411 Sydney NSW 2001 Australia E-mail: phil at pricom.com.au
2020 Sep 14
0
Copying TBs -> error -> work around
On Fri, Sep 11, 2020 at 10:53:14AM +1000, Philip Rhoades via rsync <rsync at lists.samba.org> wrote: > Roland, > > > On 2020-09-10 21:27, Roland wrote: > > > with rsync hanging - after breakout on /home for writing I then get: > > > "Read-only file system" > > > > if your filesystem switches to read-only, you have a serious problem >
2007 Sep 28
3
Why PeriodicalUpdater doesn't work on Internet Explorer?
I have the following code: <script type="text/javascript"> Event.observe(window, ''load'', function() { var updater = new Ajax.PeriodicalUpdater(''chatbox'', ''chat.php'', {method: ''get'', asynchronous: true, frequency: 0.55, decay: 2, onSuccess: function(){$(''chatbox'').scrollTop=$
2020 Sep 11
2
Copying TBs -> error -> work around
Roland, On 2020-09-10 21:27, Roland wrote: >> with rsync hanging - after breakout on /home for writing I then get: >> "Read-only file system" > > if your filesystem switches to read-only, you have a serious problem > with your system/storage, not with rsync. > > rsync (or the workload) is simply triggering the problem. Thanks for the response . . Hmm . .
2020 Sep 10
2
Copying TBs -> error -> work around
People, When I did: rsync -av /home/ /mntb5/ # about 4TB I got errors like: 'rsync [sender] expand file_list pointer array to xxx bytes, "did move"' with rsync hanging - after breakout on /home for writing I then get: "Read-only file system" So after unmounting and remounting /home I did: cd /home find /home/ -type d | sort >
2012 Dec 23
1
Fwd: Re: Another ue for Recoll/Xapian? - AI/Eliza
People, I sent this note to JF at Recoll and he suggested asking here (his response below) - any suggestions? Thanks, Phil. -------- Original Message -------- Subject: Re: Another ue for Recoll? - AI/Eliza Date: 2012-12-23 19:22 From: jf at dockes.org To: <phil at pricom.com.au> Philip Rhoades writes: > Jean, > > I have been using Recoll happily for some time now but I
2006 May 03
0
OO/RoR Consultant in Sydney?
People, I am looking for a consultant in Sydney who has an established history in OO consulting and who is also a RoR guru . . not asking for much . . If anyone thinks they fit the bill (or know of anyone who does) let me know. Thanks, Phil. -- Philip Rhoades Pricom Pty Limited (ACN 003 252 275 ABN 91 003 252 275) GPO Box 3411 Sydney NSW 2001 Australia Mobile: +61:(0)411-185-652 Fax:
2006 Jan 09
3
Scaffolding - disabling Create, Edit, Destroy for some user logins?
People, I am using: before_filter :login_required in my Controllers and this works fine. For some tables I am happy to use the output of eg: ruby script/generate scaffold Author but is there some way that I can disable Create, Edit, Destroy for some user logins in the corresponding view? Thanks, Phil. -- Philip Rhoades Pricom Pty Limited (ACN 003 252 275 ABN 91 003 252 275) GPO Box
2006 Aug 19
2
What is this relationship?
People, If I have a table "books" and a table "comments" and if there is either ZERO or ONE comment per book then: - "Comment" belongs_to "Book" but what is the relationship of "Book" to "Comment"? Thanks, Phil. -- Philip Rhoades Pricom Pty Limited (ACN 003 252 275 ABN 91 003 252 275) GPO Box 3411 Sydney NSW 2001 Australia
2008 Jun 20
2
Using metric units in plots
People, It appears that one has to use Imperial measurements in plot parameters? I can't find any info on using metric units . . Thanks, Phil. -- Philip Rhoades Pricom Pty Limited (ACN 003 252 275 ABN 91 003 252 275) GPO Box 3411 Sydney NSW 2001 Australia E-mail: phil at pricom.com.au
2005 Dec 28
3
Strange result when backing up /etc vs /root
People, My backup script has lines: dt=`date ''+%Y%m%d''` . . DELETE="--delete" . . rsync -av $DELETE --backup --backup-dir /delmod/$dt /etc /backup/ rsync -av $DELETE --backup --backup-dir /delmod/$dt /root /backup/ - only the changes to /root get backed up but ALL of /etc gets backed up everytime! - why should this happen? Thanks, Phil. -- Philip Rhoades
2006 Apr 25
2
School Years/Teams listing problem
People, I have tables years and teams and I have the years listing like: 1965 1966 1967 . . I want to be able to click on the year and ONLY list teams for that year. At first I thought the following was working until I started populating the table with teams for more than one year. For views/years/list.rhtml: <% for year in @years %> <tr> <td> <%= link_to
2012 Apr 03
3
A trivial plot gives open circles as the plot char but another one gives me "q"s . . why is this?
People, On my home computer with a real plot I get what I expect - open circles as the plot character - on my work computer I get "q"s ! So I tried a trivial test plot on the work computer ie: a <- c(1,2,3,4,5) b <- c(1,2,3,4,5) plot(a,b) and that also gives me open circles as it should! - the plot line in my real script is: plot( means5[ ,4 ], means6[ ,4 ],
2006 Apr 16
1
Design question: Years/Teams/Students
People, I want to design a historical sports db for my old school. I think at the moment it should be like: A year has many teams A team has many students A student has one lastname, firstname and middlename but a student can also have many teams (eg summer/winter abd over a number of years) . . Is there a problem with this? Doesn''t it just mean that there will be a student table
2006 Apr 23
1
LoginGenerator problem after updating to FC5 and latest Rails
People, A simple Rails app that was previously working with LoginGenerator eg: http://localhost/library/account/signup is now giving: <h2>Application error</h2>Rails application failed to start properly Other Rails apps are working OK that don''t use this LoginGenerator. I have re-installed it with: gem install login_generator Anyone know what might be wrong/have
2006 Jan 03
2
Scaffolding - changing number of records per page
People, This is probably simple but I couldn''t find where to change the default 10 records per page for scaffolding . . Thanks, Phil. -- Philip Rhoades Pricom Pty Limited (ACN 003 252 275 ABN 91 003 252 275) GPO Box 3411 Sydney NSW 2001 Australia Mobile: +61:(0)411-185-652 Fax: +61:(0)2-8221-9599 E-mail: phil@pricom.com.au
2011 Sep 25
2
Increase space between xlab and X axis tick labels
People, I am using the "las=2" parameter to rotate the labels for the X axis ticks but it means that they are almost touching the "xlab" string. I have been messing around with the "mai" paremeter but that doesn't help - is there some way of increasing the space between xlab and the X axis tick labels? Thanks, Phil. -- Philip Rhoades GPO Box 3411 Sydney
2011 Oct 17
1
Portrait and Lanscape PDF in the one document
People, I want to create a multi-page PDF doc and the pdf command works fine if I only use Portrait OR Landscape but how do I create a document that contains BOTH sorts of pages? Is it possible? - I couldn't find info about it. Thanks, Phil. -- Philip Rhoades GPO Box 3411 Sydney NSW 2001 Australia E-mail: phil at pricom.com.au
2006 Jan 18
2
categories/recipes & books/descriptions - has_many vs has_one => id question
People, In the cookbook eg, categories has_many recipes but in a book eg, book has_one description - doesn''t that mean that the id of the description should be the same as the id of the book (instead of having it''s own "description_id" in the book table? Thanks, Phil. -- Philip Rhoades Pricom Pty Limited (ACN 003 252 275 ABN 91 003 252 275) GPO Box 3411 Sydney