This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
pub trait Point{ | |
type Identifier: PartialEq; | |
fn id(&self) -> Self::Identifier; | |
} | |
#[derive(Debug)] | |
pub struct Connection<T: Point> { | |
pub to: T | |
} |
- Vue style guide
- Vue school
- Tailwind, a friendly style framework
- Getting started
- Creating custom checkbox
- Top 10 articles (2017/10)
- Ream: Universal framework for vue
- An Introduction to VuePress. Want a quick, SEO-friendly static documentation website with Vue.js support? Look no further than VuePress.
- [Understanding vue-router](https://blog.webf.zone/vue-router
- Avoid * imports
- Multiedit next occurrence
Alt + J
on win and linux orCtrl + G
on mac - Multicursor:
ctrl + ctrl hold
while move cursor with keys up or down. - The feature that allows you to back after click and follow a reference in the code is called
navigate back
and the opposite isnavigate forward
. - Prettier on save: https://medium.com/@netczuk/even-faster-code-formatting-using-eslint-22b80d061461
const myVars = {
myVarA: 'aaaaa',
myVarB: 'bbbbb'
};
const { myVarA: a, myVarB: b } = myVars;
using mocha/chai/sinon for node.js unit-tests? check out my utility: mocha-stirrer to easily reuse test components and mock require dependencies