Skip to content

Instantly share code, notes, and snippets.

@bus710
bus710 / README.md
Last active January 1, 2025 22:26
Building rust native library to be used by flutter/android

Building rust native library to be used by flutter/android

This short doc shows how to build rust to be used by flutter/android app.
Inspired by hyousef's work but added some details for the workflow.



References

Docs:

@chrisnc
chrisnc / rawudp.go
Last active April 7, 2025 13:30
constructing ip/udp packets in go
package main
import (
"bufio"
"bytes"
"encoding/binary"
"flag"
"fmt"
"net"
"os"