Skip to content

Instantly share code, notes, and snippets.

View niranjandasMM's full-sized avatar
🎯
Focusing

Niranjjj niranjandasMM

🎯
Focusing
  • Coimbatore, India
View GitHub Profile
@niranjandasMM
niranjandasMM / privacy-policy-KELE-BROWSER-TOOL.md
Created June 16, 2026 09:13
Privacy Policy for KELE Browser Tool - Exntension

Privacy Policy for Kele Browse Tools

Last updated: June 16, 2026

Kele Browse Tools ("we", "our", or "the extension") values your privacy. This Privacy Policy describes how your data is handled.

1. Local Processing and Storage

Kele Browse Tools is designed as a local-first browser extension:

  • All page text extraction, paragraph chunking, and vector embedding calculations are performed locally on your machine.
  • Local vector embeddings are cached strictly inside your browser's private chrome.storage.local database.
@niranjandasMM
niranjandasMM / Fibonacci_sequence_in_3_lines.py
Created January 14, 2023 06:29
Python3 | Using a Data structure
# We all know the Series starts with 0 and 1
temp = [0,1] # you can change to [1,1], [20,21] anything , first 2 values should be there
# then we are just adding the 1st ith and 2nd ith but plus 1
[ temp.append( temp[i]+ temp[i+1] ) for i in range(10) ]
print(temp)
#----------------------output-----------------------#
# [0, 1, 1, 2, 3, 5, 8, 13, 21, 34, 55, 89]
@niranjandasMM
niranjandasMM / knn-algo.py
Last active August 14, 2022 10:31
KNN-Machine learning Algortihm from scratch using Iris dataset and visualizing it
# Import the required libraries
import numpy as np
import matplotlib.pyplot as plt
from sklearn import datasets
import pandas as pd
from collections import defaultdict
from math import sqrt
from collections import Counter
from sklearn.model_selection import train_test_split