249 Matching Annotations
- Dec 2020
-
github.com github.com
-
хорошая библиотека для парсинга и автоматизации тестирования "вёрстки с js"
Tags
Annotators
URL
-
-
hacks.mozilla.org hacks.mozilla.org
Tags
Annotators
URL
-
-
javascript.info javascript.info
Tags
Annotators
URL
-
-
github.com github.com
-
Original objects are never modified, but transparently wrapped by observable proxies.
-
-
-
www.iditect.com www.iditect.com
-
const store = observable({ players: [ "Player 1", "Player 2", ], // ... }) reaction(() => JSON.stringify(store), json => { localStorage.setItem('store',json); }, { delay: 500, }); let json = localStorage.getItem('store'); if(json) { Object.assign(store, JSON.parse(json)); }
-
- Nov 2020
- Oct 2020
-
medium.com medium.com
-
suite of over 30 separate packages of React visualization primitives that fall into several categories (Figure 2). It is un-opinionated on state management, animation, and styling so it can integrate with any React codebase, and its emphasis on modularity (similar to D3) lets you keep your bundle sizes down by only using the packages you need to create your reusable chart library or a custom one-off chart.
Short definition of visx
-
In our research (Figure 1), we found that existing React visualization libraries are often high-level abstractions and optimized for ease of use (i.e., fewer lines of code) at the expense of expressivity. None offer the expressivity of D3 primitives and many don’t allow for the optimization we want in production because computation, animations, state management, styles, and rendering are all encapsulated.
Comparison of data visualisation libraries:
-
because D3 and React both want to own DOM manipulation, we’ve found that it’s best to only use D3 for the math and React for the DOM because two mental models for updating the DOM opens the door for bugs to sneak in. However, using D3 solely for math means a significant amount of its (DOM-based) functionality is not available for use: selection.join, zoom, drag, brush, and transitions. Additionally, as mentioned above, D3 has its own learning curve and we would like developers to feel like they are writing native React code with standard APIs and familiar patterns.
You can use D3 inside a React app, but...
-
-
github.com github.com
Tags
Annotators
URL
-
- Sep 2020
-
www.smashingmagazine.com www.smashingmagazine.com
Tags
Annotators
URL
-
- Jul 2020
-
javascript.info javascript.info
-
One of the best ways is to use “promises,”
-
function that does something asynchronously should provide a callback argument where we put the function to run after it’s complete
Tags
Annotators
URL
-
-
github.com github.com
-
d3-flame-graph
Tags
Annotators
URL
-
- May 2020
-
hyperskill.org hyperskill.org
-
通常,Arrays用于两种数据结构:queue和stack。 要了解什么queue是食品,您可以想象在食品商店中有一个普通的队列:新人们在队列的末端加入队列,而刚开始的人们则先离开队列。这就是为什么我们需要两种方法来实现的原因queue:一种在的末尾添加元素,Array而另一种在的开始处删除元素的方法queue。这两种方法是push()将一个或多个元素添加到数组的末尾并返回新的数组长度,并shift()删除数组的第零个元素并返回其值:
-
The slice() method works only with arrays whose elements are strings, numbers, or boolean values.
只有字符串,数字,布尔值三种类型的数组可以用 slice 操作
-
Indexes can also be negative. If you specify a negative index in the first parameter, it will shift the end of the sequence. For example, slice(-4) call will extract the last four elements of the sequence:
index 可以是复数,arr.slice(-4)代表从倒数第四个值到最后
-
The slice() method does not change the source array, but returns a copy of the array
slice()方法是个纯函数
-
-
developers.google.com developers.google.com
-
medium.com medium.com
-
- Apr 2020
-
medium.com medium.com
-
hswolff.com hswolff.com
- Mar 2020
-
www.youtube.com www.youtube.com
-
There's a really cool layout rendering video at 17:00.
-
-
-
www.youtube.com www.youtube.com
-
-
www.youtube.com www.youtube.com
-
-
www.youtube.com www.youtube.com
-
-
www.quirksmode.org www.quirksmode.org
Tags
Annotators
URL
-
-
javascript.info javascript.info
Tags
Annotators
URL
-
-
twitter.com twitter.com
-
"48 61 76 65 20 79 6f 75 20 73 65 65 6e 20 74 68 65 20 73 6f 75 72 63 65 20 63 6f 64 65 20 6f 66 20 74 68 65 20 4a 65 74 42 72 61 69 6e 73 20 77 65 62 73 69 74 65 3f".split(' ').map(ch => String.fromCharCode((parseInt(ch, 16)))).join('')
js 16进制转字符
Tags
Annotators
URL
-
- Feb 2020
-
developer.mozilla.org developer.mozilla.org
-
leaverou.github.io leaverou.github.io
-
-
gist.github.com gist.github.com
-
www.oreilly.com www.oreilly.com
- Jan 2020
-
medium.com medium.com
-
sdk-design.js.org sdk-design.js.org
-
-
developer.mozilla.org developer.mozilla.org
Tags
Annotators
URL
-
-
dev.to dev.to
Tags
Annotators
URL
-
-
jimmywarting.github.io jimmywarting.github.io
Tags
Annotators
URL
-
- Dec 2019
-
developer.mozilla.org developer.mozilla.org
-
addyosmani.com addyosmani.com
Tags
Annotators
URL
-
-
jstherightway.org jstherightway.org
-
-
nodesource.com nodesource.com
Tags
Annotators
URL
-
-
deanhume.com deanhume.com
Tags
Annotators
URL
-
-
node.green node.green
-
-
v8.dev v8.dev
-
-
blog.logrocket.com blog.logrocket.com
Tags
Annotators
URL
-
-
master.neutrinojs.org master.neutrinojs.org
-
If you need polyfills in your code, consider including core-js in your package.json. This is will configure @babel/present-env to automatically include polyfills based on usage.
-
- Nov 2019
-
javascript.info javascript.info
-
-
devstore.io devstore.ioDevstore1
-
-
-
-
pomb.us pomb.us
-
-
Tags
Annotators
URL
-
-
Tags
Annotators
URL
-
-
www.sitepoint.com www.sitepoint.com
Tags
Annotators
URL
-
-
coasttocoastresearch.com coasttocoastresearch.com
-
- Oct 2019
-
medium.com medium.com
-
medium.com medium.com
- Aug 2019
-
github.com github.com
Tags
Annotators
URL
-
- Jul 2019
-
scotch.io scotch.io
-
Lexical scope is sometimes also referred to as Static Scope.
Lexical scope only depends on the code text and not on the runtime callstack
Tags
Annotators
URL
-
- Jun 2019
-
jscomplete.com jscomplete.com
Tags
Annotators
URL
-
-
jakearchibald.com jakearchibald.com
Tags
Annotators
URL
-
-
www.labnol.org www.labnol.org
-
document.body.contentEditable = true
-
-
www.excellentwebworld.com www.excellentwebworld.com
-
In this article, we are going to talk about the same kind of much-debated back-end programming technologies like Node.Js and PHP! We will know how do they differ from each other and why Node.js vs PHP is such a hot topic among developers.
-
- May 2019
- Apr 2019
-
matthewrayfield.com matthewrayfield.com
-
developer.mozilla.org developer.mozilla.org
Tags
Annotators
URL
-
-
google.github.io google.github.io
Tags
Annotators
URL
-
-
www.discoversdk.com www.discoversdk.com
Tags
Annotators
URL
-
-
github.com github.com
-
- Feb 2019
-
www.tradove.com www.tradove.com
-
Top Reasons Why to Use Node.js for your E-commerce Business
The arrival of E-commerce has changed how we shop today in our daily lives. Customers are seen buying on social media channels, Mobile apps, and websites. A set of heavy lighting goes behind an instinctive e-commerce website development that is described by the technical expertise that let into building it.
-
- Dec 2018
-
www.learnstorybook.com www.learnstorybook.com
-
- Nov 2018
-
davidwalsh.name davidwalsh.name
-
-
codeburst.io codeburst.io
-
codeburst.io codeburst.io
-
blog.logrocket.com blog.logrocket.com
Tags
Annotators
URL
-
-
scotch.io scotch.io
Tags
Annotators
URL
-
-
serviceworke.rs serviceworke.rs
-
-
developer.mozilla.org developer.mozilla.org
-
babeljs.io babeljs.io
Tags
Annotators
URL
-
-
github.com github.com
Tags
Annotators
URL
-
-
survivejs.com survivejs.com
Tags
Annotators
URL
-
-
github.com github.com
-
-
tc39.github.io tc39.github.io
-
-
medium.freecodecamp.org medium.freecodecamp.org
-
www.sitepen.com www.sitepen.com
-
www.html5canvastutorials.com www.html5canvastutorials.com
-
- Oct 2018
-
medium.com medium.com
-
www.oreilly.com www.oreilly.com
-
redux-actions.js.org redux-actions.js.org
-
-
dev.to dev.to
Tags
Annotators
URL
-
-
developer.mozilla.org developer.mozilla.org
Tags
Annotators
URL
-
-
-
-
www.oreilly.com www.oreilly.com
-
weblogs.asp.net weblogs.asp.net
-
redux.js.org redux.js.org
-
-
www.javascripttuts.com www.javascripttuts.com
-
github.com github.com
Tags
Annotators
URL
-
-
www.npmjs.com www.npmjs.com
Tags
Annotators
URL
-
-
developer.mozilla.org developer.mozilla.org
-
addons.mozilla.org addons.mozilla.org
-
addons.mozilla.org addons.mozilla.org
Tags
Annotators
URL
-
-
addons.mozilla.org addons.mozilla.org
-
github.com github.com