HackerTrans
TopNewTrendsCommentsPastAskShowJobs

cpojer

no profile record

Submissions

My Latest LLM Workflow and Modern Engineering Values

cpojer.net
4 points·by cpojer·letzten Monat·0 comments

Show HN: Codiff, a local diff review tool

github.com
31 points·by cpojer·vor 2 Monaten·21 comments

Fate 1.0: An Async React data framework

fate.technology
4 points·by cpojer·vor 2 Monaten·0 comments

Vite+ Alpha: Unified Toolchain for the Web (MIT License)

voidzero.dev
82 points·by cpojer·vor 4 Monaten·7 comments

Fastest Front End Tooling for Humans and AI

cpojer.net
110 points·by cpojer·vor 5 Monaten·92 comments

You are absolutely right? – LLM workflows and thoughts about the future

cpojer.net
1 points·by cpojer·vor 6 Monaten·0 comments

Show HN: Fate, a new data framework for React and tRPC, inspired by Relay

github.com
29 points·by cpojer·vor 7 Monaten·3 comments

comments

cpojer
·letzten Monat·discuss
Cool.
cpojer
·vor 2 Monaten·discuss
1. I am not in my 40s, but I take it that I was wrong ;)
cpojer
·vor 2 Monaten·discuss
1. I’m older than you. 2. I said native app window, comparing it to a tool with a browser web ui.
cpojer
·vor 2 Monaten·discuss
Yes. It’s built on diffs.com and trees.software.
cpojer
·vor 2 Monaten·discuss
4 of these are TUIs. I built Codiff specifically because TUI review became overwhelming to me. One of them is a web view, I prefer a native app window (it’s JS either way, ofc).

Also, I never wasted time building todo apps. Now I can build apps that help me do my job that I wouldn’t have had the time for without AI.
cpojer
·vor 2 Monaten·discuss
Codiff is faster and scales to larger commits than those.
cpojer
·vor 2 Monaten·discuss
There is a screenshot in the README.

There is a video here: https://x.com/cnakazawa/status/2055881241677668637?s=46&t=BS...

It works for any staged, unstaged or untracked file in a repo. It does not have support for mutations (like staging or unstaging a change) yet. It does not yet work for specific commits but should be super easy to add.
cpojer
·vor 2 Monaten·discuss
That’s awesome! I built this specifically as a GUI because it’s become too much code to effectively review in the terminal for me.
cpojer
·vor 2 Monaten·discuss
[dead]
cpojer
·vor 7 Monaten·discuss
Yes you can. Check out https://fate.technology
cpojer
·vor 7 Monaten·discuss
You don't have to rename the variable. You can also do this:

```

export function PostCard(props: { post: ViewRef<'Post'> }) {

  const post = useView(PostView, props.post);
}

```

If you add a few aliases (that can be easily generated), it becomes this:

```

export function PostCard(props: { post: PostViewRef }) {

  const post = useView(PostView, props.post);
}

```

There are many bits in fate worthy of criticism. Naming and typing React props really isn't one of those.
cpojer
·vor 7 Monaten·discuss
tRPC is just what fate starts out with. Come and contribute and we’ll have oRPC support in no time!
cpojer
·vor 7 Monaten·discuss
No. I did want to pick something facebook inspired though. I like fate because: * facebook’s original developer conference was f8 * It kinda works well for fulfilling (data) requests * It’s similar to face * It’s short and memorable
cpojer
·vor 10 Monaten·discuss
I forked a JS library for liquid-glass and patched it up with some positioning fixes. It's fun to use in presentations.

See https://github.com/nkzw-tech/liquid-glass