Every time you choose to apply a rule(s), explicitly state the rule(s) in the output. You can abbreviate the rule description to a single word or phrase.
[Brief description ]
- [more description]
- [more description]
- [more description]
If you want to clone an svn repository with git-svn but don't want it to push all the existing branches, here's what you should do. | |
* Clone with git-svn using the -T parameter to define your trunk path inside the svnrepo, at the same time instructing it to clone only the trunk: | |
git svn clone -T trunk http://example.com/PROJECT | |
* If instead of cloning trunk you just want to clone a certain branch, do the same thing but change the path given to -T: | |
git svn clone -T branches/somefeature http://example.com/PROJECT |
hrjavascript-mastery |
A PowerShell script to toggle the loudness equalization setting for a Windows playback device.
Full credits to @Falcosc for the original script.
ToggleLoudness.ps1
file below somewhere, e.g. your Documents folder.powershell.exe "%USERPROFILE%\Documents\ToggleLoudness.ps1" -playbackDeviceName "Luidsprekers"
Luidsprekers
with the name of the playback device.See how a minor change to your commit message style can make a difference.
Tip
Have a look at git-conventional-commits , a CLI util to ensure these conventions, determine version and generate changelogs
#!/usr/bin/env bash | |
# Specify destination for extension rootfs | |
ROOTFS_PATH=/mnt/tank/some/dataset/ext/rootfs | |
# List of packages to install | |
PACKAGES="usbutils" | |
# Download minimal debian base rootfs | |
mkdir -p "$ROOTFS_PATH" | |
curl -L https://github.com/debuerreotype/docker-debian-artifacts/raw/dist-amd64/bookworm/slim/rootfs.tar.xz | tar -xJ -C "$ROOTFS_PATH" --numeric-owner |
// | |
// View+OpenUrl.swift | |
// | |
// Created by James Sedlacek on 11/26/24. | |
// | |
/// This file provides a safe way to open URLs in SwiftUI applications. | |
/// It adds a view modifier that handles URL opening with user confirmation | |
/// and multiple opening options (browser, in-app, or copy to clipboard). | |
/// |
This guide shows how to deploy an uncensored DeepSeek R1 Distill model to Google Cloud Run with GPU support and how to perform a basic, functional fine-tuning process. The tutorial is split into:
From 14fe7d7fc135e0a14f6d2d0846d7d25e1f35d3e8 Mon Sep 17 00:00:00 2001 | |
From: Sergey Kondakov <[email protected]> | |
Date: Mon, 19 Aug 2019 19:31:16 +0500 | |
Subject: [PATCH] Enablement of HCI_QUIRK_BROKEN_STORED_LINK_KEY quirk for | |
another fake CSR dongle with bcdDevice=88.91 as workaround for bug#60824 | |
--- | |
drivers/bluetooth/btusb.c | 7 +++++-- | |
1 file changed, 5 insertions(+), 2 deletions(-) |