Enter the query into the form above. You can look for specific version of a package by using @ symbol like this: gcc@10.
API method:
GET /api/packages?search=hello&page=1&limit=20
where search is your query, page is a page number and limit is a number of items on a single page. Pagination information (such as a number of pages and etc) is returned
in response headers.
If you'd like to join our channel webring send a patch to ~whereiseveryone/toys@lists.sr.ht adding your channel as an entry in channels.scm.
This is a tiny C utility that can turn your webcam into a light sensor; moreover it supports a redshift-like gamma control, a screen dimmer and dpms settings.
Libmodule offers a small and simple C implementation of an actor library that aims to let developers easily create modular C projects in a way which is both simple and elegant.
Package machineid provides support for reading the unique machine id of most OSs (without admin privileges).
go-github-com-gosuri-uiprogress is go library to render progress bars in terminal applications.
This package provides supplemental Go networking libraries.
Super-Isolated Elliptic Curve Implementation in Go
This library will help you allow two parties to generate a mutual secret key by using a weak key that is known to both beforehand (e.g. via some other channel of communication). This is a simple API for an implementation of password-authenticated key exchange (PAKE). This protocol is derived from Dan Boneh and Victor Shoup's cryptography book (pg 789, "PAKE2 protocol). I decided to create this library so I could use PAKE in my file-transfer utility, croc.
Package colorstring provides functions for colorizing strings for terminal output.
Package blackfriday is a markdown processor.
GJSON is a Go package that provides a fast and simple way to get values from a JSON document.
The maildir package provides an interface to mailboxes in the Maildir format.
go-gemini implements the Gemini protocol in Go. It provides an API similar to that of net/http to facilitate the development of Gemini clients and servers.
go-github-com-kyokomi-emoji is a library for displaying emojis to the terminal.
Bit Stream helper in Golang.
go-github-com-tidwall-match is a very simple pattern matcher where * matches on any number of characters and ? matches on any one character.
Library to listen for keystrokes from the keyboard
This package provides a Sqlite3 driver for Go using database/sql.
disintegration-imaging provides basic image processing functions such as resize, rotate, crop, brightness/contrast, adjustments, etc.
The pty package provides functions for working with Unix pseudoterminals.
A speedy fuzzy matching package for Go inspired by the JavaScript library bevacqua/fuzzysearch.
go-github-com-anmitsu-go-shlex provides a simple lexical analysis like the Unix shell.
This package provides a very simple thread-safe progress bar which should work on every OS without problems. I needed a progressbar for croc and everything I tried had problems, so I made another one. In order to be OS agnostic I do not plan to support multi-line outputs.
go-github-com-jpillora-sizestr provides a library to pretty print byte counts in Go.
Package poller is a file-descriptor multiplexer. It allows concurent Read and Write operations from and to multiple file-descriptors without allocating one OS thread for every blocked operation. It operates similarly to Go's netpoller (which multiplexes network connections) without requiring special support from the Go runtime. It can be used with tty devices, character devices, pipes, FIFOs, and any file-descriptor that is poll-able (can be used with select(2), epoll(7), etc.) In addition, package poller allows the user to set timeouts (deadlines) for read and write operations, and also allows for safe cancelation of blocked read and write operations; a Close from another go-routine safely cancels ongoing (blocked) read and write operations.