Articles on current page (1-4 of 4)

May 2023

cargo ship

☑ Uncovering Rust: Build and Packaging

Rust is fairly new multi-paradigm system programming language that claims to offer both high performance and strong safety guarantees, particularly around concurrency and memory allocation. As I play with the language a little, I’m using this series of blog posts to discuss some of its more unique features as I come across them. In this one I’m looking at Cargo, Rust’s build and packaging system.

This is the 6th of the 7 articles that currently make up the “Uncovering Rust” series, the first of which was Uncovering Rust: References and Ownership. This article was preceded by Uncovering Rust: Traits and Generics.

Read article →

12 May 2023 at 9:26AM in Software
 | 
Photo by Pixabay on Pexels
 | 

April 2021

python 34

☑ What’s New in Python 3.4 - Part 1

In this series looking at features introduced by every version of Python 3, this one is the first of two covering release 3.4. We look at a universal install of the pip utility, improvements to handling codecs, and the addition of the asyncio and enum modules, among other things.

This is the 6th of the 29 articles that currently make up the “Python 3 Releases” series, the first of which was What’s New in Python 3.0. This article was preceded by What’s New in Python 3.3 - New Features.

Read article →

March 2021

python 33

☑ What’s New in Python 3.3 - More New Features

The second of my two articles covering features added in Python 3.3, this one talks about a large number of changes to the standard library, especially in network and OS modules. I also discuss implicit namespace packages, which are a bit niche but can be useful for maintaining large families of packages.

This is the 4th of the 29 articles that currently make up the “Python 3 Releases” series, the first of which was What’s New in Python 3.0. This article was preceded by What’s New in Python 3.2.

Read article →

February 2021

python 31

☑ What’s New in Python 3.1

This article continues to series looking at features added in each release of Python 3.x, with this one covering the move from 3.0 to 3.1. It includes the new contains OrderedDict and Counter, making modules executable as scripts, and marking unit tests as known failures. If you’re puzzled why I’m looking at releases that are years old, check out the first post in the series.

This is the 2nd of the 29 articles that currently make up the “Python 3 Releases” series, the first of which was What’s New in Python 3.0.

Read article →