Skip to content

Instantly share code, notes, and snippets.

View rhiokim's full-sized avatar
:octocat:
I'm focusing on somewhere.

Rhio Kim rhiokim

:octocat:
I'm focusing on somewhere.
View GitHub Profile
@rhiokim
rhiokim / presentation.md
Created March 23, 2016 15:09
Presentation sample

Presentation Title

Yours Truly, Famous Inc.

cover


Header

Typewriter etsy messenger bag fingerstache, aesthetic vinyl semiotics twee DIY forage chillwave. Thundercats ennui messenger bag, squid carles chillwave shoreditch pickled cliche letterpress. DIY beard locavore occupy salvia, whatever single-origin ==coffee== fanny pack 3 wolf moon typewriter gastropub1 kale H20 chips. Ennui keffiyeh thundercats jean shorts biodiesel. Terry richardson, swag blog locavore umami vegan helvetica. Fingerstache kale chips.

@rhiokim
rhiokim / resume.md
Last active March 25, 2016 18:00
Resume basic sample

{{fullname}}

Senior Developer & Code Enthusiast

{{blog}} {{email}} {{mobile}}


Technical

@rhiokim
rhiokim / release-note.md
Created March 27, 2016 08:11
Haroopad release note

Haroopad {{version}}

Issue Number Description
New Features
{{ticket}} {{ticket-name}}
Bugs
{{ticket}} {{ticket-name}}
Enhancements
@rhiokim
rhiokim / .eslintrc
Created July 30, 2016 04:52 — forked from cletusw/.eslintrc
ESLint Reset - A starter .eslintrc file that resets all rules to off and includes a description of what each rule does. From here, enable the rules that you care about by changing the 0 to a 1 or 2. 1 means warning (will not affect exit code) and 2 means error (will affect exit code).
{
// http://eslint.org/docs/rules/
"ecmaFeatures": {
"binaryLiterals": false, // enable binary literals
"blockBindings": false, // enable let and const (aka block bindings)
"defaultParams": false, // enable default function parameters
"forOf": false, // enable for-of loops
"generators": false, // enable generators
"objectLiteralComputedProperties": false, // enable computed object literal property names
@rhiokim
rhiokim / 2017-05-16.md
Last active May 16, 2017 03:08
Update TODO list - latest updated at May 16th, 12:08:51
  • call mom
  • visit bank
@rhiokim
rhiokim / quote.js
Created August 1, 2017 08:10 — forked from aaronshaf/quote.js
annotating a stateless function component in flowtype
/* @flow */
import React from 'react'
type QuoteProps = {
message: string,
quote: string,
name: string,
photoUrl: string,
photoAlt: string
@rhiokim
rhiokim / BasicComponent.js
Last active November 27, 2017 04:00
Flowtype fundamentals with React.js
// @flow
import React from 'react'
type Props = {
foo: number,
bar: string,
disabled: boolean,
children?: React.Element<any>
}
@rhiokim
rhiokim / StatelessComponent.js
Last active November 27, 2017 04:29
Flowtype fundamentals with React.js Raw
// @flow
import React from 'react'
type PropsA = {
children?: React.Node
}
const A = (props: PropsA) => (
<div>
{props.children}
@rhiokim
rhiokim / minus.js
Last active December 11, 2017 05:31
babel-plugin-gist
export default (a, b) => a - b