See how a minor change to your commit message style can make a difference.
Tip
Take a look at git-conventional-commits , a CLI util to ensure these conventions, determine version and generate changelogs
package cache | |
import ( | |
"sync" | |
"time" | |
) | |
// Cache is a basic in-memory key-value cache implementation. | |
type Cache[K comparable, V any] struct { | |
items map[K]V // The map storing key-value pairs. |
See how a minor change to your commit message style can make a difference.
Tip
Take a look at git-conventional-commits , a CLI util to ensure these conventions, determine version and generate changelogs
# Upload a file to DigitalOcean Spaces (S3 compatible) | |
# Please note, that the DigitalOcean host is fra1.digitaloceanspaces.com (Frankfurt) | |
function upload_to_digitalocean() { | |
SOURCE_FILE_PATH=$1 | |
TARGET_FILE_PATH=$2 | |
BUCKET=$3 | |
RESOURCE="/${BUCKET}/${TARGET_FILE_PATH}" | |
CONTENT_TYPE="application/x-compressed-tar" | |
DATE_VALUE=`date -R` |
# Frontend Design Guideline | |
This document summarizes key frontend design principles and rules, showcasing | |
recommended patterns. Follow these guidelines when writing frontend code. | |
# Readability | |
Improving the clarity and ease of understanding code. |
Common commands used in GNS3 for setting up network topologies and for troubleshooting.
{ ... }: | |
{ | |
imports = [ | |
./kodi.nix | |
./htpc.nix | |
]; | |
profiles.htpc.enable = true; | |
} |
/**
* List all icons available to `obsidian.setIcon()`
*
* @author Ljavuras <ljavuras.py@gmail.com>
*/
dv.container.createEl("style", { attr: { scope: "" }, text: `
.icon-table {
display: flex;
I am assuming you are here because like me, you installed a bazillion different python interpreters on mac and the whole thing is a spagetti. Today, I finally fixed my python installation. Whatever I install for python2 or python3 using pip JUST.WORKS.. My god! finally.
Here is what I had messed up, which you also probably did: