I hereby claim:
- I am kitten on github.
- I am philpl (https://keybase.io/philpl) on keybase.
- I have a public key whose fingerprint is F846 DACD 264C 2FC5 6588 813B B8BE F6B3 7786 2FDE
To claim this, I am signing this object:
'use strict'; | |
Object.defineProperty(exports, "__esModule", { | |
value: true | |
}); | |
var _createClass = function () { function defineProperties(target, props) { for (var i = 0; i < props.length; i++) { var descriptor = props[i]; descriptor.enumerable = descriptor.enumerable || false; descriptor.configurable = true; if ("value" in descriptor) descriptor.writable = true; Object.defineProperty(target, descriptor.key, descriptor); } } return function (Constructor, protoProps, staticProps) { if (protoProps) defineProperties(Constructor.prototype, protoProps); if (staticProps) defineProperties(Constructor, staticProps); return Constructor; }; }(); | |
var _react = require('react'); |
I hereby claim:
To claim this, I am signing this object:
Thank you for submitting your contributions to this project.
By signing this CLA, you agree that the following terms apply to all of your past, present and future contributions to the project.
You hereby represent that all present, past and future contributions are governed by the
Thank you for submitting your contributions to this project.
By signing this CLA, you agree that the following terms apply to all of your past, present and future contributions to the project.
You hereby represent that all present, past and future contributions are governed by the
Our reasoning behind that is that, at the time, we are writing logic based on our data structures in UI components. Thus no component can act as a smart or dumb component, since every component when needed interprets the data in its own way.
class Tmux < Formula | |
desc "Terminal multiplexer" | |
homepage "https://tmux.github.io/" | |
stable do | |
url "https://github.com/tmux/tmux/releases/download/2.1/tmux-2.1.tar.gz" | |
sha256 "31564e7bf4bcef2defb3cb34b9e596bd43a3937cad9e5438701a81a5a9af6176" | |
patch do | |
# This fixes the Tmux 2.1 update that broke the ability to use select-pane [-LDUR] |
<?xml version="1.0" encoding="UTF-8"?> | |
<!DOCTYPE plist PUBLIC "-//Apple//DTD PLIST 1.0//EN" "http://www.apple.com/DTDs/PropertyList-1.0.dtd"> | |
<plist version="1.0"> | |
<dict> | |
<key>Ansi 0 Color</key> | |
<dict> | |
<key>Alpha Component</key> | |
<real>1</real> | |
<key>Blue Component</key> | |
<real>0.0</real> |
#!/bin/sh | |
# Setup PiTV | |
# | |
# Copyright (C) 2014 Phil Plückthun <[email protected]> | |
# | |
# This work is licensed under the MIT License | |
if [ `id -u` -ne 0 ] | |
then | |
echo "Please start this script with root privileges!" |
Host * | |
Ciphers [email protected],[email protected],[email protected],aes256-ctr | |
MACs [email protected],[email protected],[email protected],[email protected],hmac-sha2-512,hmac-sha2-256,hmac-ripemd160,[email protected] | |
Compression yes | |
CompressionLevel 6 | |
UseRoaming no | |
# Only allow RSA and ED25519 keys | |
HostKeyAlgorithms [email protected],[email protected],ssh-ed25519,ssh-rsa | |
KexAlgorithms [email protected],diffie-hellman-group-exchange-sha256 |
var copy = (function() { | |
var input = document.createElement('input'); | |
input.style.opacity = '0'; | |
input.style.position = 'fixed'; | |
input.style.top = '-1000%'; | |
document.body.appendChild(input); | |
return function copy(text) { | |
input.value = text; | |
input.select(); |