Skip to content

Instantly share code, notes, and snippets.

View iamaamir's full-sized avatar
🏠
Working from home

Aamir khan iamaamir

🏠
Working from home
  • Postman
  • New Delhi
  • 16:47 (UTC +05:30)
  • LinkedIn in/itsaamir
View GitHub Profile
@iamaamir
iamaamir / whatsapp_blur.js
Created September 6, 2022 14:40
Blur whatsapp chats one sidebar and header
// ==UserScript==
// @name Whatsapp Blur chat
// @namespace http://tampermonkey.net/
// @version 0.1
// @description Blur the chats sidebar on whatsapp
// @author Aamir khan
// @match https://web.whatsapp.com/
// @icon https://www.google.com/s2/favicons?domain=whatsapp.com
// @grant none
// ==/UserScript==
@iamaamir
iamaamir / Copy.jsx
Last active November 18, 2022 08:52
export default function Copy() {
const [value, copytoClipboard] = useCopyToClipboard();
const copy = txt => () => copytoClipboard(txt);
return (
<>
<h1>Click to copy:</h1>
<div>
<button onClick={copy('A')}>A</button>
<button onClick={copy('B')}>B</button>
@iamaamir
iamaamir / Autinder.js
Last active August 11, 2023 05:34
Auto Swipe for Tinder using tampermonkey
// ==UserScript==
// @name Autinder
// @version 0.4
// @description Auto Swipe for Tinder
// @author Aamir khan
// @namespace https://github.com/iamaamir
// @match https://tinder.com/*
// @grant none
// ==/UserScript==