Skip to content

Instantly share code, notes, and snippets.

View deptno's full-sized avatar
:octocat:
midnight coding

Bonggyun Lee deptno

:octocat:
midnight coding
View GitHub Profile
@swcho
swcho / Makefile
Created September 10, 2019 02:44
Makefile For Docker Build
NAME=your-image
PORT=8888
CONTEXT=.
include common.mk
@swcho
swcho / devlog.md
Created November 14, 2019 02:07
[19-11-2주] 지극히 주관적인 devlog
@swcho
swcho / devlog-20-01-w5.md
Last active January 30, 2020 03:59
[19-01-5주] 지극히 주관적인 devlog
@swcho
swcho / devlog.md
Created April 23, 2020 04:54
[20-04-4주] 지극히 주관적인 devlog

medium에 읽기 회수 제한이 걸렸을 경우, 시크릿모드에서 문서를 열어보시면 됩니다.

개발일반

github issue 커멘트를 임베딩 할 수 있는 툴

여러명이 같이 알고리즘 문제를 푸는 서비스

@swcho
swcho / devlog.md
Last active June 12, 2020 11:32
[20-06-2주] 지극히 주관적인 devlog

재택근무 탓일까요? 바쁘다는 핑계로 매월 한건씩 올려보자는 다짐이 무너졌네요.. ^^;

이번 소식과는 무관하지만, Post 코로나 시대가 올것인가... 다시말하면 코로나 이후로 인류 생활 양식의 변화가 일어날 것인가... 가 조금 화두가 되는 시기인거 같네요. 저도 관련 답을 찾아보고 스스로 고민도 해 보지만 아직 잘 모르겠네요... 다들 어떻게 생각하시고 준비하고 계시나요?

개발일반

@developit
developit / unistore.js
Last active September 8, 2020 15:13
Update: the newer & better version of this is published: https://github.com/developit/unistore
import { h, Component } from 'preact';
/** Creates a new store, which is a tiny evented state container.
* @example
* let store = createStore();
* store.subscribe( state => console.log(state) );
* store.setState({ a: 'b' }); // logs { a: 'b' }
* store.setState({ c: 'd' }); // logs { c: 'd' }
*/
@swcho
swcho / devlog.md
Created September 24, 2020 04:45
[20-09-4주] 지극히 주관적인 devlog
@swcho
swcho / devlog.md
Created December 12, 2019 02:02
[19-12-2주] 지극히 주관적인 devlog
@swcho
swcho / devlog.md
Last active October 28, 2020 12:51
[20-10-4주] 지극히 주관적인 devlog
@steve-ng
steve-ng / nginx.conf
Last active January 18, 2021 07:55
Nginx reverse proxy wss with ssl
server {
listen 443 ssl;
server_name xxx.xx.io
ssl on;
ssl_certificate /etc/asterisk/certs/xxx.io.pem;
ssl_certificate_key /etc/asterisk/certs/xxx.io.key;
ssl_session_timeout 5m;