search for: shaver

Displaying 11 results from an estimated 11 matches for "shaver".

Did you mean: shader
2011 Aug 26
1
Time Series data with data every half hour
I am working with data from the USGS with data every 30 minutes from 4/27/2011 to 8/25/2011. I am having trouble with setting the frequency. My R script is below: > shavers=read.csv("shavers.csv") > names(shavers) [1] "agency_cd" "site_no" "datetime" "tz_cd" "Temp" [6] "X04_00010_cd" "EC25" "X05_00095_cd" "DO" "X06_00300_cd&quot...
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 to obtain root (machine) credentials do you have a keytab entry fo...
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 machin...
2017 Oct 15
3
Problem with AD DC
...October 15, 2017 1:49 PM To: samba at lists.samba.org Subject: Re: [Samba] 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 to \\servername <file://servername> (and authenticate > as administrator). > That howto is fine a...
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 to \\servername <file://servername> (and authenticate > as administrator). > That howto is fine...
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
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 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
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 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