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
# --------------------------------------------------------------------------- | |
# | |
# Description: This file holds all my BASH configurations and aliases | |
# | |
# Sections: | |
# 1. Environment Configuration | |
# 2. Make Terminal Better (remapping defaults and adding functionality) | |
# 3. File and Folder Management | |
# 4. Searching | |
# 5. Process Management |
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 Open Multiple Question Links | |
// @namespace http://roub.net/ | |
// @version 0.7 | |
// @description open multiple selected unique question links, skipping non-questions | |
// @author Paul Roub | |
// @include *://chat.stackoverflow.com/rooms/41570/so-close-vote-reviewers | |
// @include *://chat.stackoverflow.com/search* | |
// @grant GM_openInTab | |
// @run-at context-menu |
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 Stack Overflow Real Dark | |
// @namespace http://github.com/TinyGiant/ | |
// @description Real dark styling for Stack Overflow and some Stack Exchange sites | |
// @author @TinyGiant | |
// @run-at document-start | |
// @version 1.0.1.1m | |
// @include /^https?:\/\/.*\.?stack(overflow|exchange).com/.*$/ | |
// ==/UserScript== |
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 Tag list | |
// @namespace https://stackapps.com/questions/4207/burninator-toolkit | |
// @author Will Sullivan (Will) | |
// @developer David Bingham (Mogsdad) | |
// @version 1.2.10 | |
// @grant none | |
// @description Adds an expandable list containing a link to every question on the current tag page. Useful when you want to open many questions with the same tag at the same time. | |
// @include /^https?:\/\/(?:meta.)?(?:stackoverflow|stackexchange|serverfault|superuser|askubuntu|stackapps)\.com(?:\/(?:\?|questions(?:$|\/tagged|\?)|search|unanswered).*)?$/ | |
// https://regex101.com/r/1D5jof/3 |
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 test_listFilesInFolder() { | |
listFilesInFolder("StackOverflow"); | |
} | |
/** | |
* @OnlyCurrentDoc Limits the script to only accessing the current spreadsheet. | |
*/ | |
function onOpen() { |
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
// EventManagerV3 glued together by mhawksey http://www.google.com/profiles/m.hawksey | |
// Related blog post http://mashe.hawksey.info/eventmanagerv3/ | |
// With some code (settings, importIntoCalendar, sendEmails) from | |
// Romain Vialard's http://www.google.com/profiles/romain.vialard | |
// Manage your events: Calendar Importer and Registration Form | |
// https://spreadsheets.google.com/ccc?key=tCHuQkkKh_r69bQGt4yJmNQ | |
var ss = SpreadsheetApp.getActiveSpreadsheet(); | |
var BOOKING_ACTION_COL = 10; |