Re: [Factor-talk] Working style; default font; preferred text styler with REPL

2010-11-06 Thread Slava Pestov
On Fri, Nov 5, 2010 at 1:18 AM, Shaping shap...@charter.net wrote:
 Should nearly working, nearly tested vocabularies go in unmaintained?

No, because unmaintained is not a vocabulary root. It is more of a
graveyard and source of ideas for future projects.

Slava

--
The Next 800 Companies to Lead America's Growth: New Video Whitepaper
David G. Thomson, author of the best-selling book Blueprint to a 
Billion shares his insights and actions to help propel your 
business during the next growth cycle. Listen Now!
http://p.sf.net/sfu/SAP-dev2dev
___
Factor-talk mailing list
Factor-talk@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/factor-talk


Re: [Factor-talk] Working style; default font; preferred text styler with REPL

2010-11-05 Thread Shaping
Does everyone run Factor.exe directly from the repo root?  Do you make a 'work' 
directory for new vocabularies and otherwise just mod the existing ones, and 
let Git tell you what has changed before you publish?

Usually we keep our work in a separate vocabulary root. The repository contains 
an empty work directory, with its contents ignored by Git, that is set up as 
a vocabulary root for this purpose. If you want to modify existing Factor 
libraries or contribute new libraries upstream, you should do so in the 
established basis and extra directories.



Should nearly working, nearly tested vocabularies go in unmaintained?

 

 Can someone tell me how to change the GUI's default font?

There isn't a readily available setting for this. On Windows you can hack the 
default font mappings in basis/windows/fonts.

 

I'm working on this now, but need to read the doc, and thought I would install 
first the Emacs FUEL vocab, and get Emacs working with Factor. 

 

My Emacs install is not able to find its init file with the needed lips 
expressions to configure the link to Factor.  I checked about six different 
online sources of help for this topic.  There is no HOME environment variable, 
no _emacs or .emacs file on C:\.  There is a user directory with no .emacs file 
but with an .emacs-places file, with a reference to the .emacs file in my 
install directory (second path), but the file is not being used (I changed the 
background color as a test, in the init file, and see no color change on launch 
of Emacs.  Also, M-x run-factor shows [no match].).

 

Contents of .emacs-places:

 

;;; -*- coding: utf-8 -*-

 

((c:/Program Files (x86)/Emacs/INSTALL . 10786) (c:/Program Files 
(x86)/Emacs/.emacs . 60) 
(c:/Users/X/AppData/Roaming/.emacs.d/ede-projects.el . 86))

 

In Emacs, typing C-x C-f ~/.emacs does not open the .emacs file and I have it 
saved in the install directory, the bin directory, and the user directory with 
the .emacs-places file.

 

Anyone know how to get the init file working on Windows 7 64-bit? 

 

 

 Is Emacs the most popular text styler for Factor?  I prefer to have a REPL 
capability?

I don't know that it's the most popular, but it's probably the most featureful, 
and if you want deep REPL integration your only real choice. If you don't mind 
switching between your text editor and the Factor UI, the Factor UI is capable 
of tracking and opening source code using almost any popular editor using the 
editor integration in the basis/editors directory.

 

Is anyone working on an Emacs work-alike that is integrated with Factor, so 
that we don't have to do the linking-to and installing of other apps?

 

 

Shaping

--
The Next 800 Companies to Lead America's Growth: New Video Whitepaper
David G. Thomson, author of the best-selling book Blueprint to a 
Billion shares his insights and actions to help propel your 
business during the next growth cycle. Listen Now!
http://p.sf.net/sfu/SAP-dev2dev___
Factor-talk mailing list
Factor-talk@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/factor-talk


Re: [Factor-talk] Working style; default font; preferred text styler with REPL

2010-11-05 Thread Jim mack
I got gnu emacs working on my xp laptop by following these instructions,
http://www.gnu.org/software/emacs/windows/ntemacs.html
and the ones on the factor website:
http://www.gnu.org/software/emacs/windows/ntemacs.html.  I was able to get
it to call factor  compile, and to update my source file's USING: as I
added words.

Then, I played around with ergo emacs, and screwed everything up, and ran
out of time.  I'm a newbie, just thought that piece of info would be
confirmation that it's possible.

Jim
--
The Next 800 Companies to Lead America's Growth: New Video Whitepaper
David G. Thomson, author of the best-selling book Blueprint to a 
Billion shares his insights and actions to help propel your 
business during the next growth cycle. Listen Now!
http://p.sf.net/sfu/SAP-dev2dev___
Factor-talk mailing list
Factor-talk@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/factor-talk


Re: [Factor-talk] Working style; default font; preferred text styler with REPL

2010-11-05 Thread Jim mack
also look for Integration with Emacs in the article index (a link from
home in the browser)

On Fri, Nov 5, 2010 at 1:41 AM, Jim mack j...@less2do.com wrote:

 I got gnu emacs working on my xp laptop by following these instructions,
 http://www.gnu.org/software/emacs/windows/ntemacs.html
 and the ones on the factor website:
 http://www.gnu.org/software/emacs/windows/ntemacs.html.  I was able to get
 it to call factor  compile, and to update my source file's USING: as I
 added words.

 Then, I played around with ergo emacs, and screwed everything up, and ran
 out of time.  I'm a newbie, just thought that piece of info would be
 confirmation that it's possible.

 Jim




-- 
Jim
I'm for extending the working Medicare program for our seniors all the way
back to contraception, so Americans can concentrate on living their lives
without fear of changing a job, going bankrupt from deductibles or fighting
HMO bureaucracy.
--
The Next 800 Companies to Lead America's Growth: New Video Whitepaper
David G. Thomson, author of the best-selling book Blueprint to a 
Billion shares his insights and actions to help propel your 
business during the next growth cycle. Listen Now!
http://p.sf.net/sfu/SAP-dev2dev___
Factor-talk mailing list
Factor-talk@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/factor-talk


Re: [Factor-talk] Working style; default font; preferred text styler with REPL

2010-11-04 Thread Joe Groff

On Nov 3, 2010, at 12:55 PM, Shaping shap...@charter.net wrote:

 Does everyone run Factor.exe directly from the repo root?  Do you make a 
 'work' directory for new vocabularies and otherwise just mod the existing 
 ones, and let Git tell you what has changed before you publish?
 
Usually we keep our work in a separate vocabulary root. The repository contains 
an empty work directory, with its contents ignored by Git, that is set up as 
a vocabulary root for this purpose. If you want to modify existing Factor 
libraries or contribute new libraries upstream, you should do so in the 
established basis and extra directories.
  Can someone tell me how to change the GUI's default font?
 
There isn't a readily available setting for this. On Windows you can hack the 
default font mappings in basis/windows/fonts.
  Is Emacs the most popular text styler for Factor?  I prefer to have a REPL 
 capability?
 
I don't know that it's the most popular, but it's probably the most featureful, 
and if you want deep REPL integration your only real choice. If you don't mind 
switching between your text editor and the Factor UI, the Factor UI is capable 
of tracking and opening source code using almost any popular editor using the 
editor integration in the basis/editors directory.

-Joe--
The Next 800 Companies to Lead America's Growth: New Video Whitepaper
David G. Thomson, author of the best-selling book Blueprint to a 
Billion shares his insights and actions to help propel your 
business during the next growth cycle. Listen Now!
http://p.sf.net/sfu/SAP-dev2dev___
Factor-talk mailing list
Factor-talk@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/factor-talk