similar to: Rails in Boulder

Displaying 20 results from an estimated 200 matches similar to: "Rails in Boulder"

2006 Jul 07
5
Re: Rails migration issue
-----BEGIN PGP SIGNED MESSAGE----- Hash: SHA1 Ok, so rake migrate --trace gets you this: Khavi:~/Documents/WebCode/rails/clickcaster sgoodwin$ rake migrate -- trace (in /Users/sgoodwin/Documents/WebCode/rails/clickcaster) ** Invoke migrate (first_time) ** Invoke db:migrate (first_time) ** Invoke environment (first_time) ** Execute environment ** Execute db:migrate ** Execute migrate then it
2008 Jan 22
0
Revactor 0.1.0 released
Original announcement available here: http://blade.nagaokaut.ac.jp/cgi-bin/scat.rb/ruby/ruby-talk/288133 Revactor (an Erlang-like Actor framework for Ruby 1.9) includes a monkeypatched Mongrel which uses Actors (implemented as Fibers) as the underlying concurrency primitive, rather than Threads. It seems to be performing fairly well (better than Threaded Mongrel, afaict). I have plans to move
2006 Jul 07
1
Rails migrations issue
-----BEGIN PGP SIGNED MESSAGE----- Hash: SHA1 - -----BEGIN PGP SIGNED MESSAGE----- Hash: SHA1 Hello, I am a new developer at www.clickcaster.com and we''re having some trouble with migrations. When I tried to run the migrations on our database (which previously hadn''t used migrations), nothing happens, it stops before it runs any of the migrations. However, when I try
2005 Feb 22
2
RE: Relocating the directory for ruby_sess.* files
Please, someone can tell me where session data are stored on Windows, using Webrick in its default configuration? After storing an object into @session, I initially can access only the controller that has stored the object. Otherwise, the html page displays "Not found" and the Webrick console displays: #<ActionController::SessionRestoreError: Session contained objects where the
2011 Dec 23
0
CyberSource is looking for a puppet engineer in Boulder, Colorado.
Details below. Please contact me for more info. Thanks --Duncan Job Details: Release Automation Engineer CyberSource provides businesses with services and software designed to automate the processing of web, phone and other customer-not-present credit card and check transactions. Our complete suite of hosted transaction services and software products includes real time fraud screening,
2013 Feb 28
0
[LLVMdev] JOB: LLVM developers & internships - Boulder, CO
Panève (www.paneve.com), located in Boulder, CO, is developing highly scalable servers targeted toward the Big Data market. We have openings for LLVM developers, including full-time positions and internships. We also have other openings for other software and hardware developers. LLVM development experience is required for all LLVM positions. Please see www.paneve.com for more information and
2008 Nov 11
1
Rails Engineer Wanted in Boulder, CO
We''re a small, funded startup in Boulder, CO looking to hire a Rails engineer, preferably with Flex experience as well. We''re still in stealth mode at this point, but I can say that we''re targeting the mapping and GIS consumer markets. We do have full benefits, including medical, dental, vision, vacation, and parking. We''re looking for someone in the
2007 Dec 09
38
libevent
Hello, I have been looking at the Ruby/EventMachine. First let me say it look very good. Reactor model with no threads makes for fast reliable server, and I have read about marvelous Twisted framework for Python and am glad to see something similar for Ruby. I am writing network app with Ruby threads now and it very slow, and I try new Ruby 1.9 with native threads that make it much slower.
2007 Feb 26
9
libevent
Francis, I read in the list archives back that a future EventMachine release will support epoll on Linux (i.e., it''s in the trunk). Better still, is there a possibility that EM will rely on libevent so that it will be architecture independent (i.e. epoll on Linux, kqueue on FreeBSD/Mac OS X, /dev/poll on Solaris)? This is how memcached is implemented, and it would be helpful to be able
2016 Apr 21
0
xorg-x11-drv-ati 7.7.0
I have recently installed the xorg-11-drv-ati-7.7.0 on my iMac 2010. sources can found at. https://lists.x.org/archives/xorg-announce/2016-April/002684.html <https://lists.x.org/archives/xorg-announce/2016-April/002684.html> http://centos.cms4all.org/centos/7/drivers/ <http://centos.cms4all.org/centos/7/drivers/>
2007 Nov 20
1
P2P: Avoiding manual port-forwarding
From: Tony Arcieri > > A STUN implementation will be an important part of DistribuStream > in terms of firewall traversal. However, first I need to move the > whole protocol to UDP, and before I do that I''m trying to make it > work better in general. > > I''m also unsure what to use for a UDP data transfer protocol. I > need something to work in
2008 Apr 24
4
Pure Ruby HTTP parser
Before anything else, let me state this: Of course it''s going to be PAINFULLY slow on MRI. That''s not the point :) I thought I''d try out writing out a Ruby version of the parser for the purposes of Rubinius. For those of you who aren''t aware, Ragel supports a goto-driven FSM on Rubinius by injecting assembly directly, and Rubinus head honcho guy Evan Phoenix
2017 Jan 30
6
[Bug 2673] New: Multiple ssh keys for a given server
https://bugzilla.mindrot.org/show_bug.cgi?id=2673 Bug ID: 2673 Summary: Multiple ssh keys for a given server Product: Portable OpenSSH Version: -current Hardware: All OS: All Status: NEW Severity: enhancement Priority: P5 Component: ssh Assignee: unassigned-bugs at mindrot.org
2013 Jun 12
1
Permission denied / missing +r perm
I have postfix configured to deliver mail to dovecot over lmtp into a mailbox that then is accessed over imap. The imap server is running as the user "mail". Whenever I run "postfix flush" I get in mail.log: > Jun 12 05:37:45 li212-205 dovecot: lmtp(21288): Connect from local > Jun 12 05:37:45 li212-205 spamd[18173]: prefork: child states: II > Jun 12 05:37:45
2008 Feb 07
6
Buffer flushing
Short question: is there way to tell EM to actually send data after send_data call? I''m building a file transferring app. I send Mashal.dump''ed metadata first, and then - the file contents (chunked). I found a silly bug: receive_data() gets marshalled metadata and the first chunk of the file in a single variable. Like that: c1.send_data("meta")
2009 Nov 02
2
save an object by dynamicly created name
Hi, I would like to save a few dynamically created objects to disk. The following is the basic flow of the code segment for(i = 1:10) { m = i:5 save(m, file = ...) ## ??? } To distinguish different objects to be saved, I would like to save m as m1, m2, m3 ..., to file /home/data/m1, /home/data/m2, home/data/m3, ... I tried a couple of methods on translating between object names and
2012 Aug 20
1
The difference between chisq.test binom.test and pbinom
Hello all, I am trying to understand the different results I am getting from the following 3 commands: chisq.test(c(62,50), p = c(0.512,1-0.512), correct = F) # p-value = 0.3788 binom.test(x=62,n=112, p= 0.512) # p-value = 0.3961 2*(1-pbinom(62,112, .512)) # p-value = 0.329 Well, the binom.test was supposed to be "exact" and give the same results as the pbinom, while the chisq.test
2008 Feb 01
6
epoll increasing latency big time
Sorry this is going to be a bit vague, but I''ve noticed something rather odd going on with EventMachine on Linux. I''ve written something uses EventMachine to proxy HTTP to other processes. On OS X, it works great, adding only about 20% extra latency into the connection when proxying versus connecting to the original backend process directly, so a 5ms connection might now take
2005 Nov 16
37
Postgresql vs MySQL
Is there any reason to avoid using postgresql for small web apps? That is, is it''s overhead so large that the lighter MySQL will work substantially better for small apps on small machines? Or are they very similar in performance and configuration? I''ve used MySQL but postgresql has its appeals and I''m wondering if I need to keep MySQL around at all. On the other
2007 Jul 07
1
AD domain membership problem
Hello, and thanks in advance for any assistance. I have a linux machine that I'm trying to join to a windows 2003 sp1 active directory. The specifics are: RHEL5, samba version samba-3.0.23c-2.el5.2.0.2 a firewall between this server and the rest of the world (which includes the DCs), ports are open for kerberos and CIFS inbound and kerberos, CIFS, NTP and UDP oubtound. this machine