search for: leeching

Displaying 20 results from an estimated 52 matches for "leeching".

2006 Sep 04
11
balancer://mongrel_cluster
A couple of questions please: What is the benefit of having more than one Mongrel/Rails instance on the same machine, could one instance not serve as many requests as say three instances? Is Mongrel Cluster a Apache add-in (like mod_*) or a separately running load balancer which runs on a separate port, I could not work it out from the sample Apache config... |# Redirect all non-static
2006 Sep 25
5
HTTP Parser (Regal)
Hi I was interested to see how Mongrel uses Lex/Yacc to parse the HTTP requests using a Regal generated parser. I downloaded the source but do not see the lex and yacc files...
2007 Apr 13
1
Nonparametric Effect size indices
Hello! For comparing two non-normally distributed samples, Leech (2002) suggested to report nonparametric effect size indices, such as Vargha & Delaney's A or Cliff's d. I tried to search the R-sites, but could not find related procedures or packages that include nonparametric effect sizes. Thank you for your help! Citation: Leech (2002). A call for greater use of nonparametric
2006 Sep 06
7
Error on Windows and FreeBSD
First off Windows, because actually what I appear to be getting is a Rails error which only occurs when I use Mongrel, using Webrick I do not get this error. I start Mongrel using: mongrel_rails start I have mongrel, win32-services and mongrel-service gems installed even through Im not using mongrel as a service at the moment. The whole application works apart from one action. The error I get
2007 Mar 08
10
bad URI(is not URI?): c:\boot.ini
Please note this message is not related to my previous one from yesterday, this is on a different server (textdrive server). I have only one mongrel application running but ''randomly'' it will go down, the mongrel.log file shows: ERROR: undefined method ''request_uri'' for #<URI::Generic:0x5383948 URL:*> ERROR: bad URI(is not URI?): c:\boot.ini [FATAL]
2005 Dec 16
6
rake remote_exec on Windows
I am using the shovel deploy.rb from http://nubyonrails.com/pages/shovel I have SwitchTower-ized my app, copied the shovel deploy.rb file and put my settings in it. But when I run "rake remote_exec ACTION=setup_lighty" from the local app root it has no effect. It should prompt for a password for at least throw an error? I just get returned to the DOS prompt. If I do "rake
2005 Sep 22
5
Adding Categories to the Depot example in the Agile Rails book
Hi ya, I want to add categories to the depot example in the Agile rails book. These are my thoughts: Create a new table called categories with id, title, description, and image fields. Add a new field to the products table called category_id Create a model called Category with "has_many :products" Now I should have a one to many link between the products and categories tables? Now
2006 Sep 21
5
Static files in public
My question is about the static files in the Rails public folder. These files should be served by Apache instead of Mongrel, so do I need to upload these files to Apache''s htdoc''s or will Apache cache them the first time they are requested from Mongrel... Im not sure how this works? Many thanks.
2006 Feb 14
5
SSL and domain as account key
Say I have an hosted application which allows the user to use their own domain name (company.com) to access it, and that application must be accessed over SSL, how do you go about our SSL certificate not being registered to their domain. Sure the connection will be safe but the browser will pop up a warning saying the certificate is invalid for this domain. I dont think this problem occur
2005 Nov 16
2
does upgrading rails require you to use generate rails again for existing apps?
If I upgrade from my current version 0.14 to the latest version using "gem update rails" do my existing apps need to have the rails structure re-generated to take advantage of changes to rails? If so is there an easy way to do this without loosing my MCV''s? Thanks, Kris.
2007 Mar 25
2
Mongrel & Mint (PHP related)
Hi, Does anyone have the Mint stats package setup with their Rails application. I have uploaded Mint to the public folder, but when I try and request domain.com/mint/index.php the page is served as a download instead of being processed by mod_php. Im guessing this isn''t really a Mongrel problem but what I actually need to do is prevent Apache proxying certain requests to Mongrel.
2016 Jun 13
3
LLVM APT packages - when will they be back?
Hi, Our tool SMACK (https://github.com/smackers/smack/) relies on installing LLMV from APT packages that used to be provided here: http://llvm.org/apt/ This link has been down for several weeks at this point (I think). Do you have a rough estimate for when you will bring this back? Our users are having trouble installing SMACK due to the above problem, and so I am wondering if we should look
2003 May 20
2
mdct_backward with fused muladd?
Can anybody point me at any resources that would explain how to optimize mdct_backward for a cpu with a fused multiply-accumute unit? >From what I understand from responses to my older postings, Tremor's mdct_backward could be rewritten to take advantage of a muladd. My target machine can do either two-wide 32x32 + Accum(64) -> Accum(64) integer muladd or eight-wide 16x16 + Accum(32)
2006 Feb 20
13
Agile Legacy Interop
I just wanted to announce my latest plugin: LegacyInterop The 5 second video, minus the video, looks like this: $ ./script/plugin install svn://lirp.rubyforge.org/var/svn/lirp/trunk/legacy_interop $ echo LegacyInterop.act_as_dotnet >> config/environment.rb Done! Agile! Pragmatic! The plugin includes support for a large number of legacy systems, all using the "act_as" pattern.
2002 Dec 11
8
What project should I use ?
I am going to list my current plans for rebuilding a Law Firm?s network. I hope that someone will be able to tell me which project (samba or samba-tng) would be a better choice, or if staying with MS is the only choice. If my plan could be changed for the better, input would be greatly appreciated: A lot of this information is useless for my questions, but I am throwing it in anyway. --------
2006 Mar 03
1
starting webrick from ruby (tar2rubyscript.rb)
I am using tar2rubyscript to package up a rails application and run it as one file from the server. If you run script/server and have lighttpd install it will start lighty instead of webrick. So, thanks to Erik Veenstra''s suggestion, I add ARGV.unshift("webrick") to the init.rb file to force webrick to start: ARGV.unshift("webrick") load "script/server"
2006 Mar 29
2
distance_of_time_in_words and Time classes
There is <%= distance_of_time_in_words(Time.now, @a_time) %> before xzy.<BR /> <!-- ^ this gives 2279 days --> This does not work because when @a_time is stored, even though it is a Time field and the class is Time, it includes a date. The Date isn''t even that days date its the year 2000, hence the 2279 days ago. So how do I set the date part of @a_time (a Time
2007 Mar 07
1
Two Mongrel''s Two Rails Applications
Hi, I have Mongrel up and running for one application (port 3000), but when I start another Mongrel for a second application (port 4000) I can access both sites locally (using curl) but not remotly via a browser. If I stop the first applications Mongrel and start the second the second one works. In other words I can only run one application at once... I have both on different ports, it makes
2005 Jul 24
1
asterisk with ser project, , , , here we go! ready or not!!!
I every one, looking for suggestions, or even better yet, a how to guide. I have read most of the wiki's on both, so I know this is completely possible.... I have Asterisk and SER configured on the same server x6 yes, 6 servers. If I can get this to work on one, we are golden! Number one priority, re-invite = yes number 2 priority = collection of CDR number 3 priority = Asterisk
2012 Jan 06
1
Added DHCPINFO Tables to the lua.c32 Implementation - syslinux-4.04
I have never tried submitting a patch for anything previously, didn't know how to go about it with this particular software project (since the website has been down) and know little to nothing about git since I am stuck in a ClearCase world with work. Please find the previous patch, as an attachment. Sorry it is against 4.04, I have had no specific reason to update but it should still work.