Viewing profile — ttkciar
ttkciar
HN member- Joined
- Thu, Aug 29, 2019, 6:56 PM UTC
- HN karma
- 90
- Public activity
- 32 items
- HN profile
- View on Hacker News ↗
About ttkciar
http://ciar.org/ttk/blog
https://en.wikipedia.org/wiki/User:TTK_Ciar
Recent public activity
-
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…
-
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…
-
comment
Comment #46042418
Whoops, you are right. I misread the article.
-
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.
-
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…
-
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…
-
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…
-
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 …
-
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…
-
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…
-
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 …
-
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!
-
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…
-
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, …
-
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.
-
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…
-
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 …
-
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…
-
comment
Comment #33252685
/me sees FVWM referred to in the past tense from his FVWM desktop, and scowls
-
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…
-
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 …
-
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…
-
comment
Comment #21262990
Google for "dlang" (including the quotes) and you'll get all the D hits you want.
-
comment
Comment #21262966
.. and with much better run-time performance than Go.
-
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…