oliverpool

Results 166 comments of oliverpool

Custom SVG are now supported in `unplugin-icons`, which allows them to be very easily inlined (relevant discuccion https://github.com/antfu/unplugin-icons/issues/12) You can find the documentation here: https://github.com/antfu/unplugin-icons#custom-icons

The https://github.com/llgcode/draw2d project (by @llgcode) seems to share some similarities with this project.

> On the low level side of canvas (libraries that it use), I find that in the "go-images world" is missing jpeg2000 and CCITT (for black and white) compressions. But...

Another possibility would be no to call `net.InterfaceByIndex` at all and only work with the `iface.Index` (the debug messages will be less clear)

instead of printing to stdout, another approach would be to decrypt the payload and write a new `.pcap` file (so that wireshark can display it fully).

The fork of @twmb seems quite nice: https://github.com/twmb/murmur3

Hi, I've implemented a way to play youtube videos in my library not so long ago, you might want to take a look at it ;-) https://github.com/oliverpool/go-chromecast/blob/master/command/media/youtube/youtube.go See [cast-url](https://github.com/oliverpool/go-chromecast/blob/master/cmd/cast-url/main.go) for...

> What did you have in mind for a more robust client/library? I've been trying to structure the library following Ben Johnson's [Standard Package Layout](https://medium.com/@benbjohnson/standard-package-layout-7cdbc8391fc1). The _root_ has most the...

I think that currently my repository is quite library organized (but the commands are a bit messy), whereas your repository has nice commands (but not a really a library organization)....

I think having one client located near the main library makes it easier get started for newcomers I guess. And having a separate client could also force a nice interface...