Enter the query into the form above.
API method:
GET /api/symbols?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.
take LST as a list of lists and flatten all nested lists: (flatten-list (list 1 2 (list 3 (list 4)) 5)) => (1 2 3 4 5)
Convert a list into a nested pair. Example: (as-pair '(1 2 3)) => ((1 . 2) . 3)
take LST as a list of lists and flatten all nested lists: (flatten-list (list 1 2 (list 3 (list 4)) 5)) => (1 2 3 4 5)
convert S into a stringified form, with an optional delimiter to be used for lists and pairs.