This file contains hidden or 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
input, select, textarea { | |
&:focus { | |
outline: 0; | |
.box-shadow(0px, 0px, 3pt, 2pt, lightblue); | |
} | |
} |
This file contains hidden or 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
/* | |
colors | |
*/ | |
background-image: | |
-webkit-linear-gradient(90deg, red 100%, transparent), | |
-webkit-linear-gradient(90deg, green 100%, transparent), | |
-webkit-linear-gradient(90deg, yellow 100%, transparent), | |
-webkit-linear-gradient(90deg, purple 100%, transparent), | |
-webkit-linear-gradient(90deg, blue 100%, transparent); |
This file contains hidden or 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 inwx.de price-sorter | |
// @namespace inwx.de-price-sorter-SD12 | |
// @version 0.1 | |
// @description appends buttons to the domain list to sort the list after prices | |
// @match http://www.inwx.de/de/domain/* | |
// @copyright 2012+, Stefan Dietz <dev@stefan-dietz.eu> | |
// ==/UserScript== | |
var appendControls = function() { |
This file contains hidden or 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
# Add tab completion for SSH hostnames based on ~/.ssh/config, ignoring wildcards | |
[ -e "$HOME/.ssh/config" ] && complete -o "default" -o "nospace" -W "$(grep "^Host" ~/.ssh/config | grep -v "[?*]" | cut -d " " -f2)" scp sftp ssh |
This file contains hidden or 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
<div> | |
<table> | |
<tr> | |
<td>xyz:<td> | |
<td> | |
431121251AB/431121251K/431121251L/431121251R/431121251T/443121253A/443121253B/443121251P/443121251J/443121251D/443121251D/443121251N/443121251EP/ | |
<td> | |
</tr> | |
</table> |
This file contains hidden or 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
var $in = $('.twitter-anywhere-tweet-box-editor'); | |
var $btn = $('.tweet-button'); | |
var inter = setInterval(function() { | |
$in.focus(); | |
$in.val(new Date().getTime()+Math.floor(Math.random()*22)+' @MYTWITTERACCOUNT .... mentionTEST'); | |
$btn.removeClass('disabled'); | |
$btn.click(); | |
}, 1000); |
This file contains hidden or 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($){ | |
$.fn.extend({ | |
extensionName: function(options) { | |
//Settings list and the default values | |
var defaults = { | |
}; | |
var options = $.extend(defaults, options); |
This file contains hidden or 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
# ---------------------------------------------------------------------- | |
# Better website experience for IE users | |
# ---------------------------------------------------------------------- | |
# Force the latest IE version, in various cases when it may fall back to IE7 mode | |
# github.com/rails/rails/commit/123eb25#commitcomment-118920 | |
# Use ChromeFrame if it's installed for a better experience for the poor IE folk | |
<IfModule mod_headers.c> | |
Header set X-UA-Compatible "IE=Edge,chrome=1" |
This file contains hidden or 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
<div></div> |
This file contains hidden or 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
Show hidden characters
[ | |
{ "keys": ["cmd+v"], "command": "paste_and_indent" }, | |
{ "keys": ["cmd+tab"], "command": "next_view" }, | |
{ "keys": ["cmd+shift+tab"], "command": "prev_view" }, | |
{ "keys": ["super+#"], "command": "toggle_comment", "args": { "block": false } } | |
] |