search for: nzs

Displaying 5 results from an estimated 5 matches for "nzs".

Did you mean: ns
2016 Feb 16
2
Voicemail using object storage?
...en recorded. But I was wondering if any work has been done on the VoiceMail app to actually store and retrieve messages to/from an object store? Cheers, Andrew -- Andrew Ruthven, Wellington, New Zealand MIITP, ITCP At work: andrew.ruthven at catalyst.net.nz At home: andrew at etc.gen.nz Cloud : NZs only real cloud - https://catalyst.net.nz/cloud GPG fpr: C603 FC4E 600F 1CEC D1C8 D97C 4B53 D931 E4D3 E863 LCA2016: LCA By the Bay, Geelong, AU - lca2016.linux.org
2016 Jul 21
2
VoiceMail - Allow * for only some users
...le to do what I'm trying to achieve, or is there a better approach? This is Asterisk 11.13. Cheers, Andrew -- Andrew Ruthven, Wellington, New Zealand MIITP, CITPNZ At work: andrew.ruthven at catalyst.net.nz At home: andrew at etc.gen.nz Card : http://qr.catalyst.net.nz/907675e1 Cloud : NZs only real cloud - https://catalyst.net.nz/cloud GPG fpr: C603 FC4E 600F 1CEC D1C8 D97C 4B53 D931 E4D3 E863 LCA2016: LCA By the Bay, Geelong, AU - lca2016.linux.org
1998 Mar 27
1
R: did you know ``comment(.) and comment(.) <- ...''
I'm doing some systematic investigations about which functions are <primitive> in R (and which of these should be changed to .Internal(...))... I just discovered : > x <- 1:10 > comment(x) NULL > comment(x) <- "x is just a vector" > x [1] 1 2 3 4 5 6 7 8 9 10 > attributes(x) $comment [1] "x is just a vector" > comment(x) [1]
1997 Aug 21
2
R-alpha: thoughts on batch and fortran
Batch: For me, batch in its present state is broken and useless. My primary need for batch is to produce a final output file of a session after I have worked out a sequence of procedures. I save my instructions in a file that I can source, then run it in batch to have a copy of input and output together. (If there was a log file (or dribble), this problem would be solved.) At present, there are
1997 Aug 04
3
R-alpha: .Options$digits do not (always) work.
I am sorry that this IS an old topic. Yet another task I think the bug is somewhere in hidden in src/main/options.c .. ##-- The following does not work as it should in R (0.50-a1, but I think also earlier) tst <- function(x=pi, dig =3) {.Options$digits <- as.integer(dig); print(x);x} tst() tst(dig = 12) ##-- This should do the same; it works as expected in R & S : tst2