Skip to content

Instantly share code, notes, and snippets.

View icantcodefyi's full-sized avatar

aniruddh icantcodefyi

View GitHub Profile
@icantcodefyi
icantcodefyi / index.html
Created June 14, 2025 10:44
whole website
<!doctype html>
<!-- ✨ Built with Framer • https://www.framer.com/ -->
<html lang="en">
<head>
<meta charset="utf-8">
<!-- Start of headStart -->
@icantcodefyi
icantcodefyi / index.js
Created May 8, 2025 05:10
simple script to add 5m to my account , which i can do 4 times back to back before server giving me an error.
async function addTimeToAccount(sessionKey, minutes, extension) {
const payload = {
sessionKey,
timeSpent: Number(minutes.toFixed(2)),
extension,
timestamp: new Date().toISOString(),
};
try {
console.log('Sending payload:', payload);
@icantcodefyi
icantcodefyi / index.js
Created May 7, 2025 18:21
add time to ur dedlocked.vercel.app
const sendTimeSpent = async () => {
const url = 'https://dedlocked.vercel.app/api/activities/sync';
const apiKey = '060878b2-afae-400b-a424-a4524752e775';
const payload = [
{
timestamp: new Date().toISOString(),
project: 'invoicely',
file: 'src/index.js',
languageId: 'typescript',
linesAdded: 0,