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
function Adjust-DNSServerResourceRecord { | |
param( | |
[Parameter(Mandatory=$true)][string]$ZoneName, | |
[Parameter(Mandatory=$true)][string]$Name, | |
[Parameter(Mandatory=$true)][string]$RRType, | |
[Parameter(Mandatory=$true)]$Data, | |
$TimeToLive = $null | |
) | |
# Initialize local variables |
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
@echo off | |
REM Sample script that downloads files from a Git repository published on Github | |
REM This script assumes that Git client is installed. | |
REM If it is not, please download the official Git client from https://www.git-scm.com/download/win and install it. | |
REM Files from public repositories can be downloaded straight away. | |
REM However, Git client will need a personal access token in order to download files from private repositories. | |
REM Please follow these articles for guidance: |
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
--- | |
all: | |
children: | |
LBs: | |
children: | |
LBs_PRD_east: | |
hosts: | |
LBs_PRD_east_A: | |
pos: 10 | |
LBs_PRD_east_B: |
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
// ==UserScript== | |
// @name LinkedIn - Remove crap posts | |
// @namespace http://tampermonkey.net/ | |
// @version 0.1 | |
// @description Unlike facebook, LinkedIn creates entire posts just for likes and comments which fills up the feed with crap. This snippet removes those posts from the feed. Best used with an Chrome extension like "Custom JavaScript for Websites". | |
// @author GFoley83 | |
// @author amg1127 | |
// @match https://linkedin.com/feed/ | |
// @match https://*.linkedin.com/feed/ | |
// @run-at document-idle |