search for: hallstrom

Displaying 20 results from an estimated 159 matches for "hallstrom".

2008 Jul 10
6
Uppercase all row columns
Hi. I have to convert the contents of all columns to uppercase before creating a row. Is there an easy way to accomplish this so I don''t have to go one column at a time and upcase! it? Thanks. Pepe --~--~---------~--~----~------------~-------~--~----~ You received this message because you are subscribed to the Google Groups "Ruby on Rails: Talk" group. To post to this group,
1998 Jul 17
4
Can I specify a different username under Win95???
...is issue, never quite fully answered. Is it possible to specify a different username under Win95? If someone has gotten this to work, please let me know how you did it. Thanks! (Please reply to me directly, I'm not sure I'll get the list -- I'm in a limbo land :) -philip -- Philip Hallstrom philip.hallstrom@cendantsoft.com Cendant Software Online Services 425.649.9800 x5738 Cendant Software
2009 Oct 20
5
Annoying problem with file_field and paperclip
Hi all, I have a really really annoying problem that''s driving me nuts with file_field and paperclip and having to upload images everytime a form is edited even though the user is quite happy with the currently uploaded image or loose the previously uploaded image. This seems to be caused by the rails file_field helper not storing the data that has been read in from the db in the same
1998 May 13
1
Logging into a remote domain???
...was? And if not, can you tell me what I need to do to get the shares visible? It would be worth a game or two (Sierra/Blizzard/Berkely) the the person who solves my problem... in addition to my co-workers appreciation in not having to hear my rant about it anymore :) Thanks! -philip -- Philip Hallstrom philip@sierra.com http://www.sierra.com/ Sierra Online, Inc.
2004 Feb 16
1
repeated measures nonlinear regression
...s? I thought maybe a generalized linear mixed model (glmm) might allow this type of analysis to be done. Perhaps it could be accomplished with some restructuring of the data? >From my reading about statistics I gather it is a general problem in regression. Thank you for your time, Wayne Hallstrom Wayne Hallstrom Department of Biological Sciences CW 405, Biological Sciences Centre University of Alberta Edmonton, Alberta Canada, T6G 2E9 Telephone: (780) 492-1180 Fax: (780) 492-9234
1998 Apr 14
1
File locking issues? Has it been a problem for you?
...lnet), but it's quite a bit of money just for file locking :) My question is - for those of you who run both samba and netatalk have you had problems with files getting corrupted due to lack of file locking? If I get enough requests I'll summarize the results. Thanks! -philip -- Philip Hallstrom Technical Director philip.hallstrom@sierra.com Sierra Online Services http://www.sierra.com/ Sierra Online, Inc.
1998 Apr 20
0
SAMBA digest 1659
> Date: Fri, 17 Apr 1998 14:57:14 -0700 (PDT) > From: Philip Hallstrom <philip@sierra.com> > To: samba@samba.anu.edu.au > Subject: Using "host" works, but not "host.domain.com"???? > Message-ID: <Pine.GSO.3.96.980417145416.515M-100000@rintintin> > > Hi - > I set up samba 1.9.18p4 on Solaris 2.6 and have things...
1998 Apr 22
1
Hiding shares in Network Neighborhood?
...gon] and [foobar] (a test). When I look around in Network Neighborhood it lists homes, netlogon, foobar, and philip (my username). Is there some way to make it not show homes and netlogon? Since I'm only using netlogon for the scripts, and why would you want to see homes? Thanks! -- Philip Hallstrom Technical Director philip.hallstrom@sierra.com Sierra Online Services http://www.sierra.com/ Sierra Online, Inc.
2006 May 11
4
string to date/time?
Hey All, Anyone know of a library for parsing "human" dates, like "this friday" or "2 days ago"? I used to use strtotime in php, but starting from here; http://wiki.rubyonrails.com/rails/pages/PhpStrtotime and doing lots of googling, I haven''t been able to find anything similar for ruby. I know of javascript solutions to this, but I''d need to do
2007 Aug 03
1
extracting dispersion parameter from quasipoisson lmer model
...n parameter as it runs. Perhaps there is a way to obtain this number directly since I assume it has already been calculated? Can somone who has experience with this code provide some advice on whether this is possible and how I might manage to do this? Thank you for your time, Wayne Hallstrom 403-370-3832 --------------------------------- [[alternative HTML version deleted]]
2006 Jun 14
6
Lost Connection to MySQL
Error Message: MyMysql::Error: Lost connection to MySQL server during query: SHOW FIELDS FROM products Running Fedora 5, using available Red Hat modules and latest version of Rails. This problem just appeared. I had been enjoying going through the tutorial "Depot" when it started displaying this problem. With phpMyAdmin I am able to access the depot_development data base containing
2007 Aug 21
4
[AWDwR] Confused about has_one and has_many
Heya everyone! I am quite new to Rails and I am reading AWDwR. I am at Task E "Check Out!". I understand it quite well, but I have a problem with the last playground exercise: Add a Table which contains the payment types. All goes well, but I am not sure whether I should use has_many or has_one(as in the Playground wiki at http://wiki.pragprog.com/cgi-bin/wiki.cgi/PT-E-3). I use the
2006 Dec 11
4
creating a cache in rails
I need to create a small hash of values that persists across requests in Rails. I cannot store this information in the database or filesystem and only want to do it in memory. I was looking for a simple solution to implement this and read somewhere that memcache is pretty much overkill. This app is only running on one server so putting in memory should be just fine. I''m very new to
2006 Jul 26
4
Dropdown with concatenated columns.
What is the best way to create a drop down where the viewable text in a concatenation of 2 or more columns? For instance, I hane a lookup table with these columns. Model FOO columns: id , name, phone In my drop select tag, I''d like the user to see: "name1 phone1" "name2 phone2" etc.. I know I can do this using find_by_sql . .. But, isn''t there a more
2010 May 13
6
to "loop through" the instance variables of ActiveRecord?
to wrap each instance variable of an ActiveRecord object between "<td>" and "</td>", is there a way to "loop through" them, at least in the debug mode, no matter there is getter methods to get them or not, or at least the ones with the getter methods? Such as <% @stories.each do |s| %> <%= "<tr>" %> <% s.each_property
2006 Oct 25
7
Sending a file *and* rendering a page
Anyone know how to send a file/data to the user agent (download it) using #send_file or #send_data, *and* render a new page in the same action? This just sends the file and doesn''t render the page: def gimme ... send_data(our_data, :filename => ''output.csv'', :disposition => ''attachment'') end And this will give a Double-Render error:
2008 Mar 06
4
Active Record Question
Hi- Say I am returning some collection of DateTime items and I only want to compare the month. Is there a way to do this directly in the find? Something like this... @coll = Collection.find(:all, :conditions => ["date.month = ?",Time.now.lat_month]) Thanks! --~--~---------~--~----~------------~-------~--~----~ You received this message because you are subscribed to the Google
2009 Aug 24
8
overriding .blank? method
Hi, Does anyone know a way to override .blank? method that rails provides. I want to add additional custom checks (specific to my application) to this method. Thanks, Pratik
2008 Nov 18
5
What is the preferred "lightbox" plugin?
Hi all - I need to do an overlay with something that supports ajax/remote html. There''s lots of options and quite a few rails plugins. Some seem out of date however. Any suggestions on which one is "best" where "best" is defined as easy to implement, works in all browsers, supports ajax or remote html. Thanks! -philip
2006 Dec 20
2
OSX Dashboard Widget for managing mongrels...
Hey everyone - I recently switched to using a Mac and have several different rails projects going and was getting tired of starting/stopping mongrels via the shell so wrote my first dashboard widget to do it for me. More details at the URL below... http://blog.pjkh.com/2006/12/20/mongrel-rails-dashboard-widget Hope those of you on OSX find it handy... feels good to finally give something