Skip to content

Instantly share code, notes, and snippets.

View AnishLushte07's full-sized avatar

Anish Lushte AnishLushte07

  • LeadSchool
  • Mumbai
View GitHub Profile
@AnishLushte07
AnishLushte07 / nodeArticleLinks.txt
Last active October 27, 2017 05:55
Useful Node Js articles.
@AnishLushte07
AnishLushte07 / Links for javascript tutorials.
Last active October 18, 2019 13:22
Link about javascript learning stuffs.
https://github.com/krimple/angular-socketio-chat/blob/master/app.js
@AnishLushte07
AnishLushte07 / links.txt
Created October 27, 2017 11:49
Userful links
@AnishLushte07
AnishLushte07 / links.txt
Last active September 13, 2019 11:17
Drag and drop eg
@AnishLushte07
AnishLushte07 / resource.txt
Created June 23, 2019 17:19
Angular 7 resource
Rich text editor: https://www.npmjs.com/package/@syncfusion/ej2-angular-richtexteditor
@AnishLushte07
AnishLushte07 / index.html
Last active July 19, 2019 12:45
Candidate UI
<!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>
@AnishLushte07
AnishLushte07 / parent.sql
Created July 31, 2019 09:52
Tree selection sql
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))
@AnishLushte07
AnishLushte07 / package
Created October 3, 2019 05:39
Useful packages
Cron monitor tool: https://github.com/zricethezav/gronit
@AnishLushte07
AnishLushte07 / trie.js
Created April 27, 2020 14:41
Implementation of Trie data structure in javascript
function Node() {
this.keys = new Map();
this.end = null;
this.setEnd = function() {
this.end = true;
}
this.isEnd = function() {
return this.end;
}
}