Skip to content

Instantly share code, notes, and snippets.

View nambiarn's full-sized avatar
👽

Nikhil Nambiar nambiarn

👽
View GitHub Profile
@nambiarn
nambiarn / click-checker-privacy-policy.md
Last active May 4, 2026 01:12
Click Checker — Privacy Policy

Click Checker — Privacy Policy

Effective date: May 3, 2026 Developer: Nikhil Nambiar **Contact: nikhil.nambiar44@gmail.com

Single Purpose

Click Checker intercepts anchor link clicks on supported webmail pages and performs a local heuristic analysis of the destination URL before navigation occurs. Its sole function is to help users identify potentially malicious or suspicious links in email.

@nambiarn
nambiarn / overloading-overriding.java
Created January 18, 2023 02:39
Overriding, Overloading example
public class Animal { // Overriding
public void eat() {
System.out.Println("I eat");
}
}
public class Dog extends Animal {
public void eat() {
System.out.Println("I eat and then want to cuddle");
}
@nambiarn
nambiarn / non-blocking-and-blocking.js
Created January 15, 2023 01:22
Asynchronous Javascript
// Non Blocking asynchronous request
function getCofeeData() {
return fetch('https://coffee.alexflipnote.dev/random.json')
.then(response => response.json())
.then(data => data)
}
// Blocking request