user202729
user202729
See title. I think this is desirable, so the user can choose to suppress it by `2> /dev/null`.
I suspect you should apply this: ```diff --- a/tikz/2d-chi-squared-pdf/2d-chi-squared-pdf.tex +++ b/tikz/2d-chi-squared-pdf/2d-chi-squared-pdf.tex @@ -22,7 +23,7 @@ \begin{tikzpicture} \begin{axis}[ title=$\chi^2_k$, - legend style={at={(0.95, 0.95), anchor=north west}}, + legend style={at={(0.95, 0.95)}, anchor=north west},...
MWE (originally reported in https://tex.stackexchange.com/q/104290/250119 ): ```tex \documentclass{beamer} \hypersetup{ colorlinks = true, citecolor = green } \begin{document} \begin{frame} This is a great result~\cite{Paper}. But this is a link to slide~\ref{Bib}....
## Description The search result appears to be irrelevant when there's a space in the search term. ## Steps to reproduce 1. Go to https://tikz.dev/ 2. Press ctrl+K, type "every...
On macOS, sometimes the line ``` ip = socket.gethostbyname(socket.gethostname()) ``` fails with the message `gaierror: [Errno 8] nodename nor servname provided, or not known` Actually I'm not sure if this...
Closes #10.
This one isn't actually too difficult to implement, just use the importlib mechanism ```python spec = importlib.util.spec_from_file_location( name=Path(filename).stem, location=filename) self.module = importlib.util.module_from_spec(spec) spec.loader.exec_module(self.module) ```
It may be useful to allow exporting a Python dictionary to a JSON file. I think a possible implementation is something like: ```python def _default_items(): return () raise ValueError("Dictionary does...
**Version info**: latest master **Does the bug happen if you start with `--temp-basedir`?**: yes **Description** As in the title. **How to reproduce** Just use the userscript and type in the...
Refer: #1819 . I explain the rationale for various modifications below.