vote up 2 vote down star
3

I once built a very good web application in ASP (classic) back in 2001 and extensively used XmlHttpRequest object in it. (I was lucky that the clients were only using IE, and only IE supported this object at that time).

Then later when people started talking about AJAX in 2005, It felt good to have used something ahead (or early) of its time.

Well, maybe this does not qualify to be listed as something done ahead of its time.

Which programming technology/technique/practice have you done that was ahead of this time.
One story per answer please.

The title for this question taken from an opposite question here.

flag
IMO, should be wiki. – Marc Gravell Feb 22 at 21:04
("wiki" means that Binoj should edit the question, and check the "community wiki" checkbox.) – le dorfier Feb 22 at 21:26
That was mine too, although not quite as early. It was 2003/ASP.Net 1.0. Using XmlHttpRequest and hand rolling some AJAX wasn't unheard of by then, but it wasn't all that common and I hadn't heard the term AJAX yet. It was a decent web-app but got sidelined because of other issues. +1 from me. – I Have the Hat Feb 22 at 22:19
4  
This feels like a "look how smart I am" thread... – matt b Apr 8 at 2:42
yeah its even tagged bragging! – Binoj Antony Apr 8 at 14:34
show 2 more comments

17 Answers

vote up 1 vote down

Back in 1997, I worked at one of the original webhosts. I was tinkering with this new "Javascript" language, and I made a webpage such that it reopened itself on close. On the company employee listing I put a link to this horrible page off my 'about me' page, with the link being an image that read in big letters "Don't Push This Button". At the time, Netscape was very adamant about following the directions of reopening upon close, so it was pretty difficult to get Windows to stop opening it. I had customers calling to complain that they had to reboot their computer to get my horrible Javascript page to stop opening on close.

Now, I did this page as a joke test of Javascript. Needless to say, I was horrified once companies starting using Javascript in this manner to get their advertisement pages to stay open.

link|flag
vote up 1 vote down

In 1985 we realized that we got much more correct code written while pair programming. To some extent that could be blamed on the machine code monitor on the C64 we were using at the time...

link|flag
vote up 1 vote down

When I first learnt web development with classic ASP, I was quickly frustrated with the spaghetti style of meshing ASP code with HTML markup; that was simply a style of coding that I could not reconcile with.

I converted nearly everything into a function written in another code-only .asp file, so the markup look something like

<div>
 <%
   render_dropdown(parameter, parameter, parameter...)
   render_table_data(parameter, parameter, parameter...)
 %>
</div>

It was only after ASP.NET was released did I realise what I had essentially done in the past was writting "Server controls" in the limited ASP manner.

link|flag
I did something in PHP like this, I have a single function that generates the entire <html> to </head> tags using loops and code stored in a database. Most people would consider it ugly and improperly designed for an OOP situation, but it looks so beautiful to me and is bassically one function to rule them all. It even tabs the code to make it pretty. Now I only did this least year, obviously nothing groundbreaking, but I just though it was interesting and worth sharing. – teh_noob Jun 15 at 5:20
vote up 1 vote down

Back in 2000 for a school project I started working on a system where anybody could post messages about jobs/events/classified with a really simple layout ( craigslist ). We called it Web-Post-It.

link|flag
vote up 1 vote down

First job I had in 1987 they had been using a custom meta-data driven UI approach for several years. WPF is finally catching up (although in my opinion, poorly).

link|flag
vote up 2 vote down

I did a Mapquest/Google Maps type application in 1980. Type in an address, display a map - zoom in or out, pan side to side or up and down. It was only for one city, although there was map data available for many others; disk capacity was a big problem back then.

link|flag
I'd love to see a screenshot! – Christopher Oct 5 at 15:53
Back then, a screenshot meant pulling out a camera and taking a picture. I don't think we took any pictures of that application, although I do have a print of another application done with the same hardware. – Mark Ransom Oct 5 at 16:06
vote up 1 vote down

I did similar with XmlHttpObject, but it was grossly insecure and not cross-browser compatible. Still. More recently, I found myself writing code to take classes that followed various conventions, including a few attributes, and render completely functional 0-code web forms and grids based on that.
A few months later, ASP.NET Dynamic Data came out and copied me =). One of my attributes was even named UIHint. Again, smarter people did a better job.

link|flag
vote up 23 vote down

Everything I wrote that I thought was ahead of its time, I later found out was invented by Xerox PARC in the 70s.

link|flag
lol - probably true for me too! Or BT... – kpollock Feb 25 at 17:13
vote up 0 vote down

Not me, but my boyfriend at uni wrote a program to do predictive text back in '88. Never imagined there would be much use for it outside of computers for disabled people...

link|flag
vote up 2 vote down

All of these may or may not be officially ahead of time, but there was nothing I'd encountered previously or available commercially for the right requirements at that point

I tried to write a form of hyperlinking in a diary/database type program (blog-esque, I suppose!) on the ZX81/ZXSpectrum. I can't recall if I got it 100% working....

Test Driven Development with test harnesses back in 1988 at uni.

OO in Vb4 (using code generators I wrote).

ORM tools (that I wrote) in '96.

Continuous intergration (checkout, build, check, test, make msi, publish to network, check back in) in VB6/VSS environment (again we wrote it) in 2000. [some elements e.g DailyBuild were in place at that time, but nothing to do it all, or the concept of the whole process in the VB arena].

Passing + using function pointers - just about forever back to when I was a kid doing assembler....

and what would now be called Agile development in '95.

link|flag
vote up 2 vote down

In 1987 I attended a presentation on a new way of writing code called 'object oriented programming' (we were writing FORTRAN code at the time). The only response I can remember was "it would be great for writing Adventure type games'. Unfortunately we didn't pick up on this for many years.

link|flag
If you look at the most common languages for writing Adventure-type games (at ifarchive.org), you'll find that you were right. – David Thornley Feb 26 at 15:59
1  
Just think, near enough exactly 20 years after the introduction of OOP (simula 67) – simon Apr 8 at 3:14
vote up 3 vote down

'98-'99 I read a document about Smart SMS for Nokias high-end mobile phones. Thought it looked fun and wrote some small apps for Palm PDA to send pictures and ringtones to the phones though SMS. I released my software for free. I couldn't imagine later there would be an industry charging over 1 USD per message...

link|flag
vote up 2 vote down

Since 2006 I'm using self implemented (and still improving) concept of futures for asynchronous programming. Combined with C# delegate/lambda syntax it allows you to produce a very elegant code.

link|flag
1  
so since 2006 your using a concept introduced in 1977 to be ahead of your time? This stuff is confusing. – simon Apr 8 at 3:06
You are right, the stuff is really old, however, there no standard implementation in the BCL. .NET 4.0 includes futures, promises, lazy initialization, and lots of other interesting stuff. – Michael Damatov Apr 14 at 12:53
vote up 2 vote down

Well, back in the late 90ies I was thinking about separating my web apps into logic and views (and also did that). While of course the concept of MVC was already quite old back then it seems to me now that it wasn't really in wide use at least for webapps (it was more about mixing everything in a webpage).

But it was a sort of crappy implementation anyway and was abandoned at some point. I then jumped onto the Zope train, where it at first wasn't so much about that separation. This came later again with the advent of views and the component architecture in Zope3 and now I am actually sort of back to the root with a very pure MVC framework called repoze.bfg.

link|flag
vote up 10 vote down

In 1999 I set up a site using a frameset which contained a main content frame and a hidden "UI updater". In this hidden frame I placed a site that refreshed regularly via the http-equiv meta tag, sending a session ID to the server that way and getting back data that I merged back in to the main frame's DOM. Using this I could implement chat like messaging between members and update information on the fly without the user having to reload a page. This even worked across browsers and was way before AJAX. When AJAX become known as a "Web 2.0" thing, I smiled a little, because it was old news to my users already.

link|flag
Pics or it didn't happen!!! (errr... what was the page, sorry) – DFectuoso Feb 22 at 21:14
www.wiec.de That seems to be all that's left of it: web.archive.org/web/20020824110501/… On the left you can see a "Derzeit (currently) online" panel, which was updated in the way I described. – Daniel Schneller Feb 23 at 7:49
I did something similar in 2001 using plain asp and javascript :) – Albert Mar 4 at 16:12
vote up 1 vote down

I helped optimize a web application around 2002 before the "AJAX" buzzword. The main goal was to reduce roundtrips to the server.

We were still supporting Netscape 4 at the the time. Essentially, I built a javascript library which stored settings in an object client side and changes were posted back to the server asynchronously via an invisible frame.

It involved lots of docuemnt.write. Thankfully things are SO much easier now.

link|flag
vote up 0 vote down

AJAX has been around longer than the buzzword. It was originally called Javascript callback.

link|flag
Yes, it been there since MS launched IE 5.0(check the links in the question). And please move ur answer as a comment on the question. – Binoj Antony Feb 22 at 21:04
1  
@Shawn, really? please explain. – Chris Ballance Feb 23 at 16:42
1  
Answers should be used to answer the question, rather than comment on it. – justinhj Jun 15 at 4:44

Your Answer

Get an OpenID
or

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