Reply
Thread Tools
Posts: 334 | Thanked: 55 times | Joined on Aug 2007 @ Eastern Ontario, Canada
#11
Originally Posted by fpp View Post
Oh, if you're already used to Eclipse/Pydev that's different, of course. I was misled by the "Novice/casual" in the title, and responded with someone starting from scratch in mind...
Yes, you are right. I guess my question had two notions behind it.

One is that I want to be able to write some Q&D stuff for my own use and the second was that it seems to me that I am probably not alone in this desire so if something does not exist then that might make a nice project.

We seem to have lost a host of simple application development tools over the last few years (Hypercard, FoxPro) so that now it is quite hard to do personal programming - which folks used to do a lot. The IT is such a personal tool that it seems to cry out for a simple way to build small applications for it. Programming seems to have (mostly) become something that you either do professionally, or you pay somebody else to do for you.
 
Karel Jansens's Avatar
Posts: 3,220 | Thanked: 326 times | Joined on Oct 2005 @ "Almost there!" (Monte Christo, Count of)
#12
Originally Posted by dont View Post
Only just. Borland spun off their developer products to Codegear:
http://www.codegear.com/

Delphi now costs about $2,000!!!

I don't see any mention of ObjectVision - according to Wikipedia they stopped development in 1992 ...
Dang. I fondly remember it as being jolly good fun. Besides that, it's my opinion that forms-based metaphores should work very well on tablet devices.
 
luca's Avatar
Posts: 1,137 | Thanked: 402 times | Joined on Sep 2007 @ Catalunya
#13
Originally Posted by dont View Post
Only just. Borland spun off their developer products to Codegear:
http://www.codegear.com/

Delphi now costs about $2,000!!!
Who needs borland/codegear when you have freepascal?
Last I heard, they abandoned kylix and there's no way to do cross-platform development with their tools, while with freepascal you have Linux, FreeBSD, Mac OS X/Darwin, Mac OS classic, DOS, Win32, Win64, WinCE, OS/2, Netware (libc and classic) and MorphOS under Intel x86, Amd64/x86_64, PowerPC, PowerPC64, Sparc, ARM (but no eabi atm).
For a rad environment comparable to delphi (but that can generate cross-platform gui code for windows, wince, linux and mac os) take a look at lazarus maybe one day it'll be possible to use it to write hildon apps.
 
fpp's Avatar
Posts: 2,853 | Thanked: 968 times | Joined on Nov 2005
#14
Originally Posted by dont View Post
Yes, you are right. I guess my question had two notions behind it.

One is that I want to be able to write some Q&D stuff for my own use and the second was that it seems to me that I am probably not alone in this desire so if something does not exist then that might make a nice project.

We seem to have lost a host of simple application development tools over the last few years (Hypercard, FoxPro) so that now it is quite hard to do personal programming - which folks used to do a lot. The IT is such a personal tool that it seems to cry out for a simple way to build small applications for it. Programming seems to have (mostly) become something that you either do professionally, or you pay somebody else to do for you.
I agree. One way to get around this, that I have used a couple of times, is to write web apps and use them locally (there are a few very easy Python web frameworks for novice/casual developpers that can be used for this, like Snakelets, Karrigell, and of course web.py). However you don't get the same sort of user interface as with a native GUI (except if you add AJAX to the mix, which is not so easy).

A few years ago there was a very interesting project named PythonCard that tried to recapture the ease of use and user-friendliness of HyperCard in Python. It is still around but unfortunately its creator lost interest and it doesn't seem to be moving much ; also it was based on wxPython (wxWidgets binding) which is a good GUI framework, but a bit on the heavy side for small platforms like the ITs...
 
Karel Jansens's Avatar
Posts: 3,220 | Thanked: 326 times | Joined on Oct 2005 @ "Almost there!" (Monte Christo, Count of)
#15
Originally Posted by luca View Post
Who needs borland/codegear when you have freepascal?
Last I heard, they abandoned kylix and there's no way to do cross-platform development with their tools, while with freepascal you have Linux, FreeBSD, Mac OS X/Darwin, Mac OS classic, DOS, Win32, Win64, WinCE, OS/2, Netware (libc and classic) and MorphOS under Intel x86, Amd64/x86_64, PowerPC, PowerPC64, Sparc, ARM (but no eabi atm).
For a rad environment comparable to delphi (but that can generate cross-platform gui code for windows, wince, linux and mac os) take a look at lazarus maybe one day it'll be possible to use it to write hildon apps.
ObjectVision wasn't a programming language, but a visual development tool. In fact, just about the only "code" you were supposed to know, were spreadsheet formulae (or at least something earily similar).

It was also not so much for developing applications, as a quick'n easy tool to input, access, visualise and process data. I liked it, because I could do stuff without having to program (for which I appear to have a genetic indisposition).
 
luca's Avatar
Posts: 1,137 | Thanked: 402 times | Joined on Sep 2007 @ Catalunya
#16
Originally Posted by Karel Jansens View Post
ObjectVision wasn't a programming language, but a visual development tool. In fact, just about the only "code" you were supposed to know, were spreadsheet formulae (or at least something earily similar).

It was also not so much for developing applications, as a quick'n easy tool to input, access, visualise and process data. I liked it, because I could do stuff without having to program (for which I appear to have a genetic indisposition).
Well, I don't know ObjectVision, I was just replying to the delphi part
I do hope that someday one can use Lazarus to make programs for the tablet (I somewhat like python but not enough to write gui apps, while I absolutely loathe C/C++).
 
Posts: 334 | Thanked: 55 times | Joined on Aug 2007 @ Eastern Ontario, Canada
#17
Originally Posted by fpp View Post
I agree. One way to get around this, that I have used a couple of times, is to write web apps and use them locally (there are a few very easy Python web frameworks for novice/casual developpers that can be used for this, like Snakelets, Karrigell, and of course web.py). However you don't get the same sort of user interface as with a native GUI (except if you add AJAX to the mix, which is not so easy).
Yes, I have been pondering this perspective. I like Karrigell - have you ported this to an IT? Still, it is not going to be a bog- simple toolkit.

Originally Posted by fpp View Post
A few years ago there was a very interesting project named PythonCard that tried to recapture the ease of use and user-friendliness of HyperCard in Python. It is still around but unfortunately its creator lost interest and it doesn't seem to be moving much ; also it was based on wxPython (wxWidgets binding) which is a good GUI framework, but a bit on the heavy side for small platforms like the ITs...
I had thought about forking Pythoncard and trying to teach it to generate pyGtk instead of wxPython. The major shortcoming of Pythoncard is no support for sizers, but this would not be a problem for the ITs.

However, I think I will play with Eagle a bit first.

Do you know anything about the 'Easy' package that Nokia INdT are prepping? It will include Eagle, apparently, and I like the title.
 
fpp's Avatar
Posts: 2,853 | Thanked: 968 times | Joined on Nov 2005
#18
Originally Posted by dont View Post
Yes, I have been pondering this perspective. I like Karrigell - have you ported this to an IT? Still, it is not going to be a bog- simple toolkit.
I haven't actually used Karrigell, but some years ago I made such an app with Snakelets, which is in the same vein.It ran (still runs, in fact) on my Zaurus C760, so there's no reason it couldn't on the 770...
Nowadays i'm playing with web.py. Now THAT'S a bogs-simple toolkit ! And for the kind of personal stuff that's going to run only on 127.0.0.1, its lack of features actually is a feature...

Do you know anything about the 'Easy' package that Nokia INdT are prepping? It will include Eagle, apparently, and I like the title.
Hadn't even heard of it... must have missed something, where did you see it mentioned ? I must get in touch with Gustavo.
 
Posts: 334 | Thanked: 55 times | Joined on Aug 2007 @ Eastern Ontario, Canada
#19
Originally Posted by fpp View Post
Hadn't even heard of it... must have missed something, where did you see it mentioned ? I must get in touch with Gustavo.
Second post down:

http://groups.google.com/group/eagle...427a46723691de
 
Posts: 178 | Thanked: 40 times | Joined on Aug 2007 @ UK
#20
Squeak may interest you.
 
Reply


 
Forum Jump


All times are GMT. The time now is 03:34.