I hereby claim:
- I am ebello on github.
- I am ern (https://keybase.io/ern) on keybase.
- I have a public key whose fingerprint is 4BD6 4F60 24EE CBA5 C81B 30DA 26A0 E6CF C65A 7DF5
To claim this, I am signing this object:
| /** | |
| * Add this script to the end of your document that use <input autofocus type="text" /> | |
| * or <input type="text" placeholder="username" /> and it'll plug support for browser | |
| * without these attributes | |
| * Minified version at the bottom | |
| */ | |
| (function () { | |
| function each(list, fn) { | |
| var l = list.length; |
| //dynamically generated by ASP.NET for the language passed in. | |
| var labels = { | |
| objectOverlay: { | |
| closeX: 'Close X', | |
| fallback: 'Video for {vid}' | |
| }, | |
| global: { | |
| label1: 'label1', | |
| label2: 'label2' | |
| } |
| #!/usr/bin/env ruby | |
| $KCODE = 'U' | |
| def encode (text) | |
| text.gsub(/[^\x00-\x7F]|["'<>&]/) do |ch| | |
| sprintf("&#%d;", ch.unpack("U")[0]) | |
| end | |
| end | |
| STDIN.read.scan(/(?x) |
| @for $i from 0 through 6 { | |
| %row#{$i} { | |
| top: $block-size * $i; | |
| } | |
| } | |
| @each $year in 1997, 1994, 1993, 1991 { | |
| #y#{$year} a { | |
| @extend %row3; | |
| } |
I hereby claim:
To claim this, I am signing this object:
| /** @jsx jsx */ | |
| import { jsx } from 'theme-ui'; | |
| import React, { useState } from 'react'; | |
| import PropTypes from 'prop-types'; | |
| const ToggleVisibility = ({ trigger, children, initiallyVisible }) => { | |
| const [isVisible, setIsVisible] = useState(initiallyVisible); | |
| return ( | |
| <React.Fragment> | |
| <span |