Re: [Factor-talk] Dollar amounts

2014-09-03 Thread mr wzrd
Then again, once one has got gpg working, with the commands saved in the terminal history, it is easier just to hit the up arrow a few times, recall the last working command, and hit enter ... Speaking of which, does the listener support command history?

Re: [Factor-talk] Dollar amounts

2014-09-03 Thread Georg Simon
Am Wed, 03 Sep 2014 04:20:06 -0400 schrieb mr wzrd wzr...@gmail.com: Speaking of which, does the listener support command history? What I know is that it remembers the current session. Ctrl+P previous Ctrl+N next --

Re: [Factor-talk] Dollar amounts

2014-09-03 Thread mr wzrd
On 09/03/2014 04:25 AM, Georg Simon wrote: Am Wed, 03 Sep 2014 04:20:06 -0400 schrieb mr wzrd wzr...@gmail.com: Speaking of which, does the listener support command history? What I know is that it remembers the current session. Ctrl+P previous Ctrl+N next Is there a way to map Ctrl+P to

Re: [Factor-talk] Dollar amounts

2014-09-03 Thread mr wzrd
On 09/03/2014 04:25 AM, Georg Simon wrote: Am Wed, 03 Sep 2014 04:20:06 -0400 schrieb mr wzrd wzr...@gmail.com: Speaking of which, does the listener support command history? What I know is that it remembers the current session. Ctrl+P previous Ctrl+N next /Danke schön/ this is what I

Re: [Factor-talk] Dollar amounts

2014-09-03 Thread John Porubek
On Wed, Sep 3, 2014 at 4:20 AM, mr wzrd wzr...@gmail.com wrote: Speaking of which, does the listener support command history? You can wrap the console version of the listener with rlwrap which gives you persistent command history (very useful!). See

Re: [Factor-talk] Dollar amounts

2014-09-03 Thread mr wzrd
On 09/03/2014 11:39 AM, John Porubek wrote: On Wed, Sep 3, 2014 at 4:20 AM, mr wzrd wzr...@gmail.com wrote: Speaking of which, does the listener support command history? You can wrap the console version of the listener with rlwrap which gives you persistent command history (very useful!). See

Re: [Factor-talk] Dollar amounts

2014-09-03 Thread John Benediktsson
The command line listener does not have keybindings for history or searching, you can get that two ways: 1) using ``rlwrap ./factor`` which has the effect of adding history and emacs ctrl-a/k/d/n/p keybindings 2) using ``./factor -run=readline-listener`` which has a per-session history, emacs

Re: [Factor-talk] Dollar amounts

2014-09-02 Thread mr wzrd
Was thinking about the fact that some GUI's are wrappers around an existing command-line utility. On linux, brasero and cdrecord are one example. Then was thinking about man pages and the fact that some have been converted from their original text format to html. Maybe there is a next step

Re: [Factor-talk] Dollar amounts

2014-09-02 Thread mr wzrd
The next question would be how to integrate hand-written HTML page elements with generated HTML. (Flashback to J2EE... ) Duck and cover! On 09/03/2014 12:00 AM, mr wzrd wrote: Was thinking about the fact that some GUI's are wrappers around an existing command-line utility. On linux, brasero

Re: [Factor-talk] Dollar amounts

2014-09-01 Thread John Benediktsson
If you use ``ui.clipboards``, you can do this: IN: scratchpad USE: ui.clipboards IN: scratchpad Factor is awesome clipboard get set-clipboard-content Now, just paste! (One could argue the api could be a little cleaner and hide the use of namespaces when using the standard system

Re: [Factor-talk] Dollar amounts

2014-09-01 Thread mr wzrd
Would be cool to have the whole OS centered around the listener, rather than the terminal. On 09/01/2014 02:13 PM, John Benediktsson wrote: If you use ``ui.clipboards``, you can do this: IN: scratchpad USE: ui.clipboards IN: scratchpad Factor is awesome clipboard get

Re: [Factor-talk] Dollar amounts

2014-08-28 Thread mr wzrd
I'm unsure which type of table to use. I don't think I want a full blown table UI gadget. Looking for something like an html table. Should I use a table style with formatted io? Is there a word to construct an html table? On Thu, Aug 28, 2014 at 1:50 AM, Doug Coleman doug.cole...@gmail.com

Re: [Factor-talk] Dollar amounts

2014-08-28 Thread mr wzrd
Oh wait, table returned a bunch of results, but table. led me to simple-table., which prints out a nice little table, right out of the box. Cheers. -- Slashdot TV. Video for Nerds. Stuff that matters.

Re: [Factor-talk] Dollar amounts

2014-08-28 Thread mr wzrd
Is there a word for printing to the clipboard instead of to the listener output? -- Slashdot TV. Video for Nerds. Stuff that matters. http://tv.slashdot.org/ ___ Factor-talk

Re: [Factor-talk] Dollar amounts

2014-08-27 Thread mr wzrd
What is the best way to get an array of arrays to look like a spreadsheet? -- Slashdot TV. Video for Nerds. Stuff that matters. http://tv.slashdot.org/ ___ Factor-talk

Re: [Factor-talk] Dollar amounts

2014-08-27 Thread Doug Coleman
Try the table. word. On Aug 27, 2014 10:48 PM, mr wzrd wzr...@gmail.com wrote: What is the best way to get an array of arrays to look like a spreadsheet? -- Slashdot TV. Video for Nerds. Stuff that matters.

[Factor-talk] Dollar amounts

2014-08-26 Thread mr wzrd
Also, was wondering if there is planned future support for dollar amounts. Wondering how dollar amounts could be defined using the existing number classes. The dollar amounts I was working with are initially stored as strings. I could not compare values as strings, because 70.70 would not be

Re: [Factor-talk] Dollar amounts

2014-08-26 Thread Doug Coleman
Try the decimals and money vocabularies. On Aug 26, 2014 8:14 PM, mr wzrd wzr...@gmail.com wrote: Also, was wondering if there is planned future support for dollar amounts. Wondering how dollar amounts could be defined using the existing number classes. The dollar amounts I was working with

Re: [Factor-talk] Dollar amounts

2014-08-26 Thread mr wzrd
Isn't it wonderful when one thinks, Gee wouldn't it be nice if we had ..., and it is already there. On Tue, Aug 26, 2014 at 11:16 PM, Doug Coleman doug.cole...@gmail.com wrote: Try the decimals and money vocabularies. On Aug 26, 2014 8:14 PM, mr wzrd wzr...@gmail.com wrote: Also, was