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 webring send a patch to ~whereiseveryone/toys@lists.sr.ht adding your channel as an entry in channels.scm.
Serializes FIELD-NAME, a field name from (gnu services configuration), to a snake case upper case string representation of the field name. Trailing ? in the name are dropped and - get replaced by _. When PREFIX is a string, it is prepended to the result.
For example the procedure would convert 'A-Field? to "A_FIELD".
Serializes CONFIG, a configuration from (gnu services configuration), and its FIELDS to a list of pairs. Each pair represents an environment variable. The first element of each pair is the variable name, the second is the value. When PREFIX is a string it is prepended to the variable name. If any of FIELDS' names are a member of EXCLUDED they won't be serialized. TRUE-VALUE and FALSE-VALUE will be used as a representation for respectfully #t and #f.