How to build a website without frameworks and tons of libraries
31–40 of 270 posts
Re: How to build a website without frameworks and tons of libraries
#32For information, static sites are unchallenged imho. Even for a certain level of collaboration, I think one could get away with using static sites. I haven't tried this in practice but imagine having a git-based CI/CD flow for a static site, where non-technical end users could use the web-based Markdown editors of github.com or gitlab.com to make small changes, save and push via a pull request. Each merge is of cours…
Re: How to build a website without frameworks and tons of libraries
#33Slightly off-topic: His single "index.php" with jQuery is helping him to earn thousands per month. https://twitter.com/levelsio/status/1675829733668319233/phot...
And if I understand correctly, it's not the index.php, but the actual service behind it, that earns thousands per month. Looks nice :)
Re: How to build a website without frameworks and tons of libraries
#34Slightly off-topic: His single "index.php" with jQuery is helping him to earn thousands per month. https://twitter.com/levelsio/status/1675829733668319233/phot...
Also fwiw, another one here without a logged in Twitter acc
Re: How to build a website without frameworks and tons of libraries
#35I believe the most minimalistic and productive way is to just use php. The language was specifically just created for that. If it's a simple site then you don't need composer you don't need router logic. just create separate files for header footer navigation and include them on each page.
Re: How to build a website without frameworks and tons of libraries
#36I believe the most minimalistic and productive way is to just use php. The language was specifically just created for that. If it's a simple site then you don't need composer you don't need router logic. just create separate files for header footer navigation and include them on each page.
Re: How to build a website without frameworks and tons of libraries
#37github pages
Re: How to build a website without frameworks and tons of libraries
#38Slightly off-topic: His single "index.php" with jQuery is helping him to earn thousands per month. https://twitter.com/levelsio/status/1675829733668319233/phot...
Are there ways to view tweets without an account? Kind of like archive.is? For now, I could enter it in Google and view cache, but I assume that will go away soon. And if I understand correctly, it's not the index.php, but the actual service behind it, that earns thousands per month. Looks nice :)
Re: How to build a website without frameworks and tons of libraries
#39A website/webapp with millions of visits per day and a ton of stakeholders requesting features every week, on the other hand...
It all depends on the use case, like most stuff.
Re: How to build a website without frameworks and tons of libraries
#40I believe the most minimalistic and productive way is to just use php. The language was specifically just created for that. If it's a simple site then you don't need composer you don't need router logic. just create separate files for header footer navigation and include them on each page.
And if html allowed inserting html as it does css or js from external files, even that would be mostly be redundant. If only it let you use at will.