Y
HN Search
Hacker News Search
new
|
comments
|
top
|
jobs
never_inline
searching Neon…
1.
▲
2.
▲
3.
▲
4.
▲
5.
▲
6.
▲
6 ms
·
211.
▲
by
never_inline
1y ago
1. Ars Technica's (OP website) audience includes tech enthusiast people who don't necessarily have a mental model of LLMs, instruction tuning or RLHF. 2. why would this "study" exist? - for the reason computer science ac
212.
▲
by
never_inline
1y ago
Irony is that jane street hires from prestigious Indian schools too, for pretty obscene salaries. These salaries get hyped and celebrated over newspapers.
213.
▲
by
never_inline
1y ago
Irony is jane street hires from prestigious Indian schools too, for pretty obscene salaries. These salaries get hyped and celebrated over newspapers.
214.
▲
by
never_inline
1y ago
What's exactly looksmaxing and why is the above comment a suspect? It seemed normal to me.
215.
▲
by
never_inline
1y ago
How many microorganisms and pests have you deprived of livelihood? Why stop at animals?
216.
▲
by
never_inline
1y ago
Can someone elucidate how using a full blown browser is improvisation over using say markitdown / pandoc / whatever? Given that most useful coding docs sites are static (made with sphinx or mkdocs or whatever)
217.
▲
by
never_inline
1y ago
The problem I see with MCP is very simple. It's using JSON as the format and that's nowhere as expressive as a programming language. Consider a python function signature list_containers(show_stopped: bool = False, name_pattern: Op
218.
▲
by
never_inline
1y ago
Wasn't there a tool calling benchmark by docker guys which concluded qwen models are nearly as good as GPT? What is your experience about it? Personally I am convinced JSON is a bad format for LLMs and code orchestration in python-ish
219.
▲
by
never_inline
1y ago
People are used to the `click` way, where you can define args as function parameters. It's little more verbose but it helps click is a very established library which also provides many other things needed by CLI tools. There's als
220.
▲
by
never_inline
1y ago
At this point you're just flexing that you have 96GiB machine. (Average developer machines are more like 16GiB) But that's not the point. If every dependency follows same philosophy, costs (compiler time, binary size, dependency s
221.
▲
by
never_inline
1y ago
Doesnt work recursively?
222.
▲
by
never_inline
1y ago
> Breaking up long expressions into smaller ones If it improves compile time, that sounds like a bug in the compiler or the design of the language itself.
223.
▲
by
never_inline
1y ago
I mean, LLMs you can run on ollama are usually pretty bad ones.
224.
▲
by
never_inline
1y ago
You can annotate `json:"-"` which is equivalent of @JsonIgnore
225.
▲
by
never_inline
1y ago
They can be used in conjunction. You can drop into debugger from REPL and vice versa.
226.
▲
by
never_inline
1y ago
IDEs tend to have a "just my code" option.
227.
▲
by
never_inline
1y ago
I use single-stepping very rarely in practice when using a debugger, except when following through a "value of a variable or two". Yet it's more convenient than pprint.pprint() for that because structured display of values, e
228.
▲
by
never_inline
1y ago
I am young grug who didn't use debuggers much until last year or so. What sold me on debugger is the things you can do with it * See values and eval expressions in calling frames. * Modify the course of execution by eval'
229.
▲
by
never_inline
1y ago
Why would I? The only argument is that it improves the style of writing. But I am in an ESL environment and no one cares about that. Even otherwise why would anyone want to read a decompressed version instead of the "prompt" itsel
230.
▲
by
never_inline
1y ago
I run aider in VSCode terminal so that I can fix smaller lint errors myself without another AI back-and-forth.
231.
▲
by
never_inline
1y ago
Here's a system prompt I tend to use ## Instructions * Be concise * Use simple sentences. But feel free to use technical jargon. * Do NOT overexplain basic concepts. Assume the user is technically proficient. * AV
232.
▲
by
never_inline
1y ago
Because why do you anti-compress your thoughts using LLM at all? It makes things harder to read.
233.
▲
by
never_inline
1y ago
They may be overrepresented in the RLHF
234.
▲
by
never_inline
1y ago
Apart from obvious non-reproducibility, the other problem is lack of navigable structure. I can't command+click or "show usages" or "show definition" any more.
235.
▲
by
never_inline
1y ago
> Don't be afraid to get your hands dirty. Some bugs and styling issues are faster to fix manually than to prompt through. Knowing when to intervene is part of the craft. This has been my experience as well. to always run the cli to
236.
▲
by
never_inline
1y ago
It actually bothers me it took so long to be discovered.
237.
▲
by
never_inline
1y ago
> When debugging error handling code, being able to quickly add a println or have a dedicated line or source location for setting a breakpoint in a debugger is helpful. On the flip side, you can't have exception breakpoints in Go.
238.
▲
by
never_inline
1y ago
Stupid question: Why not provide a threadpool-like construct which may not necessarily keep threads around but limits their number?
239.
▲
by
never_inline
1y ago
They are all compatible with existing stuff, which makes it kinda better than js.
240.
▲
by
never_inline
1y ago
Thanks for writing the LLM CLI. It's been a very useful tool to test out and prototype using various LLM features like multimodal, schema output and now tools as well! I specifically like that I can just write a python function with ty
More ›