Continuing the last post, this time I wanna go over my strategy. As the title highlights, I decided to go for time-complexity optimizations. Every sof

...so, I joined the time-complexity cult.

submited by
Style Pass
2023-01-31 08:00:13

Continuing the last post, this time I wanna go over my strategy. As the title highlights, I decided to go for time-complexity optimizations. Every software project at some point hafta make a decision when they wanna optimize their code. Often, software projects don't abide by the ...

...principle. It's either Space or Time decision. You can't have both most of the time. Analyzing my case, space wasn't a problem. Because our "shared hosting" constraint had unlimited space but limited computing power. Thus-

Read along to find out how I am about to light it up, what about dynamic contents like comments and user authentication, etc...

I know, I know, not that of a revolutionary. But, I have no other way. So I want to statically generate all the pages that the site requires ahead of time, wasting some time, to save some time. So, I decided to look for ways of doing it. It turns out there are many solutions, e.g.

Even though I could have gone with already available stuff, I don't wanna stumble again along the road just like I did in past years. Experiences Hurt 🥺. So, I made up my mind to build a custom templating engine just for SPC's website. Now, have to think of how 🤷‍♂️ and what it should do.

Leave a Comment