article thumbnail

Will A Static Website Generator Make My Site Faster?

MachMetrics

Check out this video , where Mathias Biilmann talks about his realization that bringing the Smashing Magazine website over from WordPress to a static site using the JAMstack and Netlify hosting would make it load around 6 times faster! WordPress can suffer from vulnerabilities in the database, plugins, and WordPress Core.

Website 52
article thumbnail

40+ Best Web Development Blogs of 2018

KeyCDN

It also includes a handy CSS reference, a web development experiment playground, tutorials, blueprints to get started from and Collective - a digital design magazine that makes it easy to keep up with trends. Smashing Magazine Smashing Magazine is an established resource for those who want to master the front end.

Insiders

Sign Up for our Newsletter

This site is protected by reCAPTCHA and the Google Privacy Policy and Terms of Service apply.

article thumbnail

Next.js Wildcard Subdomains

Smashing Magazine

Following this, we can then take certain actions such as fetching different data from your database depending on the wildcard and return that from the API. Further Reading On Smashing Magazine. “ wildcard : process.env.TEST_WILDCARD : "home"; res.json({ wildcard: wildcard }) }. Also: FYI Australians do not actually see upside down.

Website 82
article thumbnail

Are Imposter Domains Re-Publishing Your Website?

Smashing Magazine

Another kind of content publishing tool is a service that fetches a web page, checks it against databases for any potential copyright violation or plagiarism , and displays the page with markup to identify any potentially offending content. Further Reading on Smashing Magazine. Turning The Data Into Information. Large preview ).

Website 87
article thumbnail

Implementing A Reset Password Feature With Next.js Dynamic Routes

Smashing Magazine

You can construct this sentence anyhow you deem fit, as long as it does not reveal that the email or username they entered exists in the database. Further Reading On Smashing Magazine. “ Please click the link when you get it.” As for the UX, the text doesn’t assure the user that the credentials they’ve entered are the correct ones.

article thumbnail

Demystifying Django’s Magic

Smashing Magazine

DATABASE is a dictionary that holds access to an external database(or internal like in the case of the default sqlite) like PostgresSQL, MySQL and MongoDB. You can decide to use the default sqlite database, this doesn’t work great for production. Your classes (or models) are layouts your database tables will follow.

article thumbnail

Five Data-Loading Patterns To Improve Frontend Performance

Smashing Magazine

Server caches help lower the latency between a Frontend and Backend; since key-value databases are faster than traditional relational SQL databases, it will significantly increase an API’s response time. In a common WebSocket architecture, the Front-end application will connect to a WebSocket API, an event bus, or a database.