.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# /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 |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/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 |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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 |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/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 |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
:: 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 |
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
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:
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
[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"] |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
:: Archive files in current dir into seperate 7z archives | |
:: and delete archives files afterwards. | |
:: | |
:: a: create archive | |
:: -t7z: use 7z format | |
:: -sdel: delete files after archiving | |
:: -mx9: use highest possible compression ration | |
:: -mmt: use multi-threading while archiving | |
:: -ms: create solid archive-file |