Skip to content

Instantly share code, notes, and snippets.

View PolarBearGG's full-sized avatar
💭
I may be slow to respond.

Vitaliy PolarBearGG

💭
I may be slow to respond.
View GitHub Profile
@PolarBearGG
PolarBearGG / google_redirect_remove.js
Created January 17, 2020 14:59 — forked from zachbrowne/google_redirect_remove.js
Userscript to remove URL redirection from google sites
// ==UserScript==
// @name Google Redirect Remove
// @id google_redirect_remove
// @namespace scripts.zachbrowne.com
// @description Remove URL redirection from google sites
// @license GPL v3
// @include *://www.google.*/*q=*
// @include *://www.google.*/*tbs=*
// @include *://www.google.*/search?*
// @include *://www.google.*/webhp?*
@PolarBearGG
PolarBearGG / Code.gs
Created January 17, 2020 14:58 — forked from clayperez/Code.gs
AUTO-Generate Unique IDs in Google Sheets
// AUTO GENERATE SIMPLE UNIQUE ID'S FOR NON-EMPTY ROWS
//
// Author: Carlos Perez, clayperez@gmail.com
//
// Purpose: This Google Sheets script fires when any cell is edited and
// inserts a random (reasonably unique) UID of ID_LENGTH length
// into the specified ID_COLUMN. For instance if the first column in the
// sheet specified by SHEETNAME is the column where you would like the
// UID injected, then ID_COLUMN should be 1.
//