HackerTrans
TopNewTrendsCommentsPastAskShowJobs

domlebo70

243 karmajoined vor 15 Jahren
meet.hn/city/au-Gold-Coast-City

Socials: - github.com/dbousamra

---

Submissions

Clickwrap vs. wet signature license agreement

1 points·by domlebo70·vor 8 Monaten·0 comments

comments

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

    export const run = <T>(f: () => T): T => {
      return f();
    };
domlebo70
·vor 7 Monaten·discuss
Do you use plan mode? Do you link specific files as reference using @? Those two alone make a big difference for me.
domlebo70
·vor 8 Monaten·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
·vor 8 Monaten·discuss
You need to do more drugs then.
domlebo70
·vor 8 Monaten·discuss
Interesting name
domlebo70
·vor 9 Monaten·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
·vor 9 Monaten·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
·vor 10 Monaten·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?