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 python | |
r""" | |
Author: nkmathew <[email protected]> | |
Date: April 29, 2016 | |
The script generates a list of all the reference git repos in a certain folder and | |
its subfolders should you need to reclone them later in the same structure | |
e.g |
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
'use strict'; | |
// ==UserScript== | |
// @name GMail Age-Counter | |
// @namespace http://nkmathew.net | |
// @description Describes time elapsed since an email message was received | |
// @require https://ajax.googleapis.com/ajax/libs/jquery/2.1.4/jquery.min.js | |
// @require https://cdnjs.cloudflare.com/ajax/libs/moment.js/2.12.0/moment.min.js | |
// @include https://mail.google.com/mail/u/0/h/* | |
// @version 0.1 | |
// @grant none |
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 Thread Links in Same Tab(upvoted.com) | |
// @namespace nkmathew.github.io | |
// @description Makes sure reddit thread links in upvoted.com open in the same tab | |
// @version 1.0 | |
// @include /^https?:\/\/(.+\.)?upvoted\.com\/?.*$/ | |
// @require http://ajax.googleapis.com/ajax/libs/jquery/2.1.1/jquery.min.js | |
// @grant GM_getValue | |
// @grant GM_setValue | |
// ==/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
#!/usr/bin/env python | |
""" | |
http://stackoverflow.com/questions/748675/finding-duplicate-files-and-removing-them/748908#748908 | |
Yet another duplicate file finder | |
CHANGELOG: | |
+ [Thursday] Feb 11, 2016 |
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
/** | |
* Adapted from http://userstyles.org/styles/89732/ by Elian Dankiewicz | |
* | |
* Makes Firefox scrollbar thumb a bit darker(visibile) | |
* | |
*/ | |
@namespace url(http://www.mozilla.org/keymaster/gatekeeper/there.is.only.xul); | |
scrollbar { |
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 Add reddit-stream.com Link | |
// @namespace http://nkmathew.net | |
// @author nkmathew | |
// @description Adds links to view the posts in a subreddit's frontpage using reddit-stream | |
// @icon http://www.reddit.com/favicon.ico | |
// @icon64 http://www.reddit.com/favicon.ico | |
// @version 0.2.0 | |
// @include /^https?:\/\/(.+\.)?reddit\.com\/?.*$/ | |
// @require http://ajax.googleapis.com/ajax/libs/jquery/2.1.1/jquery.min.js |
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
# List of usefull reference firefox addons | |
git clone https://github.com/inbasic/ignotifier/ # ~13MB | |
git clone https://github.com/honestbleeps/Reddit-Enhancement-Suite/ # ~15MB | |
git clone https://github.com/vjandrea/bookmark_deduplicator | |
git clone https://github.com/benbasson/contexthighlight/ | |
git clone https://github.com/anderslindmark/bookmarkdup | |
git clone https://github.com/Thiht/markdown-viewer # ~100KB | |
git clone https://github.com/BoringCode/TranslateThis # ~370KB | |
git clone https://github.com/bpierre/gtranslate # ~2MB | |
git clone https://github.com/info-add0n/Simple-Translate # ~7.6MB |
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 GMail Delete Button | |
// @namespace http://nkmathew.github.io | |
// @description Adds a button that deletes all read emails in gmail(when in basic HTML view) | |
// @require https://ajax.googleapis.com/ajax/libs/jquery/2.1.4/jquery.min.js | |
// @include https://mail.google.com/mail/u/0/h/* | |
// @version 0.1 | |
// @grant none | |
// @run-at document-end | |
// ==/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
@namespace xul url(http://www.mozilla.org/keymaster/gatekeeper/there.is.only.xul); | |
@namespace html url(http://www.w3.org/1999/xhtml); | |
@-moz-document url("chrome://global/content/viewSource.xul"), | |
url("chrome://global/content/viewPartialSource.xul"), | |
url-prefix("view-source:") { | |
html { | |
background: #151515 !important; | |
color: #fff !important; | |
font-size: 12px; | |
} |