Skip to content

Instantly share code, notes, and snippets.

View qvil's full-sized avatar

Taesu Hyeon qvil

View GitHub Profile
@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 / 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 / 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 / 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 / license-badges.md
Created August 2, 2017 07:14 — forked from lukas-h/license-badges.md
License Badges for your Project

Markdown License badges

Collection of License badges for your Project's README file.
This list includes the most common open source and open data licenses.
Easily copy and paste the code under the badges into your Markdown files.

Notes

  • Badges are made with Shields.io.
  • This badges do not fully replace the license informations for your projects, they are only emblems for the README, that the user can see the License at first glance.  
  • 🇫🇷 Cette liste en français
@qvil
qvil / teacher-appointment-exam-2017.c
Last active November 5, 2017 11:35
teacher-appointment-exam-2017.c
#include <stdio.h>
#define SIZE 5
void func(int *, int);
int main(void)
{
int ary[SIZE] = {1, 7, 3, 9, 5};
func(ary, SIZE);
@qvil
qvil / teacher-appointment-exam-2017.c
Created November 5, 2017 12:04
teacher-appointment-exam-2017.c
#include <stdio.h>
void func(int *w, int *x, int *y, int *z);
void main()
{
int data[3] = {3, 70, 700};
int a, sum, *pa, *pb, *pc;
a = 6;
pa = &a;
pb = &data[0];
pc = data + 1;
@qvil
qvil / README.md
Last active August 15, 2021 05:58
README.md Example for github
@qvil
qvil / 2017.c
Created August 26, 2018 11:01
Teacher appointment exam 2017
#include <stdio.h>
#define SIZE 5
void func(int *, int);
int main(void)
{
int ary[SIZE] = {1, 7, 3, 9, 5};
func(ary, SIZE);

Core Changes

  • Fix something: #1234

Documentation Changes

  • Fix “A” typo in doc: #5678

Example Changes