search for: curtis

Displaying 20 results from an estimated 586 matches for "curtis".

2006 Mar 21
9
IE flakiness?
I set up a simple BlindUp and BlindDown div that works seamlessy in Firefox but doesn''t work as smoothly in IE. When blinding down, the whole div flashes and then Blinds down. The same thing when blinding up. Is this something that is fixable? _______________________________________________ Rails-spinoffs mailing list Rails-spinoffs-1W37MKcQCpIf0INCOvqR/iCwEArCW2h5@public.gmane.org
2017 Mar 30
2
JPG issue
Ok, it's taken me a while, but here's what seems to be the problem. In OSX I see a lock on the file. If that lock is ON, it disappears. But what is that lock and where did it come from.... Is it like a read only lock? On Thu, Mar 30, 2017 at 11:04 AM Curtis Vaughan <cavaughan at gmail.com> wrote: > Ok, here's what seems to be going on. When a JPG is put into a share it > inherits permissions of 540. When I chmod it to 740 it appears in file > browsers. So the file is actually there, but invisible. But I've tried > other file...
2006 Jun 20
22
New e-book - The Money Train
While talking about my RailsConf presentation with Ben Wiseley, he suggested writing a book on the same topic... so I did! The Money Train is an e-book about building e-commerce sites using Ruby on Rails. Read my blog entry about it at http://www.bencurtis.com/archives/ 2006/06/rails-e-commerce-e-book/ or head to http:// www.agilewebdevelopment.com/book to dive right in. As always, a big thank you goes out to DHH, the rest of the core team, and all the plugin authors and others who contribute code and time to make Rails a wonderful development...
2011 Apr 25
6
Unicorn / Daemontools
...ity will have some understanding of this issue I documented my experience and eventual defeat here : http://log.robotarmyma.de/post/2053448029/daemontools-ubuntu-rvm-bundler-unicorn-install Any help would be received graciously. -- make haste slowly \ festina lente ?\ - mobile ?+1_415_632_6001 curtis.schofield at gmail.com http://robotarmyma.de
2010 Feb 20
6
Captcha Trouble
Hello Rails, I have a problem. I would like to use captcha in one of my project. When I did try to install, this is what I got $ sudo gem install captcha Building native extensions. This could take a while... ERROR: Error installing captcha: ERROR: Failed to build gem native extension. /usr/bin/ruby1.8 extconf.rb extconf.rb:1:in `require'': no such file to load -- mkmf (LoadError)
2006 Jul 26
9
zfs questions from Sun customer
Please reply to david.curtis at sun.com ******** Background / configuration ************** zpool will not create a storage pool on fibre channel storage. I''m attached to an IBM SVC using the IBMsdd driver. I have no problem using SVM metadevices and UFS on these devices. List steps to reproduce the problem(if a...
2017 Mar 30
2
JPG issue
...recycle:versions = Yes recycle:inherit_nt_acl = Yes recycle:keeptree = Yes recycle:touch = yes etc.... On Thu, Mar 30, 2017 at 10:43 AM Luke Barone <lukebarone at gmail.com> wrote: > Post your smb.conf file so we have information to refer to > > On Mar 30, 2017 9:23 AM, "Curtis Vaughan via samba" <samba at lists.samba.org> > wrote: > > I've got a weird issue with our server. You can't write a jpg file to it. > Windows just errors out. When I tried from a Mac it wrote it over, but > then instantly disappears. > The only possible option...
2004 Mar 16
2
bray-curtis?
Does R have a function to calculate Bray-Curtis distance measures, which is probably one of the most frequently used and recommended dissimilarity measures in ecology? It isn't mentioned in dist().
2003 Dec 29
5
Slow browsing through Windows Explorer
...hows all the files in the explorer window, and then any clicking I did like on the start menu or trying to move winodws while it was hung all happens very quickly and then it's fine. Until I try to access the drive again in about 2 or 3 hours. Sorry so long. Thanks in advance for any help. -- Curtis Strite Director of Internet Services 7321 S. Lindbergh Blvd. Suite 104 St. Louis, MO 63125 Office: 314-892-2100 Mobile: 314-280-8270 Email: curtis@scdservices.com Website: www.scdservices.com ________________________________________________ Message sent using UebiMiau 2.7.2
2006 Jun 19
12
AWDWR- Question
I''m having a particularly difficult time undersanding one lesson from this book. This is in relation ot how one would grab "search" parameters from web forms to search for records in the database. I understand the :conditions part of find() but am confused on the code: 1- name = params[:name] pos = Order.find(:all, :conditions => ["name = ? and pay_type =
2017 Mar 30
0
JPG issue
You have the setting on to HIDE files that can't be written to. Try turning that off. Next, investigate why it's causing the files to get 540 permissions instead of 740 (or other). On Thu, Mar 30, 2017 at 11:18 AM, Curtis Vaughan via samba < samba at lists.samba.org> wrote: > Ok, it's taken me a while, but here's what seems to be the problem. In OSX > I see a lock on the file. If that lock is ON, it disappears. But what is > that lock and where did it come from.... Is it like a read only lock...
2004 Dec 10
1
How to circumvent negative eigenvalues in the capscale function
Dear All I am trying to do a partial canonical analysis of principal coordinates using Bray-Curtis distances. The capscale addin to R appears to be the only way of doing it, however, when I try and calculate a Bray-Curtis distance matrix either using Capscale or Vegedist (capscale I understand uses Vegedist anyway to calculate its distance matrix), R uses up all available memory on the computer,...
2010 May 28
0
[LLVMdev] Retrieving Underlying Type from AllocaInst
You should be able to use the second alternative that Nick proposed: cast<PointerType*>(pointer_value->getType())->getElementType() Reid On Fri, May 28, 2010 at 9:37 AM, Curtis Faith <curtis at curtisfaith.com> wrote: > Thanks Nick, > Unfortunately, that is indeed what I asked for but not what I really am > looking for. > My naive approach is to store symbol table entries as Value* objects so I > can allocate global variables and alloca variables and...
2010 May 28
2
[LLVMdev] Retrieving Underlying Type from AllocaInst
...es a test for one and is just as messy as first getting the type and then testing it for being a PointerType and less general since a GlobalVariable also store its type as a PointerType which point to the actual type. They, unfortunately, do not share a common superclass other than Value itself. - Curtis On May 28, 2010, at 1:06 AM, Nick Lewycky wrote: > Curtis Faith wrote: >> Is there a recommended way to retrieve the original type from an >> AllocaInst object? >> >> For example, I am creating alloca instructions using the IRBuilder >> interface like: >>...
2006 Nov 25
5
Metaphone analysis
.... The first thing I did was create a MetaphoneFilter class that would run the metaphone algorithm over a token stream. It''s a fairly simple class, but does require the ''Text'' gem be installed. require ''ferret'' require ''text'' module Curtis module Analysis # TODO write tests! class MetaphoneFilter < Ferret::Analysis::TokenStream def initialize(token_stream, version = :double) @input = token_stream @version = version end def next t = @input.next return nil if t.nil? t.text = @version.eql?(:double) ?...
2006 Jun 22
4
ADVICE: Generating unique identifiers for later DB insertion
All, I have an ActiveRecord object that I need to be able to uniquely identify _before_ I actually save the object (I may not end up saving the object based on conditions). This is because I want to use the ID in another context (a file name in the filesystem). Depending on conditions, I may or may not need to do a lot of stuff between the time that I generate the object ID and actually
2010 May 28
0
[LLVMdev] Combining Branch Statements - Missing Optimization Pass?
On Fri, May 28, 2010 at 8:35 AM, Curtis Faith <curtis at curtisfaith.com> wrote: > Finally, I want to look at the machine code to see if perhaps this sort of > thing is handled by the optimization passes during machine code emission but > I can't figure out how to easily print out the machine code. Is there an > eas...
2006 Feb 17
2
form_tag with protocol => ''https'' help
...sanity check by just doing <%= url_for :controller => ''home'',:action => ''login'',:protocol => ''https'' %>, and I still just get ''/home/login'' as the resulting string. Anyone see where I am going astray? Thanks, Curtis
2008 May 12
1
inserting mathematical symbols in lattice strip
...lot(adjusted_Rand_index~cluster|distance_measure, main="Level of agreement between partitions: Wards Method", ylab="Coefficient value (adjusted rand index)", xlab="number of clusters", type="l", data=randA1, strip=strip.custom(varnames=c(expression(sqrt(Bray-Curtis))) Is there a way of generating the square root symbol inside the strip or am I wasting my time. i.e. converting Bray-Curtis to ... [sqrt symbol] Bray-Curtis. Thank you very much Regards Andrew http://www.nabble.com/file/p17188291/randA1.csv randA1.csv -- View this message in context: htt...
2006 Jul 25
3
Question about how Mongrel process works with singletons
Hi, I have a controller where I access a singleton class that I use to connect to a DRbprocess DrbConnector.instance.some_method I notice that on every request, the constructor is called so it is making a new instance of this singleton. Is this normal? Thanks, Curtis