Skip to content

Instantly share code, notes, and snippets.

@0x4a
0x4a / pinboard-shortcut.js
Last active December 24, 2015 23:29
Pinboard Shortcut for #firefox - Press Ctrl + D to add the opened webpage to #pinboard.in this is a modified version of the shortcut #userscript by leplay (https://userscripts.org/scripts/show/120694) all the credit for the actual code goes to him,I just changed it from a popup to opening on the same page with a tagcloud. I also changed the shor…
// ==UserScript==
// @name Pinboard - Shortcut (Ctrl+D)
// @author leplay / jekyll
// @namespace http://userscripts.org/scripts/show/156067
// @description Press Ctrl + D to add the opened webpage to pinboard.in using the same-page tag-cloud bookmarklet
// @grant none
// ==/UserScript==
// original script by leplay - http://userscripts.org/scripts/show/120694
// modified by [email protected]
@0x4a
0x4a / laut.de-clean.css
Created October 8, 2013 06:30
laut.de cleanup #userstyle - removes from front-page: *fotos box *top albums box *artists box *laut.fm radio player - removes from articles: *right column with facebook & newsletter box,more space for articles *laut.fm radio player
@namespace url(http://www.w3.org/1999/xhtml);
@-moz-document domain("laut.de") {
#lautfm_player { display: none !important; }
#formFacebook { display: none !important; }
@0x4a
0x4a / pinboard-unread.css
Created October 8, 2013 06:32
#pinboard.in #userstyle - show unread bookmarks more clearly
@namespace url(http://www.w3.org/1999/xhtml);
@-moz-document domain("pinboard.in") {
a.bookmark_title.unread {
font-weight: bold;
}
@0x4a
0x4a / ff-awesomebar-color.css
Created October 8, 2013 06:33
ff: Awesome Bar - Different Colors based on type #firefox #userstyle
/*
_________________________________________________________________________
| | |
| Title: | Awesome Bar Background Color Based on Type (WOW) |
| Description: | Different Colors based on Bookmark, tag, or regular |
| Author: | -=Ben=- |
| Date Created: | July 3, 2008 |
| Last Updated: | October 7, 2008 |
| Version: | 1.0.0.3 |
|__________________|______________________________________________________|
@0x4a
0x4a / ff-cleanest-addon-manager.css
Last active December 24, 2015 23:29
ff: Cleanest Addon Manager - original #userstyle got replaced with a #firefox addon (https://addons.mozilla.org/de/firefox/addon/cam/) but somehow I like the script-version more, so here is that
/*
original userscript got replaced with a firefox addon (https://addons.mozilla.org/de/firefox/addon/cam/)
but somehow I like the script-version more, so here is a backup
*/
@namespace url("http://www.mozilla.org/keymaster/gatekeeper/there.is.only.xul");
@-moz-document url("about:addons"),url("chrome://mozapps/content/extensions/extensions.xul") {
/*Compact top controls*/
@0x4a
0x4a / ff-hide-tags-in-bookmarks.css
Created October 8, 2013 06:43
ff: Hide tags in bookmarks panel #firefox #userstyle
#editBMPanel_tagsRow
{
display:none !important;
}
@0x4a
0x4a / ff-findtoolbar-nocheckbox.css
Created October 8, 2013 06:44
ff: Remove Checkbox from Findtoolbar (Ctrl+F) #firefox #userstyle
@namespace url(http://www.mozilla.org/keymaster/gatekeeper/there.is.only.xul);
#FindToolbar checkbox {
display: none !important;
}
@0x4a
0x4a / workToolbox.ahk
Last active January 3, 2016 10:29
collection of #ahk scripts I use for #work with a custom #tool launcher
#SingleInstance, force
#NoEnv
#persistent
FileEncoding UTF-8
SetWorkingDir %A_ScriptDir%
Gosub INIT
#y::checkSlot("run")
#x::selectTool()
@0x4a
0x4a / saveID.ahk
Created January 16, 2014 03:11
saves #clipboard to #csv #work
#SingleInstance, force
#NoEnv
#persistent
FileEncoding UTF-8
SetWorkingDir %A_ScriptDir%
WaitClose := 1
saveFileName := A_ScriptDir "\" SubStr( A_ScriptName, 1, -4 )
saveFileExt := "csv"
saveFile := saveFileName . "." . saveFileExt
@0x4a
0x4a / diff.ahk
Created January 16, 2014 03:12
#ahk #frontend to gnu #diff #tool
#NoEnv
#SingleInstance, force
SetWorkingDir %A_ScriptDir%
FileEncoding UTF-8
args = %0%
a_old = %1%
a_new = %2%
global timestamp, diffout