Skip to content

Instantly share code, notes, and snippets.

View code-machina's full-sized avatar
😌
Humble

GB Kim code-machina

😌
Humble
View GitHub Profile
@code-machina
code-machina / specification.py
Created November 26, 2019 12:39 — forked from palankai/specification.py
Python Specification Pattern
class Specification:
def __and__(self, other):
return And(self, other)
def __or__(self, other):
return Or(self, other)
def __xor__(self, other):
return Xor(self, other)
@code-machina
code-machina / gist:b8de73c556f3554ad3779bf047221f19
Created November 25, 2019 00:20 — forked from yupmin/gist:4fb5d3eb0aeb4fd353cbc993a60be7b4
Install Laravel Valet with Phpstorm For Mac OSX

Laravel Valet 은 PHP or Laravel 개발하는데에 거의 필수 툴이 되어가는 듯 합니다. Laravel Valet 제대로 설치하시고 정신건강을 보존하시길 바랍니다.

좀 보강할 내용은 댓글로 남겨주세요.

"Web development that doesn't hurt"

On Mac OSX

0. 참고 링크

@code-machina
code-machina / .vimrc
Created November 13, 2019 22:02 — forked from simonista/.vimrc
A basic .vimrc file that will serve as a good template on which to build.
" Don't try to be vi compatible
set nocompatible
" Helps force plugins to load correctly when it is turned back on below
filetype off
" TODO: Load plugins here (pathogen or vundle)
" Turn on syntax highlighting
syntax on