473,769 Members | 2,091 Online
Bytes | Software Development & Data Engineering Community
+ Post

Home Posts Topics Members FAQ

What IDE are you using?

First of all, I'm an Asian and I need to input Japanese, Korean and so
on. I've tried many PHP IDEs today, but almost non of them supported
Unicode (UTF-8) file.

I've found that the only Unicode support IDEs are DreamWeaver 8 and
Zend PHP Studio.

DreamWeaver provides full support for Unicode. However, DreamWeaver is
a web editor rather than a PHP IDE. It only supports basic IntelliSense
(or code completion) and doesn't have anything like a class view.

Zend PHP Studio supports Unicode but have many problems. It couldn't
display Korean when I set a Japanese font for the editor, and couldn't
display Japanese when I set a Korean font for the editor. The most
obvious problem is it's too slow. It provides really good support for
coding like class view, debugging and advanced IntelliSense, but it's
too slow for my PC.

I think you're PHP professinals. What do you use for PHP development?
I'd like to hear from you. Thanks.

Oct 23 '05
121 10164
Oli Filth wrote:
Jerry Stuckle said the following on 27/10/2005 05:59:
Oli Filth wrote:
Check back through your messages. You indicated one of the best
reasons to use an IDE is for the autocompletion (or hints) for function.

However, not in this part of the thread - I was instead talking about
navigating the source code itself, with class views and associated tools.


This thread is about using IDE's.
I'm saying this is bogus - proper documentation replaces the need.

See the argument below...

With a decent Java IDE, they are - you press F1 (or Ctrl+F1, or
whatever), and you land straight on the documentation of the
class/method/variable in question.


Ah, another IDE - Java this time!

With Windows help files, you don't NEED an IDE!

Yes, I know that! And with HTML documentation, you don't need chm files;
and with a hard-copy manual, you don't need HTML documentation; we could
go on...


But HTML documentation cannot be as easily searched and indexed,
especially if it's on an intranet.
By the logic of your argument, you should be using Notepad to do your
coding!

Actually, I use TextPad for a lot of it.
The point is that pressing a single button (for me at least), is much
quicker and less distracting than pressing Alt+Tab, making sure the
caret is in the search box, typing the function name, selecting the
correct option, reading the definition in the help-file, temporarily
memorising it (or copy-pasting it), and then pressing Alt+Tab to get
back to the editor and then typing it in.

OK, to each his own. I would rather have the help files separate.

And BTW - generally I don't do Alt+Tab plus whatever. Most of the time
I have the help files up on a second computer and just switch keyboards.
(Feel free to insert your own key combo instead of Alt+Tab!)

And BTW - this is a PHP newsgroup, not a Java newsgroup.

Indeed, however this thread has become more generalised and seems to be
about IDEs in general...


You've tried to make it that way, true. But this is about PHP IDE's.

--
=============== ===
Remove the "x" from my email address
Jerry Stuckle
JDS Computer Training Corp.
js*******@attgl obal.net
=============== ===
Oct 27 '05 #81
Jacob Atzen wrote:
On 2005-10-27, Jerry Stuckle <js*******@attg lobal.net> wrote:
I learned about project management when I was working for IBM back in
the 80's. Since then I've been both a programmer and a PM. When I've
been a PM, the documentation is complete long before programming starts
(and yes, I get the programmers involved in the design). And I've been
a programmer on projects where the design is done properly. Every one
was completed on time and within budget, given reasonable time and
budgetary constraints. And change orders were handled by modifying the
design - which showed exactly how it would affect other parts of the
project.

That sounds impressive and quite contrary to most testimonials I've ever
read. And quite opposite of the whole agile movement. How are you able
to design everything up front? What methods do you use? I find it very
hard to contain a complete design and anticipating all the problems that
always show up?


Practice, Practice, Practice.

Just like you do when you're programming. Start with large blocks.
Break each large block down into smaller blocks. Keep going until you
have real little blocks :-).

Seriously - it is an art, and takes a lot of experience to do it well.
I can't say I'm great at it - there are much better designers out there
than I am. But I get along OK.

But you do take the project and break it up into functional parts.
Figure out what each part has to do (functionality) and what it needs to
do its job (interaction).

You won't go through it once and get everything exactly right. It's a
repetitive effort - you'll miss things the first time around and have to
add them the second time around. Keep going until you're fairly
comfortable with the design.

Even after programming starts you'll find problems in the design you
didn't see before - and/or the customer will change the requirements.
The advantage here is - when this happens, you can determine what you
need to change - and know EXACTLY what that will affect. Additionally,
you can estimate how much it will affect your project schedule - for
instance, a change to code that hasn't been written yet will probably
have a minor affect on the schedule. But if it requires major changes
to large parts of the code (less likely with good a good OO design), you
can estimate how much more time it will add to the project.

I find it easier to do with OO programming; there is less interaction
between objects than in functional programming. The isolation makes
things much easier.

Normally I start with the user interface and work back from there. If
it must interact with an existing database, of course I need to take
that into consideration. Otherwise the database is one of the last
things defined. Other people do it differently.

But it does take practice! And the more you do it, the better you'll be
at it.
--
=============== ===
Remove the "x" from my email address
Jerry Stuckle
JDS Computer Training Corp.
js*******@attgl obal.net
=============== ===
Oct 27 '05 #82
Oli Filth wrote:
Jerry Stuckle said the following on 27/10/2005 18:16:
Andrew DeFaria wrote:
Jerry Stuckle wrote:

Oli Filth wrote:

> Jerry Stuckle said the following on 26/10/2005 02:55:
>

And why wade through all the doc? It's quite easy to make the doc a
Windows help file, and everything is right there. Or, if you wish,
make it a series of HTML pages, although that isn't as easy to search.

Google, HtDig, et. al. would disagree with you!


Let's see Google work on my intranet.

http://www.google-store.com/applianc...?products_id=1

Yours for just $2,995!


Windows help compiler - $0.

--
=============== ===
Remove the "x" from my email address
Jerry Stuckle
JDS Computer Training Corp.
js*******@attgl obal.net
=============== ===
Oct 27 '05 #83
On Thu, 27 Oct 2005 16:16:23 -0500, Jerry Stuckle
<js*******@attg lobal.net> wrote:
Oli Filth wrote:
Jerry Stuckle said the following on 27/10/2005 05:59:
Oli Filth wrote:
Check back through your messages. You indicated one of the best
reasons to use an IDE is for the autocompletion (or hints) for function.

However, not in this part of the thread - I was instead talking about
navigating the source code itself, with class views and associated tools.


This thread is about using IDE's.
I'm saying this is bogus - proper documentation replaces the need.

See the argument below...

With a decent Java IDE, they are - you press F1 (or Ctrl+F1, or
whatever), and you land straight on the documentation of the
class/method/variable in question.
Ah, another IDE - Java this time!

With Windows help files, you don't NEED an IDE!

Yes, I know that! And with HTML documentation, you don't need chm files;
and with a hard-copy manual, you don't need HTML documentation; we could
go on...


But HTML documentation cannot be as easily searched and indexed,
especially if it's on an intranet.


Sure it can. Ever see the docs for Perl?

By the logic of your argument, you should be using Notepad to do your
coding!


Actually, I use TextPad for a lot of it.


Yep. That's a good tool. So too is vim.
The point is that pressing a single button (for me at least), is much
quicker and less distracting than pressing Alt+Tab, making sure the
caret is in the search box, typing the function name, selecting the
correct option, reading the definition in the help-file, temporarily
memorising it (or copy-pasting it), and then pressing Alt+Tab to get
back to the editor and then typing it in.


OK, to each his own. I would rather have the help files separate.


And BTW - generally I don't do Alt+Tab plus whatever. Most of the time
I have the help files up on a second computer and just switch keyboards.


I use two monitors, one cpu.
(Feel free to insert your own key combo instead of Alt+Tab!)

And BTW - this is a PHP newsgroup, not a Java newsgroup.

Indeed, however this thread has become more generalised and seems to be
about IDEs in general...


You've tried to make it that way, true. But this is about PHP IDE's.


Komodo!
--
gburnore at DataBasix dot Com
---------------------------------------------------------------------------
How you look depends on where you go.
---------------------------------------------------------------------------
Gary L. Burnore | ÝÛ³ºÝ³Þ³ºÝ³³ÝÛº ݳ޳ºÝ³Ý³Þ³ºÝ³Ý ÝÛ³
| ÝÛ³ºÝ³Þ³ºÝ³³ÝÛº ݳ޳ºÝ³Ý³Þ³ºÝ³Ý ÝÛ³
Official .sig, Accept no substitutes. | ÝÛ³ºÝ³Þ³ºÝ³³ÝÛº ݳ޳ºÝ³Ý³Þ³ºÝ³Ý ÝÛ³
| ÝÛ 0 1 7 2 3 / Ý³Þ 3 7 4 9 3 0 Û³
Black Helicopter Repair Services, Ltd.| Official Proof of Purchase
=============== =============== =============== =============== ===============
Oct 27 '05 #84
Andrew DeFaria wrote:
Jerry Stuckle wrote:
Google, HtDig, et. al. would disagree with you!


Let's see Google work on my intranet.


See http://www.google.com/webmasters/. As for being able to get into
your Intranet I believe you can also purchase a Google Search Engine
Appliance. If price is an issue I see you conveniently neglected both
HtDig and "et. al.". IOW there are options but you refuse to explore them.


No, I don't refuse to explore them. They're there; they work OK. But
HTML still isn't as good as Windows help files.
Once you have the hang of it, Windows help files are very easy to
create!

Yeah then try browsing that Windows help file on your Linux
workstation...


So? I don't use Linux workstations. Windows workstations hooked to a
Linux server.


Typical Windows Tunnel Vision. Granted *you* use Windows. But not
everybody does! And you take the attitude of screw anybody else but me.


See, that's the difference between you and me.

I'm telling you HOW I WORK AND WHAT I USE. Unlike you, I AM NOT TELLING
YOU WHAT TO USE!

You keep telling me I should be using IDE's, HTML help files, etc.
Wrong, wrong, wrong! I use what is best for me and on my projects.

No, it's not "Windows tunnel vision". It's what *I* use. You use
whatever you want.
--
=============== ===
Remove the "x" from my email address
Jerry Stuckle
JDS Computer Training Corp.
js*******@attgl obal.net
=============== ===
Oct 27 '05 #85
Jerry Stuckle said the following on 27/10/2005 22:16:
Oli Filth wrote:
Jerry Stuckle said the following on 27/10/2005 05:59:
Oli Filth wrote:
Check back through your messages. You indicated one of the best
reasons to use an IDE is for the autocompletion (or hints) for function.


However, not in this part of the thread - I was instead talking about
navigating the source code itself, with class views and associated tools.


This thread is about using IDE's.


If you original point was actually related to a different branch of this
thread, you should've posted it as a reply in that branch, not a
completely unrelated branch...


With a decent Java IDE, they are - you press F1 (or Ctrl+F1, or
whatever), and you land straight on the documentation of the
class/method/variable in question.

With Windows help files, you don't NEED an IDE!


Yes, I know that! And with HTML documentation, you don't need chm
files; and with a hard-copy manual, you don't need HTML documentation;
we could go on...


But HTML documentation cannot be as easily searched and indexed,
especially if it's on an intranet.


Exactly - each "level" (hard-copy => HTML => CHM => "integrated " help)
adds a new layer of functionality. Context-sensitive help is the logical
conclusion of that progression.

And BTW - this is a PHP newsgroup, not a Java newsgroup.


Indeed, however this thread has become more generalised and seems to
be about IDEs in general...

You've tried to make it that way, true. But this is about PHP IDE's.


Actually I didn't - the OP asked about PHP IDEs, which led onto a
discussion about the pros/cons of IDEs, which then led onto a discussion
about the supposed pros/cons of IDEs in general - the discussion diverged.
--
Oli
Oct 27 '05 #86
Oli Filth wrote:
Andrew DeFaria said the following on 27/10/2005 20:06:
Oli Filth wrote:
Well, VS (my IDE of choice for C/C++/C# as you've probably gathered)
can do pretty much all of those things (save the multiple language
things). Can't speak for all IDEs, though.
Maybe. Let's review. How much disk and memory space does VS take? How
much does it cost?


<Runs away, attempting to ignore the cost issue...>


Exactly...! Have you seen my personal software budget? Any guesses?
Really? So I can go into MS VS at work and then poke through the
firewall to edit machines on my Linux box at home through DSL or
some random box in England? Somehow I don't think I could...

If it's FTP access, you probably can. I dunno about SSH.


OK. Let's test it. From the IDE edit the file
ftp://defaria.com/testfile.txt. It's available via anonymous ftp.


Interestingly, VS 6 can open it, whereas VS .NET can't. It's probably
trying to hook to it to monitor external changes, and failing, so
gives up.


So then why didn't you actually edit it? It has the same contents as
what I originally put there. Now change it. No cheating either by
downloading it, updating it and uploading it in steps - do it directly
from the editor...
As for editing, my mistake - in my head I was combining the Windows
filesystem abstraction (i.e. being able to open files from FTP like
they were in a local directory), with VS's facility to manage and
synchronise projects on a web server.


Hmmm... That didn't exactly parse for me. Can you or can't you edit
ftp://defaria.com/testfile.txt from your IDE?
> Whilst "think before you type" is a virtue I attempt to adhere to,
> doesn't *always* work in practice.

Well I've had the same problem and still do on occasion. But I
actively worked on it. Another concept I employ (usually) is the
silly and stupid concept of checking what I typed *before* I hit
the send button. I'll do it here to.

^
^
I think this may be irony epitomised!!


Not quite sure what you are stating here.


Your choice of homonym for "too" - i.e. I'll do it here *too*. ;)


Ah, I got another one for that! Ode to Spell Checker
<https://defaria.com/Jokes/OdeToSpellCheck er.php>
Oct 27 '05 #87
Jerry Stuckle wrote:
But HTML documentation cannot be as easily searched and indexed,
especially if it's on an intranet.
Ah but they surely can, easily and cheaply with HtDig.
And BTW - generally I don't do Alt+Tab plus whatever. Most of the
time I have the help files up on a second computer and just switch
keyboards.


Ah now that's convenient! :-)

Oct 27 '05 #88
Jerry Stuckle wrote:
No, I don't refuse to explore them. They're there; they work OK. But
HTML still isn't as good as Windows help files.
Really? How so? Tell me when you need to research some random odd topic
do you use Google or do you use some sort of all inclusive Windows help
file?

(Reminds me of the adage: When all you have is a hammer then every
problem looks like a nail!)
> Once you have the hang of it, Windows help files are very easy to
> create!

Yeah then try browsing that Windows help file on your Linux
workstation...

So? I don't use Linux workstations. Windows workstations hooked to
a Linux server.


Typical Windows Tunnel Vision. Granted *you* use Windows. But not
everybody does! And you take the attitude of screw anybody else but me.


See, that's the difference between you and me.

I'm telling you HOW I WORK AND WHAT I USE. Unlike you, I AM NOT
TELLING YOU WHAT TO USE!


I'm telling you how to play nice with others. If all you ever do is
create code in isolation and never in a group use any damn thing you
want. But when you have the attitude of "this is how I work - works for
me - and who gives a rat's ass about my coworker who is working on the
same app, needs the same documentation but doesn't use Windows" then I
have a problem with it.
You keep telling me I should be using IDE's, HTML help files, etc.
Wrong, wrong, wrong!
Yes, wrong, wrong, wrong as in *you are wrong!!!* I didn't tell you do
use an IDE. I'm the guy saying IDEs are not that good. Remember?
I use what is best for me and on my projects.
Then you must work in isolation. But if you want to work with others you
should at least show a little sensitivity to the fact that they have
different requirements, needs and desires and you should strive to use
technologies that benefit all equally.
No, it's not "Windows tunnel vision". It's what *I* use. You use
whatever you want.


Of course it's a Windows tunnel vision issue. You have be seduced by
"It's my PC and I do what I want with it - others be damned". Hey I have
no problem with that. Just that you might as well unplug from the
network and go off to your corner with your machine and code your
projects. Most of the rest of us want to participate in jointly
developed, collaborative work. As such we need common ground not "you do
it your way and I'll do it mine" (That is unless you can assure that
both ways will work by using some common standard...)
Oct 27 '05 #89
Oli Filth wrote:
Jerry Stuckle said the following on 27/10/2005 22:16:

This thread is about using IDE's.

If you original point was actually related to a different branch of this
thread, you should've posted it as a reply in that branch, not a
completely unrelated branch...


No, my original point was related to the original part of this thread.
You're trying to change that.

But HTML documentation cannot be as easily searched and indexed,
especially if it's on an intranet.

Exactly - each "level" (hard-copy => HTML => CHM => "integrated " help)
adds a new layer of functionality. Context-sensitive help is the logical
conclusion of that progression.


Yep - and each level brings a new layer of complexity.
Context-sensitive help is not always needed - unless you're lazy or
incompetent.
You've tried to make it that way, true. But this is about PHP IDE's.

Actually I didn't - the OP asked about PHP IDEs, which led onto a
discussion about the pros/cons of IDEs, which then led onto a discussion
about the supposed pros/cons of IDEs in general - the discussion diverged.


Yep. You have tried to make this discussion diverge. I've *always*
been talking about PHP IDE's. You're the one who keeps trying to change
the subject.

--
=============== ===
Remove the "x" from my email address
Jerry Stuckle
JDS Computer Training Corp.
js*******@attgl obal.net
=============== ===
Oct 28 '05 #90

This thread has been closed and replies have been disabled. Please start a new discussion.

Similar topics

92
6530
by: Reed L. O'Brien | last post by:
I see rotor was removed for 2.4 and the docs say use an AES module provided separately... Is there a standard module that works alike or an AES module that works alike but with better encryption? cheers, reed
12
11178
by: Dario | last post by:
The following simple program behaves differently in Windows and Linux . #include <stdexcept> #include <iostream> #include <string> using namespace std; class LogicError : public logic_error { public: string desc;
125
14843
by: Sarah Tanembaum | last post by:
Beside its an opensource and supported by community, what's the fundamental differences between PostgreSQL and those high-price commercial database (and some are bloated such as Oracle) from software giant such as Microsoft SQL Server, Oracle, and Sybase? Is PostgreSQL reliable enough to be used for high-end commercial application? Thanks
44
4281
by: lester | last post by:
a pre-beginner's question: what is the pros and cons of .net, compared to ++ I am wondering what can I get if I continue to learn C# after I have learned C --> C++ --> C# ?? I think there must be many know the answer here. thanks
9
2304
by: John Cho | last post by:
// CHO, JOHN #include<iostream> class fracpri{ int whole; int numer; int denom;
12
3304
by: Steven T. Hatton | last post by:
This is something I've been looking at because it is central to a currently broken part of the KDevelop new application wizard. I'm not complaining about it being broken, It's a CVS images. Such things happen. The whole subsystem is going through radical changes. I don't really want to say what I think of the code just yet. That would influence the opinions of others, and I really want to know how other people view these things,...
9
2823
by: Rajat Tandon | last post by:
Hello there, I am relatively new to the newsgroups and C#. I have never been disappointed with the groups and always got the prompt replies to my queries.This is yet another strange issue, I am facing. Please please help me to solve this as soon as possible. So here we go ... I am not able to take the screen shot of the windows form based "Smart
13
5058
by: Jason Huang | last post by:
Hi, Would someone explain the following coding more detail for me? What's the ( ) for? CurrentText = (TextBox)e.Item.Cells.Controls; Thanks. Jason
0
1200
by: andy6 via DotNetMonster.com | last post by:
I want to display a webpage. The user selects a value from a drop down. This value is put into a custom header and added to the http pipeline. Then the page is redirected in the EndRequest method to where I need to go. What works: the dll, the web.config of the module, the addition of the header and value to the pipeline, redirection to other website and receiving value (null) on the other website What doesn't work: Allowing the user...
0
10208
Oralloy
by: Oralloy | last post by:
Hello folks, I am unable to find appropriate documentation on the type promotion of bit-fields when using the generalised comparison operator "<=>". The problem is that using the GNU compilers, it seems that the internal comparison operator "<=>" tries to promote arguments from unsigned to signed. This is as boiled down as I can make it. Here is my compilation command: g++-12 -std=c++20 -Wnarrowing bit_field.cpp Here is the code in...
0
10038
jinu1996
by: jinu1996 | last post by:
In today's digital age, having a compelling online presence is paramount for businesses aiming to thrive in a competitive landscape. At the heart of this digital strategy lies an intricately woven tapestry of website design and digital marketing. It's not merely about having a website; it's about crafting an immersive digital experience that captivates audiences and drives business growth. The Art of Business Website Design Your website is...
1
9987
by: Hystou | last post by:
Overview: Windows 11 and 10 have less user interface control over operating system update behaviour than previous versions of Windows. In Windows 11 and 10, there is no way to turn off the Windows Update option using the Control Panel or Settings app; it automatically checks for updates and installs any it finds, whether you like it or not. For most users, this new feature is actually very convenient. If you want to control the update process,...
0
9857
tracyyun
by: tracyyun | last post by:
Dear forum friends, With the development of smart home technology, a variety of wireless communication protocols have appeared on the market, such as Zigbee, Z-Wave, Wi-Fi, Bluetooth, etc. Each protocol has its own unique characteristics and advantages, but as a user who is planning to build a smart home system, I am a bit confused by the choice of these technologies. I'm particularly interested in Zigbee because I've heard it does some...
0
8867
agi2029
by: agi2029 | last post by:
Let's talk about the concept of autonomous AI software engineers and no-code agents. These AIs are designed to manage the entire lifecycle of a software development project—planning, coding, testing, and deployment—without human intervention. Imagine an AI that can take a project description, break it down, write the code, debug it, and then launch it, all on its own.... Now, this would greatly impact the work of software developers. The idea...
1
7404
isladogs
by: isladogs | last post by:
The next Access Europe User Group meeting will be on Wednesday 1 May 2024 starting at 18:00 UK time (6PM UTC+1) and finishing by 19:30 (7.30PM). In this session, we are pleased to welcome a new presenter, Adolph Dupré who will be discussing some powerful techniques for using class modules. He will explain when you may want to use classes instead of User Defined Types (UDT). For example, to manage the data in unbound forms. Adolph will...
0
5294
by: TSSRALBI | last post by:
Hello I'm a network technician in training and I need your help. I am currently learning how to create and manage the different types of VPNs and I have a question about LAN-to-LAN VPNs. The last exercise I practiced was to create a LAN-to-LAN VPN between two Pfsense firewalls, by using IPSEC protocols. I succeeded, with both firewalls in the same network. But I'm wondering if it's possible to do the same thing, with 2 Pfsense firewalls...
0
5444
by: adsilva | last post by:
A Windows Forms form does not have the event Unload, like VB6. What one acts like?
3
2812
bsmnconsultancy
by: bsmnconsultancy | last post by:
In today's digital era, a well-designed website is crucial for businesses looking to succeed. Whether you're a small business owner or a large corporation in Toronto, having a strong online presence can significantly impact your brand's success. BSMN Consultancy, a leader in Website Development in Toronto offers valuable insights into creating effective websites that not only look great but also perform exceptionally well. In this comprehensive...

By using Bytes.com and it's services, you agree to our Privacy Policy and Terms of Use.

To disable or enable advertisements and analytics tracking please visit the manage ads & tracking page.