search for: foolabs

Displaying 10 results from an estimated 10 matches for "foolabs".

Did you mean: foolab
2020 Aug 12
5
Using SSSD + AD with Samba seems to require Winbind be running
Hi all, Configuration information right off the bat: Debian Buster 10.5 and Samba 2:4.9.5+dfsg-5+deb10u1. Testparm is at the bottom I'm running into some interesting behavior on a server I've configured to use SSSD to bind to the AD domain. I've successfully bound using "net ads" and can get tickets and so on, and have samba configured to use kerberos through sssd.
2020 Aug 12
0
Using SSSD + AD with Samba seems to require Winbind be running
On 12/08/2020 10:35, Christian Naumer wrote: > >> Am 12.08.2020 um 09:18 schrieb Rowland penny via samba <samba at lists.samba.org>: >> >> ?On 12/08/2020 03:46, Christian Kuntz via samba wrote: >>> Hi all, >>> >>> Configuration information right off the bat: >>> Debian Buster 10.5 and Samba 2:4.9.5+dfsg-5+deb10u1. >>>
2020 Aug 12
0
Using SSSD + AD with Samba seems to require Winbind be running
On 8/11/20 10:46 PM, Christian Kuntz via samba wrote: > Hi all, > > Configuration information right off the bat: > Debian Buster 10.5 and Samba 2:4.9.5+dfsg-5+deb10u1. > > Testparm is at the bottom > > > I'm running into some interesting behavior on a server I've configured to > use SSSD to bind to the AD domain. I've successfully bound using
2009 Dec 22
0
Reading PDF files (using xpdf)
...ce I've done this, but if memory serves, the basic process was to download xpdf and add it to the windows path, thus making it accessable from within R. Two methods follow: Method One (easiest) - using the awesome ?system command: (1) Download xpdf (whichever is the latest version): ftp://ftp.foolabs.com/pub/xpdf/xpdf-3.02pl4-win32.zip (2) Unzip it # system(paste("[app]", "[pdf file]"), wait = FALSE) > system(paste('"C:/Program Files/xpdf/pdftotext.exe"', '"C:/Documents and Settings/tony/Desktop/test/r-intro.pdf"'), wait=FALSE) Metho...
2009 Dec 22
2
Reading PDF files
Hi: I need to do text mining on PDF files. I understand there is a readPDF command in tm that can be used. Have read the 2008 posts on converting PDF files to text by Tony Breyal and others. Wondering if the procedure has been standardized in any tutorial or otherwise? Being new to R, I was able to follow only part of the discussion. Any way to get a set of step by step instructions
2008 Nov 13
1
readPDF() -- unsure how to install xpdf to make this work?
...mining is mentioned. In that lovely package, there is a function called 'readPDF()'. In order to use this, ?readPDF says "Note that this PDF reader needs both the tools pdftotext and pdfinfo installed and accessable on your system." These tools are available from http://www.foolabs.com/xpdf/download.html I am able to download this and use it easily from a dos window to convert a pdf file into a txt file. Question: how do i make these tools available to R, so that i can use the readPDF() function? Thank you in advance for any help, and I hope the above made sense. Tony Brey...
2007 Apr 25
2
Parsers for input to index?
The documents we want to index come in many formats; e.g., HTML, PDF, RTF, Word, Excel, etc., etc., etc. I''ve been searching to find parsers that will translate each of these formats to indexable text, but have had little success. Any help will be appreciated. -- Posted via http://www.ruby-forum.com/.
2010 Sep 23
1
eps file
Dear All,   I need to create eps file which is the required figure format  of the journal that I want to submit a paper. I am able to create files in pdf or wmf format but not in eps format. Is there a way to convert pdf or wmf to eps? or alternatively, how can I create an eps file in R?   Any help is deeply appreciated.   Kind Regards   Seyit Ali
2008 Jan 04
1
Evaluating R expressions
All, Thank you for the prompt and useful answers to my questions. I had missed references in 5.7.6 which would have answered some of the points. As Bill pointed out a newer version of acrobat would help, but the Sun system here is still running 5.0. (An oversubscribed sysadmin). Then I could have searched and at at least avoided the most trivial. All three comments were different,
2010 Jan 09
4
parsing pdf files
I have a pdf file that I would like to parse into R: http://www.williams.edu/Registrar/geninfo/faculty.pdf For now, I open the file in Acrobat by hand, then save it "as text" and then use readLines(). That works fine but a) I am concerned that some information may be lost and b) I may be doing this a lot, so I would rather have R grab the information from the pdf file directly. So: is