HackerTrans
トップ新着トレンドコメント過去質問紹介求人

chwzr

no profile record

コメント

chwzr
·16 日前·議論
so if I understand you correctly crdt is not used to collaborate in realtime with other human beings? instead we need to sync via git?
chwzr
·先月·議論
the design looks neat. + for hexagonal pattern on the backend - that fits perfectly!
chwzr
·2 か月前·議論
I would really love to see an iOS remote control app for zed. I am using it on throw away microvms via ssh. Would love to have the zed server running there, control agents via phone and occasionally use my Mac to connect to the server and use the desktop app as normal for review and hand coding
chwzr
·3 か月前·議論
I see the alpine and python:3.12-alpine images in your cli docs. Where does these come from?is it from a docker like registry or are these built in? Can I create my own images? Or this this purely done with the smolfile? Is there a Ubuntu image available?

Looks really nice btw. Hot resize mem/cpu would be nice. This could become a nice tech for a one-backend-per-customer infra orchestrator then.
chwzr
·3 か月前·議論
Wonder what you are thinking of then?
chwzr
·3 か月前·議論
there is TabPFN [1] which also has time series capabilities.

[1] https://priorlabs.ai/tabpfn
chwzr
·4 か月前·議論
i have this in my .zshrc which provides same functionality:

  lk() {
    if [ $# -eq 0 ]; then
        local output=$(sudo lsof -iTCP -sTCP:LISTEN -n -P)
    elif [ $# -eq 1 ]; then
        local output=$(sudo lsof -iTCP -sTCP:LISTEN -n -P | grep -i --color=always $1)
    else
        echo "find and kill processes listening on ports. Usage: lk [pattern]"
        return 1
    fi

    if [ -z "$output" ]; then
        echo "No listening processes found."
        return 0
    fi

    # Show header + results
    echo "$(sudo lsof -iTCP -sTCP:LISTEN -n -P | head -1)"
    echo "$output"
    echo ""

    # Extract unique PIDs (skip the header row if no grep was applied)
    local pids=($(echo "$output" | awk '{print $2}' | grep -E '^[0-9]+$' | sort -u))

    if [ ${#pids[@]} -eq 0 ]; then
        echo "No PIDs found."
        return 0
    fi

    echo "PIDs to kill: ${pids[*]}"
    echo -n "Kill these ${#pids[@]} process(es)? [y/N] "
    read -r confirm

    if [[ "$confirm" =~ ^[Yy]$ ]]; then
        for pid in "${pids[@]}"; do
            echo "Killing PID $pid..."
            sudo kill -9 $pid
        done
        echo "Done."
    else
        echo "Aborted."
    fi
  }
chwzr
·6 か月前·議論
Do you do something similar to the modifications codesandbox has done to firecracker, regarding mmap ram? (They have multiple blogposts about it on their blog)

Would love to chat about details there
chwzr
·7 か月前·議論
How does it compare to tabpfn?
chwzr
·7 か月前·議論
Is this compatible with the dx dioxus cli? Would love to have a cache layer for it
chwzr
·8 か月前·議論
Sounds interesting, do you have any links to these projects? Could not find multicardz when searching
chwzr
·9 か月前·議論
Oh and there is flok[1] which combines the strudel repl with visuals from hydra. Also there are sclang and other algorave environments available. Everything is synced (with crdts i guess) so it’s live collaborative. Which is nice to remotely jam with friends

[1] https://flok.cc
chwzr
·10 か月前·議論
How is the performance of the mounted host directories? It’s some file server over vsock?
chwzr
·10 か月前·議論
Would love to have the ability to spin up firecracker micro vms in proxmox as an alternative to qemu
chwzr
·3 年前·議論
> This is meant to be installed by a professional contractor, not the homeowner.

But I would want to install that myself. I do everything in my house myself. Could I order a device from you and at the same time save the compensation that otherwise gets the installer?