search for: basicall

Displaying 4 results from an estimated 4 matches for "basicall".

Did you mean: basically
2014 Dec 30
2
3.x to 4.x (classic PDC) migration & group mapping problems
...configuration was 3.x as PDC, with tdbsam backend. Both NIS and winbind are running on the same server (as well as smb and nmb of course). Since I want the 4.x server role = "classic primary domain controller", I started by copying over all the TDBs, secrets, and smb.conf file. It is basicall working (for linux and win authentication) but once logged in, the available user rights are bizarre. My immediate problem (I think :) is manifest by the fact that: * wbinfo --group-info anygroup correctly returns the group name and membership, but *always* gives the GID as "4294967295&...
2008 Sep 03
8
suggestion of new API function for embedded programming.
While doing some embedded programming and trying to figure out how to generate a hand coded SEXP equivalent of the line "t.test(x,conf.level=(1-p))$conf.int[2]" I had an idea for an addition to the embedded API. There are a number of hidden or static parse functions (R_ParseBuffer, R_Parse1Buffer, etc.) which take an IoBuffer* and returns a parsed tree. If one or more of these
2003 Jun 25
5
lossless ogg encoding with good compression rate
I think that there is a very simple way to encode audio files with lossless compression around 35%. (the compression may be improved if we can lose some lsb bits around 30% for 2 and 25% for 3) Other lossless audio encoder I've seen reach at maximum a compression of 48% (*.flac, *.ape) So the questions are: 1- Is someone interested in another encoder? 2- If true n.1 may it be included in ogg
2006 Aug 12
10
adding extra variable to a class, how to access it?
somple question here but pretty confusing on my side. i have a model towns that is mapped to my towns table. can i add an extra variable to the class and access it in my view? basicall what i am trying to do is return a list of towns, and next to each town, display a total number of what i have in each town. ive tried both attr_reader and @total but no avail. here is my view <% for county in @counties %> <h1><%= county.name %></h1> <...