Tag: cloudflare

Thank You (2022 Edition)

You know, this is the time of year where Chris normally publishes a big ol’ reflection of the past year. The first one was published in 2007, the same year CSS-Tricks began, and it continued all the way through 2021… Thank You (2022 Edition) originally published on CSS-Tricks, which is part of the DigitalOcean family. You should get the newsletter. ...
Continue Reading Thank You (2022 Edition)

The Developer’s Advanced Guide to the wp-config.php File

How well do you really know wp-config? There’s a surprising amount of power in those few lines of PHP! This article is a tour of some bits of wp-config that… Read more The post The Developer’s Advanced Guide to the wp-config.php File appeared first on Delicious Brains. ...
Continue Reading The Developer’s Advanced Guide to the wp-config.php File

How to Serve a Subdomain as a Subdirectory

Let’s say you have a website built on a platform that excels at design and it’s available at example.com. But that platform falls short at blogging. So you think to yourself, “What if I could use a different blogging … How to Serve a Subdomain as a Subdirectory originally published on CSS-Tricks. You should get the newsletter. ...
Continue Reading How to Serve a Subdomain as a Subdirectory

7 Fresh Links on Performance For March 2022

I have a handful of good links to articles about performance that are burning a hole in my bookmarks folder, and wanna drop them here to share. The new WebPageTest website design From fonts to SVG: an icon migration strategy … 7 Fresh Links on Performance For March 2022 originally published on CSS-Tricks, which is part of the DigitalOcean family. You should get the newsletter. ...
Continue Reading 7 Fresh Links on Performance For March 2022

Superior Image Optimization: An Ideal Solution Using Gatsby & ImageEngine

(This is a sponsored post.) In recent years, the Jamstack methodology for building websites has become increasingly popular. Performance, scalable, and secure, it’s easy to see why it’s becoming an attractive way to build websites for developers. GatsbyJS is … Superior Image Optimization: An Ideal Solution Using Gatsby & ImageEngine originally published on CSS-Tricks, which is part of the DigitalOcean family. You should get the newsletter. ...
Continue Reading Superior Image Optimization: An Ideal Solution Using Gatsby & ImageEngine

What the Heck is a Package Manager?

If you’re keeping score, so far in this npm guide we’ve developed a general understanding of what npm is—notably, that it stands for Node Package Manager. In the process, we’ve discussed the importance of the command line and how it’s … What the Heck is a Package Manager? originally published on CSS-Tricks, which is part of the DigitalOcean family. You should get the newsletter. ...
Continue Reading What the Heck is a Package Manager?

How to integrate Stripe in Django

It’s straightforward to integrate the Stripe payment gateway into your Django project. In addition, Stripe makes it easy to accept payments from your Django website, and it simply takes a few minutes. ...
Continue Reading How to integrate Stripe in Django

Unit tests in Django

Manual testing of websites becomes more difficult as they expand in size. Not only is there more to test, but as component relationships become more complicated, a slight change in one area might influence other areas. The latter will necessitate more testing to guarantee everything continues to operate and no mistakes are created as more changes are made. ...
Continue Reading Unit tests in Django

How to do nslookup in Python

The Domain Name System, usually known as DNS, is an internet phonebook that contains information about domain names. DNS transforms domain names into IP addresses, allowing browsers to access the resources. ...
Continue Reading How to do nslookup in Python

How to use Date Picker with Django

This tutorial article seeks to unravel the mysteries of Django date/datetime pickers. Also, the article offers three options to explore. The first option is implementing the Django date/datetime pickers manually. The second option is implementing this datetime concept through custom widgets. Finally, you may explore the usability of a third-party Django app that supports the implementation of datetime pickers. ...
Continue Reading How to use Date Picker with Django