Skip to content

Instantly share code, notes, and snippets.

View rummik's full-sized avatar
💤
Sleeping to escape reality

*Kim Zick rummik

💤
Sleeping to escape reality
View GitHub Profile
<!doctype html>
<html>
<head>
<meta charset="utf-8">
<title>JS Bin</title>
<style id="jsbin-css">
html {
background: #fff;
}
.download-pdf {
@rummik
rummik / google-play-music-dehighlight.user.js
Last active December 7, 2016 08:49
Fix those annoying flashing tabs when the song changes.
// ==UserScript==
// @name Google Play Music Dehighlight
// @namespace http://www.rummik.com/
// @version 1.0
// @description Disable tab highlights in Google Play Music on Chrome due to title change
// @author rummik
// @match https://play.google.com/music/listen*
// ==/UserScript==
Object.defineProperty(document, 'title', {
@rummik
rummik / gist:18c14d08c473a83997f8
Created January 8, 2015 08:39
Automatically reconnect to a server and attach a Tmux session
autossh -t <host> tmux at
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<title>JS Bin</title>
</head>
<body>
<div class="nick">rummik</div>
<div class="nick">IotaSamurai</div>
<div class="nick">foo</div>
@rummik
rummik / .tmux.conf
Last active August 29, 2015 14:17
Old vs new dotfiles
# enable mouse support
set-option -g mouse-utf8 on
set-option -g mouse-resize-pane on
set-option -g mouse-select-pane on
set-option -g mouse-select-window on
# more logical window splits
unbind-key '%'
unbind-key '"'
bind-key '|' split-window -h -c "#{pane_current_path}"
@rummik
rummik / emoji.php
Created April 18, 2015 16:12
Emoji XKCD 1512
<?php
$☹ = 'XKCD';
print "Hello $☹";
@rummik
rummik / real-time-is-universal.reg
Created June 13, 2015 22:06
Inform Windows that _real time_ really *is* _universal time_ (Or: How to make Windows use the system clock properly with UTC)
Windows Registry Editor Version 5.00
[HKEY_LOCAL_MACHINE\SYSTEM\CurrentControlSet\Control\TimeZoneInformation]
"RealTimeIsUniversal"=dword:00000001
@rummik
rummik / allow-password-paste.user.js
Created June 27, 2015 03:56
Fix stupid `onpaste="false"` password fields. >.>
// ==UserScript==
// @name Allow password paste
// @namespace http://www.rummik.com/
// @version 0.1
// @description Removes paste event from elements with `onpaste` set
// @author rummik
// @match http://*/*
// @match https://*/*
// @grant none
// ==/UserScript==
@rummik
rummik / readme.md
Last active January 9, 2024 16:33
Comfort Keyboard Docs

About

This is unofficial documentation for the Comfort Keyboard Systems Comfort Keyboard.

Official (and far far worse) documentation can be obtained from the Comfort Keyboard driver download page at http://comfortkeyboard.com/drivers_downloads.html. Unsurprisingly, there are no drivers on the driver download page. Additionally, the links to download documentation for all of their keyboards just point to the same files...

If this actually winds up helping anyone, I'll be very surprised, but you're welcome if that's the case.

Also, yes, Comfort Keyboard is still (at the time of writing) apparently in business. The site could've fooled me too, but I've spoken with their tech support on a couple occasions.

@rummik
rummik / btsync-upgrade-dismiss.user.js
Created March 22, 2016 16:15
BTSync upgrade dismisser - Automatically dismisses BTSync's update notification in 1.4.111
// ==UserScript==
// @name BTSync upgrade dismisser
// @namespace http://www.rummik.com/
// @version 1.0
// @description Automatically dismisses BTSync's update notification in 1.4.111
// @author rummik
// @match http://localhost:9999/gui/
// @grant WTFPL / CC0 / Public Domain
// ==/UserScript==
/* jshint -W097 */