about summary refs log tree commit diff stats
path: root/gmi/4ff92036.txt
diff options
context:
space:
mode:
authorAoi Koizumi <novaburst@kalli.st>2022-03-19 17:51:17 -0300
committerAoi Koizumi <novaburst@kalli.st>2022-03-19 17:51:17 -0300
commit1203445eceb3903d1c56b9f0fd862e6d0c73031c (patch)
tree8d7437f1904de511d802bdc6f25000773f7564ea /gmi/4ff92036.txt
parent2ffad537e7dc4e6d70a0873518d4c6a09a5c92fd (diff)
downloadmirror-world-1203445eceb3903d1c56b9f0fd862e6d0c73031c.tar.gz
Removed files added by mistake, updated convert.conf settings for gmi
and www, updated some texts of this repository.

Signed-off-by: Aoi Koizumi <novaburst@kalli.st>
Diffstat (limited to 'gmi/4ff92036.txt')
-rw-r--r--gmi/4ff92036.txt38
1 files changed, 0 insertions, 38 deletions
diff --git a/gmi/4ff92036.txt b/gmi/4ff92036.txt
deleted file mode 100644
index 26dabe8..0000000
--- a/gmi/4ff92036.txt
+++ /dev/null
@@ -1,38 +0,0 @@
-ID: 4ff92036-30cc-4b72-b5e0-8e00625a496d
-Title: Mailing lists
-Authors: Nova[有線魔女] <novaburst@envs.net>
-Date: 2021-06-17T17:29:27-00:00
-Date-Edited: 2022-01-31T19:27:42-03:00
-Topics: Mail
-
-"An electronic mailing list or email list is a special use of email that allows for widespread distribution of information to many Internet users. It is similar to a traditional mailing list – a list of names and addresses – as might be kept by an organization for sending publications to its members or customers, but typically refers to four things:
-
-* a list of email addresses
-* the people ("subscribers") receiving mail at those addresses, thus defining a community gathered around a topic of interest.
-* the publications (email messages) sent to those addresses, and
-* a reflector, which is a single email address that, when designated as the recipient of a message, will send a copy of that message to all of the subscribers. "
-
-Quoted from https://en.wikipedia.org/wiki/Electronic_mailing_list
-
-I'm on the following lists as of yet :
-
-# Read-only
-* caml-news-weekly@lists.idyll.org
-
-# Read/write
-
-## BSDs
-* freebsd-stable@freebsd.org
-* netbsd-users@netbsd.org
-* misc@openbsd.org
-
-## Orbifx's
-* community@lists.orbitalfox.eu (defunct)
-* comp@lists.orbitalfox.eu (defunct)
-* logarion@lists.orbitalfox.eu (defunct)
-
-## Tildeverse
-* tildeteam@lists.tildeverse.org (on my team email)
-* main@envs.net (on my envs mail)
-
-I've had good experiences so far , and I learnt many things from mailing lists in general.
.h" #include <stdarg.h> #include <stdio.h> #include <stdlib.h> #include <sys/wait.h> #include <unistd.h> /* extern */ void * emallocz(unsigned int size) { void *res = calloc(1, size); if(!res) eprint("fatal: could not malloc() %u bytes\n", size); return res; } void eprint(const char *errstr, ...) { va_list ap; va_start(ap, errstr); vfprintf(stderr, errstr, ap); va_end(ap); exit(EXIT_FAILURE); } void spawn(const char *arg) { static char *shell = NULL; if(!shell && !(shell = getenv("SHELL"))) shell = "/bin/sh"; if(!arg) return; /* The double-fork construct avoids zombie processes and keeps the code * clean from stupid signal handlers. */ if(fork() == 0) { if(fork() == 0) { if(dpy) close(ConnectionNumber(dpy)); setsid(); execl(shell, shell, "-c", arg, (char *)NULL); fprintf(stderr, "dwm: execl '%s -c %s'", shell, arg); perror(" failed"); } exit(0); } wait(0); }