Pinellas County - Long Run: 11.00 miles, 00:09:38 average pace, 01:46:02 duration
just one of those ones you never want to stop. it was dark, quiet, and lonely which just let me zone out with the cool weather and maintain what felt easy. didnāt look at the watch until the end when it notified me it was going to die. adjusted the mileage and time to reflect.
#running
For some reason, I was using calc all this time. I mean, itās good, but I need to do base conversions (dec, hex, bin) very often and you have to type base(2)
or base(16)
in calc to do that. Thatās exhausting after a while.
So I now replaced calc with a little Python script which always prints the results in dec/hex/bin, grouped in bytes (if the result is an integer). Thatās what I need. Itās basically just a loop around Pythonās exec()
.
$ mcalc
> 123
123 0x[7b] 0b[01111011]
> 1234
1234 0x[04 d2] 0b[00000100 11010010]
> 0x7C00 + 0x3F + 512
32319 0x[7e 3f] 0b[01111110 00111111]
> a = 10; b = 0x2b; c = 0b1100101
10 0x[0a] 0b[00001010]
> a + b + 3 * c
356 0x[01 64] 0b[00000001 01100100]
> 2**32 - 1
4294967295 0x[ff ff ff ff] 0b[11111111 11111111 11111111 11111111]
> 4 * atan(1)
3.141592653589793
> cos(pi)
-1.0
The fact that the official Python docs donāt clearly state what a function returns, grinds my gears. This has cost me so much time over the years. You always have to read through a huge block of text.
You could at least put a list of possible return values in there (always at the same location, please!), hereās a mockup:
@kat@yarn.girlonthemoon.xyz Static angles for too long get indeed a bit boring to watch in my opinion, but just experiment with it. Whatās the worst that could happen? Wasted disk space or people increase playback speed to time lapse or fast-forward. Hence, not a huge issue. Even if only you had fun recording it and learned something along the way, itās already a win. Everything else is a bonus on top.
i recorded my first camcorder video!!!! itās just me practicing guitar after sooo long of not playing it. my acoustic, to be specific (well, itās an electric acoustic thing but i can play it without plugging it in lol, i do have a stratocaster though). itās capped at ~30 minutes because i used one mini DVD for it and decided i wasnāt gonna use another one to extend the run time. so yeah. it was super fun! i hope i can share it soon, iām ripping the disc with make MKV right now, then iāll re-encode to a web friendly format, and upload to my site and hope that works well
@kat@yarn.girlonthemoon.xyz Iām an absolute sucker for all sorts of crafts videos, mostly wood and metal working, but also leather and construction. So obviously, your Tux sewing project would make a good video in my opinion. :-D (But I fear it would require way more work than just talking into the camera. Think of camera setup time with framing and focusing, repositioning a couple of times, editing, yada, yada, yada. I documented wood working build processes in my shop in the past and it made the projects take easily ten times as long, if not more. So, I stopped doing that.)
As kids we recorded some action films on magnetic tape camcorders. That was also great fun.
Couldnāt find anybody to join me this arvo, so I went alone. Only in the forest I began to see real snow. And then of course with each meter of elevation gain. I reckon there were 5-6Ā cm at the summit, so there is still room for improvement. The weather was absolutely stunning, a sunny blue sky alternating with clouds, most of my hike hardly any wind and 1°C. Climbing the mountain was a different story, the wind hit me hard.
I just love the wind-brushed formations of ice on the twigs and branches. They look soooo incredibly cool. It was kinda hard to capture them on film with the wind pushing everything around.
On the way down I took the narrow and currently fairly slippery path that was closed for some weeks due to felling activity. It looks so different with heaps of trees on the ground now. Theyāve also sawn down the tree with the small hole near the ground (which I think Iāve shown a few times in the past). The beech in 52 to 54 was probably hit by lightning a few months ago. At least itās completely charred.
This year is a perfect square: 2025 = 45². Most of us reading this at time of posting wonāt be alive next time that happens since 46² = 2116, 91 years from now. This has been bouncing around the internet but for some reason I felt compelled to record it here!
messing with gemini again, this time a static site generator called gssg - https://git.sr.ht/~gsthnz/gssg
my capsule is linked in my profile but just in case itās over at gemini://lazuli.sayitditto.net
Donāt waste your time. You can find builds in dist directory. Also itās abandoned app which have more bugs
another cli test for icons this time
Had to turn my freeBSD pet computer off in hopes of saving a couple of pennies off of the power bill. š„² And having had a blast spending time living in tty earlier this year, I thinking about daily driving the RPi4B for a while and let the main beast hibernate as well š§
Time Capsule Instructions
ā Read more
@emmanuel@wald.ovh Btw I already figured out why accessing your web server is slow:
$ host wald.ovh
wald.ovh has address 86.243.228.45
wald.ovh has address 90.19.202.229
wald.ovh
has 2 IPv4 addresses, one of which is dead and doesnāt respond.. Thatās why accessing your website is so slow as depending on client and browser behaviors one of two things may happen 1) a random IP is chosen and ½ the time the wrong one is picked or 2) both are tried in some random order and ½ the time its slow because the broken one is picked.
If you donāt know what 86.243.228.45
is, or itās a dead backup server or something, Iād suggest you remove this from the domain record.
@prologic@twtxt.net Itās hosted at home on an computer I didnāt use anymore. It worked well for a few months, and since maybe the beginning of December, it begun to be very slow. But like I said, I have no time for that now, but if I have questions when Iāll look, Iāll think of you š (but I was thinking about installing a new OS before these problems, I may just do that).
After taking a short break for Christmas business, Iāve worked on my little toy operating system for the 8086 again.
It understands the basics of FAT12 now. Iāve actually never sat down before to learn how FAT works. 𤦠Well, better late than never, I guess.
It canāt do subdirectories nor timestamps and I probably wonāt implement that. One flat directory is good enough for my purposes and the OS has no notion of time, yet, anyway.
Itās really cool to be able to exchange files with the Linux host or other DOS VMs. š„³
I donāt know, the entire wald.ovh site always times out for me.
I finally watched āC++17: I See a Monad in Your Futureā and it was rather nice (at least in 1.8 times speed): https://www.youtube.com/watch?v=BFnhhPehpKw I finally also learned why the auto
syntax exists (to allow specifying a return type that depends on the argument).
You are clearly a time traveler, @xuu@txt.sour.is!
My 400th Twtxt Post will be about you: wishing you, reader of my Twtxt feed, all the best for the coming year and most of all love, health, and that your projects and work may contribute to the greater good of all mankind. I will be taking a social-media break for a couple of weeks to enjoy this special time with my family. I hope you will be able to do this with your family and friends too.
If there hadnāt been a better time than now to leave the hatred filled cesspool network of right-wing craziness, aka X - then I wouldnāt know when would be.
Tab
and expected it to auto-complete. š¤¦
@movq@www.uninformativ.de HAHA! speaking of reflexes, Ctrl+SHIFT+v
to paste and Ctrl+a
to get to the start of the line, get me all the time when Iām using a browser ⦠Ctrl+w
(delete back a word) is the worst! tabs go Pouf! š„²
9fans is now a moderated list. Itāll take time, but Iām hopeful we can get it back to being a good source of discussion. https://9fans.topicbox.com/groups/9fans/T124eb3ec9c594189-M83bd6a0d97304a9b5cffd91d/9fans-now-moderated
Iāve talked about how I do backups on unix a bunch of times, but someone asked again today and I realized I didnāt have it written down where I could point to. So I wrote a lab report: http://a.9srv.net/reports/index.html#vac-unix
@movq@www.uninformativ.de Right, you showed this keyboard stand some time ago. I completely forgot about that.
All this, really makes me want to touch some Blender, itās been a while since last time I did xD ⦠Iād better give it a spin while I still can xD.
METAR
ā Read more
Despite being a gray day, I still decided to have a longer lunch break and went for a stroll in the woods: https://lyse.isobeef.org/waldspaziergang-2024-12-12/ Just returned in time for the next meeting.
LMAO! 𤣠Iāve had @doesnm@doesnm.p.psf.ltās nick linked to @prologic@twtxt.netās url for this feed the whole time !! š¤¦
I hear you, @movq@www.uninformativ.de! I have to wait five seconds after opening any Jira ticket before the JS garbage has eventually fetched all the other information and rebuilt the DOM. Only then I can actually begin to scroll down to the information Iām after. Every fucking time.
tt
Go rewrite produces some colors. There is definitely a lot more tweaking necessary. But this is a first step in the right direction.
Thank you @bender@twtxt.net and @movq@www.uninformativ.de!
I partially fixed the code block rendering. With some terrible hacks, though. :-( I see that empty lines in code block still need some more work. There are also some other cases around line continuation where the result looks ugly. I have to refactor some parts to make this go more smoothly and do this properly. No way around that.
Turns out, my current message text parser does not even parse plain links. Thatās next on the agenda.
Oh, I also noticed that this thing crashes when there is not enough space to actually draw stuff. No shortage of work. Anyway, time is up, good night. :-)
We had a great weekend overall. N. loves ice-skating and we had a nice time with friends today playing a round of bowling and visiting the Dussy christmas market.
Added TwtHash hashes to every message on my personal Twtxt HTML renderer. Code is not yet ready for prime-time. Need to work out some kinks still.
Thank you, @movq@www.uninformativ.de! Luckily, I can disable it. I also tried it, no luck, though. But the problem is, I donāt really know how much snakeoil actually runs on my machine. There is definitely a ClownStrike infestation, I stopped the falcon sensor. But there might be even more, Iāve no idea. From the vague answers I got last time, it feels like even the UHD/IT guys donāt know what is in use. O_o
Yeah, it is definitely something on my laptop that rejects connections to IPv4 ports 80 and 443. All other devices here can access the stuff without issue, only this work machine is unable to. The āConnection refusedā happens within a few milliseconds.
Unfortunately, I do not have the slightest idea how it works. But maybe I can look into that tomorrow. Kernel modules are a very good hint, thank you! <3
Youāre right, it might be some sort of fail-safe mechanism. But then, why just block IPv4 and not also IPv6? But maybe because the VPN and company servers require IPv4, there is zero IPv6 support. (Yeah, donāt ask, I donāt understand it either.)
Fuck me dead, what a giant piece of shit. On my Linux work laptop I have the problem that some unknown snakeoil āsecurityā junk is dropping any IPv4 connections to ports 80 and 443. All other ports and IPv6 seem unaffected. I get an immediate āconnection refusedā when trying to estabslish a connection.
I had this problem four weeks ago on Friday morning the very first time at home. On Thursday evening, everything was perfectly fine. Eventually, I plugged in the LAN cable in the office and everything got automatically fixed. Nobody can explain whatās happening.
Then, last week Friday morning out of the blue, the same issue was back. So, I went to the office yesterday and it got fixed again by plugging in the network cable. This evening, I have exactly the same bloody problem again.
What the hell is going on? Does anyone have any ideas? Iām certainly not an expert, but I donāt see anything suspicious in iptables or nft rules. I also do not see anything showing up in /var/log/kern.log. Even tried to stop firewalld, flush the iptables and nft rules, but that didnāt result in any changes.
# nick = skinshafi
so... should I scream buuug ? š¤
@prologic@twtxt.net Twtxt wise, it was kind of disparate at first xD with no access to logs as you may have read on the alt-feed itself. But then, @sorenpeter@darch.dkās script came to the rescue ⦠like, just in time š Otherwise, everything else is fun as publicised, exploring and learning along the way.
Beautiful shot @movq@www.uninformativ.de 𤩠⦠Iāve always had a hard time taking pictures in a foggy atmosphere, it never looks as dense as it does IRL. Any tips? š„¹
Bluesky Passes Threads for Active Website Users, But Confronts āScammers and Impersonatorsā
Bluesky now has more active website users than Threads in the U.S., according to a graph from the Financial Times. And though Threads still leads in app usage, āPrior to November 5 Threads had five times more daily active users in the U.S. than Bluesky⦠Now, Threads is only 1.5 times larger tha ⦠ā Read more
@movq@www.uninformativ.de Oh man, this is beautiful! We had sunshine all day long. But it was cold, too. When I left the house in the late afternoon, the sun was creating this magical red light. I just hit the right time, all the autumn colors popped out like crazy when I walked down the street. Didnāt bring my camera, though.
@eapl.mx@eapl.mx Yes, the idea is to add User Agent support to #Timeline.
Right now it just adds every request to a growing log file, but I have also been working on a way to analyse it, so it only saves the time of the latest request.
Iām not sure how to make it part of timeline itself, since it requeses that you redirect/rewrite from twtAgent.php
to the acctual twtxt.txt
Help with making Timeline send proper User Agents to others would be much appreciated:)
@johanbove@johanbove.info Thanks, Iām glad you like it.
@movq@www.uninformativ.de There was no time for discussion just after the presentation, but I had a chat with some folks later.
Second Stage
ā Read more
@movq@www.uninformativ.de Iāll ask them when I see somebody around next time. :-)
@bender@twtxt.net Given that I havenāt posted in so long, my lines of twtxt per unit time average is probably lower than most! Iām a bursty twtxter.
End of year holidays are a mix of sadness and happiness for me. I canāt help but remembering those who are gone, with which I spent so many good times. A part of me wants to feel happy, and celebrate another completed round around the Sun, while the other feels sad because of those I will never see again.
@prologic@twtxt.net make it 0.25% I had to reboot, āOne⦠More⦠Timeā š¶
@prologic@twtxt.net Wait a second⦠something aināt right here! when you say dropped to
does that mean my feed isnāt reachable 99.77% of the time? all the time? Within last N days/hours? (the numbers were 98.29% the other time) or⦠my feed became more available After an outage? š¤š
Whatās made you unlock twitch.tv?
A couple of events where my only choices for watching them are: Twitch, Youtube or Fartbook.
What are you doing differently?
TL;DR: I stopped going there unless I have to for the reason above.
I used to spend Waaaaay too much time on the platform. I had a whole setup using Streamlink, MPV and Chatterino where sometimes, Iād have up to 10 concurrent open streams all day long on a secondary monitor (thanks to tiling window managersā magic), some I was interested in watching, some I moderated for a couple of friends and some Iāve had open just for support (helping new streamers in the community with their numbers till they take off and such). Theeen something happened to one of my loved ones, so I had to stop all the nonsense and spend that time and attention with the person who deserves it the most. I blocked the platform at first since I had a habit to type twit...
as soon as I opened a browser š
(addiction is real) and now I donāt. (That reflex got replaced with typing twtxt...
instead š)
@bender@twtxt.net Nobody would notice if stopped auto-syncing my twtxt file 3:) and If Iām careful enough Iād have plenty of time to fix my mess