Hacker News

Show HN: FirstClassMeme – Send memes through the actual mail as real postcards

Hacker News - 2 hours 54 min ago

Hey HN,

I'm Adam. I built FirstClassMeme, a site that lets you send actual memes through the mail as real, physical postcards.

Why? Because meme postage is funny, and no one stopped me. Also, because I had this idea on Reddit 6 years ago (https://www.reddit.com/r/slavelabour/comments/bnwy0d/offer_i...) and finally had time to build it.

You choose a meme (or upload your own), add a message, and I print and mail it via USPS first-class. You can send anonymously and even schedule delivery for the future. I print everything myself and drop it in the mail.

It’s a one-person project, built with: - React/Next.js - Supabase - Self-hosted memegen (https://github.com/jacebrowning/memegen) - Epson printer in my bedroom

Not sure where this goes next — I just wanted to see if anyone else finds joy in mailing shitposts.

Open to feedback, chaos, or ideas on how to expand it!

Comments URL: https://news.ycombinator.com/item?id=43576547

Points: 1

# Comments: 0

Categories: Hacker News

Show HN: A new VSCode extension that shows definition functions in a stack

Hacker News - 3 hours 2 min ago

Definition Stack is a new vscode extension I have just released. It is a reading tool for Javascript and Typescript. It is available in the extension marketplace.

You just click in a function in any source code, execute a command, and a new tab opens next to the original. That tab has a "block" which contains a copy of the function you clicked in. In that code every word (symbol) that has a definition is highlighted. If you click on a higlighted word a new block opens above the original which contains the source code of the definition for that word. You can click in that block and repeat to create a stack. All function blocks are in the one tab that you can scroll through.

There are other options like collapsing a block, deleting it, etc. It is easy to open a block, look at it, and delete it taking you back to the block below. Then clicking in the lower block with another word opens yet another block above. Continuining this process lets you walk the "tree" of references and definitions. This lets you see all the code executed when the original function runs. This is similar to stepping through code with a debugger.

The function code is isolated in each block with the name of the original source code file and the lines are numbered the same. But when using the stack you can ignore what file each one came from. This gives a fresh way to look at what all the functions do without the cognitive load of remembering what file the functions are in.

AFAIK, this concept is original. Correct me if I'm wrong. My idea came from an IDE for Java from IBM many years ago. In that system there were no source files at all. Each function came from from a database. That IDE was a failure :-) I think my version of that concept will do better because it doesn't replace source files, it just adds a tool for working with source files. The stack is created instantly and is just meant to be used occasionally when it makes sense. It is sort of a Go To Definition on steroids.

Please give me feedback. Since it is brand new I want to fix anything wrong including user experience problems. Enjoy ...

Comments URL: https://news.ycombinator.com/item?id=43576487

Points: 1

# Comments: 0

Categories: Hacker News

Pages