Displaying 20 results from an estimated 8285 matches for "lights".
Did you mean:
rights
2012 Jul 15
4
Imposing more than one condition to if
Hi,
I have a dataset which contains several time records for a number of days, plus a variable (light) that allows to determine night time (lihgt= 0) and daytime (light> 0). I need to obtain get dusk time and dawn time for each day and place them in two columns.
This is the starting point (d):
day time light
1 1 20
1 12 10
1 11 6
1 9 0
1 6 0
2011 May 12
8
Light indicator managed by Asterisk
Hello,
is there some way to make Asterisk light up a certain light on an IP-phone ?
Like MWI, the message waiting indicator can light up if there is voicemail.
Could this light, or even other lights (like BLF-buttons) be used to
give a visual notification to the user ?
For example : if a certain value is set in the Mysql-DB and Asterisk
reads out this value, can Asterisk react upon it inside the dialplan to
make a light lit up ?
2nd example : if a certain extension is called, can we perfo...
2009 Feb 03
3
lapply and aggregate function
Dear list,
I have two things I am struggling...
# First
set.seed(123)
myD <- data.frame( Light = sample(LETTERS[1:2], 10, replace=T),
Feed = sample(letters[1:5], 20, replace=T),
value=rnorm(20) )
# Mean for Light
myD$meanLight <- unlist( lapply( myD$Light,
function(x) mean( myD$value[myD$Light == x]) ) )
# Mean for Feed
2010 Sep 09
1
rgl and lighting
Dear R community (and Duncan more specifically),
I can't work out how to make additional light sources work in rgl.
Here is the example.
First I create a cube and visualize it:
> cubo <- cube3d(col="black")
> shade3d(cubo)
Next I position the viewpoint at theta=0 and phi=30:
> view3d(theta=0,phi=30)
Next, I want to create a 2nd light source which diffuses red light
2011 Jan 22
3
how to control Hard Drive light from Linux?
Hi all,
Does anyone know how to control a hard drive light from Linux? I'm
building a 24bay Linux File server which will run software RAID and I
need an easy way for the engineers to see which HDD has gone bad.
Most of our NAS devices has 2 lights on the hard drive cages and they
automatically signal a bad one (reg light, light constant on , etc)
but I can't figure out how todo this from Linux.
--
Kind Regards
Rudi Ahlers
SoftDux
Website: http://www.SoftDux.com
Technical Blog: http://Blog.SoftDux.com
Office: 087 805 9573
Cell: 082 554...
2011 May 06
3
question on ways to activate voicemail light on polycom
Is there a way in asterisk to Activate/Clear the blinking light on
polycom phones
indicating VM. Either from an AGI or some way in the dialplan?
I want to be able to control this light for from my application.
I have an AGI to do something similiar to VM and want to light /clear
the light myself.
Thanks,
Jerry
2004 May 24
4
Grandstream message light button
I have finally set correctly the Message Wait Indicator feature on my
Grandstream (I was using the wrong context - I thought the documentation
referred to the {mailbox=210@Context} extension context not the
voicemail context).
Voicemail.conf
[internalvoicemail]
20 => 1111,dean,dean@cogs.net,,attach=yes
30 => 2222,jodie,jodie@cogs.net,,attach=yes
Sip.conf
[20]
2006 Mar 02
3
snom 320 MWI light
Hello.
I am using a snom 320 running 5.3.6 with Asterisk 1.2.4. In the sip.conf
entry, I have mailbox=1234@default and vmexten=*98.
The light on the snom 320 turns on when I have voicemail and the retrieve
button dials the correct extensions.
However, the light turns off immediately after making the call to voicemail,
even if I do not check the voicemail.
Any idea on how to get this to behave
2002 May 28
2
logit regression, test among groups
Dear all:
My logistic regression model includes one qualitative and one quantitative
predictor variable,
aes <- glm(p.a ~ spp * log(light), family=binomial(link=logit)),
where spp is abundance of 3 species and light is subcanopy light
availability varying from 0 1.
I want to test differences among levels of the quantitative variable at a
value of x other than the current log(light)=0.
2008 Aug 03
2
D-Light tool
Hi,
My question is about D-Light tool in Sun Studio.
Is D-Light tool a alpha project that I can wait for, or else is only a plugin for Sun''s internal testing with DTrace and Sun Studio? I really love this tool and I am very excited for the potential in this tool -ala MacOSX ''Instruments''- in OpenSolaris development / testing.
IMHO this project can serve us in NetBeans
2013 Feb 11
2
Inserting rows of interpolated data
Dear help list - I have light data with 5-min time-stamps. I would like to insert four 1-min time-stamps between each row and interpolate the light data on each new row. To do this I have come up with the following code:
lightdata <- read.table("Test_light_data.csv", header = TRUE, sep = ",") # read data file into object "lightdata"
library(chron)
mins <-
2013 Nov 10
1
light-locker 1.1.0 released
light-locker 1.1.0 is now available for download from
https://github.com/the-cavalry/light-locker/releases/download/v1.1.0/light-locker-1.1.0.tar.bz2
SHA1: df4c542449f457710628d19f14148afd43034a94
MD5: 0e643658fdde4dc0aefdc3c9c10898ca
What is light locker?
=====================
light-locker is a simple locker (forked from gnome-screensaver) that aims
to have simple, sane, secure defaults
2004 Aug 07
3
Message waiting
The message waiting options seem to be geared for a normal office
environment where there is a one-to-one relationship between a
user and a phone/mailbox.
I want to have a mailbox that is shared amoung a number of people
and want the message waiting light to turn on on multiple phones.
I can direct the voice mail to the common mail box.
I can direct the individual users to the common mail
2008 Nov 21
2
rgl lighting question
Hi, I'm using rgl to generate a 3D surface plot and I'm struggling to
get the lighting correct. Currently the surface gets plotted, but is
very 'shiny'. On rotating the view, I get to see parts of the surface
- but overall I don't see much detail because of the spotlight like
lighting.
I've played around with the specular, ambient and diffuse but I can't
2009 Oct 14
1
change order of bar plot categories
Is this what you want?
temp<-c(rep("Low",2),rep("Medium",2),rep("High",2))
light<-rep(c("Dark","light"),3)
avg<-dat.avg2[,3] #
se<-dat.avg2[,4]
dat.avg.temp<-data.frame(cbind(avg,se))
dat.avg.temp<-data.frame(cbind(temp,light,dat.avg.temp))
dat.plot<-qplot(light,avg, fill=factor(temp),data=dat.avg.temp,
geom="bar",
2006 May 24
1
Lighting up a light on an aastra phone
Hi,
Does anyone know of some way to make a light on one of the keys of an
aastra phone light up (or go off) by sending it a command from
asterisk?
2013 Jan 27
1
positioning a light source within a rgl-plot
Hello useRs,
I would like to draw a 3D-surface using rgl with a point-like
light-source within the scene, that is with finite distance of the
light-source to the surface to be lit.
>From the help to the 'light3d' command I read:
"They [the light-sources] are positioned either in world space or
relative to the camera using polar coordinates."
which *could* be understood as
2005 Jan 06
2
Message light on 7960 or in this case no message light
I have just finished setting up a new asterisk system which is basically
the same as our first system. We are using 7960 phones and I used the
phone config files the first installation with appropriate changes.
The problem is that on the new system I get no message lights, I can't
figure this out. One thing I do notice is that when I monitor the sip
debug on the second system the sip "chatter" is almost none existent and
the sip "chatter" on the first system that works is quite regular.
There is a version difference as follows:
The syst...
2004 Aug 11
1
Analog Phones with Status Light Indicators
I am currently a new asterisk user and new to telephony in general. I
have been looking around to implement a solution with asterisk that has
many of the nice features of a proprietary PBX for a small office. The
features that I am looking for that I haven't been able to find any
information on are:
- status light indicators for which incoming line in ringing
- status light indicators for
2006 Jan 07
1
Possible bug with GotoIfTime
Running a fairly recent subversion release of Asterisk, I'm running into
a problem using labels (as opposed to priorities) with this application.
Here is the dialplan segment:
; isolate gotoiftime bug with labels
;exten => 806,1,GotoIfTime(8:00-20:00,*,*,*?2:4)
exten => 806,1,GotoIfTime(8:00-20:00,*,*,*?light:dark)
exten => 806,n(light),noop(light)
exten => 806,n,hangup
exten