HackerTrans
TopNewTrendsCommentsPastAskShowJobs

domlebo70

243 karmajoined قبل 15 سنة
meet.hn/city/au-Gold-Coast-City

Socials: - github.com/dbousamra

---

Submissions

Clickwrap vs. wet signature license agreement

1 points·by domlebo70·قبل 8 أشهر·0 comments

comments

domlebo70
·قبل 3 أيام·discuss
Devils advocate: Are they? Why? If LLM's are capable of taking absolute crap and iterating on it to achieve a purpose, then does readability really matter?
domlebo70
·الشهر الماضي·discuss
Awesome. Similar experience to me. Was selling some sim racing gear, and he mentioned he was in fabrication. Now he's my fab guy and we chat heaps.
domlebo70
·الشهر الماضي·discuss
Yeah, but at the end of the day you can't be sure right? That doubt would eat away at me
domlebo70
·الشهر الماضي·discuss
How does one even go about finding a root cause so exotic?
domlebo70
·قبل شهرين·discuss
I love it. Easy to write and understand
domlebo70
·قبل 4 أشهر·discuss
Very good way to describe it. I am enjoying Opus a lot.
domlebo70
·قبل 4 أشهر·discuss
Maybe I'm solving different problems to you, but I don't think I've seen a single "idiot moment" from Claude Code this entire week. I've had to massage things to get them more aligned with how I want things, but I don't recall any basic syntax or logic errors.
domlebo70
·قبل 6 أشهر·discuss
Unclear what to do. I obviously could have invested another 30s and figured it out.

I really like the scenarios - i think there's a lot of value there. I wonder if you can double down on that somehow.
domlebo70
·قبل 6 أشهر·discuss
I've been on the site for 10m, and I'm loving it. I find the interface quite confusing. I'm getting value from the theory tidbits, and the scenarios. The simulation was confusing and i just noped out. I'd say the UI is a bit too overdone
domlebo70
·قبل 6 أشهر·discuss
I don't code in Python much. Are those type annotations really how people are using them, or is it just for the example?

    def list_files_tool(path: str) -> Dict[str, Any]:
And it returns

    {
        "path": str(full_path),
        "files": all_files
    }
Is that useful?
domlebo70
·قبل 7 أشهر·discuss
We do this via run in TS:

    export const run = <T>(f: () => T): T => {
      return f();
    };
domlebo70
·قبل 7 أشهر·discuss
Do you use plan mode? Do you link specific files as reference using @? Those two alone make a big difference for me.
domlebo70
·قبل 8 أشهر·discuss
I've never used it, but watched from afar. So many interesting ideas. The website is also really good. Congrats Paul and team
domlebo70
·قبل 8 أشهر·discuss
You need to do more drugs then.
domlebo70
·قبل 8 أشهر·discuss
Interesting name
domlebo70
·قبل 9 أشهر·discuss
I was wondering if you had any thoughts on the CS2 rollout (2 years and counting) and the number of bugs, poor performance, and issues?
domlebo70
·قبل 9 أشهر·discuss
How do people deploy docker containers on a machine like this? We currently use Cloud Run, which is very hands off. How is a deploy done?
domlebo70
·قبل 10 أشهر·discuss
With Auth.js, I assume they control the database layer? I.e. can i supply my own functions for reading and writing to the DB, or I have to use their Kysely stuff?