Hi TM users,
I've never done revision control before, and I don't know where to
start. I need something I can use on OS X, and works well with TM. If
I Google for "OS X revesion control" I get many suggestions including
Mercurial, CVS, GIT, Subversion, Bazaar.
I really have no idea where to start. I'd welcome some suggestions, or
links to documentation I should perhaps read.
Thank you for any help you can give.
--
Justin Catterall www.masonsmusic.co.uk
Director T: +44 (0)1424 427562
Masons Music Ltd F: +44 (0)1424 434362
For full company details see our web site
Hi, I am using Mr. Knops' excellent TM CodeBrowser plugin. It doesn't seem
to work right out of the box with my Haskell code. I know it uses the CTags
program to generate the tags, what is the best way to get the tags working
with Haskell?
Thanks for your help,
Brandon
>
> Is MAMP relatively similar to XAMPP?
MAMP stands for Mac, Apache, MySQL, PHP
It is an adaptation of the phrase "LAMP stack" which is Linux, Apache,
MySQL, PHP.
OS X has Apache and PHP built in. To turn on Apache, check Web Sharing in
the Sharing panel of System Preferences.
To turn on PHP, uncomment a line in the file /etc/apache2/httpd.conf
Change:
#LoadModule php5_module libexec/apache2/libphp5.so
To:
LoadModule php5_module libexec/apache2/libphp5.so
For MySQL, install the package manager
Homebrew<http://mxcl.github.com/homebrew/>,
and then at the terminal type:
brew install mysql
It's that easy!
>
>On 4 Oct 2011, at 13:46, Davide Rambaldi wrote:
>
>> * free open source hub: github.com , there is also a GUI for OSX
>>(personally I prefer to use the Terminal: git is simple!)
>
>Github has a ton of mindshare - and its a good place to work against.
>However Mercurial has BitBucket - not as well known, but its a rough
>equivalent - https://bitbucket.org/ (also appears to be a little less
>locked to one VCS).
Interesting thing with Bitbucket is they just announced Git support as
well :)
Not a real announcement, so will appreciate if you refrain from linking to this, but requests for info about the future have been plenty, so I figured I should let you know that there will be a public alpha of Avian before christmas.
Hi, in Lion 10.7 seems there is no way to resize the preference panel, that is a problem for the Advanced --> Shell Variables TAB (I have a very long PATH)….
Best Regards
Davide
> Hi, in Lion 10.7 seems there is no way to resize the preference panel,
that is a problem for the Advanced --> Shell Variables TAB (I have a very
long PATH)?.
When I click on the path to edit the variable, I can scroll my cursor from
the beginning to the end. It isn't incredibly convenient being so small,
but you could probably do it with no problem. Alternatively, you could edit
the path somewhere else and paste it in there rather than mess with it
within the preferences dialog itself.
Brandon
On Wed, Sep 28, 2011 at 5:00 AM, <textmate-request(a)lists.macromates.com>wrote:
> Send textmate mailing list submissions to
> textmate(a)lists.macromates.com
>
> To subscribe or unsubscribe via the World Wide Web, visit
> http://lists.macromates.com/listinfo/textmate
> or, via email, send a message with subject or body 'help' to
> textmate-request(a)lists.macromates.com
>
> You can reach the person managing the list at
> textmate-owner(a)lists.macromates.com
>
> When replying, please edit your Subject line so it is more specific
> than "Re: Contents of textmate digest..."
>
>
> Today's Topics:
>
> 1. R bundle have a BUG? (Davide Rambaldi)
> 2. Re: R bundle have a BUG? (Hans-J?rg Bibiko)
> 3. Re: R bundle have a BUG? (Davide Rambaldi)
> 4. Re: R bundle have a BUG? (Hans-J?rg Bibiko)
> 5. Lion Preferences: no resize (Davide Rambaldi)
> 6. Re: Lion Preferences: no resize (Daniel Dettlaff)
>
>
> ----------------------------------------------------------------------
>
> Message: 1
> Date: Tue, 27 Sep 2011 17:06:49 +0200
> From: Davide Rambaldi <davide.rambaldi(a)gmail.com>
> To: textmate(a)lists.macromates.com
> Subject: [TxMt] R bundle have a BUG?
> Message-ID: <6C0E9953-03A6-44C4-9A0E-A3172DD05253(a)gmail.com>
> Content-Type: text/plain; charset=windows-1252
>
> Hi, first of all, congrats for your editor: is the best.
>
> Not sure where to post this problem (R devel, here, mailing list for the
> bundles?)
>
> Anyway: I am trying to use the R bundle (R statistical language).
>
> I have the following problem:
>
> - I have a script that generate a PDF multiline using plot?
>
> pdf(merge.fitting.file.path)
> print(plot(parent.fitting))
> print(plot(my.fit))
> dev.off()
>
> everything is working ok from R console or R CMD BATCH : I get back my
> multiline PDF
>
> When I run the scripts inside textMate (with cmd-R) only THE LAST PAGE of
> the pdf is recorder in the file!
>
> Can you please suggest me where to post this BUG?
>
> Thanks
>
>
>
>
> ------------------------------
>
> Message: 2
> Date: Tue, 27 Sep 2011 20:40:46 +0200
> From: Hans-J?rg Bibiko <bibiko(a)eva.mpg.de>
> To: TextMate users <textmate(a)lists.macromates.com>
> Subject: [TxMt] Re: R bundle have a BUG?
> Message-ID: <E2B5D226-64C4-4E60-BEA3-7DE4EBE571D6(a)eva.mpg.de>
> Content-Type: text/plain; charset=windows-1252
>
>
> On 27 Sep 2011, at 17:06, Davide Rambaldi wrote:
>
> > Not sure where to post this problem (R devel, here, mailing list for the
> bundles?)
> Here's the right place :)
>
> > I have the following problem:
> >
> > - I have a script that generate a PDF multiline using plot?
> >
> > pdf(merge.fitting.file.path)
> > print(plot(parent.fitting))
> > print(plot(my.fit))
> > dev.off()
>
>
> The easiest to check the default parameter settings for "pdf()" in a
> software environment execute:
>
> > args(pdf)
> function (file = "/tmp/TM_R/Rplot%03d.pdf", width = 8, height = 8,
> onefile = FALSE, family, title, fonts, version, paper, encoding,
> bg, fg, pointsize, pagecentre, colormodel, useDingbats, useKerning,
> fillOddEven, maxRasters)
>
>
> Here you see that the parameter "onefile" is set to FALSE which means that
> each plot will go in a separate pdf file.
>
> Please try:
>
> pdf(merge.fitting.file.path, onefile = TRUE)
>
> Kind regards,
> Hans
>
>
>
>
>
>
>
> ------------------------------
>
> Message: 3
> Date: Tue, 27 Sep 2011 21:41:06 +0200
> From: Davide Rambaldi <davide.rambaldi(a)gmail.com>
> To: TextMate users <textmate(a)lists.macromates.com>
> Subject: [TxMt] Re: R bundle have a BUG?
> Message-ID:
> <CAEn6bVKKTz=B-yuK2LAMA+9zvM20mwgJPn-GhHALVX6Qk7S=Hw(a)mail.gmail.com
> >
> Content-Type: text/plain; charset=windows-1252
>
> Ok it's working with onefile = TRUE (I look at my result trough a web
> page and I did not notice the split of pdf :-)
>
> many thanks
>
> Davide
>
> 2011/9/27 Hans-J?rg Bibiko <bibiko(a)eva.mpg.de>:
> >
> > On 27 Sep 2011, at 17:06, Davide Rambaldi wrote:
> >
> >> Not sure where to post this problem (R devel, here, mailing list for the
> bundles?)
> > Here's the right place :)
> >
> >> I have the following problem:
> >>
> >> - I have a script that generate a PDF multiline using plot?
> >>
> >> pdf(merge.fitting.file.path)
> >> print(plot(parent.fitting))
> >> print(plot(my.fit))
> >> dev.off()
> >
> >
> > The easiest to check the default parameter settings for "pdf()" in a
> software environment execute:
> >
> >> args(pdf)
> > function (file = "/tmp/TM_R/Rplot%03d.pdf", width = 8, height = 8,
> > ? ?onefile = FALSE, family, title, fonts, version, paper, encoding,
> > ? ?bg, fg, pointsize, pagecentre, colormodel, useDingbats, useKerning,
> > ? ?fillOddEven, maxRasters)
> >
> >
> > Here you see that the parameter "onefile" is set to FALSE which means
> that each plot will go in a separate pdf file.
> >
> > Please try:
> >
> > pdf(merge.fitting.file.path, onefile = TRUE)
> >
> > Kind regards,
> > Hans
> >
> >
> >
> >
> >
> >
> > _______________________________________________
> > textmate mailing list
> > textmate(a)lists.macromates.com
> > http://lists.macromates.com/listinfo/textmate
> >
>
>
> ------------------------------
>
> Message: 4
> Date: Tue, 27 Sep 2011 22:42:54 +0200
> From: Hans-J?rg Bibiko <bibiko(a)eva.mpg.de>
> To: TextMate users <textmate(a)lists.macromates.com>
> Subject: [TxMt] Re: R bundle have a BUG?
> Message-ID: <F1675BAF-B906-42AC-BC5F-D311979745D7(a)eva.mpg.de>
> Content-Type: text/plain; charset=us-ascii
>
>
> On 27 Sep 2011, at 21:41, Davide Rambaldi wrote:
>
> > Ok it's working with onefile = TRUE (I look at my result trough a web
> > page and I did not notice the split of pdf :-)
>
>
> ... and please note the following approach which is implemented in the R
> bundle:
>
> - each plot command will write its result into ONE pdf file (located in
> /tmp/TM_R/) automatically WITHOUT a preceding pdf() command; all generated
> pdf files (in /tmp/TM_R/) will be inserted as linked image in the HTML
> output window; that's why the parameter 'onefile' is set to FALSE as default
> - if you're using the command pdf() explicitly then the result will not be
> displayed in the HTML output window
>
> As an example one could write the following code to come up with resulting
> pdf in Preview:
>
> pdf(file='~/Desktop/x1.pdf', onefile=T)
> plot(10:1)
> plot(1:10)
> dev.off()
> system('open ~/Desktop/x1.pdf')
>
>
> or
>
>
> plot(1:3)
> plot(3:1)
> pdf(file='/tmp/TM_R/x1.pdf', onefile=T)
> plot(100:1)
> plot(1:100)
> dev.off()
>
>
>
> and click at third image to open it in Preview [third one due sorting
> Rplot00x.pdf, x1.pdf]
>
>
> Best,
> --Hans
>
> ------------------------------
>
> Message: 5
> Date: Wed, 28 Sep 2011 10:21:33 +0200
> From: Davide Rambaldi <davide.rambaldi(a)gmail.com>
> To: textmate(a)lists.macromates.com
> Subject: [TxMt] Lion Preferences: no resize
> Message-ID: <A2CE293C-2442-4136-9686-6B9792803656(a)gmail.com>
> Content-Type: text/plain; charset=windows-1252
>
> Hi, in Lion 10.7 seems there is no way to resize the preference panel, that
> is a problem for the Advanced --> Shell Variables TAB (I have a very long
> PATH)?.
>
>
> Best Regards
>
> Davide
>
> ------------------------------
>
> Message: 6
> Date: Wed, 28 Sep 2011 12:23:40 +0200
> From: Daniel Dettlaff <dmilith(a)verknowsys.com>
> To: TextMate users <textmate(a)lists.macromates.com>
> Subject: [TxMt] Re: Lion Preferences: no resize
> Message-ID: <1976920.346201317205421742.JavaMail.root@draCore>
> Content-Type: text/plain; charset="windows-1252"
>
>
> On Sep 28, 2011, at 10:21 , Davide Rambaldi wrote:
>
> > Hi, in Lion 10.7 seems there is no way to resize the preference panel,
> that is a problem for the Advanced --> Shell Variables TAB (I have a very
> long PATH)?.
>
>
> +1
>
Hi, first of all, congrats for your editor: is the best.
Not sure where to post this problem (R devel, here, mailing list for the bundles?)
Anyway: I am trying to use the R bundle (R statistical language).
I have the following problem:
- I have a script that generate a PDF multiline using plot…
pdf(merge.fitting.file.path)
print(plot(parent.fitting))
print(plot(my.fit))
dev.off()
everything is working ok from R console or R CMD BATCH : I get back my multiline PDF
When I run the scripts inside textMate (with cmd-R) only THE LAST PAGE of the pdf is recorder in the file!
Can you please suggest me where to post this BUG?
Thanks
Since I started using biblatex, hitting alt-esc to choose from a list of available citations in my .bib file stopped working. Is there a way to get this handy shortcut to work with biblatex?
- JW