DEV Community

Discussion on: What are some things that only someone who has been programming 20-50 years would know?

Collapse
 
jonrandy profile image
Jon Randy 🎖️
  • You don't have to use a bundler
  • It's OK to have the server generate full HTML pages
  • You can make websites without JS
  • The ZX Spectrum's video resolution is 256x192 pixels. The video memory starts at address 16384 - beginning with 6144 bytes of monochromatic bitmap data (interlaced and split into thirds), followed by 768 bytes of attribute (or colour) data - each byte of which defines the background and foreground colour for a block of 8x8 pixels
Collapse
 
miketalbot profile image
Mike Talbot ⭐

Now I'm thinking about sprite splitting on the C64 - there's a memory lol.

Collapse
 
psiho profile image
Mirko Vukušić

POKE 16384,255 .... ahh it all started with that arround 1985 :)

Collapse
 
hasnaindev profile image
Muhammad Hasnain

I agree with all the points but you don't have to use a bundler? I mean, technically, you don't but bundlers are only used to write code to different files instead of a single one, IMO, that that makes code easy to understand and clean. (Given one knows what one is doing.) Or what would happen when you have code that can potential expand to have 1000s of lines?

Collapse
 
jonrandy profile image
Jon Randy 🎖️

I just mean what I say - you don't have to.

Honestly, the amount of times I've seen the tiniest projects all wrapped up in a ridiculous amount of tooling... these projects would be way easier to work on by just throwing out all the tooling out and going back to basics.

I've had interview candidates when I ask them to build a simple FizzBuzz app - do it in React FFS. It's ludicrous - everyone just seems to want to use the 'cool' tools and the latest fads. Much more consideration should be given to the appropriateness of the tech being used. So much stuff these days is using sledgehammers to crack nuts.

Thread Thread
 
hasnaindev profile image
Muhammad Hasnain

Ooh yes, I definitely agree with this! People should crack their nuts with appropriate tools. :D