Skip to content

Instantly share code, notes, and snippets.

View prakashn27's full-sized avatar
✌️
be good, do good

Prakash Natarajan prakashn27

✌️
be good, do good
View GitHub Profile
@prakashn27
prakashn27 / SketchSystems.spec
Created June 19, 2023 16:57
Biz AI Dashboard
Biz AI Dashboard
My ChatBots
click bot -> Bot Home
Bot Home
click ChatBot -> ChatBot Demo Screen
click Setting -> Bot Settings Screen
click Manage Sources -> Manage Sources Screen
click Delete ChatBot -> Delete Chatbot Screen
ChatBot Demo Screen
click Back -> Bot Home
@prakashn27
prakashn27 / SketchSystems.spec
Created June 19, 2023 16:56
Biz AI Dashboard
Biz AI Dashboard
My ChatBots
click bot -> Bot Home
Bot Home
click ChatBot -> ChatBot Demo Screen
click Setting -> Bot Settings Screen
click Manage Sources -> Manage Sources Screen
click Delete ChatBot -> Delete Chatbot Screen
ChatBot Demo Screen
Bot Settings Screen
@prakashn27
prakashn27 / SketchSystems.spec
Created June 19, 2023 16:56
Biz AI Dashboard
Biz AI Dashboard
My ChatBots
click bot -> Bot Home
Bot Home
click ChatBot -> ChatBot Demo Screen
click Setting -> Bot Settings Screen
click Manage Sources -> Manage Sources Screen
click Delete ChatBot -> Delete Chatbot Screen
ChatBot Demo Screen
Bot Settings Screen
@prakashn27
prakashn27 / Preference.sublime-setting
Created September 24, 2017 19:30
My sublime setting
{
"adaptive_dividers": true,
"always_prompt_for_file_reload": false,
"always_show_minimap_viewport": false,
"animation_enabled": true,
"atomic_save": false,
"auto_close_tags": true,
"auto_complete": true,
"auto_complete_commit_on_tab": true,
"auto_complete_cycle": false,
{"level":"info","message":"triggered zazu hotkey","timestamp":"2017-02-13T16:14:48.546Z"}
{"level":"verbose","message":"sending showWindow event from toggle event","timestamp":"2017-02-13T16:14:48.557Z"}
{"level":"info","message":"showing window from manual trigger","timestamp":"2017-02-13T16:14:48.558Z"}
{"level":"info","message":"scoping block","timestamp":"2017-02-13T16:14:48.732Z"}
{"plugin":"tinytacoteam/zazu-calculator","level":"info","message":"activate plugin","timestamp":"2017-02-13T16:14:48.738Z"}
{"plugin":"tinytacoteam/zazu-file-finder","level":"info","message":"activate plugin","timestamp":"2017-02-13T16:14:49.010Z"}
{"plugin":"tinytacoteam/zazu-fallback","level":"info","message":"activate plugin","timestamp":"2017-02-13T16:14:49.066Z"}
{"plugin":"tinytacoteam/zazu-template","level":"info","message":"activate plugin","timestamp":"2017-02-13T16:14:49.116Z"}
{"plugin":"tinytacoteam/zazu-system","level":"info","message":"activate plugin","timestamp":"2017-02-13T16:14:49.159Z"}
{"plugin":"tinytacotea
# Graph implementation in python
# adjacency list representation
class Graph:
def __init__(self, no_of_nodes):
self.n = no_of_nodes
self.al = []
for i in range(no_of_nodes):
self.al.append(list())
class Node:
def __init__(self, v=None):
self.val = v
self.left = None
self.right = None
class BST:
def __init__(self):
self.top = Node();
@prakashn27
prakashn27 / bing_hack.js
Last active October 19, 2016 20:35
Ssript to get the bing reward points
// PREREQ:
// STEP 1:
// Node
// install 'open' node package
// npm install -g open
// change this daily to some random name
var txt = 'asfasdfsdf';
// STEP 2:
// get the cvid for your account This is a one time thing
#include <iostream>
#include <stack>
#include <algorithm>
using namespace std;
int main() {
int n, x, c;
std::stack<int> main_stack;
std::stack<int> side;
cin >> n;