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.
Write the progress report to LOG-PORT. Use START-TIME (a SRFI-19 time object) and TRANSFERRED (a total number of bytes) to determine the throughput. When TTY? is false, assume LOG-PORT is not a tty and do not emit ANSI escape codes.
Read as much data as possible from IN and write it to OUT, using chunks of BUFFER-SIZE bytes. After each successful transfer of BUFFER-SIZE bytes or less, report the total number of bytes transferred to the REPORTER, which should be a <progress-reporter> object.
Low-level procedure to stop REPORTER.
Return a <progress-reporter> object to show the progress of FILE's download, which is SIZE bytes long. The progress report is written to LOG-PORT, with ABBREVIATION used to shorten FILE for display.
Given SIZE in bytes, return a string representing it in a human-readable way.
Return % as a string representing an ASCII-art progress bar. The total width of the bar is BAR-WIDTH.
Low-level procedure to lead REPORTER to emit a report.
Write an ANSI erase-current-line sequence to PORT to erase the whole line and move the cursor to the beginning of the line.
Return a reporter that shows a progress bar every time one of the TOTAL tasks is performed. Write PREFIX at the beginning of the line.
Start REPORTER for progress reporting, and call (proc report) with the resulting report procedure. When proc returns, the REPORTER is stopped.
Return a port that continuously reports the bytes read from PORT using REPORTER, which should be a <progress-reporter> object. When CLOSE? is true, PORT is closed when the returned port is closed.
When DOWNLOAD-SIZE is passed, do not read more than DOWNLOAD-SIZE bytes from PORT. This is important to avoid blocking when the remote side won't close the underlying connection.
Low-level procedure to start REPORTER.
Apply PATCH onto SOURCE, directly modifying files beneath it.
Return true if PATCH is applicable to SOURCE, a directory, which corresponds to the given Guix COMMIT, a SHA1 hexadecimal string.