The phrase ā€œSEXUALLY-EXPLICITā€ comprises 17 characters, including the dash between the two words. The colon (:) and the space following the phrase are the 18th and 19th characters.


#j4zxmqq

is there fediverse lore written down anywhere? like ā€“ there was that one person who had a coworker who ate dog food, right? and ā€“ fuck brewster kahle? I donā€™t want to be the one who makes this list but I want it to exist


#3rzbndq

Still in the process of transitioning from Dark Sky to Appleā€™s built-in weather app on my phone. Not sure what Iā€™m going to use on the desktop. Iā€™ve actively hated darksky.net for years because it never recognizes or remembers my location, but I keep going back. Old habits die hard.šŸ˜


#o2o5ola

Filled the yard waste bin and three garbage bags with pine needles and Iā€™m still not done! Pretty much par for the course for this time of year, but Fridayā€™s wind storm amped things up a bit. Time to get back to it.


#yz5uh3q

pondering whether I want to make an alt for faust.land microbloggy content. it is currently managed much more manually than maya.land (zero cron? in a maya project?? :ACNH_Shocked:) butā€¦


#7ayqhia

Playing with feeds and replies this morning during the Spurs game. Replies to feeds donā€™t seem to work quite like Iā€™ve been expecting and feed posts donā€™t seem to be editable.


#emlgjra

Took a break from regular microblogging (on a friendā€™s site) when I went on vacation back in July and never started up again. Decided to host my own yarn.social pod a couple weeks ago and finally got it working tonight.


#m2ouwcq

I have a round robin sort script that I use for Miniflux, so I can have a page load hundreds of posts, then round robin sort them by feed. Would that be useful on Mastodon? Is that worth trying? Hmm.


#hf2istq

I wrote this little thing

doas -u _postgresql psql --dbname=maddy --host=localhost --username=maddy "UPDATE passwords SET value = '$(maddy hash --password "$1")' WHERE key = '$2' AND value = '$(maddy hash --password "$3")'"

First argument is the new password (hashed of course), the second being the username, the third being the old (current) password. I havenā€™t yet tried this but I might now.


#e2hjhua

(#6wzkhqa) This is an updated revision (which throws the same error though):

#!/usr/local/bin/haserl --accept-all
Content-Type: text/html

<html>
<head>
<link rel="stylesheet" href="https://cdn.kyoko-project.wer.ee/@mirage/mirageCSS/dark.css">
<title>KyokoMail: Change account password</title>
</head>
<body>              
<h1>Change account password for KyokoMail</h1>
<p>Warning: to use this form you <b>must</b> have an account on this service, otherwise, get out.</p>
<form action="<% /usr/local/maddy/maddy creds password --password %>" method="GET">
<p>
Username:
<input type="text" name="username" cols="20" placeholder="username@kyoko-project.wer.ee" required="required"/>
</p>
<p>
New password:
<input type="password" name="new_password" cols="20" required="required"/>
</p>
<input type="submit" value="Go" />
</form>
</body>
</html>

Looks like I canā€™t make use of haserl for these kind of things


#iakzzda

(#6wzkhqa) #!/usr/local/bin/haserl --accept-all Content-Type: text/html <html> <head> <link rel="stylesheet" href="https://cdn.kyoko-project.wer.ee/@mirage/mirageCSS/dark.css"> <title>KyokoMail: Change account password</title> </head> <body> <h1>Change account password for KyokoMail</h1> <p>Warning: to use this form you <b>must</b> have an account on this service, otherwise, get out.</p> <form action="<% /usr/local/bin/maddy creds password --password $FORM_new_password_again $FORM_username %>" method="GET"> <p> Username: <input type="text" name="username" cols="20" placeholder="username@kyoko-project.wer.ee" required="required"/> </p> <p> Current password: <input type="password" name="old_password" cols="20" required="required"/> </p> <p> New password: <input type="password" name="new_password" cols="20" required="required"/> </p> <p> New password (repeat): <input type="password" name="new_password_again" cols="20" required="required"/> </p> <input type="submit" value="Go" /> </form> </body> </html>


#kd5rwaq