Displaying 20 results from an estimated 1000 matches similar to: "samaba 4 vs active directory"
2018 Jun 09
2
getting real sip status after dial
I think HANGUPCAUSE is channel agnostic.
See: 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
2017 Jun 15
1
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 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>
2017 Jun 15
0
is.null(mylist[1]) and is.null(mylist$a) returns different values
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 other two select a single
element."
On Thu, Jun 15, 2017 at 11:33 AM, ce <zadig_1 at excite.com> wrote:
> Hi
>
> I have a list :
>
> mylist <- list( a = NULL, b
2018 May 08
3
Bilateral matrix
or in base R : ?xtabs ??
as in:
xtabs(~previous_location + current_location,data=x)
(You can 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
2018 May 16
0
Bilateral matrix
Dear Bert and Huzefa,
Apologies for the late reply, my account got hacked and I have just managed
to recover it.
Thank you very much for your replies and the solutions. Both work well.
I was wondering if there was any way to ensure (force) that all possible
combinations show up in the output. The full dataset has 25 cities but of
course people have not moved from Boston to all the other 24
2018 May 04
0
Converting a list to a data frame
It looks like you made a copy/paste error below. Your ata.frame should
be data.frame.
Kevin
On 05/04/2018 08:18 AM, Bill Poling wrote:
> Good morning.
>
> Novice usR. Here.
>
> I am following this string, among many, learning as I go.
>
> Quick question please?
>
> I thought that perhaps ata.frame was part of the zoo pkg, b/c when I
> searched it came up in
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.
>
>
>
2018 May 04
2
Converting a list to a data frame
Good morning.
Novice usR. Here.
I am following this string, among many, learning as I go.
Quick question please?
I thought that perhaps ata.frame was part of the zoo pkg, b/c when I searched it came up in help?
However, evidently not or I am not using it properly.
Please advise, thank you.
x <- list(A=data.frame(x=1:2, y=3:4),B=data.frame(x=5:6,y=7:8))
x2 <- do.call(rbind,
2018 May 16
2
Bilateral matrix
xtabs does this automatically if your cross classifying variables are
factors with levels all the cities (sorted, if you like):
> x <- sample(letters[1:5],8, rep=TRUE)
> y <- sample(letters[1:5],8,rep=TRUE)
> xtabs(~ x + y)
y
x c d e
a 1 0 0
b 0 0 1
c 1 0 0
d 1 1 1
e 1 1 0
> lvls <- sort(union(x,y))
> x <- factor(x, levels = lvls)
> y <-
2017 Aug 14
0
Help creating the IBM Randu function
Hi Martin,
The corrected function would be
RANDU <- function(num) { return ((65539*num)%%(2^31)) }
You forgot the brackets for the return function.
Hence, what was returned was always (65539 * num)
On Mon, Aug 14, 2017 at 12:49 PM, Martin M?ller Skarbiniks Pedersen
<traxplayer at gmail.com> wrote:
> Dear all,
>
> I am trying to learn functions in R and 3D plotting so I
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 May 17
0
Bilateral matrix
Dear William and Ben,
Thank you for your replies and elegant solutions. I am having trouble with
the fact that two of the previous locations do not appear in current
locations (that is no one moved to OKC and Dallas from other cities), so
these two cities are not being included in the output.
I have provided a better sample of the data and the ideal output (wide form
- a 10x10 bilateral matrix)
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
2008 Jul 08
1
Latest samaba updates
When I let yum install the latest samba updates, it ate my smb users
file and smb.conf. Once I restored those, it gave me several selinux
avc denials, one of which I can't clear up. See
http://bugs.centos.org/view.php?id=2965 for details.
Anyone else having problems like this?
Dave
2002 Nov 01
0
Redhat 8.0 and Samaba 2.2.5
First, let me apologize if this is a simple question, I am trying to get away from Microsoft and learn Linux.
In the past, on my Linux test server I have installed samba 2.2.3a and a seperate install of winbind for that same version.
I followed the directions I've seen posted and it all works well.
I tried to upgrade to 2.2.5 but winbind wouldnt work. So I went back down to 2.2.3a This was
2002 Feb 20
2
samaba upgrade
I'm trying to upgrade from samba-2.2.1a-4 to samba-2.2.-3a but it keeps
failing. I've tried numerous ways and I still get the same error. I
must be doing something worry.
Thanks
# rpm -Uvh samba-2.2.3a-20020206.i386.rpm
error: failed dependencies:
samba = 2.2.1a is needed by samba-swat-2.2.1a-4
# rpm -qa | grep samba
samba-client-2.2.1a-4
samba-2.2.1a-4
samba-swat-2.2.1a-4
2007 Jan 19
1
Samaba PDC - User Permissions
Hello list,
I have setup a Samba 3 server as PDC and need to give to specific
account access to read and write to particular directories under C:\ drive.
Can anyone please send me any docs,urls where I can find relevant
information?
Thanks a lot
2004 Aug 31
0
Combining NFS and Samaba - file locking
I have a network where we have a main site with a PDC, and two remote
sites with BDCs. The backend is LDAP which is slaved to the remote
sites, Samba is 2.2.8a, the main server is part of the Suse Linux
OpeneXchange Server, the other two servers are Suse Standard Server 8.
What I wanted to do was to have users at the various sites map one
drive from their 'local' server. Behind the
2005 Jan 25
0
Authentication delays in Samaba 3.0.10
Hello,
We have recently upgraded to samba 3.0.10 (RedHat 7.3) and are now
having authentication delays with some of our shares. We are using
unencrypted passwords so we can use the pam system-auth...we have the
plaintext registry patch on all windows machines that are connecting.
The problem is that if you manually connect or browse to a share from a
windows box (2k or XP), the client sends your
2000 Jul 02
2
Using a Zip drive with Samaba
Has anyone been able to get a zip drive working with samba? I want to set
up a systsem where the drive gets mounted, in a letter like F: and students
can pop in and out zip disks without having to deal with any unix
interfaces.
Any idea?