[Unicon-group] Thanks

2003-08-28 Thread Steve Graham
ugh for me. Thanks again. Steve Graham --- This sf.net email is sponsored by:ThinkGeek Welcome to geek heaven. http://thinkgeek.com/sf ___ Unicon-group mailing list [EMAIL PROTECTED] https://lists.sourc

Re: [Unicon-group] How to replace side effects efficiently?

2003-10-27 Thread Steve Graham
I got this post 3 times. >>> Steve Wampler <[EMAIL PROTECTED]> 10/27/2003 8:26:37 AM >>> On Mon, 2003-10-27 at 03:10, Majorinc, Kazimir wrote: > > I see two disadvantages over conventional/Pascal approach, > > (1) Lack of continuity of names makes such program harder to understand and > change

Re: [Unicon-group] Another fun puzzle from the snobol4 crowd...

2004-06-10 Thread Steve Graham
Steve, I'd be interested in what the Snobol solutions looked like (and probably an explanation if available). Steve Graham === >>> Steve Wampler <[EMAIL PROTECTED]> 6/10/2004 1:01:13 PM >>> As a late entry, Steve Hunter submitted the following

Re: [Unicon-group] Compilation from CVS under Windows XP

2005-02-17 Thread Steve Graham
Eleanor, You mentioned OS/9 in your post. I had read about that decades ago and had no idea that it was still in use. Could you expound a bit on what you're doing with it and why it is the preferred OS for that project? TIA, Steve Graham >>> Eleanor <[EMAIL PROTECTED]>

[Unicon-group] Windows Unicon w/ ODBC support

2005-03-21 Thread Steve Graham
support for Windows? TIA, Steve Graham - This e-mail and any attachments may contain CONFIDENTIAL information, including PROTECTED HEALTH INFORMATION. If you are not the intended recipient, any use or disclosure of this information is STRICTLY PROHIBITED

Re: [Unicon-group] Windows Unicon w/ ODBC support

2005-03-21 Thread Steve Graham
Guess I was trying to execute a program which had old-style ODBC functions. After changing such, it worked great! Thanks so much for Unicon. Steve Graham === >>> "Steve Graham" <[EMAIL PROTECTED]> 3/21/2005 4:52:06 PM >>> I downloaded the Windows 11.0 bet

[Unicon-group] Addition Errors

2005-03-22 Thread Steve Graham
I am drawing data from a foreign database using ODBC, which transfer seems to work just fine. However, I'm having some arithmetic errors. As I pull in the data, which is sorted in name/date order, I calculate name and date hour subtotals. Virtually all of the raw data has at the most 2 digits to

Re: [unicon] [Unicon-group] Addition Errors

2005-03-23 Thread Steve Graham
Okay, I've applied the following function to every number and sum and I still get phony results. More ideas? procedure fixNum(aNum) i := integer((aNum * 100) + .5) j := real(i)/100 return j end Steve === >>> <[EMAIL PROTECTED]> 3/22/2005 4:55:30 PM >

Re: [unicon] [Unicon-group] Addition Errors

2005-03-23 Thread Steve Graham
>>> <[EMAIL PROTECTED]> 3/22/2005 8:28:41 PM >>> Steve Graham <[EMAIL PROTECTED]> wrote: > Okay, I've applied the following function to every number and sum and I > still get phony results. More ideas? > > procedure fixNum(aNum) >i :

Re: [Unicon-group] Linux and Unicon Question?

2005-03-23 Thread Steve Graham
I've been using Mepis Linux (a Debian derivative) for some time now and have found it easy to install and use. Have not yet installed and/or used Unicon/Icon on it. Steve Graham === >>> Nolan Clayton <[EMAIL PROTECTED]> 3/19/2005 3:16:13 AM >>> Sorry to bothe

[Unicon-group] More Unicon and SQL/ODBC

2005-03-23 Thread Steve Graham
One last question ;=) In my Unicon program I create an SQL query which is submitted to the database server. I need to add 2 parameters, beginning/ending dates, which I will ask of the user and insert into the "WHERE" portion of the query. However, when I do such, I get nothing back from the serv

Re: [Unicon-group] More Unicon and SQL/ODBC

2005-03-24 Thread Steve Graham
Just took a (closer) look at the data returned to me when I omitted the date conditions, and noticed that the dates were coming back as -mm-dd. So I adjusted my conditions accordingly, and voilá it worked! The moral of this story is give the computer exactly what it wants and it may work.

[Unicon-group] every vs while

2005-07-09 Thread Steve Graham
picked up both elements of the list. Now, I guess I understand the latter, that every activates the generator (!) and so it works. However, I would have supposed that the while construct would continue executing, until the stack was empty, Any comments? TIA, Steve Graham

Fwd: Re: [Unicon-group] every vs while

2005-07-09 Thread Steve Graham
-- Forwarded Message -- Subject: Re: [Unicon-group] every vs while Date: Saturday 09 July 2005 14:25 From: Steve Graham <[EMAIL PROTECTED]> To: [EMAIL PROTECTED] On Saturday 09 July 2005 13:52, Steve Wampler wrote: > On Sat, Jul 09, 2005 at 01:48:12PM -0500, Ste

[Unicon-group] Combinations

2005-10-27 Thread Steve Graham
I'm looking for a way to generate every possible combination of n letters out of a total of m letters. For example, if the available letters are A, B, C and I want to generate all possible 2-letter combinations, it should generate the following: AB BA AC CA BC CB I think I've seen a trivial wa

Re: [Unicon-group] Combinations

2005-10-27 Thread Steve Graham
i-1) Thanks again, Steve >>> Steve Wampler <[EMAIL PROTECTED]> 10/27/05 1:09 PM >>> Steve Wampler wrote: > Steve Wampler wrote: > >>Steve Graham wrote: >> >> >>>I'm looking for a way to generate every possible combination of n letters &

Re: [Unicon-group] Combinations

2005-10-27 Thread Steve Graham
It does. Thanks. >>> Steve Wampler <[EMAIL PROTECTED]> 10/27/05 5:57 PM >>> Steve Graham wrote: > Steve, > >Thanks for the feedback. You were right: I did need the permutations.. > >2 questions: >1) What does the '1+:' accompli

[Unicon-group] 13 Coins (in a fountain?)

2005-10-28 Thread Steve Graham
>From comp.lang.prolog. Looks like fun. Steve === On Sun, 02 Oct 2005 21:21:59 +, Harry wrote: > Having learned Prolog in college more than 20 years ago, I admitted > I could remember not much about Prolog. > Nows comes my son's (7th grade) math issue. > I think it can be solved easily us

[Unicon-group] Coins

2005-11-13 Thread Steve Graham
Here is my program and solution. I would appreciate any comments on structure and how to better take advantage of Unicon's unique features. TIA, Steve Graham === Program: global coins procedure main() local cumulativeSum, level, numCoinsLeft init() level

Re: [Unicon-group] 13 Coins (in a fountain?)

2005-11-14 Thread Steve Graham
Here is my latest attempt. I would appreciate any comments, particularly about how to better take advantage of Unicon's strengths. Thanks, Steve === global coins, numLevels, targetSum, totalCoins, tries procedure main() local cumulativeSum, level, numCoinsLeft init() level :

[Unicon-group] Installing on Windows

2008-07-11 Thread Steve Graham
I've downloaded version 11.3 of Unicon and it seems to install correctly. However, when I fire it up, I get a window (ui.exe) and a message pane asking, "What, no binaries?..." When I click okay on the message pane, I get the editor and the other window has the message "Did not find expected u

Re: [Unicon-group] Installing on Windows

2008-07-11 Thread Steve Graham
. Steve Graham === --- On Fri, 7/11/08, Clinton Jeffery <[EMAIL PROTECTED]> wrote: > From: Clinton Jeffery <[EMAIL PROTECTED]> > Subject: Re: [Unicon-group] Installing on Windows > To: [EMAIL PROTECTED] > Date: Friday, July 11, 2008, 5:34 PM > Steve, > > Have you add

[Unicon-group] Making Unicon

2008-10-03 Thread Steve Graham
I got adventurous and decided to use version 11.4 source code to build Unicon. I downloaded the file, unzipped it to /usr/share/unicon and executed 'make X-Configure name=intel_linux'. That seemed to go well enough. Then I executed 'make Unicon'. That went less well. The errors follow. I am r

[Unicon-group] Making Unicon

2008-10-03 Thread Steve Graham
I got adventurous and decided to use version 11.4 source code to build Unicon. I downloaded the file, unzipped it to /usr/share/unicon and executed 'make X-Configure name=intel_linux'. That seemed to go well enough. Then I executed 'make Unicon'. That went less well. The errors follow. I a

[Unicon-group] Web Apps with Unicon

2008-12-20 Thread Steve Graham
Anyone have any experience using Unicon for web apps?  Instead of Perl/Python/PHP/etc?  I'd be especially interested in how much memory it took (compared to the others) and how much CPU. Steve -- __

[Unicon-group] Help

2009-01-27 Thread Steve Graham
I've got a simple problem which would cause me to pull out my hair if that was still an option. The following very short program is not printing out aField. When I run it, I see that there are 269 elements in fieldNames and they print out with the 'every write(!fieldNames)' line. However, lat

[Unicon-group] Problem in building Unicon 02-10-2007

2009-03-17 Thread Steve Graham
I am trying to build this on a Mepis (Debian-derivative) Linux i-386 based system and got the following messages after the 2 make commands. I had similar problems in trying to set up uni.zip. I would appreciate any assistance in helping me build Unicon. TIA, Steve --- mikey...@mepis1:~/Deskto

[Unicon-group] Fwd: Problem in building Unicon 02-10-2007

2009-03-17 Thread Steve Graham
]: *** [interp_all] Error 2 make[1]: Leaving directory `/home/mikeynew/Desktop/Unicon-2007-02-10/src/runtime' make: *** [Icont] Error 2 mikey...@mepis1:~/Desktop/Unicon-2007-02-10$ --- --- On *Tue, 3/17/09, Steve Graham * wrote: From: Steve Graham Subject: [Unicon-group] Problem in buildin

[Unicon-group] Problem in building Unicon 02-10-2007

2009-03-17 Thread Steve Graham
; `/home/mikeynew/Desktop/Unicon-2007-02-10/src/runtime' >> make[1]: *** [interp_all] Error 2 >> make[1]: Leaving directory >> `/home/mikeynew/Desktop/Unicon-2007-02-10/src/runtime' >> make: *** [Icont] Error 2 >> mikey...@mepis1:~/Desktop/Unicon-2007-02-1

[Unicon-group] Fonts

2009-03-17 Thread Steve Graham
I've got Unicon loaded on my Linux system and I would like to improve or change the fonts it utilizes. How does on go about that? Thanks, Steve -- Apps built with the Adobe(R) Flex(R) framework and Flex Builder(TM) are p

[Unicon-group] UI aborting

2009-03-17 Thread Steve Graham
I can edit and compile from ui on Linux just fine. However, when I attempt to enter run-time arguments, the window simply disappears. Any thoughts on how to fix this? TIA, Steve -- Apps built with the Adobe(R) Flex(R)

[Unicon-group] Fw: Re: Fonts

2009-03-17 Thread Steve Graham
Actually, I wanted to choose the fonts used by ui Steve --- On Tue, 3/17/09, Clinton Jeffery wrote: From: Clinton Jeffery Subject: Re: [Unicon-group] Fonts To: "Steve Graham" Cc: unicon-group@lists.sourceforge.net Date: Tuesday, March 17, 2009, 5:05 PM Steve, xlsfonts lists all

Re: [Unicon-group] UI aborting

2009-03-17 Thread Steve Graham
uot;Config" menu that has a Font... option. When I tried it out, it died > with a runtime error > on me if I didn't pick a Color, but did work (on the messages window only) > when I did pick > a color. > > So: I'm going to recommend newer sources if that's applic

Re: [Unicon-group] UI aborting

2009-03-18 Thread Steve Graham
i.zip for the next > few days if I get problem reports. > > Cheers, > Clint > > > On Tue, Mar 17, 2009 at 5:11 PM, Steve Graham < > solitary.wandere...@gmail.com> wrote: > >> I am using the uni.zip version: &version = Unicon Version 11.4. January >>

[Unicon-group] Feedback on Unicon Version 11.5, April 27, 2008

2009-03-18 Thread Steve Graham
I bring up ui and open a file by selecting the open button, going through the directories, and finally selecting a file. It opens up in ui just fine. Then I close it by pressing the Close button. It goes away, but ui remains open. Then I attempt to open the file by following the same steps as b

Re: [Unicon-group] Feedback on Unicon Version 11.5, April 27, 2008

2009-03-18 Thread Steve Graham
What would be nice is after you go through the directories to choose a file, the next time you go to open the file the directory would default to the last one from which you chose a file. Steve On Wed, Mar 18, 2009 at 11:19 AM, Steve Graham < solitary.wandere...@gmail.com> wrote: > I

Re: [Unicon-group] Feedback on Unicon Version 11.5, April 27, 2008

2009-03-18 Thread Steve Graham
at 11:19 AM, Steve Graham < solitary.wandere...@gmail.com> wrote: > I bring up ui and open a file by selecting the open button, going through > the directories, and finally selecting a file. It opens up in ui just fine. > > Then I close it by pressing the Close button. It

Re: [Unicon-group] Icon programming for humanists

2009-08-14 Thread Steve Graham
Clint, When will the link be up on the website? Steve --- On Fri, 8/14/09, Clinton Jeffery wrote: From: Clinton Jeffery Subject: [Unicon-group] Icon programming for humanists To: "Unicon group" Date: Friday, August 14, 2009, 3:08 AM Dear friends, A draft of the 2nd edition of Alan Corre's

Re: [Unicon-group] Procedure in program never called

2009-10-29 Thread Steve Graham
Why wasn't the original solution finding all of the words in each line? Steve On Thu, Oct 29, 2009 at 2:19 PM, Steve Wampler wrote: > Sidney Reilley II wrote: > > #!/opt/local/bin/icon > > > > global letters > > procedure main() > > while word_length(read()) > > printout() > > end > >

Re: [Unicon-group] Procedure in program never called

2009-10-29 Thread Steve Graham
Looks like I typed it in wrong. Sorry. Steve On Thu, Oct 29, 2009 at 3:42 PM, Steve Wampler wrote: > Steve Graham wrote: > > Why wasn't the original solution finding all of the words in each line? > > For simple input, it should (and seems to, for my simple tests under &

[Unicon-group] 2 Questions

2010-05-13 Thread Steve Graham
1) Is there a document which would give the basics of programming in Unicon in a Windows environment? 2) I can't remember the 2nd question. How sad :-( -- ___ Unicon-group mail

[Unicon-group] Problem opening file

2010-06-17 Thread Steve Graham
I'm running the following program on a Windows 7 x64 box.  When I execute icont delete_spaces.icn I get the following: Translating: delete_spaces.icn:   main No errors Linking: When I execute this: C:\Program Files (x86)\Unicon\bin>delete_spaces I get this: Unable to open input file I've

Re: [Unicon-group] Problem opening file

2010-06-17 Thread Steve Graham
able to open output file") while (line := read(in)) do {    read(in)    write(out,line) } close(in) close(out) a := 1 end --- --- On Thu, 6/17/10, Hugh Sasse wrote: From: Hugh Sasse Subject: Re: [Unicon-group] Problem opening file To: "Steve Graham" Cc: "Unicon Mailing List&

Re: [Unicon-group] Problem opening file

2010-06-17 Thread Steve Graham
Thanks Wade and all.  That fixed it. Thanks, Steve --- On Thu, 6/17/10, Wade Bowmer wrote: From: Wade Bowmer Subject: Re: [Unicon-group] Problem opening file To: "Unicon Mailing List" Date: Thursday, June 17, 2010, 5:12 PM On Fri, 18 Jun 2010 03:57:55 +1000, Steve Graham wrot

Re: [Unicon-group] Problem opening file

2010-06-18 Thread Steve Graham
I thought I would see what you got when you only included 1 backslash in the file description in Unicon: C:\Program Files (x86)\Unicon\bin>delete_spaces.exe This is in: c:userssteve⌂esktop⌂d_va.go Interesting. Another question:  When I'm using the IDE, the date/time stamp changes on the .icn f

Re: [Unicon-group] Problem opening file

2010-06-18 Thread Steve Graham
To be more explicit, this is the program which printed the string below: procedure main() in := "c:\users\steve\desktop\dd_va.go" write("This is in: ",in) end Steve --- On Fri, Jun 18, 2010 at 10:07 AM, Steve Graham wrote: > I thought I would see what you got w

Re: [Unicon-group] Problem opening file

2010-06-18 Thread Steve Graham
s the undefined escaped characters and just deletes the > backslash. However \d is Control-D which is being replaced in the string > below. > > Jafar > > > > > On Fri, Jun 18, 2010 at 12:18 PM, Steve Graham < > solitary.wandere...@gmail.com> wrote: > >>

[Unicon-group] find() question

2010-07-21 Thread Steve Graham
procedure test() astring := "honolulu" write("astring=",astring) every fnd := find("lu",astring) do { write("fnd=",fnd) astring[fnd:fnd+2] := "" write("astring=",astring) write() astring := astring } write("End: astring=",astring) end Invoking this f

Re: [Unicon-group] find() question

2010-07-21 Thread Steve Graham
lud fnd=4 astring=abcd End: astring=abcd Steve --- On Wed, 7/21/10, Clinton Jeffery wrote: From: Clinton Jeffery Subject: Re: [Unicon-group] find() question To: "Steve Graham" Cc: unicon-group@lists.sourceforge.net Date: Wednesday, July 21, 2010, 4:45 PM As you may recall, strings are

[Unicon-group] Code review

2010-07-22 Thread Steve Graham
I use Unicon infrequently enough that it probably looks like another language written in Unicon. In the program below, I am running through 2 levels of directories to print the files in the 2nd level. If you have any suggestions on how to better take advantage of Unicon's features, I would apprec

Re: [Unicon-group] find() question

2010-07-22 Thread Steve Graham
passed, not some new string that has been > assigned to that same variable later on. In an "every", find() is not > called again, so astring is not being re-evaluated each time through the > loop -- the call-in-progress is resumed where it left off. > > Clint > > O

[Unicon-group] Fwd: New Year Primes Challenge

2011-01-16 Thread Steve Graham
Saw this in another group and thought it looked interesting. I think the reward has already been claimed though. Steve === Greetings and happy new year; I thought I would set a little challenge for you to try for fun and profit. So here is my NEW YEAR PRIMES CH

[Unicon-group] Code challenge

2011-01-19 Thread Steve Graham
I saw this on comp.lang.smalltalk.dolphin and what struck me was how wordy it was. They're just trying to replace all occurrences of a substring in a string with another substring. In my work language (MUMPS), I would do this as follows: replace(a,str1,str2) ; n fnd s fnd=0 f s f

Re: [Unicon-group] Error messages and unfinished projects ... and a flame-bait sidetrack

2011-01-28 Thread Steve Graham
Don't you guys ever sleep-;) On Fri Jan 28th, 2011 3:51 AM EST Clinton Jeffery wrote: >I like Python. Its designer made good use of some of the best ideas from >other languages, unlike many scripting languages whose authors seem to have >had only one source of inspiration. If Python had real gene

[Unicon-group] IDE peculiarities on Windows 7 Professional (64)

2011-02-01 Thread Steve Graham
Another thing I've noticed is that when I load a .icn file and try to create an executable, I get a message in the lower window, such as "wuncion -quiet -log C:\Users\Steve\AppData\Local\Temp\ui11769501 farb.icn" However, I see no error messages and no created executables. Also the odd thing is m

Re: [Unicon-group] IDE peculiarities on Windows 7 Professional (64)

2011-02-01 Thread Steve Graham
On Tue, Feb 1, 2011 at 10:40 AM, Steve Graham wrote: > I noticed that wunicon seemed to be calling wicont. So, I tried compiling > farb.icn (in the ipl/progs dir) with wicont. It could not do it. Neither > could icont. > > > Steve > > === > > > On Tue, Feb

[Unicon-group] Idea

2011-02-11 Thread Steve Graham
I have an idea for a quick app: 1. Have a list of names - some for group leaders and some for group members. 2. Store these names in a text file. 3. At startup the app will read the file and for each group leader: a. Create a small movable window with his name in it b. Create a small

Re: [Unicon-group] Idea

2011-02-11 Thread Steve Graham
Actually I solved this with: open(aname,"g","fheight=20",*"font=typewriter,30"*, "fg=black", "bg=white",pos, "size=" || width || ",200","windowlabel=" || aname) Steve --- On Fri, Feb 11, 2011 at 9:49 AM, Steve

Re: [Unicon-group] Idea

2011-02-11 Thread Steve Graham
arate > window handle to write things > with that font, as opposed to WAttrib(w, "font=typewriter,30") which would > be suitable in some > circumstances. > > On Fri, Feb 11, 2011 at 2:59 PM, Steve Graham < > solitary.wandere...@gmail.com> wrote: > >

[Unicon-group] ivib question

2011-02-15 Thread Steve Graham
I'm trying my hand at a windows app and I've set up 2 selection lists in ivib. For each list's event, I chose SELECTION_KEY_EVENT. And what I'd like to happen is when the user chooses from a selection list, I would like to capture which entry they chose. Not knowing how to do that, I changed the

[Unicon-group] ivib question

2011-02-15 Thread Steve Graham
_1.get_string_selection()) >>end >> >> get_string_selection() will get the selected item. There are other >> functions that serve other purposes. Make sure to use the event >> SELECTION_CHANGED_EVENT if you want the code to execute whenever there is a >> chang

Re: [Unicon-group] ivib question

2011-02-15 Thread Steve Graham
", "J Law", "D Muncy", ""]). Would fetching it be "get_contents"? Thanks so much. Steve On Tue, Feb 15, 2011 at 12:54 PM, Steve Graham < solitary.wandere...@gmail.com> wrote: > Thanks, Clint. And I was wrong about SELECTION_CHANGE

Re: [Unicon-group] ivib question

2011-02-18 Thread Steve Graham
pdate the label/selected > item. > > Cheers, > Jafar > > > > > On Tue, Feb 15, 2011 at 3:50 PM, Steve Graham < > solitary.wandere...@gmail.com> wrote: > >> Worked like a charm. Thanks, Steve >> >> >> On Tue, Feb 15, 2011 at 4:48

Re: [Unicon-group] ivib question

2011-02-18 Thread Steve Graham
- On Fri, Feb 18, 2011 at 10:54 AM, Steve Graham < solitary.wandere...@gmail.com> wrote: > A different question. > > I wrote a program to create a program. The latter has a number of > label/checkbox/list/textlist groups. When I try to compile the created > program, no probl

[Unicon-group] Lesson Learned

2011-02-19 Thread Steve Graham
What was funny about this is that it had nothing to do with setting up the window and its elements. Rather it involved an error in trying to return an undefined string and setting it into a window element. Steve --- On Fri, Feb 18, 2011 at 11:28 AM, Steve Graham < solitary.wand

[Unicon-group] Table of procedures

2011-02-21 Thread Steve Graham
Ralph, and all of the others who designed such wonderful languages such as Unicon and Icon and continue to provide assistance to those who wish to utilize them. Steve Graham -- The ultimate all-in-one performance toolki

[Unicon-group] Syntax Errors

2011-02-21 Thread Steve Graham
When trying to compile a route, I keep getting syntax error (400;369) Here is the snippet that offends. The line is marked. procedure printReport(districts) local district, i, routes outrp := open("route_print.txt", w) | stop("Unable to write to route_print.txt") every district := (1

Re: [Unicon-group] Syntax Errors

2011-02-22 Thread Steve Graham
Thank you for all of your help and suggestions. I never could have done this or other projects without your support. Steve --- On Mon, Feb 21, 2011 at 7:44 PM, Steve Graham wrote: > When trying to compile a route, I keep getting syntax error (400;369) > > Here is the snippet tha

Re: [Unicon-group] Syntax Errors

2011-02-22 Thread Steve Graham
On Tue, Feb 22, 2011 at 7:54 AM, Steve Graham wrote: > On Mon, Feb 21, 2011 at 8:40 PM, Steve Wampler > wrote: > >> Steve Graham wrote: >> >>> When trying to compile a route, I keep getting syntax error (400;369) >>> >>> Here is the snippet that

[Unicon-group] system()

2011-02-24 Thread Steve Graham
I'm trying to copy a file from within a program using system("copy hts.txt hts_20110224346390.txt",,,). I get no error output to the DOS window from which I launch the program and, while the error file is created, its size is 0. Any ideas why no copy occurred? I am using Windows 7 (64-bit). Th

[Unicon-group] Stripping HTML

2011-03-03 Thread Steve Graham
Is there any code in the Unicon library to strip HTML from a file? Thanks, Steve -- Free Software Download: Index, Search & Analyze Logs and other IT data in Real-Time with Splunk. Collect, index and harness all the fast

Re: [Unicon-group] RC Update - top 20!

2011-05-25 Thread Steve Graham
Congratulations!!! --- On Wed, 5/25/11, David Gamey wrote: From: David Gamey Subject: [Unicon-group] RC Update - top 20! To: unicon-group@lists.sourceforge.net Date: Wednesday, May 25, 2011, 8:57 PM Folks, Just an update, Steve and I have been busy on RC and were recently joined by Peter who

Re: [Unicon-group] How to confirm the version?

2011-07-15 Thread Steve Graham
I wonder if all of us who use/follow Unicon/Icon are of your age? --- On Fri, 7/15/11, Jonathan Kaye wrote: From: Jonathan Kaye Subject: Re: [Unicon-group] How to confirm the version? To: Cc: unicon-group@lists.sourceforge.net Date: Friday, July 15, 2011, 7:47 AM Jafar Al-Gharaibeh ha scritto

[Unicon-group] Birth Year/Ages

2011-07-15 Thread Steve Graham
aced Under Presidential Control after Steel Unions Threaten to StrikeEgypt Military coup d'etat in Egypt headed by NasserNorway The Winter Olympic Games are held in Oslo, Norway --- On Fri, 7/15/11, David Gamey wrote: From: David Gamey Subject: Re: [Unicon-group] How to confirm the version? To

[Unicon-group] Age Buckets (Was - Re: How to confirm the version?)

2011-07-15 Thread Steve Graham
Feel free to update 1 - 20: 021-30: 031-40: 041-50: 051-60: 161-70: 071-80: 081-??: 0 --- On Fri, 7/15/11, David Gamey wrote: From: David Gamey Subject: Re: [Unicon-group] How to confirm the version? To: "Steve Graham" , "Jonathan Kaye" Cc: unicon-group@lists.sourcefo

[Unicon-group] Road to Unicon

2011-07-15 Thread Steve Graham
The Lisp community has a Road to Lisp category and I thought this might be of interest to those of us in the Unicon community.  Perhaps it might even be put on the website. I first picked up Icon in the 1980's or 1990's (don't remember which).  It was featured in the available selections of a sh

Re: [Unicon-group] Age Buckets (Was - Re: How to confirm the version?)

2011-07-15 Thread Steve Graham
On Fri, Jul 15, 2011 at 10:30 AM, Steve Wampler wrote: On 07/15/2011 08:50 AM, David Gamey wrote: > > I'm in > ---- > *From:* Steve Graham > *To:* unic

Re: [Unicon-group] Age Buckets (Was - Re: How to confirm the version?)

2011-07-15 Thread Steve Graham
Did I miss a bucket? Which bucket are you in? --- On Fri, 7/15/11, Phillip wrote: From: Phillip Subject: Re: [Unicon-group] Age Buckets (Was - Re: How to confirm the version?) To: "Steve Graham" Cc: unicon-group@lists.sourceforge.net Date: Friday, July 15, 2011, 2:36 PM I'm i

Re: [Unicon-group] Age Buckets (Was - Re: How to confirm the version?)

2011-07-15 Thread Steve Graham
;-) 1 - 20: 0 21-30: 0 31-40: 1 41-50: 0 51-60: 2 61-70: 3 71-80: 0 81-??: 0 --- On Fri, 7/15/11, Jafar Al-Gharaibeh wrote: From: Jafar Al-Gharaibeh Subject: Re: [Unicon-group] Age Buckets (Was - Re: How to confirm the version?) To: "Phillip" Cc: "Steve Graham&

[Unicon-group] OT: Scraping data from Windows app screen

2011-09-16 Thread Steve Graham
I need to pick up the text (field prompts and data) from a data entry screen.  Is there a utility which could do such?  An array of text by rows would be preferable, but other formats would likely suffice. Thanks, Steve ---

[Unicon-group] IRC Channel

2011-09-16 Thread Steve Graham
Is there a unicon IRC channel?  If so, on which network is it found? Thanks, Steve-- BlackBerry® DevCon Americas, Oct. 18-20, San Francisco, CA http://p.sf.net/sfu/rim-devcon-copy2__

[Unicon-group] Fw: OT: Scraping data from Windows app screen

2011-09-16 Thread Steve Graham
- Forwarded Message - From: Steve Graham To: "jeff...@uidaho.edu" Sent: Friday, September 16, 2011 2:53 PM Subject: Re: [Unicon-group] OT: Scraping data from Windows app screen Okay. Here's the situation.  A group at work is already entering data into a Windows-ba

[Unicon-group] Fw: IRC Channel

2011-09-16 Thread Steve Graham
- Forwarded Message - From: Steve Graham To: "jeff...@uidaho.edu" Sent: Friday, September 16, 2011 2:57 PM Subject: Re: [Unicon-group] IRC Channel Neat.  Will have to look at it. I noticed on google that an IRC channel was set up.  I guess few people used it. Woul

Re: [Unicon-group] IRC Channel

2011-09-16 Thread Steve Graham
I'm using X-Chat, am on the freenode network and have joined the #unicon channel.  This link - http://xchat.org/docs/start/ - should provide info on how to use it to get started. Steve From: Clinton Jeffery To: Steve Graham Cc: Unicon group Sent: F

Re: [Unicon-group] OT: Scraping data from Windows app screen

2011-09-17 Thread Steve Graham
Thanks to all those who have offered suggestions.  Steve From: Steve Graham To: Unicon Mailing List Sent: Friday, September 16, 2011 10:07 AM Subject: [Unicon-group] OT: Scraping data from Windows app screen I need to pick up the text (field prompts and data

[Unicon-group] Fw: OT: Scraping data from Windows app screen

2011-09-17 Thread Steve Graham
.  So, I'm guessing that this api has been defined, but is not used in any sample programs in the ipl. Any advice on how to use it? Thanks again, Steve ____ From: Steve Graham To: Unicon Mailing List Sent: Friday, September 16, 2011 10:07 AM Subject: [Unicon

Re: [Unicon-group] Fw: OT: Scraping data from Windows app screen

2011-09-19 Thread Steve Graham
Matt, I'll take a look at this. Thanks, Steve From: Matt Oates (Home) To: Steve Graham Cc: Unicon Mailing List Sent: Monday, September 19, 2011 6:51 AM Subject: Re: [Unicon-group] Fw: OT: Scraping data from Windows app screen On 17 September 2011

Re: [Unicon-group] IRC Channel

2011-09-19 Thread Steve Graham
I'm using X-Chat on Windows 7 right now and noticed it was also available for Ubuntu.  I tried connecting to #unicon using Ubuntu's provided Empathy and had no problem. From: Matt Oates (Home) To: jeff...@uidaho.edu Cc: Unicon group Sent: Monday, September 19,

Re: [Unicon-group] Fw: OT: Scraping data from Windows app screen

2011-09-19 Thread Steve Graham
Thanks, Clint.  Steve From: Clinton Jeffery To: Steve Graham Sent: Monday, September 19, 2011 9:25 AM Subject: Re: [Unicon-group] Fw: OT: Scraping data from Windows app screen Philosophically, I am a pragmatist. So when I say something like "Unicon do

Re: [Unicon-group] fork under windows?

2011-10-30 Thread Steve Graham
What about LibreOffice (http://www.libreoffice.org/)? From: Kostas Oikonomou To: unicon-group@lists.sourceforge.net Sent: Sunday, October 30, 2011 8:16 AM Subject: Re: [Unicon-group] fork under windows? Clint, I agree that OO is becoming less open and more of a

[Unicon-group] Nitty Griddy 2011 - Programming Problem

2011-12-13 Thread Steve Graham
I've thought of this problem on and off for a while and figured others might be interested too.  I don't know if attachments are allowed here, so you can see the problem at http://search.4shared.com/postDownload/3n_ayOg3/Nitty_Griddy_2011001.html It is like sudoku with letters.  Words should be

Re: [Unicon-group] New Windows Binaries

2012-02-03 Thread Steve Graham
Thanks, Jafar. Steve From: Jafar Al-Gharaibeh To: Unicon Sent: Thursday, February 2, 2012 6:43 PM Subject: [Unicon-group] New Windows Binaries Dear Unicon Community,   New Windows Binaries (12.0.2) have been uploaded to sourceforge.net just now, bringing

Re: [Unicon-group] 1st Rosettacode challenge

2014-01-31 Thread Steve Graham
Perhaps another challenge might be to translate the Machine Learning tutorials here (http://burakkanber.com/blog/machine-learning-in-other-languages-introduction/) from Javascript to Unicon. Steve On Fri, 1/31/14, David Gamey wrote: Subject: [Uni

[Unicon-group] Bignum facilities

2015-02-25 Thread Steve Graham
I've also heard that Icon (and Unicon?) has bignum facilities.  Can anyone summarize them? Thanks, Steve -- Dive into the World of Parallel Programming The Go Parallel Website, sponsored by Intel and developed in partners

[Unicon-group] Origin of SNOBOL

2015-08-22 Thread Steve Graham
Thought this link would be of interest to the groups:  http://amhistory.si.edu/archives/AC0196_gris720521.pdf -- ___ Unicon-group mailing list Unicon-group@lists.sourceforge.net

Re: [Unicon-group] Origin of SNOBOL

2015-08-22 Thread Steve Graham
| jobs | submit login Maintainer, sole developer, sole active user of the programming language SPITBOL (daveshields.me) | | | | View on news.ycombinator.com | Preview by Yahoo | | | |   | From: Steve Graham To: Icon List ; Unicon Group Sent: Saturday, August 22, 2015 4:52 PM

Re: [Unicon-group] Soft thread changes

2016-04-29 Thread Steve Graham
ObjectIcon? From: Bruce & Breeanna Rennie To: Jafar Al-Gharaibeh Cc: Unicon group Sent: Thursday, April 28, 2016 8:35 PM Subject: Re: [Unicon-group] Soft thread changes Good afternoon Jafar, As I am able I'll have a look and see if I can add anything of worth for the implementat

[Unicon-group] Uses of Unicon

2016-07-20 Thread Steve Graham
Shawn, I've used Icon/Unicon in the past, but not so much recently. I am interested in what you and others use it for. I used it a few years ago to create a Windows app to keep track of families and men assigned to visit them.  This was my  first foray into Windows programming.  It was a blast an

[Unicon-group] Fw: Uses of Unicon

2016-07-20 Thread Steve Graham
Didn't go through the first time. - Forwarded Message - From: Steve Graham To: Shawn Fratis ; "unicon-group@lists.sourceforge.net" Sent: Wednesday, July 20, 2016 12:28 PM Subject: Uses of Unicon Shawn, I've used Icon/Unicon in the past, but not so

[Unicon-group] Unable to build from Alpha 13.0

2016-08-09 Thread Steve Graham
I am running on an Ubuntu 16.04.1 LTS system with x64.  After getting the errors below, I added some libssl files through Synaptic.  Still getting the following as part of the build output.  Any help would be appreciated. Steve --- ../../bin/libtp.a(tpdssl.o): In function `init_openssl':tpdssl.

  1   2   >