I hereby claim:
- I am calvin-evans on github.
- I am calvinevans (https://keybase.io/calvinevans) on keybase.
- I have a public key ASB-5f1uyCtbzzrEq3btqFHB2HA4hJ8TzWD23g9VcKfr7Ao
To claim this, I am signing this object:
| local awful = require('awful') | |
| local beautiful = require('beautiful') | |
| local gears = require('gears') | |
| local wibox = require('wibox') | |
| local taglist_buttons = require('config.mouse.taglist-buttons') | |
| local bling = require("lib.bling") -- https://github.com/BlingCorp/bling | |
| local rubato = require("lib.rubato") -- https://github.com/andOrlando/rubato | |
| local transition_duration = 0.3 | |
| local dot_size = 10 |
| #!/bin/bash | |
| # Helper functions for color prompts | |
| # You can specify common colors by name (see case | |
| # statement below), 8-bit colors by decimal value, | |
| # and (where available) TrueColor 24-bit colors | |
| # as semicolon delimited decimals. | |
| # | |
| # With no arguments, resets the color to default. | |
| # |
I hereby claim:
To claim this, I am signing this object:
| import React, { Children } from 'react'; | |
| import { Transition } from 'react-transition-group'; | |
| import PropTypes from 'prop-types'; | |
| const visibilityStyles = { | |
| entering: { transform: 'translateX(0)', opacity: 1 }, | |
| entered: { transform: 'translateX(0)', opacity: 1 }, | |
| exiting: { transform: 'translateX(-5%)', opacity: 0 }, | |
| exited: { transform: 'translateX(-5%)', opacity: 0 }, | |
| }; |
| import dedent from 'dedent' | |
| import moment from 'moment' | |
| import { twiml } from 'twilio' | |
| const { VoiceResponse } = twiml | |
| const voiceOptions = getVoiceOptionsSomehow() | |
| /** | |
| * an example of voice options could be something like | |
| * { | |
| * voice: 'alice', |
| import React, { Component } from 'react' | |
| import { Route, withRouter, Redirect, BrowserRouter as Router } from 'react-router-dom' | |
| import Login from 'some/path/Login' | |
| // shitty 'homepage' component | |
| const HomePage = () => ( | |
| <div> | |
| Hello logged in person!! :) | |
| </div> | |
| ) |
| /* The only requirement is that your element isn't statically positioned */ | |
| .loading { | |
| position: relative; | |
| pointer-events: none; | |
| } | |
| .loading:before { | |
| content: " "; | |
| background-image: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" version="1.1" viewBox="0 0 100 100" preserveAspectRatio="xMidYMid" class="spinning-loader" height="20" width="20" style="display: block;"><rect x="0" y="0" width="100" height="100" fill="none" class="bk"></rect><defs><filter id="uil-ring-shadow" x="-100%" y="-100%" width="300%" height="300%"><feOffset result="offOut" in="SourceGraphic" dx="0" dy="0"></feOffset><feGaussianBlur result="blurOut" in="offOut" stdDeviation="0"></feGaussianBlur><feBlend in="SourceGraphic" in2="blurOut" mode="normal"></feBlend></filter></defs><path fill="#fff" d="M10,50c0,0,0,0.5,0.1,1.4c0,0.5,0.1,1,0.2,1.7c0,0.3,0.1,0.7,0.1,1.1c0.1,0.4,0.1,0.8,0.2,1.2c0.2,0.8,0.3,1.8,0.5,2.8 c0.3,1,0.6,2.1,0.9,3.2c0.3,1.1,0.9,2.3,1.4,3.5c0.5,1.2 |