Skip to main content

Advice to young web developers

I’ve been making websites in some form or another since 2008. After 12 years of experience I think I’ve accumulated enough knowledge to know a few things. Here’s some things I’d like younger developers to think about, in no particular order:

  • Sometimes a website is just a website.
  • The browser is already a client; HTML is its language.
  • The web is built around server-side rendering.
  • You can provide your data in more than one way; consider HTML to be one of several possible data representations.
  • Scaling your server helps everyone. Expecting client-side scaling only helps people with the fastest computers and Internet connections.
  • Not everyone has (or can use) a mouse.
  • Not everyone has (or can use) a keyboard.
  • Not everyone has (or can use) a touchscreen.
  • Not everyone can see colors or pictures the same way you can.
  • Not everyone can process information the same way you do.
  • It is inhumane to move things around on people.
  • The browser’s native HTML parsing is far faster than anything you can write in JavaScript.
  • HTML is already an ideal representation of DOM nodes.
  • HTML is a rich framework.
  • You can probably do that layout change in CSS.
  • Before you roll your own UI component, consider that HTML probably provides it. If it doesn’t provide it, that’s probably for a reason. Attaching DOM events to a <div> or <span> is probably not the best way of doing things.
  • Not everything has to be a “single-page application.”
  • Even if you need to preserve client state between page loads (for e.g. music or video playback) you can let the browser do most of the heavy lifting by fetch()ing a new page and replacing your content container at the DOM level.
  • Infinite scrolls are inhumane. People need to be able to reach “the end.” There are forms of eternal torment described in religious texts that are less mean.
  • If you must do an infinite scroll (and you don’t), make sure that there’s nothing you need to reach at the bottom.
  • Give people consistent but random stimulus and you will be habit-forming. Getting people hooked on your product might seem like a good idea, but the tobacco industry feels the same way.
  • If you design with CDNs in mind, then a server round-trip won’t be slow.
  • It is okay to use multiple languages in a thing. Not everything has to be isomorphic.
  • Always validate your data server-side; anything that comes from the client is suspect.
  • To the developer, “isomorphic” code breaks down the barrier between client and server. To a malicious client, it means they have control over the server too.
  • Browsers change. Relying on browser-specific behavior means you’re relying on that one browser at that one point in time. Code to the standard, and test everywhere.
  • Use polyfills to support browsers that don’t yet support the standard you’re using.
  • It’s okay to copy others; it’s how we learn things. Just remember to learn from it.

Comments

  1. After a long time, I read a very beautiful and very important article that I enjoyed reading. I have found that this article has many important points, I sincerely thank the admin of this website for sharing it. Best website agentur berlin service provider.

    ReplyDelete
  2. It is what I was searching for is really informative.web developers in dubai It is a significant and useful article for us. Thankful to you for sharing an article like this.

    ReplyDelete
  3. It is what I was searching for is really informative.Veteran Web Design It is a significant and useful article for us. Thankful to you for sharing an article like this.

    ReplyDelete
  4. I just need to say this is a well-informed article which you have shared here about hoodies.Professional Seo Services Provider It is an engaging and gainful article for us. Continue imparting this sort of info, Thanks to you.

    ReplyDelete
  5. You truly possess the ability to create something that is helpful to us. You wrote a fantastic piece about the subject. We appreciate your efforts in providing us with this information.web design agency birmingham

    ReplyDelete
  6. Your article contained some good information. I was amazed by how well you were able to express this issue; it was informative for us. Thank you for sharing that.ecommerce web development singapore

    ReplyDelete

Post a Comment

Popular posts from this blog

सूनापन

मुद्दत हो गयी उन तन्हायियो को गुजरे , फिर भी इन आँखों में नमी क्यों है  ? तोड़ दिया मोहब्बत पर से यकीन मेरा, फिर भी मेरी दुनिया में तेरी कमी क्यों है ? हसरत है क्यों आज भी तेरी चाहत की मुझे, क्यों याद तेरी जेहेन से मिटती नहीं ? जलजला क्यों उमड़ता है ख्वाबो में मेरे, उस आशिकी की आगज़नी क्यों है  ? सन्नाटो में भी क्यों सुनता हू तुझे मेरी परछाई से क्यों तू जाती नहीं ? इन डबडबाती आँखों को तलाश तेरी, आज भी कहीं क्यों है   ?

How the Python import system works

How the Python import system works From:  https://tenthousandmeters.com/blog/python-behind-the-scenes-11-how-the-python-import-system-works/ If you ask me to name the most misunderstood aspect of Python, I will answer without a second thought: the Python import system. Just remember how many times you used relative imports and got something like  ImportError: attempted relative import with no known parent package ; or tried to figure out how to structure a project so that all the imports work correctly; or hacked  sys.path  when you couldn't find a better solution. Every Python programmer experienced something like this, and popular StackOverflow questions, such us  Importing files from different folder  (1822 votes),  Relative imports in Python 3  (1064 votes) and  Relative imports for the billionth time  (993 votes), are a good indicator of that. The Python import system doesn't just seem complicated – it is complicated. So even though...

I was fat once! Now I run!

On Aug 12, 2013 I weighed 107 kg, which, for a 5'4'' guy, is 47 kg more than the Indian Army standards. But today, I weigh 82 kg, and I continue to lose a few pounds every week! At one point of time, running 100 metres would make me all tired and sweaty, but today I can easily run 10 km at a stretch! So this guide is for all those couch potatoes who have lost all hopes of getting a good body! I was at that stage myself. I know how it feels like. I know the bullshit that you keep telling yourself as to how you are not all that bad, and how the world should accept you the way you are! Let me tell you this straight! You are NOT special. You are just another lazy bum who wants things to change but does not want to endure any suffering! Or even worse, you are one of those who act on an impulse every few months. You hit the gym for a week and boom!, you lose it all again. The first step is to accept that you have a pathetic body and that this needs to change! Start Sm...