I hereby claim:
- I am cometkim on github.
- I am cometkim (https://keybase.io/cometkim) on keybase.
- I have a public key whose fingerprint is 2B85 48C5 818C B14B 2F77 A69A 3EE3 B2AA 5C23 ABBF
To claim this, I am signing this object:
set encoding=utf-8 | |
set fileencoding=utf-8 | |
set nocompatible " be iMproved, required | |
" Numbers | |
set number relativenumber | |
set numberwidth=4 | |
augroup numbertoggle | |
autocmd! |
import * as React from 'react' | |
import styled from 'styled-components' | |
import Link from 'gatsby-link' | |
import theme from 'utils/theme' | |
interface HeaderProps { | |
title: string | |
fixed?: boolean | |
} |
import * as React from 'react' | |
interface UtterancProps { | |
repo: string | |
branch: string | |
issueTerm: string | |
} | |
export default class Utteranc extends React.PureComponent<UtterancProps> { | |
instance: HTMLDivElement = null; |
module.exports = { | |
presets: [ | |
["@babel/env", { | |
targets: { | |
node: "current" | |
}, | |
useBuiltIns: "usage", | |
}], | |
], | |
plugins: [ |
{ | |
"scripts": { | |
"postinstall": "node patch-flatmap-stream.js" | |
} | |
} |
I hereby claim:
To claim this, I am signing this object:
package main | |
import ( | |
"fmt" | |
"github.com/jinzhu/gorm" | |
"github.com/labstack/echo" | |
_ "github.com/mattn/go-sqlite3" | |
"github.com/qor/admin" | |
"github.com/qor/auth" |
const format = require('date-fns/format') | |
const startOfWeek = require('date-fns/start_of_week') | |
const today = new Date() | |
// 시작일이 포함되는 주의 수요일(3)의 포함 달을 기준으로 주차를 계산 | |
const baseDate = startOfWeek(today, { weekStartsOn: 3 }) | |
const baseMonth = baseDate.getMonth() + 1 | |
const baseDays = baseDate.getDate() + 1 |
tap "homebrew/bundle" | |
tap "homebrew/cask" | |
tap "homebrew/cask-versions" | |
tap "homebrew/core" | |
tap "instantclienttap/instantclient" | |
tap "jesseduffield/lazygit" | |
tap "lqez/npk" | |
cask "java" | |
cask "java8" | |
brew "ansible" |
directive @db(name: String!) on FIELD_DEFINITION | OBJECT | |
directive @relationTable on OBJECT | |
directive @id on FIELD_DEFINITION | |
directive @unique on FIELD_DEFINITION | |
directive @createdAt on FIELD_DEFINITION | |
directive @updatedAt on FIELD_DEFINITION | |
directive @default(value: Any) on FIELD_DEFINITION | |
directive @relation(link: RelationLink! = TABLE, name: String) on FIELD_DEFINITION | |
enum RelationLink { |