search for: jci

Displaying 17 results from an estimated 17 matches for "jci".

Did you mean: ci
1999 Dec 10
2
samba v DAVE
...ossibly file copying) is taking up all available resources on the server drive, so there is no space to copy the file. This problem doesn't occur connecting to NT. Any suggestions? Have fun, Arlen Chief Managing Director In Charge, Department of Redundancy Department DNRC 224 Arlen.P.Walker@JCI.Com ---------------------------------------------- In God we trust; all others must provide data. ---------------------------------------------- Opinions expressed are mine and mine alone. If JCI had an opinion on this, they'd hire someone else to deliver it.
1999 Nov 11
0
Dropping connection?
...er is identified as one of the NT boxes on the network, and I can log into that NT box from the Samba machine running smbclient. Any ideas what I'm running into and how I avoid it? Have fun, Arlen Chief Managing Director In Charge, Department of Redundancy Department DNRC 224 Arlen.P.Walker@JCI.Com ---------------------------------------------- In God we trust; all others must provide data. ---------------------------------------------- Opinions expressed are mine and mine alone. If JCI had an opinion on this, they'd hire someone else to deliver it.
1999 Nov 19
0
smbmount vs linux
...tweent he two files, but I'm loathe to mess with either of them if there's a way to get either smbsh working under glibc 2.1 or smbfs working without playing with the includes.) Have fun, Arlen Chief Managing Director In Charge, Department of Redundancy Department DNRC 224 Arlen.P.Walker@JCI.Com ---------------------------------------------- In God we trust; all others must provide data. ---------------------------------------------- Opinions expressed are mine and mine alone. If JCI had an opinion on this, they'd hire someone else to deliver it.
2005 Oct 16
1
measurement error model - "simple" linear regression
...wonder whether it has been taken any further. I have an important medical problem where X is computed from a three independent and complicated measurements (exchangeable sodium and potassium and total body water - i.e. X = (Nae+Ke)/TBW ) and Y is serum sodium concentration (all data in Edelman, JCI 1958). I have the individual data in the paper (but have not yet had time to enter it) and Edelman et al in fact reported measurement errors for most individual items. Edelman and coworkers made a linear regression of Y on X and now I would like to ascertain the importance of the fact that X wa...
1999 Nov 21
3
SAMBA digest 2314
...> For information on unsubscribing see http://lists.samba.org/ > > Topics covered in this issue include: > > 1) Re: 2.0.6: HUP/charset/profiles/smbmount/logging > by Otto Giesenfeld <otto.giesenfeld@vindrosen.se> > 2) smbmount vs linux > by Arlen.P.Walker@jci.com > 3) RE: Synchronize UNIX password from NT > by "John E. Malmberg" <wb8tyw@qsl.net> > 4) HELP > by Paul Crittenden <crittend@storm.simpson.edu> > 5) How can I add a NT PDC to WINS tables? > by Magnus Svavarsson <magnus@miba.auc.dk> &g...
2006 Dec 22
1
odfWeave problem
Hi, I'm trying to customize some formating for a table using odfWeave. I'm having some trouble getting the formatting to work. I've defined the following format defns: origStyleDefs <- getStyleDefs() StyleDefs=origStyleDefs StyleDefs$ArialLeftBold$parentStyleName='' StyleDefs$ArialLeftBold$type='Paragraph' StyleDefs$ArialLeftBold$textAlign='left'
2006 Dec 23
1
bug in odfWeave
Hi, I think there is a minor bug in odfWeave. In the function odfStyleGen, the following line has an extra "=": if(length(grep("italic", thisStyle$fontType))) fontText <- c(fontText, tagattr("fo:font-style=", "italic")) This is creating an error if some text needs to be formatted as italic, since the corresponding entry in
2008 Mar 28
1
Sweave - print \n ?
Hi, this is probably quite stupid but I have no clue what's wrong. Let's say I write the function hline <- function() { cat("\\hline \n") } and call hline() from within a Sweave chunk. Why is there no carriage return after the \hline in the resulting tex file? if I call hline() hline() in the chunk, then I get \hline \hline in the tex code without a linebreak in
2011 Jan 26
1
Splash Screen
Is there a way to show only a splash screen during the boot up, like not even the BIOS text? I would like to make a kiosk with no indication of what is running. Thanks, Bryan
2011 Aug 01
1
fwrite?
Is there a known problem with fopen and/or fwrite in Syslinux? I'm trying to open a file to write data to but fopen( file_name, "w+" ) fails everytime. fopen( file_name, "r" ) works just fine.
2011 Sep 01
0
Syslinux-4.03.exe?
...sage----- From: syslinux-bounces at zytor.com [mailto:syslinux-bounces at zytor.com] On Behalf Of Paulo Cezar Sent: Thursday, September 01, 2011 14:51 To: For discussion of Syslinux and tftp-hpa Subject: Re: [syslinux] Syslinux-4.03.exe? On Thu, Sep 1, 2011 at 3:30 PM, <Bryan.James.Krone-EXT at jci.com> wrote: > I'm using SYSLINUX 4.03 from Linux and setting data in the ADV. I then run > "C:\Syslinux-4.03.exe --reset-adv C:\" from Windows and I get this: > > "At least one specified option not yet implemented for this installer." > > Is the --reset...
2003 Mar 14
1
ov_read( ) return value
When I call ov_read ( ) I cannot get more then 1024 bytes decoded even when the buffer size is 4K. The function only decodes 1024 bytes max even when I tell it to decode 4096 bytes. Does anyone has an idea what is going on. <p><p>--- >8 ---- List archives: http://www.xiph.org/archives/ Ogg project homepage: http://www.xiph.org/ogg/ To unsubscribe from this list, send a message to
2008 May 01
2
howto import .xls and .ods
Hi, i want to import data from .ods and .xls files in R on a linux system. Seems it was a faq in the past, but i found only solutions for Windows. Is there a handy solution for linux? The best would be something like mytab <-read.ods(...) Any hints? Thanks a lot for reading so far, -- Jonas Stein <news at jonasstein.de>
2004 Apr 06
1
OS 10.3.3 client File saving problems
Hello, I administrate a modest network of 12 Mac (os x 10.3.3) and PC clients (win xp) connecting to a Samba server running Redhat enterprise Linux 3 and Samba 3.0.2 We just recently switched to this configuration from a Win2000 file server running SMB and AFP that did not have any of the issues I list below. My OS X users are running into occasional yet persistent problems saving files to the
2008 Jun 06
6
Subsetting to unique values
I want to take the first row of each unique ID value from a data frame. For instance > ddTable <- data.frame(Id=c(1,1,2,2),name=c("Paul","Joe","Bob","Larry")) I want a dataset that is Id Name 1 Paul 2 Bob > unique(ddTable) Will give me all 4 rows, and > unique(ddTable$Id) Will give me c(1,2), but not accompanied by the name column.
2008 Aug 09
2
xy plot in version 2.7.1 for Mac (PR#12520)
...wdxeQ8t36s1sM7+sN1M/I16Jw+fnwmTRJ7xCbwlnmUH8Hv1RNLFsNsKfEVqQBT8T a3UhcgtP0AvCWnY3HeBBnFqfGncgj29iP8a50MrK2D8EhQR+E7KoXHiXvkG38t/TCPbxffQdtlxc QQ/RVLaJLtKPsCsm6m7TF+kz2a94txjl6WyQuPgsZlfJCpigy6B72BJhj/4y/wOtp1Oiic4IP8Ho T/EXhNniFd081oUdcDfdS2uVrbRRFxLfYCtIYAupUDyH022TUCa6QbfgVFmMM20Iu/sQzoF6YTY0 dmTOjciLBTgh9qA8hnNCRAZ1Y49/BafYazSob+UxWqFLZTh1iMRXRufRIuVHtFtZQbcpj1AJzoPt yia0uI/+TDtpH9s2+jXqoTzsnDPsRl0TP6VrUkp4lP+Bz+e7rl9fRLuQ2ekvKC9QE9XqDlNU/B3N pzplh/JbZPcEnLC7aRl9Gc+u1fQ+epglDNPU0Zt4n9Ik9GC+Z2mu8oziYibqUlbRHDpCPzToqN3g 8zcuaK3319V+qaa6qrKifPq0qWVTJpdOKin2FU2cMN5bWODJd0uuvHFOR26OPTsrMyPdlma1pKaY...
2008 Mar 26
1
OdfWeave and contingency tables
Hi, I would like to use odfWeave to output some contingency tables (the output of "table") into OOo. I know I can do this in LaTex (using "latex" in the Hmisc package), but I was wondering if it is possible in OdfWeave. My documentation to odfTable says inputs can only be vector, matrix or data.frame, and I'm having a hard time converting my table into one of these