Live data from Hacker News

Ask HN: What are you working on (August 2024)?

news.ycombinator.com

911–920 of 1001 posts

Re: Ask HN: What are you working on (August 2024)?

#912
Im working on yet another "what's my IP address?" site: https://ipparrot.net for the fun of it. It's written in Elixir and currently working on adding a structured whois tool and plan to add more networking tools. You can also use curl like:

`curl https://ipv{4,6}.ipparrot.net`

Re: Ask HN: What are you working on (August 2024)?

#915
Hi. I've been working on this open-source projects last time:

ghstats[1] - self-hosted service to track & keep GitHub repos views (Rust)

macmon[2] - Apple M-series performance monitor in CLI with power metrics (Rust)

ecloop[3] - let say fast Bitcoin addresses checker by bloom filter (a lot of interesting math inside) (pure C)

[1] https://github.com/vladkens/ghstats

[2] https://github.com/vladkens/macmon

[3] https://github.com/vladkens/ecloop

Re: Ask HN: What are you working on (August 2024)?

#916
I've been working on https://console.wut.dev/

Right now it's a collection of a few tools:

• AWS Resource Explorer - a lighter-weight version of the AWS console where everything is just a sortable/filterable/searchable table.

• Access Denied Debugger - paste an "AccessDenied" message and get back a stack-trace style UI showing all the resources involved, reason for the error (e.g., which policy is missing a permission), recent changes via CloudTrail, etc.

• AWS Organizations / SCP Viewer - generates a tree-diagram style UI showing all your AWS accounts, which policies apply to them, etc.

Still working on merging these into a cohesive application (mostly just been scratching my own itches so far). I'm trying to consider privacy/security carefully, so everything is client-side, using the AWS JavaScript SDK, and creds/data are only stored locally.

Re: Ask HN: What are you working on (August 2024)?

#917
post #164

I've been working on a site that helps you find in-person work in NYC that is actually convenient: https://walkablework.com I recently left a startup I had cofounded after a few years because we were a remote team and I came to the conclusion that we weren't going to be successful without working together in person. I wanted to make this site to help people like me use location as an early filter to find good compani…

Hey wluer,

I think this is pretty incredible, and lots of potential. I simply love anything that's displayed with a map visual representation. Do you have a team you're working with on this? Shall we chat privately? ping me here - sibynyc@icloud.com

Re: Ask HN: What are you working on (August 2024)?

#918
I've been working on https://snippethive.com/ with a friend of mine.

We were both tired of asking AI for the same code again and again, so we thought, why not build something where we can instantly save code from our AI chats

The idea is to create a public library of AI-generated code that anyone can search through, find what they need, and either use it directly or customize it further.

For example, if you find a function that almost fits your needs, you can add it to your AI chat with just a click and tweak it, instead of starting from scratch.

So far we have -

1. Chrome Extension - To save your code or find what you need from the library and add it to chat. Currently only works with claude, working on making it compatible with v0 and chatgpt

2. VS code extension to find whatever you need right in there and an AI that will understand your project's context and integrate these snippets in seconds ( AI part is in progress )

3. Website to do other stuff - build your profile, rate other snippets ( which helps us to maintain quality )

Tech Stack -

- Frontend: NextJS, Tailwind, Shadcn

- Backend: Node.js, Express, MongoDB

- Extensions: TypeScript (VS Code) & React, TypeScript, Tailwind (Chrome)

Post reply on HN