Displaying 20 results from an estimated 38 matches for "luv".
Did you mean:
lu
2006 Mar 13
2
CDR Bug?
Trying to figure out if a bug report should be submitted.
Can anyone on 1.2.x verify of this has been corrected?
I am on CVS 8/2005
If a call comes in to an extension that dials more than one channel
(rings at more than one phone) both calls in the CDR show a status of
answered when only one is answered, the source channel is bridged to
only one of the two destination channels, but both CDRs
2008 Jun 06
4
color scale mapped to B/W
In an R graphic, I'm using
cond.col <- c("green", "yellow", "red")
to represent a quantitative variable, where green means 'OK', yellow
represents 'warning'
and red represents 'danger'. Using these particular color names, in B/W,
red is darkest
and yellow is lightest. I'd like to find color designations to replace
yellow and
2018 Oct 03
1
grDevices::convertColor and colorRamp(space='Lab') Performance Improvements
...f changes to achieve this with just R matrix and vector
operations. The changes consist primarily of switching `if/else` to
`ifelse`, `c` to `cbind`, `sum` to `rowSums`, etc. This results in
speedups of 30-100x as shown in table 1:
to
from Apple RGB sRGB CIE RGB XYZ Lab Luv
Apple RGB NA 38.3 55.8 30.3 60.2 56.3
sRGB 38.7 NA 55.7 36.5 62.9 52.7
CIE RGB 45.2 44.4 NA 30.6 51.5 43.1
XYZ 73.4 57.5 69.1 NA 92.2 69.0
Lab 46.6 56.6 65.4 72.0 NA 61.3
Luv 73.2 107.3 67...
2004 Nov 25
1
Firwall on and no one home
Hi Guys
luv your product but ive become stuck since updating to Suse Linux
Enterprise 9, Id luv some advice on where i should be looking to resolve
this issue..
basically... when shorewall is off all ports are showing to the internet
''25,80,443,ect'' and i can ping my box from an external sou...
2015 Aug 18
1
logging into user mailboxes with admin credentials
...urity
reasons it's not feasible to compile a list of all IMAP passwords.
Is there a way to log into user IMAP accounts on Dovecot using a central
administrative credential?
Thanks!
Warmest and bestest,
Noam
510-332-3828 cell
Noam Birnbaum
Mac Daddy
http://www.maccentricsolutions.com
877.luv.macs x666
tweet @noamb
Tech support ---> 877.luv.macs or support at maccentricsolutions.com
Luvvv us? _Yelp us!_
<http://www.yelp.com/biz/maccentric-solutions-san-francisco>
2008 Jun 20
1
samba oplocks not breaking
...eird) issues with XFS, in that open(...) on certain files
takes 45 seconds to return. After the file has been opened, the next
file in the same directory takes 45 seconds. If the file was recently
opened it returns immediately.
I have raised this on several mailing lists, see:
<http://lists.luv.asn.au/wws/arc/luv-main/2008-06/msg00143.html>
<http://oss.sgi.com/archives/xfs/2008-06/msg00210.html>
<http://www.archivum.info/linux-fsdevel@vger.kernel.org/2008-06/msg00337.html>
So far it would appear to be Samba is not releasing the oplock when
another process tries to break i...
2002 Jul 24
2
Fw: wine & foxpro
I have received any responses from LUV so I thought I would try here.
"Nic Baxter" <nic@melbpc.org.au> wrote in message news:<1027342247.6846.14.camel@albert>...
> I am trying to run our foxpro database program under wine 20020228 on
> Mandrake 8.2 with the following output: err:font:AddFontFileToList
>...
2008 Feb 05
1
windows printer config management
Hello,
I sent this request to my local linux user group:
<http://lists.luv.asn.au/wws/arc/luv-talk/2008-02/msg00000.html>
Unfortunately it looks like nobody is able to answer, so I will try
here:
Does anybody know of any sane solution for (globally) managing the
configuration of printers on a large number of Windows computers?
My current solution is
1. create samba...
2003 Mar 07
2
[Bug 503] Password is echoed when running passwd via ssh
http://bugzilla.mindrot.org/show_bug.cgi?id=503
kj at uue.org changed:
What |Removed |Added
----------------------------------------------------------------------------
Status|NEW |RESOLVED
Resolution| |FIXED
------- Additional Comments From kj at uue.org 2003-03-08 02:04 -------
just
2007 Oct 01
1
rsync vs. unison
Hey all,
I'm looking into a two-way WAN mirror on two boxes running Mac OS X
10.4. It seems that both rsync (with the -u option) and unison could
do this. Any suggestions on how to choose one over the other?
Many thanks,
noam
Noam Birnbaum
http://maccentricsolutions.com/
877.luv.macs x89
ð Apple Certified Technical Coordinator
ð Apple Certified Help Desk Specialist
-------------- next part --------------
HTML attachment scrubbed and removed
2007 Oct 02
3
estimating nightly diffs
Hey all,
Any suggestions on how to estimate how much data rsync would
synchronize on average in a given installation? Assume that a full
rsync has already run and the only data being updated is just the
daily diffs.
Thanks,
noam
Noam Birnbaum
http://maccentricsolutions.com/
877.luv.macs x89
ð Apple Certified Technical Coordinator
ð Apple Certified Help Desk Specialist
-------------- next part --------------
HTML attachment scrubbed and removed
2007 Oct 31
4
multiple rsync sessions for one file?
...p window ends before the file is complete (i.e. the rsync
process stops), will it complete the rest of that file the following
backup window?
If so, is there an easy way to configure rsync to stop execution at a
specific time?
Thanks!
noam
Noam Birnbaum
http://maccentricsolutions.com/
877.luv.macs x89
ð Apple Certified Technical Coordinator
ð Apple Certified Help Desk Specialist
-------------- next part --------------
HTML attachment scrubbed and removed
2006 Mar 02
1
extracting RGB values from a colorspace class object
...;Y"))
#convert to XYZ
X <- (soil$x * soil$Y ) / soil$y
Y <- soil$Y
Z <- ( (1- soil$x - soil$y) * soil$Y ) / soil$y
#make an XYZ colorspace object:
require(colorspace)
soil_XYZ <- XYZ(X,Y,Z)
#visualize the new XYZ colorspace object in the L*U*V colorspace:
plot(as(soil_XYZ, "LUV"), cex=2)
here is an example of the output:
http://169.237.35.250/~dylan/temp/soil_colors-LUV_space.png
Somehow the plot() method in the colorspace package is converting color space
coordinates to their RGB values... Does anyone have an idea as to how to
access these RGB triplets?
Thanks...
2013 Jan 20
10
iscsi on xen
I wonder if someone can point me in right directions. I have two dell
servers I setup iscsi so I have four 2 tb hard drives and i had used lvm
to create one big partiton and share it using iscsi. How I go about
assigning sections of iscsi for virtual hard drives . should go about
assigning Should I export the whole 8TB as one iscsi and then use lvm to
create smaller virtual disk. Or should I
2005 Sep 05
1
tcltk, X11 protocol error: Bug?
...mmand=save.ramp)
tkgrid(canvas.b,BColor.button,canvas.e,EColor.button)
tkgrid(bframe)
tkgrid(frame)
tkgrid(canvas.r)
tkgrid(killbutton)
cr<-colorRampPalette(c(b.color,e.color),space="Lab",interpolate="spline")
##rmpcol <- hex(mixcolor(alpha,bc,ec,where="LUV"))
rmpcol <- cr(n.col)
inc <- 300/n.col
xl <- 0
#barlst <- vector(length=n.col,mode="list")
barlst <- tclArray()
for(i in 1:n.col){
item<-tkcreate(canvas.r,"rect",xl,0,xl+inc,50,
fill=rmpcol[i],outline=rmpcol[i])
##tk...
2004 Jun 11
1
* as conference server for shoutcast.
...t way for corporation to broadcast meetings.
board meetings
live management meetings
live sales demonstrations
and all interactive.
you get the picture.
right now i'm thinking of just patching a cable from the * operator
console to a shoutcast server. thank god for old tech.
but i would luv to explore the potential to feed an mp3 stream to a
shoutcast server. * is mp3 complient.
i'd be willing to use my test system - which is currently called
frankenstein and for good reason - to experiment.
just an idea to the * community.
regards
joe baptista
2005 Jan 07
4
MINNESOTA: TwinCities Asterisk Users Group - Meeting tomorrow 01/08/05 11:30am
MINNESOTA: TwinCities Asterisk Users Group - Meeting Saturday 01/08/05
Hello Fellow Asterisk Users!
This email is to remind everyone of the TwinCities Minnesota users
groupmeeting. Information is located on the Wiki site.
http://www.voip-info.org/tiki-index.php?page=Asterisk%20User%20Group%20TwinCities%20Minnesota%20USA
Meetings at 2375 University Av W STE120, Saint Paul. 11:30am. Parking is
2009 Oct 04
1
Designate one samba server for home directories
Hello all,
I have a few samba servers running winbind that are joined to the AD 2003
domain.
Is it possible to designate one samba server to host the users' home
directories instead of each one of them?
If we have samba1, samba2, and samba3 and designate samba1 to host the home
directories and when a user accesses samba 2 either via ssh or as a share,
the home directory that the user sees
2009 Apr 18
0
Anyone know how to include playerMultipleList.swf
The following code snippet did work beautifully before I retrofitted the
website into ROR. Everything but this is working beautifully, and so far
I luv ROR. If you have experience with this thanks in advance for
sharing it with me.
Currently only the words playerMultipleList.swf appear on the page ...
no player.
<div class="sound_gal">
<h3>Introducing the music of Belinda and the Unicorns</h3>...
2014 Mar 05
0
PXELINUX and http?
On Tue, Mar 4, 2014 at 10:53 PM, Virtual Xmas <luvs.christmas at gmail.com> wrote:
>
> According to the Changelog for 5.01, pxelinux.0 can load boot files via
> http. But I can't get it to work.
5.10 introduced lpxelinux.0, a variant that uses UNDI+lwIP instead of PXE calls.
> I also tried copying lpxelinux.0 over pxelinux.0,...