Skip to content

Instantly share code, notes, and snippets.

View qvil's full-sized avatar

Taesu Hyeon qvil

View GitHub Profile
@qvil
qvil / docker_cheat.md
Created March 23, 2017 02:57 — forked from nacyot/docker_cheat.md
도커(Docker) 치트 시트

Docker 치트 시트

한국어 번역(초벌) : nacyot

왜 Docker를 사용해야하는가?

Why Should I Care (For Developers)

"나에게 Docker의 매력은 간단히 격리된 환경을 만들 수 있다는 것과, 그러한 환경을 재사용할 수 있다는 점이다."런타임 환경을 한 번 만들어 패키지로 만들면, 이 패키지를 다른 어떤 머신에서도 다시 사용할 수 있다. 또한 여기서 실행되는 모든 것은 마치 가상머신과 같이 호스트로부터 격리되어있다. 무엇보다도 이런 모든 일들이 빠르고 간단히 가능하다.

@qvil
qvil / Rakefile
Last active October 15, 2018 23:22
Rakefile for auto create jekyll post
require "rubygems"
require 'rake'
require 'yaml'
require 'time'
SOURCE = "."
CONFIG = {
'version' => "0.3.0",
'themes' => File.join(SOURCE, "_includes", "themes"),
'layouts' => File.join(SOURCE, "_layouts"),
@qvil
qvil / lol-supporter-cheat-sheet.md
Last active April 23, 2017 05:14
lol-supporter-cheat-sheet

롤 서포터 치트시트(팁 & 피드백)

이 글은 롤 패치와 메타에 따라 유동적이고 정답은 아니기 때문에 함께 분석하거나 날카로운 지적 및 다른 의견도 환영합니다.

  • LOL Patch : 7.7
  • Updated Date : 2017-04-19

@qvil
qvil / lol-jungle-cheat-sheet.md
Last active May 2, 2017 08:14
lol-jungle-cheat-sheet

롤 정글 치트시트

이 글은 롤 패치와 메타에 따라 유동적이고 정답은 아니기 때문에 함께 분석하거나 날카로운 지적 및 다른 의견도 환영합니다.


@qvil
qvil / math.js
Created May 18, 2017 05:54
Javascript file about mathmatics(Not Using ES6 for compatability with less than IE8. But want to using ES6 whenever..(If i resolve compatability problem using polyfill))
var math = {
/**
* Return divided values
* @date 2017.05.18
* @author tshyeon
* @param {number} dividend
* @param {number} divisor
* @return {number} result
* @example math.divider(150, 10) // {quotient: 15, remainder: 0, value: 15.0}
*/

리눅스 스크립트 치트시트

@qvil
qvil / Header.js
Created June 26, 2017 07:15
For react-tutorial
import React from 'react';
const Header = ({ text }) => {
return (
<div>
<h1>Header Props Text : {text}</h1>
</div>
);
};
@qvil
qvil / Body.js
Created June 26, 2017 07:16
For react-tutorial
import React, { Component } from 'react';
class Body extends Component {
constructor(props) {
super(props);
this.state = {
number: 1
};
}
render() {
@qvil
qvil / App.js
Created June 26, 2017 07:16
For react-tutorial
import React from 'react';
import Header from './Header';
import Body from './Body';
const App = () => {
return (
<div>
<Header text="Hello World"/>
<Body number={3}/>
</div>