Skip to content

Instantly share code, notes, and snippets.

View qvil's full-sized avatar

Taesu Hyeon qvil

View GitHub Profile
@qvil
qvil / gist:5459b7dca926258cd536f8da86581136
Created July 20, 2017 08:14 — forked from rxaviers/gist:7360908
Complete list of github markdown emoji markup

People

:bowtie: :bowtie: 😄 :smile: 😆 :laughing:
😊 :blush: 😃 :smiley: ☺️ :relaxed:
😏 :smirk: 😍 :heart_eyes: 😘 :kissing_heart:
😚 :kissing_closed_eyes: 😳 :flushed: 😌 :relieved:
😆 :satisfied: 😁 :grin: 😉 :wink:
😜 :stuck_out_tongue_winking_eye: 😝 :stuck_out_tongue_closed_eyes: 😀 :grinning:
😗 :kissing: 😙 :kissing_smiling_eyes: 😛 :stuck_out_tongue:
@qvil
qvil / teacher-appointment-exam-2010.c
Created June 28, 2017 09:42
Teacher appointment exam
#include <stdio.h>
void print_r(int a[], int n);
int main(void)
{
int a[] = {10, 20, 30, 40, 50};
print_r(a, 5);
return 0;
}
@qvil
qvil / teacher-appointment-exam-2011.c
Created June 28, 2017 09:38
Teacher appointment exam
#include <stdio.h>
int main(void)
{
int score[10] = {1, 2, 3, 4, 5};
int i, op = 2, sum = 0;
switch (op)
{
case 1:
for (i = 0; i < 10; i++)
@qvil
qvil / index.js
Created June 26, 2017 07:35
For react-tutorial
import React from 'react';
import ReactDOM from 'react-dom';
import App from './App';
import registerServiceWorker from './registerServiceWorker';
ReactDOM.render(<App />, document.getElementById('root'));
registerServiceWorker();
@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>
@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 / 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 / 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 / lol-jungle-cheat-sheet.md
Last active May 2, 2017 08:14
lol-jungle-cheat-sheet

롤 정글 치트시트

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