HackerTrans
TopNewTrendsCommentsPastAskShowJobs

hunvreus

no profile record

Submissions

[untitled]

1 points·by hunvreus·vorige maand·0 comments

Show HN: Heypi – Like OpenClaw but for Your Team (Slack, Discord, etc.)

github.com
3 points·by hunvreus·vorige maand·2 comments

AI-Augmented Software Development Manifesto

ronanberder.com
4 points·by hunvreus·2 maanden geleden·0 comments

Show HN: Pi-hosts – Give the Pi coding agent access to your servers

github.com
23 points·by hunvreus·2 maanden geleden·0 comments

User Inyerface – A worst-practice UI experiment

userinyerface.com
5 points·by hunvreus·3 maanden geleden·0 comments

Show HN: Clonecn – Agent skill for generating Shadcn/UI themes

github.com
2 points·by hunvreus·3 maanden geleden·0 comments

Show HN: PullNotes – A Notion-like editor for your GitHub repos

github.com
1 points·by hunvreus·5 maanden geleden·0 comments

PicoClaw: Ultra-Efficient AI Assistant in Go

github.com
1 points·by hunvreus·5 maanden geleden·0 comments

Show HN: ReallySimpleDocs - A minimal docs template built with 11ty and Tailwind

reallysimpledocs.com
1 points·by hunvreus·7 maanden geleden·3 comments

Unoffice Hours Webring

unofficehours.com
3 points·by hunvreus·8 maanden geleden·0 comments

Sslip.io: Free DNS for IP-Embedded Hostnames with Wildcard TLS Support

sslip.io
1 points·by hunvreus·8 maanden geleden·2 comments

Average Database: the best free-est, open source data platform

averagedatabase.com
3 points·by hunvreus·9 maanden geleden·0 comments

Show HN: An open source Vercel/Render alternative for Python apps

github.com
2 points·by hunvreus·10 maanden geleden·0 comments

comments

hunvreus
·vorige maand·discuss
Exactly. One of the example is exactly that; an agent that can log into servers, investigate and resolve issues, deploy apps, etc.

If you end up playing with it, let me know what you think.
hunvreus
·5 maanden geleden·discuss
Have you looked at https://github.com/git-bug/git-bug ?
hunvreus
·5 maanden geleden·discuss
I remember reading The Twelve-Factor App [1] from the Heroku folks back in the day, and was blown away by how well they understood the problem. Not only that but they had great taste.

I moved things to Render a while back, and then to my own Hetzner server (I built kind of an open source Vercel clone for that reason [2]).

I'm not quite sure any of these platforms are going to be relevant 5 years from now when you can summon your own DevOps AI agent. At the very least it's going to be incredibly difficult to justify the premium on top of AWS.

1: https://www.12factor.net/

2: https://devpu.sh
hunvreus
·6 maanden geleden·discuss
Awesome. There was a company in China, eDuShi (E都市), doing this for a whole bunch of Chinese cities back in the day: https://www.flickr.com/photos/seeminglee/4112874847
hunvreus
·7 maanden geleden·discuss
Absolute self-promotion: https://github.com/hunvreus/reallysimpledocs
hunvreus
·7 maanden geleden·discuss
Mintlify does look pretty, but between that and all the React exploits, I'll stick with good ol' static sites.

Kinda why I built ReallySimpleDocs [1]. Add Pages CMS [2] to it and you're set.

[1]: https://reallysimpledocs.com/

[2]: https://pagescms.org
hunvreus
·7 maanden geleden·discuss
Appreciated. That's pretty much what I was going for.

The only thing I think is missing is a proper full text search which I'll add later on this week using lunr.js [1]. I just didn't have the time to get it done for this release.

[1]: https://lunrjs.com/
hunvreus
·7 maanden geleden·discuss
It's pretty much as advertised: a really simple documentation template built with 11ty [1] and Tailwind.

I've been releasing a few projects in the past year: Basecoat [2], Pages CMS [3], and lately /dev/push [4]. Each one of them needed its own documentation.

Sure, I could have used stuff like Mintlify or Docusaurus. But I really wanted something fast, modern, simple, and good-looking. And if possible: no React.

Since it's using Basecoat, you get a shadcn/ui compatible design system, so pretty easy to style.

I'll be rolling it out to all my projects, but maybe some of you find it useful.

[1]: https://11ty.dev

[2]: https://basecoatui.com

[3]: https://pagescms.org

[4]: https://devpu.sh
hunvreus
·8 maanden geleden·discuss
Fair enough. I actually needed dns-01 for /dev/push [1] so ended up not using it. I still thought it was a pretty cool project.

[1]: https://github.com/hunvreus/devpush
hunvreus
·9 maanden geleden·discuss
Didn't recognize you without the horse picture.
hunvreus
·9 maanden geleden·discuss
Quart was interesting, but it didn't seem to have as much traction as FastAPI. I also seem to understand Flask is trying to integrate some of Quart's ideas.
hunvreus
·9 maanden geleden·discuss
I love that, I may steal it.
hunvreus
·9 maanden geleden·discuss
Some interesting concepts:

- Components: https://hyperflask.dev/guides/components/ - Bundling view and controller in the same file: https://hyperflask.dev/guides/interactive-apps/

I think these may be footguns though. Components for example are just a regular macros under the hood. Why not use macros then?

I'm also curious about the choice of Flask. I started with a similar approach for /dev/push [1], but ended up moving to FastAPI + Jinja2 + Alpine.js + HTMX once I figured out FastAPI wasn't just for APIs. I wanted proper async support. I love Flask, but don't you find it limiting?

[1]: https://github.com/hunvreus/devpush
hunvreus
·9 maanden geleden·discuss
Next stack I wanna try (right now I'm on FastAPI + Jinja2 + HTMX).
hunvreus
·9 maanden geleden·discuss
BTW, this comment is very true when dealing with HTMX as well:

> But what I’m most excited about are the possibilities that Datastar enables. The community is routinely creating projects that push well beyond the limits experienced by developers using other tools.

For example when displaying the list of deployments, rather than trying to update any individual deployment as their state is updated, it's just simpler to just update the whole list. Your code is way simpler/lighter as you don't need to account for all the edge case (e.g. pager).
hunvreus
·9 maanden geleden·discuss
I'm still trying to figure out what the key difference would be when writing an app with Datastar over HTMX.

I wrote /dev/push [1] with FastAPI + HTMX + Alpine.js, and I'm doing a fair bit with SSE (e.g. displaying logs in real time, updating state of deployments across lists, etc). Looking at the Datastar examples, I don't see where things would be easier that this [2]:

    <div
      hx-ext="sse"
      sse-connect="{{ url_for('project_event', team_id=team.id, project_id=project.id) }}"
      sse-close="sse:stream_closed"
    >
      <div
        hx-trigger="sse:deployment_creation, sse:deployment_status_update, sse:deployment_rollback, sse:deployment_promotion"
        hx-get="{{ url_for('project_deployments', team_slug=team.slug, project_name=project.name).include_query_params(fragment='deployments') }}"
        hx-target="#deployments"
      ></div>
    </div>
Also curious what others think of web components. I tried to use them when I was writing Basecoat [3] and ended up reverting to regular HTML + CSS + JS. Too brittle, too many issues (e.g. global styling), too many gaps (e.g. state).

[1]: https://devpu.sh

[2]: https://github.com/hunvreus/devpush/blob/main/app/templates/...

[3]: https://basecoatui.com
hunvreus
·9 maanden geleden·discuss
Still figuring it out. Routing the traffic is the annoying bit.
hunvreus
·9 maanden geleden·discuss
> 1. Is there a support for deploying into a multiple machines? If so, how does it work?

Working on that, you should soon be able to have a central /dev/push instance and remote nodes managed by it.

> 2. Where and how secrets are stored?

Environment variables are stored in the DB but encrypted using Fernet (https://github.com/hunvreus/devpush/blob/main/app/models.py).
hunvreus
·9 maanden geleden·discuss
Very cool. I focused on building a web ui, but wanted to add a CLI, I'll definitely take some inspiration from that project.
hunvreus
·9 maanden geleden·discuss
Oh yeah, I definitely took a lot of inspiration from it.