HackerTrans
TopNewTrendsCommentsPastAskShowJobs

chwzr

no profile record

comments

chwzr
·15 วันที่ผ่านมา·discuss
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
·เดือนที่แล้ว·discuss
the design looks neat. + for hexagonal pattern on the backend - that fits perfectly!
chwzr
·2 เดือนที่ผ่านมา·discuss
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 เดือนที่ผ่านมา·discuss
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 เดือนที่ผ่านมา·discuss
Wonder what you are thinking of then?
chwzr
·3 เดือนที่ผ่านมา·discuss
there is TabPFN [1] which also has time series capabilities.

[1] https://priorlabs.ai/tabpfn
chwzr
·4 เดือนที่ผ่านมา·discuss
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 เดือนที่ผ่านมา·discuss
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 เดือนที่ผ่านมา·discuss
How does it compare to tabpfn?
chwzr
·7 เดือนที่ผ่านมา·discuss
Is this compatible with the dx dioxus cli? Would love to have a cache layer for it
chwzr
·8 เดือนที่ผ่านมา·discuss
Sounds interesting, do you have any links to these projects? Could not find multicardz when searching
chwzr
·9 เดือนที่ผ่านมา·discuss
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 เดือนที่ผ่านมา·discuss
How is the performance of the mounted host directories? It’s some file server over vsock?
chwzr
·10 เดือนที่ผ่านมา·discuss
Would love to have the ability to spin up firecracker micro vms in proxmox as an alternative to qemu
chwzr
·3 ปีที่แล้ว·discuss
> 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?