Hacker Newsnew | past | comments | ask | show | jobs | submit | koladev32's commentslogin

This is so cool


some stuff i built using AI - a personal trading manager: automatically reads signals from telegram, send the signal to an openai agent using gpt-4o with a custom MCP server I built for decision making and order placement - a monitoring system on my home servers: claude code runs every5 minutes and update sql records regarding some monitoring metrics. it can also warn me if there is an issue vie email (using resend).

currently i'm working on a dashboard for remote jobs tracking and curation. im planning to use a scrapper and then a model that will curate and record the jobs with useful information for people who wants to apply


i did a quick Google search for your app and only found your landing page. that’s not enough for a fitness app because people need to see it in action before they’ll try it.

if I were you, I’d: - build a strong social presence, especially on Facebook and Instagram. That’s where fitness audiences hang out. organic reach is slow, so you might explore AI-assisted ads targeting fitness interests to control costs. - show what the app can do. as a fitness app user, I’d want to see: - how easy it is to track workouts - whether you give personalized advice for food/calorie tracking

in short: how does your app make my life easier?

also, get your first users offline. if you go to the gym, start there—demo it to people, watch how they use it, listen to complaints, and note what they like. you’ll get valuable feedback faster than from online strangers.


thanks for answer, what about app store screenshots and view? any feedback?

https://apps.apple.com/us/app/jakt-ai-workout-planner/id6746...


Hey everyone, I've been working on some projects using Django for about five years now. But when I discovered DRF, I've decided to focus on building backend API applications without dealing much with the frontend. But about a year or two ago, I started to build APIs for some SaaS projects, and I realized I needed a robust API key management system.

I initially used https://github.com/florimondmanca/djangorestframework-api-ke... which is fantastic and has everything you need for API key systems, including great authorization and identification based on Django's password authentication system. I will say this library shines if you only need API keys for permissions and nothing more. However, when I wanted to push the package further, I hit some limitations. I needed features like key rotation, monitoring, and usage analytics to help with billing per request and permissions and better performances as the package use passwords hashing algorithms to create api keys.

So, I decided to create my own package. I've been working on it for about nine months to a year now, and it's come a long way. Here are some of the key features:

- Quick Authentication and Permission System: You can easily implement authentication and permissions, for example, for organizations or businesses.

- Monitoring and Analytics: There's a built-in application to track the usage of API keys per endpoint and the number of requests made, which is great for billing or security measures.

- API Key Rotation: This feature took some time to perfect. Because the package use Fernet to encrypt and decrypt the api keys, you can smoothly rotate API keys. If you have a leak, you can start using a new Fernet key while phasing out the old one without any service interruption. You can choose between automatic and manual rotation. The old Fernet key will be used to decrypt api keys, while the new Fernet key will be used to encrypt new api keys. This gives you time to send messages about an ongoing key migration to your users. https://cryptography.io/en/latest/fernet/#cryptography.ferne...

The package is currently at version 2.2.1. I initially released version at 1.0 in the beginning, but quickly realized I should have started with a lower version number. I'm continuously working on improvements, mostly on versioning. For instance, typing is not yet fully implemented, and I'm working on enhancing the documentation using Nextra in the next few weeks.

I'm looking for feedback to make this package even better. Whether it's about security measures, missing features, or any other suggestions, I'd love to hear from you. You can find the package https://github.com/koladev32/drf-simple-apikey. Thanks for your time and any feedback you can provide!


Guidelines | FAQ | Lists | API | Security | Legal | Apply to YC | Contact

Search: