Joseph Oseh Frank's blog

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

Six months ago I released dns-benchmark-tool — a CLI to benchmark and compare DNS resolvers. It grew to over 14,000 installs across 100+ countries with zero marketing, driven entirely by word of mouth and community sharing.

Read more

Released v0.3.2 of dns-benchmark-tool

dns-benchmark-tool is a CLI to test and compare DNS servers, helping developers and sysadmins choose the fastest and most reliable option for their environment.

Read more

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

DNS resolution speed can have a huge impact on application performance. This package makes it simple to test and compare different DNS servers, helping developers and sysadmins choose the fastest and most reliable option for their environment.

Read more

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 post, we will explore how to master date and time in Django using Python’s datetime module, along with code snippets …

Read more

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: Processes the data and returns a rendered template

Read more