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.
Register THUNK as a profiling hook for COMPONENT, a string such as "rpc".
Return true if COMPONENT profiling is active.
Like 'progress-reporter/file', but instead of returning human-readable progress reports, write "build trace" lines to be processed elsewhere.
Low-level procedure to lead REPORTER to emit a report.
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.
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.
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.
Write an ANSI erase-current-line sequence to PORT to erase the whole line and move the cursor to 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.
Given SIZE in bytes, return a string representing it in a human-readable way.
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.
Low-level procedure to start REPORTER.
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.
Return % as a string representing an ASCII-art progress bar. The total width of the bar is BAR-WIDTH.
Low-level procedure to stop REPORTER.