Skip to content

Instantly share code, notes, and snippets.

View christianbaptista's full-sized avatar

Christian Batista christianbaptista

View GitHub Profile
@christianbaptista
christianbaptista / vagrant_freebsd_bhyve.md
Created January 8, 2025 19:15
freebsd vagrant host with bhyve

Using bhyve with vagrant

The following describes how to set up bhyve with Vagrant using the vagrant-bhyve plugin.

Prerequisites

@christianbaptista
christianbaptista / config_font_notion.md
Created January 8, 2025 19:09
Notion font number (emoji) error firefox
<?xml version="1.0"?>
<!DOCTYPE fontconfig SYSTEM "fonts.dtd">
<fontconfig>
    <match>
        <test name="family">
            <string>Apple Color Emoji</string>
        </test>
        <edit name="family" mode="assign_replace">
 sans-serif
@christianbaptista
christianbaptista / install_zed_editor_freebsd.sh
Last active May 26, 2025 05:40
Installing Zed editor in FreeBSD 14.1
#step by step worked for me using sh or bash. Use doas or su.
doas pkg install -y git rust protobuf cmake ca_root_nss pkgconf alsa-lib alsa-utils libyuv
git clone https://github.com/zed-industries/zed.git
cd zed
export RUSTFLAGS="-C link-dead-code"
cargo build --release
cargo build --release --frozen -p zed