Displaying 6 results from an estimated 6 matches for "goodfellow".
2008 Feb 09
0
MVC interplay to query multiple models
...ing fields.
How can I get the view to give more meaningful information?
Viewing the source of
http://localhost:3000/calls/show/1
shows:
<p>#<Call:0xb717bcb0>#<Call:0xb717aab8>#<Call:0xb7179cf8>#<Call:0xb7179230></
p>
which correlates with:
thufir@arrakis ~/goodfellow-tool $
thufir@arrakis ~/goodfellow-tool $ cat -n app/views/calls/show.rhtml |
head -n 8 | tail -n 1
8 <p><%= @call.report %></p>
thufir@arrakis ~/goodfellow-tool $
thufir@arrakis ~/goodfellow-tool $ cat app/models/call.rb
class Call < ActiveRecord::Base
belong...
2006 Apr 03
4
Edit in Place in 1.1
Does anyone have a good example or know of some documentation about
how to implement "Edit in Place" using Rails 1.1? Like the
functionality in Flickr... I''ve googled and googled and can''t find any
good documentation. Maybe it''s because 1.1 is so new? Thanks in
advance.
-Andy
2020 Feb 04
3
Reporting source errors from MCCodeEmitter::encodeInstruction() ?
[apologies for this duplicate post: originally sent to lldb-dev by not
paying attention to the address auto-completion]
We have a backend for a target that at present only detects some
assembler errors when emitting instructions (basically because the
platform has configurable properties with dependencies between
instructions and it was easier to check for their interaction late
than try to
2017 May 23
0
NHW Project - paid development
...lot of inter-band similarities & processing is
(heavily) patented by SPIHT,... I would be interested in integrating
machine learning and neural networks if it's free, and maybe GANs
(generative adversarial networks) that are very promising for
compression.They were introduced in 2014 by Ian Goodfellow -in a
publication- and I don't know if he has also patented it... I am also open
to other (free) techniques...
-relatively fast
-coded in the current source code to be able to compile it and test it with
pictures.
The problem, and I am asking your opinion on this forum, is that if there
are 10...
2006 Apr 04
2
Accessing datetime_select value
How do I get a value from datetime_select? Do I need to get each value
from it''s dropdown element individually or is there a way to get the
date by referencing one object? Anyone have any good examples?
-Andy
2006 Apr 04
3
How to use in_place_editor_field ?
Hello, I really don''t understand how to use in_place_editor_field
In my controller :
class Admin::CategoriesController < Admin::BaseController
in_place_edit_for :category, :title
def list
@categories = Category.find_all
end
end
In the view list.rhtml
<% @categories.each do |c| %>
<td><%= in_place_editor_field :c, c.title %></td>
# snip
<%