search for: nutshell

Displaying 20 results from an estimated 586 matches for "nutshell".

2011 Mar 16
1
License of the nutshell package
Hello, I wish to package the nutshell package. I need help to understand which license is relevant. The upstream page at http://cran.r-project.org/web/packages/nutshell/index.html says that the license is "file LICENSE". This is further explained at http://cran.r-project.org/web/packages/nutshell/LICENSE as [snip] The au...
2009 Mar 19
0
Export groups, users, all objects in Samba domain a nutshell
Greetings, I want to set a lab and ant to use all the objects in my Samba Domain so that I can play with. Obviously, if some users are members of groups and that these groups are themselves members of other groups, I would need this as well. In a nutshell, I am attempting to make a full export that I can manipulate, ?redesign? and re-inject afterwards. Best, Jimmy
2013 Dec 10
5
[LLVMdev] ARM Integrated Assembler
...ecting it to support everything in the kernel as of now. That's why the LLVMLinux guys still use the -no-integrated-as option by default for both x86 and ARM. Also, their plans is to zero the patches to the kernel *before* making sure the IAS works unpatched, which could take a long time. In a nutshell, it seems to be our consensus that the integrated assembly can now be turned on by default on ARM, and we should add -no-integrated-as for the cases where it fails (like the kernel). Do you agree with this consensus, and does it work as expected on Darwin? cheers, --renato
2008 Jan 28
9
Nested matchers
We''re encountering a failure with Mocha 0.5.6. We had this expectation: game_version.expects(:attributes=).with(:game_file => kind_of(GameFile), :game_id => @game.id) This expectation was passing with 0.5.5, but fails with 0.5.6. I added this test to parameter_matcher_acceptance_test.rb, which passes in 0.5.5 and fails in 0.5.6 def test_should_match_nested_parameters
2006 Jan 06
1
Linux HA may not be the best choice in yoursituation. High Availability using 2 sites
In a nutshell and very first of all, you need at least 2 internet connections. Those ISP must be willing to setup BGP peering between your routers and theirs. Once that agreement has been made, you need to get their AS Numbers and submit the ASN request located on ARIN's website (http://www.arin.net). Aft...
2006 Mar 22
5
Adding Custom templates?
Hi, does anybody have any pointers on where to look to learn how to write custom dynamic templates? Agile is a little sparse on this (but otherwise superb)! Thanx -- Posted via http://www.ruby-forum.com/.
2007 Feb 01
3
indexing
Hello, In a nutshell, I've got a data.frame like this: > assignation <- data.frame(value=c(6.5,7.5,8.5,12.0),class=c(1,3,5,2)) > assignation value class 1 6.5 1 2 7.5 3 3 8.5 5 4 12.0 2 > and a long vector of classes like this: > x <- c(1,1,2,7,6,5,4,3,2,2,2...) And...
2008 Oct 14
2
OT: is parted reliable?
Hi, I've read on LPI Linux Certification (Ed O'Reilly) in a nutshell the following thing: "parted, unfortunately, has been known to corrupt partition tables and ruin filesystem." What do you think about it? Greets! -- -- Open Kairos http://www.openkairos.com Watch More TV http://sebelk.blogspot.com Sergio Belkin -
2009 Jul 25
3
Automate wine configuration (drives and registry)
One of my apps requires a clean .wine directory after each (wine) version upgrade and I'm starting to get fed up of making all of the set-up required - specifically: - creating a DVD drive in winecfg - making small changes to a number of registry values (simple but tedious) Both seem ideal things to be solved by a small script, but I have no idea where to start. Can anyone point me in the
2005 Dec 21
3
Checkbox readonly
I declare some checkboxes : <%= check_box_tag ''offers[]'', offer.id , @params[:offers].include?(offer.id.to_s) ,:readonly=>true %> the result is : <input checked="checked" id="offers[]" name="offers[]" readonly="readonly" type="checkbox" value="1" /> But readonly doesn''t work ??? -- Posted
2006 Jun 03
5
Railmail: rails plugin (http://railmail.nullstyle.com)
Hi all, Just dropping a line here because I have recently release a plugin that some of you might find interesting or get a little use out of. I call it Railmail. In a nutshell, it traps any mail sent through ActionMailer (when the delivery_method is set to :railmail), stores it in a database, and provides an interface to view those messages. My initial motivation for the plugin was gmail: While developing locally on my laptop at work, gmail wouldn''t accept a...
2017 Jun 29
6
package to fit mixtures of student-t distributions
...es so far are the "AdMit" and "MitSEM" R packages. However I do not know R and find the description of these packages rather comlple and it seems their core objective is not the fitting of mixtures of t?s but instead use this as a step to accomplish something else. This is in a nutshell what I want the software to accomplish: Fitting a mixture of t-distributions to some data and estimate the "location" "scale" and "degrees of freedom" for each. I hope someone can point me to a simple package, I can?t believe that this is such an obscure use case. T...
2007 Mar 06
3
Is there a quick way to count the number of times each element in a vector appears?
...n I come up with; I thought of using something like duplicated() and just counting the number of TRUEs that are returned for each vector (since the elements are always returned in non-decreasing order), but I'm optimistic that there is a better (faster/cleaner) way. So here is my question in a nutshell: Does anyone have ideas for how I might efficiently process a matrix like that returned by a call to combinations(n, r, rep=TRUE) to determine the number of repetitions of each element in each row of the matrix? If so, I'd love to hear them! Thanks very much for your time, Dylan Arena (Stati...
2017 Nov 16
3
Join a subdomain DC to a domain DC
On Thu, 16 Nov 2017 18:51:19 -0200 Elias Pereira <empbilly at gmail.com> wrote: > Yes, as I mentioned, I will use another dns domain. :) > > In the old domain was provisioned with the option --use-rfc2307. I > believe that it is the attributes that you mention? If so, can I > migrate the users to the new DC, so that they have the same ID? > No, all
2009 Oct 07
2
"Overriding" association build methods
Hey everyone I have (in a nutshell) two models: Customer and Order. Customer has_many Orders and Order belongs_to Customer. The Order model contains fields such as name, address and phone that mirror the associated Customer''s fields at the time the order was placed. The reason for this is that if the customer changes their...
2012 Jul 13
4
Trying to find all the kernel modules needed for my machine using shell script
...m developing kernel modules right now, and the build times are starting to get under my skin. As a side effect i'm taking way too many "coffee" breaks during builds. So i was looking for a way to build only the stuffs i need for my platform. Chapter 7 and 8 of "linux kernel in a nutshell" gave a good detail of how to do that by hand. Its a good read : http://www.kroah.com/lkn/ But Although i understand the stuffs, this is still a lot of tweaks to make that work. 2.6.32 and later kernels added a new target "make localmodconfig". which scans through "lsmod"...
2017 Jun 01
3
Release 3.12: Scope and calendar!
...se. Release calendar: - Feature freeze, or branching date: July 17th, 2017 - All feature post this date need exceptions granted to make it into the 3.12 release - Release date: August 30th, 2017 Release owners: - Shyam - <TBD> Any volunteers? Features and major changes process in a nutshell: 1) Open a github issue 2) Refer the issue # in the commit messages of all changes against the feature (specs, code, tests, docs, release notes) (refer to the issue as "updates gluster/glusterfs#N" where N is the issue) 3) We will ease out release-notes updates form this release onwar...
2005 Jun 03
1
Problems of performance between linux and freebsd
...tion of the same laptop I installed freebsd 5.4, set softupdates, dma=1, and the same pieces of software as those I had installed under linux using the ports, therefore, compiling everything for my pc hardware, but, owing to my poor knowledge of Freebsd I'm experiencing some problems. In a nutshell I prepared the following test files: 1) a ConTeXt file full of long (useless) chapters and pictures to run with texexec; 2) An R program which reads a long text file, puts the data in dataframes, then loops to accomplish many repetitive mathematical calculations. Now running the test files in...
2004 Oct 13
2
Major Samba Battle
I've been here before but I'm still battling with getting Samba to work right with my XP Pro clients. In a nutshell, when I try to access a share, it asks for a username and password. I enter a username and password and it simply goes right back to the prompt, asking again. This is when it's set up as a domain controller. I should note: I CAN join the domain. I DO have my workstations added as ma...
2008 Aug 25
2
slow Perl on CentOS 5
If your Perl apps are unusually slow on CentOS 5, have a look at this blog: http://blog.vipul.net/2008/08/24/redhat-perl-what-a-tragedy/ In a nutshell: some Perl apps are 100x slower on RedHat / CentOS 5 compared to other distributions. Bugzilla entry: https://bugzilla.redhat.com/show_bug.cgi?id=379791 -- Florin Andrei http://florin.myip.org/