Difference between revisions of "JavaScript"

From Chessprogramming wiki
Jump to: navigation, search
(One intermediate revision by the same user not shown)
Line 7: Line 7:
 
* [[Stockfish#EvaluationGuide|Stockfish Evaluation Guide]] <ref>[https://hxim.github.io/Stockfish-Evaluation-Guide/ Stockfish Evaluation Guide]</ref>
 
* [[Stockfish#EvaluationGuide|Stockfish Evaluation Guide]] <ref>[https://hxim.github.io/Stockfish-Evaluation-Guide/ Stockfish Evaluation Guide]</ref>
 
* [[Zobrist Hashing#LackInt|Zobrist Hashing - Lack a True Integer Type]]
 
* [[Zobrist Hashing#LackInt|Zobrist Hashing - Lack a True Integer Type]]
 +
 +
=Publications=
 +
* [[Masatoshi Hidaka]], [https://dblp.org/pers/hd/k/Kikura:Yuichiro Yuichiro Kikura], [https://dblp.org/pers/hd/u/Ushiku:Yoshitaka Yoshitaka Ushiku], [https://dblp.org/pers/hd/h/Harada:Tatsuya Tatsuya Harada] ('''2017'''). ''WebDNN: Fastest DNN Execution Framework on Web Browser''. [https://dblp.org/db/conf/mm/mm2017.html ACM Multimedia 2017], [https://www.mi.t.u-tokyo.ac.jp/assets/publication/webdnn.pdf pdf] <ref>[https://github.com/mil-tokyo/webdnn GitHub - mil-tokyo/webdnn: The Fastest DNN Running Framework on Web Browser]</ref>
 +
* [[Masatoshi Hidaka]], [https://dblp.org/pers/hd/m/Miura:Ken Ken Miura], [https://dblp.org/pers/hd/h/Harada:Tatsuya Tatsuya Harada] ('''2017'''). ''Development of JavaScript-based deep learning platform and application to distributed training''. [https://arxiv.org/abs/1702.01846 arXiv:1702.01846], [https://dblp.org/db/conf/iclr/iclr2017w.html ICLR 2017] » [[Deep Learning]]
  
 
=Forum Posts=
 
=Forum Posts=
 
==2011 ...==
 
==2011 ...==
 
* [http://www.talkchess.com/forum/viewtopic.php?t=40876 Javascript port of Stockfish] by David Whitten, [[CCC]], October 24, 2011
 
* [http://www.talkchess.com/forum/viewtopic.php?t=40876 Javascript port of Stockfish] by David Whitten, [[CCC]], October 24, 2011
* [http://www.open-chess.org/viewtopic.php?f=5&t=2361 Engine In Javascript] by [[Richard Allbert|bluefever]], [[Computer Chess Forums|OpenChess Forum]], July 12, 2013
+
* [http://www.open-chess.org/viewtopic.php?f=5&t=2361 Engine In Javascript] by [[BlueFeverSoft|bluefever]], [[Computer Chess Forums|OpenChess Forum]], July 12, 2013
 
* [http://www.talkchess.com/forum/viewtopic.php?t=51763 JSUCI 1.0 - connect javascript chess engines to UCI] by [[Edmund Moshammer]], [[CCC]], March 28, 2014 » [[UCI]] <ref>[http://sourceforge.net/projects/jsuci/ Javascript Universal Chess Interface | Free software downloads at SourceForge.net] by [[Edmund Moshammer]] </ref>
 
* [http://www.talkchess.com/forum/viewtopic.php?t=51763 JSUCI 1.0 - connect javascript chess engines to UCI] by [[Edmund Moshammer]], [[CCC]], March 28, 2014 » [[UCI]] <ref>[http://sourceforge.net/projects/jsuci/ Javascript Universal Chess Interface | Free software downloads at SourceForge.net] by [[Edmund Moshammer]] </ref>
 
==2015 ...==
 
==2015 ...==
Line 25: Line 29:
 
* [https://en.wikipedia.org/wiki/JavaScript JavaScript from Wikipedia]
 
* [https://en.wikipedia.org/wiki/JavaScript JavaScript from Wikipedia]
 
* [https://en.wikipedia.org/wiki/Node.js Node.js from Wikipedia]
 
* [https://en.wikipedia.org/wiki/Node.js Node.js from Wikipedia]
* [http://www.youtube.com/playlist?list=PLZ1QII7yudbe4gz2gh9BCI6VDA-xafLog Programming A Javascript Chess Engine] - [https://en.wikipedia.org/wiki/YouTube YouTube] Videos by [[Richard Allbert|BlueFeverSoft]]
+
* [http://www.youtube.com/playlist?list=PLZ1QII7yudbe4gz2gh9BCI6VDA-xafLog Programming A Javascript Chess Engine] - [https://en.wikipedia.org/wiki/YouTube YouTube] Videos by [[BlueFeverSoft]]
 
* [https://hxim.github.io/Stockfish-Evaluation-Guide/ Stockfish Evaluation Guide] » [[Stockfish#EvaluationGuide|Stockfish Evaluation Guide]]  
 
* [https://hxim.github.io/Stockfish-Evaluation-Guide/ Stockfish Evaluation Guide] » [[Stockfish#EvaluationGuide|Stockfish Evaluation Guide]]  
 
==Repos==
 
==Repos==

Revision as of 10:42, 1 August 2020

Home * Programming * Languages * JavaScript

JavaScript is a dynamically typed programming language with a prototype-based object system. It is interesting because it runs in web browsers and has received more than its fair share of optimization effort. Modern JavaScript engines with JIT compilation can play chess well enough to be interesting.

See also

Publications

Forum Posts

2011 ...

2015 ...

External Links

Repos

Online GUI

References

Up one Level