Recent activity

Re: [PATCH gio] Fix startup crash on openbsd from libGLESv2 naming a month ago

From Daniel Wilkins to ~eliasnaur/gio-patches

btw, I'm not on this list. Please include me on any replies. Just a drive-by
patch to let me use an app that uses gio :)

[PATCH gio] Fix startup crash on openbsd from libGLESv2 naming a month ago

From Danny Wilkins to ~eliasnaur/gio-patches

Signed-off-by: Danny Wilkins <tekk.tonic@aol.com>
---
 internal/gl/gl_unix.go | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/internal/gl/gl_unix.go b/internal/gl/gl_unix.go
index def00859..a1de57e6 100644
--- a/internal/gl/gl_unix.go
+++ b/internal/gl/gl_unix.go
@@ -665,7 +665,7 @@ func (f *Functions) load(forceES bool) error {
	case runtime.GOOS == "android":
		libNames = []string{"libGLESv2.so", "libGLESv3.so"}
	default:
		libNames = []string{"libGLESv2.so.2"}
[message trimmed]

[PATCH] fix install on non-linuxen a month ago

From Danny Wilkins to ~whereswaldon/arbor-dev

---
 install-linux.sh | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/install-linux.sh b/install-linux.sh
index f685984..f1e1dda 100755
--- a/install-linux.sh
+++ b/install-linux.sh
@@ -12,7 +12,7 @@ ICON_DIR=$PREFIX/share/icons
if [ ! -d "$BIN_DIR" ]; then
    mkdir -pv "$BIN_DIR"
fi
install -v "$BASEDIR/sprig" "$PREFIX/bin/sprig"
install "$BASEDIR/sprig" "$PREFIX/bin/sprig" && echo "$PREFIX/bin/sprig"
[message trimmed]

Tips And Tricks 8 months ago

From Danny Wilkins to ~tekk/old-computer-challenge

Alright, we're (at least for me) more than halfway through day 2. Anyone have clever solutions they know about which are worth preserving somewhere that gets logged, unlike IRC?

For w2k users: the latest version of dropbear will actually compile and run on a win2k cygwin. You just have to edit the makefile produced by configure to remove the stack protector flags to gcc.
 
---
New Outlook Express and Windows Live Mail replacement - get it here:
https://www.oeclassic.com/

Test 8 months ago

From Daniel Wilkins to ~tekk/old-computer-challenge

We've had a bunch of sign-ups, so just sending a message to make sure
everything's working properly!

That and if we have anyone in Australia consider this your starting message,
I suppose.

Tekk

Re: Hello! 1 year, 5 months ago

From Daniel Wilkins to ~tekk/old-computer-challenge

On Fri, Oct 07, 2022 at 02:31:04PM +0000, prahou wrote:
> This is my introductory email to the mailing list.
> 
> It's me, prahou. I updated the archive website 
> and added relevant channels on how to join the
> occ club ;)
> 
> https://www.triapul.cz/occ/
> 
> Bye.
Welcome to the list :D

[PATCH] Document 'd' shortcut for sprig, minor cleanups. 2 years ago

From Danny Wilkins to ~whereswaldon/arbor-dev

---
 getting-started.md | 13 +++++++------
 1 file changed, 7 insertions(+), 6 deletions(-)

diff --git a/getting-started.md b/getting-started.md
index 7f030b4..6c83c23 100644
--- a/getting-started.md
+++ b/getting-started.md
@@ -26,22 +26,23 @@ To the right of the selected message, there is a `Reply` button. Clicking that r
At the top of the message view, there are four buttons. From left to right:

- Hamburger menu
  - Switch between the settings, the conversation view, and other pages
  - Switch between the settings, the conversation view, and other page.
[message trimmed]

[PATCH] Add a version of giohyperlink that supports BSDs 2 years ago

From Danny Wilkins to ~whereswaldon/arbor-dev

---
 go.mod | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/go.mod b/go.mod
index de9b27c..502da43 100644
--- a/go.mod
+++ b/go.mod
@@ -12,7 +12,7 @@ require (
	git.sr.ht/~whereswaldon/forest-go v0.0.0-20210610022432-d59588450728
	git.sr.ht/~whereswaldon/latest v0.0.0-20210304001450-aafd2a13a1bb
	git.sr.ht/~whereswaldon/sprout-go v0.0.0-20210408013049-fedf4ae2e7f8
	github.com/inkeliz/giohyperlink v0.0.0-20201127153708-cb2dff56ac99
	github.com/inkeliz/giohyperlink v0.0.0-20210728190223-81136d95d4bb
[message trimmed]

Deploy Scripts 3 years ago

From Daniel Wilkins to ~whereswaldon/arbor-infra

I'm logging off for the night but the first pass of the deploy is now
available at https://git.sr.ht/~tekk/arbor-infra
The basic workflow:
You make your changes in setup.go
If you need to copy config files, those will go in deploy/files

To test your changes or run a deploy, invoke the deploy.sh shell script
with the IP you want to set up.

The deploy script is more or less trivial. It does the following:
Has mage compile the magefile
Tars up the deploy directory
scps it to the remote server's root home
sshes into the server as root, untars, executes the magefile.

User Password Handling 3 years ago

From Daniel Wilkins to ~whereswaldon/arbor-infra

Working on the deploy scripts I ran into the first thing I want some
opinions on.
First: I figure it's easiest to just have a single admin user who
everyone on The List can log into.
Is anyone opposed to this?

Second: Given this, how do we want to handle sudo?
Does the admin user (who can only be logged in via ssh key) have
passwordless sudo access or should we have a shared password we just
keep secret?