To install this:
$ pip install getgist pyyaml && getgist miraculixx markup.py && alias markup="python markup.py"
Then use it from your Python code
from markup import markup
data = markup(file_or_str)
| // More resources: https://1loc.dev/ + https://htmldom.dev/ + https://thisthat.dev/ + https://vanillajstoolkit.com/ | |
| const qsa = (selector) => Array.from(document.querySelectorAll(selector)) | |
| // Another way inspired by fluorjs https://fluorjs.github.io/ | |
| function $(selector, root = document) { | |
| if (selector instanceof Node) { | |
| return [selector] | |
| } | |
| return root.querySelectorAll(selector) |
| # (c) miraculixx, licensed as by the terms of WTFPL, http://www.wtfpl.net/txt/copying/ | |
| # License: DO WHATEVER YOU WANT TO with this code. | |
| # | |
| # THIS SOFTWARE IS PROVIDED ``AS IS'' AND WITHOUT ANY EXPRESS OR | |
| # IMPLIED WARRANTIES, INCLUDING, WITHOUT LIMITATION, THE IMPLIED | |
| # WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE. | |
| # | |
| from io import StringIO | |
| from contextlib import contextmanager |
To install this:
$ pip install getgist pyyaml && getgist miraculixx markup.py && alias markup="python markup.py"
Then use it from your Python code
from markup import markup
data = markup(file_or_str)
| # to avoid Last login blah | |
| # touch .hushlogin | |
| # https://scriptingosx.com/2019/07/moving-to-zsh-06-customizing-the-zsh-prompt/ | |
| PROMPT='%(?.%F{green}√.%F{red}?%?)%f %B%F{235}%2~%f%b %# ' | |
| # case insensitive path-completion | |
| zstyle ':completion:*' matcher-list 'm:{[:lower:][:upper:]}={[:upper:][:lower:]}' 'm:{[:lower:][:upper:]}={[:upper:][:lower:]} l:|=* r:|=*' 'm:{[:lower:][:upper:]}={[:upper:][:lower:]} l:|=* r:|=*' 'm:{[:lower:][:upper:]}={[:upper:][:lower:]} l:|=* r:|=*' | |
| # partial completion suggestions |
| <!doctype html><!-- This is a valid HTML5 document. --> | |
| <!-- Screen readers, SEO, extensions and so on. --> | |
| <html lang="fr"> | |
| <!-- Has to be within the first 1024 bytes, hence before the <title> | |
| See: https://www.w3.org/TR/2012/CR-html5-20121217/document-metadata.html#charset --> | |
| <meta charset="utf-8"> | |
| <!-- Why no `X-UA-Compatible` meta: https://stackoverflow.com/a/6771584 --> | |
| <!-- The viewport meta is quite crowded and we are responsible for that. | |
| See: https://codepen.io/tigt/post/meta-viewport-for-2015 --> | |
| <meta name="viewport" content="width=device-width,initial-scale=1"> |
| <!doctype html><!-- This is a valid HTML5 document. --> | |
| <!-- Screen readers, SEO, extensions and so on. --> | |
| <html lang=fr> | |
| <!-- Has to be within the first 1024 bytes, hence before the <title> | |
| See: https://www.w3.org/TR/2012/CR-html5-20121217/document-metadata.html#charset --> | |
| <meta charset=utf-8> | |
| <!-- Why no `X-UA-Compatible` meta: https://stackoverflow.com/a/6771584 --> | |
| <!-- The viewport meta is quite crowded and we are responsible for that. | |
| See: https://codepen.io/tigt/post/meta-viewport-for-2015 --> | |
| <meta name=viewport content="width=device-width,minimum-scale=1,initial-scale=1,shrink-to-fit=no"> |
| # https://gist.github.com/althonos/6914b896789d3f2078d1e6237642c35c | |
| [metadata] | |
| name = {name} | |
| version = {version} | |
| author = Martin Larralde | |
| author-email = martin.larralde@ens-paris-saclay.fr | |
| home-page = https://github.com/althonos/{name} | |
| description = {description} | |
| long-description = file: README.rst, CHANGELOG.rst |
The standard way of understanding the HTTP protocol is via the request reply pattern. Each HTTP transaction consists of a finitely bounded HTTP request and a finitely bounded HTTP response.
However it's also possible for both parts of an HTTP 1.1 transaction to stream their possibly infinitely bounded data. The advantages is that the sender can send data that is beyond the sender's memory limit, and the receiver can act on
| proxy_cache_path /srv/user/cache levels=1:2 keys_zone=tiles-cache:8m max_size=500000m inactive=1000d; | |
| proxy_temp_path /srv/user/cache/tmp; | |
| upstream openaip_backend { | |
| server 1.tile.maps.openaip.net; | |
| server 2.tile.maps.openaip.net; | |
| server 3.tile.maps.openaip.net; | |
| } | |
| upstream cartodb_backend { |
| <!doctype html> | |
| <meta charset=utf-8> | |
| <title>Hello Stimulus</title> | |
| <script src="https://unpkg.com/stimulus/dist/stimulus.umd.js"></script> | |
| <script> | |
| window.addEventListener('DOMContentLoaded', _ => { | |
| const application = Stimulus.Application.start() | |
| application.register('hello', class extends Stimulus.Controller { | |
| static get targets () { |