Sander's Blurbs

Menu

Category: Project

PyShed 0.2

PyShed is a simple Docker image for running zero configuration Python projects with Poetry dependency management.

You can use it to run a Python project without needing a Python setup. I use it for Django projects for example.

What’s new?

Verion 0.2 uses pip to install poetry. I also fixed a environment path issue that was generating warnings.

Repoman 0.2

Repoman is a script to export and import a list of git repositories.

It helps me have all my active projects available on multiple laptops.

What’s new?

Version 0.2 switches input and output to stdin and out, so that piping operations can be used to direct input and output to and from repoman.

# On computer 1
$ repoman.sh | tee repoman.lst
freshcookies=git@github.com:svandragt/freshcookies.git
repoman=https://github.com/svandragt/repoman.git

$ ls *.lst
repoman.lst

# On computer 2
$ cat repoman.lst | repoman.sh

⏳ Cloning freshcookies
Cloning into 'freshcookies'...
Resolving deltas: 100% (8/8), done.

⏳ Cloning repoman
Cloning into 'repoman'...
Receiving objects: 100% (7/7), done.

$ ls -d */
freshcookies  repoman

For more information, please refer to the examples in the readme.

Bringing sitemaps to WordPress

It’s not often one can say they contributed to 32% of the web, but yes today is that day. I’m proud to have been part of the HumanMade team that worked with Google on the first iteration of the effort to bring sitemap functionality into WordPress!

Sitemaps help WordPress sites become more discoverable by providing search engines with a map of content that should be indexed.

Pascal Birchler – https://make.wordpress.org/core/2020/06/10/merge-announcement-extensible-core-sitemaps/

WordPress 5.5 might ship sitemaps out of the box, and will make millions of sites easier to index, and provide a foundation for plugin authors to extend.

This should help increase the relevancy of information from WordPress sites in search engines.

Repoman 0.1

Repoman is a script to export and import a list of git repositories using an intermediate repoman.lst file.

When exporting, Repoman scans the working directory for .git folders and save its relative path with the git remote.

When importing, repoman will restore this directory structure and clone each repository.

Why use this?

It’s considered bad practice to use cloud sync solutions to sync working copies.

Repoman helps you work on the same projects on multiple devices, by syncing repoman.lst instead.

Download

Get Repoman 0.1 on GitHub