I hereby claim:
- I am vsaarinen on github.
- I am vsaarinen (https://keybase.io/vsaarinen) on keybase.
- I have a public key ASC_Bnhv3V4kCXmN0GsgzJl_CkNjgMQnXlQjfqV5ky3ruwo
To claim this, I am signing this object:
| interface ZendeskWidget { | |
| ( | |
| type: 'webWidget:on' | 'webWidget' | 'webWidget:get', | |
| command: string, | |
| payload?: any, | |
| ): void; | |
| ( | |
| type: 'webWidget', | |
| command: 'updateSettings', | |
| payload: ZendeskSettings, |
| import * as React from 'react'; | |
| type NumberStringOrArray = number | string | number[] | string[]; | |
| interface BoxProps { | |
| width?: NumberStringOrArray; | |
| m?: NumberStringOrArray; | |
| mt?: NumberStringOrArray; | |
| mr?: NumberStringOrArray; | |
| mb?: NumberStringOrArray; |
| import { scaleLinear } from 'd3-scale'; | |
| import * as React from 'react'; | |
| interface Props { | |
| data: number[]; | |
| width: number; | |
| height: number; | |
| } | |
| export default function BarChart({ width, height, data }: Props) { |
| import { select } from 'd3-selection'; | |
| import * as React from 'react'; | |
| interface Props { | |
| data: number[]; | |
| width: number; | |
| height: number; | |
| } | |
| export default class BarChart extends React.Component<Props> { |
I hereby claim:
To claim this, I am signing this object:
| import * as React from 'react'; | |
| declare class SomeReactComponent extends React.Component<SomeReactComponentProps, any> {} | |
| interface SomeReactComponentProps { | |
| className?: string; | |
| toggle?: boolean; | |
| name: string; | |
| size?: 'lg' | '2x' | '3x' | '4x' | '5x'; | |
| } |
| #!/usr/bin/ruby | |
| require 'rubygems' | |
| require 'flowdock' | |
| ORGANIZATION_DOMAIN = 'FLOWDOCK_DOMAIN' | |
| client = Flowdock::Client.new(api_token: 'PERSONAL_API_TOKEN') | |
| last_login_days_ago = 90 # select users whose last login time is at a minimum this many days ago | |
| users = client.get("/organizations/#{ORGANIZATION_DOMAIN}/audits/users") |
| #!/usr/bin/ruby | |
| require 'rubygems' | |
| require 'flowdock' | |
| require 'highline/import' | |
| ORGANIZATION_DOMAIN = 'FLOWDOCK_DOMAIN' | |
| client = Flowdock::Client.new(api_token: 'PERSONAL_API_TOKEN') | |
| last_login_days_ago = 90 # select users whose last login time is at a minimum this many days ago |
I hereby claim:
To claim this, I am signing this object: