# I am the Watcher. I am your guide through this vast new twtiverse.
# 
# Usage:
#     https://watcher.sour.is/api/plain/users              View list of users and latest twt date.
#     https://watcher.sour.is/api/plain/twt                View all twts.
#     https://watcher.sour.is/api/plain/mentions?uri=:uri  View all mentions for uri.
#     https://watcher.sour.is/api/plain/conv/:hash         View all twts for a conversation subject.
# 
# Options:
#     uri     Filter to show a specific users twts.
#     offset  Start index for quey.
#     limit   Count of items to return (going back in time).
# 
# twt range = 1 16046
# self = https://watcher.sour.is?uri=https://feeds.twtxt.net/prologic-twtxt-atom-feed/twtxt.txt&offset=10646
# next = https://watcher.sour.is?uri=https://feeds.twtxt.net/prologic-twtxt-atom-feed/twtxt.txt&offset=10746
# prev = https://watcher.sour.is?uri=https://feeds.twtxt.net/prologic-twtxt-atom-feed/twtxt.txt&offset=10546
Bruder EXP-6 EXPEDITION TRAILER - YouTubeWhoah! 😳 This thing is a massive ~$230,000 AUD 😳**
Bruder EXP-6 EXPEDITION TRAILER - YouTube Whoah! 😳 This thing is a massive ~$230,000 AUD 😳 ⌘ Read more
It's All FAKE | The Dead Internet Theory - YouTube-- This is kind of scary but kind of _somewhat_ has a lot of truth to it... 🤯 #RiseOfTheMac ...
It’s All FAKE \\| The Dead Internet Theory - YouTube– This is kind of scary but kind of _somewhat_ has a lot of truth to it… 🤯 #RiseOfTheMachinesRead more
(#hgvenxq) @marado Yeah so @lyse and I are talking on IRC right now about an idea I had about this... I realise I _could_ use the same git patch ...
@marado Yeah so @lyse _@lyse.isobeef.org_ and I are talking on IRC right now about an idea I had about this… I realise I _could_ use the same git patch/diff format(s) but skip the Email parts. I was even thinking of using Twtxt itself as a sort of “notification” and some kind of ea ... ⌘ Read more
(#hgvenxq) @justamoment Yeah, not only that, but one of the "issues" I have with the whole Git+Email patch workflow in general is that you have ...
@justamoment Yeah, not only that, but one of the “issues” I have with the whole Git+Email patch workflow in general is that you have to basically “give up” your identity, email address and personal information in some way. I find that a bit bothersome really. – I’m sure we can come up with a proper “decentralised” way of collaborating on software with g ... ⌘ [Read more](https://twtxt.net/twt/skwsobq)
(#fovxkya) @justamoment Well what I mean to say is that git itself basically just houses some client-side "Metadata" about the repository and ...
@justamoment Well what I mean to say is that git itself basically just houses some client-side “Metadata” about the repository and a bunch of objects that make up the contents and revision history. For example, there is a special file called .git/description that you can edit and there’s even git branch --edit to edit a branch’s description. But no ... ⌘ Read more
(#fovxkya) @justamoment Hmmm so there isn't a lot you can do with plain Git itself. Even patches sent via email are basisally out-or-band at th ...
@justamoment Hmmm so there isn’t a lot you can do with plain Git itself. Even patches sent via email are basisally out-or-band at that point. ⌘ Read more
(#hgvenxq) @justamoment From the maitainrr side you just end up having to copy the raw contents of the emails and pipe them into git am - in ...
@justamoment From the maitainrr side you just end up having to copy the raw contents of the emails and pipe them into git am - in the right order. It’s a bit tedious 🤦‍♂️ ⌘ Read more
(#fovxkya) @justamoment Hmmm not sure 🤔**
@justamoment Hmmm not sure 🤔 ⌘ Read more
(#hgvenxq) @justamoment No the command compares your branch and automatically formats a patch containing your changes compared to the branch yo ...
@justamoment _@twtxt.net_ No the command compares your branch and automatically formats a patch containing your changes compared to the branch you specified. ⌘ Read more
(#m2n5vzq) @movq @lyse LOL 🤣 Isn't this the same as what @codebalion posted in #5yvkoeq ? 🤔**
@movq _@www.uninformativ.de_ @lyse _@lyse.isobeef.org_ LOL 🤣 Isn’t this the same as what @codebalion _@twtxt.prismdragon.net_ posted in #5yvkoeq ? 🤔 ⌘ Read more
(#hgvenxq) @justamoment Technically if you setup your ~/.gitconfig "just so" the steps are really just one.


$ git co -b feature
# hack ha ...**
[@justamoment](https://twtxt.net/user/justamoment) Technically if you setup your `~/.gitconfig` “just so” the steps are really just one.


$ git co -b feature
# hack hack hack
$ git ci -m "blah bla hblah"
$ git send-email main

 ⌘ [Read more](https://twtxt.net/twt/k52ojba)
(#fovxkya) @justamoment I agree, the patch workflow is a bit complicated (_especially for new users_) and I find it a bit unfriendly too. Having ...
@justamoment I agree, the patch workflow is a bit complicated ( _especially for new users_) and I find it a bit unfriendly too. Having to switch from an Email client to Command-line just to manage reviews and applying patches kind of sucks IMO. – Some nice way to manage incoming changes and communicate reviews and easily applying those changes would be n ... ⌘ Read more
(#pmuqoca) @justamoment So I'm still "mucking around" with my forked version of legit, and haven't decided what to do yet... I'm not keen on the ...
@justamoment So I’m still “mucking around” with my forked version of legit, and haven’t decided what to do yet… I’m not keen on the name “MacGitter” 🤣 Next option/idea? 🤔 – Feel free to muck around with what’s there, built it, run it, muck around with the HTML/CSS 👌 – Right now I’m trying to get git push to work o ... ⌘ Read more
(#mvzvuca) @justamoment Haha, although I have written _many_ a programming language or two, I probably won't ever fork Go itself 😅**
@justamoment Haha, although I have written _many_ a programming language or two, I probably won’t ever fork Go itself 😅 ⌘ Read more
Learn to use email with git! Patch Workflows - Ry’s Git Tutorial - RyPress -- Another good blog post on working with Git patches via Email as ...
Learn to use email with git! Patch Workflows - Ry’s Git Tutorial - RyPress – Another good blog post on working with Git patches via Email as well as applying them. – The key point ( _I think_) is that you need to grab the entire contents of email email in order in order to pipe the contents ... ⌘ Read more
Learn to use email with git! -- Interesting read of how to use the "Git Email" workflow for sending patches to a project 🤔 Not sure how I fee ...
Learn to use email with git! – Interesting read of how to use the “Git Email” workflow for sending patches to a project 🤔 Not sure how I feel about it though 😅 ⌘ Read more
(#5yvkoeq) @codebalion Very old and very interesting clip 👌 I find many of the points _actually_ quite relevant today, especially the "naming ...
@codebalion _@twtxt.prismdragon.net_ Very old and very interesting clip 👌 I find many of the points _actually_ quite relevant today, especially the “naming” things. ⌘ Read more
(#lccmsua) Hmmmm kind of sounds complicated 🤔**
Hmmmm kind of sounds complicated 🤔 ⌘ Read more
(#lccmsua) @logout How does it work? 🤔**
@logout _@i-logout.cz_ How does it work? 🤔 ⌘ Read more
(#pmuqoca) @justamoment Okay... How do you want to do this? 🤔 Should we hard fork at this point and rename? (If you read the linked Github di ...
@justamoment Okay… How do you want to do this? 🤔 Should we hard fork at this point and rename? (If you read the linked Github discussion, we are already on divergent paths) Shall we dogfood from the start and use it for development/collaboration from the start? 🤔 ⌘ Read more
(#mt6pzca) No thanks. Even if you pay me to share my personal data, behaviour and activities, nope 😅**
No thanks. Even if you pay me to share my personal data, behaviour and activities, nope 😅 ⌘ Read more
(#6nabnda) @movq Same here, except without the "drinking" 🤣**
@movq _@www.uninformativ.de_ Same here, except without the “drinking” 🤣 ⌘ Read more
(#5gteb2q) @xuu Oh man, this guys has written so many words, and there are so many "patterns" (many of which I never knew!) 🤦‍♂️ Q: Isn ...
@xuu _@txt.sour.is_ Oh man, this guys has written so many words, and there are so many “patterns” (many of which I never knew!) 🤦‍♂️ Q: Isn’t most of what he’s talking about effectively the same as what we do in “good” Go using interfaces and making the zero value useful? 🤔 ⌘ Read more
(#cn24euq) @justamoment That's pretty cool! 👌 You wrote Vector Pass? 🤔 How does it work? 🤔**
@justamoment That’s pretty cool! 👌 You wrote Vector Pass? 🤔 How does it work? 🤔 ⌘ Read more
(#pmuqoca) @justamoment it sure did! 😅 Would you at all be interested in hacking on this wth me? I'm thinking you basically do all of the UI/ ...
@justamoment it sure did! 😅 Would you at all be interested in hacking on this wth me? I’m thinking you basically do all of the UI/UX. The HTML/CSS right now is pretty clean so its bd pretty much “greenfield” 😅 ⌘ Read more
(#6nabnda) @bender living in the past man living in the past!
@bender living in the past man living in the past! ⌘ Read more
What y'all doing this fine Xmas day? 🤔**
What y’all doing this fine Xmas day? 🤔 ⌘ Read more
(#etrk5ya) My daughter said it would look cooler if the crayon wasn't there and it would look like a 3D sun 😆**
My daughter said it would look cooler if the crayon wasn’t there and it would look like a 3D sun 😆 ⌘ Read more
(#v4qk4la) @codebalion Hope you have a great day! 🤗**
@codebalion _@twtxt.prismdragon.net_ Hope you have a great day! 🤗 ⌘ Read more
(#etrk5ya) @abucci that's pretty cool and recovery use of toothpicks 😅**
@abucci _@anthony.buc.ci_ that’s pretty cool and recovery use of toothpicks 😅 ⌘ Read more
(#lccmsua) @logout No I mean I don't actually know what this thing is 🤣**
@logout _@i-logout.cz_ No I mean I don’t actually know what this thing is 🤣 ⌘ Read more
(#tu75r2a) in-laws You're living in the past man 😅**
@in-laws _@twt.nfld.uk_ You’re living in the past man 😅 ⌘ Read more
(#lccmsua) @logout Huh? 🤣**
@logout _@i-logout.cz_ Huh? 🤣 ⌘ Read more
Merry Christmas! 🎄**
Merry Christmas! 🎄Read more
(#5wdrufa) @abucci Well you live longer living in the cold anyway 😅**
@abucci _@anthony.buc.ci_ Well you live longer living in the cold anyway 😅 ⌘ Read more
(#4f4qrja) @abucci It is.
@abucci _@anthony.buc.ci_ It is. ⌘ Read more
(#5wdrufa) @abucci Ooof gawd that's cold 🥶**
@abucci _@anthony.buc.ci_ Ooof gawd that’s cold 🥶 ⌘ Read more
(#4f4qrja) @abucci Fair 😅 The _only_ exception I personally find the Go language itself, not really a Google™ product/project, but one crea ...
@abucci _@anthony.buc.ci_ Fair 😅 The _only_ exception I personally find the Go language itself, not really a Google™ product/project, but one created by Rob Pike Ken Thompson and Robert Griesemer. ⌘ Read more
(#4f4qrja) @abucci Like most things, this is unlikely to be an _actual_ "Google" product or project, just someone yet another Google™ engineer ...
@abucci _@anthony.buc.ci_ Like most things, this is unlikely to be an _actual_ “Google” product or project, just someone yet another Google™ engineer wrote in his/her spare time… Which is a good thing, we _should_ use/contribute/collaborate and share such things as they really are great engineers many of ... ⌘ Read more
(#pefydfa) @lyse I wonder whether we can represent this data format as the result of a query? 🤔**
@lyse _@lyse.isobeef.org_ I wonder whether we can represent this data format as the result of a query? 🤔 ⌘ Read more
(#4f4qrja) @marado Yeah it does seem cool, and yeah @lyse its dependencies does seem pretty nice and short, but what I don't like about it is ho ...
@marado Yeah it does seem cool, and yeah @lyse _@lyse.isobeef.org_ its dependencies does seem pretty nice and short, but what I don’t like about it is how it stores the data as JSON files in a “special branch”. I much prefer the way git-bug ... ⌘ Read more
(#4f4qrja) Hmmm not sure if I like the way this is done... 🤔**
Hmmm not sure if I like the way this is done… 🤔 ⌘ Read more
google/git-appraise: Distributed code review system for Git repos -- Interesting way to do code reviews, kind of very similar to git-bug 🤔**
google/git-appraise: Distributed code review system for Git repos – Interesting way to do code reviews, kind of very similar to git-bug 🤔 ⌘ Read more
(#qqbeldq) @abucci Ahh 🤗 Well stay safe 🤞**
@abucci _@anthony.buc.ci_ Ahh 🤗 Well stay safe 🤞 ⌘ Read more
(#mvzvuca) I posted this issue to the upstream author I forked this from to see what/where the discussion may go and how our goals may or may no ...
I posted this issue to the upstream author I forked this from to see what/where the discussion may go and how our goals may or may not align 🤞 ⌘ Read more
(#kms34ea) @justamoment We are however considering making it possible to publish said lists, providing an option for users to have private/publi ...
@justamoment We are however considering making it possible to publish said lists, providing an option for users to have private/public lists and probably just a simple text file format. ⌘ Read more
(#mvzvuca) @justamoment Yeah so far its' pretty decent. If I continue with this, I'd probably end up refactoring much of the code before adding ...
@justamoment Yeah so far its’ pretty decent. If I continue with this, I’d probably end up refactoring much of the code before adding new features. ⌘ Read more
(#kec5a5a) @axodys Oh it's already Christmas Eve here 🤣 -- I remember all this time travelling business when we lived in the US for a few yea ...
@axodys _@octobloc.xyz_ Oh it’s already Christmas Eve here 🤣 – I remember all this time travelling business when we lived in the US for a few years 🤣 ⌘ Read more
[prologic/legit: Fork of https://github.com/icyphox/legit (may hard fork, we'll see) - legit - Mills]() -- I forked something fairly decent as a ...
[prologic/legit: Fork of https://github.com/icyphox/legit (may hard fork, we’ll see) - legit - Mills](https://git.mills.io/prologic/legit) – I forked something fairly decent as a “starting point” (which works™), and now I’ve been hacking away at it. I’m not sure yet how far I’ll go, but its fun anyway. 😅 Who knows, maybe this will become the thing I [talked about](https://search.twtxt.net/tw ... ⌘ Read more
(#qqbeldq) @abucci How are you still posting to your feed? 🤔**
@abucci _@anthony.buc.ci_ How are you still posting to your feed? 🤔 ⌘ Read more
(#qqbeldq) @abucci Oh no! ⚡️**
@abucci _@anthony.buc.ci_ Oh no! ⚡️ ⌘ Read more
(#ucqb7za) @abucci Indeed. It was a bit on the short side I think 🤣**
@abucci _@anthony.buc.ci_ Indeed. It was a bit on the short side I think 🤣 ⌘ Read more
(#iwren5a) @abucci capitalism sucks 🤣 all solutions suck 😅**
@abucci _@anthony.buc.ci_ capitalism sucks 🤣 all solutions suck 😅 ⌘ Read more
(#iwren5a) @bender One can only hope (dream) 🤣**
@bender One can only hope (dream) 🤣 ⌘ Read more
(#pefydfa) None I'd say. I don't see the point of registries to be honest -- A good search engine does the same job only better 👌**
None I’d say. I don’t see the point of registries to be honest – A good search engine does the same job only better 👌 ⌘ Read more
(#ucqb7za) @jlj So we need to build bigger power lines? 🤔**
@jlj _@twt.nfld.uk_ So we need to build bigger power lines? 🤔 ⌘ Read more
(#iwren5a) @xuu Oh I see 🤯**
@xuu _@txt.sour.is_ Oh I see 🤯 ⌘ Read more
(#kms34ea) @justamoment Hmmm... Think the other way around... You follow a few hundred feeds, some of them news, some friends/colleagues, maybe ...
@justamoment Hmmm… Think the other way around… You follow a few hundred feeds, some of them news, some friends/colleagues, maybe some family, maybe some small number are interesting stuff you just don’t want to miss. What do you do? 🤔 – I don’t think anyone that publishes a feed, whether personal, automated, interest topic or otherwise needs to do anythi ... ⌘ Read more
(#kms34ea) @justamoment I don't see how it would be "spec" worth to be honest. I think its a client-only feature. Any client could implement the ...
@justamoment I don’t see how it would be “spec” worth to be honest. I think its a client-only feature. Any client could implement the same idea, its mostly just a UX thing, organising feeds in some way the user wants. ⌘ Read more
(#kz2taka) @movq All nice and dry then? 🌵**
@movq _@www.uninformativ.de_ All nice and dry then? 🌵 ⌘ Read more
(#iwren5a) @mckinley I dunno. How does this "supposedly" work in Sci-Fi films where this sort of thing is "solved"? 🤔**
@mckinley I dunno. How does this “supposedly” work in Sci-Fi films where this sort of thing is “solved”? 🤔 ⌘ Read more
(#plib6eq) @sl1200 Hola! (cc @eaplmx) 👋 I'm so sorry, apparently you went unnoticed for a week 🤦‍♂️ Welcome to Yarn.social / Twtxt - ...
@sl1200 _@twt.nfld.uk_ Hola! (cc @eaplmx) 👋 I’m so sorry, apparently you went unnoticed for a week 🤦‍♂️ Welcome to Yarn.social / Twtxt – Its a bit slower than what you’ve probably experienced before 😅 – But believe it or not, that’s _actually_ a feature and not a bug 🤣 ⌘ Read more
(#iellajq) @eaplmx Perhaps you'd like to welcome @sl1200 as they seem to follow you but no-one else yet 😅**
@eaplmx Perhaps you’d like to welcome @sl1200 _@twt.nfld.uk_ as they seem to follow you but no-one else yet 😅 ⌘ Read more
(#iellajq) @sl1200 Hey! 👋 Welcome to Yarn.social 🤗**
@sl1200 _@twt.nfld.uk_ Hey! 👋 Welcome to Yarn.social 🤗 ⌘ Read more
(#ifngerq) @justamoment that is really amazing! 😅**
@justamoment that is really amazing! 😅 ⌘ Read more
(#kms34ea) @justamoment No not quite although it is possible to publish the list of feeds and the name given to it by its maintainer, however a ...
@justamoment No not quite although it is possible to publish the list of feeds and the name given to it by its maintainer, however as it stands there is no way to mix multiple feeds into a single feed without doing all sorts of weird things ⌘ Read more
(#iwren5a) @slashdot Why don't we just make food, water and shelter free? 🤔**
@slashdot _@feeds.twtxt.net_ Why don’t we just make food, water and shelter free? 🤔 ⌘ Read more
(#drcwcna) @bender Yeah age is also a good choice for crypto. I _think_ it uses Ed25519 anyway as underlying crypto primitives IIRC.
@bender Yeah age is also a good choice for crypto. I _think_ it uses Ed25519 anyway as underlying crypto primitives IIRC. ⌘ Read more
Woke up this morning in quite a bit more pain than yesterday 😢 I think going to the shitter 💩 puts more pressure on my prolapsed discs and ...
Woke up this morning in quite a bit more pain than yesterday 😢 I think going to the shitter 💩 puts more pressure on my prolapsed discs and puts my healing progress backwards a bit 😢 ⌘ Read more
(#drcwcna) @abucci I would recommend migrating to somethin like either pass go pass
@abucci _@anthony.buc.ci_ I would recommend migrating to somethin like either pass go passRead more
(#5n7dlra) @marado Noice I'll check it out 👌**
@marado Noice I’ll check it out 👌 ⌘ Read more
(#nvj56nq) @abucci so about $365 million per year? 🤔 I wonder how many times per year translates into CO2 emissions 🤦‍♂️ you're abs ...
@abucci _@anthony.buc.ci_ so about $365 million per year? 🤔 I wonder how many times per year translates into CO2 emissions 🤦‍♂️ you’re absolutely right we don’t need ChatGPT – Not at this price 🤦‍♂️ ⌘ Read more
(#drcwcna) @abucci so does that basically mean all cloud-based password managers have all been breached in one way or another? 🤔**
@abucci _@anthony.buc.ci_ so does that basically mean all cloud-based password managers have all been breached in one way or another? 🤔 ⌘ Read more
(#dvrq7bq) @bender We'll I replied because @hecanjog apprently does follow me 😆**
@bender _@twtxt.net_ We’ll I replied because @hecanjog _@hecanjog.com_ apprently does follow me 😆 ⌘ Read more
(#s23qeqq) time to buy yourself a new machine for Christmas 😆**
time to buy yourself a new machine for Christmas 😆 ⌘ Read more
(#kms34ea) This is brillliant 👌 We can probably work with this 🤞**
This is brillliant 👌 We can probably work with this 🤞 ⌘ Read more
(#kms34ea) @darch Precisely 😆**
@darch _@neotxt.dk_ Precisely 😆 ⌘ Read more
(#5n7dlra) @marado this is pretty cool 👌 How does it compare to say Sonic Pi?**
@marado this is pretty cool 👌 How does it compare to say Sonic Pi? ⌘ Read more
(#ou7x5jq) @lyse oh man that looks delicious 🤤**
@lyse _@lyse.isobeef.org_ oh man that looks delicious 🤤 ⌘ Read more
(#dvrq7bq) @hecanjog What makes you say that? 🤔**
@hecanjog _@hecanjog.com_ What makes you say that? 🤔 ⌘ Read more
(#ej63sba) @axodys Okay 👌**
@axodys _@octobloc.xyz_ Okay 👌 ⌘ Read more
(#ifngerq) @justamoment That is immensely cool 😎 All in pure CSS? 😳**
@justamoment That is immensely cool 😎 All in pure CSS? 😳 ⌘ Read more
(#kzkub5q) @hecanjog I dunno, twtxt is pretty good 😅**
@hecanjog _@hecanjog.com_ I dunno, twtxt is pretty good 😅 ⌘ Read more
(#kwuzqla) @lyse Very nice! I agree with @movq 04 is something else 👌**
@lyse _@lyse.isobeef.org_ Very nice! I agree with @movq _@www.uninformativ.de_ 04 is something else 👌 ⌘ Read more
(#5s2qvsa) @darch I wouldn't trust software-based KVM(s) at all 😅 -- Hardware or I keep doing it manually by swapping out cables 😅**
@darch _@neotxt.dk_ I wouldn’t trust software-based KVM(s) at all 😅 – Hardware or I keep doing it manually by swapping out cables 😅 ⌘ Read more
(#kms34ea) @darch No I just think we should tie this to profile view.
@darch _@neotxt.dk_ No I just think we should tie this to profile view. ⌘ Read more
(#4pdcila) @darch Hmmm 🤔**
@darch _@neotxt.dk_ Hmmm 🤔 ⌘ Read more
(#5s2qvsa) @darch don't they suffer from poor latency and poor resolution?**
@darch _@neotxt.dk_ don’t they suffer from poor latency and poor resolution? ⌘ Read more
@axodys When you get some time (doesn't matter what time/day for me) I'd like to help debug that issue you ran into and get you on to the latest ...
@axodys _@octobloc.xyz_ When you get some time (doesn’t matter what time/day for me) I’d like to help debug that issue you ran into and get you on to the latest main / edge version – I’m a bit worried we wrote some bad code, I did push a commit and pushed new images, but yeah LMK when you’re around 👌 ⌘ Read more
(#kms34ea) @darch Yes! 👌 I guess you did that pretty quickly, maybe see if you can play with the profile template and come up with some mocke ...
@darch _@neotxt.dk_ Yes! 👌 I guess you did that pretty quickly, maybe see if you can play with the profile template and come up with some mocked demo? 🤔 ⌘ Read more
TBT4 KVM dock| KVM Switch | SSI OEM Manufacturer -- Hmm I need one of these, but the company doesn't sell to the public hmmm 🤔 #TBT4 #KVM
TBT4 KVM dock\\| KVM Switch \\| SSI OEM Manufacturer – Hmm I need one of these, but the company doesn’t sell to the public hmmm 🤔 #TBT4 #KVMRead more
@carsten Hey what's happened to your pod? 🤔**
@carsten _@yarn.zn80.net_ Hey what’s happened to your pod? 🤔 ⌘ Read more
(#kms34ea) @darch Can you do one more mockup? Something on a feed's profile view that looks something like and more-or-less mimics the Github li ...
@darch _@neotxt.dk_ Can you do one more mockup? Something on a feed’s profile view that looks something like and more-or-less mimics the Github lists behaviour? Read more
(#m7d2pba) @darch Ahh ha! 😅**
@darch _@neotxt.dk_ Ahh ha! 😅 ⌘ Read more
(#m7d2pba) I think it's CMD+Shift+3
I think it’s CMD+Shift+3 ⌘ Read more
(#m7d2pba) @darch I use the built in screen capture of macOS -- You can take full screen or just window screenshots. -- I normally do the later ...
@darch _@neotxt.dk_ I use the built in screen capture of macOS – You can take full screen or just window screenshots. – I normally do the later 👌 ⌘ Read more
(#m7d2pba) @darch Hmmm not sure what you mean? 🤔**
@darch _@neotxt.dk_ Hmmm not sure what you mean? 🤔 ⌘ Read more
(#kpyqvka) I'm running yarnd 0.15.1@81e22f8e on both my pods no worries. Maybe try updating to latest again? 🤔**
I’m running yarnd 0.15.1@81e22f8e on both my pods no worries. Maybe try updating to latest again? 🤔 Read more
(#kpyqvka) @axodys You are probably busy or its late or something... So I'll keep digging into this. I've found a bug with the password migratio ...
@axodys _@octobloc.xyz_ You are probably busy or its late or something… So I’ll keep digging into this. I’ve found a bug with the password migration (that should be transparent to anyone), so fixing that. I’m going to update prologic/yarnd:latest as well as prologic/yarnd:dev to match (normally I do ... ⌘ Read more
(#kpyqvka) @axodys I just tried to repro myself and wasn't able to :/

Can you confirm the same as below for me on your end?


$ docker run - ...**
[@axodys _@octobloc.xyz_](https://twtxt.net/external?uri=https://octobloc.xyz/user/axodys/twtxt.txt&nick=axodys) I just tried to repro myself and wasn’t able to :/

Can you confirm the same as below for me on your end?


$ docker run -i -t --rm prologic/yarnd:latest yarnd --version
usermod: no changes
Configuring yarnd...Switching UID=1000 and GID=1000
yarnd edge@d35d2da6

 ⌘ [Read more](https://twtxt.net/twt/smklz7a)