Re: online editor?
am 18.12.2007 00:31:39 von Jeff North
On Mon, 17 Dec 2007 12:02:15 -0800 (PST), in comp.lang.php
dreen1@gmail.com
<4d258bbc-5ec6-401a-b152-d8d89c675b2c@s19g2000prg.googlegroups.com>
wrote:
>| Hello!
>|
>| Does any one of you know about some kind of PHP IDE (or at least an
>| editor with syntax highlighting) that works online? It would be
>| absolutely great if there was something like Google Docs, but for
>| programmers with at least some features normal IDEs provide (support
>| for JS and HTML would be great too).
>|
>| Reason for such need (at least in my case) is I change computers
>| often. I have all my stuff on USB stick, but each time I go somewhere
>| I have to install php, apache, some editor etc. Would be great If I
>| had these online.
You don't need them on-line.
Check out: http://www.chsoftware.net/en/useware/wos/wos.htm
This will allow you to install Apache, php, mySQL and a few other apps
and run them all from the USB drive. Obviously you'll need a large
capacity USB stick (4-6gb). I recommend getting a USB drive, I
currently use an 80gb drive for this purpose.
Text Editors: google Notepad++.
-- ------------------------------------------------------------ -
jnorthau@yourpantsyahoo.com.au : Remove your pants to reply
-- ------------------------------------------------------------ -
Re: online editor?
am 21.12.2007 19:34:03 von Jeremy
dreen1@gmail.com wrote:
> Thanks for all the replies!
>
> @Jerry Stuckle
> TinyMCE seems nice, I even found a PHP Plug in, but its still not what
> Im looking for. Which is, an editor highlighting syntax while I type
> stuff, indentation support etc. just like editors used normally.
> privetepaste.com is also not a good choice for me, its not even a code
> editor ;)
>
> @Paul Lautman, Jeff North
> Unfortunately, running stuff from USB fails as well, because my own
> machine runs Linux and most other computers I use run Windows.
> There could be an option to buy a 6gb USB stick (havent seen anything
> this big yet, but Its only a matter of time) and install a complete
> operating system on it (for example Damn Small Linux, but it would
> most probably be Xubuntu which I have now). Then boot this system on
> any computer I can (which excludes uni comps). But this will not
> happen anywhere in the near future, mostly due to small funds I have.
>
> Pretty much I can safely conclude, after my own research and your
> help, that what Im looking for simply does not exist.
> So... why not fill the gap? I know Java, I think it might be possible
> to write such a tool in this language (as an embedded applet). Plus I
> will have loads of time with the beginning of new year, so I will try
> and see what I can come up with :)
>
> Once again, thank you for your help and time.
> ~Dreen
Codepress:
http://www.codepress.org/
It's a syntax editor for the web; you could hook it into a web-based
file management system of some kind and you're set.
I started one a while ago that's a little slower but much cleaner code
(read the post for compatability notes) Never got around to finishing
it, but you're welcome to pick up where I left off if you're into
Javascript:
http://www.duckwizard.com/2007/08/01/syntax-highlighting-tex tarea-reloaded/
And a demo:
http://www.duckwizard.com/portfolio/web-based-code-editor/
There used to be software called About:Edit that was exactly what you
need (online IDE with file management) but their website
(http://www.aboutedit.com) seems to have disappeared.
Jeremy