Displaying 20 results from an estimated 12032 matches for "goals".
Did you mean:
goal
2006 Apr 11
1
how to do a simple update on the server from a change of a select box?
...to
is not sent.
I hope I am missing something simple.
The controller action is:
def update_status
goal = Goal.find(params[:id])
goal.status = params[:goal][:status]
goal.save
end
The relevant form part looks like this
<%= select_tag(''goal[status]'', options_for_select(GoalStatus::STATES,
goal.status), :onfiltered=> remote_function(:url =>
:update_status, :id => goal })) %>
Asked another way, how can I send the value of the form element
associated with the remote_function?
Is there a better way to do this?
Thanks
-------------- next part ---...
2005 Mar 30
2
Production Log Analyzer 1.1.0
...that future changes won''t break it.)
Please see http://rails-analyzer.rubyforge.org for installation
instructions and details.
Sample Output:
Average Request Time: 0.279874593327209
Request Time Std Dev: 0.351590385021209
Slowest Request Times:
ZeitgeistController#goals took 30.889858s
ZeitgeistController#goals took 29.657513s
EntriesController#save_comment took 20.499292s
AccountController#create took 19.539545s
EntriesController#save_comment took 15.46844s
ZeitgeistController#goals took 14.814086s...
2006 Jan 21
0
Select box problems
...I keep getting a " NoMethodError in
Admin#list" on line 8 "undefined method `scope'' for
{"scope"=>"Yearly"}:HashWithIndifferentAccess"
The code from list.rhtml is
<%= start_form_tag :action => ''list'' %>
<p>View goals by scope:
<%
options = [["Select the Goal''s Scope", ""]] + Goal::GOAL_SCOPES
%>
<%= select("goal", "scope", options) %>
<%= submit_tag ''Go'' %>
</p>
<%= end_form_tag %>
and the list method is
def l...
2002 Nov 05
1
add1 in glm
...r example is one problem I have had using
add1, where the abbreviation "." does not work as I expected it to do. I
someone could point me towards some examples involving the interactive
building of glm models I would be grateful.
The data set that I am using is the "Student's Goals" dataset from DASL.
> goals.df <-read.table("C:\\Data\\DASL\\goals.txt", header = TRUE)
> goals.df <- goals.df[,2:8]
> goals.df[1:3,]
Gender Grade Res Goals MOST LEAST Count
1 1 4 1 1 2 1 1
2 1 4 1 1 2 3 1
3...
2008 Jun 14
5
the Given, When, Then framework
Hi,
Is the Given, When, Then framework, the user story, the acceptance
criteria or both?
Aidy
2001 Dec 06
0
Goals and Non-Goals of a standard for TAGS
Some people seem to be a bit confused. I admit I didn't enunciate the
goals as clearly as I could have in the beginning. There are four goals.
Here they are.
1) Identify a track so I can know exactly what I am listening to, and
enjoy it. For a pop song, name of performer and title of song are
often enough. For a piece of classical music, much more is typically...
2007 Oct 16
3
Controller iterating through returned records and appending to each
I have a controller that gets a list of employees (which has an "include =>
[:salaries, :incentives, :billablegoals, :reviews]"). I then need it to
iterate through each employee and determine their current active goal based
on the "effective date."
After playing around with it a bunch, I got the following to work. Only
problem is that if I remove the "@employees.each { |e|....." line, t...
2004 Feb 12
1
Porting let* from Common LISP to R
In porting some Common LISP code to R, I am trying to found out whether special
care must be taken for the let* function. In Common LISP, "the let* block
is like
let except it is guaranteed to evaluate the initialization of its local
variables in sequentially nested scopes, i.e. it provides an order to the
binding and visibility of preceding variables.".
I have included the recursive
2015 Jan 11
4
Design changes are done in Fedora
On Sun, 2015-01-11 at 20:04 +0100, Sven Kieske wrote to Valeri Galtsev ....
> I can't take this serious as it seems you didn't research any of the
> design goals of systemd and any of the shortcomings of old init systems.
Design goals ? Compatibility with and/or minimum disruption to existing
systems ?
It was arrogant change with absolutely no regard for the existing
Centos/RHEL users. That *is* a strange "design goal" (or 'objective' i...
2018 Mar 27
3
Goal seek
Hola
es la primera vez que escribo por acá.
Alguno de ustedes tiene el goal seek hecho en R?
Gracias
[[alternative HTML version deleted]]
2019 Jun 27
5
A libc in LLVM
On Thu, Jun 27, 2019 at 2:05 PM Chris Lattner via llvm-dev
<llvm-dev at lists.llvm.org> wrote:
>
> Saleem, Owen, others on the thread who are concerned about this: it seems that some of the concern is that the project goals are too narrow, and thus the eventual result may not serve the full community well over time.
May be my email listing our goals is being misinterpreted as being the
bounding set of goals for the project. So, let me make it clear again:
The goals I have listed are just our initial set of goals for...
2003 Nov 13
2
early userspace goals
Hi,
I've been messing around with the early userspace for the last couple
days. What are the goals of early userspace? Is the end goal to use
it as an initrd replacement or is it simply to do all the mounting
(nfsroot, initrd, hard disk) that is currently done in init/do_mounts*?
thanks
mh
--
Martin Hicks Wild Open Source Inc.
mort@wildopensource.com 613-266-2296
2007 Jan 13
2
Help with destroy method - newbie
Hello:
I have a destroy method in my controller - pretty standard:
def destroy
@goal = Goal.find(params[:id])
respond_to do |format|
format.html { redirect_to goals_url }
format.xml { head :ok }
end
end
And then I have a listing view which has the destroy method in the view
- also pretty standard:
<%= link_to ''Delete'', { :action => ''destroy'', :id => goal }, :confirm
=> ''Are you sure?'...
2011 Apr 05
2
Help to check data before putting it in a database
The example scene:
I have a database with stats about each goal made by my soccer team. This
database (a data frame in R) is organized in lines (goals) with a set of
columns containing data about these goals (player name, tactic position,
etc). For now, this database will be called "data.frame1".
What I need is to feed this "data.frame1" with new information about my team
goals. I will call this new information "data.fra...
2011 Mar 22
1
Problem with plot histogram
Hi R-users,
I'm trying to built a plot of two series of data, but thees series
result "superimposed". The R-code is like this:
goal <- c(125, 143, 81, 26, 2, 3)
numgoal <- 0:5
lambda <- sum(goal*numgoal)/sum(goal)
plot(numgoal, goal, type="h")
x <- 0:5
y<-dpois(x, lambda)
att<-y*380
lines(x,att, type="h", col="red")
2010 Jun 07
3
Very OT: World Cup Statistics
Hello,
Sorry for the very Off TOpic post, but I need some data on past football
(soccer) world cups. I'd like to find (or calculate) the time to the
first goal of each match (where a goal was scored).
I''ve looked at the uefa website and can't find what I want, maybe
someone here can help ?
Thanks
Paul.
2007 May 05
1
(no subject)
Dear Mailing-List,
I think this is a newbie question. However, i would like to integrate a
loop in the function below. So that the script calculates for each
variable within the dataframe df1 the connecting data in df2. Actually it
takes only the first row. I hope that's clear. My goal is to apply the
function for each data in df1. Many thanks in advance. An example is as
follows:
df1
2016 Jun 20
5
Disabling passdb pam in local.conf
* Edgar Pettijohn <edgar at pettijohn-web.com>:
> Is your goal to have "1" config file?
No, that would eliminate the ability to change distro settings via the regular
package management.
My goal is to add/remove what my service requires via the additional
local.conf.
p at rick
--
[*] sys4 AG
https://sys4.de, +49 (89) 30 90 46 64
Schlei?heimer Stra?e 26/MG,80333 M?nchen
2019 May 09
2
RHEL 8 released
On May 9, 2019, at 9:38 AM, Johnny Hughes <johnny at centos.org> wrote:
>
> As an initial goal, we would love to have a release in a month ..
That?s about the average time for 7.x releases, which I assume are far less work to get out than a point-zero.
Is this goal realistic?
I?d consider any ship date before about September to be ?success.?
2013 Jan 14
17
[LLVMdev] RFC: Codifying (but not formalizing) the optimization levels in LLVM and Clang
This has been an idea floating around in my head for a while and after
several discussions with others it continues to hold up so I thought I
would mail it out. Sorry for cross posting to both lists, but this is an
issue that would significantly impact both LLVM and Clang.
Essentially, LLVM provides canned optimization "levels" for frontends to
re-use. This is nothing new. However, we