Ask Slashdot: Linux Database GUI Application Development? 264
New submitter msubieta writes I have been developing some applications to use in small businesses using Windows and SQL Server. I would like to move on and start doing the same thing in Linux. I have looked at several Frameworks/Databases/Development environments and I really don't know what is the best/simplest/fastest to learn approach. I use VS and C# mostly, although I could easily go back to C++. I found Qt and GTK+ are the most common frameworks, but they seem to lack controls that deal with datasets and stuff (sorry, spoiled by the .net form controls), but I also know that I could use Mono in order to make the jump. I would have no problem on moving to MySQL, as I have done quite a lot of work on that side, and I would like to stick with the traditional client server application, as I find it easier to maintain, and a whole lot more robust when it comes to user interaction (web apps for POS applications don't seem to be the right way to go in my view). Any suggestions/comments/recommendations?
REALbasic (Score:2)
Have a look at Xojo. It used to go by the name REALbasic.
Re: (Score:2)
MySQL GUI tools list (Score:2, Informative)
Re: (Score:2, Funny)
Here's some five year old crap I googled up rather than not posting anything at all.
Lazarus (Score:5, Interesting)
Look into the Lazarus project. It's a Delphi semi-clone.
Re: (Score:2)
Be aware that in my experience Lazarus isn't seeing a lot of updating and had stagnated with some difficult bugs (for us amyway). We moved away from it in the end we went with Qt
Biased, but... (Score:5, Informative)
I'm biased towards Python - and the following suggestions have nice UIs but they are web-based - so please forgive me in advance ;)
After years working in Siebel (UI dev tools, transparent database interface, etc) moved over to Linux dev and was stuck for a while - finally settled on Flask (http://flask.pocoo.org/) a Python micro-framework, which is light (i.e. not as incomprehensible as Django ;) but comes with a lot of functionality if you need it. Jump in. Here's a good guide that mixes in Bootstrap to make a very appealing UI - http://flaskbook.com/ [flaskbook.com]
Alternatively, go all ERP with lots of built in business functionality and nice UI features and try ERP Next (https://erpnext.com/) - which I'm looking at right now. It has some poor documentation, but the dev guide for the underlying framework (Frappe) is pretty clear (e.g. https://frappe.io/developers/g... [frappe.io]) and looks less scary.
Re: (Score:2)
Re: (Score:3)
My small business runs on python, and as much as possible, text mode and command line programs.
The (non technical - it's a yarn store) staff quickly decided they loved it, compared to the slow, pointy, clicky software they had dealt with before (I'm guessing its usually Intuit).
Need a point-of-sale program to check someone out? type 'checkout'
Want an annual year end stock report for 2014 taxes? Type 'annual_stock_report 2014'
etc.
Eliminating the GUI eliminated huge amounts of complexity and flattened the le
Re: (Score:3)
"Want an annual year end stock report for 2014 taxes? Type 'annual_stock_report 2014'
etc."
Want to file your payroll taxes for january? "Type "file_payroll_taxes 01 2014"
Want to view your receiables type "list_receivables"
Want to filter that list to anything over 3 months?
Type "list_receivables filtered to aged>90 days" ? Was I close? Probably not close enough that I just got what I wanted.
But put me in front of a GUI and I'll find them efficienltly enough; no training required.
"Eliminating the GUI elimin
Lots of love for Python (Score:2)
I'm biased towards Python - and the following suggestions have nice UIs but they are web-based
I agree there, especially if you are coming from the purgatory of VB6 or .NET line-of-business apps, and there are good frameworks out there.
The original poster does want to know about traditional client-server, and there is a Python business application framework that is a closer fit: Tryton [tryton.org]
It is not web centric and has a GTK based client, although there is integration with Flask for web based applications (the Nereid module) and a big push on for a full fledged web client alternative to the GTK client (pl
Re: (Score:2)
> t Oracle, PostgreSQL and MySQL python modules all do things differently
But so do the underlying DB's. That might sound like deflection, but considering that there's still no way to do cross-platform "return the first 10 rows" on the DB, I'm willing to give the API guys some leeway.
outsource the work (Score:2)
Re: (Score:2)
Have you thought about hiring a programmer to do this stuff? It's probably going to save you a lot of time and hassle to go this route than actually doing it yourself.
By using libraries and tools to do the nitty gritty work, he's essentially paying a team of programmers to do this stuff (and likely paying a fraction of the price he'd pay if he did it himself)... or, if he goes the open source route, he may be getting the output of that team of developers for free. If he has to write everything himself (even if he hires another developer to do it), he's committed to supporting that work himself forever, no one is going to port it to a new platform for him, no one is goin
I'd consider Go and PostgreSQL (Score:5, Informative)
Go is still young so if you're looking from a "language saturation" standpoint, it's not where you want it to be yet but it's gaining traction fast. It will be familiar from a typing standpoint and as a language it provides excellent concurrency, which in certain types of applications becomes a really big help. By learning Go you'd be providing yourself with a language that helps solve a complicated use case rather than just another language that does exactly the same things as other server side languages. It's compile time is almost instantaneous which is similar to a scripting language. Runs well on both Windows and non-Windows environments too, which will make it easier to use it along side your existing .NET stuff if needed.
PostgreSQL as a database is pretty much amazing. Everything you like from SQL Server is there without a lot of the stuff that you don't. Here's a writeup that I did a few months back breaking down what's great about PostgreSQL in as concise of a post as I could. http://www.brightball.com/post... [brightball.com]
Since this is a specific "what should I learn based on my current background" type question, that's my recommendation for YOU based on the post.
Re: (Score:2)
Actually, that will only help you with web based stuff. Go doesn't do any UI stuff (that I know of, but I haven't looked hard) so it might not be what you're looking for.
Re:I'd consider Go and PostgreSQL (Score:5, Informative)
That's a nice outline of Postgres features; small and very pedantic correction for you. CREATE INDEX CONCURRENTLY in PostgreSQL isn't really asynchronous, since the client running it is stuck there waiting for it. And it does still need a full table lock to complete. It just only needs that for a brief moment in most cases, to install the index when it's built. But that's not guaranteed. I added a caveat to the docs a version or two ago that warns about the bad case; see building indexes concurrently [postgresql.org], in particular the bit starting with "Any transaction active when the second table scan starts..." It's really rare that happens, but if you have long-running transactions eventually you'll run into it painfully.
I would restate the situation as "You can even create indexes with minimal locking of large tables when a new index is added". The code can't quite avoid locks altogether and remain transaction safe.
Java FX (Score:2)
If you really don't like web apps (Score:3)
Then you should either write your own QT controls (and sell them or open source them). Or stick with Windows.
I think POS is fine as a web app, as you can run a browser on any POS these days, and have it communicate to a small stub on localhost so that local operations (like system management) and cached/offline operations can still work in case the POS is temporarily disconnected.
That opens you up to doing a mix of javascript for the GUI part, and the server back-end in C++, Java, Python, Ruby, NodeJS, Haskell, whatever. There are good server frameworks for just about all of those (except maybe C++).
Re: (Score:2)
In C++ you just don;t want a framework, you want libraries that do the heard work for you as you provide the application logic.
For web servers/services, there are a lot of "embedded" libraries that are brilliant. Mongoose or NxWeb come to mind, best thing about them is that they are really easy to use and you don't need to learn a huge amount of "magic" ways that a framework has decided that you'll work in.
Re: (Score:2)
Agreed there are a lot of tools at a developer's disposal. The original point was why not use web development for this project. Linux's GUI is not great in my opinion (long time Xlib, GTK+, XForms developer), but web GUI is mature, fairly easy to develop and can be combined in new and interesting ways.
Re: (Score:2)
I agree, web dev is getting so good even Microsoft is not only embracing stuff like Cordova but is saying its a great way to write Metro apps!
Personally, I just like the way it forces people to design their programs into client and server sides, hopefully making a good, reusable API on the latter.
Re: (Score:2)
I guess you mean the opposite.
You just don't wand libraries but frameworks that do the hard work for you.
You are one of the many who don't grasp what the difference between a framework and a library is. But you are the first one who completely exchanges the meaning of both words.
LibreOffice Base (Score:3)
LibreOffice Base seems to be what you're asking about.
http://www.libreoffice.org/discover/base/ [libreoffice.org]
Re: (Score:2)
Have they improved the scripting? It used to have convoluted scripting with convoluted documentation.
GTK (Score:2)
GTK actually has lots of good widgets for 'data' not sure what that means exactly, forms, spreadsheets that stuff is there, but you are correct anything complex you will have to build up from more basic controls. I would also characterize GTK as a royal PITA even with glade.
Why don't you like web for POS? Honestly there are plenty of great 'data' interfaces. Building your app an in-process webserver that just binds 127.0.0.1 on some high port. There are plenty of frameworks out there that should make bu
Re: (Score:3)
It means he wants databound controls. As in, widgets that update themselves when the dataset changes and changes the dataset when the widget is manipulated
Qt has model-driven views. (Score:4, Interesting)
Re: (Score:2)
And the model drive views are really powerful. The first one you write is a bit tedious, but after that it's smooth sailing. You can get that data from anywhere: text files, network packet processing, database queries.
Qt does have database access components, but you might be happier working with a native interface. Part of the beauty of C++ is that there's a native interface to most things that's C++ compatible.
GUI Datasets (Score:3, Informative)
Having programmed in GTK+, Qt, Java, and C#: I find C# to be the most painful for database interactivity. Its data bound controls (to me) are infuriatingly convoluted, complex, inefficient, and inflexible.
I find it far, far easier to use a tool that generates database models, create readers and writers based on those models to abstract them away from the application, and then use those readers/writers in the mainline application. The payoff is immense.
The closest fit for you is Java (since C# started life as Microsoft's attempt to make a Windows-specific version of Java). The two best IDE choices then become Netbeans and IntelliJ (do yourself a favor, and skip Eclipse).
Re:GUI Datasets (Score:5, Informative)
You might want to take a longer look at C# because there is no reason you can't just use Entity Framework to do exactly what you find it easier to do - create the model, creates readers and writers, abstract the database stuff away and just get to use plain C# objects, lists, collections and other things instead of cumbersome DataTables or Datasets etc.
Re: (Score:2)
You're picking your tool before your problem. (Score:4, Insightful)
FIrst decide the right way to solve the problem, then look at the available tools to solve it.
Client server is better at solving specific problems, anything graphics heavy usually. For pure data entry a straight up server side web application is usually the best choice. You don't need to support multiple client installs, just the server instance.
For ease of development: PHP, for scalability, some java based framework (Spring, Wicket, etc...) or even Scala/Play if you feel somewhat daring.
Re:You're picking your tool before your problem. (Score:5, Funny)
Re: (Score:2)
For pure data entry a straight up server side web application is usually the best choice. You don't need to support multiple client installs, just the server instance.
Web apps are great for when you need an app to reach everyone on the Internet. Web apps are almost never the best choice if you have a captive audience. The challenges of deploying desktop apps are pretty small and approximately equivalent to the amount of effort needed to keep up to date with the march of progress in browsers. With a native app, you get to choose your own technology rather than be forced to use JavaScript for the UI tier and you get a much better user experience with less effort.
Re: (Score:2)
This 100 times this.
One thing that web apps always fall down on is speed and sync. If I have 100 people using a database and I want real time updating of the data that people have open on their screen you can't use a web app. In particular if you need to cause a client to redo its search because a new entry now matches their criteria.
If you are going down a linux build path you can go down a linux front end. Then you add in puppet and all your clients are identical - new release - push, bad release, pull
Look at Java/Postgresql (Score:2, Informative)
I've been exploring the same route. There are a lot of options but none as mature (from the developer's perspective) as what you are used to. After a lot of search and trial and error,
I've settled on PostgreSQL for database since it is mature, fast, easy to manage, and generally solid. It's really comparable to what you are used to in MS SQL Server.
For languages, I've settled on Java, which I swore never to do. It's not as robust as C# since there was a leadership vacuum for too long at Sun's demise and Ora
Re: (Score:3)
Firebird is also cross-platform, extremely safe and reliable, and would also be a good fit for someone with MSSQL experience.
Firebird (was: Interbase) has a significant following in the standalone-app world (because you can deploy an app backed by a full Firebird instance as a DLL, rather than a separate server process, and later switch to the service when you want networked clients) and in the thick-client world (because Interbase was bundled with Borland Builder/Delphi).
Re:Look at Java (Score:3)
Java, and its development tools, run on every desktop: Mac, Linux, Windows.
If you know Java, then you've already got a leg up on doing Android development; and doubly so if you use Eclipse or IntelliJ.
If you want to develop complex web applications, then Java is the way to go. You can write a large web application in a dynamic language, but maintenance w
Heresy Alert (Score:5, Interesting)
Go web based (Score:2)
Re: (Score:2)
I read that title as meaning you'd implemented web based tools with go. [google.com]
Re: (Score:2)
I beg to differ. My former company [quetzalpos.com] has done it, and it's slick and beautiful. They have targeted clothing retailers, but the software could be used elsewhere.
Rule #1 of development: Know your requirements. (Score:5, Insightful)
If you're just developing for the fun of it, have at.
But if your goal is to have a POS application, stop writing code right now. There exist hundreds of off the shelf POS apps all ready. For Windows, for Linux, thick clients, thin clients, web, desktop, green screen, etc...
Your time would be vastly better spent finding an existing product and adapting your business process to it. Especially if it is something that can tie into your accounting/inventory systems.
As the old saying goes, "Good developers write good code, great developers steal good code."
-Rick
Re:Rule #1 of development: Know your requirements. (Score:5, Interesting)
>But if your goal is to have a POS application, stop writing code right now. There exist hundreds of off the shelf POS apps all ready. For Windows, for Linux, thick clients, thin clients, web, desktop, green screen, etc...
And they are all shit.
So I wrote my own. It's not shit. The staff tell me it's not shit.
POSs are shit because they have to attend to the general case, whereas each store is a special case. I our case, there is nothing that comes close to addressing the particular needs of a yarn store (SKUd and non SKUd goods, hand made goods, goods my weight and/or volume, consignment goods, classes, group sessions etc). Go into a yarn store and see if they check you out by slowly clicking and typing at some horrible POS, they usually do.
If you took my POS and put it in a hardware store, it would be shit.
Re: (Score:2)
Yes. That's somewhat one of my points. There are individual problems to address, but the particular mix tends to be unique for small stores and the number of possible problems is huge, so any 'complete' POS will necessarily have a billion features that require a huge amount of UI or configuration and customization.
Writing a minimalist POS with functions matched to the business seemed like less effort to me. A better tool might be a POS library that makes it less effort to put a custom POS together.
I've had
Re: (Score:2)
>After just a couple of weeks on the job, you can memorize most of a set of 4-digit codes. The clerks at a yarn store need to learn some codes.
They do. There's codes. If you can't remember, press 'n' for 'numbers' and it'll bring up a list. Most things have the SKU written on them, but some things don't (gift cards, bulk fleeces (sheep don't have SKUs) etc) so you need to remember those or use the list.
I actually got that part from observing a local hardware store. The primary thing is to type in (or sca
Re: (Score:2)
thats quite a leet yarn store POS you have
The product of a PhD who quit education to run a yarn store, marrying a crypto chip designer. You get a yarn store POS that's actually secure.
Re: (Score:2)
You get a yarn store POS that's actually secure.
About time, because I am so fed up with all the people stealing my crochet patterns.
Re: (Score:2)
Yes. Buttons and fleece are the same.
Re: (Score:3)
Actually, I'm going to disagree here.
I spent the last 10 years working on the unglamorous parts of the MS stack that deal with writing business software. I worked on ERP systems (big stuff, big money) and small stuff (VS Lightswitch).
It turns out that there are zillions of little apps that make businesses run. Some of them are no more robust than an excel workbook on a well known file share. Some are Access applications. Lots of VB6 apps are still keeping businesses running.
Integrating with existing sys
Re: (Score:2)
"It turns out that there are zillions of little apps that make businesses run. Some of them are no more robust than an excel workbook on a well known file share. Some are Access applications. Lots of VB6 apps are still keeping businesses running."
I hear ya. Been right there in the trenches for almost 20 years now doing line of business application development/management. The organization I just started with has a product catalog that has over 1000 entries, with tons of additional excel/access solutions that
PostgreSQL (Score:2, Insightful)
I'm a big fan of PostgreSQL over MySQL.
Re: (Score:2)
Absolutely PostgreSQL has always been a serious RDMS. My SQL was a joke when it came out and is still a joke years later. They have always been years late and several dollars short when it comes to functionality. They only got stored procedures last year! LOL Typical.
Stick completely with stored procs for production database access. You can tune them and it keeps messy queries out of the application code. It also makes the impact analysis of database changes much, much easier to track and deal with.
Do
What are your users running? (Score:2)
Since you're looking at Qt and GTK, I assume that you're writing a local GUI client, not a web app, so what operating system are your users running? Chances are that they are not already running Linux. Unless your product is some sort of turn-key system where you supply the hardware and software, then you ought to stick with whatever operating system your users already have in their offices -- which is probably Windows, possibly OSX, but they almost certainly do not run Linux on the desktop. (yes you can ru
Lazarus (FreePascal) via CodeTyphon (Score:3)
Lazarus is pretty good. It is a Delphi like/compatible IDE based on FreePascal. I always thought that Delphi's approach to DB GUIs was the most straightforward.
CodeTyphon is a good cross-platform distro for Lazarus that bundles lots of components. It also specializes in cross-compilation. But you are probably not looking for that aspect. It can target multiple GUI toolkits including Win32, Qt & GTK with the same set of components. I am surprised why it isn't more popular. Perhaps it is because Delphi is not as well known as C++/Java/.NET. While I am not a particular fan of Pascal, the component framework (Delphi: VCL, Lazarus: LCL) makes it worth while.
http://www.pilotlogic.com/site... [pilotlogic.com]
Cake PHP Framework - easy and fast (Score:2)
1. Define the database in MySQL
2. Run the delightful commands "./cake bake model all", "./cake bake.controller all", "./cake bake view all"
3. And you are done, 20 minutes after you started. Cake exploits naming conventions to give you auto generation of code, auto lookup of encoded values, etc etc. I have not yet discovered all it can do.
And best of
Re: (Score:2)
HTML5 Client (Score:2)
Have you considered a Web client? HTML5 + JavaScript + [your favorite server language and ORM]* is a good development stack. It also has the benefit of zero-install for your clients.
We develop complex scientific software and made the decision to go HTML/JS for all our client code a few years ago and haven't regretted it. It takes a little bit of learning the libraries, but there are some good mature ones available to make streamline development.
-Chris
*I've used Django and Tornado+SQLAlchemy extensively for
Re: (Score:3)
I wonder how do you lock down the browser (some sort of kiosk mode to not get distracted), run it as a separate instance if you want to keep general purpose browser windows on the side and not have have the application getting slow, unresponsive or crashing, and I wonder if you aggressively update the browser as needed for security or use Internet Explorer instead.
Oh, silly me, I've found out about the firefox -p -no-remote option while typing this post. Then there's some customization of the user profile t
How about a web browser (Score:2)
PGAdminIII (Score:3)
A nice GUI for Postgresql. Check out what tools they are using. Do a few walk throughs with a debugger to see how it works.
Re: (Score:2)
pgAdmin III is a client app for PostgreSQL. But what the poster wants here is information how to build their own specialized client app, not on how to use someone else's.
The only way pgAdmin III is a relevant example here is that the existing code is a hairy bunch of C++...and the developers have given up on maintaining it. Instead they're turning it into a web app so there are better and still improving libraries to leverage there. That's a lesson everyone thinking of writing a C++, Java, or .NET app sh
Glom or BOND (Score:2)
Qt + C++ (Score:5, Informative)
I'll recommend Qt and C++ as a workable combo. Learn how to use their Model/View architecture and there's a whole lot of fun stuff that opens up for you. Instead of looking for database components, think in terms of writing a data model that happens to get its data from an SQL backend.
I'll also second the recomendation of others to look at PostgreSQL for your backend. When it comes time to deploy your application, PostgreSQL is a lot easier to package and install than SQL Server. The features aren't identical, but they're close enough for all but some very specialized cases. In a lot of those cases, there are tools that accomplish the same goals via a different mechanism.
You are looking for Datasets? Really? (Score:2)
I am a C# programmer by day. It's been my job for something like 5 or 6 years now. For me, the greatest feature of moving to a different platform would be...
NOT HAVING DATASETS!!
The things are a horible crutch! All of our software is Datasets everyhwhere, our programming department has standardized on them as the go-to tool for everything to the point of discouraging any other solution as "making it harder by not using what everyone else is used to."
The problem is Datasets are really nice objects.. for..
GAMBAS (Score:2)
http://gambaswiki.org/wiki?l=e... [gambaswiki.org]
Java with Netbeans (Score:3)
Netbeans has a bunch of database application wizards. Of course this means using the superior Java and being able to run the apps on Linux, Windows or Mac.
Eclipse RCP + DataTools (Score:3)
I'm sure this won't be a very popular option because Slashdot is allergic to Java in general and Eclipse specifically, but if were trying to write multi-platform GUI code with database integration I would probably start by investigating Eclipse RCP + Datatools.
An example of this is Teradata Studio [teradata.com]
LAMP (Score:2)
gui? local? (Score:2)
Today your browser is THE gui. This way you gain flexibility, portability, and reusability.
web2py (Score:3)
Try web2py. It's a web development framework with python server side, has *terrific* documentation (if you are not a total noob), it's easy to deploy locally, it's DB agnostic, it has features for RAD-like development (the server has an IDE and an app manager, you can strip the source and ship bytecode only) and it's very customizable.
The killer feature? compatibility with apps developed with the older versions is a design goal. So once you have your app, you don't have to worry much about maintaining it or upgrading to newer versions.
Cons? Python is not as easy as php to deploy on web hosting companies, and you need to tweak the configuration for heavy traffic sites, and python3 will need web2py to fork a specialised version. None of these are showstoppers for your use case.
Re: (Score:2)
I forgot the more exotic OrientDB, it's java based graph db, can enforce a schema (speaks sql too) or let documents bear whatever structure, has bindings for lots of languages, the db can act as app server.
Personal Preference (Score:2)
As a big fan of RDBMS, I would say stay away from MySQL, it can be convenient but it's generally crap. (Citation: ALLOW_INVALID_DATES) If I had to use an open-source DB it would be Postgres all the
J2EE (Score:3)
This is problem I have given a good deal thought to as well.
First a bit of background: I have lived on UNIX and Linux for most of my far too long career. I programmed Windows and OS/2 back when it was fun (ie. Win3 and earlier; the fun went away after that); I have programmed C and C++ most of the time, and I have worked with both GNOME and KDE.
The problem, I find, is that you get tied into whichever environment you choose, so I took a step back and tried to figure out which environment give me most mobility across platforms and desktop environments. My answer, much to my dismay, was Java, which is available on nearly all HW and OS, and which has extensive and concise standards for almost everything relevant to a developer.
I am still new to it, but the technology I really like is Java Enterprise (previously J2EE) - what I've done is download a package with Netbeans (an IDE), Glassfish (application server) and J2SE (the Java SDK), and it becomes relatively easy to develop database applications, with a frontend in JSF, which works in all browsers across OSes and gives you full GUI functionality, and a backend that can run on a remote application server (not only Glassfish) and against any batabase with a JDBC driver.
Perhaps this is overkill for you purpose, but to me it seems ideal.
Re: (Score:3)
C# is basically MS Java. Just go and develop in Java. Why make it hard on yourself?
You'd normally be correct, but UI is the one place where they are fairly different. Speaking as a dev who's switched between C# and Java just about every job for the last ten years, that's the only thing that gives me a headache.
My last job was a Windows client that used Silverlight for its UI. It really made me appreciate how much I like Java web development.
Re: (Score:3)
Re:Java (Score:5, Insightful)
How about Java FX 8?
Being actually using it for half of a year. It's a significant improvement over Swing and definitely superior to winform or GTK#, not so over WPF.
A few problems with it:
.
.
I don't think you'd find a better cross-platform choice. However it'd be very unsuitable for tighter integration with Linux desktop (notifications/WM/process/shell controls etc).
Re: (Score:2)
C# just looks like Java. It's really Delphi.
Re:Not a joke, Microsoft is open sourcing good bit (Score:4, Informative)
We're looking at 2 years minimum for .Net Core to be solid and complete for Linux. I've been following this closely. Tools are totally missing as well, which you mentioned. I don't see something like Visual Studio even being ported unless MS abandons the "Windows is dominant" position. If they do, I don't expect a solid showing for VS until 2020 at the earliest. For now you are stuck with Mono, which isn't bad, it's just anemic compared to VS.
Re:Hakija (Score:5, Insightful)
You couldn't be more wrong if you tried.
If you're willing to explore something other than what Microsoft has spoon fed you, there's more than enough shiny happy development interfaces out there.
Re: (Score:2)
Re:Hakija (Score:4, Informative)
Name 3.
You want 3? Here are ten. [blogspot.com] And there are more.
Re: (Score:2, Insightful)
Are you seriously comparing a list with IDE's like Komodo and Eclipse to Visual Studio?
Look, you can hate on MS all you want to. But at a certain point you can cross over into true delusion.
Re:Hakija (Score:5, Interesting)
Yup. I develop on Microsoft, Linux, and OS X, and anyone who thinks there are better IDEs than VS are fucking delusional. There's a reason I charge a hell of a lot more to develop on Linux and OS X vs on a MS platform.
Re: (Score:2)
> There's a reason I charge a hell of a lot more to develop on Linux and OS X vs on a MS platform.
Especially under VS13 where you can finally use GIT.
That said, Xcode did get better in 6.x, but you still can't do a "find all references" ?!
Re: (Score:2)
IDE wars are like old editor wars.
Sorry, there is nothing interesting in MS VS IDE.
Neither does it support proper C++ nor Java ... ah, you only do VB and C# ... well what is your point then?
Frankly: if someone claims that an IDE made by MS is "the best", I really challenge his IQ.
Re: (Score:3)
I recently read an interview with Anders Hejlsberg. He literally said, "My primary debugging tool is Console.Writeline." The guy who is in charge of creating the C# language at Microsoft, uses print statements for debugging. That tells you something.
Re: (Score:3)
Re: (Score:3)
Yup. I develop on Microsoft, Linux, and OS X, and anyone who thinks there are better IDEs than VS are fucking delusional.
I'd love to hear your reasons.
Maven is so much better than Nuget that it would be worth using Eclipse just for that.
The way Java sets up projects is better. If you know the package, you know where the file is located.
VS doesn't even compare to Eclipse/IntelliJ unless you buy the IntelliJ plugin for VS.
IntelliJ has better integration with git/svn/cvs/mercurial.
On the other hand, if all you want is drag-and-drop buttons, then you're right, VS is better. But in that case you won't be charging much no
Re: (Score:2)
Don't be stupid. IntelliJ, Netbeans or Eclipse are at least comparable if not better than Visual Studio if you compare Java with C# development. The C++ support maybe be lackluster but you would be better off with a good text editor like Sublime Text than a buggy IDE for something like that anyway.
Re: (Score:3)
It's the Linux-haters who are being modded down in this thread.
Re: (Score:2)
VS is crap. It only becomes useable with add-ons like Resharper.
Re: (Score:3)
Re: (Score:2)
Parts of .NET is open source. But Visual Studio, are you sure about that?
Re: (Score:2)
Re: (Score:2)
Well, Microsoft is doing their part.
http://msdn.microsoft.com/en-u... [microsoft.com]
Re: (Score:2)
Re: (Score:2)
Both firefox and chrome seem to choke on tiff images... :-/
Re: (Score:2)
You're only pointing out the downside. What about when the next version of systemd already includes his database application?