This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| "Event-Driven Architecture" :=> https://medium.freecodecamp.org/understanding-node-js-event-driven-architecture-223292fcbc2d | |
| "Child Processes" :=> https://medium.freecodecamp.org/node-js-child-processes-everything-you-need-to-know-e69498fe970a | |
| "Streams" :=> https://medium.freecodecamp.org/node-js-streams-everything-you-need-to-know-c9141306be93 | |
| "Node auth" :=> https://scotch.io/tutorials/easy-node-authentication-google | |
| "mongoose connection and schema" :=> https://github.com/mongolab/mongodb-driver-examples/blob/master/nodejs/mongooseSimpleExample.js#L13 |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| 1) JS Basic concepts : "https://www.youtube.com/playlist?list=PLz1XPAFf8IxbIU78QL158l_KlN9CvH5fg" by Codecademy | |
| Desciption : Nice tutorial about js important javascript concepts linke hoisting, scope chain, lexical scope and many more important | |
| stuff. | |
| https://medium.com/canal-tech/how-video-streaming-works-on-the-web-an-introduction-7919739f7e1 |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| https://github.com/krimple/angular-socketio-chat/blob/master/app.js |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| "atom packages" : https://scotch.io/bar-talk/best-of-atom-features-plugins-acting-like-sublime-text |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| https://github.com/rafaelquintanilha/experiments/tree/master/sortable-target | |
| http://marceljuenemann.github.io/angular-drag-and-drop-lists/demo/#/nested | |
| https://www.if-not-true-then-false.com/2010/install-mysql-on-fedora-centos-red-hat-rhel/ | |
| https://serversforhackers.com/c/battling-selinux-cast | |
| https://linuxize.com/post/how-to-use-linux-screen/ | |
| https://plusbryan.com/mysql-replication-without-downtime | |
| how to mount centos: https://www.digitalocean.com/community/tutorials/how-to-set-up-an-nfs-mount-on-centos-6 |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| Rich text editor: https://www.npmjs.com/package/@syncfusion/ej2-angular-richtexteditor |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| <!DOCTYPE html> | |
| <html> | |
| <head> | |
| <script src="https://ajax.googleapis.com/ajax/libs/angularjs/1.6.9/angular.min.js"></script> | |
| <link rel="stylesheet" href="https://maxcdn.bootstrapcdn.com/bootstrap/3.4.0/css/bootstrap.min.css"> | |
| <script src="https://ajax.googleapis.com/ajax/libs/jquery/3.4.1/jquery.min.js"></script> | |
| <script src="https://maxcdn.bootstrapcdn.com/bootstrap/3.4.0/js/bootstrap.min.js"></script> | |
| <body> | |
| <script> |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| select id, | |
| name, | |
| parent_id | |
| from (select * from user_categories | |
| order by parent_id, id) products_sorted, | |
| (select @pv := '104') initialisation | |
| where find_in_set(parent_id, @pv) | |
| and length(@pv := concat(@pv, ',', id)) |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| Cron monitor tool: https://github.com/zricethezav/gronit |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| function Node() { | |
| this.keys = new Map(); | |
| this.end = null; | |
| this.setEnd = function() { | |
| this.end = true; | |
| } | |
| this.isEnd = function() { | |
| return this.end; | |
| } | |
| } |
OlderNewer