similar to: Roaming Users

Displaying 20 results from an estimated 4000 matches similar to: "Roaming Users"

2003 Dec 31
3
Java?
We needed the client browser to be open all the time for dynamic data to load without the page refreshing. After looking at all of our options we decided on programming it ourselves using flash rather than java. We have a flash frontend thats tied to our backend mysql DB. We use it for loading web site traffic data, email opens, click-throughs, bouncebacks, stats, etc. It could also be used with
2003 Nov 18
2
ISDN Card Types for Europe
What types of ISDN BRI cards work well in Europe (Guadeloupe, Martinique and France) ? For example: AVM C2 or AVM C4 or eicon Diva server 4 BRI? Any others? Which driver is appropriate? Ray Burkholder ray@oneunified.net http://www.oneunified.net 704 576 5101 -- Scanned for viruses and dangerous content at http://www.oneunified.net and is believed to be clean. -------------- next part
2003 Nov 01
2
Making a Skinny phone talk to Asterisk
I have a few 7960 Skinny phones. I've edited the skinny.conf file, but I'm a little unsure as to how get the phone to figure out which ip address it should register with when it boots. How do I do that? I already have a tftp server for my SIP based phones. Do I need a tftp server for skinny configs at all? And if so, can it be the same tftp server as the SIP ones use (I'm not sure
2004 Jan 05
1
Identifying the Originating Cisco SIP Gateway
I have several Cisco SIP gateways sending calls to Asterisk. Because the gateways don't have user-agents, they don't authenticate with Asterisk. And because they don't authenticate, they use the default context in the sip.conf file. Is there a way to either: A) identify the inbound gateway with a variable, in channel info, or the manager interface? If there was a ${SIPDOMAIN} for
2003 Oct 17
2
AGI problem (crash) in RH9
If you're using perl on RedHat 9 make sure you put this command somewhere in your boot scheme: export LANG=C or at least execute it before running perl scripts. Redhat has EVERYTHING set to LANG=UTF-8 and it screws up all sorts of perl stuff, and several other pre-written programs in other languages too MATT--- -----Original Message----- From: Ray Burkholder
2003 Oct 29
3
FW: Voice/Data mixed routing over Digium E1/T1 Card
> The documentation mentions that the Digium channels can be split into some > voice channels and the remainder of the channels used for routing IP > traffic. > > Does any one have this in use in conjunction with Asterisk? Does it work > well? Would you recommend it for a production server? > > Obviously, if this works, this makes for a cost effective platform where
2003 Dec 20
0
Chan_h323 docs
Jeremy, In some posting in the mailing lists, you mentioned that docs for h323 had been submitted but hadn't made it into distribution. Could you post those docs in your download directory? I'm trying to understand the nuances of your driver, gnugk, and extensions. Ray Burkholder ray@oneunified.net http://www.oneunified.net 704 576 5101 -- Scanned for viruses and dangerous content
2003 Dec 20
0
Chan_h323 & gnugk
Ok, I've managed to get inbound and outbound calling to work with chan_h323 and gnugk. A few questions: 1) if I do a reload in *, chan_h323 loses its registration with gnugk, and will no longer pass calls to it. A second reload will crash *. Is this supposed to be? 2) For a configuration in h323.conf like: [office] type=h323 prefix=9 context=outbound I get a message saying:
2003 Oct 29
0
Re: Large installation [was: SS7 signalling/Softswitch]
>I spoke with someone today who is interested in an IP Centrex solution that >starts with about 3500 extensions in a multi-tenant application. And >growing from there. > >I'm wondering about scalability of Asterisk. I'm trying to put my head >around how to put the whole thing together, if it can be put together. > >The nice thing about it is that if I can show
2009 May 05
4
[LLVMdev] A problem creating operands for a new IR instruction to the mailing list
I have a question about inserting instructions into the LLVM IR. I can insert instructions, but my operands do not have the right type, so it fails an assertion at runtime. I am trying to insert an immediate load instructions, as a means of claiming a new register. Here is what I do: Builder.SetInsertPoint(LLVMBB, I); // The following line looks to me like it would have a chance of loading
2008 Sep 11
3
ZFS Crypto [Prelim] Codereview
Here''s my comments for the preliminary ZFS Crypto review. - Dan Webrev: http://cr.opensolaris.org/~darrenm/zfs-crypto-gate/webrev/ General comments: DEA-1 - SCCS keywords need to be removed DEA-2 - Copyright updated ------------------------------------------------------------------ usr/src/lib/libcryptoutil/common/keyfile.c pkcs11_read_data() This code in pkcs11_read_data() scares
2010 Mar 30
1
R package checking error.
Dear useRs, I am trying to build my package (nonpareff) which deals with some models of data envelopment analysis. The building worked well, but checking complains when it tests examples. Zipped nonparaeff.Rcheck is attached. Following is the log. --------------------------------------------- arecibo:tmp arecibo$ R CMD build nonparaeff/ * checking for file 'nonparaeff/DESCRIPTION' ...
2017 Sep 22
3
Subset
Super, Thanks On Fri, Sep 22, 2017 at 4:57 PM, Boris Steipe <boris.steipe at utoronto.ca> wrote: > > a <- c("<0.1", NA, 0.3, 5, "Nil") > > a > [1] "<0.1" NA "0.3" "5" "Nil" > > > b <- as.numeric(a) > Warning message: > NAs introduced by coercion > > b > [1] NA NA 0.3
2017 Sep 25
2
Subset
myDF <- data.frame(a = c("<0.1", NA, 0.3, 5, "Nil"), b = c("<0.1", 1, 0.3, 5, "Nil"), stringsAsFactors = FALSE) # you can subset the b-column in several ways myDF[ , 2] myDF[ , "b"] myDF$b # using the column, you make a logical vector ! is.na(as.numeric(myDF$b)) # This can be used to select the
2017 Sep 25
0
Subset
Hi, Lets say this was a dataframe where I had two columns a <- c("<0.1", NA, 0.3, 5, "Nil") b <- c("<0.1", 1, 0.3, 5, "Nil") And I just want to remove the rows from the dataframe where there were NAs in the b column, what is the syntax for doing that? Thanks in advance On Fri, Sep 22, 2017 at 5:04 PM, Shane Carey <careyshan at
2008 May 28
2
Linear Programming.
An embedded and charset-unspecified text was scrubbed... Name: n?o dispon?vel URL: <https://stat.ethz.ch/pipermail/r-help/attachments/20080528/96325940/attachment.pl>
2017 Sep 25
1
Subset
Always via logical expressions. In this case you can use the logical expression myDF$b != "0" to give you a vector of TRUE/FALSE B. > On Sep 25, 2017, at 8:00 AM, Shane Carey <careyshan at gmail.com> wrote: > > This is super, really helpfull. Sorry, one final question, lets say I wanted to remove 0's rather than NAs , what would it be? > > Thanks >
2009 May 05
0
[LLVMdev] A problem creating operands for a new IR instruction to the mailing list
If you want an immediate constant value, ConstantInt::get(APInt(32, 5, false)) will perhaps help you ? Olivier. 2009/5/5 seventh moon <suigintou_ at hotmail.com> > I have a question about inserting instructions into the LLVM IR. I can > insert instructions, but my operands do not have the right type, so it fails > an assertion at runtime. > > I am trying to insert an
2011 Nov 24
1
AlgDesign - $D $A $Ge $Dea
Hi, I am wondering how I should interpreate the output of optFederov() in AlgDesign. Specially I want to know what is $D, $A, $Ge and $Dea, which one I can use as an efficiency to say how good the optimal design is. I only know when a orthogonal design comes, $D = 1. I red the pdf document -- vignette("AlgDesign") [Just type: vignette("AlgDesign") in R, you will get
2003 May 09
3
Windows 2000 Profiles Through Freeswan VPN
Hello, I have setup a samba server at my office as a PDC it stores the profiles on the server fine. I can access the profiles from any computer in the office just fine. My problem is that I work from home 4 days a week and need to access my work profile. I currently VPN into the office network via freeswan. I can log into the the domain from the vpn'd connection and I can access the samba