HackerTrans
TopNewTrendsCommentsPastAskShowJobs

chwzr

no profile record

comments

chwzr
·há 16 dias·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
·mês passado·discuss
the design looks neat. + for hexagonal pattern on the backend - that fits perfectly!
chwzr
·há 2 meses·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
·há 3 meses·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
·há 3 meses·discuss
Wonder what you are thinking of then?
chwzr
·há 3 meses·discuss
there is TabPFN [1] which also has time series capabilities.

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