These simple sites show us something profound: If you want something to last, don't base it on something that won't last. There are a some technologies that will never allow somebody to build a site and leave it unchanged for 20 or 25 years. Cold Fusion comes to mind. Almost nobody hosts it anymore for one. Can you imagine running the same WordPress version for 25 years? The version of PHP it runs on will be EOL long before.
I guess what I'm saying is that if you want to build a site to last 25 years without numerous redesigns, build a static HTML page.
Looks like Web 1.0 got something right after all :)
My personal site was posted on September 12, 1999, is still updated, and has no problems. It;s a static site that mostly uses straight HTML/CSS. There are a few scripts that generate pages, but generating HTML/CSS pretty easy. https://dwheeler.com.
Geocrasher said:
> I guess what I'm saying is that if you want to build a site to last 25 years without numerous redesigns, build a static HTML page.
Yes. I don't get paid to maintain my personal site, so simplicity and longevity are most important. If I have to rewrite things because of incompatible changes in the infrastructure components (e.g., Python2 to Python3), or because proprietary company C has decided to stop supporting product P that I depend on, then I have to spend time that doesn't actually provide any new value. Keeping things simple, and minimizing dependencies, can be useful. Like everything else, there's a trade-off.
Once worked on an enormous, very popular site built by hand in Frontpage.
It had millions of pageviews, made over 6 figures a month in AdSense and been updated so often and for so long that the owner didn’t actually know how many pages there were. Had to hire someone just to index it.
Ah, the old days of the web, when it was possible to make money via AdSense. Users would actually bookmark sites those days, so there was no need to throw an email signup popup in their face when the page loaded. The comments would have real people conversing, and not filled with spambots pushing fake Guccis and Air Jordans.
As I spent half a day trying to wrangle my way through some sass grunt compiler frontend bullshit just trying to update the colour of some links on a client website, I find myself nodding sagely again. In the early days you could view source, see what was going on, copy and recreate someone else’s site, learn a whole bunch of new stuff and actually get shit done. Now, it’s all JavaScript bullshit and 100k lines of css. It’ll last about a month before it’s out of date and replaced by the Next Big Thing. HTML, css, a sprinkle of JavaScript. That’s what’s proven to last.
I'm not sure a FrontPage site would be much better. It's also a big mess of generated markup you'd have to go through manually, if you didn't have the proper FP version.
He is a member of the Cherokee Nation with interests ranging from model railroading to fireflies. And he puts it all out there on his personal webpage, updated regularly since 1996. There was a time when it was normal to stumble upon pages like this one.
I used to have a bunch of Sparc's circa-early 2000's. Sold some, recycled some, wish I'd have kept at least one. The price of a SparcstationLX that works is silly now-a-days.
100 points on pagespeed is not that hard with static sites.
- drop 99% of the JS (PWA, lazy-loading, infinite scroll, jquery, you don't need any of them for a webpage), convert the remaining for 1% to vanilla js and use it as progressive enhancement.
- use EM or % as layout width/height
- inline css, js, and svg
EDIT
- no webfonts!
The only thing that'll remain as an issue are tables wider, than viewport, on mobile.
While <marquee> support is near universal, I was sad to find out that <blink> has not fared so well.
I'm sure a lot of you already know this easter egg, but if you search "blink tag" in Google, Google makes all the blink tags actually work (using JS of course but still)
Here is a life-saver maintained by a 77 year young lawyer for a lot of public good: http://www.drtsolutions.com/. Case laws against SARFAESI, an Indian law that expedites bank recovery for non-performing assets. He updates it manually in FrontPage even today!
One of the most prolific and well-known music reviewers - Pierro Scaruffi - has a website built in 1995 with a design not updated much, or at all, since: https://www.scaruffi.com
I sympathize with the author. I have built my maths site just 2 years after this one, when I was in high school. Ever since I've only been adding material, and occasionally moving old stuff into subdirectories; other than that, it's the same old geocities website made with FPE, except it's now hosted on a university server and has my academic title and office and no more colored background. Oh, and I now edit it with notepad++ and track it with git.
I've had plans to rebuild it for the last 8 years or so, to make it better and slicker and easier to navigate (as it stands, my new papers are mixed together with my scribe notes from undergrad). But I never figured out how to achieve this without also requiring javascript or relying on tools that may not survive the next decade and that I cannot tweak to my needs without learning a new programming language (hello Jekyll, hi Hugo). Nor did I ever find the Right Way how it should be structured; move one thing to the front and something else gets harder to find. I guess it will survive me.
Makes me a lot less judgmental when I see another academic website that can trace its lineage back to geocities and angelfire.
I remember how she was ridiculed on Dragon's Den,yet she's the one employing a bunch of people and having a successful business. I remember reading that she's even hired someone to do some maintenance in the town,because the local council couldn't afford it anymore.
It's impressive the amount of content inside! There are countless pages about literature, religion and physics. It's a good reminder of the original goal of WWW: share information.
In my ~17 year career as a professional web developer and consultant, I'm not sure that any technology has made me more frustrated and miserable than the days when I had to help people who insisted on using Frontpage to build their websites.
Originally, Front Page had a four page license. It specified that if you use Front Page to create a web site, you cannot disparage Microsoft, Expedia and a list of several other Microsoft owned properties.
So with a license like that, I can't assume that any site created with Front Page is unbiased when it comes to a list of various Microsoft owned properties.
After the slashdot effect (long ago) Microsoft removed this from the license.
My personal web-page is from 1992 and updated occasionally. This page is preserved as it was in 1994: http://timonoko.github.io/alaska . It started as Gopher-page in 1992 and I just moved those associated pictures into it, without truly understanding formatting and all that shit. Some dudes in Usenet told me about <p> and <img> tags.
The biggest drawback of sites from this era is they don't reflow on mobile screens. On a desktop they still work as well as they ever did. I'm still searching for a good WYSIWYG HTML composer that can generate clean, responsive pages. Seems like this is a problem where there isn't sufficient incentive for the big tech companies to tackle, and the only s/w that seems to come close is BlueGriffon.
That's a client side problem, not a server side problem. The rendering and presentation of a webpage are entirely up to the client, absolutely nothing dictates that a page should look a certain way on a certain client.
[+] [-] geocrasher|6 years ago|reply
I guess what I'm saying is that if you want to build a site to last 25 years without numerous redesigns, build a static HTML page.
Looks like Web 1.0 got something right after all :)
[+] [-] jgrahamc|6 years ago|reply
[+] [-] dwheeler|6 years ago|reply
Geocrasher said:
> I guess what I'm saying is that if you want to build a site to last 25 years without numerous redesigns, build a static HTML page.
Yes. I don't get paid to maintain my personal site, so simplicity and longevity are most important. If I have to rewrite things because of incompatible changes in the infrastructure components (e.g., Python2 to Python3), or because proprietary company C has decided to stop supporting product P that I depend on, then I have to spend time that doesn't actually provide any new value. Keeping things simple, and minimizing dependencies, can be useful. Like everything else, there's a trade-off.
[+] [-] mattkevan|6 years ago|reply
It had millions of pageviews, made over 6 figures a month in AdSense and been updated so often and for so long that the owner didn’t actually know how many pages there were. Had to hire someone just to index it.
Not bad for plain old html and css.
[+] [-] rchaud|6 years ago|reply
[+] [-] dmje|6 years ago|reply
[+] [-] zladuric|6 years ago|reply
[+] [-] dbalatero|6 years ago|reply
[+] [-] cgh|6 years ago|reply
[+] [-] dabeeeenster|6 years ago|reply
[+] [-] cameronbrown|6 years ago|reply
[+] [-] mtm7|6 years ago|reply
> My charge for typical business or civil work is $450.00 per hour.
To one that said:
> I am a relative newcomer to the world of turtles.
...in two clicks. I love this site.
Also learned a recipe for a quick and easy blackberry cobbler[0].
[0]: http://www.burger.com/bcobbler.htm
[+] [-] zeitg3ist|6 years ago|reply
[+] [-] LukeBMM|6 years ago|reply
[+] [-] mhandley|6 years ago|reply
[+] [-] nonamenoslogan|6 years ago|reply
[+] [-] webscalist|6 years ago|reply
[+] [-] pmlnr|6 years ago|reply
- drop 99% of the JS (PWA, lazy-loading, infinite scroll, jquery, you don't need any of them for a webpage), convert the remaining for 1% to vanilla js and use it as progressive enhancement.
- use EM or % as layout width/height
- inline css, js, and svg
EDIT
- no webfonts!
The only thing that'll remain as an issue are tables wider, than viewport, on mobile.
My site: https://developers.google.com/speed/pagespeed/insights/?url=...
[+] [-] stabbles|6 years ago|reply
[+] [-] unknown|6 years ago|reply
[deleted]
[+] [-] unknown|6 years ago|reply
[deleted]
[+] [-] nyuszika7h|6 years ago|reply
[+] [-] 1_player|6 years ago|reply
Time for a smooth, GPU accelerated 60+fps marquee implementation?
[+] [-] seisvelas|6 years ago|reply
I'm sure a lot of you already know this easter egg, but if you search "blink tag" in Google, Google makes all the blink tags actually work (using JS of course but still)
https://www.google.com/search?q=blink+tag
[+] [-] SketchySeaBeast|6 years ago|reply
[+] [-] throwaway_fbnet|6 years ago|reply
[+] [-] jannes|6 years ago|reply
I hadn't seen the old Google logo in years: http://www.drtsolutions.com/drtqueries.htm The search widget doesn't even use an <iframe>. Just a plain <form>.
[+] [-] drops|6 years ago|reply
[+] [-] ctruelson|6 years ago|reply
[+] [-] alexmorenodev|6 years ago|reply
[+] [-] rchaud|6 years ago|reply
[+] [-] jacquesm|6 years ago|reply
[+] [-] attil-io|6 years ago|reply
Love it!
[+] [-] generationP|6 years ago|reply
I've had plans to rebuild it for the last 8 years or so, to make it better and slicker and easier to navigate (as it stands, my new papers are mixed together with my scribe notes from undergrad). But I never figured out how to achieve this without also requiring javascript or relying on tools that may not survive the next decade and that I cannot tweak to my needs without learning a new programming language (hello Jekyll, hi Hugo). Nor did I ever find the Right Way how it should be structured; move one thing to the front and something else gets harder to find. I guess it will survive me.
Makes me a lot less judgmental when I see another academic website that can trace its lineage back to geocities and angelfire.
[+] [-] geocrasher|6 years ago|reply
https://www.lingscars.com/
[+] [-] cosmodisk|6 years ago|reply
[+] [-] ahmetkun|6 years ago|reply
[+] [-] matteuan|6 years ago|reply
[+] [-] dpcan|6 years ago|reply
[+] [-] DannyB2|6 years ago|reply
Originally, Front Page had a four page license. It specified that if you use Front Page to create a web site, you cannot disparage Microsoft, Expedia and a list of several other Microsoft owned properties.
So with a license like that, I can't assume that any site created with Front Page is unbiased when it comes to a list of various Microsoft owned properties.
After the slashdot effect (long ago) Microsoft removed this from the license.
[+] [-] oftenwrong|6 years ago|reply
https://wiby.me/
Click the "surprise me..." link to see a random one.
[+] [-] 0xferruccio|6 years ago|reply
My favorite in High Scool was http://ripmat.it
That site is the only reason I managed to learn Math school
[+] [-] acomjean|6 years ago|reply
[+] [-] unknown|6 years ago|reply
[deleted]
[+] [-] barbarbar|6 years ago|reply
[+] [-] timonoko|6 years ago|reply
[+] [-] Santosh83|6 years ago|reply
[+] [-] thanatropism|6 years ago|reply
You need a dev team implementing Agile for react-native-ux with CI/CD capabilities and devops.
[+] [-] jacquesm|6 years ago|reply
[+] [-] verytrivial|6 years ago|reply