Live data from Hacker News

Viewing profile — ttkciar

ttkciar

HN member
Joined
Thu, Aug 29, 2019, 6:56 PM UTC
HN karma
90
Public activity
32 items

About ttkciar

My name is TTK Ciar, and I am a happily married middle-aged engineer living rurally in California, USA.

http://ciar.org/ttk/blog

https://en.wikipedia.org/wiki/User:TTK_Ciar

Recent public activity

  1. comment
    Comment #49217970

    llama.cpp uses a hard cutoff. The agent then does "something" that is specific to the agent's implementation and configuration. It might summarize and then "finish the thought" wit…

  2. comment
    Comment #46349249

    Huh. I thought hosting one's own databases was still the norm. Guess I'm just stuck in the past, or don't consume cloud vendor marketing, or something. Glad my employer is still on…

  3. comment
    Comment #46042418

    Whoops, you are right. I misread the article.

  4. comment
    Comment #46041504

    Local inference users are all about sampling, but users addicted to commercial inference services are wary of sampling, because they have to pay by the token.

  5. comment
    Comment #46041488

    The author speculates that bigger/smarter models interpreting vague directives to utilize general-function tools will outperform more precise and detailed directives to utilize nar…

  6. comment
    Comment #46041194

    Well, that's just great. The academic community has been using the term "skill" for years, to refer to classes of tasks at which LLMs exhibit competence. Now OpenAI has usurped the…

  7. comment
    Comment #45824893

    Yes, you will need to employ someone with basic system administration competence. That's a given. Cloud infra is touted as obviating the need to hire system administrators, but tha…

  8. comment
    Comment #44576526

    Senior software engineer with 46 years of experience (since I was 7). LLM inference hasn't been too useful for me for writing code, but it has proven very useful for explaining my …

  9. comment
    Comment #38297772

    After having worked on accounting software for a living, which did need to precisely take into account the variable nature of time measurements, I greatly appreciate that Numbat ha…

  10. comment
    Comment #36373817

    I tried very hard to like Ruby. "On paper" it looks great, but I had a lot of trouble getting used to the syntax. I ended up going deep on the D programming language for my "new la…

  11. comment
    Comment #36372219

    Working with Perl, two things spoiled me for other languages: JSON and DBI/DBD. In Perl, everything serializes to JSON without fuss. It can be "lossy"; objects without an explicit …

  12. comment
    Comment #35073656

    > Proposing "fall back to Usenet" in 2023 makes about as much sense as "folks who use Slack should just use IRC". Hey! :-( IRC is still alive and kicking, thank you very much!

  13. comment
    Comment #35073640

    > Are you just blanking out on the whole of the 1965-1980? If you have to dig back half a century to make your point about contemporary events, you have effectively ceded the point…

  14. comment
    Comment #34279273

    > Rust had a lot of effort pored (and still going) into the nostd variant to be used in bare metal applications like microcontrollers and kernels. D has had "dcompute" since 2017, …

  15. comment
    Comment #34266468

    Rust has a very enthusiastic following, and D is perceived as interloping on "their" territory because it is good at a lot of the same things.

  16. comment
    Comment #34266341

    > Doesn’t D require a GC to achieve the safety guarantees that Rust provides without one No. The paper covers this. The authors used D's fat pointers, scope, slices, @safe, and own…

  17. comment
    Comment #34266162

    D has been around for 21 years. It has had a compiler in the gcc project (gdc) for four years. It debugs easily enough under gdb. Several editors support D syntax (including geany …

  18. comment
    Comment #33499819

    It always gives me a spell of cognitive dissonance when someone points out that Slackware is no longer a "major" distribution. It used to be the major distribution. Funny how times…

  19. comment
    Comment #33252685

    /me sees FVWM referred to in the past tense from his FVWM desktop, and scowls

  20. comment
    Comment #24875209

    My thought exactly. It even incorporates functionality for turning any local git repo into a shared git repo. Mainly what they need besides that is a place to co-ordinate, collabor…

  21. comment
    Comment #21275658

    I don't disagree with anything you say :-) but it bears pointing out that D already lets you call into C libraries without glue. This means you can write C and use the entire wide …

  22. comment
    Comment #21275510

    For what it's worth, I'm a long-time C programmer, but have piss-poor C++ skills, and despise C++, and D clicked for me immediately. I'm loving it. Whether D "clicks" for someone m…

  23. comment
    Comment #21262990

    Google for "dlang" (including the quotes) and you'll get all the D hits you want.

  24. comment
    Comment #21262966

    .. and with much better run-time performance than Go.

  25. comment
    Comment #21262931

    D comes with a lot of "casual parallelism" baked in at the language level, and in its standard libraries. Actors are just one feature among many. You -can- explicitly manage thread…