"use client"; import React, { useEffect } from "react"; const Page = () => { const showHNComments = (hnStoryId: string) => { const rootElement = document.querySelector( `[hn-story-id="${hnStoryId}"]`, ); const options = { maxDepth: 5, }; (window as any).displayHNComments(hnStoryId, rootElement, options); }; useEffect(() => { const script = document.createElement("script"); script.src = "https://cdn.jsdelivr.net/gh/prakhar897/hn-comments-drawer@latest/src/script.js"; script.async = true; document.body.appendChild(script); }, []); return ( <>

Pinned

TEQGame {" "}
26 Nov 2025

That Escaleted Quickly - A party game where players answer funny prompts and then vote on the best response.


saibarsaiko {" "}
26 Dec 2023

A site to build small tools. [and test LLM Vulnerabilities.]


HN Comments Drawer {" "}
21 Nov 2023

Integrate Hacker News comments and display them beautifully within your websites.


JsonFixer {" "}
20 Apr 2024

Fixes Broken JSONs.


Tools

Other

Li-Quoridor {" "}
10 Dec 2023

A freeBoard for the Game "Quoridor".


coldmessageai.softwaredesign.ing {" "}
08 Sep 2023

ColdMessageAI is a Completely Free and Open Source Cold Message writer which harnesses the power of GPT to write hyper-personalized messages. Personalized messages are more likely to get replies than cookie cutter ones. But hand-writing them is tiring, so we've automated this process.
Also created a completely free ColdMessage AI Chrome extension which does the whole process on linkedIn for free.


Extension Link {" "}
{" "} Extension YouTube Demo{" "} {" "}
WorkAround GPT [3000+ DAU] {" "}
10 Jul 2023

{" "} Disclaimer: I've sold this extension to a private investor and no longer control it.

{" "}
A tool that enables users to workaround restrictions imposed on ChatGPT.

Censorship by ChatGPT can sometimes lead to limited or censored results, but WorkaroundGPT provides a solution by offering the latest jailbreaks that bypass these restrictions.

It's time consuming to scour forums for latest workaround yourself and there's a good possibility that the prompt you find might already be patched. Hence, users can use this extension where I'll do all the legwork for you.
{" "}


{" "} YouTube Demo{" "} {" "}
{" "} Source Code{" "} {" "}
Diffudle {" "}
17 Jan 2023

A game involving Stable Diffusion and Wordle.


headlinehero.glitch.me {" "}
02 Aug 2020

App for bloggers to generate headlines based on keywords. Completely Obsolete with the arrival of GPT.


{" "} Source Code{" "} {" "}
); }; export default Page;