Tutorials, product info, and good advice from the Honeybadger crew.
JavaScript is an Object Oriented Programming language. At least—it can be! Check out this article about how to use Object Oriented Programming concepts to structure your JavaScript code.
If you've ever wondered if there is a better way to build and consume APIs, you should check out GraphQL—it's better than REST in many cases. This article discusses how to work with GraphQL in Django.
Rails' date and time helpers are great. They save us from duplicating simple add-duration-to-time logic across our applications and make the code more readable. However, complex date manipulations are dangerous places full of edge-cases. This article discusses some of them. 😅
If you work with JavaScript, you know that errors are unavoidable. How you handle them determines whether they work for or against you. Dive into this article to master best practices for exception handling in JavaScript.
Errors are unavoidable, but you can always have less of them! In this article, Adebayo Adams walks through how to use type hinting in PHP.
In this tutorial, learn how to use Python to interact with the Discord API—and build a bot using Flask.
The conclusion to Alex Braha Stoll's 5-part series on how to build a toy programming language in Ruby.
Ruby on Rails is one of the most popular Ruby frameworks, but it's not the only one. Hanami 2.0 is faster than Rails and packed with exciting features—it might be the tool you need for your next project!
You've probably used Reddit in the browser, but did you know the API can power your apps with Reddit data? Jump in to learn how to use the Reddit API to display search results in a simple JavaScript web application built with Parcel.
PDF files are foundational for sharing documents across platforms. In this article, learn how to generate PDF files in PHP.