Search found 43 matches

by fuzzylogic
Sat May 10, 2008 8:11 pm
Forum: Web Developer Talk
Topic: What do you think about Ruby language?
Replies: 10
Views: 11353

Re: What do you think about Ruby language?

I did a bunch of research on Ruby + Ruby On Rails, had heard some good things (hype) about it and thought it was worth a look. After many hours on the web reading various forums etc. I reached the following conclusions. * RoR is championed by a bunch of very obnoxious and combative supporters, for ...
by fuzzylogic
Sat May 10, 2008 6:50 pm
Forum: HTMLPad / Rapid CSS / Rapid PHP / WeBuilder Feature Requests
Topic: Javascript SyntaxCheck
Replies: 27
Views: 19487

Re: Javascript SyntaxCheck

Its a bug with phpBB as there is no text after the link. If I edit the post to have a full-stop or a smiley on the next line, the underline link shows up. :? yeah, that's why I don't use phpBB (anymore).... it's full of bugs and security flaws. Especially the security flaws... had my server cracked ...
by fuzzylogic
Thu May 08, 2008 6:39 pm
Forum: HTMLPad / Rapid CSS / Rapid PHP / WeBuilder Feature Requests
Topic: Javascript SyntaxCheck
Replies: 27
Views: 19487

Re: Javascript SyntaxCheck

Actually, firebug does all of those things. <<< invisible link here.... ------- too lazy to browse the google results? oh, that's actually a link?!?!? I was trying to figure out what you meant by that second comment, and just now finally noticed that in your first comment you had actually put a ...
by fuzzylogic
Wed May 07, 2008 11:27 pm
Forum: HTMLPad / Rapid CSS / Rapid PHP / WeBuilder Feature Requests
Topic: selecting-hyphanted-strings-with-dbl-click
Replies: 8
Views: 5830

Re: selecting-hyphanted-strings-with-dbl-click

I do not, however agree about string-with-hyphens, because hyphen is a minus sign and for code editor it would not be great if the minus sign would suck in both parts, e.g. ccc=aaa-bbb Why would you want to write your math equations like that? Seems to me the majority of people write them as: ccc ...
by fuzzylogic
Wed May 07, 2008 10:41 pm
Forum: HTMLPad / Rapid CSS / Rapid PHP / WeBuilder Feature Requests
Topic: Javascript SyntaxCheck
Replies: 27
Views: 19487

Re: Javascript SyntaxCheck

hey syrupcore, Thanks for the tip!! I've been using Firebug for quite awhile now to view script errors, but somehow missed the fact that you could also set break points... I suspect it's to do with UI expectations. Firebug does not look like a traditional debugger. I'm looking at the docs now ...
by fuzzylogic
Wed May 07, 2008 2:58 am
Forum: HTMLPad / Rapid CSS / Rapid PHP / WeBuilder Feature Requests
Topic: Formatted variables within strings
Replies: 5
Views: 4021

Doing string appends, besides creating unreadable error prone code is also a very expensive operation involving memory allocation/deallocation and copy/move operations. If you poke around the php website you will find some documentation about this. php's string handling is highly optimized. There is ...
by fuzzylogic
Wed May 07, 2008 2:29 am
Forum: HTMLPad / Rapid CSS / Rapid PHP / WeBuilder Feature Requests
Topic: Remote Debugging
Replies: 3
Views: 2757

how about this post? http://forums.blumentals.net/viewtopic.php?t=2798 I've given up on using Blumentals debugger, it just has way too many issues, such as dying right in the middle of a debug session... and not being able to talk to a web server on another computer but only on the local computer ...
by fuzzylogic
Wed May 07, 2008 1:08 am
Forum: HTMLPad / Rapid CSS / Rapid PHP / WeBuilder Feature Requests
Topic: Javascript SyntaxCheck
Replies: 27
Views: 19487

firebug is already a kick ass javascript debugger. Firebug does not debug anything... it does give you error messages and has a function called "console.log()" which is very useful. But this is not the same as a "real" debugger. (a real debugger allows you to set break points, pause the program ...
by fuzzylogic
Wed May 07, 2008 12:40 am
Forum: HTMLPad / Rapid CSS / Rapid PHP / WeBuilder Feature Requests
Topic: Selecting $ variable names
Replies: 2
Views: 2100

Selecting $ variable names

Despite the auto completion wizard, I still find that the most efficient way to enter a variable name is to copy and paste it. It really is annoying and requires a huge* amount of extra time and effort to select a $variable because I can not double click on it and must instead do a drag select which ...
by fuzzylogic
Wed May 07, 2008 12:26 am
Forum: HTMLPad / Rapid CSS / Rapid PHP / WeBuilder Feature Requests
Topic: Autocomplete enhancement
Replies: 21
Views: 16994

However, I DID notice a difference in what some programs considered the start of a 'word' that is exactly the problem. no consistency is deciding how to handle punctuation and how to define the start of a word. well, for plain text with periods and commas, there is no problem. but programs are not ...
by fuzzylogic
Wed Mar 12, 2008 7:46 am
Forum: HTMLPad / Rapid CSS / Rapid PHP / WeBuilder Feature Requests
Topic: Javascript SyntaxCheck
Replies: 27
Views: 19487

I would love to see a JavaScript debugger integrated into the editor. There are some other editors on the market that have this support, but they don't do php.
by fuzzylogic
Wed Mar 12, 2008 7:40 am
Forum: HTMLPad / Rapid CSS / Rapid PHP / WeBuilder Support
Topic: Xdebug issue
Replies: 14
Views: 8485

yes, I have tried all of the expensive debuggers too... and none of them would do what I needed. they all seem to think that the web is the be all end all of php, but I am writing major amounts of cli programs including daemons in php. and the only debugger I found that would actually work and that ...
by fuzzylogic
Wed Mar 12, 2008 7:18 am
Forum: HTMLPad / Rapid CSS / Rapid PHP / WeBuilder Feature Requests
Topic: subversion support
Replies: 27
Views: 26462

at the risk of being heritical.... I know that svn is popular, but I believe that there is a better alternative. certainly it is good to add support for it, but please don't limit RapidPHP to only supporting svn. As for Microsoft Visual Source Safe, I have spent a lot of time using it and it is ...
by fuzzylogic
Wed Mar 12, 2008 6:55 am
Forum: HTMLPad / Rapid CSS / Rapid PHP / WeBuilder Feature Requests
Topic: Enhancments to Library
Replies: 6
Views: 4699

well what I actually had in mind is a special code that you would put in there like you do for the cursor position. such as <tab> But of course this introduces the problem of what to do if you actually want that as text.... It is possible to turn off the tab behavior for one specific text box ...
by fuzzylogic
Wed Mar 12, 2008 6:26 am
Forum: HTMLPad / Rapid CSS / Rapid PHP / WeBuilder Support
Topic: Xdebug issue
Replies: 14
Views: 8485

I still can't get the debugger to give anything other than Debugger Error Code 5 Command not available. you have to set a break point.... otherwise what happens is that the debugger runs the program through to completion. after the program has finished, then the debugger tries to query it for ...