RSSAmplifier

Blog

Oseh Frank's blog

osehfrank.comRSS feed ↗10 posts

Latest posts

net-benchmark v0.5.0: DNS + HTTP Benchmarking CLI — SSL Coming in v0.6.0

From DNS to Full Network Benchmarking Six months ago I released dns-benchmark-tool — a CLI to benchmark and compare DNS resolvers. It grew to …

Released v0.3.2 of dns-benchmark-tool

New in v0.3.2 Compare Mode - test a single domain across all resolvers Top Rankings — show best performers by criteria Monitor Mode — continuous …

dns-benchmark-tool: The Python Package to Test and Compare DNS Server Speed

I am excited to announce the release of my new open-source project: dns-benchmark-tool . DNS resolution speed can have a huge impact on application performance. This package makes it simple to …

Master the Art of Handling Dates and Times in Django with Python’s datetime Module

Managing date and time is a crucial aspect of many web applications, and Django, a popular web framework for Python, provides robust tools to handle these tasks. In this blog …

create a blog application with django, part 11: create django custom template tags and filters

Django provides the following helper functions that allow you to create your own template tags in an easy way: simple_tag: Processes the data and returns a string inclusion_tag: …

create a blog application with django, part 10: configure django to use postgreSQL

You are currently using SQLite for your blog project. This is sufficient for development purposes. However, for a production environment, you will need a more powerful database, such as PostgreSQL, …

create a blog application with django, part 9: create django rss feeds

Django has a built-in syndication feed framework that you can use to dynamically generate RSS or Atom feeds in a similar manner to creating sitemaps using the site's framework. A …

create a blog application with django, part 8: create django sitemap

Django comes with a sitemap framework, which allows you to generate sitemaps for your site dynamically. A sitemap is an XML file that tells search engines the pages of your …

create a blog application with django, part 7: add pagination in django blog

When you start adding content to your blog, you will soon realize you need to split the list of posts across several pages. Django has a built-in pagination class that …

create a blog application with django, part 6: create django templates

Now that We have created views and URL patterns for the blog application. It's time to create the HTML templates to display posts in a user-friendly manner. The render() function …