Jonas Camillus Jeppesen
Jonas Camillus Jeppesen
I have just tried what I tried above in Arch Linux (may daily driver) and Windows 10 (again for teaching testing purposes). In Windows 10 I can easily perform all...
In my opinion this should be more easily configurable or script should detect whether it is an python2 or python3 script. I'll consider making a patch / pull request for...
A workaround or alternative approach is to use the `newfloat` package and declare a new floating environment, like so: ``` \usepackage{newfloat} \DeclareFloatingEnvironment[name=Listing]{mylisting} \begin{document} \begin{mylisting} \begin{minted}{python} for i in range(5): print(i)...
Nope, using the package `newfloat` to declare new floating environments, which automagically gets proper margin captions: ``` \usepackage{newfloat} \usepackage{minted} \DeclareFloatingEnvironment[placement=h!, name=Listing]{listing} \begin{document} \begin{listing} \inputminted{python}{programs/example.py} \caption{Some nice example.} \label{lst:niceexample} \end{listing} ```...
@baljo The comment you quote is from 2020 and the pydobot codebase looked different back then compared to now. I once found the commit where `_extract_cmd_index` was removed or renamed,...
@baljo Great find, I'll have my student have a look at that fork :-P There is actually quite a few forks with improvements that could be incorporated into this library.
@carminelau Let me know if I can help test your library - I have 15 Dobot Magician Lite with conveyor belts and sensors being used with both Windows, Linux and...
@shamitb It is already part of the RTF-formatter using the `\cbN` control word: `{\cb25 '}{\cb25 foo}{\cb25 '}`, but according to the RTF 1.9 specification Windows versions of Word have never...
I had to do ```export GOPATH="/home/username/go"```. ```"/go"``` seems to indicate a folder ```go``` in the root of the filesystem, which might work, but not what I wanted.
or ```export GOPATH=~/go``` without quotes, with quotes ~ is not expanded and go complains.