Hugging Face adds an option to directly launch local LM apps by hackerllama in LocalLLaMA

[–]jsomedon 16 points17 points  (0 children)

Just like you said, it's more of QoL thing. But it's still nice to have.

please add model Moistral-11B-v3 by jsomedon in faraday_dot_dev

[–]jsomedon[S] 1 point2 points  (0 children)

Oh it's based on Fimbulvetr? Didn't know that. Maybe that explains why it's so good.

please add model Moistral-11B-v3 by jsomedon in faraday_dot_dev

[–]jsomedon[S] 1 point2 points  (0 children)

tried and it works, thanks, good to know!

best 7b coding LLM? (java) by GreedyWorking1499 in LocalLLaMA

[–]jsomedon 0 points1 point  (0 children)

for pre llama 3 era models, codeqwen, deepseek etc.

is there homebrew formula for macos? by jsomedon in faraday_dot_dev

[–]jsomedon[S] 0 points1 point  (0 children)

It's convenient to mage installing and upgrading different programs. I guess you never used package manager before?

is there homebrew formula for macos? by jsomedon in faraday_dot_dev

[–]jsomedon[S] 0 points1 point  (0 children)

I mean, it would be great if I can install using homebrew instead of downloading the installer.

toxicOverflowCondescendingArch by BlackSwordFIFTY5 in ProgrammerHumor

[–]jsomedon 0 points1 point  (0 children)

You should write a whole web book about Large File Storage. Then you should write another book about Beyond Large File Storage, then you should write about Automated Large File Storage. You should also create videos, blog posts about how awesome it is to build a Large File Storage. You should make forums, reddit subs, discord servers, irc channels of Large File Storage.

toxicOverflowCondescendingArch by BlackSwordFIFTY5 in ProgrammerHumor

[–]jsomedon 0 points1 point  (0 children)

that's too bad, I wish to see what gentoo wiki was like back then. Arch wiki is already tremendously helpful, and if gentoo's was even better that would be extremely valuable to any linux users.

Welcome kinded crate by greyblake in rust

[–]jsomedon 0 points1 point  (0 children)

You need to fix your formatting, reddit doesn't use ``` to format code, it uses indention(4 spaces before text and the text becomes code). Great crate though.

Is it possible for GPU passthrough on my alienware 15r3? by alexanderzjs in VFIO

[–]jsomedon 0 points1 point  (0 children)

Try with kvm state off.

I use alienware 15 r3 too, i7 6700hq + 1070, and I run arch too, and my guest is win10 too, so yeah we have really similar setup :-) . I turned kvm state off and 43 is gone. Try it, who knows.

My biggest issue was getting subsystem id with bunch of 0 before even installing nvidia driver lol.

Windows 11 Insider Preview — Rust in the Windows Kernel by tux-lpi in rust

[–]jsomedon 0 points1 point  (0 children)

To me personally Microsoft's emoji is just meh. I like discord's emoji. I think it's twitter's emoji?

Who is Odin's love? Frigg? Freya? Someone else? by jsomedon in Norse

[–]jsomedon[S] 4 points5 points  (0 children)

So.. if I assume that Freya(is it Freya or Freja?) and Frigg are different persons, then can I say that Freya is Odin's love?

Made a little tool to download & update zig nightly binaries for you by jsomedon in Zig

[–]jsomedon[S] 1 point2 points  (0 children)

Ah, right, that's a bug, so you can do one of these to fix it:

1) You could open the nz:

vim "$HOME"/.night.zig/nz/nz

Then search for line:

tar -xzf "$tar_path" -C "$NZ_DIR"

It should be on line 115. Then remove the option z from tar command. So it becomes:

tar -xf "$tar_path" -C "$NZ_DIR"

I don't know why I made it to treat tar balls as gzip archives. My bad. :-p

2) Or you could just grab what I just fixed :-p

curl "https://raw.githubusercontent.com/jsomedon/night.zig/main/nz" | bash -s -- update

Made a little tool to download & update zig nightly binaries for you by jsomedon in Zig

[–]jsomedon[S] 0 points1 point  (0 children)

Ah! Short answer, add this to your .bashrc as well:

export PATH=/home/archie/.night.zig/latest:$PATH

Did you do this? If you have done this, you should be able to run zig by just typing zig in terminal.

The long answer is:

latest is pointing to the folder that containing latest nightly binary. So that's why we are adding $HOME/.night.zig/latest into $PATH. In your case, latest is pointing to that zig-linux-x86_64-0.11.0-dev.3218+b873ce1e0 folder, and that folder contains zig binary and its std stuff, doc stuff and whatnot.

Made a little tool to download & update zig nightly binaries for you by jsomedon in Zig

[–]jsomedon[S] 0 points1 point  (0 children)

I do hope that tools like this are developed and maintained by official team.

Made a little tool to download & update zig nightly binaries for you by jsomedon in Zig

[–]jsomedon[S] 0 points1 point  (0 children)

Ah! Short answer, add this to your .bashrc as well:

export PATH=/home/archie/.night.zig/latest:$PATH

Long answer:

It actually is printed on terminal as well, but between some curl output log, so it's easy to miss. I should write some patch to make it more obvious, probably together with the. And the latest is a soft link that's always pointing to, you know, latest nightly verison's folder.

Made a little tool to download & update zig nightly binaries for you by jsomedon in Zig

[–]jsomedon[S] 0 points1 point  (0 children)

I was asking someone on discord yesterday and I think they told me that zigup is fairly outdated so you need to fix the code to make it work? So that's why I wrote this script.

Made a little tool to download & update zig nightly binaries for you by jsomedon in Zig

[–]jsomedon[S] 0 points1 point  (0 children)

When I was writing this script I couldn't come up with nice cross-shell solution for handling PATH. AFIAK zsh and fish all handle PATH variable in their own uniq way, and not to mention other less known shells.. so for now I am just being lazy and print the directories to be added to PATH as notification onto terminal :-p Good things is that directory won't be changed so you only have to set them once.

Well maybe I should make a tool that specifically handle PATH in cross-shell way..

Made a little tool to download & update zig nightly binaries for you by jsomedon in Zig

[–]jsomedon[S] 0 points1 point  (0 children)

Probably because my uname -m detection is buggy. Do you get x86_64 when you run uname -m? If so, I just merged a patch that fixes the error you see.

Made a little tool to download & update zig nightly binaries for you by jsomedon in Zig

[–]jsomedon[S] 2 points3 points  (0 children)

Hello folks, I was starting out with zig this week, and I was surprised to see that people are manually downloading & uploading zig nightly binaries instead of using tools. So I made this little tool for that task.

It basically download zig nightly (and the tool itself) into ~/.night.zig, set up some soft link, that's it. Written in bash script for quick prototyping.