TE
TechEcho
Home24h TopNewestBestAskShowJobs
GitHubTwitter
Home

TechEcho

A tech news platform built with Next.js, providing global tech news and discussions.

GitHubTwitter

Home

HomeNewestBestAskShowJobs

Resources

HackerNews APIOriginal HackerNewsNext.js

© 2025 TechEcho. All rights reserved.

Ask HN: Can I make a front end to an existing website?

1 pointsby jecs321almost 12 years ago
I am a grad student that works a lot in nanofabrication. My school has a website that controls all the scheduling for the tools that I use (SEM, etchers, evaporators, etc.), but the user interface is horrible, especially for mobile. I want to create a new mobile website, which takes the information from the existing website after I've logged-in and re-displays it in better format. I'd rather not require a server and have to parse the html that I'm receiving from the existing website in Python. Can I do this in simple HTML and Javascript?

1 comment

restlakealmost 12 years ago
Greasemonkey on the desktop (<a href="https://addons.mozilla.org/en-US/firefox/addon/greasemonkey/" rel="nofollow">https:&#x2F;&#x2F;addons.mozilla.org&#x2F;en-US&#x2F;firefox&#x2F;addon&#x2F;greasemonkey&#x2F;</a>) or for Firefox Mobile, or userscripts on the desktop (<a href="http://userscripts.org/" rel="nofollow">http:&#x2F;&#x2F;userscripts.org&#x2F;</a>) might be a way to accomplish this, the Python requirement aside. They&#x27;re a simpler way to restyle and format an existing site in your browser, rather than writing code to parse an existing site. Alternatively, as you mentioned, you could write or utilize an existing scraper in Python and pull content into your own site, as long as you are not violating the terms of use for your school&#x27;s website.