See how a minor change to your commit message style can make you a better programmer.
Format: <type>(<scope>): <subject>
<scope>
is optional
# 0 is too far from ` ;) | |
set -g base-index 1 | |
# Automatically set window title | |
set-window-option -g automatic-rename on | |
set-option -g set-titles on | |
#set -g default-terminal screen-256color | |
set -g status-keys vi | |
set -g history-limit 10000 |
group_id = 4404657 | |
latest_order = 556451 | |
latest_cancellation_order = 556452 | |
subscription_number = 'A-S00052771' | |
# InvoicePosted, Order Processed | |
bcs_invoice_posted = '1219450' | |
bcs_order_processed = '1219447' | |
billing_communications = [bcs_invoice_posted, bcs_order_processed] | |
subs_ssn_info = 199457 |
#!/usr/bin/env php | |
<?php | |
if ($argc < 3) { | |
die("Usage: ./jtt.php ISSUE-1 30m optional comment here\n"); | |
} | |
$username = 'EMAIL_GOES_HERE'; | |
$token = 'API_KEY_HERE'; // see https://developer.atlassian.com/cloud/jira/platform/jira-rest-api-basic-authentication/ | |
$team = 'TEAM_NAME_HERE'; |
# Disable Commercial Repo | |
sed -i "s/^deb/\#deb/" /etc/apt/sources.list.d/pve-enterprise.list | |
apt-get update | |
# Add PVE Community Repo | |
echo "deb http://download.proxmox.com/debian/pve $(grep "VERSION=" /etc/os-release | sed -n 's/.*(\(.*\)).*/\1/p') pve-no-subscription" > /etc/apt/sources.list.d/pve-no-enterprise.list | |
apt-get update | |
# Remove nag | |
echo "DPkg::Post-Invoke { \"dpkg -V proxmox-widget-toolkit | grep -q '/proxmoxlib\.js$'; if [ \$? -eq 1 ]; then { echo 'Removing subscription nag from UI...'; sed -i '/data.status/{s/\!//;s/Active/NoMoreNagging/}' /usr/share/javascript/proxmox-widget-toolkit/proxmoxlib.js; }; fi\"; };" > /etc/apt/apt.conf.d/no-nag-script |
#!/bin/bash | |
for d in $(find /sys/kernel/iommu_groups/ -type l | sort -n -k5 -t/); do | |
n=${d#*/iommu_groups/*}; n=${n%%/*} | |
printf 'IOMMU Group %s ' "$n" | |
lspci -nns "${d##*/}" | |
done; |
1) Pair ALL bluetooth devices in linux (it is to have the files you will need to edit later)
2) Pair ALL bluetooth devices in Windows 10. If you know how, get the MAC address
id from your bluethooth keyboard, we will need it later
3) Reboot and go back to Linux
4) Install chntpw
package, this is needed to read the registry keys from Wintendo
sudo apt-get install chntpw