@bmallred@staystrong.run Oh no! Best of luck to restore everything. Unfortunately, I cannot provide you a copy of your twtxt feed. It turns out when the messages were gone from your feed and I refetched the now empty feed, all messages were also dropped from my local cache. :-/ But it looks like youāre on something already. The message timestamps are all way off, though.
iām pretty sure iām running this all off sqlite so if i get too many users on here i might be cooked but oh well i can always try to migrate (<ā has heard migrations from sqlite to mysql/postgres are hell)
@bmallred@staystrong.run did you rotate your twtxt file or something happened to your twts? š¤ asking just in caseā¦
iāve been transitioning CLI text editors from nano (godforsaken editor) to micro (normal and not overly opinionated to the point where i feel like iām defusing a bomb trying to learn its keybindings) and the only weird thing is that i canāt get it to persist an alias from nano to micro when i run sudo despite me configuring that. well at least on my servers, it persists on this machine. idk iāll look at it later
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
base(2)
or base(16)
in calc to do that. Thatās exhausting after a while.
@movq@www.uninformativ.de Thanks! I already found it and patched it to run in my ancient Python version (no match
keyword and exec(ā¦)
only allows globals
and locals
as positional arguments). :-) https://lyse.isobeef.org/tmp/mcalc-patched.py.txt
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
I am now proud to say, that as of this moment, I am off of Clownflare 𤣠Still using Cloudflare for DNS, but no longer proxying through their services or terminating TLS at their edge. Instead, all my sites and services now terminate TLS on my own edge proxy running Caddy+Wireguard (so all ingress is actually egress š¤£) š„³ #Clownflare #Cloudflare
Easy: 4.06 miles, 00:08:51 average pace, 00:35:59 duration
51F this morning with a bit of a breeze which was great. felt easy but i think the enjoyment of being outside brought my pace and heart rate up a bit. actually slept well last night and woke up refreshed⦠been about a month or more i think.
#running
Okay, this is pretty cool. My 8086 toy OS running on my old Pentium from an actual floppy disk. š I just love that sound and the feeling of using floppies. This brings back so many memories from my early DOS days.
The cp-unopt
program copies a file and intentionally uses small unaligned reads/writes (hopefully triggers more bugs).
The I/O cache works āokay-ishā, I guess. When sha1
runs, it has to do a few reads for the first file and basically none for the second one. Both could have been served entirely from the cache, theoretically. (But even just having an I/O cache in the first place speeds up things dramatically.)
Notice how thereās an EA
file. Thatās a left-over from OS/2, because I copied some files to the floppy using OS/2. In other words, my FAT12 implementation survives OS/2 writing to it. š„³ (But I guess it should show up as EA DATA.SF
. My current code starts at the left and stops at the first space.)
https://movq.de/v/d4d50d3c74/los86-on-p133-from-floppy-small2.mp4
Recovery run: 6.21 miles, 00:09:19 average pace, 00:57:51 duration
just running to run. a bit worn out recently so just stuck to the treadmill. first two miles at 10:00, next two and three quarters at 8:34, a quarter mile at 7:30, and a cool down at 10:00 again.
#running #treadmill
Pinelles County Cycling: 1.12 miles, 00:11:02 average pace, 00:12:20 duration
Pinelles County Cycling: 1.12 miles, 00:10:19 average pace, 00:11:32 duration
:diffoff
a vim command...
@prologic@twtxt.net it offends someone with a diff
erent opinion? š¤£
No, seriously⦠:diffoff
is used to disable vimās diff mode thatās usually started running vim -d someFile someOtherFile
or by having both files on a split window and applying :diffthis
on both panes. (just learned this this morning)
Pinellas County - Long Run: 13.13 miles, 00:10:34 average pace, 02:18:44 duration
woke up exhausted and felt it the entire day. broke the run up a bit with a mile on/off intervals. the faster pace felt good but towards the end of each i could feel the fatigue accumulating. fucking humid with none of the expected rain which was a disappointment.
#running
Pinelles County Cycling: 1.80 miles, 00:09:33 average pace, 00:17:14 duration
Pinelles County Cycling: 1.79 miles, 00:08:08 average pace, 00:14:33 duration
@prologic@twtxt.net, do you run a Minecraft server for your children? If so, which one?
Easy: 5.06 miles, 00:09:53 average pace, 00:50:02 duration
nice easy run.e definitely feeling the extra weight from all the holidays. probably could go hibernate safely if i wanted to.
#running
Pinellas County Running: 8.10 miles, 00:09:35 average pace, 01:17:37 duration
needed to get out and get away from everything for a bit. turned into eight miles but was just what i needed.
#running
Iāve been making a little toy operating system for the 8086 in the last few days. Now that was a lot of fun!
I donāt plan on making that code public. This is purely a learning project for myself. I think going for real-mode 8086 + BIOS is a good idea as a first step. I am well aware that this isnāt going anywhere ā but now Iāve gained some experience and learned a ton of stuff, so maybe 32 bit or even 64 bit mode might be doable in the future? Weāll see.
It provides a syscall interface, can launch processes, read/write files (in a very simple filesystem).
Hereās a video where I run it natively on my old Dell Inspiron 6400 laptop (and Warp 3 later in the video, because why not):
https://movq.de/v/893daaa548/los86-p133-warp3.mp4
(Sorry for the skewed video. Itās a glossy display and super hard to film this.)
It starts with the laptopās boot menu and then boots into the kernel and launches a shell as PID 1. From there, I can launch other processes (anything I enter is a new process, except for the exit at the end) and they return the shell afterwards.
And a screenshot running in QEMU:
Pinellas County - Long Run: 12.58 miles, 00:09:10 average pace, 01:55:11 duration
beautiful day out. the holiday distance classic was today too it turns out so plenty of runners to run with on the way back in. did pretty much 5km intervals. did not realize it but could have possibly broke my PB in the half marathon⦠oh well, great run!
#running
Easy run: 4.07 miles, 00:09:19 average pace, 00:37:56 duration
kept it easy. no watching pace or anything and played it by feel.
#running
Pinellas County Running: 7.30 miles, 00:09:49 average pace, 01:11:43 duration
felt light but my heart rate was all threshold. real foggy out.
#running
Pinellas County Running: 5.06 miles, 00:10:19 average pace, 00:52:17 duration
just an easy run
#running
Recovery run: 3.11 miles, 00:11:27 average pace, 00:35:33 duration
Pinellas County Running: 5.00 miles, 00:10:30 average pace, 00:52:30 duration
slow run. the pace hurt the legs a bit but atleast i kept it light.
#running
Pinellas County - Long Run: 10.02 miles, 00:10:21 average pace, 01:43:37 duration
kept it slow for a low heart rate run. ti took forever to feel comfortable which may have been the excess of pizza and beer yesterday. and honestly, not very good sleep either. forced myself to stop at ten miles mainly because i was over my weekly mileage goal.
#running
haha, thatās gold xD.
#randomMemory I remember when I was starting to code, like 30 years ago, not understanding why my Basic file didnāt run when I renamed it to .exe
And nowadays, Iāve seen a few Go apps in a single executable, so twtxt.exe
could be a thing, he!
Threshold: 7.00 miles, 00:09:14 average pace, 01:04:37 duration
did not know what this would be like when i set out. turned out to be a bit of a threshold workout, but did not hurt much. generally a nice day out and a good run even if the legs were heavy.
#running
@aelaraji@aelaraji.com will all those run on his hardware? I donāt think @movq@www.uninformativ.deās problem is the software, it is that his hardware has gotten too old. :-D
@movq@www.uninformativ.de Damn! Iāve been there, and it sucks when it comes to that. and I may be hallucinating but I believe there was some dll file I had to download and put somewhere in blenderās folder and that got it to work back then. Also, whatās the latest version of #blender you could run?
Fartlek: 7.12 miles, 00:09:56 average pace, 01:10:41 duration
kept it chill the first three miles then took a walk break to lower the heart rate and started off again into a fartlek. the intervals helped because my mind was starting to fuck with me with the steady pace. got some pretty good rain in the last two and a half miles which was great too!
#running
Easy: 7.08 miles, 00:10:03 average pace, 01:11:04 duration
nice cool run. well rested, and kept it mainly in zone 2 as intended. was not sure how my back was going to be after i tweaked it moving weights around yesterday, but it was fine. cushy mach 6s on and some ibuprofen just in case.
#running
Pinellas County Running: 6.28 miles, 00:09:31 average pace, 00:59:46 duration
again worn out. i needed to take a nap yesterday to ācatch upā but i was told not to. not good advice. this was comfortable, but the body is just exhausted.
#running
although the only #Go things Iām running in there are a WriteFreely blog and the Saltyd #SaltyIM broker ⦠each running in separate #FreeBSD #jail, those are still running the 14.1-Release (at the moment) anyways.
Pinellas County Running: 7.00 miles, 00:10:07 average pace, 01:10:44 duration
work life is killing me. this was hard and i am just on empty recently.
#running
If I use Fedora on my PC, Vivaldi as my browser, Signal as my main messenger program, then which OS should my phone run on?
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.)
Pinellas County Running: 7.22 miles, 00:09:43 average pace, 01:10:11 duration
felt soooo good
#running
Easy run: 5.06 miles, 00:09:43 average pace, 00:49:08 duration
kept it easy. legs were a bit tired, but wanted to enjoy the weather. not sure if i should start training again for a marathon just in case or just wing it.
#running
Pinellas County Running: 3.14 miles, 00:08:34 average pace, 00:26:55 duration
needed to get out. was going a bit crazy.
#running
@sorenpeter@darch.dk Cool! Just curious, did you run into somebody who already heard of twtxt before? Or maybe even tried it.
Pinellas County - Long Run: 9.54 miles, 00:09:24 average pace, 01:29:36 duration
typical 5km easy then 5km comfortable-uncomfortable followed by another 5km easy. local weather and signs said it was around 48F, very low humidity (the sweat salt stains prove that bit), and just a really nice day out with a breeze. stopped the run after the planned session to get some extra walking in for a stupid garmin challenge.
#running
all of the software sucks, but i have a solution! weāll write even more software! get more people involved, make it the Ideal Career, then we can write AL̵LĢ“ O̵F THĢØE ̧CĶODEĢ·S. mountains of shitty garbage that kind-of does the thing. software will still suck, but TĶHEĢN oh then we can write compilers that let us run the old shitty code inside of our mountain of new shitty code. now all of the code is in a giant pile and weāre using it to control space ships that definitely never crash. the more code the better! we can represent NaN
easily in undefined
systems! developers arenāt particularly bright, so the language is simple and easy for them to understand. we know this, thatās why it was made this way. theĶ” mounĶ¢tain Ķ m̵usĶt Ķ nȩverĢ¢ Ģ“waĢ”veĢ“r̵. the more code the better. so instead of writing the code manually we cĢ“oĶmpileĢØ tĶorĢøtĢuĶred soĢ·uĶls ĶiĶnĶtoĶ Ķnice Ķ¢bĶlĢ·oxeĢ”ls ĢøofĶ Ģøt̶anĢ”gĶlĶed ĶnĢ¢euĶraĢ”lĶ ĢneĢ¢tĶwĶorksĶ.Ģø wĢØe dĶ onātĶ know how i̵t Ģ·wĶorkĢ”s, Ģ“but Ģ·tĢ“he modelĢ¢ ̶isĢ 5Ģ0GiB Ķs̶o ĶiĶt sĶeĶrveĶs Ģ“tḩeĢ purposĶe. WEĢ MĶ USĢ“T BĶ¢UĢ¢ILD ĶTĶHE MOĶUN̶TĢØA̵IN.
SPRC Turkey Trot: 3.10 miles, 00:10:45 average pace, 00:33:16 duration
ran with my son on his scooter. definitely took lessons from the last two years and slowed it down so he did not cut off as many people and to avoid any wipe outs. besides him complaining for the first half that he was tired (around a bunch of people running) it was fun. got to open up a bit at the end since the crowds died down around then.
#running #race
Damn, I canāt understand why I canāt run #fossil forum behind #relayd on #openbsd. All my other website work, must be something in the cgiā¦
Pinellas County Running: 5.06 miles, 00:09:08 average pace, 00:46:16 duration
ugh, getting some frustrations out from work.
#running
@prologic@twtxt.net to interact with locally running LLM, which software are you using? LM Studio, or Ollama, or�
Thatās very interesting. This dude runs everything at this airport. https://youtu.be/c1wkx1V1qHY