- There are three types of permissions in files and folders in unix
- Read (r)
- Write (w)
- Execute (x)
- And, there is a classification of users called UGO (explained bellow):
- U ~> User (usually, you)
This file contains hidden or 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 Reddit Unread Comments | |
// @description On topic pages, show "X unread comments (Y total)"; on comment pages, highlight unread comments. Local storage only -- does not work across multiple computers. | |
// @author Xiao | |
// @namespace https://greasyfork.org/users/5802 | |
// @include /^https?:\/\/[a-z]+\.reddit\.com\/.*/ | |
// @require https://raw.githubusercontent.com/bgrins/TinyColor/master/tinycolor.js | |
// @grant GM_setValue | |
// @grant GM_getValue | |
// @grant GM_listValues |
This file contains hidden or 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 Get-BrowserHistory { | |
<# | |
.SYNOPSIS | |
Gets web browsing history | |
.DESCRIPTION | |
Parses Chrome and IE browser history. Optionally refines the results by username and/or URL. | |
.PARAMETER ComputerName | |
The computer name to get browsing history from. Defaults to localhost (actually... `$env:COMPUTERNAME) | |
Accepts values from the pipeline. | |
.PARAMETER UserName |
This file contains hidden or 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 Reddit: Highlight New Comments v3 | |
// @description Highlights comments on Reddit that are new since your last visit. | |
// @author Chris H (Zren / Shade), Nathan Sweet | |
// @icon https://reddit.com/favicon.ico | |
// @namespace http://xshade.ca | |
// @version 1 | |
// @include /https?:\/\/((www|pay|[a-z]{2})\.)?reddit\.com\/r\/[a-zA-Z0-9]+\/comments\/.*/ | |
// @grant GM_addStyle | |
// ==/UserScript== |