similar to: Searching People

Displaying 20 results from an estimated 600 matches similar to: "Searching People"

2006 Jun 12
2
starting WEBrick
I''m doing some testing and want to start WEBrick as a daemon on my RHEL 4 server. How can I start this to run as a daemon from the command line so that I can close my ssh session and leave WEBrick running? Thanks, David
2006 Jun 12
6
Storing "money" in databases
Hiall, I''m wondering what''s common practice when dealing with money values stored in databases. I like the idea of storing all the values as integers, i.e. all the values in eurocents not euros. Then I need to multiply all values the users enter by 100 before storing them in the database. Now the question is, what''s the most efficient and dryest way to do this?
2006 Mar 08
1
Poor Man''s Continuations
Hi List, I''m a new rubyist and railist, and my web-dev background is php, where I used and contributed to the WACT framework. Continuations are dead cool aren''t they. As I understand it, the problem with having them in rails is that marshalling them isn''t feasbile, so in a stateless environment, they can''t be easily implemented. (Is this correct?) My idea
2006 Aug 18
11
Anyone used MS Access as db?
If yes, how do I set it up in the yml file? Thanks. - amateur Railist -------------- next part -------------- An HTML attachment was scrubbed... URL: http://wrath.rubyonrails.org/pipermail/rails/attachments/20060818/6690a4e2/attachment.html
2006 Jun 12
5
railish icons?
This is a little off topic but someone here knows, I''m sure... Does anyone have a good site to find freely available standard icons for things like add/edit/delete/save? I''m looking for a set of clean and simple matching icons that capture that Railsy-Web 2.0 feel... Maybe icons aren''t Railsy... Steven -- Posted via http://www.ruby-forum.com/.
2006 Jun 09
5
Rails "pasteboard"?
Hello all, I''m looking to setup a simple network "pasteboard" for files within my organization, to circumvent people trying to email 50 meg files and me being unwilling to open up our mail server for massive email transfers. I''ve seen the pasteboard idea elsewhere where you can go and paste code or log files or whatever, and then they just fall off an hour or a day
2009 Mar 03
2
Looks like a bug - Ruby1.9.1Rails2.3.0 - script/plugin
I started talking this one up yesterday - I''ve gotten as close to a good problem statement as I can. 1) script/about: Ruby version 1.9.1 (powerpc-darwin9.6.0) RubyGems version 1.3.1 Rails version 2.3.0 Active Record version 2.3.0 Action Pack version 2.3.0 Active Resource version 2.3.0 Action Mailer version 2.3.0 Active Support version
2006 May 19
12
How to build a server
Hi, I''ve been learning about building Rails apps for about 8 months but I don''t really know how servers work or how to build a server. I have an old 450 GHz Pentium computer I can play with. Since I use OS X, I was thinking about installing a BSD system and trying to make a MySQL/Rails server. That is about all I know about servers. How does a server in my house get connected
2006 May 01
6
Two developers, one on unix and one on windows
Hello all, An interesting problem, I am developing on Windows, another developer is using Unix, and our app and svn repository are running on a Linux box. We need an easy way to not keep breaking our app and each others development environs when we check in the code. The piece in question is the dispatch.fcgi. The path to ruby is (obviously) different in Windows and Unix. Has anyone run into
2006 Apr 14
7
SHA2 Issues
Hello all, Thank you in advance for your help with this. I am trying to implement the user authentication method from Ruby Recipes which calls for the use of SHA 2. Here is the code for the password: def password=(pass) salt = [Array.new(6){rand(256).chr}.join].pack("m").chomp self.password_salt, self.password_hash = salt, Digest::SHA256.hexdigest(pass + salt) end I open
2013 Jul 28
0
Intel vPro performance gains?
Hello, I am currently building a new system for my own semi-personal use, and I have previously used Xen on my old System. I plan to use Xen more heavily with my new system, since I am a computer science student and would I like to do more with virtualization. I want to run Windows as well as Linux VMs with graphics passthrough at the least performance loss possible (obviously). I would
2004 Aug 06
0
synchronous home network streaming
On Tuesday 25 May 2004 10:14, Felix Dorner wrote: > hello people, > > while thinking about the next little fiesta at my place, together with a > friend of mine we were talking about streaming our selected music to > different rooms within our location. actually it would be only two > clients that would have to catch the stream. we are running one linux > box which would serve
2006 Aug 16
3
New subscriber, new question
Hi all, I?m new to the list. I''ve working with mongrel for the last week and have some quetion about mongrel cluster: Is this (being executed from the application folder): # mongrel_rails start -d -p 3001 -e production # mongrel_rails start -d -p 3002 -e production # mongrel_rails start -d -p 3003 -e production the same as: # mongrel_rails cluster::configure -e production -p 3001 -N 3
2004 Aug 06
2
synchronous home network streaming
hello people, while thinking about the next little fiesta at my place, together with a friend of mine we were talking about streaming our selected music to different rooms within our location. actually it would be only two clients that would have to catch the stream. we are running one linux box which would serve the stream. the clients would be that same box and another ms windows machine.
2009 Jun 10
5
uninitialized constant ActiveSupport::Cache (NameError)
Hi After having updated some GEMS I get `load_missing_constant'': uninitialized constant ActiveSupport::Cache (NameError) on starting the server of a freshly generated rails project. Before, I already had Rails 2.3.2 projects succesfully running, now all of them generate this error. These are my GEMS: actionmailer (2.3.2, 2.2.2, 2.1.2, 2.1.1, 2.1.0) actionpack (2.3.2, 2.2.2, 2.1.2,
2005 Nov 15
4
Fosdem : Developers Room, Presence
hi everyone, This mail will mostly interest europeans Rubyists/Railists, but others are welcome to read it, answer and participate too :) In next February the Sixth Fosdem (Free and OpenSource Developers'' European Meeting) will be held in Brussels, Belgium. Like each year there is some special rooms for projects/communities (mozilla, drupal, kde, gnome, python, openbsd, perl, linux,
2007 Feb 01
2
Searcher do not work or I do not work
Hi. I want to learn more about ferret. So I downloaded ferret-0.10.14 and write a simple test script Only query = TermQuery.new(:content, ''program'') gives result. If I change ''program'' with ''Good'' or ''Extra'' -> no result and searching on (:title, ''Ruby'') -> no result Strange, Strange Here is the
2006 Mar 23
2
Scheduling Reminders
Hello everyone, I am not sure if this question belongs here but I will take my chances. I am creating a little app to keep track of my homework and when it is due, and I would like to send myself email reminders within x amount of the due time. What suggestions do you have for accomplishing this? I am running the latest versions of Ruby and Rails on a Fedora Core 5 box with qmail. Thanks for
2006 Apr 12
2
Tracking page hits
Hello all, I am developing an online store and would like to keep track of how many times each product was viewed. While I can keep track of page hits using something like webalizer, this won''t really work (I don''t think) as the pages are not going to be static. Has anyone else implemented this and if so could you please point me in the right direction. A potential solution
2006 May 24
1
Authentication between Instiki and Mailman Solved!
Basically, we needed to authenticate against the cookie written by Ruby. It turns out that you can write a cookie for the entire TLD of *.example.com from Instiki (Rails). So, I changed the cookie writing code in the wiki_controller to the following. # app/controllers/wiki_controller.rb cookies[''ldap_username_2006''] = {:value =>emailaddress, :expires