User Tools

Site Tools


Writing /var/www/html/john.de-graaff.net/webroot/wiki/data/cache/1/124a849fb1a60a1647b9e6c4a54d1c8f.metadata failed
links:lvnl
Writing /var/www/html/john.de-graaff.net/webroot/wiki/data/cache/b/bf111e76e59a388c9525e3ec822a9d12.xhtml failed

Differences

This shows you the differences between two versions of the page.

Link to this comparison view

Both sides previous revision Previous revision
Next revision
Previous revision
links:lvnl [2017/05/25 14:55]
jdg [Node.js]
links:lvnl [2019/03/06 07:33] (current)
Line 16: Line 16:
   * http://​ebook.konfigurasi.net/​Cisco/​   * http://​ebook.konfigurasi.net/​Cisco/​
  
-===== WOODS =====+===== JavaScript ​=====
  
-  * WOODS = Wiki-style Object-Oriented Documentation System \\ -- (c)2017 John de Graaff @ De Graaff Innovations VOF+  * [[:​links:​javascript]]
  
-==== Javascript ​====+===== Technology =====
  
-  * https://​en.wikipedia.org/​wiki/​JavaScript +==== Time-Sync ====
-  * https://​developer.mozilla.org/​en-US/​docs/​Web/​JavaScript +
-  * https://​developer.mozilla.org/​en-US/​docs/​Web/​JavaScript/​About_JavaScript +
-  * https://​developer.mozilla.org/​en-US/​docs/​Web/​JavaScript/​Reference +
-  * https://​developer.mozilla.org/​en-US/​docs/​Web/​JavaScript/​Language_Resources +
-  * https://​developer.mozilla.org/​en-US/​docs/​Web/​JavaScript/​Guide +
-  * http://​media.wiley.com/​product_ancillary/​12/​04705269/​DOWNLOAD/​9780470526910_Appendix_A.pdf+
  
-=== JS related ​===+=== Methods ​===
  
-  * https://​en.wikipedia.org/​wiki/​NativeScript +  * Time of Day (ToD) 
-  * https://​www.nativescript.org/​ +  * Frequency 
-  * https://​en.wikipedia.org/​wiki/​AngularJS+  * Phase
  
-=== Jquery === 
  
-  * http://​jquery.com +=== Protocols ​===
-  * https://​github.com/​jquery/​jquery +
-  * http://​api.jqueryui.com/​ +
- +
-==== Node.js ==== +
- +
-  * https://​en.wikipedia.org/​wiki/​Node.js +
-  * https://​www.npmjs.com/​ +
-  * https://​nodejs.org/​en/​ +
- +
-**About Node.js** +
- +
-As an __asynchronous event driven JavaScript runtime__, Node is designed to build scalable network applications. In the following "hello world" example, many connections can be handled concurrently. Upon each connection the callback is fired, but if there is no work to be done Node is sleeping. +
- +
-This is in contrast to today'​s more common concurrency model where OS threads are employed. Thread-based networking is relatively inefficient and very difficult to use. Furthermore,​ users of Node are free from worries of dead-locking the process, since there are no locks. Almost no function in Node directly performs I/O, so the process never blocks. Because nothing blocks, scalable systems are very reasonable to develop in Node. +
- +
-If some of this language is unfamiliar, there is a full article on Blocking vs Non-Blocking. +
- +
-<​code>​ +
-const http = require('​http'​);​ +
- +
-const hostname = '​127.0.0.1';​ +
-const port = 3000; +
- +
-const server = http.createServer((req,​ res) => { +
-  res.statusCode = 200; +
-  res.setHeader('​Content-Type',​ '​text/​plain'​);​ +
-  res.end('​Hello World\n'​);​ +
-}); +
- +
-server.listen(port,​ hostname, () => { +
-  console.log(`Server running at http://​${hostname}:​${port}/​`);​ +
-}); +
-</​code>​ +
- +
- +
-===== Technology ===== +
- +
-==== Time-Sync ====+
  
   * NTP    * NTP
   * IEEE 1588 PTP    * IEEE 1588 PTP 
 +  * SyncE
  
 ==== MPLS ==== ==== MPLS ====
Line 141: Line 97:
   * 4-Wire -> https://​en.wikipedia.org/​wiki/​Four-wire_circuit   * 4-Wire -> https://​en.wikipedia.org/​wiki/​Four-wire_circuit
   * 2-Wire -> https://​en.wikipedia.org/​wiki/​Two-wire_circuit   * 2-Wire -> https://​en.wikipedia.org/​wiki/​Two-wire_circuit
-  * RS232 -> https://​en.wikipedia.org/​wiki/​RS-232 +  * RS232 -> https://​en.wikipedia.org/​wiki/​RS-232 ​(point-to-point,​ unbalanced) 
-  * RS422 -> https://​en.wikipedia.org/​wiki/​RS-422+  * RS422 -> https://​en.wikipedia.org/​wiki/​RS-422 ​(point-to-point,​ balanced=long-distance) 
 +  * RS485 -> https://​en.wikipedia.org/​wiki/​RS-485 (multi-point,​ balanced)
   * E1 -> https://​en.wikipedia.org/​wiki/​E-carrier   * E1 -> https://​en.wikipedia.org/​wiki/​E-carrier
  
/var/www/html/john.de-graaff.net/webroot/wiki/data/attic/links/lvnl.1495716937.txt.gz · Last modified: 2019/03/06 07:33 (external edit)