Skip to content

Instantly share code, notes, and snippets.

@kgcrom
kgcrom / HTTP_response.json
Last active July 30, 2016 14:30
Play + Slick 이렇게 하는거 맞나요?
{
"total": 2824,
"page": 0,
"offset": 0,
"size": 50,
"data": [
{
"id": 1234,
"ownerId": 4567,
"name": "Kang",
@kgcrom
kgcrom / .ctags
Last active December 21, 2015 06:48
vim으로 Go 개발하기
#mac은 아래 두개 주석 해제
#--langdef=Go
#--langmap=Go:.go
--regex-Go=/func([ \t]+\([^)]+\))?[ \t]+([a-zA-Z0-9_]+)/\2/d,func/
--regex-Go=/var[ \t]+([a-zA-Z_][a-zA-Z0-9_]+)/\1/d,var/
--regex-Go=/type[ \t]+([a-zA-Z_][a-zA-Z0-9_]+)/\1/d,type/