Introduction
Introduction Statistics Contact Development Disclaimer Help
opus3: write the body of more articles - tgtimes - The Gopher Times
git clone git://bitreich.org/tgtimes git://enlrupgkhuxnvlhsf6lc3fziv5h2hhfrinws…
Log
Files
Refs
Tags
README
---
commit 6f644ae37b005ab076f3b3acf644c00cf96a8113
parent 853a625ea51a9f3862c55403adf0798fc371e7b1
Author: Josuah Demangeon <[email protected]>
Date: Sun, 23 Jan 2022 00:56:01 +0100
opus3: write the body of more articles
Diffstat:
D bitreich/2021-10-01T18-51-36-53914… | 11 -----------
D bitreich/2021-10-03T16-14-18-02886… | 19 -------------------
D bitreich/2021-10-10T14-25-18-41271… | 23 -----------------------
D bitreich/2021-10-15T15-56-54-99872… | 29 ---------------------------…
A bitreich/Makefile | 13 +++++++++++++
A bitreich/md2mw.awk | 21 +++++++++++++++++++++
D bitreich/mkfile | 23 -----------------------
A bitreich/news.gph | 323 +++++++++++++++++++++++++++++…
A opus3/article-heaven-and-computers… | 23 +++++++++++++++++++++++
M opus3/article-tgtimes-100-years-of… | 2 +-
A opus3/article-tiny-creatures.mw | 19 +++++++++++++++++++
A opus3/article-unix-calendar-comman… | 67 +++++++++++++++++++++++++++…
12 files changed, 467 insertions(+), 106 deletions(-)
---
diff --git a/bitreich/2021-10-01T18-51-36-539143.md b/bitreich/2021-10-01T18-51…
@@ -1,11 +0,0 @@
-# 2021-10-01 18:51:36.539143 UTC (+0000)
-20h
-BAN Party on 2021-10-03
-
-This Sunday, on 2021-10-03, at 13:00 UTC, we will have another BAN
-party, to play the new Supertuxkart release. There are new tracks, new
-drivers and more fun. For this BAN party we set a new time at 1pm, so
-friends from America and Australia can join in at a natural time.
-
-Sincerely yours,
-Main Gaming Officer (MGO)
diff --git a/bitreich/2021-10-03T16-14-18-028866.md b/bitreich/2021-10-03T16-14…
@@ -1,19 +0,0 @@
-# 2021-10-03 16:14:18.028866 UTC (+0000)
-20h
-BAN Party Results
-
-Today we had a two part BAN party. The first onw was teeworlds, since
-this was easily running and through a community effort openra in the
-newest appimage got setup in some virtualbox debianesque setup on
-FreeBSD. It really ran. And so in a combined effort of Dutch Australian
-and German armies, we defeated the enemies using all kind of weaponry,
-from naval to aircraft units. Long live Bitreich!
-
-Yes, it was very much fun.
-
-Next time with more players we can play even bigger maps. Everyone is
-invited!
-
-Sincerely yours,
-Chief Gaming Officer (CGO)
-
diff --git a/bitreich/2021-10-10T14-25-18-412716.md b/bitreich/2021-10-10T14-25…
@@ -1,23 +0,0 @@
-# 2021-10-10 14:25:18.412716 UTC (+0000)
-20h
-Analgram Authentication
-
-As you know, bitreich is always ahead of time and in introducing new
-technology. We now offer members the authentication to all services via
-
- gopher://bitreich.org/I/memecache/bitreich-2fa.jpg
-
-Via your analprint scan you are distinguished from all other humans. No
-other human has such an analprint as you have. You are special.
-
-In case you want to authenticate, come on #bitreich-anal on IRC and send
-the picture of your analprint. We call this the analgram authentication.
-It is secure, cannot be easily copied and the biometric feature is
-hidden for most of your life. No simple photo can steal this credential.
-
-Current work is done to make this a standard for all U.S. and EU funded
-projects and contracts. Hopefully the future is anal-gram!
-
-Sincerely yours,
-Chief Backwater Officer (CRO)
-
diff --git a/bitreich/2021-10-15T15-56-54-998729.md b/bitreich/2021-10-15T15-56…
@@ -1,29 +0,0 @@
-# 2021-10-15 15:56:54.998729 UTC (+0000)
-20h
-10k Meme BAN party on 2021-10-31
-
-The Bitreich Meme database is approaching 10k memes. To celebrate this,
-we will hold a BAN party on 2021-10-31 on 11:00 GMT (12:00 CET). The
-time is adapted so bitreich people from America and Australia can join
-in at the same time.
-
-Games we will play:
-
-* OpenRA Dune2k, CNC and RA
- Be sure to have a current version due to multiplayer
- protocol changes.
-* Teeworlds
-* SuperTuxKart on extreme level
- Be sure to run the newest version because of new race
- tracks and characters.
-* Armagetronade
-* Wireguard
-* Whatever game you like to play.
-
-Everyone is welcome. We will be using a mumble server for instant audio
-talk, where the details are revealed on #bitreich-en on BAN party day.
-Please join there to get further details.
-
-Sincerely yours,
-Chief BAN Officer (CBO)
-
diff --git a/bitreich/Makefile b/bitreich/Makefile
@@ -0,0 +1,13 @@
+gopher = bitreich.org:/bitreich/gopher
+
+help:
+ @sed -rn 's/^([a-z.]*):.*/make \1/p' Makefile
+
+sync:
+ rsync -a ${gopher}/news.gph ${gopher}/usr/*/phlog .
+
+convert:
+ awk -f md2mw.awk news.gph
+
+clean:
+ rm -f article-*.mw
diff --git a/bitreich/md2mw.awk b/bitreich/md2mw.awk
@@ -0,0 +1,21 @@
+#!/usr/bin/awk -f
+
+$NF ~ "/usr/.*/phlog/.*.md" {
+ sub(".*/usr/", "")
+ user = $0
+ sub("/.*", "", user)
+ gsub("'", "", user)
+ sub("^[^/]*/", "")
+ sub("\\|.*", "")
+
+ src = dst = $0
+ gsub("'", "", dst)
+ sub("phlog/", "", dst)
+ sub(".md$", ".mw", dst)
+ cmd = "notmarkdown-ms | sed '1 s/.NH [0-9]/.SH "author"/' >'article-"d…
+ print cmd
+ while ((getline <src) > 0)
+ if (NR > 2)
+ print $0 | cmd
+ close(cmd)
+}
diff --git a/bitreich/mkfile b/bitreich/mkfile
@@ -1,23 +0,0 @@
-gph=/n/bitreich/bitreich/gopher
-srv=/srv/ssh.bitreich
-
-bitreich.md:V: $gph
- mkdir -p news/bitreich
- md=`{sed -rn 's,.*\|([^|]*phlog/[^|]*).*,'$gph'\1,p' $gph/news.gph | t…
- cp $md news/bitreich
-
-bitreich.mw:V:
- mkdir -p news/part
- for(md in `{ls news/bitreich/*.md}){
- mw=`{sed '1,2d; s/[^0-9A-Za-z]+/-/g; s/-*$//; 3q' $md}
- mw=news/article-bitreich-^`{echo $mw | tr A-Z a-z}^.mw
- author=`{sed -n 2p $md}
- sed '1,2d; 3s/^/# /' $md | notmarkdown-ms |
- sed '1s/.NH [0-9]+/.SH '$author'/' >$mw
- }
-
-$gph: $srv
- mount -c /srv/ssh.bitreich /n/bitreich
-
-$srv:
- sshfs -r / -s ssh.bitreich [email protected]
diff --git a/bitreich/news.gph b/bitreich/news.gph
@@ -0,0 +1,323 @@
+
+ Bitreich News
+
+[0|Atom news feed|/news.atom.xml|server|port]
+
+___[ News Aggregator ]
+[0|2022-01-19 – »GangBAN on 2022-01-23!« by 20h|/usr/20h/phlog/2022-01-19T…
+[0|2022-01-16 – »BitTwiddle - Your daily bit twiddle.« by 20h|/usr/20h/phl…
+[0|2022-01-15 – »Welcome Trinity!« by 20h|/usr/20h/phlog/2022-01-15T18-41-…
+[0|2022-01-14 – »BitLeeks is now online.« by 20h|/usr/20h/phlog/2022-01-14…
+[0|2022-01-13 – »BitLeaks goes online.« by 20h|/usr/20h/phlog/2022-01-13T1…
+[0|2022-01-09 – »GangBAN y2k22 results.« by 20h|/usr/20h/phlog/2022-01-09T…
+[0|2022-01-07 – »ET Legacy at GangBAN.« by 20h|/usr/20h/phlog/2022-01-07T1…
+[0|2022-01-02 – »IRC Song now online.« by 20h|/usr/20h/phlog/2022-01-02T19…
+[0|2021-12-31 – »Annna now on irc.libera.chat/#gopherproject too!« by 20h|…
+[0|2021-12-31 – »y2k22 GangBAN on 2022-01-08« by 20h|/usr/20h/phlog/2021-1…
+[0|2021-12-19 – »Bitreich Radio playing auto-generated music.« by 20h|/usr…
+[0|2021-12-19 – »End Year Meeting 2021 Recordings Online.« by 20h|/usr/20h…
+[0|2021-12-17 – »Gopher log4j contest.« by 20h|/usr/20h/phlog/2021-12-17T1…
+[0|2021-12-14 – »Bitreich End Year BAN on 2021-12-19.« by 20h|/usr/20h/phl…
+[0|2021-12-11 – »Bitreich University reaches 100% employment rate.« by 20h…
+[0|2021-12-11 – »Please register to Bitreich Area Network.« by 20h|/usr/20…
+[0|2021-12-08 – »GangBAN Poll Result« by 20h|/usr/20h/phlog/2021-12-08T20-…
+[0|2021-12-05 – »New Gopher Banner on bitreich.org.« by 20h|/usr/20h/phlog…
+[0|2021-12-01 – »stagit and stagit-gopher 1.0 is released.« by bob|/usr/bo…
+[0|2021-12-01 – »December GangBAN poll.« by 20h|/usr/20h/phlog/2021-12-01T…
+[0|2021-11-28 – »Release sacc(1) v1.05« by quinq|/usr/quinq/phlog/2021-11-…
+[0|2021-11-27 – »sfeed 1.1 was released.« by bob|/usr/bob/phlog/2021-11-26…
+[0|2021-10-31 – »Lzip support for Bitreich releases.« by 20h|/usr/20h/phlo…
+[0|2021-10-31 – »10k BAN party aftermath.« by 20h|/usr/20h/phlog/2021-10-3…
+[0|2021-10-29 – »Wireguard Multiplayer Tutorial.« by 20h|/usr/20h/phlog/20…
+[0|2021-10-27 – »Nixers.net Conf 2021« by 20h|/usr/20h/phlog/2021-10-27T14…
+[0|2021-10-23 – »10k memes reached!« by 20h|/usr/20h/phlog/2021-10-23T20-1…
+[0|2021-10-23 – »The Gopher Times« by 20h|/usr/20h/phlog/2021-10-23T20-06-…
+[0|2021-10-23 – »Update on Meme Science« by 20h|/usr/20h/phlog/2021-10-23T…
+[0|2021-10-19 – »10k Meme BAN party 2021-10-31 CEST correction.« by 20h|/u…
+[0|2021-10-15 – »10k Meme BAN party on 2021-10-31!« by 20h|/usr/20h/phlog/…
+[0|2021-10-10 – »Bitreich.org now supports Analgram authentication.« by 20…
+[0|2021-10-03 – »0x2000\|0x400\|(1<<8)\|0x80\|0x10\|0x7 BAN Party Results.�…
+[0|2021-10-01 – »0x2000\|0x400\|(1<<8)\|0x80\|0x10\|0x7 BAN Party on 2021-1…
+[0|2021-09-11 – »(1<<13)\|(1<<10)\|(1<<1)\|0x102 BAN party today!« by 20h|…
+[0|2021-09-09 – »Stop Scrum! Think of the Children!« by 20h|/usr/20h/phlog…
+[0|2021-09-07 – »Digitalisation Addicts Anonymous: We help you!« by 20h|/u…
+[0|2021-08-28 – »(1<<10)\|0x2400\|(1<<7)\|0x20\|(1<<0) BAN party now.« by …
+[0|2021-08-27 – »Empty-The-Fridge Cooking Recipe Search« by 20h|/usr/20h/p…
+[0|2021-08-22 – »Minimal Viable Programming« by 20h|/usr/20h/phlog/2021-08…
+[0|2021-08-19 – »Git Theologist - Select Your Master« by 20h|/usr/20h/phlo…
+[0|2021-08-19 – »Bitreich IRC: Conviviality« by 20h|/usr/20h/phlog/2021-08…
+[0|2021-08-19 – »Bitreich IRC Song« by 20h|/usr/20h/phlog/2021-08-19T10-42…
+[0|2021-08-16 – »Bitreich Only Fans now online.« by 20h|/usr/20h/phlog/202…
+[0|2021-08-08 – »0x2000\|(1<<9)\|0x100\|0x20\|0x8 BAN party fun.« by 20h|/…
+[0|2021-08-07 – »sfeed 1.0 and sfeed_curses 1.0 was released.« by bob|/usr…
+[0|2021-08-04 – »0x2000\|(1<<9)\|0x100\|0x20\|0x8 BAN party on 2021-08-07!�…
+[0|2021-07-20 – »I'm happy to announce my one evening project potcasse!« b…
+[0|2021-07-13 – »Brcon2021: Notice On The Bits Received.« by 20h|/usr/20h/…
+[0|2021-07-10 – »3rd BAN Party Was A Success!« by 20h|/usr/20h/phlog/2021-…
+[0|2021-07-09 – »Cancelman Hire Service« by 20h|/usr/20h/phlog/2021-07-09T…
+[0|2021-07-09 – »Bitreich Goes Mobile: Annna now has Whatsapp support.« by…
+[0|2021-07-09 – »TI Research Lab Opens« by 20h|/usr/20h/phlog/2021-07-09T1…
+[0|2021-07-08 – »Ongoing CI/TI Performance Tests.« by 20h|/usr/20h/phlog/2…
+[0|2021-07-07 – »Bitreich University: Professor Club Opens.« by 20h|/usr/2…
+[0|2021-07-06 – »3rd BAN Party on 2021-07-10!« by 20h|/usr/20h/phlog/2021-…
+[0|2021-07-06 – »Chicken Intelligence (CI) Appliance for EC Half-Finale Pre…
+[0|2021-06-30 – »First Bitreich Pilot Exploits« by 20h|/usr/20h/phlog/2021…
+[0|2021-06-30 – »Bitreich Pilot Service.« by 20h|/usr/20h/phlog/2021-06-30…
+[0|2021-06-25 – »Bitreich Dating Now Online.« by 20h|/usr/20h/phlog/2021-0…
+[0|2021-06-24 – »Brcon2021: Curing Post Brcon Depression Part 2« by 20h|/u…
+[0|2021-06-23 – »Brcon2021: Get a Bit Reich!« by 20h|/usr/20h/phlog/2021-0…
+[0|2021-06-23 – »Brcon2021: Curing Post Brcon Depression« by 20h|/usr/20h/…
+[0|2021-06-20 – »Brcon2021: Day 0x6 Slides Online, Manifesto updated, Party…
+[0|2021-06-20 – »Brcon2021: Slides of Day 0x6 online.« by 20h|/usr/20h/phl…
+[0|2021-06-19 – »Brcon2021: BAN party games.« by 20h|/usr/20h/phlog/2021-0…
+[0|2021-06-19 – »Brcon2021: Slides of day 0x4 are online.« by 20h|/usr/20h…
+[0|2021-06-18 – »Brcon2021: Day 0x3 Slides are online.« by 20h|/usr/20h/ph…
+[0|2021-06-17 – »Brcon2021: Spreading the love for ed(1).« by 20h|/usr/20h…
+[0|2021-06-16 – »Brcon2021: Ed One-Line Champion is Od1n!« by 20h|/usr/20h…
+[0|2021-06-16 – »Brcon2021: Bitreich Area Network game party poll.« by 20h…
+[0|2021-06-15 – »Brcon2021: Recordings and slides of day 0x1 online!« by 2…
+[0|2021-06-15 – »Brcon2021: Recordings Day 0x0 Online.« by 20h|/usr/20h/ph…
+[0|2021-06-14 – »Brcon2021: Day 0x0 Slides Online.« by 20h|/usr/20h/phlog/…
+[0|2021-06-13 – »Bitreich IRC Logging disabled.« by 20h|/usr/20h/phlog/202…
+[0|2021-06-13 – »Brcon2021: Summary for New Users.« by 20h|/usr/20h/phlog/…
+[0|2021-06-13 – »pointtools: Now with pptx2md« by 20h|/usr/20h/phlog/2021-…
+[0|2021-06-12 – »Brcon2021: After con party with DJ Ivan!« by 20h|/usr/20h…
+[0|2021-06-11 – »Ed Cloud now supports Fastly.« by 20h|/usr/20h/phlog/2021…
+[0|2021-06-10 – »Brcon2021: sfeed, a RSS/Atom parser (supporting gopher)« …
+[0|2021-06-10 – »Brcon2021: Get Hyped! Groove!« by 20h|/usr/20h/phlog/2021…
+[0|2021-06-09 – »Ed Cloud Release.« by 20h|/usr/20h/phlog/2021-06-09T18-47…
+[0|2021-06-08 – »Brcon2021: Learn to dance with annna.« by 20h|/usr/20h/ph…
+[0|2021-06-08 – »Bitreich Ideas Project« by 20h|/usr/20h/phlog/2021-06-08T…
+[0|2021-06-05 – »Important Announcement by the Perl Republic Government.« …
+[0|2021-06-05 – »Gameroom: Conway Game Of Life« by 20h|/usr/20h/phlog/2021…
+[0|2021-06-04 – »Brcon2021: Logos for spreading the word!« by 20h|/usr/20h…
+[0|2021-05-31 – »Gomoku now in the Gameroom playable.« by 20h|/usr/20h/phl…
+[0|2021-05-31 – »Bitreich IRC Tor Service Available« by 20h|/usr/20h/phlog…
+[0|2021-05-30 – »Bitreich Books is now online.« by 20h|/usr/20h/phlog/2021…
+[0|2021-05-30 – »Bitreich IRC Migration« by 20h|/usr/20h/phlog/2021-05-30T…
+[0|2021-05-29 – »Bitreich now requires VLA AGREEMENT« by 20h|/usr/20h/phlo…
+[0|2021-05-26 – »Brcon2021: Unix Principles and Scientific Simulations« by…
+[0|2021-05-26 – »Brcon2021: ed(1) conference and cli one-liner challenge.«…
+[0|2021-05-26 – »Brcon2021: The Rise and Fall of Personal Computers Age.« …
+[0|2021-05-23 – »Vaccinewars now in the Gameroom« by 20h|/usr/20h/phlog/20…
+[0|2021-05-21 – »Bitreich Penis Extension Service« by 20h|/usr/20h/phlog/2…
+[0|2021-05-20 – »Brcon2021: Hipster cancel waves and the post-pandemic worl…
+[0|2021-05-19 – »Proposals for IRC network switch wanted.« by 20h|/usr/20h…
+[0|2021-05-18 – »Brcon2021: How to complicate things in project management.…
+[0|2021-05-17 – »Brcon2021: Videoconferencing carbon footprint« by 20h|/us…
+[0|2021-05-12 – »First Brcon2021 Talk Proposals« by 20h|/usr/20h/phlog/202…
+[0|2021-05-08 – »Bitreich Conference 2021 Announcement.« by 20h|/usr/20h/p…
+[0|2021-05-07 – »Bitreich XML Strip Club Opens« by 20h|/usr/20h/phlog/2021…
+[0|2021-05-02 – »Bitreich Web Experience 3.0« by 20h|/usr/20h/phlog/2021-0…
+[0|2021-04-18 – »Bitreich repository reporting changed.« by 20h|/usr/20h/p…
+[0|2021-04-04 – »BAN Easter Party Report« by 20h|/usr/20h/phlog/2021-04-04…
+[0|2021-04-03 – »Geomyidae release postponed by eight weeks.« by 20h|/usr/…
+[0|2021-04-03 – »Brcon 2021 Week Poll« by 20h|/usr/20h/phlog/2021-04-03T06…
+[0|2021-04-01 – »1st BAN Party on 2021-04-03 20:00 CEST« by 20h|/usr/20h/p…
+[0|2021-04-01 – »Gopher and XHTML merge.« by 20h|/usr/20h/phlog/2021-04-01…
+[0|2021-03-31 – »sfeed_curses 0.9.10 was released.« by bob|/usr/bob/phlog/…
+[0|2021-03-27 – »Cloud Cancel Service« by 20h|/usr/20h/phlog/2021-03-27T07…
+[0|2021-03-25 – »Where Was The Racism?« by 20h|/usr/20h/phlog/2021-03-25T0…
+[0|2021-03-24 – »Free and open source cancelling« by parazyd|/usr/parazyd/…
+[0|2021-03-24 – »Open Source Needs Your Help!« by 20h|/usr/20h/phlog/2021-…
+[0|2021-03-14 – »stagit 0.9.5 is released.« by bob|/usr/bob/phlog/2021-03-…
+[0|2021-03-13 – »sfeed 0.9.22 and sfeed_curses 0.9.9 was released.« by bob…
+[0|2021-03-12 – »Bitreich Meme Page« by 20h|/usr/20h/phlog/2021-03-12T17-5…
+[0|2021-02-19 – »Introducing bitreich-tardis for dimensional travel.« by a…
+[0|2021-02-08 – »BOOPS in Bitreich TV.« by 20h|/usr/20h/phlog/2021-02-08T1…
+[0|2021-02-06 – »Bitreich TV Revamp« by 20h|/usr/20h/phlog/2021-02-06T21-5…
+[0|2021-01-24 – »sfeed 0.9.21 and sfeed_curses 0.9.8 was released.« by bob…
+[0|2021-01-17 – »Gopher support in luakit.« by 20h|/usr/20h/phlog/2021-01-…
+[0|2021-01-02 – »Nalla – Ex Nihilo now on Bitreich Radio.« by 20h|/usr/2…
+[0|2021-01-01 – »Bitreich Oneline Offers« by 20h|/usr/20h/phlog/2021-01-01…
+[0|2021-01-01 – »Annna Oneline Support.« by 20h|/usr/20h/phlog/2021-01-01T…
+[0|2020-12-31 – »Bitreich PatchIt Deal Approved« by 20h|/usr/20h/phlog/202…
+[0|2020-12-30 – »Bitreich End Year Meeting 2020 Recordings« by 20h|/usr/20…
+[0|2020-12-29 – »New Gopher Lawn Maintainer Badge, Instruction Video« by 2…
+[0|2020-12-29 – »Bitreich Italiano Now Official.« by 20h|/usr/20h/phlog/20…
+[0|2020-12-20 – »Catpoint v0.2 Release.« by 20h|/usr/20h/phlog/2020-12-20T…
+[0|2020-12-20 – »Gophers Support in Curl.« by 20h|/usr/20h/phlog/2020-12-2…
+[0|2020-12-13 – »Bitreich End Year Meeting 2020« by 20h|/usr/20h/phlog/202…
+[0|2020-11-23 – »Meme degrees available« by adc|/usr/adc/phlog/2020-11-23T…
+[0|2020-11-03 – »Bitreich TV improvements« by adc|/usr/adc/phlog/2020-11-0…
+[0|2020-10-17 – »Unix 1-Liner Five Fridays Funfair 2020 (U1FFF 2020)« by 2…
+[0|2020-10-14 – »gramscii added to Bitreich« by katolaz|/usr/katolaz/phlog…
+[0|2020-10-11 – »Ransomware Attack Day 2020-10-15« by 20h|/usr/20h/phlog/2…
+[0|2020-09-29 – »New Geomyidae Licensing Model.« by 20h|/usr/20h/phlog/202…
+[0|2020-09-26 – »ECTS Credits For Free« by 20h|/usr/20h/phlog/2020-09-26T1…
+[0|2020-09-17 – »Bitreich Radio Now Over Gopher« by 20h|/usr/20h/phlog/202…
+[0|2020-09-04 – »Introducing Bitreich Snowmen Program« by 20h|/usr/20h/phl…
+[0|2020-08-28 – »Adc Is Now A Bitreich Member.« by 20h|/usr/20h/phlog/2020…
+[0|2020-08-28 – »Bitreich TV Is Online.« by 20h|/usr/20h/phlog/2020-08-28T…
+[0|2020-08-28 – »The Gopher Lawn 1.2 Is Online.« by 20h|/usr/20h/phlog/202…
+[0|2020-08-26 – »Bitreich.org Startup Sound.« by 20h|/usr/20h/phlog/2020-0…
+[0|2020-08-22 – »The 1<<12 Meme Party Is Coming!« by 20h|/usr/20h/phlog/20…
+[0|2020-08-17 – »stagit 0.9.4 is released.« by bob|/usr/bob/phlog/2020-08-…
+[0|2020-08-17 – »The Bitreich Meme Subdivision is born.« by 20h|/usr/20h/p…
+[0|2020-08-15 – »1<<12 Meme Party Approaching!« by 20h|/usr/20h/phlog/2020…
+[0|2020-07-31 – »Annna In The News!« by 20h|/usr/20h/phlog/2020-07-31T14-4…
+[0|2020-07-24 – »Bitreich HTTPD Service« by 20h|/usr/20h/phlog/2020-07-24T…
+[0|2020-07-22 – »BitHUB now online.« by 20h|/usr/20h/phlog/2020-07-22T17-5…
+[0|2020-07-14 – »sfeed 0.9.18 was released and a separate front-end is in d…
+[0|2020-07-10 – »Bitreich Hazmat Party vol.2« by parazyd|/usr/parazyd/phlo…
+[0|2020-07-01 – »Can I Use Service For Gopher« by 20h|/usr/20h/phlog/2020-…
+[0|2020-06-26 – »Gopher Lawn Proposal System« by 20h|/usr/20h/phlog/2020-0…
+[0|2020-06-10 – »Bitreich Style Project« by 20h|/usr/20h/phlog/2020-06-10T…
+[0|2020-06-10 – »Bitreich Frontpage Revisited« by 20h|/usr/20h/phlog/2020-…
+[0|2020-06-07 – »Tales from Diversity« by 20h|/usr/20h/phlog/2020-06-07T19…
+[0|2020-06-07 – »Gopher TLS prototype in geomyidae« by 20h|/usr/20h/phlog/…
+[0|2020-06-02 – »Bitreich Rocks Library« by 20h|/usr/20h/phlog/2020-06-02T…
+[0|2020-05-31 – »Bitreich unites against Privacy Haters.« by 20h|/usr/20h/…
+[0|2020-05-31 – »Bitreichcon 2020 Recordings Are Online« by 20h|/usr/20h/p…
+[0|2020-05-24 – »Bitreich launches Data Offender Anonymous.« by 20h|/usr/2…
+[0|2020-05-23 – »Bitreich has a Crystal Math Problem« by 20h|/usr/20h/phlo…
+[0|2020-05-23 – »SECRET NEWS: Annna now has NWO support.« by 20h|/usr/20h/…
+[0|2020-05-19 – »Meme2 format.« by 20h|/usr/20h/phlog/2020-05-19T10-40-02-…
+[0|2020-05-13 – »Annna Features Now On All Channels« by 20h|/usr/20h/phlog…
+[0|2020-05-13 – »Video Conferences Suck, Audio Conferences Rule« by 20h|/u…
+[0|2020-05-10 – »Gopher Lawn Search Improved For Description« by 20h|/usr/…
+[0|2020-05-10 – »Bitreichcon 2020 Party Video Online« by 20h|/usr/20h/phlo…
+[0|2020-05-10 – »Bitreichcon 2020 slides are online. Brcon 2021.« by 20h|/…
+[0|2020-05-10 – »Atom Feed Fixed« by 20h|/usr/20h/phlog/2020-05-10T15-29-2…
+[0|2020-05-01 – »Bitreichcon 2020 Logo Revealed« by 20h|/usr/20h/phlog/202…
+[0|2020-04-30 – »The Bitreichcon 2020 ad competition prizes have arrived!«…
+[0|2020-04-29 – »Pointtools now with md2point C implementation.« by 20h|/u…
+[0|2020-04-27 – »Bitreichcon 2020 Ad Contest« by 20h|/usr/20h/phlog/2020-0…
+[0|2020-04-25 – »Bitreichcon 2020 Schedule Ready« by 20h|/usr/20h/phlog/20…
+[0|2020-04-23 – »xml2tsv added to Bitreich« by katolaz|/usr/katolaz/phlog/…
+[0|2020-04-22 – »New Friendless Social Network« by 20h|/usr/20h/phlog/2020…
+[0|2020-04-20 – »Bitreichcon 2020 Theme Has Been Decided« by 20h|/usr/20h/…
+[0|2020-04-18 – »Welcome KatolaZ to Bitreich!« by 20h|/usr/20h/phlog/2020-…
+[0|2020-04-13 – »Preliminary Schedule for Brcon 2020« by 20h|/usr/20h/phlo…
+[0|2020-04-04 – »Brcon 2020 is coming on 2nd to 3rd of May« by 20h|/usr/20…
+[0|2020-03-27 – »Bitreich Radio now relaying Coronavi.be« by 20h|/usr/20h/…
+[0|2020-03-25 – »1<<10 party aftermath, .meme file format« by 20h|/usr/20h…
+[0|2020-03-21 – »Bitreichcon 2020 will go full-online due to corona virus.�…
+[0|2020-03-14 – »1<<10 meme party will happen on 2020-03-21!« by 20h|/usr/…
+[0|2020-03-14 – »Welcome biniar, our new bitreich member!« by 20h|/usr/20h…
+[0|2020-03-09 – »Annna now has 1<<10 memes.« by 20h|/usr/20h/phlog/2020-03…
+[0|2020-03-09 – »Chemnitzer Linuxdays cancelled.« by 20h|/usr/20h/phlog/20…
+[0|2020-03-07 – »Github is following Bitreich« by 20h|/usr/20h/phlog/2020-…
+[0|2020-03-04 – »We are close to the 1<<10 meme party.« by 20h|/usr/20h/ph…
+[0|2020-03-04 – »Bitreich at Chemnitzer Linuxtage« by 20h|/usr/20h/phlog/2…
+[0|2020-02-06 – »Bitreichcon 2020 Date Announcement« by 20h|/usr/20h/phlog…
+[0|2020-01-08 – »500 Meme Party on Friday 2020-10-01, 20:00 CET« by 20h|/u…
+[0|2020-01-05 – »Bitreich at FOSDEM 2020« by 20h|/usr/20h/phlog/2020-01-05…
+[0|2019-12-31 – »End Year Meeting Recordings« by 20h|/usr/20h/phlog/2019-1…
+[0|2019-12-30 – »Bitreich End Year Council Meeting 2019« by 20h|/usr/20h/p…
+[0|2019-12-09 – »Bitreich.org web went communist.« by 20h|/usr/20h/phlog/2…
+[0|2019-08-16 – »Bitreich WWW static website now public.« by 20h|/usr/20h/…
+[0|2019-08-11 – »Bitreichcon 2019 recordings are online.« by 20h|/usr/20h/…
+[0|2019-08-09 – »Bitreichcon 2019 is over.« by 20h|/usr/20h/phlog/2019-08-…
+[0|2019-08-09 – »New Gameroom game 2ls10.« by 20h|/usr/20h/phlog/2019-08-0…
+[0|2019-07-22 – »Bitreich now has a gopher validator/lint tool.« by bob|/u…
+[0|2019-07-21 – »Eomyidae is Flying Through Gopherspace« by 20h|/usr/20h/p…
+[0|2019-07-20 – »Bitreichcon 2019 Schedule Released« by 20h|/usr/20h/phlog…
+[0|2019-07-03 – »New project on Bitreich: sup« by parazyd|/usr/parazyd/phl…
+[0|2019-06-28 – »Bitreich Presentation Reminder« by 20h|/usr/20h/phlog/201…
+[0|2019-06-10 – »Bitreichcon 2019 Registration Reminder« by 20h|/usr/20h/p…
+[0|2019-05-11 – »Bitreich conference 2019 – Registration« by 20h|/usr/20…
+[0|2019-04-21 – »Gopher Onion Initiative Friendship« by 20h|/usr/20h/phlog…
+[0|2019-03-02 – »Save the Internet« by 20h|/usr/20h/phlog/2019-03-02T06-35…
+[0|2019-02-27 – »Bitreichcon 2019 Call for Papers« by 20h|/usr/20h/phlog/2…
+[0|2019-02-27 – »Bitreichcon 2019 Weekend Poll« by 20h|/usr/20h/phlog/2019…
+[0|2019-02-27 – »Bitreichcon 2019 Logo Released« by 20h|/usr/20h/phlog/201…
+[0|2019-02-21 – »d1conf - The First Devuan Conference« by parazyd|/usr/par…
+[0|2019-02-18 – »Drist reach its v1.04 version.« by solene|/usr/solene/phl…
+[0|2019-01-27 – »Bitreich FOSDEM 2019 Meeting« by 20h|/usr/20h/phlog/2019-…
+[0|2019-01-04 – »stagit-gopher 0.9 is released.« by bob|/usr/bob/phlog/201…
+[0|2018-12-31 – »#bitreich-nl and #bitreich-lawn now exist.« by 20h|/usr/2…
+[0|2018-12-31 – »Happy New Year 2019!« by 20h|/usr/20h/phlog/2018-12-31T10…
+[0|2018-12-10 – »Gameroom now has Safe Space Invaders« by 20h|/usr/20h/phl…
+[0|2018-12-08 – »Thinglaunch and Thingmenu now on Bitreich« by 20h|/usr/20…
+[0|2018-12-07 – »Gameroom Now Has Greed« by 20h|/usr/20h/phlog/2018-12-07T…
+[0|2018-11-30 – »Drist reach its v1.00 version, this is its first release.�…
+[0|2018-11-15 – »Geomyidae v0.34 Release »Above the Oceans«« by 20h|/usr…
+[0|2018-11-11 – »Geomyidae v0.33 Release« by 20h|/usr/20h/phlog/2018-11-11…
+[0|2018-11-05 – »Bitreichcon 2019 Month Poll« by 20h|/usr/20h/phlog/2018-1…
+[0|2018-11-05 – »Intermediate Report« by 20h|/usr/20h/phlog/2018-11-05T11-…
+[0|2018-11-05 – »Bitreich Council Meeting 2018« by 20h|/usr/20h/phlog/2018…
+[0|2018-08-22 – »Radio Interview 2018, ABS Magazin, Translations available�…
+[0|2018-08-13 – »Bitreichcon 2019 Is Coming!« by 20h|/usr/20h/phlog/2018-0…
+[0|2018-08-13 – »Bitreichcon 2018 Is Over!« by 20h|/usr/20h/phlog/2018-08-…
+[0|2018-08-10 – »New Gopher-Validator Project« by 20h|/usr/20h/phlog/2018-…
+[0|2018-08-10 – »I am happy to announce the first release of clic.« by sol…
+[0|2018-08-05 – »Bitreich Conference 2018 Streams Online« by 20h|/usr/20h/…
+[0|2018-08-05 – »Bitreich On Radio, radio x« by 20h|/usr/20h/phlog/2018-08…
+[0|2018-07-28 – »New project on bitreich: dossier« by solene|/usr/solene/p…
+[0|2018-07-28 – »Bitreichcon 2018 Schedule Change« by 20h|/usr/20h/phlog/2…
+[0|2018-07-20 – »New project on bitreich: drist« by solene|/usr/solene/phl…
+[0|2018-07-14 – »New project on bitreich: notes« by solene|/usr/solene/phl…
+[0|2018-07-11 – »Bitreich.org Website Optimisation« by 20h|/usr/20h/phlog/…
+[0|2018-07-08 – »Why We Need Gopher« by 20h|/usr/20h/phlog/2018-07-08T19-5…
+[0|2018-07-07 – »Bitreichcon 2018 Is Close« by 20h|/usr/20h/phlog/2018-07-…
+[0|2018-06-29 – »Geomyidae v0.32.2 fixes release« by 20h|/usr/20h/phlog/20…
+[0|2018-06-24 – »Geomyidae v0.32.1 fixes release« by 20h|/usr/20h/phlog/20…
+[0|2018-06-22 – »Geomyidae v0.32 Release.« by 20h|/usr/20h/phlog/2018-06-2…
+[0|2018-06-22 – »Blockchain Support« by 20h|/usr/20h/phlog/2018-06-22T19-0…
+[0|2018-06-10 – »10 Tips On Making Elasticsearch Faster« by 20h|/usr/20h/p…
+[0|2018-06-05 – »The Gopher Bay« by parazyd|/usr/parazyd/phlog/2018-06-05T…
+[0|2018-05-30 – »Bitreich Gameroom Extended« by 20h|/usr/20h/phlog/2018-05…
+[0|2018-05-26 – »Bitreichcon 2018 Schedule and Location« by 20h|/usr/20h/p…
+[0|2018-05-26 – »Bitreich GDPR Party Aftermath« by 20h|/usr/20h/phlog/2018…
+[0|2018-05-25 – »The Bitreich Game Room« by 20h|/usr/20h/phlog/2018-05-25T…
+[0|2018-05-22 – »GDPR party on IRC« by 20h|/usr/20h/phlog/2018-05-22T18-20…
+[0|2018-05-02 – »Bitreichcon 2018 T-Shirts / CfP / Schedule« by 20h|/usr/2…
+[0|2018-04-11 – »An implementation of Urban Dictionary on Gopher« by paraz…
+[0|2018-04-06 – »Clic now in Bitreich Kiosk« by 20h|/usr/20h/phlog/2018-04…
+[0|2018-04-05 – »Cloud Discard Support« by 20h|/usr/20h/phlog/2018-04-05T1…
+[0|2018-04-03 – »Spring in the Lawn« by 20h|/usr/20h/phlog/2018-04-03T17-1…
+[0|2018-03-18 – »Bitreich.org Migrated to Hetzner« by 20h|/usr/20h/phlog/2…
+[0|2018-03-12 – »Bitreich at Chemnitzer Linuxtage 2018« by 20h|/usr/20h/ph…
+[0|2018-03-01 – »Day Of The GrParazyd Act I DLC2 Released.« by parazyd|/us…
+[0|2018-02-25 – »Day Of The GrParazyd Act I DLC Released.« by parazyd|/usr…
+[0|2018-02-24 – »Release sacc(1) v1.00« by quinq|/usr/quinq/phlog/2018-02-…
+[0|2018-02-24 – »Day Of The GrParazyd Released.« by 20h|/usr/20h/phlog/201…
+[0|2018-02-18 – »Geomyidae v0.31.1 release« by 20h|/usr/20h/phlog/2018-02-…
+[0|2018-02-11 – »Git Onion Access« by 20h|/usr/20h/phlog/2018-02-11T08-06-…
+[0|2018-02-09 – »Geomyidae v0.31 release« by 20h|/usr/20h/phlog/2018-02-09…
+[0|2018-02-04 – »Bitreich FOSDEMnation Meeting 2018« by 20h|/usr/20h/phlog…
+[0|2018-02-04 – »Gopher Kiosk Mode« by 20h|/usr/20h/phlog/2018-02-04T13-06…
+[0|2018-02-04 – »Annna Development« by 20h|/usr/20h/phlog/2018-02-04T13-05…
+[0|2018-02-01 – »Gopher Lawn Changes« by 20h|/usr/20h/phlog/2018-02-01T12-…
+[0|2018-01-30 – »Manifesto Change – Documentation« by 20h|/usr/20h/phlog…
+[0|2018-01-29 – »Gopher Tutorials Project« by 20h|/usr/20h/phlog/2018-01-2…
+[0|2018-01-27 – »Thoughts On Bitreich Evolution« by 20h|/usr/20h/phlog/201…
+[0|2018-01-26 – »Bitreich FTP Release Server« by 20h|/usr/20h/phlog/2018-0…
+[0|2018-01-26 – »Bitreichcon 2018 – How To Get There« by 20h|/usr/20h/ph…
+[0|2018-01-26 – »The Bitreich Documents Have Changed« by 20h|/usr/20h/phlo…
+[0|2018-01-24 – »Bitreich Chronicles« by 20h|/usr/20h/phlog/2018-01-24T17-…
+[0|2018-01-24 – »Bitreich Transparency.« by 20h|/usr/20h/phlog/2018-01-24T…
+[0|2018-01-24 – »New Projects catpoint, pointtools and utf8expr on bitreich…
+[0|2018-01-16 – »FOSDEM 2018 Bitreich Meeting« by 20h|/usr/20h/phlog/2018-…
+[0|2018-01-09 – »Bitreichcon 2018 Date« by 20h|/usr/20h/phlog/2018-01-09T1…
+[0|2018-01-02 – »Bitreich.org Back Up« by 20h|/usr/20h/phlog/2018-01-02T14…
+[0|2017-12-31 – »Bitreichcon 2018 Logo has been published.« by 20h|/usr/20…
+[0|2017-12-31 – »Happy New Year to Everyone!« by 20h|/usr/20h/phlog/2017-1…
+[0|2017-12-18 – »First Bitreich Cookbook Published« by 20h|/usr/20h/phlog/…
+[0|2017-12-16 – »Gopherproject.org updated.« by 20h|/usr/20h/phlog/2017-12…
+[0|2017-11-26 – »Bitreichcon 2018 – Call for Papers« by 20h|/usr/20h/phl…
+[0|2017-11-04 – »New Projects At Bitreich« by 20h|/usr/20h/phlog/2017-11-0…
+[0|2017-10-31 – »Web To Gopher Migration« by 20h|/usr/20h/phlog/2017-10-31…
+[0|2017-10-25 – »Gopher SEO« by 20h|/usr/20h/phlog/2017-10-25T14-31-37-768…
+[0|2017-10-06 – »Sleepwet« by 20h|/usr/20h/phlog/2017-10-06T13-42-34-67094…
+[0|2017-09-29 – »Why We Need Gopher« by 20h|/usr/20h/phlog/2017-09-29T12-2…
+[0|2017-09-29 – »Geomyidae 0.29 release« by 20h|/usr/20h/phlog/2017-09-29T…
+[0|2017-09-09 – »Principle Of Fun« by 20h|/usr/20h/phlog/2017-09-09T18-18-…
+[0|2017-09-03 – »Bitreich Conference System / Discussion« by 20h|/usr/20h/…
+[0|2017-09-03 – »Bitreich Conference System« by 20h|/usr/20h/phlog/2017-09…
+[0|2017-08-27 – »Phlog System – Atom Feed« by 20h|/usr/20h/phlog/2017-08…
+[0|2017-08-27 – »Containers« by 20h|/usr/20h/phlog/2017-08-27T09-36-09-056…
+[0|2017-08-27 – »Certifications« by 20h|/usr/20h/phlog/2017-08-27T07-39-54…
+[0|2017-08-27 – »Bitreich on IRC« by 20h|/usr/20h/phlog/2017-08-27T07-28-0…
+[0|2017-08-27 – »Projects Status 08/2017.« by 20h|/usr/20h/phlog/2017-08-2…
+[0|2017-08-27 – »Source Code Management at Bitreich« by 20h|/usr/20h/phlog…
+[0|2017-08-27 – »Annna, our bot.« by 20h|/usr/20h/phlog/2017-08-27T07-04-2…
+[0|2017-08-26 – »Phlog System – How To Publish« by 20h|/usr/20h/phlog/20…
+[0|2017-08-26 – »Phlog System« by 20h|/usr/20h/phlog/2017-08-26T20-04-02-4…
+[0|2017-04-02 – »Bitreichcon 2017« by 20h|/usr/20h/phlog/2017-04-02T17-37-…
+[0|2017-01-22 – »Welcome to Bitreich.org!« by 20h|/usr/20h/phlog/2017-01-2…
+[0|2017-01-22 – »GOPHER LAWN PROJECT« by 20h|/usr/20h/phlog/2017-01-22T19-…
+
+[1|<< back to bitreich.org|/|server|port]
+
diff --git a/opus3/article-heaven-and-computers.mw b/opus3/article-heaven-and-c…
@@ -0,0 +1,23 @@
+.SH tgtimes
+Heaven and computers
+.
+.PP
+Before the era of smartphones, laptops, before Windows and Apple,
+there were pioneers who took the fun of computers from the hands
+of the the few who could afford computers, and shared them massively
+so that mere individuals could afford it.
+.
+.PP
+An ocean of creativity sprout. Art of all kind were made on these
+new toys, that were permitting to many to try on its own, or enjoy
+a tune of 8-bit music, a demo scene, a play of video game, an ASCII
+art...
+.
+.PP
+Offering these pioneers a one-way ticket to enter the legend,
+8bitlegends.com builds a corner of peace, making some room into our
+heart for the 8bit heroes.
+.
+.DS
+https://8bitlegends.com/
+.DE
diff --git a/opus3/article-tgtimes-100-years-of-radiodiffusion.mw b/opus3/artic…
@@ -1,5 +1,5 @@
.SH tgtimes
-
+100 years of radiodiffusion
.
.DS
https://www.francetvinfo.fr/culture/patrimoine/histoire/il-y-a-100-ans-la-prem…
diff --git a/opus3/article-tiny-creatures.mw b/opus3/article-tiny-creatures.mw
@@ -0,0 +1,19 @@
+.SH tgtimes
+A world of tiny creatures
+.
+.PP
+Ants. Is that what we would look like to the eyes of a giant? What
+if one of those giants had the curiosity of looking down on our
+world, watching all our tiny activities, our tiny trades, our tiny
+farming, our tiny meals, our tiny families, our tiny lives.
+.
+.PP
+E.O. Wilson was one of these giants, looking at the ants: the real
+ones, the insects ones: An entomologist, someone dedicated to the
+study of insects.
+.
+.PP
+After 92 years of passionated life, E.O. Wilson is fading away,
+joining the soil, which he spent its life observing. Closing its
+own book, while at the same time inviting everyone to open their
+eyes, and watch, carefully, this world of tiny creatures.
diff --git a/opus3/article-unix-calendar-command.mw b/opus3/article-unix-calend…
@@ -0,0 +1,67 @@
+.SH tgtimes
+The UNIX calendar(1) command
+.
+.PP
+It is probably there sitting on \fC/usr/bin\fR, the
+calendar(1) command can offer you a fair dose of flexibility that
+lack to web-based or smartphone-based calendars.
+.
+.PP
+By storing events on a single file of text edited by hand, calendar(1)
+brings the comfort of your existing text editor to manage events with
+a simple syntax:
+.
+.IP •
+one line per event: first a date, then a tab, then a description.
+.
+.IP •
+A line starting with a tab implicitly has the
+same date as the previous event.
+.
+.IP •
+Empty lines are ignored, and the C preprocessor brings \fC#include\fR
+and \fC/* comments */\fR as needed.
+.
+.PP
+No need to format everything right away: taking notes at the end
+while in the middle of a phone call and formatting after hanging-up
+is making it trivial to manage a calendar.
+.
+.PP
+while the calendar(1) command is run, events today and tomorrow are
+printed (with more choice of durations using flags), giving a digest
+of what is upcoming.
+.
+.PP
+A command line flag permits to send the calendar digest to all users
+by email, making it a complete suite to use as a calendar.
+.
+.PP
+There is even support for weekly, monthly and yearly (birthdays)
+events.
+.
+.PP
+Sharing calendar events is as easy as sending the section of the
+calendar file by email, and synchronising the calendar across devices
+is a matter of synchronising a single file.
+.
+.PP
+By adding a few more custom syntax rules, a rather pretty digest can
+be written with very few effort.
+.
+.DS
+Jan 23 09:00 Breakfast with cooked eggs and fruits
+ @ Home Sweet Home
+
+ 10:30 The Gopher Times proof-reading
+ @ ircs://irc.bitreich.org/#bitreich-en
+
+ 15:30 On-call duty untill!
+ @ https://the-dull-gull.corp/login
+
+Jan 24 12:30 Lunch break in town with folks
+ @ that small cafe that does snacks
+
+Jan 26 19:15 Call with friends abroad
+ @ mumble://cool-place.org/?version=1.2.0
+.DE
You are viewing proxied material from bitreich.org. The copyright of proxied material belongs to its original authors. Any comments or complaints in relation to proxied material should be directed to the original authors of the content concerned. Please see the disclaimer for more details.