Difference between revisions of "Javascript Resources"
From Simson Garfinkel
Jump to navigationJump to search
m |
m (→Tables) |
||
Line 15: | Line 15: | ||
==Tables== | ==Tables== | ||
===Overview documents=== | |||
* https://www.sitepoint.com/12-amazing-jquery-tables/ | |||
===Choices=== | |||
* [https://datatables.net Datatables] | * [https://datatables.net Datatables] | ||
** Easy to implement client-side tables. I haven't figured out server side yet. | ** Easy to implement client-side tables. I haven't figured out server side yet. | ||
* [http://tabulator.info Tabulator] | * [http://tabulator.info Tabulator] | ||
==Random Numbers== | ==Random Numbers== | ||
Especially Laplace distributions... | Especially Laplace distributions... |
Revision as of 06:33, 13 September 2019
Development Resources
Online resources:
Books
Blog Posts
Cool Stuff
- https://timeline.knightlab.com/ - Open source JavaScript timelines
Tables
Overview documents
Choices
- Datatables
- Easy to implement client-side tables. I haven't figured out server side yet.
- Tabulator
Random Numbers
Especially Laplace distributions...
- http://jsfiddle.net/KkDVr/2/ - Noise generation, showing on a canvas
- http://jsfiddle.net/Xotic750/DXXhs/ — Gaussian distribution
Probability distributions for JavaScript:
- http://statisticsblog.com/probability-distributions/#laplace
- https://www.npmjs.com/package/probability-distributions
- https://github.com/Mattasher/probability-distributions
Comments on how random numbers work in web browsers:
- https://bocoup.com/blog/random-numbers
- http://simjs.com/random.html
- http://mathjs.org/docs/reference/functions/random.html
- https://www.filosophy.org/post/35/normaldistributed_random_values_in_javascript_using_the_ziggurat_algorithm/
Graphing: