I hereby claim:
- I am netravnen on github.
- I am chri (https://keybase.io/chri) on keybase.
- I have a public key whose fingerprint is C8B3 82A8 A1CD CDB7 71FE B24C C654 948F DA86 BECD
To claim this, I am signing this object:
[remote "gitlab"] | |
url = https://gitlab.com/username/repository-name.git | |
fetch = +refs/heads/*:refs/remotes/gitlab/* | |
[remote "github"] | |
url = https://github.com/username/repository-name.git | |
fetch = +refs/heads/*:refs/remotes/github/* | |
[remote "bitbucket"] | |
url = https://bitbucket.org/username/repository-name.git | |
fetch = +refs/heads/*:refs/remotes/bitbucket/* | |
[remote "origin"] |
I hereby claim:
To claim this, I am signing this object:
UTC: 2018-07-05 21:57
netravnen/au-packages
This file is automatically generated by the update_all.ps1 script using the AU module.
Ignored | History | Force Test | Releases | **TESTING AU NEXT VERSIO
.
:: TITLE: move-browser-cache-to-ramdisk.bat | |
:: BY: GH:netravnen | |
:: NOTE: Requires administrator rights to run under Windows | |
:: VERSION: v1.0.0-20180728 | |
:: Google Chrome | |
IF EXIST "%userprofile%\AppData\Local\Google\Chrome\User Data\Default\Cache" ( | |
rmdir /S /Q "%userprofile%\AppData\Local\Google\Chrome\User Data\Default\Cache" | |
mklink /D "%userprofile%\AppData\Local\Google\Chrome\User Data\Default\Cache" R:\cache | |
ECHO Google Chrome cache moved |
#!/usr/bin/env python3 | |
import argparse | |
import getpass | |
import os | |
import time | |
import sys | |
import lsb_release | |
# Only LTS release codenames will be listed here - https://wiki.ubuntu.com/Releases |
Get-AppxPackage *3dbuilder* | Remove-AppxPackage -AllUsers | |
Get-AppxPackage *windowsalarms* | Remove-AppxPackage -AllUsers | |
Get-AppxPackage *windowscalculator* | Remove-AppxPackage -AllUsers | |
Get-AppxPackage *windowscommunicationsapps* | Remove-AppxPackage -AllUsers | |
Get-AppxPackage *windowscamera* | Remove-AppxPackage -AllUsers | |
Get-AppxPackage *officehub* | Remove-AppxPackage -AllUsers | |
Get-AppxPackage *skypeapp* | Remove-AppxPackage -AllUsers | |
Get-AppxPackage *getstarted* | Remove-AppxPackage -AllUsers | |
Get-AppxPackage *zunemusic* | Remove-AppxPackage -AllUsers | |
Get-AppxPackage *windowsmaps* | Remove-AppxPackage -AllUsers |
#!/bin/bash | |
# Author: https://gist.github.com/auipga/ | |
# Based on: | |
# Sync (outdated?): https://kb-archive.getsync.com/kbs/1.3.5/kb/hc/en-us/articles/210153106-Ports-and-protocols-used-by-Resilio-Connect.html | |
# Resilio Connect: https://help.getsync.com/hc/en-us/articles/204754759-What-ports-and-protocols-are-used-by-Sync- | |
# todo: read sync.conf from resilio server, parse json, fill IPs dynamically | |
# todo: delete duplicate rules as 'host' returns multiple IPs for resilios domains |
# /etc/ntp.conf, configuration for ntpd; see ntp.conf(5) for help | |
driftfile /var/lib/ntp/ntp.drift | |
broadcastdelay 0.008 | |
# Enable this if you want statistics to be logged. | |
statsdir /var/log/ntpstats/ | |
statistics loopstats peerstats clockstats | |
filegen loopstats file loopstats type day enable |
#!/bin/bash | |
read -s -p "$(date --utc +'%FT%T.%3NZ'): Enter Password: " SSH_KEY_PASSWORD | |
#OPTS="-q -C ${SSH_COMMENT} -P ${SSH_KEY_PASSWORD}" | |
OPTS="-q -N ${SSH_KEY_PASSWORD}" | |
SSH_DIR="$HOME/.ssh" ; if [ ! -d $SSH_DIR ] ; then mkdir -p $SSH_DIR ; chown -R $USER:$USER $SSH_DIR ; chmod -R 700 $SSH_DIR ; fi | |
SSH_FILE_PREFIX='id_' |