I hereby claim:
- I am rzyns on github.
- I am rzyns (https://keybase.io/rzyns) on keybase.
- I have a public key ASByscSary_ES0cOH4X7OESDSpRRQ9u1J4FdPfOIT32tswo
To claim this, I am signing this object:
; This is a complete solution to map the CapsLock key to Control and Escape without losing the ability to toggle CapsLock | |
; We use two tools here - any remapping software to map CapsLock to LControl and AutoHotkey to execute the following script | |
; This has been tested with MapKeyboard (by Inchwest) | |
; This will allow you to | |
; * Use CapsLock as Escape if it's the only key that is pressed and released within 300ms (this can be changed below) | |
; * Use CapsLock as LControl when used in conjunction with some other key or if it's held longer than 300ms | |
; * Toggle CapsLock by pressing LControl/CapsLock + RControl | |
~*LControl:: |
package main | |
import ( | |
"fmt" | |
"os" | |
) | |
type quitNormal string | |
func quit(msg string) quitNormal { |
package main | |
import ( | |
"fmt" | |
"os" | |
"time" | |
"github.com/eiannone/keyboard" | |
"github.com/gdamore/tcell" | |
"github.com/neovim/go-client/nvim" |
mdfind 'kMDItemFSCreationDate < $time.iso(2008-03-15T23:59:59) |
<?php | |
class constant { | |
function __get($name) { | |
return defined($name) ? constant($name) : new EmptyValue($name); | |
} | |
function __set($name, $value) { | |
return !defined($name) and define($name, $value); | |
} | |
} |
I hereby claim:
To claim this, I am signing this object:
Homebrew build logs for homebrew/php/php70 on OS X 10.11.3 | |
Build date: 2016-03-13 21:17:00 |
<link rel="import" href="../core-icon-button/core-icon-button.html"> | |
<link rel="import" href="../core-toolbar/core-toolbar.html"> | |
<link rel="import" href="../core-header-panel/core-header-panel.html"> | |
<link rel="import" href="../core-drawer-panel/core-drawer-panel.html"> | |
<polymer-element name="my-element"> | |
<template> | |
<style> | |
:host { |
<?php | |
$response = new DOMDocument(); | |
$response->loadXML(<<<XML | |
<?xml version="1.0" encoding="UTF-8"?> | |
<WebStoreDetailInformationResponse> | |
<WebStore storeID="11"> | |
<ItemData> | |
<Item itemCode="TEST10008" active="True" incomplete="False" isBundle="False" isTaxable="True" isAutoShip="True"> | |
<ProductName>Couple\'s Birthstone Ring</ProductName> |
$('a[href*=evesaddiction]').wrap('<div style="display: inline-block; background-color: red; border: 5px solid red;"></div>'); |