Email or username:

Password:

Forgot your password?
26 posts total
Show previous comments
Joe Wein

@geerlingguy

$ cat /usr/local/bin/when
#!/bin/bash
if [ -z "$(echo "$1" | egrep "^[0-9]{10,19}$")" ]; then
echo "Usage: $0 epoch" 1>&2
exit 1
fi

t=${1:0:10}
nano=${1:10}

date -d @$t "+%Y-%m-%d %H:%M:%S"

Jeff Geerling

RISC-V isn't killing Arm (yet)

But the Mars CM is a nifty little board!

Video: youtube.com/watch?v=RhPKZ5JpbH

Jeff Geerling

Cool tool - C2C caberQU USB-C cable tester.

Finally easy to see which cables do data, or just USB 2.0, etc.

heyda.tech

@geerlingguy love this! I have a growing pile of usbc cables... I even have one that delivers power only.

Gina Häußge

@geerlingguy I have a more basic variant of such a tool that has helped me getting rid of some power only cables.

Yours looks more fun though ^^

Jeff Geerling

We've reached the stage where defenders of corporate open source (vs FOSS supporters) are attacking my character and motivations.

If arguing on merit doesn't work, attack the person?

Jeff Geerling

I think the thing I dislike about Mastodon the most is kind of a core part of the federation:

There are so many times I end up on a toot page on some instance that's not my primary instance, and I go to 'retoot' (boost) the thing, then up pops the whole "you have to copy this address, go to your instance, paste it in search, then you can retoot it there" schpiel

Too much cognitive overhead, and the workflow is terrible on touchscreen, so I just don't do it.

Jeff Geerling

Centralization would solve it... but then that's kind of antithetical to the whole fediverse.

Also I remember there's a Mac client for Mastodon now (Ivory for Mac), need to try it out.

Dr. Quadragon ❌

@geerlingguy To be honest though, the sheer fact you can do it at all is kind of amazing all in itself.

Alexey Skobkin

@geerlingguy
This could probably be solved by Fediverse/ActivityPub URL schema. Then your instance could register itself as a web handler.

developer.mozilla.org/en-US/do

Go Up