Skip to content

Instantly share code, notes, and snippets.

View yunseop-kim's full-sized avatar
😄

yunseop kim yunseop-kim

😄
View GitHub Profile
<!doctype html>
<html>
<head>
<meta charset="utf-8">
<title>CodeSpitz71-1</title>
</head>
<body>
<section id="data"></section>
<script>
const Info = class{
@yunseop-kim
yunseop-kim / index.html
Last active February 17, 2019 15:40
codespitz-s80-01
<!doctype html>
<html>
<head>
<meta charset="utf-8">
<title>Summer's Tower</title>
</head>
<body>
<style>
@yunseop-kim
yunseop-kim / json
Created February 9, 2020 12:53
events.json
[
{
"id": "8594176318",
"type": "IssueCommentEvent",
"actor": {
"id": 6443532,
"login": "bogdanvlviv"
}
},
{
@yunseop-kim
yunseop-kim / index.html
Created February 27, 2020 02:14
detect user's language
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<title>Document</title>
<script
src="https://cdn.jsdelivr.net/npm/lodash@4.17.15/lodash.min.js"
integrity="sha256-VeNaFBVDhoX3H+gJ37DpT/nTuZTdjYro9yBruHjVmoQ="
crossorigin="anonymous"
import React, { useState, useEffect } from 'react';
import styled from 'styled-components';
import Page from 'components/Page';
import useSearch from 'hooks/useSearch';
import LanguageMenu from 'components/LanguageMenu';
import { Table, Checkbox, Button } from 'antd';
import {
useBlogsLazyQuery,
OrderType,
OrderByDirectionType,
@yunseop-kim
yunseop-kim / index.ts
Created November 11, 2020 21:51
오브젝트 2과 연습
class MovieTheaters {
private _name: string;
private _theaters: Set<Theater> = new Set();
private _screenings: Set<Screening> = new Set();
constructor(name: string) {
this._name = name;
}
public createTheater(theater: Theater) {