

A framework is a JavaScript tool that makes it easier for developers to create
rich,interactive websites. Frameworks contain functionality that enable us to
make a fully functional web application: manipulating complicated data and
displaying it on the page, handling routing client-side instead of having to rely
on a server,and sometimes even allowing us to create a full website that needs to
hit the server only once for the initial download. Vue.js is the latest popular
JavaScript framework and is rapidly increasing in popularity. Evan You, then
working at Google, wrote and released the first version of Vue.js in early 2014.
At the time of writing, it has over 75,000 stars on GitHub, making it the eighth
most starred repository on GitHub, and that number is growing rapidly. Vue has
hundreds of collaborators and is downloaded from npm about 40,000 times
every day. It contains features that are useful when developing websites and
applications: a powerful templating syntax to write to the DOM and listen to
events,reactivity so that you don’t need to update the template after your data
changes, and functionality that makes it easier for you to manipulate your data.
摘要: 系统的补一下相关知识,这本写的是真垃圾
Continue reading摘要:重新学下css,学完了能很快做出东西,而且是看的见东西
Continue reading
golang用起来很舒服,但前期的学习也很让人突兀,因为它的写法和api使用习惯跟java不太一样
Continue reading摘要: 这是一篇mit6.824 raft所结构实验指南
Continue reading摘要
raft比paxos更容易理解,在构建大型系统的时候方便实现
Raft Structure Advice
A Raft instance has to deal with the arrival of external events (Start() calls, AppendEntries and RequestVote RPCs, and RPC replies),and it has to execute periodic tasks (elections and heart-beats). There are many ways to structure(vt.组织) your Raft code to manage these activities; this document outlines(v.概括) a few ideas.
Continue reading