Slashdot Mirror


People Don't Hate to Make Desktop Apps, Do They?

Annie Peterson writes "Paul Graham has been making the argument that desktop development is dead — That's his premise for declaring Microsoft dead as well, and he claims that no one out there likes to develop for the desktop anymore. But that's not true, or is it? Desktop development is easier, faster, more productive, and infinitely more enjoyable — right? The question is, since web apps were originally built on desktop applications themselves, have the tables flipped? Or is it just wishful thinking?"

55 of 233 comments (clear)

  1. Passe... by MarkRose · · Score: 4, Funny

    Desktop programming is so nineties. I'm a laptop programmer!

    --
    Be relentless!
    1. Re:Passe... by sH4RD · · Score: 3, Insightful

      Haven't upgraded to notebooks yet? Laptop programming is so 2001.

      --
      WASTE - The Secure P2P
    2. Re:Passe... by MarkRose · · Score: 4, Funny

      Haven't upgraded to notebooks yet?

      I did in '03, but then I lost my pencil.

      --
      Be relentless!
  2. the problem with google apps by TinBromide · · Score: 5, Insightful

    Web apps are fun and all... Until my comcast tech decides to flip my interweb switch to OFF for 5 hours.

    Then i'm glad i don't rely on ajax apps or anything to get work done. While corporate customers enjoy a level of reliability that the average home user doesn't even dream of, being chained to the internet, yes, being chained to hotspots or cell towers for mobile internet is a drawback that the average user can't consider.

    While php and perl are great, people like to think they're somewhat self reliant, and relying on outside sources is good every so often, you don't hire consultants to do payroll for you.

    The web apps are like consultants, you bring them in for activities that is too expensive to implement and are only needed for on demand, but you don't have them do mundane activities that you could hire someone full time and not lose money on.

    --
    Is it sad that I am more likely to recognize you and your posts by your sig than your name or UID?
    1. Re:the problem with google apps by tdelaney · · Score: 2, Interesting

      Unfortunately, my company (and many many other large multi-nationals) *do* hire outside consulting companies to do payroll.

    2. Re:the problem with google apps by The+Bungi · · Score: 2, Informative
      you don't hire consultants to do payroll for you.

      Actually payroll is one of the most outsourced corporate functions, by far.

    3. Re:the problem with google apps by tambo · · Score: 4, Insightful
      Then i'm glad i don't rely on ajax apps or anything to get work done. While corporate customers enjoy a level of reliability that the average home user doesn't even dream of...

      True, having your apps - and data - locally stored is very helpful. I'm sensitive to that - every time MS Office insists on using "Office Online" for my help queries, I silently curse up a storm. It's a perfect example; this is a simple function that used to execute immediately.

      But that's only one of a few really key advantages of desktop apps over web apps. I've spent a lot of time designing a lot of apps (as a pro/am enthusiast), and here are just a few of the very many other reasons for preferring the desktop environment to the web environment:

      • A robust, designer-friendly GUI control set, tightly coupled to a solid visual designer. For me as a developer, this is THE reason why desktop apps kick the digital asses of web apps. Panels, splitters, checkbox lists, picture boxes, tabbed page collections, menu bars, complex ListViews, editable grids, date selections, numeric up/downs, tree view controls, progress bars - all can be installed in a desktop-based form with a single visual-designer mouse click, while AJAX programmers are still struggling to get buttons working. Plus, the desktop versions are much more consistent - there are fewer visual-style-based visibility differences with desktop apps than browser-rendering issues with web apps. Plus they're higher-performing, and much more easily customized. The ease-of-design gap here is astounding.
      • Comparatively few security issues. I am not claiming that desktop apps are more secure than web apps - not in the slightest. Rather, I mean that as a legitimate programmer, I encounter a whole lot more security obstacles in web programming than in desktop programming. I've spent a ridiculous amount of time debugging web-based security issues: code access security; application pools; file and folder permissions; authentication; impersonation; web-interface/database interface problems; web browser security settings; server- and client-based caching foibles; statefulness issues; cookie policies; code signing and security certification; firewalls; badly configured internet security apps like ZoneAlarm... I've tripped over all of 'em in web programming. It can drive you batshit crazy. Desktop programming has orders of magnitude fewer issues.
      • A much wider array of readily accessible APIs and tools. In desktop programming, if I want a hashtable, or a font dialog, or a color picker, or a high-performance timer, or a Rijndael encryption algorithm, or an MD5 has, or a bitmap converter - they're all immediately available and easy to program. Web programming... good luck.
      • Flow layout is stupid. No, seriously. What I mean is: flow layout is fine for reading - desktop publishing, embedded images, all that junk. But it's stupid for a window-based GUI. As a UI designer, I'll take the absolute positioning and "anchoring" models over browser-based flow layouts any day.
      • Easy-as-pie installers. I can add a desktop installer package to a desktop app project with, like, six mouse clicks. The resulting package is fairly small, quite robust, and has few compatibility issues.
      • Easy multithreading. Self-explanatory.
      • Performance. I've coded in DirectX, and I've coded in Java. I'll take DirectX any day.

      Again, those are just a few issues. I can come up with a whole lot more.

      Face it, people. Web programming is absolutely the future... but at present, it's still a toddler. Web 2.0 is the equivalent of a two-year-old: fussy, colicky, prone to outbursts and temper tantrums. And it's still teething, so when it misbehaves, you end up with bite marks.

      I think it'll take a solid six years or so before web programming is as easy as desktop programming. Until then, I'll keep banging out apps for my "antiquated" desktop environment... with ease and a grin.

      - David Stein

      --
      Computer over. Virus = very yes.
    4. Re:the problem with google apps by VGPowerlord · · Score: 4, Insightful
      Before I start nitpicking, I'm going to point out that I said "Why not just leave the web to things that require the Internet and keep applications on the PC?" in a previous comment.

      while AJAX programmers are still struggling to get buttons working

      I sincerely hope you mean they're having trouble getting the code behind the button to work, because I'd be extremely worried about the state of web developers today if they can't write <input type="button" value="Text on the button face" onclick="functionCallHere()">
      or a form consisting of only a submit button (if you're making it compatible with browsers that have no scripting or have scripting disabled).

      Performance. I've coded in DirectX, and I've coded in Java. I'll take DirectX any day.

      The term web application is not often applied to Java any more. The term "web app" these days often refers to AJAX (formerly known as DHTML) apps and, less often, Flash apps.

      However, you're right, on the whole desktop apps have better performance than web apps.

      Flow layout is stupid. No, seriously. What I mean is: flow layout is fine for reading - desktop publishing, embedded images, all that junk. But it's stupid for a window-based GUI. As a UI designer, I'll take the absolute positioning and "anchoring" models over browser-based flow layouts any day.
      ...so use absolute positioning instead. You act like it doesn't exist, which, given that you've been using the ASP.NET web designer, doesn't surprise me. While fixed position in CSS is known to not be supported by Internet Explorer 6 and older, absolute position is.

      Which brings up another point not yet mentioned: The sad state of affairs with web application GUIs is almost entirely Microsoft's fault. IE6 and its rather poor support for CSS2 and DOM, which weren't addressed for 6 years, let alone fixed, coupled with its widespread use has made it the lowest common denominator.
      --
      GLaDOS for President 2016! "Well here we are again. It's always such a pleasure." -- GLaDOS, 2011
    5. Re:the problem with google apps by master_p · · Score: 2, Interesting

      While you are right, the need for detaching the GUI from the computer the application runs on is not limited to the web. the X-Window system was a step in this direction, and the NewS GUI was a better implementation...but since these technologies are outdated, the world needs a standard for remote UIs that cover all other aspects of GUIs.

      Since this is not gonna happen any time soon (because people don't want to agree - only want to agree to disagree), my company chose the ULC toolkit for Java web apps. It's a short of middle ground between X-Windows and web applications: the GUI is served by Swing, but the underlying widgets' callbacks are executed on a server. Development is similar for native Swing apps, and the Eclipse plug in also has a visual designer. The toolkit is commercial though...

    6. Re:the problem with google apps by tambo · · Score: 2, Insightful
      I'm going to point out that I said "Why not just leave the web to things that require the Internet and keep applications on the PC?" in a previous comment.

      And in response, I'll assert that there are many contexts in which internet apps are better designed as locally installed, robust, high-performance desktop apps than as remotely deployed, hinky, inefficient browser-caged apps.

      The term web application is not often applied to Java any more. The term "web app" these days often refers to AJAX (formerly known as DHTML) apps and, less often, Flash apps.

      Google Maps Goes Java For Mobile Phones...

      The "web programming" that we're discussing is a mishmash of all of the disparate technologies that, together, might get the job done. AJAX itself is an amalgam of Javascript, XML, and some server-side language like Java/Python/Python, all running against MySql and in an Apache environment... that's pretty messy. And, yes, if you want something more active than simple forms and Javascript graphics, then you're probably using either Java (terrible) or Flash (also terrible.)

      ...so use absolute positioning instead. You act like it doesn't exist...

      Sure, it exists, but it's nowhere near as streamlined as positioning and sizing in modern desktop programming. If it weren't, web devs wouldn't still be struggling with DIVs and tables and invisible spacer graphics. But they are - they have to jam a half-dozen hacks into the page in order to get control placement to behave normally and uniformly on all browsers.

      The sad state of affairs with web application GUIs is almost entirely Microsoft's fault. IE6 and its rather poor support for CSS2 and DOM, which weren't addressed for 6 years...

      Do you really believe that?

      Imagine what would happen if Mozilla came up with a truly easy-to-use, robust, predictable, high-performance, stable web programming language. Don't you think devs would flock to it? I would in a heartbeat! And what do you think would happen to IE's market share if Google Maps and a horder of other interesting web apps ran beautifully on everything except IE?

      - David Stein

      --
      Computer over. Virus = very yes.
  3. Desktop app development by 280Z28 · · Score: 5, Insightful

    I prefer desktop development. Web development gets frustrating with its nooks and crannies of brokenness. If standardized Javascript and CSS were as ubiquitous as C/C++/[anything else desktop], that might someday change... but probably not.

    --
    Turning coffee into code.
  4. Might be in the minority here.. by ironwill96 · · Score: 4, Insightful

    But for some reason I can't stand Web Development at all but *love* desktop applications. My coding of choice is C#.Net or Java and i've written numerous small but useful applications that are in use at my place of employment and a few former jobs. Most of these apps are networked and use client-server interactions, but only on the intranet, not out on the internet.

    I am asked quite often though, "Well why don't we just stick this on a web page and then we can get it from everywhere!" and I usually demur some and note that we dont need it to when anyone on the intranet can get to it anyway and there is no reason for some of these apps (or data) to be accessible outside of the corporate intranet.

    For some reason, I just don't like ASP.Net or PHP or JavaScript, i've written small interactive web things in them, but it takes me way longer to accomplish something useful on a website than it does doing a desktop application. I suppose this probably has to do entirely with familiarity, but I also hate how slow websites typically are when you do something overly graphical or complex, whereas it runs great on the desktop application locally.

    --
    "To strive, to seek, to find, and not to yield." - Tennyson
    1. Re:Might be in the minority here.. by The+Bungi · · Score: 3, Interesting
      It's just a different paradigm and mindset. They both have their unique advantages and shortcomings. Get a good IDE, a good framework and some Dr. Pepper and you can probably pull it off once you "grok" the shifts.

      Having said that, a web application will never have the level of control that a forms-based one has, no matter how fancy your JavaScript is. Truth is, the browser is a crappy platform no matter how you look at it. The web illuminati proclaimed the desktop dead ten years ago and now again on the tails of GMail and the half million good and bad "rich" applications developed apparently for the specific purpose of showcasing how utterly screwed up the browser as a platform is.

      But if you work for a living you probably have to go with the flow, so "Ajax" it is until the next fad comes around. Personally I think Java/.NET/Mono and the like with a good forms front end and a really powerful matching backend infrastructure is going to be the next big thing along with XCOPY deployment and zero impact installs. CPUs and memory are catching up to managed frameworks and writing a web service (or a client) is laughably simple now (I remember hand-coding my WSDL and walking in the snow uphill both ways, etc).

      In any case, the fun part is being int he middle of it all =)

    2. Re:Might be in the minority here.. by tambo · · Score: 2, Insightful
      I just don't like ASP.Net or PHP or JavaScript, i've written small interactive web things in them, but it takes me way longer to accomplish something useful on a website than it does doing a desktop application.

      Bingo. It's not just you, and it's not just your imagination. Programming basic web functionality is ten times harder, more time-consuming, more error-prone, and less rewarding than desktop programming. There's no comparison. I posted a few of the many reasons above.

      - David Stein

      --
      Computer over. Virus = very yes.
  5. People hate developing applications by TodMinuit · · Score: 3, Insightful

    No, really, they do. They like solving problems. Having to implement the solution is the boring part, no matter how it's going to be done.

    --
    I wonder if I use bold in my signature, people will notice my posts.
    1. Re:People hate developing applications by bzipitidoo · · Score: 4, Insightful

      It's not even developing apps anymore. It's assembling apps from bits of prefab code. The kicker is that only some of it is good quality and can be picked up and mastered quickly.

      These days, coding is grabbing some barely begun project that does just enough that you feel it's better to add to it than start fresh, using code generators (SWIG, yacc/lexx or Antlr, and doesn't VB have some wretched auto generated window manipulation stuff? etc.) then spending time ferreting out and fixing subtly broken bits or wondering if you missed some little detail about how to properly use the tools. Then maybe get another piece or two by running some Fortran source code thru f2c, call functions from lots of different libraries, grab some modules off cpan, try to realize the advanatages of OOP by reusing other people's classes, search Sourceforge again for yet more pieces, glue the crap together with shell scripts, and try to avoid dallying in makefile hell by dallying instead in automatic makefile generation hell. Constantly search the Internet for this and that error message.

      And that's just "development". Then there's all kinds of support stuff to figure out. Wrestle with your choice of source repository be that cvs, subversion, rcs, or whatever, figure out what to set to what in the environment on stuff like Java's CLASSPATH, muck about with this and that IDE and try to get the compiler and debugger to talk nicely to it or live with vi when you get tired of trying to figure out why you're not having any luck getting X to tunnel through ssh. Either way figure out how to twiddle the colors for the syntax highlighting or squint to make out those letters that were displayed in dark blue on a black background. Bone up on emacs to figure out how to get it to stop replacing backspace with ctrl-h, and binding ctrl-h to the help when being used remotely. Repeat "./configure;make;make install a library or 2, discover they depend on yet other libraries" until "all dependencies satisfied or you run up against some missing or broken piece and will have to search for alternatives." And still you're not done. How about Valgrind? Profiling? Maybe some kind of package to automate testing? Automated backups of the work? And you're never really done-- there are always upgrades, and there's always deciding when the tradeoff of having to redo your environment is worth the bug fixes, new features, and so on.

      Life was so much simpler when they were teaching that bubble sort in the beginning C class, wasn't it?

      --
      Intellectual Property is a monopolistic, selfish, and defective concept. It is "tyranny over the mind of man"
  6. I don't see desktop apps ever going away entirely. by Mongoose+Disciple · · Score: 5, Insightful

    You're never going to get the performance on the web (for most things) that you can running locally. Equally, while tools and frameworks for faking it have gotten a lot better, maintaining state is a pain in the ass on the web and generally is not on the desktop.

    It's like when Java came out and some people said we'd never write C again. There are things Java is good for and has taken over, just as there are things web apps are good for and has taken over, but there is still a place for desktop apps just as there is still a place for C.

    The kind of bold, sweeping statements made by this article aren't much more than flamebait in a pretty dress.

  7. Browser as bad user interface by kherr · · Score: 3, Insightful

    This web app stuff is a fad (I hope). It was really popular in the late 1990s as well. Eventually the weight of developing in the unreliable and limiting multi-purpose browser gets to be too much, and desktop apps come back into vogue. Ajax makes things a lot nicer than ten years ago, but people expect more as well. Some things can be done really well using Ajax but it's not the solution for everything.

    iTunes is a dedicated desktop app that uses internet data intelligently, but Apple made a good choice not depending on a browser. Compare Google Maps to Google Earth, which is more responsive and flexible? And then there's the comparison of something like QuickTime or Windows Media players and the pseudo video players written in Flash with bad control responsiveness and limited functionality.

    1. Re:Browser as bad user interface by Mike1024 · · Score: 2, Insightful

      Compare Google Maps to Google Earth, which is more responsive and flexible?

      I prefer online maps; they work better for me.

      For example, did you know windows live maps includes a bird's eye view feature?

      In the world of desktop software, here's how that would have worked: I'd have turned my map view into some sort of file, found web space, uploaded it, and posted a link to it. You would have downloaded the file and been told 'unknown file type', you'd have to go to Microsoft's web page and download 'Microsoft 3D Earth' or whatever their client software is called. You'd need administrator privileges to install it, and it would probably conflict with Google Earth for the 'map view' file type (or perhaps the map view would have opened in google earth and shown you the wrong thing). If you already had the software installed but you got it before the 'bird's eye view' feature came out you'd have to upgrade - probably by manually downloading a multi-megabyte new installer and running it. If you ran Linux or a Mac you might not be able to access the software at all.

      On the other hand, with a web interface, you could see the thing I was trying to show you just by clicking a link I copy-and-pasted.

      Anyway, I guess my point is: though web-based apps have disadvantages, they also have advantages, and for some applications these advantages can be pretty compelling. I hope web apps are not a fad.

      --
      "Goodness me, how unlike the FBI to abuse the trust of the American public." -- The Onion
  8. Give Me The Desktop by MBCook · · Score: 5, Insightful

    I develop two things for a living. I work on a server back-end, and on the web front-end. The back end is easy. It's all Java, it's fun to develop for (there is challenge in some things, for example).

    Then there are tons of front-end things I do. I hate them. It's developing the same code OVER and OVER (since we basically make copies of some parts to be used numerous times) and the glue code always has to go in there and is a pain. Then there is the scripting. Besides making things display right (which is a pain across numerous browsers), there is the functionality. "We want a select all checkbox." "When you update this date, it should update that date, unless this date is before than date except when...". Javascript is HIDEOUS. Can we just replace it with Python or Java even PHP?

    Our problems are all user based. The users want it to work like a desktop application, but want it to be web based. It should respond fast and do all this checking and such, but it can't be a real application. You should be able to move forward and backwards without things going weird (can be tough to do in the stateless-ness of the web) but it can't be a real application.

    We want an application, but we want it to be web based. We want it fast, but it must be made in HTML and Javascript. Blah blah blah.

    I would LOVE to do more desktop applications. I wish I could.

    I wish users would get over this stupid "lets put everything on the web" stuff. There is a fair amount of what we do that I can see being web based (like most of the reporting type stuff external users use). But all the management stuff we use in house would be a much better fit to a real application than the web applications we are using now.

    Please, PLEASE.... bring desktop applications into vogue. Java allows right-once-run-anywhere to just as high a degree as HTML/JavaScrpit, if not more. Takes less bandwidth. Can run much faster. Can do client side stuff easier.

    --
    Comment forecast: Bits of genius surrounded by a sea of mediocrity.
    1. Re:Give Me The Desktop by TodMinuit · · Score: 3, Insightful

      (since we basically make copies of some parts to be used numerous times)

      You don't copy code: You generalize it into a function.

      --
      I wonder if I use bold in my signature, people will notice my posts.
    2. Re:Give Me The Desktop by Jim+Hall · · Score: 3, Insightful

      I wish users would get over this stupid "lets put everything on the web" stuff. There is a fair amount of what we do that I can see being web based (like most of the reporting type stuff external users use). But all the management stuff we use in house would be a much better fit to a real application than the web applications we are using now.

      Please, PLEASE.... bring desktop applications into vogue. Java allows right-once-run-anywhere to just as high a degree as HTML/JavaScrpit, if not more. Takes less bandwidth. Can run much faster. Can do client side stuff easier.

      Trust me, just wait a little while, and desktop applications will be all the rage again. If you've been in the computer business long enough, you've seen the shift from "timeshare" server, to the desktop, back to server (thin client), back to desktop, back to server (Java), back to desktop, back to server (web applications / ajax, web 2.0). It's only a matter of time until the pendulum swings back to desktop.

  9. Web apps are great, except... by VGPowerlord · · Score: 4, Insightful

    Web apps are great, except...:

    1. When the connection goes down, or even lags, it can have an impact on the speed you're working on.
    2. Implementations for CSS vary wildly.
    3. We aren't using dumb terminals. Web Apps, almost by definition, use an interpreted language embedded into the web browser. Compiled applications (or even ones that use bytecode) will perform faster than this and without the latency that the web introduces when you change pages.

    Why not just leave the web to things that require the Internet and keep applications on the PC?

    --
    GLaDOS for President 2016! "Well here we are again. It's always such a pleasure." -- GLaDOS, 2011
    1. Re:Web apps are great, except... by Baby+Duck · · Score: 4, Insightful
      Why not just leave the web to things that require the Internet and keep applications on the PC?

      Because DOWNLOAD and INSTALL are two words that make too many users pass out upon hearing them uttered. If an IT Department is doing both of these tasks on their behalf, they too faint when they have 1,000+ users.

      Do you have the right OS? Right version? The right drivers? Is your antivirus interfering? Is your Registry befuddled?

      It's much easier to answer these questions once -- for the browser software -- and be done. Need to upgrade? NO PROBLEM! Upgrade on the servers only and we're off.

      Now I'm sure EVERY ONE of my above arguments can be refuted, drowned with "gotchyas", banged with exceptions, and slammed with a "not exactly" or two. But I'm not the one that needs convincing. Convince management, cuz they are brainwashed that all my above points are Irrefutable Law of Common Wisdom. It's an uphill battle to show them otherwise. They are completely sold on the Browser as Platform concept. And that's where their pocketbooks go. So that's where commercial dev shops go.

      I'm not saying webapps are without any merit, but, yes, people tend to go overboard and shove a square peg in a round hole.

      --

      "Love heals scars love left." -- Henry Rollins

    2. Re:Web apps are great, except... by Anonymous Coward · · Score: 2, Insightful

      Because DOWNLOAD and INSTALL are two words that make too many users pass out upon hearing them uttered. If an IT Department is doing both of these tasks on their behalf, they too faint when they have 1,000+ users.

      And they don't faint when they get 1000+ calls asking if the network is down, and why can't they open their Power Points, and howcome they can't access their files at home even though they have installed the Internet on their hard drives...

      Do you have the right OS? Right version? The right drivers? Is your antivirus interfering? Is your Registry befuddled?

      Do you have the right browser? Right version? The right plugins? Is your firewall interfering? Are your browser/Java/ActiveX settings befuddled?

      It's much easier to answer these questions once -- for the browser software -- and be done. Need to upgrade? NO PROBLEM! Upgrade on the servers only and we're off.

      It's not so much easier, it just shifts the focus from "did we install the desktop software correctly?" to "did we set up the client's browser correctly?"

  10. Firefox 3.0 by PIPBoy3000 · · Score: 3, Interesting

    Wait for Firefox 3.0. Soon you'll be able to use your web apps, even if you're connected at 0 Mbps.

    1. Re:Firefox 3.0 by 8-bitDesigner · · Score: 2, Funny

      Oh man, I can use GMail without a network connection now?

      SWEET!

    2. Re:Firefox 3.0 by tambo · · Score: 5, Insightful
      Wait for Firefox 3.0 [readwriteweb.com]. Soon you'll be able to use your web apps, even if you're connected at 0 Mbps.

      I'll believe it when I see it.

      Sorry, I just can't be optimistic about this. You shouldn't be, either.

      Look - today's web browsers can't even really get offline web page caching right. We're about a decade into the WWW revolution, yet browsers still can't passively save all of our web accesses and show 'em to us again when we're offline. I'd love to have my browser cache all of Slashdot's articles, and BoingBoing's, and Fark's links, for later offline browsing... yet it can't do that. The best we can get is RSS, which, frankly, is crap... it's like Gopher in HTML.

      If browsers can't tackle the very simple task of caching routine HTML for offline access... what gives you confidence that it will cache complex AJAX applets with even minimal usability?

      - David Stein

      --
      Computer over. Virus = very yes.
    3. Re:Firefox 3.0 by RuBLed · · Score: 2, Funny

      Haven't heard of GMail Paper yet?

    4. Re:Firefox 3.0 by Anonymous Coward · · Score: 2, Informative
    5. Re:Firefox 3.0 by dk.r*nger · · Score: 5, Informative

      I'll believe it when I see it.
      Sorry, I just can't be optimistic about this. You shouldn't be, either.
      Look - today's web browsers can't even really get offline web page caching right.


      I'm not sure why I should adjust my expectations to technology according to your misuse of technology.

      Todays browsers don't get offline caching of Slashdot right, because Slashdot is an online application, and says so:

      HTTP/1.1 200 OK
      Date: Tue, 10 Apr 2007 12:48:30 GMT
      Server: Apache/1.3.37 (Unix) mod_perl/1.29
      SLASH_LOG_DATA: 07/04/10/011220
      X-Powered-By: Slash 2.005000152
      X-Fry: I don't regret this, but I both rue and lament it.
      Cache-Control: no-cache
      Pragma: no-cache

      Vary: User-Agent,Accept-Encoding
      Connection: close
      Transfer-Encoding: chunked
      Content-Type: text/html; charset=iso-8859-1


      In order to read Slashdot offline "right", you need to break HTTP. And we all know what happens to naughty boys who breaks standards.

      Offline webapplications will work offline because they will be designed to work offline. They will get safe caching of resources and a stateful browser-DOM-object to save data to. It's not exactly rocketscience.
    6. Re:Firefox 3.0 by kalirion · · Score: 2, Funny

      And I bet you'll be able to play online games and download movies offline too!

    7. Re:Firefox 3.0 by rjshields · · Score: 3, Funny

      Man, I can't wait for someone to write an AJAX version of Photoshop that I can use offline. It could be just like the real thing but fifty times slower!

      --
      In this world nothing is certain but death, taxes and flawed car analogies.
    8. Re:Firefox 3.0 by Myopic · · Score: 2, Interesting

      I would prefer if my web browser did what I told it to do, instead of what web page authors tell it to do. For the most part, I'm going to go with the author's decisions, but often I'll tweak and twiddle things. Specifically, the two best examples, in order of importance, are filtering of parts of pages (think, advertisements), and caching pages marked nocache. This isn't some crazy concept, the CSS specs first made the mistake of telling browser writers that webpage stylesheets took precedence over user stylesheets, but then CSS was corrected because most people agree that user preferences are the most important.

      But, then again, I imagine there is some way to override that nocache setting in Mozilla.

  11. You make few assumptions which aren't always true by mr_mischief · · Score: 3, Informative

    You assume that neither PHP nor Perl are being used to do desktop apps. Perl certainly is. Ruby, Java, Python, and several other languages are being used to do web development, too.

    In particular, it seems a shame to pigeonhole Perl. Using Perl and readily available libraries, one can develop console programs, GUI programs, daemons, or web apps. With Tk, SDL, OpenGL, WxWidgets, curses, GTK, Win32::GUI, or Prima, few languages have as many options for interface libraries last I checked. Just because Perl is very useful for web development doesn't mean it's not useful in other areas.

    In a fun twist, I had to develop an app that worked the same over the web or on a Windows desktop with no net connection and no installation. It's written in PHP and Perl with a little client-side JavaScript and runs an Apache+MySQL instance from CD. So it's a web app, but it doesn't require net access.

    And BTW, ADP (American Data Processing) and similar companies makes a lot of money doing payroll for other companies.

  12. Web? Desktop? by jackb_guppy · · Score: 2, Funny

    Real Men code GREEN SCREEN!

    It runs faster! It is more secure!

    1. Re:Web? Desktop? by Door+in+Cart · · Score: 2, Interesting

      Real Men code GREEN SCREEN!

      It runs faster! It is more secure!

      Let me guess, you use Windows. You probably wouldn't find such a thought to be so laughable if you'd ever invested the time to learn some basic *nix. Not only are text-mode apps (way) faster and (way) more secure, but they tend to excel in quite a few other places where web apps fail, to name a few:

      • configurablity
      • inter-application communication
      • extensibility
      • versioning
      • standardized documentation system
      These essential features are lacking from web apps chiefly because http and html were designed for static hypertext. Yet the layout and design capabilities of css allows web apps to succeed in one way that is wholly inapplicable to text-mode apps: web apps can look good. And in our visually oriented wysiwyg culture, that means a lot. But while laughing at text-mode advocacy might build your karma, I urge you to bear in mind that you would likely prefer text-mode if you took the time to become accustomed to it, lest you mistake maturity for antiquation.
  13. Re:The real growth is embedded/mobile by fbjon · · Score: 2, Informative

    Don't forget resource-intensive apps like Photoshop, any 3D modeling, music&audio, and so on. There's lots of people making those, and they require a personal computer.

    --
    True confidence comes not from realising you are as good as your peers, but that your peers are as bad as you are.
  14. Yes, I HATE desktop development... by Nedry57 · · Score: 3, Informative

    For two primary reasons: 1) Installers. Writing installers sucks. The MSI "standard" is a bloated piece of crap, Installshield and Wise are ridiculously hard to get along with, and NSIS is a little too primitive (although by far the best installer platform I've found). You have to test the installer on every platform, ending up with stupid little quirks on Vista and x64 platforms. It's a nightmare, and patching/updating is a whole different nightmare. In the real world, there's no such thing as simple XCOPY deployment. At least for shrinkwrapped apps. 2) COM Interop. The Win32 API and COM combined is the crappiest piece of crap that ever crapped. I have nightmares about being forced to use Interop because they left out some trivial and silly thing from a WinForms control. I am speaking quite literally in saying that I have had nightmares. Seriously. I know, I know, working in Linux probably makes both of these problems more tolerable, if not completely invisible. But some of us must work in Windows. C'est la vie. I would take ASP.NET, or PHP, or Ruby, or Python, or any of those over crappy desktop Windows programming any day of the week. I'll even accept multiple-obscure-browser testing over COM Interop and installers.

  15. It's not hate, it's headaches. by WoTG · · Score: 4, Informative

    If it's technically possible to choose either a web based app or a desktop app, I would pick the web every time.

    Tech support sucks big time. It's far, far, far easier to maintain, upgrade, distribute a web application than it is to manage a desktop application. A couple major web browsers and a couple major plugins pretty much covers every testing and support situation that you will face -- especially for intranet type situations.

    For desktop situations there are a million variables: installers, bugs, spyware, permissions, operating systems and versions of OSs, non-existent user backups, differing service pack and patch levels... the list goes on. Most of these really aren't your problem as a software developer or publisher, but in reality, they often become your problem. That's in addition to the nightmare of supporting different versions of your program.

    If the web can be applied to a situation, there should be no surprise that people will develop for the web.

    1. Re:It's not hate, it's headaches. by BiggerIsBetter · · Score: 2, Insightful

      So why not build the apps as client-server? You avoid the headaches of browser implementations, and you retain the maintainability of centralised apps. It's faster/more-responsive than browser-based web systems, and easier on the clients than a full desktop app. I think internet connected or distributed apps are great, but I also think "web" based desktop apps are layer upon layer of kludge to make a display medium behave like an application.

      --
      Forget thrust, drag, lift and weight. Airplanes fly because of money.
  16. I like developing for the web... by Zaph0dB · · Score: 2

    I like developing for the web... actually, I don't. I like developing in a non-gui environment, but I'm currently assigned to a "gui" team. Developing for the web (at least in my environment) allows me to (mostly) concentrate more on the problem itself and less on the "how thing are going to look". This is probably due to the great framework we use for web (mix of Struts and our own very extensive framework) and the lack of such framework for our (now abandoned) swing application. However, in my opinion, availability of mature frameworks is the decisive point when it comes to enterprise-level development. As a junior developer in my company my requests to change frameworks (or at least, conform to the rules of the one we use). Web development, or at least the variant I've seen 'here' (at my work place), almost forces you to work correctly (don't think I haven't encountered terrible code that broke all conventions as well). I could be wrong (again, little experience with these things), but from what I've seen so far, if I'm stuck with UI development, I'd prefer the web over desktop.

    --
    When in danger or in doubt, run in circles, scream and shout [Robert Heinlein]
  17. I strongly prefer web apps by ddent · · Score: 2, Insightful
    I _greatly_ prefer doing web apps. Great things about web apps:
    • No mucking around with ugly GUI code
    • Easy to use: the interface limitations can be a good thing sometimes
    • Easy to deploy
    • Cross platform support, if you are careful, comes for free
    • Security: less data stored on often compromised desktop systems


    Perhaps it has to do with familiarity, but from my perspective, doing desktop applications (especially by the time you deal with all the extra support & deployment issues) is a real pain.

    However, I will say that many people I work with do not share my enthusiasm for web apps. There is a huge technology stack to learn when you need to deal with the chain of technologies involved from the server to the desktop. All the quirks of different browsers take some getting used to, and it requires a different mindset. It also requires you hold the belief that a website can be an application, which, amazingly, many still do not have.

    With all that said, there are still some things which are more suitably done as desktop applications. I think as things advance that list gets shorter and shorter.
  18. Re:I don't see desktop apps ever going away entire by Koen+Deforche · · Score: 2, Informative

    Quote: "Maintaining state is a pain in the ass on the web and generally is not on the desktop."

    You must not have heard of libraries like echo2 or Wt for doing web development. They have the same API as desktop GUI libraries.

  19. Re:The real growth is embedded/mobile by Dogtanian · · Score: 3, Informative

    Ha ha... knew someone would mention that as soon as I heard mention of PS. I'm willing to bet that the online "Photoshop" will be extremely limited and wizard-based; at best it will use the core PS engine. I'm not saying it'll be bad, but it certainly won't compete with the full PS, nor even Elements; in fact, I doubt it'll even be as sophisticated as the now-defunct Photo Deluxe (a nice, but very limited PS-based product).

    --
    "Slashdot - News and Chat Sites Deviant". (Click "homepage" link above for details).
  20. Love desktop apps? What? by wonkavader · · Score: 2, Insightful

    I'm seeing a lot of text being written here about how desktop apps are wonderful and webapps are crap, or a fad, or difficult, or slow.

    Web apps are not desktop apps. They are different. You have different reasons for writing a desktop app than you do for a web app. Web 2.0 interfaces may be a fad, may be painful to write, etc., but webapps as an entire class just don't fit that bill.

    Write once, deploy instantly over an entire organization. Write in the environment you like, and yet the whole org doesn't know you wrote it as a wrapper over a bunch of perl scripts you use as command-line apps. Write something using one database connection (where that's a legal option), and thus, write cheaply. Write using a simple interface with fairly low expectations, so that anyone can use it without training (unless you do a VERY BAD JOB INDEED), it takes minutes instead of hours to write, and can work on every single machine of any sort in the org.

    Folks, web apps are the best thing since sliced bread.

    Desktop apps are a BITCH. As a linux guy, they mean I have to work under windows. That's a showstopper, right there. As a desktop support nightmare, they're immense. They mean you have to standardize on a version of windows in the org, have to have minimum requirements, have to compete with viruses, self-destructing OS installs, etc. Meanwhile your design phase gets much longer, because expectations are higher.

    Yes, complex apps often work much better as standalone. Yes, interface design for them is much more complicated, and thus can be more rewarding. But most companies need VERY FEW of these. Web apps are a much better choice for a huge amount of what most companies do. And as programmers, they allow us to maximize our impact on the productivity of the org. Where you can use web apps, you should. For programmer productivity, LAN supportability, and speed of delivery, it's like night and day.

  21. People hate WINDOWS desktop development by metamatic · · Score: 2, Informative

    From reading the answers, I think the true statement is that people hate developing desktop apps for Windows.

    The crufty GUI code, the horrible installers, the COM string and duct tape, the .NET version hell, all that stuff is specific to Windows development.

    Mac OS X application development is almost a pleasure in comparison. Even Java and Swing is nicer.

    Having done Windows, OS X, Java and web app development, I'd definitely pick Windows as my least favorite. But I'd take OS X or Java over web app development any day.

    --
    GCHQ Quantum Insert installed. If only our tongues were made of glass, how much more careful we would be when we speak
  22. Re:You make few assumptions which aren't always tr by xenocide2 · · Score: 2

    In particular, it seems a shame to pigeonhole Perl. Using Perl and readily available libraries, one can develop console programs, GUI programs, daemons, or web apps. With Tk, SDL, OpenGL, WxWidgets, curses, GTK, Win32::GUI, or Prima, few languages have as many options for interface libraries last I checked. Just because Perl is very useful for web development doesn't mean it's not useful in other areas.


    You have to admit, it's pretty cringe-worthy when you discover Frozen Bubble was written in Perl.
    --
    I Browse at +4 Flamebait

    Open Source Sysadmin

  23. Re:The real growth is embedded/mobile by BadERA · · Score: 2, Interesting

    As an owner of a Treo 700w, 2 Cingular 2125s and an 8125 (HTC Tornado and Wizard), and as an engineer for products based on these platforms, I disagree.

    The only point to mobile apps is connectivity. Text messaging? Check. Email? Check. Media sharing? Check. Sure, I can write a Word doc on my Pocket PC phones, or on a Smartphone with a Bluetooth keyboard (I'm not out to grow Asian SMS thumbs) but do I WANT to? Will I do so in anything but the most desperate scenario? No, I'm going to do it on my laptop or desktop. Am I going to do Photoshop work on a 2.5" diagonal screen? Heck no! Am I going to write software ON my phone? Probably not, though I have edited HTML and ASP from a Pocket PC phone before. Yes, I maintain a list of contacts and calendar events, but only for purposes of keeping myself in sync at home and at work -- without a desktop or laptop flashing up an event notice in front of me, I'd miss half my meetings. Yes, having that schedule available to me on the road has value, but again, not without integration with less-mobile platforms.

    One product I engineered is, essentially, a self-contained web cam. No electrical requirements (battery/solar powered) not hard line to a network (GPRS driven). Take a picture, send it to the server. All the interaction on the client's part is with the server, not their deployed camera, and from their own desktop or laptop (though yes, there has been some talk of making the camera viewing/controlling app mobile-friendly). All in all, however, you're never going to have serious clientside applications doing much of ANYTHING on something with a 2.5" screen. Now, if I could easily run screen output to a real monitor, that's a different story ...

    --
    I am, therefore you think.
  24. Frozen Bubble by mr_mischief · · Score: 2, Interesting

    I haven't played the game. I might try it out, if only to see what's so "cringe-worthy" about it. Is it buggy? Is it just plain annoying? Those things are likely effected by the implementation language very little if at all. I doubt that for a game like Frozen Bubble, using a good dynamic language is any problem. It probably could have been done in Perl, Python, C, Pike, D, C++, or any other language with SDL bindings and been just as good (or just as bad).

    OTOH, the dynamic language Lua is used for much of Supreme Commander. SC is known as a great game, but one must wonder if using Lua for the AI is part of the reason it takes so much processor to run it. The game is fun, but due to the number of individual units that can be active at once it can run like a dog on all but multi-core systems. Using a more efficient language for the AI may have made it scale a bit better, but the flexibility of using something like Lua I'm sure is worth the trade-offs involved. The hardware will catch up shortly, as with lots of other games when they were first released. It's nice to see one stress the CPU instead of the GPU for once, anyway.

  25. False Choice by kazad · · Score: 2, Insightful

    People often get stuck in a false dichotomy when choosing between a web and desktop app.

    The simple answer is to use the web version for what it's good for (centralized updates, rapid development) and the desktop version for what it's good for (performance, offline access).

    Some apps run a local webserver on a non-standard port (Yahoo Music Engine) to create a hybrid model. Javascript/HTML can be a very effective rapid prototyping tool.

    For instacalc, I have an online version and downloadable gadgets to fill this need. I use both thunderbird (fast access to mail, offline access) and gmail (access from any computer) to read my email. The "secret" is letting a web app be a web app, and a desktop app be a desktop app. Use the right tool for the job.

  26. middle ground by fred+fleenblat · · Score: 2, Interesting

    At a previous employer, we experimented with a very thin desktop GUI. It used the host OS to display widgets but was entirely under control of a server. It worked remarkably well and as long as the client and server were on the same LAN there was no lag.

    From my hazy memory, it had these successes:
    * a crashed app (which was rare anyway) could be restarted right where it left off
    * clicking, drag/drop, typing, copy/paste, scrolling, and resizing were as fast as the host OS was capable of since most of the time these didn't involve the server
    * very little installation headaches since there was no business logic, databases, or special-case code on the client side, and the set of available widgets didn't change that often anyway
    * new servers could be tested by just pointing the client at them
    * server could be upgraded at our convenience
    * one server could handle dozens of users and the load was much lower than citrix, RDP, or X11 type of model since the whole GUI stack was offloaded to the client not just the final bit slinging
    * protocol wasn't that complex. "this widget with this data goes here" then "send a message when the user finishes doing things with it"
    * multiple windows could be open and be unrelated, so a server could make it look like you were running multiple apps even though it was just one GUI process and one server process
    * response over slow network wasn't that bad. the most back-and-forth communication mostly happened at points in the app where users expected things to be slow, like when you click on "Okay" or select "New..." from a menu so we didn't get many complaints.

    Okay, obviously we didn't invent this, but other attempts always seemed hobbled somehow. ActiveX and java applets are visually sandboxed and have a tough time breaking out into looking like a real app. Firefox had some experimental widgets that were actually pretty cool but in actual use they were laid out on the page in a very HTML-ish fashion and later withdrawn for security concerns.

    Anyway, I just want to share this as kind of compromise between desktop and html-based apps that seemed to work particularly well for us.

  27. Re:I don't see desktop apps ever going away entire by Mongoose+Disciple · · Score: 2, Informative

    I'm familiar. They do simplify state maintenance to a point and are appropriate for a lot of different things you could do with a web app, but I think you're kidding yourself if you don't think there isn't extra thought/work involved there and some extra performance concerns that you wouldn't need to have with an equivalent desktop app.

  28. Re:On-line Photoshop-alike by tigersha · · Score: 2, Informative

    The problem, yet again, is that "getting close to the simpler end of Photoshop" is saying that the TEXTAREA box in Firefox can compete with Indesign and solve all you typesetting needs.

    In a word, no.

    --
    The dangers of excessive individualism are nothing compared to the oppressiveness of excessive collectivism