Skip to content

Instantly share code, notes, and snippets.

@iamsilvio
iamsilvio / alias.zsh
Created April 14, 2021 21:16
ZSH Countdown Timer
ct5() {
AWESOME_COUNTDOWN=$(date --date 'now + 5 minutes' +%s)
}
ct90() {
AWESOME_COUNTDOWN=$(date --date 'now + 90 minutes' +%s)
}
@iamsilvio
iamsilvio / Mouse.ps1
Last active August 13, 2020 20:30
disable Windows 10 Mouse Properties -> Pointer Options | Enhance pointer precision AKA GamerMode
$RegKey ="HKCU:\Control Panel\Mouse"
Set-ItemProperty -Path $RegKey -Name MouseSpeed -Value 0
Set-ItemProperty -Path $RegKey -Name MouseThreshold1 -Value 0
Set-ItemProperty -Path $RegKey -Name MouseThreshold2 -Value 0
@iamsilvio
iamsilvio / zfs_health_check.sh
Created May 9, 2020 10:50 — forked from Rychu-Pawel/zfs_health_check.sh
ZFS Health Check script for monit. For detailed description and usage go to http://pawelrychlicki.pl/Article/Details/58/zfs-health-check-script-for-monit-09
#! /bin/sh
#
## ZFS health check script for monit.
## v0.9.0.2
#
## Should be compatible with FreeBSD and Linux. Tested on Ubuntu.
## If you want to use it on FreeBSD then go to Scrub Expired section
## and comment two Ubuntu date lines and uncomment two FreeBSD lines
#
## Assumed usage in monitrc (where 80 is max capacity in percentages
@iamsilvio
iamsilvio / DisableUselessBingSearchInWindows.reg
Created February 5, 2020 13:21
DisableUselessBingSearchInWindows
Windows Registry Editor Version 5.00
[HKEY_CURRENT_USER\Software\Microsoft\Windows\CurrentVersion\Search]
"CortanaConsent"=dword:00000000
"BingSearchEnabled"=dword:00000000
@iamsilvio
iamsilvio / RemoveFoldersFromThisPC.reg
Created May 29, 2019 21:30
Registry keys to to clean up the mess under This PC on Windows 10
Windows Registry Editor Version 5.00
; delete keys for 3D Objects
[-HKEY_LOCAL_MACHINE\SOFTWARE\Microsoft\Windows\CurrentVersion\Explorer\MyComputer\NameSpace\{0DB7E03F-FC29-4DC6-9020-FF41B59E513A}]
[-HKEY_LOCAL_MACHINE\SOFTWARE\WOW6432Node\Microsoft\Windows\CurrentVersion\Explorer\MyComputer\NameSpace\{0DB7E03F-FC29-4DC6-9020-FF41B59E513A}]
; hide Documents Folder from Computer
[HKEY_LOCAL_MACHINE\SOFTWARE\Microsoft\Windows\CurrentVersion\Explorer\FolderDescriptions\{f42ee2d3-909f-4907-8871-4c22fc0bf756}\PropertyBag]
"ThisPCPolicy"="Hide"
@iamsilvio
iamsilvio / MapCapslockToControl.ps1
Created October 16, 2018 14:56
Map caps lock to Ctrl on Windows
#-> Map caps lock to control (Run as Admin -> reboot required)
$hexified = "00,00,00,00,00,00,00,00,02,00,00,00,1d,00,3a,00,00,00,00,00".Split(',') | ForEach-Object { "0x$_"};
$kbLayout = 'HKLM:\System\CurrentControlSet\Control\Keyboard Layout';
New-ItemProperty -Path $kbLayout -Name "Scancode Map" -PropertyType Binary -Value ([byte[]]$hexified);
@iamsilvio
iamsilvio / iis-perfect-fwd-secrecy-tls-1.2.ps1
Last active June 22, 2022 20:48
powershell to configure IIS for PFS and TLS 1.2
# for the Cipher Suites Support documentation go to
# https://docs.microsoft.com/en-us/windows/desktop/SecAuthN/cipher-suites-in-schannel
# Version 1.7
Write-Host 'Configuring IIS with SSL/TLS Deployment Best Practices...'
Write-Host '--------------------------------------------------------------------------------'
# Disable Multi-Protocol Unified Hello
@iamsilvio
iamsilvio / deleteonerror.dvtcolortheme
Created October 11, 2014 22:54
deleteonerror Xcode color theme
<?xml version="1.0" encoding="UTF-8"?>
<!DOCTYPE plist PUBLIC "-//Apple//DTD PLIST 1.0//EN" "http://www.apple.com/DTDs/PropertyList-1.0.dtd">
<plist version="1.0">
<dict>
<key>DVTConsoleDebuggerInputTextColor</key>
<string>1 0.886275 0.180392 1</string>
<key>DVTConsoleDebuggerInputTextFont</key>
<string>Menlo-Bold - 11.0</string>
<key>DVTConsoleDebuggerOutputTextColor</key>
<string>1 0.886275 0.180392 1</string>
@iamsilvio
iamsilvio / youtube-dl-cron.sh
Last active November 5, 2020 17:52
script to download all videos of a youtube channel (cron)
#!bin/bash
timeLogFile='/opt/youtube-dl/time.log'
downloadDirectory='/media/cs-video/Youtube-ch/'
read -r lastTime<$timeLogFile
declare -a arr=("" "")
for playlist in "${arr[@]}"
@iamsilvio
iamsilvio / commit-msg
Created July 10, 2013 10:19
git commit-msg hook to reject bad formated messages
#!/usr/bin/env python
# -*- coding: utf-8 -*-
import sys
import re
def checkMessage(msg):
"""
Checks if the message content matches one of the message rules
B: <message>