šŸ“ŗ I’ve been enjoying Shantaram on AppleTV quite a bit. I’ve never read the novel, but I may have to track it down. 1980s era Bombay is a fascinating milieu and I find the characters and story quite compelling


#dk4uj5a

this is from the can spam act. why did they choose the hyphen. do they actually require a dash instead of a hyphen. i have questions and no one should take the time to give me answers


#kr2kzga

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