vote up 3 vote down star
2

Have there been any (programming!) technology changes that you've made (platform, language, version) that you never, ever want to have to reverse?

What is the main reason why you would not want to go back?

Ones that come to my mind include

  • C -> C++ (OO)
  • .NET 1.1 -> .NET 2.0 (Generics)
  • .NET 2.0 -> .NET 3.5 (LINQ)

Addition

It would be great if you could include a primary reason for why you would not want to go back

flag
1  
You mean, like, the opposite of Windows XP ---> Vista? =) – Zach Scrivena Jan 28 at 12:31
make-wiki must be one of the most redundant tags I can think off. – boris callens Jan 28 at 15:38

19 Answers

vote up 2 vote down check

You forgot to include :

Nothingness -> Microsoft.NET

Reminds me of the quote :

In the beginning there was nothing. God said, 'Let there be light!' And there was light.

link|flag
We obviously don't live on the same planet. – JesperE Jan 28 at 12:58
ahueuhae I'm sorry but I'll have to agree with Jesper. – José Leal Jan 28 at 13:21
Although .Net does have its strengths - it's still derivative. there are other languages that are more "wow" and progressed what a language can do. Erlang, Scala, Lisp, Scheme, Haskell etc... Hell, even C. – jim Jan 28 at 13:28
The reply was intended in jest. My apologies if that was not obvious. – Cerebrus Jan 28 at 13:48
vote up 6 vote down

Losing HTML Tables and Spacer.gifs for Divs and CSS

link|flag
+1, spacer gifs.. – Ian Quigley Apr 17 at 8:31
vote up 6 vote down

Yep..

  1. Delphi -> C# - Saw that borland was dying and needed to change to a solid OO language.

  2. Desktop programming -> Web Programming - No more worries with client connection problems with DB or required software (.Net framework or JVM). I wanted to have visual things on my hand, not predefined Objects that I need to know its entire API to add or remove. Javascript is to me a very powerfull language.

  3. C# -> Java - JavaEE turned out to be a very neat thing to me. You make your own Mappings (a predefined pattern can easily call a class and etc), no IIS, log4j, built my own web framework, c3p0..

  4. Windows -> Linux - Tired of the blue screens, cheaper, finally a real Shell.., open source software that I can change for my needs..

Exactly in this order =D

A bit of a risk for me to say that, since most programmers here prefer C#. But for me java worked better, nothing wrong with C#.

link|flag
+1 for suggesting that Java is better than C♯ =) – Zach Scrivena Jan 28 at 12:37
+1 from me, too. While I think Java is inferior, there are nice JVM languages (Scala) that are on-par with .Net. But Java is really multi-platform. – Lemmy Jan 28 at 12:39
I'd love to switch to Linux, but I get drawn to winxp time after time for Visual studio (nothing like it) and the casual game. – boris callens Jan 28 at 15:40
Yes, I do have to agree that Visual Studio is unbeatable, however netbeans is still fulfilling my needs for now. – José Leal Jan 28 at 20:16
vote up 6 vote down

I'm not sure if I'm answering the question properly, but these were pretty earth-shattering:

link|flag
Not SVN or Test::Harness explictly, but for those ideas.... +1 – jim Jan 28 at 13:25
vote up 4 vote down

Visual Studio -> Eclipse -- Because it is free, it has a very powerful refactoring tool and I can use it when programming in different languages or platforms.

link|flag
Could you add in your primary reasons too? Thanks! – Richard E Jan 28 at 12:52
vote up 3 vote down

A little more generic answer. I have seen this several times:

Poor/Little Abstraction --> Good/More Abstraction

And hope this will happen many times again.

link|flag
vote up 3 vote down

Terminal -> Graphic User Interface

old search engines(1995) -> www.google.com

VI -> IDE(managing large projects "not computer science homework", refactoring code, code generation). I do love vi but....

java 1.4.2 -> java 1.5(Generics, the return of the "printf")

SOAP -> REST(SOAP is overkill)

link|flag
Could you add in your primary reasons too? Thanks! – Richard E Jan 28 at 12:50
vote up 2 vote down

In the web UI domain:

  • HTML attributes such as BODY BGCOLOR -> CSS
  • alert() -> console.log() when using FireBug
  • custom javascript -> jQuery
link|flag
And yet, things like picking up an ordered list at a specific item is easier and works when using HTML Tags (even though deprecated) and is a pain to set up in CSS (counters, anyone?). – Johannes Rössel May 26 at 7:23
vote up 2 vote down
delegate -> =>
link|flag
vote up 2 vote down

A few things for me:

  • Procedural --> Functional when possible, Procedural when necessary.
    • Future proof for multi-core
    • Less error prone to copy&paste (cause every variable has a unique value)
    • Trains the brain
  • Delphi --> C# --> Scala
    • Delphi: great for GUI apps, but once you want to do more advanced stuff you are limited by the language
    • C#/.Net: is a great overall eco-system, but tied in to Windows
    • Scala: Great Brain Training. Lacks the eco-system C# has, though.
  • Deterministic Free'ing --> Garbage Collection
    • Quite obvious: Helps you to write programs differently (e.g. return instances from functions, helps with functional style)
  • Windows -> Linux
    • It's free as in Willy
    • Provides opportunities to actively improve it

But none of those are really constant forever. I will probably work with Windows again, and work on some old Delphi projects, too. It's more a thing for new projects when you can actually decide everything for yourself.

link|flag
vote up 2 vote down

vb6 -> c# .net - Firstly, I'm just not a fan of vb, but thats a personal preference, but the move to the .net framework has been a huge leap forward, coupled with being able to use c#, and visual studio, makes my life alot easier

tables -> css, I hate tables (unless I actually have tabular data), and being able to finally take control of my layout and do what I want with it has made webdesign so much more fun, along with the bonus of being able to seperate the style from the content and all teh benefits that brings.

link|flag
My move from VB6 to C# was a little more altruistic. I couldn't find any performance reasons that would hold water but the final thing I couldn't argue with is that, for whatever reason, C# developers get paid more! So I jumped with both feet. – perryneal Jan 28 at 16:57
vote up 2 vote down

K&R 'C' to ANSI 'C' function prototypes.

Good grief, when I think about the amount of time we'd spend debugging someone passing a float to a function which expected an int... shudder

link|flag
vote up 1 vote down

no mandatory line-numbering (explicit f.E. C64Basic or implicit like in editors as EDOR)

link|flag
vote up 0 vote down

Fluidics to electronics. .net 3.5 isn't a technology, it's a version increment.

link|flag
vote up 0 vote down
  1. SMTP (stop people attaching >1mb files and we dont trust each other)
  2. TCPIP (factor in the fact that we really dont trust each other)
  3. DNS (Make sure the request and response comes from a valid source/destination)
link|flag
vote up 0 vote down
  1. ASP (VBScript) -> ASP.NET C# ASP.NET
  2. Webforms -> ASP.NET MVC

please don't make me go back...

link|flag
vote up 0 vote down
  1. PHP -> ASP.NET Webforms
  2. Visual DataFlex with Classic ASP -> .NET
  3. Procedural -> OO
  4. ASP.NET Webforms -> ASP.NET MVC
link|flag
vote up 0 vote down

The next one. :-)

link|flag
vote up 0 vote down

humm a few. But the main one:

COBOL -> dBase -> Foxpro -> VB -> Python -> Transcript.

Went from a english like language (cobol) all the way through to another english like language (transcript). ;) But I do miss FoxPro. A lot.

Transcript is - well see Runtime Revolution. Like a grown-up hypercard on roids. I'm having fun with it. And lucky for me, my company loves it too.

Let me add one more big one: js -> jquery. Thank the gods!

link|flag

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.