заниматься бессмыленным делом
Google: »sich in eine vergebliche Angelegenheit einmischen«.
Hm. Das hätte ich wesentlich früher mal übersetzen sollen.
заниматься бессмыленным делом
Google: »sich in eine vergebliche Angelegenheit einmischen«.
Hm. Das hätte ich wesentlich früher mal übersetzen sollen.
https://www.tagesschau.de/ausland/gouverneurswahlen-vermont-101.html
Bei dem Namen gehört das vermutlich dazu.
So, damit ist Australien als Reise- und Auswanderungsziel auch hinfällig. Ein Abgeordneter (einer Rechtsaußenpartei) hat eine »Endlösung der Einwanderungsfrage« gefordert.
New tablet: Wacom Intuos Pro. Very nice, especially that it has less inactive space (= is smaller) than its predecessors (which so far continue to refuse to predecease it, too).
The least good thing about it is the pen stand. All the previous models had a large funnel-like thing on top that would catch the pen even if you didn’t have perfect aim. This one doesn’t, and I keep missing.
So, I’m obviously migrating a lot of content over from Facebook, and when I’m done with that, I’m going to continue with even more stuff from Google+.
That is going to take a while.
But since hardly anyone is reading this nonsense anyway, it doesn’t really matter, does it?
Thought so.
$ hpost - "Fly Away Home"
: No such file or directory
Huh.
$ head -n 1 bin/hpost
#!/usr/bin/env python3
$ type python3
python3 is /usr/local/bin/python3
$ /usr/bin/env python3
Python 3.6.6 (default, Jul 27 2018, 04:04:20)
...
$
???
…
When copying scripts from Windows, it helps to de-CRLF them. env was looking for python3^M
, and unsurprisingly, didn’t find it.
You know, this thing is really rather shiny.
Die Antwort auf die Frage nach dem Leben, dem Universum und dem ganzen Rest ist 42.
Die Antwort auf das andere Ende ist anscheinend 41. Absolutely beautiful.
https://github.com/mhammond/pywin32.git
How to build pywin32 with current Visual Studio:
git clone https://github.com/mhammond/pywin32.git
set MSSDK_INCLUDE=C:\Program Files (x86)\Windows Kits\8.1\include
set MSSDK_LIB=C:\Program Files (x86)\Windows Kits\8.1\lib\winv6.3\um
python.exe setup.py build
python.exe setup.py build
And remember: To make a debug build, you not only have to have the debug version of Python installed, but you must use it to run setup.py .
More Python shenanigans.
C:\Daten>py -3.6 -c "import sysconfig; print(sysconfig.get_path('platlib', 'nt_user'))"
C:\Users\me\AppData\Roaming\Python\Python36\site-packages
C:\Daten>py -3.6-32 -c "import sysconfig; print(sysconfig.get_path('platlib', 'nt_user'))"
C:\Users\me\AppData\Roaming\Python\Python36\site-packages
Am I missing something? Otherwise, would someone please explain why this was considered anything but a recipe for disaster?
Let me illustrate …
C:\Daten> py -3.6 -m pip install --user pywin32
[... installs ... ]
C:\Daten> py -3.6-32 -m pip install --user pywin32
[...]
Requirement already satisfied: pywin32 in C:\Users\me\appdata\roaming\python\python36\site-packages (223)
C:\Daten> py -3.6-32
Python 3.6.6 (v3.6.6:4cf1f54eb7, Jun 27 2018, 02:47:15) [MSC v.1900 32 bit (Intel)] on win32
Type "help", "copyright", "credits" or "license" for more information.
>>> import win32api
Traceback (most recent call last):
File "<stdin>", line 1, in <module>
ImportError: DLL load failed: %1 is not a valid Win32 application.
Um. WTF?
Also, platlib and purelib are apparently the same in all schemes, not just on Windows. Why have them separate in the first place?