I hereby claim:
- I am geruhn on github.
- I am geruhn (https://keybase.io/geruhn) on keybase.
- I have a public key whose fingerprint is 65C7 F2FA 12F5 2F8C 6146 8F18 BD0A B87E FBDF 375C
To claim this, I am signing this object:
I hereby claim:
To claim this, I am signing this object:
| // ==UserScript== | |
| // @name Search Shortcut | |
| // @namespace andyperdana.de | |
| // @version 0.3 | |
| // @description Ctrl+M is goToSearch | |
| // @include /^https?://(www\.)?.*\..*/ | |
| // @exclude http://update001.maminfra.bs.kae.de.server.lan/updatetool/* | |
| // @downloadUR https://gist.githubusercontent.com/Geruhn/9809298/raw/0d3fee8c6da586650572a1e28054fb6833ab41c6/search_shortcut.user.js | |
| // @copyright 2012+, You | |
| // @homepage https://gist.githubusercontent.com/Geruhn/9809298/raw/9577bc50e2d058986afa8b831905c23ed79973e7/search_shortcut.user.js |
| alias "giac"="git init && git add . && git commit -m \"Initial commit\"" |
| { | |
| "keys": ["alt+shift+6"], | |
| "command": "set_layout", | |
| "args": | |
| { | |
| "cols": [0.0, 0.45, 1.0], | |
| "rows": [0.0, 0.5, 1.0], | |
| "cells": | |
| [ | |
| [0, 0, 1, 2], [1, 0, 2, 1], |
| EventTarget.prototype.addAnimationListener = function(type, listener, useCapture, wantsUntrusted) { | |
| //vendors[0][vendorIndex] = vendor-prefixes + vendors[1][vendorIndex] = vendorwrittenInCamelCase | |
| //[[w3c, ff, webkit, Opera, IE],[...]] | |
| var vendors = [['', '', 'webkit', 'o', 'MS'],[false, false, true, false, true]]; | |
| var prefix = 'Animation'; | |
| var animationTypes = ['Start', 'Iteration', 'End']; | |
| var animationType = false; | |
| for(var i = animationTypes.length - 1; (i >= 0) && !animationType; i--) { | |
| animationType = (type.toLowerCase() === animationTypes[i].toLowerCase()) ? i : false; | |
| } |
| DOMTokenList.prototype.addMany = function(classes) { | |
| var classes = classes.split(' '); | |
| for (var i = classes.length - 1; i >= 0; i--) { | |
| this.add(classes[i]); | |
| }; | |
| }; | |
| DOMTokenList.prototype.removeMany = function(classes) { | |
| var classes = classes.split(' '); | |
| for (var i = classes.length - 1; i >= 0; i--) { |
| function addGlobalStyle(css) { | |
| var head, style; | |
| head = document.getElementsByTagName('head')[0]; | |
| if (!head) { return; } | |
| style = document.createElement('style'); | |
| style.type = 'text/css'; | |
| style.innerHTML = css; | |
| head.appendChild(style); | |
| } |
| @media (min-width: 701px) { | |
| .dashboard { | |
| position: fixed; | |
| } | |
| } | |
| @media (max-width: 900px) and (min-width: 701px) { | |
| .wrapper { | |
| width: 100%; | |
| padding: 54px 0px 0px 0px; |
| function Each(obj, fn) { | |
| if (obj.length) for (var i = 0, ol = obj.length, v = obj[0]; i < ol && fn(v, i) !== false; v = obj[++i]); | |
| else for (var p in obj) if (fn(obj[p], p) === false) break; | |
| }; |