Displaying 15 results from an estimated 15 matches for "mysource".
2008 May 08
2
LaTeX in system()
Dear list,
I want to run latex from an R script:
system("latex mysource.tex")
or:
texi2dvi("mysource.tex", pdf = TRUE, clean = FALSE, quiet = TRUE,
texi2dvi = latex)
but latex does not seem to be on the search path:
/bin/sh: line 1: latex: command not found.
Although 'printenv PATH' tells me that the usr/texbin is looked for
executab...
2006 Jul 31
1
building windows packages under wine/linux and cross-compiling.
...-on-win32-on-posix currently doesn't work.
(http://wiki.winehq.org/CygwinSupport)
Cross-compiling: The instruction in R/src/gnuwin32/README.packages
essentially works, with one missing detail: "R_EXE=/usr/bin/R" is also
needed. Thus it should be:
make R_EXE=/usr/bin/R PKGDIR=/mysources RLIB=/R/win/library \
pkg-mypkg
make P_EXE=/usr/bin/R KGDIR=/mysources RLIB=/R/win/library \
pkgcheck-mypkg
Hin-Tak Leung
2008 Mar 03
0
3.0.1 Test Success MacOS X 10.4.11
...PASS xattrs
------------------------------------------------------------
----- overall results:
33 passed
4 skipped
------------------------------------------------------------
overall result is 0
sudo make install
cd /usr/local/Source/backup-bouncer-0.1.2/
./bbouncer create-vol mysource
./bbouncer create-vol mybackup
./bbouncer create /Volumes/mysource/
sudo rsync -aHAXiP --fileflags --crtimes /Volumes/mysource/ /Volumes/
mybackup/
./bbouncer verify -d /Volumes/mysource/ /Volumes/mybackup
Verifying: basic-permissions ... ok
Verifying: timestamps ...
Sub-test:...
2016 Oct 03
4
On implementing zero-overhead code reuse
Hi Frederick,
I described what I meant in the post I sent to R-help
(https://stat.ethz.ch/pipermail/r-help/2016-September/442174.html),
but in brief, by "zero overhead" I mean that the only thing needed for
library code to be accessible to client code is for it to be located
in designed directory. No additional meta-files, packaging/compiling,
etc. are required.
Best,
G.
On Sun, Oct
2016 Oct 03
3
On implementing zero-overhead code reuse
...rederik at ofb.net> wrote:
> Hi Kynn,
>
> Thanks for expanding.
>
> I wrote a function like yours when I first started using R. It's
> basically the same up to your "new.env()" line, I don't do anything
> with environmentns. I just called my function "mysource" and it's
> essentially a "source with path". That allows me to find code I reuse
> in standard locations.
>
> I don't know why R does not have built-in support for such a thing.
> You can get it in C compilers with CPATH, and as you say in Perl with
> PERL5...
2016 Oct 03
0
On implementing zero-overhead code reuse
Hi Kynn,
Thanks for expanding.
I wrote a function like yours when I first started using R. It's
basically the same up to your "new.env()" line, I don't do anything
with environmentns. I just called my function "mysource" and it's
essentially a "source with path". That allows me to find code I reuse
in standard locations.
I don't know why R does not have built-in support for such a thing.
You can get it in C compilers with CPATH, and as you say in Perl with
PERL5LIB, in Python, etc. Obviousl...
2010 Jul 13
2
[LLVMdev] Debugging docs wrong?
http://llvm.org/docs/SourceLevelDebugging.html#ccxx_compile_units
!1 = metadata !{
i32 524329, ;; Tag
metadata !"MySource.cpp",
metadata !"/Users/mine/sources",
metadata !3 ;; Compile unit
}
!2 is the Compile Unit, right? !3 is also wrong.
--
cheers,
--renato
http://systemcall.org/
Reclaim your digital rights, eliminate DRM, learn more at
http://www.defectivebydesign.org/what_is_drm
2001 Jun 16
1
Compilation of my own sources
Hello community,
Just one tiny question : all source files provided for download come bundled
with Makefiles. My problem is : what makefile do i use (or what g++
compilation command line) if i want to compile my own sources ? I mean that
g++ mysource.cpp doesn't work.
Thank you
Sekine
--- >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 'vorbis-dev-request@xiph.org'
containing only the word 'unsubscribe' in the body. N...
2008 Mar 02
1
3.0.0 test failure MacOS X 10.4.11
...-p1 <patches/fileflags.diff
./prepare-source
patch -p1 <patches/backup-dir-dels.diff
./configure
make
make test
sudo make install
Then compiling and running "bbouncer" from
<http://www.n8gray.org/blog/2007/04/27/introducing-backup-bouncer/>
./bbouncer create-vol mysource
./bbouncer create-vol mybackup
sudo rm -rf /Volumes/mybackup/*
rsync -aHAX --fileflags /Volumes/mysource/ /Volumes/mybackup/
reports
---
rsync: get_xattr_names: llistxattr("90-fifo/some-fifo",1024) failed:
Operation not permitted (1)
rsync: get_xattr_names: llistxattr("95-devic...
2011 Mar 24
2
Problem with Snowball & RWeka
Dear Forum,
when I try to use SnowballStemmer() I get the following error message:
"Could not initialize the GenericPropertiesCreator. This exception was
produced: java.lang.NullPointerException"
It seems to have something to do with either Snowball or RWeka, however I
can't figure out, what to do myself. If you could spend 5 minutes of your
valuable time, to help me or give me a
2016 Oct 03
0
On implementing zero-overhead code reuse
...t;
>> Hi Kynn,
>>
>> Thanks for expanding.
>>
>> I wrote a function like yours when I first started using R. It's
>> basically the same up to your "new.env()" line, I don't do anything
>> with environmentns. I just called my function "mysource" and it's
>> essentially a "source with path". That allows me to find code I reuse
>> in standard locations.
>>
>> I don't know why R does not have built-in support for such a thing.
>> You can get it in C compilers with CPATH, and as you say in...
2016 Oct 03
2
On implementing zero-overhead code reuse
...;>>
>>> Thanks for expanding.
>>>
>>> I wrote a function like yours when I first started using R. It's
>>> basically the same up to your "new.env()" line, I don't do anything
>>> with environmentns. I just called my function "mysource" and it's
>>> essentially a "source with path". That allows me to find code I reuse
>>> in standard locations.
>>>
>>> I don't know why R does not have built-in support for such a thing.
>>> You can get it in C compilers with CPATH...
2010 Jul 13
0
[LLVMdev] Debugging docs wrong?
On Tue, Jul 13, 2010 at 6:08 AM, Renato Golin <rengolin at systemcall.org> wrote:
> http://llvm.org/docs/SourceLevelDebugging.html#ccxx_compile_units
>
> !1 = metadata !{
> i32 524329, ;; Tag
> metadata !"MySource.cpp",
> metadata !"/Users/mine/sources",
> metadata !3 ;; Compile unit
> }
>
> !2 is the Compile Unit, right? !3 is also wrong.
Yes. Thanks for catching this.
Fixed r108246.
-
Devang
2007 Dec 31
0
R to LaTeX Univariate Analysis
...o use it:
> dataFrame <- read.csv("myData.csv")
> r2lUniv(dataFrame,"fileOut.tex")
It performs the basic analysis and creates all graphs. Then I add
\input{fileOut.tex} in my main.tex file.
My source file is available at:
http://christophe.genolini.free.fr/r2lUniv/mySource/
It is definitely NOT a code ready for a library, there is probably bugs
in it, all comments and all variables used for testing are in. But
still, any advices will be welcome...
Christophe
PS: Does the manual "Writing R Extensions" exists in French? Or
anything equivalent?
2006 Dec 06
2
May I merge several increment backups to one?
Hi all,
I have the following situation:
Backup /mysource to /backupdir,
/backupdir/full ---------an old full backup
/backupdir/back2 -------previous increment backup(based on the full backup
mentioned above)
/backupdir/back1 ------most recent increment backup (based on the two
backups mentioned above)
How can I merge the two increment backups i...