search for: workouts

Displaying 20 results from an estimated 120 matches for "workouts".

Did you mean: workout
2006 Apr 19
1
AJAX - update item forms problem
...; { :action => ''update'', :id => workout }, :html => { :id => "workout_form_#{workout.id.to_s}" } %> <% @workout = workout %> <%= render :partial => ''update_form'' %> <%= end_form_tag %> </td> </tr> workouts_controller.rb ---------------------- def show_workout_update_form @workout_id = params[:id] end def hide_workout_update_form @workout_id = params[:id] end def update @workout = Workout.find(params[:id]) @workout.exercises_count = @workout.exercises.count @saved = @w...
2008 May 07
2
Begginer question: how to edit using options_from_collection
Hi, I have been stuck on this problem for 2 hours and still have no idea how to do it. Basically I have a relationship between Workout and Exercise Exercise has many Work out anyway in my code at Workout.view the edit.html that was generated through scaffold I wrote this <% form_for(@workout) do |f| %> <p> <b>Exercise</b><br /> <%= select_tag
2008 Feb 25
4
Using group in with find in an ActiveRecord appropriately
I''m playing around with the Practical Rails Projects code, and was attempting to make a change for graphing data differently using groupings. Basically the code went from: total_weight = @exercise.activities.collect {|e| e.repetitions * e.resistance} workout_dates = @exercise.activities.collect {|e| e.workout.date.to_s} To: total_weight =
2008 Jul 22
0
how to workout with option buttons
I need a form development with the following requirements.. I have the employee form he has a dependent or may not so i took the option buttons yes/no based on that the data to be stored in the database either ''y''/''n''. i wrote the java script event for the onclick event of the buttons(YES and NO) in that i am not getting how to set the field to the
2008 Apr 02
0
[LLVMdev] Goog test-cases for a new register allocator
On Wednesday 02 April 2008 03:06, Roman Levenstein wrote: > Hi, > > As I mentioned some time ago on the mailing list, I'm working on the > implementation of the Sarkar's Extended Linear Scan algorithm for LLVM. Cool! > For testing and debugging of this algorithm, I need some good > test-cases that check different functionalities of the register > allocator, e.g.:
2015 Aug 28
2
Samba Internal DNS vs. BIND_DLZ
On Fri, 28 Aug 2015 08:51:30 +0100 Rowland Penny <rowlandpenny241155 at gmail.com> wrote: > ... what you seem > to be missing is that you run bind9 instead of the internal samba4 > DNS server. Whatever DNS server you do use, it needs to only know > about the samba4 dns domain (which also needs to be the realm name), > anything else it gets from its forwarder. I did not miss
2005 Mar 02
2
OT searchable samba archive
Can anyone point me to a search interface for this lists archive. I couldn't find reference on the lists.samba.org site. Thanks, r.b. Robert W. Burgholzer Online Workout Editor - http://soulswimmer.dynalias.net:8080/swim/workoutlog/ rburghol at veetee dot edu
2005 Mar 02
8
Why should I answer a Newbie question, there thick!
It would be nice just for once to actually use a mailing list with people who are a little more sympathetic to the fact that your not a rocket scentist or molecular biologist and that you might actually need some help, without being made to feel like your completely useless and should be cleaning toilets for a living. "Ahhh man not another stupid newbie question! are these people completely
2010 Dec 17
2
adding text to the top corner of a lattice plot
Hi, I have a series of lattice plots which I am arranging in a 2x2 grid via print: print(p.preds, split=c(1,1, 2,2), more=TRUE) print(p.comp, split=c(2,1,2,2), more=TRUE) print(p.bw, split=c(1,2,2,2), more=FALSE) What I'd like to have is a letter (A, B, ...) in the top corner of each plot. While panel.text lets me add text anywhere within a plot, I can't seem to workout how I could put
2018 May 07
0
Discovering patterns in textual strings
Bert Here are some examples of the type of text strings I?m dealing with: ??????.??.??? ??????.??.?????????? ?Torrent? Pro - Torrent App ?Torrent?-Torrent Downloader 1 Pic 8 Words - Syllables 1 Pic 8 Words - Syllables 27043_Spanish songs for children 28.android.com.alpha.horoscope 28.android.com.bravo.horoscope 28.Card Game - Offline 28.card Game Multiplayer 37045_Spanish songs
2004 Apr 20
2
printer server
I trying to share a printer using samba, but is not working. I already share the files but the printer didn't workout. I'm using CUPS. Can anyone help me solve this problem? The configuration of smb.conf for printing is: [global] workgroup = GRUPO netbios name = LINUX server string = Servidor Samba interfaces = eth0 security = SHARE encrypt passwords = Yes obey pam restrictions =
2008 Apr 02
5
[LLVMdev] Goog test-cases for a new register allocator
Hi, As I mentioned some time ago on the mailing list, I'm working on the implementation of the Sarkar's Extended Linear Scan algorithm for LLVM. For testing and debugging of this algorithm, I need some good test-cases that check different functionalities of the register allocator, e.g.: - test-cases involving a lot of spilling - test-cases using pre-colored registers, e.g. like the EAX
2006 Jun 29
9
Handling multiple developers making migrations and using svn
Hey all, I''ve run into an interesting scenario that I think some of you might have some suggestions on. I am currently working on a RoR project and we are making full use of the migrations. We are also using a subversion repository for our source control. Now, the problem.... We are both making migrations and checking them into SVN. So, if in our checkout we have migrations up to 10 and
2010 Jun 11
24
[Xen-API] [XCP]: RC1 of XCP 0.5 available for testing
Hi everyone, The first release candidate of the Xen Cloud Platform (XCP) version 0.5 is now available for testing from: http://www.xen.org/products/cloud_source_0.5.html XCP-0.5 is intended to be a *stable* release, suitable for long-term production use. Please download this release candidate and give it a thorough workout! Cheers, Dave _______________________________________________ xen-api
2010 Jun 11
24
[Xen-API] [XCP]: RC1 of XCP 0.5 available for testing
Hi everyone, The first release candidate of the Xen Cloud Platform (XCP) version 0.5 is now available for testing from: http://www.xen.org/products/cloud_source_0.5.html XCP-0.5 is intended to be a *stable* release, suitable for long-term production use. Please download this release candidate and give it a thorough workout! Cheers, Dave _______________________________________________ xen-api
2011 Mar 06
1
Seeking guidance in package creation when it contains s4 class
Dear all, I am having problem to create a package when this package is supposed to have some newly created s4 class. Here is my workout: > #rm(list = ls()) > setClass("aClass", sealed=T, representation(slot1 = "vector", slot2 = "character")) [1] "aClass" > fn1 <- function(x, y, z) { + x <- x[1] + y <- y[1] + z <- as.character(z[1]) +
2011 May 04
1
Re: What antivirus program is the best for a computer?
I was using MaAfee(free version) antivirus. That's good but it makes my pc too slow. I am using kaspersky now. But searching the web I came to know that Bitdefender is the most popular antivirus. It was a beneficial workout for me to go through your web page. It definitely stretches the limits with the mind when you go through very good info and make an effort to interpret it properly.
2011 Sep 29
4
How to run wine regedit on crossover?
I know this is on crossover, but seeing as crosover is just a tweaked version of wine (or something) i thought you guys could help out. Just wondering, I'm wanting to play yuris revenge and red alert 2 on my mac using crossover. It works, but is slow, and so following this; http://www.codeweavers.com/compatibility/browse/cat/?app_id=4149;forum=1;msg=56763 it tells me to run wine regedit. but i
2005 May 19
0
[LLVMdev] [Cygwin] llvm 'make install' build errors
>Actually, I just found out why. Remove the space from the end of the >TOOLNAME line in llvm-ar and llvm-ranlib Makefiles. This is what's >causing it, there's a space between "llvm-ar" and ".exe" Ahh, great, thanks alot. I do not really feel upto looking into makefiles yet as I don't really know automake, configure scripts, etc, etc >I'll patch
2005 Dec 12
1
Re: Windows apps from windows parttion
not directories, the contents of the windows registry. I havent yet managed to workout what file(s) this is stored in in win, but you can export keys from the regedit program in win. The majority of programs store keys in /local machine/software/<app name> for these you should be able to export the key folders to a text file and import that into Wine. btw, when I did this I think the