This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
INFO:inntest.running:Running test test_errors_group_overview | |
DEBUG:nntpbits.ClientConnection:Connecting to localhost port 1119 | |
DEBUG:nntpbits.ClientConnection:00000008 RECV b'200 test.anjou.terraraq.org.uk InterNetNews server INN 2.7.0 (20210917 prerelease) ready (transit mode)' | |
DEBUG:nntpbits.ClientConnection:00000008 SEND b'CAPABILITIES' | |
DEBUG:nntpbits.ClientConnection:00000008 RECV b'101 Capability list:' | |
DEBUG:nntpbits.ClientConnection:00000008 RECV b'VERSION 2' | |
DEBUG:nntpbits.ClientConnection:00000008 RECV b'IMPLEMENTATION INN 2.7.0 (20210917 prerelease)' | |
DEBUG:nntpbits.ClientConnection:00000008 RECV b'AUTHINFO' | |
DEBUG:nntpbits.ClientConnection:00000008 RECV b'IHAVE' | |
DEBUG:nntpbits.ClientConnection:00000008 RECV b'LIST ACTIVE ACTIVE.TIMES MOTD NEWSGROUPS' |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
$ cpan App:cpanminus | |
Loading internal logger. Log::Log4perl recommended for better logging | |
CPAN.pm requires configuration, but most of it can be done automatically. | |
If you answer 'no' below, you will enter an interactive dialog for each | |
configuration option instead. | |
Would you like to configure as much as possible automatically? [yes] no | |
Use of uninitialized value $what in concatenation (.) or string at /usr/share/perl/5.28/App/Cpan.pm line 677, <STDIN> line 1. |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
root@sfere:~# dpkg --configure -a | |
Setting up initramfs-tools (0.133) ... | |
update-initramfs: deferring update (trigger activated) | |
Setting up linux-image-4.19.0-5-amd64 (4.19.37-5+deb10u2) ... | |
/etc/kernel/postinst.d/initramfs-tools: | |
update-initramfs: Generating /boot/initrd.img-4.19.0-5-amd64 | |
cp: cannot stat '/usr/share/fonts/truetype/ttf-dejavu/DejaVuSerif.ttf': No such | |
file or directory | |
E: /usr/share/initramfs-tools/hooks/plymouth failed with return 1. | |
update-initramfs: failed for /boot/initrd.img-4.19.0-5-amd64 with 1. |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
araminta:2014-09-11$ find . -name 20140911_182911_Hochstra▒e.jpg | |
araminta:2014-09-11$ echo $? | |
0 | |
araminta:2014-09-11$ find . -name 2014\* | |
araminta:2014-09-11$ echo $? | |
0 | |
araminta:2014-09-11$ ls -l 20140911_182911_Hochstra▒e.jpg | |
-rw-r--r-- 1 richard richard 529050 Jan 20 20:49 20140911_182911_Hochstra?e.jpg | |
araminta:2014-09-11$ find --version | |
find (GNU findutils) 4.7.0-git |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# 1s delay connecting to something that isn't listening: | |
richard@tsais MINGW64 ~/src/gosrc (master) | |
$ time plink -v -P 3000 wampoon | |
Connecting to 172.17.207.76 port 3000 | |
We claim version: SSH-2.0-PuTTY_Release_0.70 | |
Failed to connect to 172.17.207.76: Network error: Connection refused | |
Network error: Connection refused | |
FATAL ERROR: Network error: Connection refused |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
rsync: rsync_xal_set: lsetxattr(""/backup7/lyonesse/winusers/2018-02-04/richard/Favorites/DirectSound.url"","user.favicon") failed: No space left on device (28) | |
rsync error: some files/attrs were not transferred (see previous errors) (code 23) at main.c(1668) [generator=3.1.2] |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
$ cat t | |
#! /bin/sh | |
set -e | |
s() { | |
"$@" | |
} | |
x=y s env | |
$ bash ./t|grep ^x | |
x=y | |
$ dash ./t|grep ^x |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
root@lyonesse:~# ls -l /av | |
total 0 | |
lrwxrwxrwx 1 root mrtg 38 Nov 13 20:33 av -> /net/araminta.anjou.terraraq.org.uk/av | |
root@lyonesse:~# rm -f /av | |
rm: cannot remove '/av': Is a directory |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Originally from http://linguistics.ucla.edu/ulsa/glossary.html but it got deleted. | |
Glossary of Linguistic Terminology | |
from Studies out in Left Field: Defamatory Essays Presented to James D. McCawley on the occasion of his 33rd or 34th birthday | |
U. Pani Shad et alii | |
University of Massachusetts et alibi | |
Rhotacirrm |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#! /usr/bin/python3 | |
class P(list): | |
def __call__(self, *args, **kwargs): | |
return [lv(*args, **kwargs) for lv in self] | |
def __getattr__(self, name): | |
return P([getattr(lv, name) for lv in self]) | |
class F(object): |
NewerOlder