HackerTrans
TopNewTrendsCommentsPastAskShowJobs

domlebo70

243 karmajoined 15 lat temu
meet.hn/city/au-Gold-Coast-City

Socials: - github.com/dbousamra

---

Submissions

Clickwrap vs. wet signature license agreement

1 points·by domlebo70·8 miesięcy temu·0 comments

comments

domlebo70
·3 dni temu·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
·w zeszłym miesiącu·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
·w zeszłym miesiącu·discuss
Yeah, but at the end of the day you can't be sure right? That doubt would eat away at me
domlebo70
·w zeszłym miesiącu·discuss
How does one even go about finding a root cause so exotic?
domlebo70
·2 miesiące temu·discuss
I love it. Easy to write and understand
domlebo70
·4 miesiące temu·discuss
Very good way to describe it. I am enjoying Opus a lot.
domlebo70
·4 miesiące temu·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 miesięcy temu·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 miesięcy temu·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 miesięcy temu·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 miesięcy temu·discuss
We do this via run in TS:

    export const run = <T>(f: () => T): T => {
      return f();
    };
domlebo70
·7 miesięcy temu·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 miesięcy temu·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 miesięcy temu·discuss
You need to do more drugs then.
domlebo70
·8 miesięcy temu·discuss
Interesting name
domlebo70
·9 miesięcy temu·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 miesięcy temu·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 miesięcy temu·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?