similar to: Time Series data with data every half hour

Displaying 11 results from an estimated 11 matches similar to: "Time Series data with data every half hour"

2006 Aug 05
2
yield :layout, add extra content at controller level
Hi, Could someone point me in the right direction for specifying content at the controller level so that I could use something similar to "yield :left_nav_content" as well as "yield :layout" in my layouts? I know I can specifiy this content in my view using something like: <% content_for("left_nav_content") do %> <h1>Some Menu Options</h1>
2006 Jul 07
4
Controllers - model vs. use case centric
I am working on a reasonably large application (which happens to be my first with rails). I was hoping to get some input on organisation of controllers and actions. I am finding having used scaffolding more at the beginning my controllers tend to be very model centric, in that they mostly contain all the actions for management of that particular model, which may crash across multiple use
2010 May 23
0
Problems with NFS version 4 & Kerberos
-----BEGIN PGP SIGNED MESSAGE----- Hash: SHA1 Hi All, I've got a problem with kerberoized NFS server , i can't start rpc.svcgssd daemon on my server. shaver ~ # rpc.svcgssd -fvvv ERROR: GSS-API: error in gss_acquire_cred(): Unspecified GSS failure. Minor code may provide more information - No principal in keytab matches desired name Unable to obtain credentials for 'nfs' unable
2017 Oct 15
2
Problem with AD DC
I’ve just set up an AD DC on Ubuntu 16.04, using the instructions found at https://jimshaver.net/2016/05/30/setting-up-an-active-directory-domain-controller-using-samba-4-on-ubuntu-16-04/. All the tests work fine. I’m able to connect from my Windows 10 box when I connect to \\servername <file://servername> (and authenticate as administrator). However, when I try to join the machine to the
2010 Dec 09
0
nnet for regression, mixed factors/numeric in data.frame
Hi there, this is more a comment and a solution rather than a question, but I thought I'd post it since it cost some time to dig down to the issue and maybe someone else could run into this. I'm using the nnet function for a regression task. I'm inputting the following data frame: > 'data.frame': 4970 obs. of 11 variables: $ EC25 : num 67.5 67.6 68 69 69.5 ... $
2017 Oct 15
3
Problem with AD DC
Thank you for your reply. This was not a random link I followed. I have reviewed the Samba documentation at https://wiki.samba.org/index.php/Setting_up_Samba_as_an_Active_Directory_Domain_Controller, and all the testing that is listed there results in correct and expected answers... I had already noted the /etc/hosts situation, which interestingly does not change the answers I get in testing
2017 Oct 15
0
Problem with AD DC
On Sun, 15 Oct 2017 12:00:07 +0300 Ronald Vyhmeister via samba <samba at lists.samba.org> wrote: > I’ve just set up an AD DC on Ubuntu 16.04, using the instructions > found at > https://jimshaver.net/2016/05/30/setting-up-an-active-directory-domain-controller-using-samba-4-on-ubuntu-16-04/. > All the tests work fine. I’m able to connect from my Windows 10 box > when I connect
2007 Jan 24
2
Disable search match on model id
Hi, Given a numerical search term I want to avoid matching the model id as this has no real world significance when returned in the results (in this instance). For example the user may enter ''13'' when looking for a product code. Presently they will also get back the product that has id 13. I have tried: acts_as_ferret :fields => {:id => { :index => :no },
2006 Jul 07
2
Get controller''s module path
Hi, Given a controller such as Maintenance::ProductsController, is there a way to obtain the module section ''Maintenance'' within a view. I am planning to highlight the maintenance option from a common menu whenever a controller from the Maintenance module is used. Thanks, Andrew. -- Posted via http://www.ruby-forum.com/.
2006 Jun 13
1
AJAX based record deletion
Hi, New to RoR and I just wanted to check the correct process flow for this... I presently have a controller action: def destroy_category_association category = CatalogueCategory.find(params[:id]) product = Product.find(params[:product_id]) product.catalogue_categories.delete(category) end I display a list of categories assigned to a product, some of which I may wish to delete
2006 Jun 14
3
Prevent duplicate HABTM associations
Hi, I am trying to restrict duplicate has_and_belongs_to_many associations. I tried to find support for a association validation for duplicates but couldn''t find anything. I understand I could use :uniq=>true on the model association but this would only prevent it from displaying duplicates, I want to stop duplicate associations being inserted in the first place. I have a vague