similar to: can't run programs from directories > 8 chars

Displaying 20 results from an estimated 9000 matches similar to: "can't run programs from directories > 8 chars"

2002 Nov 28
8
Could not insatall Internet Explorer on linux through wine.
Skipped content of type multipart/alternative-------------- next part -------------- A non-text attachment was scrubbed... Name: koutput Type: application/x-java-vm Size: 2881 bytes Desc: not available Url : http://www.winehq.org/pipermail/wine-users/attachments/20021128/a81741b4/koutput.class
2018 Mar 22
1
how to add a child to a child in XML
Just to clarify and hopefully catch the attention of the maintainer: The newXMLNode function is not mentioned in: https://cran.r-project.org/web/packages/XML/XML.pdf which supposedly describes all functions in the package. Stephen From: Ben Tupper [mailto:btupper at bigelow.org] Sent: Thursday, March 22, 2018 10:40 AM To: Bond, Stephen Cc: r-help Subject: Re: [R] how to add a child to a
2018 Mar 22
0
how to add a child to a child in XML
Hi, It's a reasonable question. The answer is that it actually is included, but there are many instances across packages where multiple functions are documented on a single help page. The following brings up such a page... (for XML_3.98-1.9) > library(XML) > ?newXMLNode You can see the same on line... https://www.rdocumentation.org/packages/XML/versions/3.98-1.9/topics/newXMLDoc
2003 Jan 07
0
Your Enterprise Java/J2EE Architect Requirement
Good morning and Happy New Year 2003! Let it be prosperous for both you and me! Below you see a very short version of my CV as of January 2003 for your kind consideration and update. Word, TXT, and PDF version of the complete CV are available upon request. Enjoy the economic recovery! Make it a great day: ZAR ================================================================= ZAR PETKOV,
2017 Nov 10
0
update R version in windows
Thanks Caitlin and Richard MH. Works great. Stephen From: Caitlin [mailto:bioprogrammer at gmail.com] Sent: Friday, November 10, 2017 12:33 PM To: Bond, Stephen Subject: Re: [R] update R version in windows install.packages("installr") updateR() rather... On Friday, November 10, 2017, Bond, Stephen <Stephen.Bond at cibc.com<mailto:Stephen.Bond at cibc.com>> wrote: Is
2018 Mar 22
2
how to add a child to a child in XML
Big thanks. newXMLNode works great. Wonder why it is not included in the documentation. There is newXMLDoc and newXMLNamespace, but no mention of newXMLNode. Stephen From: Ben Tupper [mailto:btupper at bigelow.org] Sent: Wednesday, March 21, 2018 6:18 PM To: Bond, Stephen Cc: r-help Subject: Re: [R] how to add a child to a child in XML Hi, XML doesn't use the `$` to access child nodes.
2017 Nov 10
3
update R version in windows
However, trying this on Linux Mint gave package ?installr? is not available (for R version 3.4.2) Has the package not been updated yet? JN Try the installr package. It was designed for this purpose. On Fri, Nov 10, 2017 at 11:49 AM, Bond, Stephen <Stephen.Bond at cibc.com> wrote: > Is there a utility which will allow me to upgrade my R version and update all packages from the old
2017 Nov 10
0
update R version in windows
This issue does not exist on Linux. My Ubuntu updates both R and all packages. Stephen B -----Original Message----- From: J C Nash [mailto:profjcnash at gmail.com] Sent: Friday, November 10, 2017 1:19 PM To: r-help; RICHARD M. HEIBERGER; Bond, Stephen Subject: Re: [R] update R version in windows However, trying this on Linux Mint gave package ?installr? is not available (for R version
2003 Oct 13
1
OpenSSH_3.7.1p2, Solaris 8: non-interactive authentication meth od prompts for a password
Hi, The OpenSSH_3.7.1p2, Solaris 8 case: non-interactive authentication method (publickey) works for root only ---------------------------------------------------------------------------- --------- We installed OpenSSH_3.7.1p2, SSH protocols 1.5/2.0, OpenSSL 0.9.7c We need to copy a file by SFTP from App server to a DB server with passwordless method. [cbfe-dev-app01 (client), user cbfesit]
2005 Aug 19
1
Solaris10-amd64-studio10 compilers
Hi, I am trying to compile R-2.1.1 on Solaris10, with the Studio10 compilers. When I try to compile 64bit with CFLAGS="-xarch=amd64" export CFLAGS I get a configure failure on checking for rl_callback_read_char in -lreadline... no checking for history_truncate_file... no configure: error: --with-readline=yes (default) and headers/libs are not available unset CFLAGS and its fine
2018 Mar 21
0
how to add a child to a child in XML
Hi, XML doesn't use the `$` to access child nodes. Instead use either `[name]` to get a list of children of that name or `[[name]]` to get the just the first child of that name encountered in the genealogy. Thus for your example... > root$child1 NULL > root[['child1']] <child1 name1="A" name2="B" name3="C"/> On the other hand, you might
2010 Dec 05
3
Strange problem with CSV and funny chars
I am using CSV in a rake task (db:seed) on Rails 3.0.3, Ruby 1.9.2 to read a file with some funny chars in it. Upon breaking in at a point where the row read using CSV is in variable row, with the string with the char in row[''price''] I get the following strange results which I cannot understand. (rdb:1) row[''price''] "\xA32.00" (rdb:1)
2005 May 12
2
Solaris 10 on amd and R-2.1.0
Hi I am having problems compiling R on a Solaris 10 opteron box we have on trial. checking for Fortran libraries of g77... -L/usr/ccs/lib -L/usr/lib - L/usr/local/lib -L/usr/local/lib/gcc-lib/i386-pc-solaris2.10/3.3.2 - L/usr/ccs/bin -L/usr/local/lib/gcc-lib/i386-pc- solaris2.10/3.3.2/../../.. -lfrtbegin -lg2c -lm -lgcc_s -lfrtbegin: - lg2c: checking how to get verbose linking output from
1999 Jul 02
2
segfault on Sparc Linux (RH6.0)
We are having problems building R on Red Hat Linux 6.0/Sparc. R compiles with no problem but then it fails "make tests". Specifically, the line eigen(cbind(-1,c(1:2,0),0:2)) # complex values causes a segmentation fault. Previous versions of Red Hat Linux did not give this problem. The eigen() function is one of the rare cases in the base library where Fortran code is called via the
2010 Jun 23
2
Analyzing large transition matrix
Let's say you have a dataframe of car trade-ins. For example, each row contains oldcar newcar qty and a typical entry could be lexus bmw 1 I put the qty column to allow for fleet purchases, where one purchase may convert multiple cars at once. I'd like to show what's going on. I could do a histogram of newcar to show the frequency each type of car is bought. If there
1998 Jul 16
0
Samba services to NT client (PR#8411)
james.strauch@beasys.com wrote : > The problem is with the share "beasw". (see config below) This share > contains executable installs for various standard PC desktop software. The > share works fine and is viewable and writable by both Windows95 clients and > Windows-NT 4.0 clients. But when trying to install the applications (such > as Meeting Maker, 2nd Copy 97,
1997 Aug 01
0
printcap entries over 8 chars long
Peter> My problem is browsing printers that names are more than Peter> 8 chars long. Any printer that is longer than 8 chars (in the Peter> printcap file) does not show up when browsing. Peter> Anybody else affected by this? Is there a fix? Jim> I had considered "fixing" the code but then I wondered whether I would run Jim> into DOS's 8.3 filenaming convention
2005 Aug 18
2
3.0.20rc2 infinite dir loop
We have Win98 DOS (4.11.2222) clients that exhibit behaviors thought to have been corrected. They are running the MS-CLIENT redirector. 3.0.11 will do a directory listing correctly and show all entries in upper case. 3.0.14a gets stuck in a dir loop with the client and displays non-mangled names in lower case. 3.0.20rc2 gets stuck in a dir loop with the client and displays all entries in upper
2010 Jul 15
0
R2wd and ESS: printing source?
-----BEGIN PGP SIGNED MESSAGE----- Hash: SHA1 I'm using R2wd and ESS. ESS-mode doesn't let one fill wdBody() calls, and printing out of Emacs (M-x print-buffer or M-x print-region) doesn't wrap, so I miss most of the text on printed listings. What do others do to address that? Thanks, Bill - -- Bill Harris http://makingsense.facilitatedsystems.com/ Facilitated
2014 May 05
0
Error "usbhid-ups[42466]: libusb_get_report: Unknown Error"
No one knows anything about this? I've seen some references to this before, but no solutions? If there is more detailed information I can get from command line, please let me know what to run. Thanks! > Message: 1 > Date: Sat, 26 Apr 2014 13:43:11 -0700 > From: Everett Tsang <snufflebear87 at hotmail.com> > To: "nut-upsuser at lists.alioth.debian.org" >