Suppose you're opening an issue and there's a lot of noisy logs that may be useful.
Rather than wrecking readability, wrap it in a <details> tag!
<details>
<summary>Summary Goes Here</summary>| /// This is a list of Hypertext Transfer Protocol (HTTP) response status codes. | |
| /// It includes codes from IETF internet standards, other IETF RFCs, other specifications, and some additional commonly used codes. | |
| /// The first digit of the status code specifies one of five classes of response; an HTTP client must recognise these five classes at a minimum. | |
| enum HTTPStatusCode: Int, Error { | |
| /// The response class representation of status codes, these get grouped by their first digit. | |
| enum ResponseType { | |
| /// - informational: This class of status code indicates a provisional response, consisting only of the Status-Line and optional headers, and is terminated by an empty line. | |
| case informational |
| // Variables used by Scriptable. | |
| // These must be at the very top of the file. Do not edit. | |
| // icon-color: deep-purple; icon-glyph: tree; | |
| /* global Location args config Script ListWidget Font Color Request */ | |
| const pollenUrl = 'https://opendata.dwd.de/climate_environment/health/alerts/s31fg.json' | |
| const regions = { | |
| 10: 'Schleswig-Holstein und Hamburg', | |
| 11: 'Inseln und Marschen', |
| // Variables used by Scriptable. | |
| // These must be at the very top of the file. Do not edit. | |
| // icon-color: deep-blue; icon-glyph: theater-masks; | |
| /* global Request ListWidget Color Font Script config */ | |
| const radioTeddyNowPlayingUrl = 'https://np.radioplayer.de/qp/v3/onair?rpIds=57&nameSize=200&artistNameSize=200&descriptionSize=200' | |
| const appleMusicSearchUrl = 'https://tools.applemediaservices.com/api/apple-media/music/DE/search.json?types=songs&limit=25&l=en-US' | |
| const radioTeddyShowInfoUrl = 'https://webplayer.radioteddy.de/currentshow.php' | |
| const defaultShowImageUrl = 'https://webplayer.radioteddy.de/livestream/img/teddy-default-cover-2019.png' | |
| const radioTeddyAppleMusicStationUrl = 'https://music.apple.com/de/station/radio-teddy/ra.1460998005' |
| #!/usr/bin/env bash | |
| # Colours picked from https://robinpowered.com/blog/best-practice-system-for-organizing-and-tagging-github-issues/ | |
| ### | |
| # Label definitions | |
| ### | |
| declare -A LABELS | |
| # Platform |
| return { | |
| code : 301, | |
| headers : { | |
| "Location" : 'redicrect url' | |
| } | |
| }; |
http://itunes.apple.com/us/app/xcode/id497799835?ls=1&mt=12
$ sudo xcode-select -switch /Applications/Xcode.app/Contents/Developer
| var targetDB = 'db' | |
| var blacklist = ['_design/'] | |
| var ddoc = 'test' | |
| var viewName = 'emittedDocsToBeDeleted' | |
| var toBeDeletedDocs = {} | |
| var skip = 0 | |
| var limit = 5000 | |
| var totalRows = 0 | |
| deleteDocuments(skip, limit) |