search for: zed

Displaying 20 results from an estimated 778 matches for "zed".

Did you mean: wed
2010 Nov 11
3
Evaluation puzzle
...rent.frame())) mf <- eval(m, parent.frame()) names(mf) } Here is the test data tdata <- data.frame(age= c(12, 24, 36)*365.25, sex=c(1,2,1), year=as.Date('1953/03/10', '1960/02/23', '1978/09.22')) tfun <- function(mydata) { zed <- 100 + (1:nrow(mydata)) * 20 survexp.test(zed ~ 1, data=mydata) } And the result of the exercise. % R --vanilla R version 2.11.0 (2010-04-22) > library(survival) # to pick up the survexp.us data > tfun(tdata) model.frame(formula = "zed ~ 1+age+sex+year", data =...
2006 Dec 25
15
What I Want For Christmas
...or historical characters for your profiles to add to the chaos. The goal is to put me so far ahead of everyone else that they have to reset the system. It''s a Chaos Christmas Calamity! You can recommend me by just clicking: http://www.workingwithrails.com/recommendation/new/person/5455-zed-shaw Or, do it by going to: http://www.workingwithrails.com/person/5455-zed-shaw And clicking the difficult to read link in the gray box that says you like me (you really like me!) To sweeten the deal, I''ll take all the people who contribute to the mayhem and put them into a lottery to...
2006 Dec 22
3
Zed, you''re a moron :-)
Hi ! My mongrel just starting spitting out these nice lines: The error occured while evaluating nil.accept. TELL ZED HE''S A MORON. !!!!!! UNHANDLED EXCEPTION! You have a nil object when you didn''t expect it! Not sure what happened or why, but just FYI: Zed, you are a moron :-) Happy holidays! Gitte Wange
2007 Jan 23
22
Mongrel 1.0.1 Officially Released
...l can thank the people who wrote docs, submitted patches, bugs, and got Mongrel to where it is now. And now, a break while the next big thing is planned. All suggestions welcome (even just "stay the course"). Have fun, and hopefully I''ll meet people at the next RailsConf. -- Zed A. Shaw, MUDCRAP-CE Master Black Belt Sifu http://www.zedshaw.com/ http://www.awprofessional.com/title/0321483502 -- The Mongrel Book http://mongrel.rubyforge.org/ http://www.lingr.com/room/3yXhqKbfPy8 -- Come get help.
2006 Jun 30
50
Time To Pick the Mongrel BUGS Mascot!
...ir.org/uglydogvote.shtml I *have* to use one of these for the Mongrel BUGS Mascot. He''ll go on our bug list page and replace the little beetles on the left. Pick the dog you think best represents a lovable but defective pooch and reply to this with your +1. Let the voting begin! -- Zed A. Shaw http://www.zedshaw.com/ http://mongrel.rubyforge.org/ http://www.railsmachine.com/ -- Need Mongrel support?
2007 Aug 01
5
[HELP] Mongrel Needs a Patch Maven
...rce, write some tests to try them, and then one slight design change. If this works out then I''d also look to hand over the reigns to this person. I''d hope to make this a younger coder looking to get some street cred and learn how to maintain and own a project. Any takers? -- Zed A. Shaw - Hate: http://savingtheinternetwithhate.com/ - Good: http://www.zedshaw.com/ - Evil: http://yearofevil.com/
2007 Mar 13
18
Daemonizing a camping server
...cept'': closed stream (IOError) from /usr/lib/ruby/gems/1.8/gems/mongrel-1.0.1/lib/mongrel/configurator.rb:293:in `join'' ... (This was after I disabled the unhandled exception catchall in the mongrel code -- otherwise it would just spew "!!!UNHANDLED EXCEPTION -- TELL ZED HE''S A MORON" ... or something to that effect). Here''s how I''m daemonizing the server. I scraped this together from the code in mongrel_rails as well as rv: settings = {:host => "0.0.0.0", :log_file => ''foo.log'', :cwd => $MYSERV...
2006 Feb 22
8
Temporary win32 gems up.
Hey, I did some pre-compiled gems for both Mongrel and win32 service, wrote some quick instructions, and threw everything onto a (Mongrel hosted) temp site. Please go hit: http://zedshaw.homelinux.org:3000/files/win32_howto.html And give the instructions a shot. Luis should have the stuff moved around and then we''ll have a nice clean install and set of instructions for all this. Any comments are welcome. Remember stop doesn''t work quite yet. Zed
2006 Oct 29
2
Question for Zed
Zed, I purchased your book and was reading through it. On page 25 it states: "Mongrel will give precedence to the parameter values in the config file over those in the command line." I was wondering why this is not the other way around, preference given to the command line options. Th...
2006 Jul 12
9
Props to Mongrel/Zed
Hi All, After upgrading to 1.1 + on a production VPS which was using a combination of Apache 1.33 + SCGI serving up Rails 1.0 app across multiple domains I ran into some major instability problems which I could not pin down (although some very suspicious POSTs were showing up in the log files that can''t have been good). As an experiment I went with the new way of thinking Mongrel and it
2006 Sep 07
5
Mongrel Ultimate Deployment Certified Rails Aptitude Program
I''m proud to announce the official Mongrel certification program: http://mongrel.rubyforge.org/certified.html Move quick, seats are filling fast for the RubyConf courses. -- Zed A. Shaw http://www.zedshaw.com/ http://mongrel.rubyforge.org/ http://www.lingr.com/room/3yXhqKbfPy8 -- Come get help.
2008 Mar 11
1
Rtools and GCC4 problem
...ng package rseries ------------ adding build stamp to DESCRIPTION installing NAMESPACE file and metadata making DLL ... g++ -Ic:/src/R/R-2.5.1/include -Wall -O2 -c Rutils.cpp -o Rutils.o c:/src/R/Rtools/MinGW/bin/../lib/gcc/mingw32/3.4.5/../../../../include/c++/ 3.4.5/bits/stl_uninitiali zed.h: In function `std::vector<std::string, std::allocator<std::string> > listnames(SEXPREC*)': c:/src/R/Rtools/MinGW/bin/../lib/gcc/mingw32/3.4.5/../../../../include/c++/ 3.4.5/bits/stl_uninitiali zed.h:82: warning: '__cur' might be used uninitialized in this function c:/src/R...
2012 Dec 21
2
Why can't I "unclass" an array?
In a real example I was trying to remove the class from the result of table, just because it was to be used as a building block for other things and a simple integer vector seemed likely to be most efficient. I'm puzzled as to why unclass doesn't work. > zed <- table(1:5) > class(zed) [1] "table" > class(unclass(zed)) [1] "array" > class(unclass(unclass(unclass(zed)))) [1] "array" > class(as.vector(zed)) [1] "integer" > sessionInfo() R Under development (unstable) (2012-11-28 r61176) Platf...
2012 Dec 21
2
Why can't I "unclass" an array?
In a real example I was trying to remove the class from the result of table, just because it was to be used as a building block for other things and a simple integer vector seemed likely to be most efficient. I'm puzzled as to why unclass doesn't work. > zed <- table(1:5) > class(zed) [1] "table" > class(unclass(zed)) [1] "array" > class(unclass(unclass(unclass(zed)))) [1] "array" > class(as.vector(zed)) [1] "integer" > sessionInfo() R Under development (unstable) (2012-11-28 r61176) Platf...
2008 May 11
5
Are you writing "imperative" or "declarative" scenarios in your stories?
...rst is what he calls an imperative example: ---------------------------------------------------------------------------- Scenario: Reject duplicate names Given I am on the Developers page When I click the Add Developer button Then I should see the Add Developer page When I enter the first name Zed And I enter the last name Shaw And I click the Create Developer button Then I should see the message "Zed was created" And the Developers list should contain Zed Shaw When I enter the first name Zed And I enter the last name Shaw And I click the Create Developer button Then I should s...
2006 Feb 20
3
Introduce myself.
Hello mailing list! (Ehhh, that sounds a bit silly, don''t you think?) Anyway, I''m glad that Zed allow me contribute to this project. Been using Ruby and Rails for half-year and lot of things I have learned running on win32 arena, that I wanted to share with everybody. As previously post on ruby-talk by Zed, I will create the scripts that made posible run mongrel as services on win32 (*nix a...
2006 Sep 03
10
Documentation Day!
...#39;t put in yet, and if anyone has some more let me know. * Mongrels -- Got a few new dogs and owners to put on. And that should get things going for the 0.3.13.4 release. If I can find time then I''ll update the plugins documentation to show how to write handlers and such. Thanks! -- Zed A. Shaw http://www.zedshaw.com/ http://mongrel.rubyforge.org/ http://www.lingr.com/room/3yXhqKbfPy8 -- Come get help.
2005 Oct 17
12
SCGI Rails Runner 0.4.1 (getting closer)
...Alright, this release is getting closer. It''s nearly complete except the docs on my site aren''t written yet. There is however a full README with RDoc documentation and several packages including a gem release. Please check out the latest release at: * Announcement: http://www.zedshaw.com/ * README and RDoc: http://www.zedshaw.com/projects/scgi_rails/rdoc/index.html * gem, tar.bz2, tar.gz, zip: http://www.zedshaw.com/downloads/scgi_rails/ * apache1-mod_scgi-1.7a-win32.zip http://www.zedshaw.com/downloads/scgi_rails/apache1-mod_scgi-1.7a-win32.zip * apache2-mod_scgi-1...
2006 Feb 14
6
Mongrel 0.3.3 -- Bug Fix
...9;s zlib support. Curious what people think about this and whether it works for them. You can grab this release of Mongrel from: * http://mongrel.rubyforge.org/ * http://rubyforge.org/frs/?group_id=1306 Or just do gem install mongrel (or update if you''ve already installed it). Enjoy! Zed A. Shaw http://www.zedshaw.com/
2006 Mar 04
5
Correcting Bent Records: Mongrel is not SCGI
...ted to this misunderstanding: http://mongrel.rubyforge.org/faq.html If anyone has some clues as to how this misconception may have come about (other than people not reading) then let me know so I can fix that up. This has been a service announcement from your friendly neighborhood coder. Enjoy! Zed A. Shaw http://www.zedshaw.com/