search for: khalil

Displaying 20 results from an estimated 32 matches for "khalil".

Did you mean: halil
2018 Jun 09
3
getting real sip status after dial
Hi, Is there any way I can get exact sip status from pjsip after a dial ? or all we can get is asterisk hangup causes ? Thanks in advance. KKh
2018 Jun 09
2
getting real sip status after dial
...: core show function HANGUPCAUSE Some thing like this IIRC: Set(my_cause=${HANGUPCAUSE(${CHANNEL(name)},tech)}) Remember the incoming leg of the call and the outgoing leg of the call are different channels. Make sure you are giving HANGUPCAUSE the correct channel. On 06/09/2018 02:01 PM, Khalil Khamlichi wrote: > It seems very weird to me that we cannot access sip code of a call > from pjsip which information is actually returned from the provider, > so it is available to asterisk, why does asterisk hide it ? > On Sat, Jun 9, 2018 at 5:08 PM Khalil Khamlichi > <khamlichi...
2014 Oct 13
3
samaba 4 vs active directory
...uction environment to replace active directory But first I appreciate if you could help me to get comparison between active directory feature and samba feature that working correctly I mean if I go to samba which feature may I lose or still have bugs Thanks in advance Kind regards, Ahmed Hassanean Khalil Customer Service Engineer Summit Technology Solutions End of Nasr City Road.- Katameya Tunnel - Investment Area Postal Code: 12411 - Cairo - EGYPT Dir.: +202-2759-7000 Office: +202-2759-7000 Mobile: +012-8311-3388 Fax: 202-2759-7575 ahmed.khalil at summit-mea.com www.summit-mea.com Disclaimer Th...
2017 Jun 15
0
is.null(mylist[1]) and is.null(mylist$a) returns different values
Thank you all , very informative, never thought of doing a str( mylist[1] ) -----Original Message----- From: "Jeff Newmiller" [jdnewmil at dcn.davis.ca.us] Date: 06/15/2017 11:56 AM To: r-help at r-project.org, "Huzefa Khalil" <huzefa.khalil at umich.edu>, "ce" <zadig_1 at excite.com> Subject: Re: [R] is.null(mylist[1]) and is.null(mylist$a) returns different values I find that the str function is more helpful for understanding the difference between a null list and a list containing a null l...
2017 Dec 19
2
asterisk queues in off-hook mode ?
Hi, I am looking to configure asterisk queues in off-hook mode, that is, the agent calls into the system and stays connected to this call, when new customer calls, he is redirected to the queue which should distribute to connected agents. is this possible on teh actual app_queue or we would need to implement it using ARI. Thanks in advance.
2017 Jun 15
1
is.null(mylist[1]) and is.null(mylist$a) returns different values
...tanding the difference between a null list and a list containing a null list than the implicit print function call that the interpreter invokes when you enter an expression at the console. str( mylist[1] ) -- Sent from my phone. Please excuse my brevity. On June 15, 2017 8:39:47 AM PDT, Huzefa Khalil <huzefa.khalil at umich.edu> wrote: >Hi, > >Try > >> is.null(mylist[[1]]) >[1] TRUE > >Notice the double square brackets. > >From: ?`[` >"The most important distinction between [, [[ and $ is that the [ can >select more than one element whereas the...
2018 May 08
3
Bilateral matrix
...convert the 0s to NA's if you like) Cheers, Bert Bert Gunter "The trouble with having an open mind is that people keep coming along and sticking things into it." -- Opus (aka Berkeley Breathed in his "Bloom County" comic strip ) On Tue, May 8, 2018 at 9:21 AM, Huzefa Khalil <huzefa.khalil at umich.edu> wrote: > Dear Miluji, > > If I understand correctly, this should get you what you need. > > temp1 <- > structure(list(id = 101:115, current_location = structure(c(2L, > 8L, 8L, 3L, 6L, 5L, 1L, 2L, 7L, 4L, 2L, 8L, 8L, 3L, 6L), .Label = >...
2017 Jun 15
0
is.null(mylist[1]) and is.null(mylist$a) returns different values
..._______ > R-help at r-project.org mailing list -- To UNSUBSCRIBE and more, see > https://stat.ethz.ch/mailman/listinfo/r-help > PLEASE do read the posting guide http://www.R-project.org/posting-guide.html > and provide commented, minimal, self-contained, reproducible code. -- Huzefa Khalil PhD Candidate, Department of Political Science, University of Michigan
2018 May 16
0
Bilateral matrix
...> Bert > > > > Bert Gunter > > "The trouble with having an open mind is that people keep coming along and > sticking things into it." > -- Opus (aka Berkeley Breathed in his "Bloom County" comic strip ) > > On Tue, May 8, 2018 at 9:21 AM, Huzefa Khalil <huzefa.khalil at umich.edu> > wrote: > >> Dear Miluji, >> >> If I understand correctly, this should get you what you need. >> >> temp1 <- >> structure(list(id = 101:115, current_location = structure(c(2L, >> 8L, 8L, 3L, 6L, 5L, 1L, 2L, 7L, 4...
2017 Jun 15
4
is.null(mylist[1]) and is.null(mylist$a) returns different values
Hi I have a list : mylist <- list( a = NULL, b = 1, c = 2 ) > mylist[1] $a NULL > is.null(mylist[1]) [1] FALSE > is.null(mylist$a) [1] TRUE why? I need to use mylist[1]
2018 May 04
0
Converting a list to a data frame
...es(x), function(z) > > ata.frame(type=z, x[[z]]))) > > #Error in ata.frame(type = z, dat[[z]]) : still cannot find function > "ata.frame"? > > *William H. Poling, Ph.D.* > > *From:* R-help [mailto:r-help-bounces at r-project.org] *On Behalf Of > *Huzefa Khalil > *Sent:* Wednesday, May 02, 2018 1:24 PM > *To:* Kevin E. Thorpe <kevin.thorpe at utoronto.ca> > *Cc:* R Help Mailing List <r-help at r-project.org> > *Subject:* Re: [R] Converting a list to a data frame > > Hi Kevin, > > There is probably a better way, but it...
2018 May 04
2
Converting a list to a data frame
...=data.frame(x=5:6,y=7:8)) x2 <- do.call(rbind, lapply(names(x), function(z) ata.frame(type=z, x[[z]]))) #Error in ata.frame(type = z, dat[[z]]) : still cannot find function "ata.frame"? William H. Poling, Ph.D. From: R-help [mailto:r-help-bounces at r-project.org] On Behalf Of Huzefa Khalil Sent: Wednesday, May 02, 2018 1:24 PM To: Kevin E. Thorpe <kevin.thorpe at utoronto.ca> Cc: R Help Mailing List <r-help at r-project.org> Subject: Re: [R] Converting a list to a data frame Hi Kevin, There is probably a better way, but it can be done in two steps like this temp <-...
2018 May 08
2
multi step auth?
I *am* doing that, as I assumed it would be required just for the 911 mapping we have provided, but that doesn't change the SIP header. Cheers, j On 05/08/2018 02:41 PM, Khalil Khamlichi wrote: > try setting the callerid with > > same => n,Set(CALLERID(all)=17864089672 <17864089672>) > > ofcourse for each customer you will need to provide his own did. > > > On Tue, May 8, 2018, 8:37 PM Jeff LaCoursiere <jeff at stratustalk.com > &lt...
2018 May 16
2
Bilateral matrix
...t;> Bert Gunter >> >> "The trouble with having an open mind is that people keep coming along >> and sticking things into it." >> -- Opus (aka Berkeley Breathed in his "Bloom County" comic strip ) >> >> On Tue, May 8, 2018 at 9:21 AM, Huzefa Khalil <huzefa.khalil at umich.edu> >> wrote: >> >>> Dear Miluji, >>> >>> If I understand correctly, this should get you what you need. >>> >>> temp1 <- >>> structure(list(id = 101:115, current_location = structure(c(2L, >>&g...
2018 Aug 19
2
change dialing process on live call
Hi, Is there a way to add another extension to a live dial, for example Dial(PJSIP/1000,,) and after 20 secondes change it to Dial(PJSIP/1000&PJSIP/1001,,) I am open to suggestions such as using manager or stasis. Thanks in advance. Best regards, Kkh -------------- next part -------------- An HTML attachment was scrubbed... URL:
2016 Apr 12
0
ggplot2
Hi James, If you want to specify the y-values, you need to use stat="identity" as below: ggplot(probability, aes(x=Fertilizer, y=prob)) + geom_bar(stat="identity", aes(fill=Treatment)) best, huzefa On Tue, Apr 12, 2016 at 1:02 PM, James Henson <jfhenson1 at gmail.com> wrote: > Dear R Community, > > Below is a problem with a simple ggplot2 graph. The code
2016 Apr 12
2
ggplot2
Dear R Community, Below is a problem with a simple ggplot2 graph. The code returns the error message below. Error: stat_count() must not be used with a y aesthetic. My code is below and the data is attached as a ?text? file. # Graph of the probabilities library(digest) library(DT) datatable(probability) str(probability) probability$Fertilizer <- as.factor(probability$Fertilizer)
2017 Aug 14
0
Help creating the IBM Randu function
..._______ > R-help at r-project.org mailing list -- To UNSUBSCRIBE and more, see > https://stat.ethz.ch/mailman/listinfo/r-help > PLEASE do read the posting guide http://www.R-project.org/posting-guide.html > and provide commented, minimal, self-contained, reproducible code. -- Huzefa Khalil PhD Candidate, Department of Political Science, University of Michigan
2018 Feb 06
2
Call picked up from queue and transferred gets disconnected - about 0.01% of calls
Hi Guys I have an issue where a call is picked up from a queue. The caller asks the person who answered to attended transfer to extension 3082 (for argument's sake.) 3082 picks up the attended transfer and speaks with the outside caller picked up initially from the queue. A few seconds after 3082 has started speaking to the outside caller - 3082's call goes dead in their
2018 May 17
0
Bilateral matrix
...gt;> >>> "The trouble with having an open mind is that people keep coming along >>> and sticking things into it." >>> -- Opus (aka Berkeley Breathed in his "Bloom County" comic strip ) >>> >>> On Tue, May 8, 2018 at 9:21 AM, Huzefa Khalil <huzefa.khalil at umich.edu> >>> wrote: >>> >>>> Dear Miluji, >>>> >>>> If I understand correctly, this should get you what you need. >>>> >>>> temp1 <- >>>> structure(list(id = 101:115, current_locat...