Skip to content

Instantly share code, notes, and snippets.

View chorim's full-sized avatar
😪

Insu Byeon chorim

😪
View GitHub Profile
@chorim
chorim / Keybase.md
Last active September 2, 2019 17:53
Keybase proof

Keybase proof

I hereby claim:

  • I am yukiyuki0 on github.
  • I am yukiyuki (https://keybase.io/yukiyuki) on keybase.
  • I have a public key ASBeTb8SZEWKsgcCFe88IyDFzy0QbvAmhRiKhtww5fKnKQo

To claim this, I am signing this object:

@chorim
chorim / main.c
Last active June 5, 2019 11:29
학교과제c
//
// main.c
// cstudy
//
// Created by Yukihira Nanako on 2019. 6. 5..
// Copyright © 2019년 유키유키. All rights reserved.
//
#include <stdio.h>
@chorim
chorim / main.c
Created May 28, 2019 17:33
요청)과제-2-2
//
// main.c
// test
//
// Created by 유키유키 on 2019. 5. 29..
// Copyright © 2019년 유키유키. All rights reserved.
//
//
// Sorry my dirty code :(
@chorim
chorim / finedust.js
Created January 14, 2019 02:04
get dust data on nodejs
const request = require('request')
const serviceKey = ''
const version = '1.3'
const station = ''
const url = `http://openapi.airkorea.or.kr/openapi/services/rest/ArpltnInforInqireSvc/getMsrstnAcctoRltmMesureDnsty?stationName=${station}&dataTerm=month&pageNo=1&numOfRows=10&ServiceKey=${serviceKey}&ver=${version}&_returnType=json`
const fetch = (url) => {
return new Promise((resolve, reject) => {
request(url, (error, response, body) => {
@chorim
chorim / File.js
Last active August 18, 2019 18:41
Adonis multiple file upload
/**
* Moves file from tmp directory to the user
* defined location.
*
* @method move
*
* @param {String} location
* @param {Object} options
*
* @return {Promise}
'use strict'
const utils = require('./utils')
const webpack = require('webpack')
const config = require('../config')
const merge = require('webpack-merge')
const path = require('path')
const baseWebpackConfig = require('./webpack.base.conf')
const CopyWebpackPlugin = require('copy-webpack-plugin')
const HtmlWebpackPlugin = require('html-webpack-plugin')
const FriendlyErrorsPlugin = require('friendly-errors-webpack-plugin')