As configured in my dotfiles.
start new:
tmux
start new with session name:
As configured in my dotfiles.
start new:
tmux
start new with session name:
find . -name "*.ht*" | while read i; do pandoc -f html -t markdown "$i" -o "${i%.*}.md"; done |
A list of Sketch plugins hosted at GitHub, in no particular order.
# Terminal Cheat Sheet | |
pwd # print working directory | |
ls # list files in directory | |
cd # change directory | |
~ # home directory | |
.. # up one directory | |
- # previous working directory | |
help # get help | |
-h # get help |
import VueRouter from 'vue-router' | |
Vue.use(VueRouter) | |
const routes = [ { path: '/', component: Home }, | |
{ path: '/post/:slug', name: 'post', component: Single }, | |
{ path: '/preview/:id', name: 'preview', component: Single }, | |
{ path: '/page/:slug', name: 'page', component: Page }, | |
{ path: '/category/:cat_id', name:'category', component: Archive }, | |
{ path: '/tag/:tag_id', name : 'tag', component: Archive }, | |
{ path: '/blog/', name : 'blog', component: Archive }, | |
{ path: '/search/', name : 'search', component: Search }, |