Displaying 20 results from an estimated 56 matches for "garey".
Did you mean:
gare
2009 Feb 07
3
Re-post data format question (apologies)
...LMA LCY SCO PNT
Forest 1 1 1 0
Meadow 2 1 0 3
With no repeating taxa names and zeros where a taxon is not listed for a
site. Any help would be greatly appreciated.
Regards,
Drew Garey
Aquatic Ecoloy Lab Manager
Virginia Commonwealth University
[[alternative HTML version deleted]]
2006 Jul 07
10
problem serving pdf files
I''m using the instructions from
http://blog.codahale.com/2006/06/19/time-for-a-grown-up-server-rails-mongrel-apache-capistrano-and-you/to
configure mongrel_cluster with apache mod_proxy_balancer. Everything
works fine, except when I try to link to a pdf file to be opened in a new
window, it displays the contents of the pdf as text instead of opening it as
a pdf document through Acrobat.
2006 Mar 10
2
2nd R console?
hello all, i'm forwarding this question for a colleague.
"Is it possible to open a 2nd R Console?"
regards,
mark+
--
mark garey
ucsf
department of epidemiology and biostatistics
division of biostatistics
185 berry street, suite 5700
san francisco, ca. 94107-1739
415.514.8147
2012 Mar 27
1
problem with setting up ssh chroot account
...some devices. As part of that, I had to create a /dev/pts
directory to handle the terminals.
However, when I try to connect as the chrooted user, I get the
following error:
error: /dev/pts/0: No such file or directory
Does anyone know how to solve this problem?
Garey Mills
2006 Apr 24
2
Sangoma A200 preventing Zap channels from disconnecting immediately after PSTN line hangs up (getting empty voicemails)
...e problem.. Are there any other users on this list
using the Sangoma A200 FXO port card, and experiencing problems with
asterisk not detecting when a channel has been disconnected? Thanks,
Mike
On 4/24/06, Hadley Rich <asterisk@nice.net.nz> wrote:
> On Tuesday 25 April 2006 05:50, Mike Garey wrote:
> > When someone calls into our asterisk server over a PSTN line, dials an
> > extension and then hangs up, the SIP phone related to the given
> > extension will ring about 4 or 5 times before asterisk shows that the
> > channel has been hung up in the console. This i...
2006 Oct 13
5
Polycom IP 501 phone randomly resets itself (loses Received call log, Missed calls, placed calls)
I've been noticing that my group of Polycom IP 501 phones seems to
randomly reset themselves nearly every night (I guess it usually
happens at night, since I've never seen it happen while I've been at
work during the day)..
When I say "reset", I mean, the hands free volume and ring volume are
set to the default and the call logs (received calls, missed calls,
placed calls)
2013 Oct 03
2
Use LDAP for passwords ONLY
I am trying to figure out if I can setup samba to verify only passwords
against LDAP and keep everything else local.
Anyone know how to set this up?
2006 Dec 18
3
Creating another database connection for large mysql import?
I''m using backgroundrb to periodically download a large file via ftp from a
remote location and then import it into the database. To perform the
import, I was using the following:
ActiveRecord::Base.connection.execute(%{load data infile ...;})
although on a file with 2.5 million records, this can take 5 minutes, which
seems to tie up my rails application while this executes (even
2006 May 11
3
can''t call link_to from within a model class
can anyone tell me how to call link_to from within a model class? I''m
trying to do something like the following:
validates_uniqueness_of :email, :message => "address has already
been taken. If you''ve forgotten your password, please click " +
link_to(''here'', :action => ''forgot_password'', :controller =>
2006 May 18
3
populating array of text_fields from an array of model objects
I have in my view the following:
<% 0.upto(@num_performances) do |idx| -%>
<%= text_field ''performance'', ''city'', :index => idx, %>
<%= text_field ''performance'', ''venue'', :index => idx, %>
<% end -%>
and in my controller I have:
@performance = [Performance.new("city" =>
2006 May 29
9
design recommendations for authenticating users with lots of different attributes..?
I''ve been struggling a bit trying to figure out the best way to
design/implement a system with authentication/authorization, and was
hoping some of you may be able to offer some advice..
At the moment, I have a system with 4 different types of users -
clients, administrators, sales_reps, and public_users. I''m using
"Authorizing Users with Roles" from the Rails Recipes
2006 Sep 05
2
Mongrel and umask for uploaded files
So any files that are uploaded through my form are getting the following mode:
-rw-------
I need them to have:
-rw-r--r--
I''ve tried setting the umask in a script file called set_umask.rb as follows:
File.umask(022)
and then starting mongrel using:
mongrel_rails start -m config/mime.types -S set_umask.rb
but it doesn''t seem to change the mode that the files are created
2014 Dec 02
2
Comparing FLAC header before syncing
Hi all, I'd like to modify rsync to add a flag to compare the MD5 signature
of the unencoded audio data in the header of a FLAC file to determine
whether or not to transfer a file.
The reason being that I've got a large number of FLAC files, many of which
are corrupted in the destination volume, but many of which are valid but
the tags have been modified. The sizes of both the source and
2014 Dec 02
1
Aw: Re: Comparing FLAC header before syncing
...f files to sync and then feed that list to rsync.
> Gesendet: Dienstag, 02. Dezember 2014 um 08:37 Uhr
> Von: "Fabian Cenedese" <Cenedese at indel.ch>
> An: rsync at lists.samba.org
> Betreff: Re: Comparing FLAC header before syncing
>
> At 02:24 02.12.2014, Mike Garey wrote:
> >Hi all, I'd like to modify rsync to add a flag to compare the MD5 signature of the unencoded audio data in the header of a FLAC file to determine whether or not to transfer a file. ?
> >
> >The reason being that I've got a large number of FLAC files, many of whi...
2006 Jul 02
4
how to use upload progress?
I''m a bit confused about how to get upload progress to work with
mongrel.. I''ve installed the mongrel_upload_progress (0.1) gem, but
have no idea what to do with it.
According to the following page:
http://technoweenie.backpackit.com/pub/602283
there''s a patch (mup.diff) which seems like it patches the
mongrel_upload_progress plugin
The following blog entry makes it
2006 Apr 26
8
Newbie: Hide div I''ve just show using link_to_remote?
I''m using link_to_remote to show details for an item that''s clicked. I''d
like to hide the div with the next click, or alternatively have a "Hide"
link within my div.
What is the best way to accomplish this?
Here''s my existing code:
<% for task in @mytasks %>
<div class="rowFormat">
<%= link_to_remote(
2006 Jul 10
4
Test Mongrel 0.3.13.4 Please
Hey Folks,
There''s a nasty little bug in 0.3.13.3 when running in development mode
which could cause all sorts of problems.
Please grab the pre-release of 0.3.13.4 and tell me if it works for you:
gem install mongrel --source=http://mongrel.rubyforge.org/releases/
Thanks!
--
Zed A. Shaw
http://www.zedshaw.com/
http://mongrel.rubyforge.org/
http://www.railsmachine.com/ -- Need
2008 Feb 28
2
random exception driving me crazy: SecurityError (Insecure: can't modify array)
Hi all, I''m running into a very strange but incredibly annoying
problem that I just can''t seem to solve.
The exception is occurring from a seemingly innocuous line in my code,
a simple ''logger.warn("some debug information")''. The backtrace
follows:
SecurityError (Insecure: can''t modify array)
2006 Oct 28
5
Seperate admin and public views using one controller REST CRUD
Hello,
I want to seperate my admin and public views but only use one
controller. How to seperate layouts ist clear but how can I tell the
controller to render the *.rhtml files in views/admin/ when logged in or
render the *.rhtml files in views/public/ (for example).
Thanks for any help!
PS: using REST and CRUD in edge rails
--~--~---------~--~----~------------~-------~--~----~
You received
2006 Jun 15
12
RoR on Apache2
Hello,
I''ve been going though the "4 Days on Rails" tutorial at
http://rails.homelinux.org/ test-driving ruby on rails using the WEBrick
server without problems. I''m trying to move the app to be seen by
apache2, and am having some troubles. I''ve looked through many guides
online which all say pretty much the same thing, which, I think, I am
doing.