A list of the most common functionalities in Jekyll (Liquid). You can use Jekyll with GitHub Pages, just make sure you are using the proper version.
Running a local server for testing purposes:
alias gl="git log --graph --pretty=format:'%Cred%h%Creset -%C(yellow)%d%Creset %s %Cgreen(%cr) %C(bold blue)<%an>%Creset' --abbrev-commit" |
A list of the most common functionalities in Jekyll (Liquid). You can use Jekyll with GitHub Pages, just make sure you are using the proper version.
Running a local server for testing purposes:
// Declare | |
const enum CommandType { | |
FOO = 1, | |
BAR = 2 | |
}; | |
// Usage | |
const commandType = CommandType.FOO | |
// Transpiled (inlining) |
κ²°λ‘ λΆν° λ§νμλ©΄, μ ν μλ€.
DB μ€ν€λ§λ‘λΆν° GraphQL Type μ μλμΌλ‘ λ§λ€μ΄ λΌ μλ μλ€. μ΄λ GraphQL Type μ μμ±νλ λ Έλ ₯μ μ€μ΄κ³ , νλμ μ€ν€λ§λ‘λΆν° λμΌν κ°λ μ μμ±νκ² λ€λλ° λͺ©μ μ΄ μλ€.
κ·Έλ°λ° μ μκ°ν΄λ³΄μ. μ΄κ² μ³μ κ²μΈκ°?
μλ²μμ DB μ€ν€λ§λ₯Ό λ³νν λ΄μ©μΌλ‘, Query
λ₯Ό μ μν΄ API μλν¬μΈνΈλ₯Ό μ΄μ΄λμλ€κ³ μκ°ν΄λ³΄μ.
# Show all node_modules folder information in current working directory | |
alias show-all-node-modules="find . -name 'node_modules' -type d -prune -print | xargs du -chs" | |
# Remove all node_modules folder in current working directory | |
alias remove-all-node-modules="show-all-node-modules && find . -name 'node_modules' -type d -prune -print -exec rm -rf '{}' \;" |