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 search send a patch to ~whereiseveryone/toys@lists.sr.ht adding your channel as an entry in channels.scm.
go-github-com-go-windows-terminal-sequences is a globally unique id generator library, ready to safely be used directly in your server code.
This package provides a Sqlite3 driver for Go using database/sql.
This package provides a logger in Go.
The pty package provides functions for working with Unix pseudoterminals.
The maildir package provides an interface to mailboxes in the Maildir format.
Golang library for media type and file extension detection, based on magic numbers.
go-github-com-oklog-run a universal mechanism to manage goroutine lifecycles.
Work in Progress. This still needs a lot of help to be complete, or even usable!
go-maunium-net-go-mautrix is a Golang Matrix framework.
go-github-com-dsnet-golib is a collection of mostly unrelated helper libraries.
Simple request logging in Go
SipHash is a family of pseudo-random functions optimized for speed on short messages. It computes a 64-bit or 128 bit message authentication code from a variable-length message and 128-bit secret key. This implementation uses the recommended parameters c=2 and d=4.
Bit Stream helper in Golang.
go-github-com-aryann-difflib is a simple library written in Go for diffing two sequences of text.
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.
This package provides a small library that simplifies parsing RSS and Atom feeds in Go.
go-github-com-anmitsu-go-shlex provides a simple lexical analysis like the Unix shell.
Package colorstring provides functions for colorizing strings for terminal output.
This package provides character set convertion as a Go library.
go-github-com-hashicorp-errwrap is a package that formalizes the pattern of wrapping errors and checking if an error contains another error.
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.
A speedy fuzzy matching package for Go inspired by the JavaScript library bevacqua/fuzzysearch.
This SRFI defines two disjoint immutable container types known as Maybe and Either, both of which can contain objects collectively known as their payload. A Maybe object is either a Just object or the unique object Nothing (which has no payload); an Either object is either a Right object or a Left object. Maybe represents the concept of optional values; Either represents the concept of values which are either correct (Right) or errors (Left).
guile-for-loops is a re-implementation of a large-ish chunk of racket for-macros. guile-for-loops is mostly compatible with racket's macros, with the largest omission being the body-or-break clause and some of the sequence iterators (like in-cycle, which can be covered by circular lists). There are other differences of course, like for/foldr not being on par feature-wise, and all the nicities you get by having a generic sequence interface.