Sign in Shop now →

News

Articles, sustainability work, and the occasional take on what it means to keep critical systems running.

Archive

Latest articles

Image unavailable

Commerical invoice template

Fedex CI template (Valid for 2024) FedEx-Commercial-InvoiceFedEx-Commercial-Invoice.pdf40 KBdownload-circle FedEx | System DownSystem Down Fedex guide on commerical invoices FedEx | System DownSystem…

Other-Tutorials
Image unavailable

Shortcuts for billing

Ups view invoices https://www.ups.com/viewbill/invoices https://billing.ups.com/ups/billing/invoice, new 2024 Amazon view order history https://www.amazon.se/your-orders/orders…

Other-Tutorials
Image unavailable

Linux du –max-depth = Mac OS X du -hd1

The du command in macOS, and Unix/Linux systems in general, is used for checking the disk usage of files and directories. The specific command du -hd1 provides a very useful functionality for quickly understanding the…

Other-Tutorials
Image unavailable

Comparison between Linux MacOS and Windows CLI/Terminal commands

Overview The following guide provides an extensive comparison of common Linux commands and their equivalents in macOS and Windows operating systems. This comparison is essential for developers, system administrators,…

Other-Tutorials
Image unavailable

Trailing Slashes in Filesystem Paths and rsync

When working with files and folders on Unix-based systems, the presence or absence of a trailing slash can influence how tools behave. This tutorial will demystify the difference between /source and /source/ and provide…

Other-Tutorials
Image unavailable

VIM visual shifting Vscode

If you want to keep your selection active while indenting in Visual Studio Code with the Vim extension, you can use the gv command to reselect the last visual selection. Here are the steps: 1. First, make sure you are…

Other-Tutorials
Image unavailable

Interactive shell django environment in docker

Troubleshooting your django app from inside docker container: If the container is running: docker exec -it [containerID] /bin/bash python manage.py shell from [yourapp].models import [class] If the container is not…

Other-Tutorials
Image unavailable

Twitter “Nothing to see here - yet” if logged out

Nope! you are not the only one after recent API changes this feature is broken for pretty much everyone Embedding Twitter Feed displays Nothing to see here - yet · Issue #78913 · Automattic/wp-calypsoQuick summary Using…

Other-Tutorials
Image unavailable

django view example and render function

def employee_list(request): employees = Employee.objects.all() return render(request, 'employee_list.html', {'employees': employees}) In the given view, here are the steps explained simply: 1. The employee_list function…

Other-Tutorials
Image unavailable

Django Listview compared to models.model

In Django, ListView and models.Model are different concepts that serve different purposes. models.Model is a base class provided by Django for creating database models. When you define a class that inherits from…

Other-Tutorials
Image unavailable

Addressing a 'Paused' or 'Frozen' Libvirt Virtual Machine

Virtual machines (VMs) are an essential part of many workflows, but like any complex software, they can sometimes exhibit confusing behavior. If you've found your Libvirt VM in a "paused" state, you're not alone.…

Other-Tutorials
Image unavailable

Blender - How to scale snapped measure along with objects?

TLDR: Not possible. This is a major limitation of blender. Use another tool. Maya / Revit / SketchUp The Measure tool in Blender creates a measurement display that is independent from objects in your scene. It doesn't…

Other-Tutorials
Image unavailable

unable to init server virt-manager

TLDR: If you are signed in as root in the terminal and trying to start virt-manager you might get this error. Change to the same user that is signed into the GUI and launch virt-manager and the application should launch…

Other-Tutorials
Image unavailable

Remove "Powered by Bigcommerce" (with pictures)

TLDR: View Store -> Design this page in page builder -> Theme Styles -> Header & Footer -> Display Settings -> 'Show "Powered by BigCommerce"' If you have a BigCommerce store, you may have noticed that there's a…

Other-Tutorials
Image unavailable

Add footer links in bigcommerce (with video)

Are you looking to customize your Bigcommerce store's footer with specific links like 'Billing Terms & Conditions', 'Refund Policy' without having them show up in the header? In this tutorial, we'll walk you through the…

Other-Tutorials
Image unavailable

Samba Windows nonstandard port

Guide: All credit goes to the original author: jjkeijser.github.io CIFS-over-SSH for Windows 10 Resources: How to detect, enable and disable SMBv1, SMBv2, and SMBv3 in WindowsDescribes how to enable and disable the…

Other-Tutorials
Image unavailable

qemu/kvm/libvirt guests, up and running checklist

Updated continually, Getting started with libvirt, a checklist Requirements: KVM hypervisor/virtualization packages on your virtualization host/libvirt host Management can either be done using: * Command line, the virsh…

Other-Tutorials