Viewing profile — b5n
b5n
HN member- Joined
- Mon, Sep 23, 2019, 3:51 AM UTC
- HN karma
- 353
- Public activity
- 152 items
- HN profile
- View on Hacker News ↗
About b5n
No profile information was provided.
Recent public activity
-
comment
Comment #49137229
The most pleasant is the one you're most familiar with. I still use gas with at&t syntax.
-
comment
Comment #48666822
How dare those nasty, dirty, unemployed live their lives under likely desperate circumstance. They are so much worse than corrupt oligarchs pumping and dumping their way into the g…
-
comment
Comment #48585733
Why even use `emacs` if you're not willing to learn the basics? There are plenty of alternatives that cater to that preference.
-
comment
Comment #48585625
These are all trivial to implement? `treesitter` grammars _are_ easy to install. `eglot` is available OOTB, `lsp-mode` is easy to install and configure if you prefer. `gptel` is ea…
-
comment
Comment #47294969
All the extra steps serve as some type of verification + data collection. The devs know how to make the experience better, but they get paid to implement some mbas mining scheme. T…
- comment
-
comment
Comment #44830472
`use-package` has pretty much simplified everything: ;; c (use-package c-mode :ensure nil :defer t :mode "\\.cu?\\'" :config (setq c-default-style "gnu" c-basic-offset 2) :hook ((c…
-
comment
Comment #43909387
There's a bit more nuance here than 'basic errors', and modern c compilers offer a lot of options _if you need to use them_. I appreciate that there are guardrails in a tool like r…
-
comment
Comment #43908555
> -Wconversion ... assumes converting 1000.0 to 1000 is ok due to no loss in precision. Additionally, `clang-tidy` catches this via `bugprone-narrowing-conversions` and your linter…
-
comment
Comment #43745210
`gptel` supports perplexity, among many others. https://github.com/karthink/gptel
-
comment
Comment #43199786
(use-package exec-path-from-shell :demand t :config (exec-path-from-shell-initialize) (exec-path-from-shell-copy-env "PATH"))
-
comment
Comment #42807760
Emacs has had multiple llm integration packages available for quite awhile (relative to the rise of llms). `gptel` supports multiple providers including anthropic, openai, ollama, …
-
comment
Comment #42732412
The majority of vmware customers could get by with qemu/kvm + pacemaker/corosync, but that requires hiring people who can read a manpage.
-
comment
Comment #42731861
Now try `!(n & 1)`.
-
comment
Comment #42641211
Do you and a lion possess the same degree of executive function? Plant based diets are: - more affordable - better for the environment - healthier - avoid/reduce cruelty (livestock…
-
comment
Comment #42638583
Interesting approach, I initially assumed they'd be using gop blt.
-
comment
Comment #42488684
_lib_curl https://curl.se/libcurl/ https://curl.se/docs/companies.html
-
comment
Comment #42290984
I've generally chosen a new (to me) or spartan lang to challenge myself, but this year I'm going easy mode with python and just focusing on meeting the requirement.
-
comment
Comment #42252177
You might consider using a templating system similar to `yasnippet` to expand abbreviations. https://github.com/joaotavora/yasnippet
-
comment
Comment #42151565
Personally I prefer cli over tui, but you can just toss something like this in a `.gdbinit`: tui new-layout default regs 1 {-horizontal src 1 asm 1} 2 status 0 cmd 1 tui layout def…
-
comment
Comment #41807029
I've found hourly with an initial up front minimum works well.
-
comment
Comment #41789567
I've spent a lot of time fixing/explaining python exceptions over the years, and I get pretty annoyed when I encounter bare exceptions. Exceptions themselves are so often misunders…
-
comment
Comment #41789163
So we've moved on from open washing to full on source laundering lmao. I'd like to buy a beer for the 'zealot' that buried themselves so far underneath the author's skin that they …
-
comment
Comment #41560086
I assume this varies widely across setups. (use-package visual-regexp :defer t :bind (("C-c r" . vr/replace) ("C-c q" . vr/query-replace) ("C-r" . vr/isearch-backward) ("C-s" . vr/…
-
comment
Comment #40443574
Quantized 6-8b models run well on consumer GPUs. My concern would be vram limits given you'll likely be expecting the card to do compute _and_ graphics. Without a GPU I think it wi…